:root {
  --red: #d90000;
  --red-dark: #9f0000;
  --orange: #ff6a00;
  --yellow: #ffc928;
  --cream: #fff5dc;
  --paper: #fffdf7;
  --ink: #161616;
  --muted: #6b6258;
  --white: #ffffff;
  --line: 3px solid var(--ink);
  --shadow: 8px 8px 0 var(--ink);
  --radius: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.72;
  letter-spacing: .005em;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  padding: clamp(78px, 8vw, 110px) 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.16;
  letter-spacing: .005em;
}

h1,
h2 {
  font-family: "Segoe UI", Arial, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(2.35rem, 4.8vw, 4.25rem);
  margin-bottom: 24px;
}

.skip-link {
  position: fixed;
  left: 12px;
  top: -60px;
  background: var(--yellow);
  color: var(--ink);
  padding: 10px 16px;
  border: var(--line);
  z-index: 1000;
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 253, 247, .96);
  border-bottom: 2px solid var(--ink);
  backdrop-filter: blur(12px);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--red);
  border: 2px solid var(--ink);
  border-radius: 12px 12px 18px 12px;
  box-shadow: 3px 3px 0 var(--ink);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-copy strong {
  font-size: .98rem;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.brand-copy small {
  margin-top: 4px;
  font-size: .75rem;
  color: var(--muted);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: .9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.main-nav a {
  position: relative;
}

.main-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -5px;
  height: 3px;
  background: var(--red);
  transition: right .25s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  right: 0;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow);
  padding: 11px 18px;
  border: 2px solid var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
}

.menu-button {
  display: none;
  width: 46px;
  height: 42px;
  background: var(--yellow);
  border: 2px solid var(--ink);
  padding: 9px;
}

.menu-button span {
  display: block;
  height: 3px;
  background: var(--ink);
  margin: 4px 0;
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--red);
  color: white;
  border-bottom: 4px solid var(--ink);
}

.hero::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border: 60px solid var(--orange);
  border-radius: 50%;
  left: -160px;
  top: 70px;
  opacity: .9;
}

.hero::after {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  background: var(--yellow);
  right: 5%;
  top: 15%;
  transform: rotate(9deg);
  border: 4px solid var(--ink);
}

.hero-grid {
  min-height: min(720px, calc(100vh - 78px));
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, .98fr);
  align-items: center;
  gap: clamp(36px, 5vw, 64px);
  padding-top: clamp(48px, 6vw, 70px);
  padding-bottom: 100px;
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin-bottom: 16px;
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--yellow);
}

.eyebrow.dark {
  color: var(--red);
}

.hero h1 {
  max-width: 700px;
  font-size: clamp(3.35rem, 6vw, 5.75rem);
  margin-bottom: 26px;
  letter-spacing: -.01em;
  line-height: 1.08;
}

.hero h1 span {
  display: block;
  color: var(--yellow);
  text-shadow: 4px 4px 0 var(--ink);
}

.hero-lead {
  max-width: 620px;
  font-size: 1.12rem;
  line-height: 1.72;
  color: #ffeaea;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 32px 0 42px;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 3px solid var(--ink);
  padding: 13px 22px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .03em;
  transition: transform .18s ease, box-shadow .18s ease;
}

.button:hover {
  transform: translate(-3px, -3px);
  box-shadow: 6px 6px 0 var(--ink);
}

.button:active {
  transform: translate(0);
  box-shadow: none;
}

.wa-icon {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  object-fit: contain;
}

.button-primary {
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
}

.button-ghost {
  background: transparent;
  color: white;
  border-color: white;
}

.button-ghost:hover {
  box-shadow: 6px 6px 0 var(--ink);
}

.button-dark {
  width: 100%;
  background: var(--ink);
  color: white;
}

.button-light {
  width: 100%;
  background: var(--yellow);
  color: var(--ink);
}

.hero-trust {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, .35);
  padding-top: 24px;
  gap: 14px 22px;
}

.hero-trust div {
  display: grid;
  grid-template-columns: 25px 1fr;
  align-items: start;
  gap: 8px;
}

.hero-trust strong {
  display: grid;
  place-items: center;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: .88rem;
  font-weight: 900;
}

.hero-trust span {
  font-size: .88rem;
  line-height: 1.45;
  font-weight: 800;
  color: #fff7ee;
}

.hero-visual {
  position: relative;
  transform: rotate(2deg);
}

.hero-visual img {
  width: 100%;
  border: 4px solid var(--ink);
  box-shadow: 14px 14px 0 var(--ink);
}

