:root {
  --navy: #242D4C;
  --navy-deep: #182039;
  --navy-soft: #354061;
  --gold: #AB9C65;
  --gold-light: #C8BC90;
  --cream: #F4F0E4;
  --paper: #FBFAF7;
  --white: #FFFFFF;
  --ink: #1E263D;
  --muted: #6D7280;
  --line: rgba(36,45,76,.13);
  --shadow: 0 24px 70px rgba(24,32,57,.13);
  --radius: 22px;
  --font: "Balgin", "Manrope", Arial, sans-serif;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
::selection { background: var(--gold); color: var(--navy-deep); }

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 9999;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--cream);
  color: var(--navy);
  box-shadow: var(--shadow);
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  background: rgba(24,32,57,.88);
  border-bottom: 1px solid rgba(244,240,228,.13);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: background .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled {
  background: rgba(24,32,57,.97);
  box-shadow: 0 12px 32px rgba(8,13,29,.16);
}
.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--cream);
  min-width: 0;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  flex: 0 0 auto;
}
.brand-logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.brand-copy { display: grid; line-height: 1.1; }
.brand-copy strong {
  font-size: 15px;
  letter-spacing: .04em;
  font-weight: 700;
}
.brand-copy small {
  margin-top: 5px;
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(255,255,255,.85);
  font-size: 13px;
  font-weight: 650;
}
.main-nav > a:not(.nav-cta) {
  position: relative;
  padding-block: 8px;
}
.main-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 2px;
  height: 1px;
  background: var(--gold);
  transition: right .25s ease;
}
.main-nav > a:not(.nav-cta):hover::after,
.main-nav > a:not(.nav-cta):focus-visible::after { right: 0; }
.nav-cta {
  padding: 11px 16px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: var(--cream);
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--gold);
  color: var(--navy-deep);
  transform: translateY(-1px);
}
.nav-toggle {
  display: none;
  width: 46px;
  height: 42px;
  border: 0;
  background: transparent;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--cream);
  border-radius: 99px;
  transition: transform .25s ease, opacity .25s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: 800px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--navy-deep);
}
.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(24,32,57,.05) 0%, rgba(24,32,57,.08) 36%, rgba(24,32,57,.82) 64%, rgba(24,32,57,.97) 100%),
    linear-gradient(0deg, rgba(24,32,57,.2), transparent 42%);
}
.hero-pattern {
  position: absolute;
  right: -80px;
  top: 80px;
  width: 540px;
  height: 540px;
  opacity: .24;
  background:
    linear-gradient(30deg, transparent 45%, var(--gold) 46% 47%, transparent 48%) 0 0/90px 90px,
    linear-gradient(150deg, transparent 45%, var(--gold) 46% 47%, transparent 48%) 0 0/90px 90px;
  mask-image: linear-gradient(to bottom, black, transparent 86%);
}
.hero-layout {
  position: relative;
  z-index: 2;
  min-height: 800px;
  display: grid;
  align-items: center;
  justify-items: end;
  padding-top: 90px;
}
.hero-card {
  width: min(590px, 53%);
  padding: 48px 0 44px 56px;
  color: var(--cream);
}
.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.hero h1,
.section-heading h2,
.about-copy h2,
.faq-heading h2,
.contact-copy h2 {
  margin: 0;
  letter-spacing: -.035em;
  line-height: 1.08;
  text-wrap: balance;
}
.hero h1 {
  max-width: 560px;
  font-size: clamp(44px, 5vw, 72px);
  color: var(--cream);
  font-weight: 650;
}
.hero-text {
  max-width: 560px;
  margin: 24px 0 0;
  color: rgba(244,240,228,.82);
  font-size: 17px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .01em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.button:hover,
.button:focus-visible { transform: translateY(-2px); }
.button-primary {
  background: var(--gold);
  color: var(--navy-deep);
  box-shadow: 0 12px 30px rgba(171,156,101,.2);
}
.button-primary:hover,
.button-primary:focus-visible { background: var(--gold-light); box-shadow: 0 15px 34px rgba(171,156,101,.27); }
.button-ghost {
  border-color: rgba(244,240,228,.35);
  color: var(--cream);
  background: rgba(244,240,228,.05);
}
.button-ghost:hover,
.button-ghost:focus-visible { background: rgba(244,240,228,.12); border-color: rgba(244,240,228,.52); }
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid rgba(244,240,228,.18);
  color: rgba(244,240,228,.7);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.credentials {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}
.credential-grid {
  display: grid;
  grid-template-columns: .7fr 1.1fr 1.4fr;
}
.credential-item {
  min-height: 150px;
  display: grid;
  align-content: center;
  gap: 7px;
  padding: 30px 36px;
  border-right: 1px solid var(--line);
}
.credential-item:first-child { border-left: 1px solid var(--line); }
.credential-kicker {
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.credential-item strong {
  max-width: 430px;
  color: var(--navy);
  font-size: 15px;
  line-height: 1.5;
}

.section { padding: 112px 0; }
.section-light { background: var(--paper); }
.section-heading {
  display: grid;
  grid-template-columns: .42fr 1.15fr 1fr;
  gap: 28px;
  align-items: end;
  margin-bottom: 54px;
}
.section-heading .eyebrow { align-self: start; margin-top: 12px; }
.section-heading h2,
.about-copy h2,
.faq-heading h2,
.contact-copy h2 {
  color: var(--navy);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 650;
}
.section-heading > p:last-child,
.faq-heading > p:last-child,
.contact-copy > p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.practice-intro {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}
.practice-card {
  position: relative;
  min-height: 300px;
  padding: 34px 36px 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
}
.practice-card::after {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  right: -96px;
  bottom: -100px;
  border: 1px solid rgba(171,156,101,.27);
  transform: rotate(45deg);
}
.practice-card-featured {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--cream);
}
.practice-card-featured::after { border-color: rgba(200,188,144,.25); }
.card-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
}
.practice-card-featured .card-number { border-color: rgba(244,240,228,.18); }
.practice-card h3 {
  margin: 30px 0 14px;
  color: var(--navy);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -.02em;
}
.practice-card-featured h3 { color: var(--cream); }
.clean-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.clean-list li {
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--cream);
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
}
.practice-card-featured .clean-list li {
  background: rgba(244,240,228,.1);
  color: var(--cream);
  border: 1px solid rgba(244,240,228,.12);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.work-card {
  min-height: 350px;
  padding: 30px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.72);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.work-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 44px rgba(24,32,57,.08);
  border-color: rgba(171,156,101,.42);
}
.work-card-wide { grid-column: span 4; min-height: auto; }
.work-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--cream);
  color: var(--gold);
}
.work-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.work-card h3 {
  margin: 24px 0 14px;
  color: var(--navy);
  font-size: 19px;
  font-weight: 750;
}
.work-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 14px;
}
.work-card li + li { margin-top: 8px; }
.work-card-wide ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 34px;
  row-gap: 8px;
}