.hero-stamp {
  position: absolute;
  right: -28px;
  top: -32px;
  width: 116px;
  height: 116px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
  border: 4px solid var(--ink);
  display: grid;
  place-content: center;
  text-align: center;
  transform: rotate(12deg);
  box-shadow: 6px 6px 0 var(--ink);
  line-height: 1;
}

.hero-stamp span {
  font-size: .72rem;
  font-weight: 900;
}

.hero-stamp strong {
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 1.8rem;
}

.visual-caption {
  position: absolute;
  left: -24px;
  bottom: -32px;
  max-width: 320px;
  margin: 0;
  padding: 11px 15px;
  background: white;
  color: var(--ink);
  border: 3px solid var(--ink);
  font-weight: 800;
  font-size: .92rem;
  line-height: 1.5;
  transform: rotate(-2deg);
}

.ticker {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--yellow);
  color: var(--ink);
  border-top: 4px solid var(--ink);
  padding: 12px 0;
  overflow: hidden;
  font-family: Impact, "Arial Black", sans-serif;
  letter-spacing: .1em;
  font-size: 1.15rem;
  white-space: nowrap;
}

.ticker div {
  width: max-content;
  animation: marquee 18s linear infinite;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

.intro {
  background: var(--cream);
  border-bottom: 3px solid var(--ink);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: clamp(48px, 7vw, 90px);
  align-items: start;
}

.intro h2 {
  max-width: 720px;
}

.intro-copy .lead {
  max-width: 68ch;
  font-size: 1.18rem;
  line-height: 1.75;
}

.facts {
  margin-top: 48px;
  border-top: 3px solid var(--ink);
}

.facts>div {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 22px;
  padding: 20px 0;
  border-bottom: 2px solid var(--ink);
}

.facts span {
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 1.7rem;
  color: var(--red);
}

.facts p {
  margin: 0;
}

.facts strong {
  display: block;
  font-size: 1.05rem;
  text-transform: uppercase;
}

.advantages {
  background: var(--ink);
  color: white;
}

.section-title-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 52px;
}

.section-title-row>div {
  max-width: 760px;
}

.section-title-row>p {
  max-width: 360px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.advantages .section-title-row>p {
  color: #c7bfb4;
}

.advantages h2 {
  margin-bottom: 0;
}

.advantage-list {
  border-top: 2px solid #525252;
}

.advantage {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 28px;
  padding: 30px 0;
  border-bottom: 2px solid #525252;
  transition: background .2s ease, padding .2s ease;
}

.advantage:hover {
  background: var(--red);
  padding-inline: 22px;
}

.advantage>span {
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 2.3rem;
  color: var(--yellow);
}

.advantage h3 {
  margin-bottom: 8px;
  font-size: clamp(1.45rem, 2.5vw, 2.05rem);
  text-transform: uppercase;
}

.advantage p {
  max-width: 760px;
  margin-bottom: 0;
  color: #d7d7d7;
}

.advantage:hover p {
  color: white;
}

.packages {
  background: var(--paper);
}

.packages-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 48px;
}

.packages-head h2 {
  margin-bottom: 0;
}

.mode-switch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 3px solid var(--ink);
  background: white;
}

.mode-button {
  min-width: 160px;
  border: 0;
  background: white;
  padding: 13px 18px;
  font-weight: 900;
  text-transform: uppercase;
}

.mode-button+.mode-button {
  border-left: 2px solid var(--ink);
}

.mode-button.active {
  background: var(--yellow);
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 24px);
  align-items: start;
}

.package-card {
  position: relative;
  background: white;
  border: 3px solid var(--ink);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}

.package-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}

.package-card.featured {
  box-shadow: 8px 8px 0 var(--red);
}

.package-image {
  overflow: hidden;
  border-bottom: 3px solid var(--ink);
  background: var(--cream);
}

.package-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.package-body {
  padding: 26px;
}

.package-label {
  margin-bottom: 6px;
  color: var(--red);
  font-weight: 900;
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.package-card h3 {
  margin-bottom: 13px;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 2.65rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .01em;
}

.package-copy {
  min-height: 76px;
  color: var(--muted);
}

.price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 15px 14px;
  margin: 18px 0;
  border: 2px solid var(--ink);
  background: var(--yellow);
}

.price small {
  text-transform: uppercase;
  font-weight: 800;
}

.price-values {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
  text-align: right;
}

.price-values del {
  color: #5f5548;
  font-size: .92rem;
  font-weight: 800;
  line-height: 1;
  text-decoration-color: var(--red-dark);
  text-decoration-thickness: 2px;
}

.price strong {
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 2.1rem;
  font-weight: 900;
  line-height: 1;
  color: var(--red-dark);
}

.package-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
}

.package-card li {
  padding: 6px 0 6px 23px;
  position: relative;
}

.package-card li::before {
  content: "★";
  position: absolute;
  left: 0;
  color: var(--orange);
}

.text-button {
  width: 100%;
  border: 0;
  border-top: 2px solid var(--ink);
  background: transparent;
  padding: 18px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-weight: 900;
  text-transform: uppercase;
}

.cta-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.package-select {
  min-height: 52px;
  padding: 12px 14px;
  border: 3px solid var(--ink);
  background: var(--yellow);
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform .18s ease, box-shadow .18s ease;
}

.package-select:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--ink);
}

.package-note {
  margin: 30px 0 0;
  padding: 16px 20px;
  border-left: 5px solid var(--red);
  background: var(--cream);
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.65;
}

select,
input {
  width: 100%;
  min-height: 50px;
  border: 2px solid var(--ink);
  background: white;
  color: var(--ink);
  padding: 10px 13px;
  border-radius: 0;
  outline: none;
}

select:focus,
input:focus {
  box-shadow: 4px 4px 0 var(--yellow);
}

.menu-showcase {
  background: var(--cream);
}

.menu-showcase h2 {
  margin-bottom: 0;
}

.menu-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.menu-gallery figure {
  margin: 0;
  border: 3px solid var(--ink);
  background: white;
  overflow: hidden;
}

.menu-gallery img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.menu-gallery figcaption {
  padding: 14px 18px;
  border-top: 3px solid var(--ink);
  font-weight: 900;
  text-transform: uppercase;
  text-align: center;
}

.steps {
  background: var(--red);
  color: white;
}

.steps-heading {
  max-width: 780px;
  margin-bottom: 60px;
}

.steps-heading>p:last-child {
  color: #ffd6d6;
}

.step-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 46px;
  counter-reset: none;
}

.step-list li {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-top: 2px solid rgba(255, 255, 255, .45);
}

.step-list li:last-child {
  grid-column: 1 / -1;
  background: var(--yellow);
  color: var(--ink);
  padding-inline: 26px;
  border: 3px solid var(--ink);
  box-shadow: 8px 8px 0 var(--ink);
}

.step-list span {
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 2.5rem;
  color: var(--yellow);
}

.step-list li:last-child span {
  color: var(--red);
}

.step-list h3 {
  margin-bottom: 8px;
  font-size: 1.35rem;
  text-transform: uppercase;
}

.step-list p {
  margin: 0;
  color: #ffdcdc;
}

.step-list li:last-child p {
  color: var(--ink);
}

.faq {
  background: var(--paper);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: clamp(48px, 6vw, 80px);
}

.accordion {
  border-top: 3px solid var(--ink);
}

.faq-item {
  border-bottom: 3px solid var(--ink);
}

.faq-item button {
  width: 100%;
  border: 0;
  background: transparent;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  text-align: left;
  font-weight: 900;
  font-size: 1.08rem;
  line-height: 1.45;
}

.faq-item button i {
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  background: var(--yellow);
  border: 2px solid var(--ink);
  font-style: normal;
  font-size: 1.3rem;
  transition: transform .2s ease;
}