.about {
  position: relative;
  background: var(--cream);
  overflow: hidden;
}
.about::before {
  content: "";
  position: absolute;
  left: -120px;
  top: 80px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(171,156,101,.18);
  transform: rotate(45deg);
}
.about-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 78px;
  align-items: center;
}
.about-media {
  position: relative;
  padding: 18px 18px 0 0;
}
.about-media::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 58%;
  height: 66%;
  border: 1px solid var(--gold);
  border-radius: 8px 42px 8px 42px;
}
.about-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 18%;
  border-radius: 10px 42px 10px 42px;
  box-shadow: var(--shadow);
}
.about-seal {
  position: absolute;
  z-index: 2;
  right: -18px;
  bottom: 42px;
  width: 114px;
  height: 114px;
  display: grid;
  place-items: center;
  align-content: center;
  border-radius: 50%;
  background: var(--navy);
  border: 6px solid var(--cream);
  color: var(--cream);
  box-shadow: 0 15px 35px rgba(24,32,57,.18);
}
.about-seal strong { color: var(--gold-light); font-size: 12px; letter-spacing: .12em; }
.about-seal span { margin-top: 4px; font-size: 15px; font-weight: 800; }
.about-copy .eyebrow { margin-bottom: 14px; }
.about-lead {
  margin: 24px 0 34px;
  color: var(--muted);
  font-size: 17px;
}
.timeline {
  border-top: 1px solid var(--line);
}
.timeline-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.timeline-item span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.timeline-item p { margin: 0; color: var(--navy-soft); font-size: 14px; }
.timeline-current { background: linear-gradient(90deg, rgba(171,156,101,.08), transparent); }
.institution-note {
  margin-top: 24px;
  padding: 20px 22px;
  border-left: 3px solid var(--gold);
  background: rgba(255,255,255,.52);
}
.institution-note p { margin: 0; color: var(--muted); font-size: 14px; }

.photo-strip {
  display: grid;
  grid-template-columns: 1.6fr .7fr .7fr;
  gap: 16px;
  margin-top: 78px;
}
.photo-strip figure {
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  background: var(--navy);
}
.photo-strip img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  transition: transform .55s ease;
}
.photo-strip figure:first-child img { object-position: center 40%; }
.photo-strip figure:nth-child(2) img,
.photo-strip figure:nth-child(3) img { object-position: center 16%; }
.photo-strip figure:hover img { transform: scale(1.025); }

.service-flow {
  position: relative;
  background: var(--navy);
  color: var(--cream);
  overflow: hidden;
}
.service-flow::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -180px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(171,156,101,.22);
  transform: rotate(45deg);
}
.section-heading-inverse h2 { color: var(--cream); }
.section-heading-inverse > p:last-child { color: rgba(244,240,228,.64); }
.steps {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid rgba(244,240,228,.13);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(244,240,228,.13);
}
.step {
  min-height: 300px;
  padding: 34px;
  background: var(--navy);
}
.step span {
  display: inline-block;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
}
.step h3 {
  margin: 58px 0 12px;
  color: var(--cream);
  font-size: 20px;
  font-weight: 700;
}
.step p { margin: 0; color: rgba(244,240,228,.66); font-size: 14px; }

.faq { background: var(--paper); }
.faq-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 90px;
}
.faq-heading { position: sticky; top: 120px; align-self: start; }
.faq-heading h2 { margin-bottom: 18px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary {
  position: relative;
  padding: 22px 46px 22px 0;
  cursor: pointer;
  list-style: none;
  color: var(--navy);
  font-weight: 750;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold);
  font-size: 18px;
  font-weight: 500;
  transition: transform .2s ease, background .2s ease;
}
.faq-list details[open] summary::after { content: "−"; background: var(--cream); }
.faq-list details p {
  margin: -4px 54px 22px 0;
  color: var(--muted);
  font-size: 14px;
}