.faq-item.open button i {
  transform: rotate(45deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .3s ease;
}

.faq-answer p {
  overflow: hidden;
  margin: 0;
  color: var(--muted);
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.open .faq-answer p {
  padding-bottom: 24px;
}

.faq-extra {
  display: none;
}

.accordion.show-all .faq-extra {
  display: block;
}

.faq-toggle {
  width: 100%;
  margin-top: 18px;
  padding: 14px 18px;
  border: 3px solid var(--ink);
  background: var(--yellow);
  color: var(--ink);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
  box-shadow: 4px 4px 0 var(--ink);
}

.faq-toggle span {
  display: inline-block;
  margin-left: 8px;
  transition: transform .2s ease;
}

.faq-toggle[aria-expanded="true"] span {
  transform: rotate(180deg);
}

.contact {
  background: var(--yellow);
}

.contact-shell {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: clamp(44px, 6vw, 70px);
  align-items: start;
}

.contact-copy h2 {
  max-width: 620px;
}

.contact-copy>p:not(.eyebrow) {
  font-size: 1.08rem;
  line-height: 1.72;
  max-width: 560px;
}

.office-list {
  margin-top: 42px;
  border-top: 3px solid var(--ink);
}

.office-list>div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 2px solid var(--ink);
  font-size: .95rem;
  line-height: 1.65;
}

.office-list strong {
  text-transform: uppercase;
}

.office-list a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-card {
  background: var(--red);
  color: white;
  border: 4px solid var(--ink);
  padding: 40px;
  box-shadow: 12px 12px 0 var(--ink);
}

.contact-card-label {
  color: var(--yellow);
  margin-bottom: 12px;
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.contact-card h3 {
  max-width: 560px;
  margin-bottom: 18px;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: clamp(1.95rem, 3.6vw, 3rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .005em;
}

.contact-card>p:not(.contact-card-label) {
  font-size: 1rem;
  line-height: 1.72;
}

.contact-card>p:not(.contact-card-label) {
  max-width: 560px;
  color: #ffe2e2;
}

.contact-card .button {
  margin-top: 16px;
}

.site-footer {
  background: var(--ink);
  color: white;
  padding: 76px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr .5fr 1fr;
  gap: 70px;
  padding-bottom: 54px;
}

.footer-logo {
  width: 116px;
  height: 116px;
  overflow: hidden;
  background: var(--red);
  border: 2px solid var(--yellow);
  border-radius: 18px;
}

.footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-grid>div:nth-child(2) {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-grid>div>strong {
  color: var(--yellow);
  text-transform: uppercase;
}

.footer-grid p {
  color: #c9c9c9;
  font-size: .92rem;
  line-height: 1.65;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid #555;
  color: #b7b7b7;
  font-size: .88rem;
}

.floating-actions {
  position: fixed;
  right: max(20px, env(safe-area-inset-right));
  bottom: max(20px, env(safe-area-inset-bottom));
  z-index: 95;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.floating-action {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 3px solid var(--ink);
  border-radius: 50%;
  box-shadow: 5px 5px 0 var(--ink);
  transition: opacity .2s ease, transform .2s ease, box-shadow .2s ease;
}

.floating-action:hover {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 var(--ink);
}

.floating-action:focus-visible {
  outline: 4px solid white;
  outline-offset: 3px;
}

.floating-whatsapp {
  width: auto;
  min-width: 206px;
  grid-template-columns: auto 1fr;
  gap: 10px;
  padding: 0 17px 0 12px;
  border-radius: 999px;
  background: white;
  color: var(--ink);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .02em;
  text-transform: uppercase;
  white-space: nowrap;
}

.floating-whatsapp img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.floating-whatsapp span {
  line-height: 1.15;
}

.back-to-top {
  background: var(--yellow);
  color: var(--ink);
  font-size: 1.8rem;
  font-weight: 900;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .main-nav {
    position: fixed;
    inset: 78px 0 0;
    max-height: calc(100dvh - 78px);
    overflow-y: auto;
    background: var(--paper);
    padding: 32px max(22px, calc((100vw - 720px) / 2));
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 18px 0;
    border-bottom: 2px solid var(--ink);
    font-size: 1.15rem;
  }

  .main-nav .nav-cta {
    justify-content: center;
    margin-top: 20px;
    text-align: center;
    border: 2px solid var(--ink);
  }

  .menu-button {
    display: block;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(300px, .82fr);
    gap: 34px;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 7vw, 4.9rem);
  }

  .hero-trust {
    gap: 12px;
  }

  .intro-grid,
  .faq-grid,
  .contact-shell {
    gap: 42px;
  }

  .package-body {
    padding: 22px;
  }

  .package-card h3 {
    font-size: 2.25rem;
  }

  .price strong {
    font-size: 1.85rem;
  }

  .section-title-row {
    gap: 36px;
  }

  .footer-grid {
    gap: 44px;
  }
}

@media (max-width: 860px) {

  .hero-grid,
  .intro-grid,
  .faq-grid,
  .contact-shell {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
    padding-top: 70px;
    gap: 70px;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero-visual {
    width: min(100%, 650px);
    justify-self: center;
  }

  .intro-grid,
  .faq-grid,
  .contact-shell {
    gap: 48px;
  }

  .package-grid {
    grid-template-columns: 1fr;
  }

  .package-card {
    display: grid;
    grid-template-columns: minmax(260px, .9fr) minmax(0, 1.1fr);
  }

  .package-card .package-image {
    height: auto;
    align-self: start;
    border-bottom: 0;
    border-right: 3px solid var(--ink);
  }

  .package-copy {
    min-height: 0;
  }

  .section-title-row {
    align-items: flex-start;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid>div:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 700px) {
  body {
    font-size: 16px;
    line-height: 1.7;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 72px 0;
  }

  .brand-copy small {
    display: none;
  }

  .site-header,
  .nav-wrap {
    min-height: 68px;
  }

  .main-nav {
    inset: 68px 0 0;
  }

  .brand-mark {
    width: 50px;
    height: 50px;
  }

  .hero-grid {
    padding-top: 54px;
    padding-bottom: 92px;
    gap: 64px;
  }

  .hero h1 {
    font-size: clamp(2.85rem, 13vw, 4rem);
  }

  .hero-lead {
    font-size: 1.05rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-trust {
    grid-template-columns: 1fr;
  }

  .hero-trust div {
    border-bottom: 1px solid rgba(255, 255, 255, .25);
    padding-bottom: 12px;
  }

  .hero-stamp {
    width: 92px;
    height: 92px;
    right: -4px;
    top: -42px;
  }

  .hero-stamp strong {
    font-size: 1.35rem;
  }

  .visual-caption {
    left: 10px;
    right: 10px;
    bottom: -42px;
  }

  .section-title-row,
  .packages-head {
    align-items: stretch;
    flex-direction: column;
  }

  .section-title-row {
    margin-bottom: 40px;
  }

  .mode-switch {
    width: 100%;
  }

  .mode-button {
    min-width: 0;
  }

  .advantage {
    grid-template-columns: 58px 1fr;
    gap: 15px;
  }

  .package-card {
    display: block;
  }

  .package-card .package-image {
    border-right: 0;
    border-bottom: 3px solid var(--ink);
  }

  .contact-card {
    padding: 24px;
    box-shadow: 7px 7px 0 var(--ink);
  }

  .contact-card .button {
    width: 100%;
  }

  .menu-gallery,
  .step-list {
    grid-template-columns: 1fr;
  }

  .step-list li:last-child {
    grid-column: auto;
  }

  .office-list>div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-grid>div:last-child {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(calc(100% - 22px), var(--container));
  }

  .section {
    padding: 60px 0;
  }

  h2 {
    font-size: clamp(2.05rem, 10vw, 2.75rem);
  }

  .brand {
    gap: 9px;
  }

  .brand-copy strong {
    font-size: .84rem;
  }

  .hero::after {
    width: 92px;
    height: 92px;
    right: -20px;
    top: 11%;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 12vw, 3.35rem);
  }

  .button {
    min-height: 52px;
    padding: 12px 16px;
    font-size: .9rem;
  }

  .hero-trust strong {
    font-size: .88rem;
  }

  .visual-caption {
    font-size: .84rem;
  }

  .facts>div {
    grid-template-columns: 42px 1fr;
    gap: 14px;
  }

  .advantage {
    grid-template-columns: 44px 1fr;
  }

  .advantage>span {
    font-size: 1.8rem;
  }

  .advantage h3 {
    font-size: 1.35rem;
    line-height: 1.2;
  }

  .mode-button {
    padding: 12px 8px;
    font-size: .76rem;
  }

  .package-body {
    padding: 20px;
  }

  .price {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .price-values {
    align-items: flex-start;
    text-align: left;
  }

  .faq-item button {
    gap: 16px;
    padding: 20px 0;
    font-size: .98rem;
  }

  .faq-item button i {
    width: 30px;
    height: 30px;
  }

  .step-list li {
    grid-template-columns: 52px 1fr;
    gap: 14px;
  }

  .step-list span {
    font-size: 2rem;
  }

  .contact-card {
    padding: 20px;
  }

  .contact-card h3 {
    font-size: 1.85rem;
  }

  .office-list>div {
    font-size: .9rem;
  }

  .footer-logo {
    width: 96px;
    height: 96px;
  }

  .floating-actions {
    right: max(12px, env(safe-area-inset-right));
    bottom: max(14px, env(safe-area-inset-bottom));
    gap: 10px;
  }

  .floating-action {
    width: 50px;
    height: 50px;
    box-shadow: 4px 4px 0 var(--ink);
  }

  .floating-whatsapp {
    width: auto;
    min-width: 184px;
    padding: 0 13px 0 9px;
    gap: 7px;
    font-size: .74rem;
  }

  .floating-whatsapp img {
    width: 31px;
    height: 31px;
  }

  .back-to-top {
    font-size: 1.55rem;
  }
}