.contact {
  position: relative;
  overflow: hidden;
  background: var(--navy-deep);
  color: var(--cream);
}
.contact-pattern {
  position: absolute;
  inset: 0;
  opacity: .14;
  background:
    linear-gradient(45deg, transparent 48%, var(--gold) 49% 50%, transparent 51%) 0 0/120px 120px,
    linear-gradient(-45deg, transparent 48%, var(--gold) 49% 50%, transparent 51%) 0 0/120px 120px;
  mask-image: linear-gradient(90deg, transparent 0, black 48%, black 100%);
}
.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 80px;
  align-items: center;
}
.contact-copy h2 { color: var(--cream); }
.contact-copy > p:not(.eyebrow) { max-width: 520px; margin-top: 18px; color: rgba(244,240,228,.68); }
.contact-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; margin-top: 34px; }
.button-gold { background: var(--gold); color: var(--navy-deep); }
.button-gold:hover, .button-gold:focus-visible { background: var(--gold-light); }
.text-link {
  color: var(--cream);
  font-size: 13px;
  font-weight: 750;
  border-bottom: 1px solid rgba(244,240,228,.4);
  padding-bottom: 2px;
}
.contact-card {
  padding: 34px 36px;
  border: 1px solid rgba(244,240,228,.15);
  border-radius: var(--radius);
  background: rgba(244,240,228,.055);
  backdrop-filter: blur(8px);
}
.contact-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 22px;
  padding: 17px 0;
  border-bottom: 1px solid rgba(244,240,228,.12);
}
.contact-row span {
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.contact-row a,
.contact-row p { margin: 0; color: rgba(244,240,228,.88); font-size: 14px; }
.contact-row a:hover { color: var(--gold-light); }
.contact-social { display: flex; gap: 18px; padding-top: 24px; }
.contact-social a { color: var(--cream); font-size: 13px; font-weight: 750; }
.contact-social a:hover { color: var(--gold-light); }

.safety-note { background: var(--cream); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.safety-inner { display: flex; align-items: flex-start; gap: 18px; padding-top: 24px; padding-bottom: 24px; }
.safety-inner svg { flex: 0 0 auto; width: 28px; height: 28px; fill: none; stroke: var(--gold); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.safety-inner strong { display: block; color: var(--navy); font-size: 13px; }
.safety-inner p { margin: 3px 0 0; color: var(--muted); font-size: 12px; }

.site-footer { padding: 58px 0 36px; background: #10162A; color: rgba(244,240,228,.7); }
.footer-grid { display: grid; grid-template-columns: 1.2fr .7fr .8fr; gap: 56px; }
.brand-footer { width: fit-content; margin-bottom: 18px; }
.brand-footer .brand-mark { box-shadow: none; }
.footer-brand p { max-width: 430px; margin: 0; font-size: 12px; line-height: 1.7; }
.footer-links { display: grid; align-content: start; gap: 11px; }
.footer-links a { width: fit-content; font-size: 12px; }
.footer-links a:hover { color: var(--gold-light); }
.footer-meta { text-align: right; }
.footer-meta p { margin: 0 0 12px; font-size: 12px; }

.floating-whatsapp {
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 980;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy-deep);
  box-shadow: 0 12px 32px rgba(24,32,57,.22);
  transition: transform .2s ease, background .2s ease;
}
.floating-whatsapp:hover, .floating-whatsapp:focus-visible { transform: translateY(-3px); background: var(--gold-light); }
.floating-whatsapp svg { width: 28px; height: 28px; fill: currentColor; }

.cookie-banner {
  position: fixed;
  z-index: 2000;
  left: 50%;
  bottom: 18px;
  width: min(calc(100% - 36px), 840px);
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 18px 20px;
  border: 1px solid rgba(244,240,228,.14);
  border-radius: 16px;
  background: rgba(24,32,57,.97);
  color: var(--cream);
  box-shadow: 0 22px 60px rgba(10,15,30,.3);
}
.cookie-banner[hidden] { display: none; }
.cookie-banner strong { font-size: 13px; }
.cookie-banner p { margin: 4px 0 0; color: rgba(244,240,228,.65); font-size: 11px; line-height: 1.55; }
.cookie-actions { display: flex; gap: 8px; }
.cookie-actions button { min-height: 38px; padding: 0 14px; border-radius: 999px; cursor: pointer; font-size: 11px; font-weight: 800; }
.cookie-secondary { border: 1px solid rgba(244,240,228,.22); background: transparent; color: var(--cream); }
.cookie-primary { border: 1px solid var(--gold); background: var(--gold); color: var(--navy-deep); }

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity .7s ease, transform .7s ease;
}
.js .reveal { opacity: 0; transform: translateY(16px); }
.js .reveal.is-visible { opacity: 1; transform: none; }

:focus-visible { outline: 2px solid var(--gold-light); outline-offset: 3px; }

@media (max-width: 1080px) {
  .main-nav { gap: 18px; }
  .nav-cta { display: none; }
  .hero-card { width: min(610px, 60%); }
  .section-heading { grid-template-columns: .35fr 1fr; }
  .section-heading > p:last-child { grid-column: 2; }
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .work-card-wide { grid-column: span 2; }
  .work-card-wide ul { grid-template-columns: repeat(2, 1fr); }
  .about-grid { gap: 48px; }
  .contact-grid { gap: 50px; }
}

@media (max-width: 820px) {
  .container { width: min(calc(100% - 30px), var(--container)); }
  .header-inner { min-height: 70px; }
  .nav-toggle { display: block; }
  .main-nav {
    position: absolute;
    left: 15px;
    right: 15px;
    top: 76px;
    display: grid;
    gap: 0;
    padding: 10px 18px;
    border: 1px solid rgba(244,240,228,.12);
    border-radius: 16px;
    background: rgba(24,32,57,.98);
    box-shadow: 0 20px 50px rgba(8,13,29,.22);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
  }
  .main-nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .main-nav a { padding: 12px 4px !important; border-bottom: 1px solid rgba(244,240,228,.08); }
  .main-nav a:last-child { border-bottom: 0; }
  .nav-cta { display: block; border: 0; border-radius: 0; }

  .hero { min-height: auto; padding-top: 70px; }
  .hero-photo { position: relative; height: 56vh; min-height: 420px; object-position: 37% center; }
  .hero-overlay {
    background: linear-gradient(0deg, var(--navy-deep) 0%, rgba(24,32,57,.92) 16%, rgba(24,32,57,.18) 48%, rgba(24,32,57,.03) 100%);
  }
  .hero-pattern { display: none; }
  .hero-layout { min-height: auto; margin-top: -170px; justify-items: stretch; padding: 0 0 54px; }
  .hero-card {
    width: 100%;
    padding: 110px 0 0;
  }
  .hero h1 { font-size: clamp(40px, 10vw, 58px); }
  .hero-text { font-size: 15px; }

  .credential-grid { grid-template-columns: 1fr; }
  .credential-item { min-height: 110px; padding: 24px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .credential-item:first-child { border-left: 0; }
  .credential-item:last-child { border-bottom: 0; }

  .section { padding: 78px 0; }
  .section-heading { display: block; margin-bottom: 34px; }
  .section-heading h2 { margin: 0 0 18px; }
  .section-heading .eyebrow { margin-top: 0; }
  .practice-intro { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: 1fr; }
  .work-card, .work-card-wide { grid-column: auto; min-height: auto; }
  .work-card-wide ul { grid-template-columns: 1fr; }

  .about-grid { grid-template-columns: 1fr; gap: 44px; }
  .about-media { max-width: 560px; margin-inline: auto; }
  .photo-strip { grid-template-columns: 1fr 1fr; margin-top: 48px; }
  .photo-strip figure:first-child { grid-column: 1 / -1; }
  .photo-strip img { height: 280px; }

  .steps { grid-template-columns: 1fr; }
  .step { min-height: 220px; }
  .step h3 { margin-top: 34px; }

  .faq-grid { grid-template-columns: 1fr; gap: 36px; }
  .faq-heading { position: static; }

  .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .contact-card { padding: 26px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-meta { grid-column: 1 / -1; text-align: left; padding-top: 8px; border-top: 1px solid rgba(244,240,228,.09); }
  .cookie-banner { grid-template-columns: 1fr; gap: 14px; }
  .cookie-actions { justify-content: flex-end; }
}

@media (max-width: 520px) {
  .brand { gap: 9px; }
  .brand-copy strong { font-size: 11px; letter-spacing: .015em; white-space: nowrap; }
  .brand-copy small { font-size: 9px; letter-spacing: .18em; }
  .brand-mark { width: 46px; height: 46px; padding: 0; }
  .hero-photo { height: 50vh; min-height: 360px; object-position: 32% center; }
  .hero-layout { margin-top: -142px; }
  .hero-card { padding-top: 90px; }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .hero-meta { display: grid; gap: 8px; }
  .section { padding: 64px 0; }
  .section-heading h2,
  .about-copy h2,
  .faq-heading h2,
  .contact-copy h2 { font-size: 36px; }
  .practice-card { min-height: 0; padding: 28px 24px; }
  .clean-list { display: grid; }
  .clean-list li { width: fit-content; }
  .about-seal { width: 96px; height: 96px; right: -6px; }
  .timeline-item { grid-template-columns: 58px 1fr; }
  .photo-strip { grid-template-columns: 1fr; }
  .photo-strip figure:first-child { grid-column: auto; }
  .photo-strip img { height: 300px; }
  .contact-row { grid-template-columns: 1fr; gap: 5px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-meta { grid-column: auto; }
  .floating-whatsapp { width: 50px; height: 50px; }
  .cookie-actions { display: grid; grid-template-columns: 1fr 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Página de privacidade */
.simple-page { background: var(--paper); }
.simple-header { padding: 18px 0; background: var(--navy-deep); }
.legal-content { padding: 80px 0 100px; }
.legal-container { max-width: 820px; }
.legal-container h1 { margin: 0 0 20px; color: var(--navy); font-size: clamp(42px, 6vw, 68px); line-height: 1.05; letter-spacing: -.04em; }
.legal-lead { margin: 0 0 54px; color: var(--muted); font-size: 18px; }
.legal-container section { padding: 24px 0; border-top: 1px solid var(--line); }
.legal-container h2 { margin: 0 0 10px; color: var(--navy); font-size: 20px; }
.legal-container section p { margin: 0; color: var(--muted); }
.legal-container section a { color: var(--navy); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.legal-updated { margin: 34px 0 22px; color: var(--muted); font-size: 12px; }
.legal-back { width: fit-content; }
