/* ============================================
   Navarro & Valdés — sistema visual
   Premium editorial · Madrid · 2026
   ============================================ */

:root {
  /* Color */
  --bg: #FAF7F2;
  --bg-warm: #F2EDE3;
  --ink: #0E0E10;
  --ink-soft: #1A1A1D;
  --mute: #6B6760;
  --line: rgba(14,14,16,.10);
  --line-soft: rgba(14,14,16,.05);
  --gold: #C8A968;
  --gold-deep: #B0904E;
  --green: #3F5B57;
  --green-deep: #2D4543;
  --cream: #FAF7F2;
  --paper: #FFFFFF;

  /* Type scale (fluid) */
  --display-1: clamp(3rem, 6.5vw, 6.25rem);
  --display-2: clamp(2.25rem, 4.6vw, 4.25rem);
  --display-3: clamp(1.75rem, 3vw, 2.75rem);
  --h-card: 1.375rem;

  /* Spacing */
  --gap: clamp(1rem, 2vw, 1.5rem);
  --pad: clamp(1.25rem, 4vw, 2.5rem);
  --sect: clamp(4rem, 8vw, 7.5rem);
  --rad: 18px;

  /* Type */
  --serif: "Fraunces", "Source Serif Pro", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

  /* Motion */
  --ease: cubic-bezier(.2,.7,.2,1);
}

/* Reset minimal */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html, body { height: 100%; }
body {
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; transition: color .2s var(--ease); }
ul { list-style: none; padding: 0; }

/* Skip */
.skip {
  position: absolute; top: -100px; left: 0;
  background: var(--ink); color: var(--cream);
  padding: 12px 18px; z-index: 999;
}
.skip:focus { top: 0; }

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* ===== Utility bar ===== */
.utility {
  background: var(--ink);
  color: rgba(250,247,242,.85);
  font-size: .82rem;
  letter-spacing: .01em;
}
.utility__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: .55rem 0;
  gap: 1rem;
  flex-wrap: wrap;
}
.utility__item span[aria-hidden] { color: var(--gold); margin-right: .35rem; }
.utility__item--right { display: flex; align-items: center; gap: .65rem; }
.utility__link:hover { color: var(--gold); }
.utility__sep { opacity: .5; }

/* ===== Header ===== */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250,247,242,.85);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.05rem 0;
  gap: 1rem;
}
.brand { display: inline-flex; align-items: center; gap: .65rem; }
.brand__mark {
  display: inline-grid; place-items: center;
  width: 38px; height: 38px;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: .92rem;
  letter-spacing: -.03em;
}
.brand__name {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: -.02em;
}
.brand__name .amp {
  font-style: italic;
  color: var(--gold-deep);
  font-weight: 400;
}
.nav {
  display: flex; gap: 2rem;
  font-size: .94rem;
  letter-spacing: .005em;
}
.nav a { position: relative; padding: .25rem 0; }
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  height: 1px; width: 0; background: var(--ink);
  transition: width .25s var(--ease);
}
.nav a:hover::after { width: 100%; }

.hamburger { display: none; width: 38px; height: 38px; }
.hamburger span {
  display: block; width: 22px; height: 1.5px; background: var(--ink); margin: 4px auto;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .55rem;
  padding: .75rem 1.25rem;
  border-radius: 999px;
  font-weight: 500;
  font-size: .94rem;
  letter-spacing: .005em;
  transition: all .25s var(--ease);
  white-space: nowrap;
  border: 1.5px solid transparent;
  cursor: pointer;
}
.btn--primary { background: var(--ink); color: var(--cream); }
.btn--primary:hover { background: var(--green-deep); transform: translateY(-1px); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--cream); }
.btn--lg { padding: 1rem 1.7rem; font-size: 1rem; }
.btn--block { width: 100%; }
.header__cta { font-size: .9rem; padding: .65rem 1.15rem; }

/* ===== Eyebrow ===== */
.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 1.1rem;
}
.eyebrow__dot {
  display: inline-block; width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.eyebrow--light { color: rgba(250,247,242,.7); }
.eyebrow--light .eyebrow__dot { background: var(--gold); }
.eyebrow--gold { color: var(--gold-deep); }

/* ===== HERO ===== */
.hero {
  padding: clamp(3rem, 6vw, 5.5rem) 0 var(--sect);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: 30%; right: -10%;
  width: 60vw; height: 60vw; max-width: 800px; max-height: 800px;
  background: radial-gradient(closest-side, rgba(200,169,104,.12), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero__title {
  font-family: var(--serif);
  font-size: var(--display-1);
  font-weight: 380;
  line-height: .98;
  letter-spacing: -0.025em;
  margin-bottom: 1.75rem;
  font-variation-settings: "opsz" 144;
}
.hero__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--green);
}
.hero__title-script {
  font-style: italic;
  font-weight: 350;
  color: var(--gold-deep);
}
.hero__lead {
  font-size: 1.18rem;
  color: var(--ink-soft);
  max-width: 36ch;
  margin-bottom: 2rem;
  line-height: 1.55;
}
.hero__cta {
  display: flex; gap: .85rem;
  margin-bottom: 2.75rem;
  flex-wrap: wrap;
}
.hero__trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
}
.hero__trust li {
  display: flex; flex-direction: column; gap: .25rem;
}
.hero__trust strong {
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 500;
  letter-spacing: -.02em;
  color: var(--ink);
  line-height: 1;
}
.hero__trust span[aria-hidden] {
  color: var(--gold);
  font-size: .9rem;
  letter-spacing: .12em;
}
.hero__trust small {
  font-size: .82rem;
  color: var(--mute);
  letter-spacing: .02em;
}

/* Hero figure */
.hero__figure {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--rad);
  overflow: visible;
}
.hero__photo {
  position: absolute; inset: 0;
  border-radius: var(--rad);
  background:
    linear-gradient(180deg, rgba(14,14,16,0) 55%, rgba(14,14,16,.45) 100%),
    url("https://images.unsplash.com/photo-1494790108377-be9c29b29330?auto=format&fit=crop&w=1200&q=85") center/cover;
  filter: saturate(1.06) contrast(1.04);
  box-shadow: 0 40px 90px -20px rgba(14,14,16,.32);
}
.hero__quote {
  position: absolute;
  bottom: 1.75rem; left: -2.25rem;
  background: var(--paper);
  padding: 1.4rem 1.6rem;
  border-radius: 14px;
  font-family: var(--serif);
  font-size: 1.4rem;
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
  max-width: 18rem;
  box-shadow: 0 22px 50px -12px rgba(14,14,16,.22);
  line-height: 1.2;
  z-index: 2;
}
.hero__quote-mark {
  font-size: 2.5rem;
  color: var(--gold);
  line-height: 0;
  vertical-align: -.45em;
  margin-right: .25rem;
}
.hero__quote small {
  display: block;
  font-family: var(--sans);
  font-style: normal;
  font-size: .78rem;
  color: var(--mute);
  margin-top: .55rem;
  letter-spacing: .01em;
  font-weight: 400;
}
.hero__badge {
  position: absolute;
  top: 1.5rem; right: -1rem;
  background: var(--gold);
  color: var(--ink);
  padding: 1rem 1.2rem;
  border-radius: 50%;
  width: 105px; height: 105px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  line-height: 1.15;
  box-shadow: 0 12px 30px -8px rgba(176,144,78,.5);
  transform: rotate(-8deg);
}
.hero__badge strong {
  font-family: var(--serif);
  font-size: 1.65rem;
  font-style: italic;
  font-weight: 500;
  letter-spacing: -.02em;
  margin-bottom: .15rem;
  text-transform: none;
}

/* ===== Strip ===== */
.strip {
  padding: 1.6rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-warm);
}
.strip__inner {
  display: flex; align-items: center; gap: 2.5rem;
  justify-content: space-between;
  flex-wrap: wrap;
}
.strip__label {
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--mute);
  font-weight: 500;
}
.strip__logos {
  display: flex; gap: 2.75rem;
  align-items: center;
  flex-wrap: wrap;
}
.strip__logos li {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.1rem;
  color: var(--ink-soft);
  opacity: .65;
  letter-spacing: -.01em;
  transition: opacity .2s var(--ease);
}
.strip__logos li:hover { opacity: 1; }

/* ===== Sections ===== */
.section { padding: var(--sect) 0; }
.section--cream { background: var(--bg-warm); }
.section--dark { background: var(--ink); color: var(--cream); }

.section__head {
  max-width: 740px;
  margin-bottom: 4rem;
}
.section__head--centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section__head--centered .eyebrow { justify-content: center; }
.section__head--split {
  display: flex; align-items: end; justify-content: space-between;
  max-width: 100%;
  gap: 2rem;
  flex-wrap: wrap;
}
.section__title {
  font-family: var(--serif);
  font-size: var(--display-2);
  font-weight: 380;
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.section--dark .section__title { color: var(--cream); }
.section__lead {
  font-size: 1.13rem;
  color: var(--mute);
  max-width: 56ch;
  line-height: 1.55;
}
.section--dark .section__lead { color: rgba(250,247,242,.75); }
.section__head--centered .section__lead { margin-left: auto; margin-right: auto; }

/* ===== Cards (tratamientos) ===== */
.cards {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.25rem;
}
.card {
  background: var(--paper);
  padding: 2rem;
  border-radius: var(--rad);
  display: flex; flex-direction: column;
  gap: 1rem;
  border: 1px solid var(--line-soft);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  position: relative;
  overflow: hidden;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px -20px rgba(14,14,16,.18);
}
.card__icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--bg-warm);
  display: grid; place-items: center;
  color: var(--green);
}
.card__icon svg { width: 22px; height: 22px; }
.card h3 {
  font-family: var(--serif);
  font-size: var(--h-card);
  font-weight: 450;
  letter-spacing: -.015em;
  line-height: 1.15;
}
.card p {
  font-size: .98rem;
  color: var(--mute);
  line-height: 1.5;
  flex: 1;
}
.card__cta {
  font-size: .92rem;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  align-self: flex-start;
  padding-bottom: 2px;
  transition: color .2s var(--ease), border-color .2s var(--ease);
}
.card__cta:hover { color: var(--gold-deep); border-color: var(--gold-deep); }

/* Feature card (implantes) */
.card--feature {
  grid-row: span 2;
  padding: 0;
  background: var(--ink);
  color: var(--cream);
  border: none;
}
.card--feature .card__media {
  height: 60%;
  min-height: 280px;
  background:
    linear-gradient(180deg, rgba(14,14,16,0) 60%, rgba(14,14,16,.7) 100%),
    url("https://images.unsplash.com/photo-1588776814546-1ffcf47267a5?auto=format&fit=crop&w=1200&q=80") center/cover;
}
.card--feature .card__body {
  padding: 2rem;
  display: flex; flex-direction: column;
  gap: 1rem;
  flex: 1;
}
.card__tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .3rem;
}
.card--feature h3 { font-size: 1.65rem; color: var(--cream); }
.card--feature p { color: rgba(250,247,242,.75); }
.card--feature .card__cta {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.card--feature .card__cta:hover { color: var(--cream); border-color: var(--cream); }

/* ===== Manifesto ===== */
.manifesto {
  background:
    radial-gradient(ellipse at top right, rgba(63,91,87,.08), transparent 60%),
    var(--bg);
  padding: var(--sect) 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.manifesto__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.manifesto__title {
  font-family: var(--serif);
  font-size: var(--display-2);
  font-weight: 380;
  line-height: 1.04;
  letter-spacing: -0.022em;
  max-width: 22ch;
  margin-bottom: 4rem;
}
.manifesto__highlight {
  font-style: italic;
  color: var(--green);
  font-weight: 380;
}
.manifesto__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem 4rem;
}
.manifesto__grid h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 450;
  letter-spacing: -.015em;
  margin-bottom: .55rem;
  position: relative;
  padding-left: 1.5rem;
}
.manifesto__grid h3::before {
  content: "";
  position: absolute;
  left: 0; top: .55rem;
  width: 12px; height: 1px;
  background: var(--gold);
}
.manifesto__grid p {
  color: var(--mute);
  padding-left: 1.5rem;
  font-size: 1.02rem;
}

/* ===== Equipo ===== */
.team {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.team__card {
  background: var(--paper);
  border-radius: var(--rad);
  overflow: hidden;
  border: 1px solid var(--line-soft);
  transition: transform .3s var(--ease);
}
.team__card:hover { transform: translateY(-4px); }
.team__photo {
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center;
  filter: grayscale(.4) contrast(1.05);
  transition: filter .3s var(--ease);
}
.team__card:hover .team__photo { filter: grayscale(0) contrast(1.05); }
.team__photo--gonzalo { background-image: url("https://images.unsplash.com/photo-1622253692010-333f2da6031d?auto=format&fit=crop&w=600&q=80"); }
.team__photo--valdes { background-image: url("https://images.unsplash.com/photo-1559839734-2b71ea197ec2?auto=format&fit=crop&w=600&q=80"); }
.team__photo--equipo { background-image: url("https://images.unsplash.com/photo-1594824476967-48c8b964273f?auto=format&fit=crop&w=600&q=80"); }
.team__photo--auxiliar { background-image: url("https://images.unsplash.com/photo-1612531386530-97286d97c2d2?auto=format&fit=crop&w=600&q=80"); }
.team__card h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: -.015em;
  padding: 1.4rem 1.4rem 0;
  margin-bottom: .25rem;
}
.team__role {
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 500;
  padding: 0 1.4rem;
  margin-bottom: .85rem;
}
.team__bio {
  font-size: .94rem;
  color: var(--mute);
  padding: 0 1.4rem 1.5rem;
  line-height: 1.5;
}

/* ===== Reviews ===== */
.rating-big {
  text-align: right;
  display: flex; flex-direction: column; align-items: flex-end;
  gap: .15rem;
}
.rating-big__num {
  font-family: var(--serif);
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 450;
  line-height: 1;
  letter-spacing: -.03em;
}
.rating-big__stars {
  color: var(--gold);
  font-size: 1.2rem;
  letter-spacing: .15em;
  margin-top: .25rem;
}
.rating-big__link {
  font-size: .9rem;
  color: var(--mute);
  margin-top: .55rem;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
}
.rating-big__link:hover { color: var(--ink); }

.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.review {
  background: var(--paper);
  border-radius: var(--rad);
  padding: 1.75rem;
  border: 1px solid var(--line-soft);
  position: relative;
}
.review::before {
  content: "“";
  position: absolute;
  top: 1rem; right: 1.4rem;
  font-family: var(--serif);
  font-size: 4.5rem;
  color: var(--bg-warm);
  line-height: 1;
}
.review__head {
  display: flex; align-items: center;
  gap: .85rem;
  margin-bottom: 1.25rem;
}
.review__avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--green);
  color: var(--cream);
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 500;
  display: grid; place-items: center;
}
.review__head div { display: flex; flex-direction: column; gap: 1px; }
.review__head strong { font-size: .98rem; font-weight: 500; }
.review__head small { font-size: .8rem; color: var(--mute); }
.review__stars {
  margin-left: auto;
  color: var(--gold);
  font-size: .95rem;
  letter-spacing: .08em;
}
.review p {
  font-size: .97rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* ===== Clínicas ===== */
.clinics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.clinic {
  background: rgba(255,255,255,.04);
  border-radius: var(--rad);
  overflow: hidden;
  border: 1px solid rgba(250,247,242,.08);
  display: grid;
  grid-template-columns: 1fr;
}
.clinic__map {
  aspect-ratio: 16 / 9;
  background-color: #555;
  background-position: center;
  background-size: cover;
  filter: brightness(.85) saturate(.7);
}
.clinic__map {
  position: relative;
  overflow: hidden;
}
.clinic__map iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
  filter: contrast(.9) saturate(.85);
}
.clinic__map::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,14,16,0) 65%, rgba(14,14,16,.4) 100%);
  pointer-events: none;
}
.clinic__body {
  padding: 1.75rem;
  display: flex; flex-direction: column;
  gap: .75rem;
}
.clinic__tag {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .3rem;
}
.clinic h3 {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 450;
  letter-spacing: -.015em;
  color: var(--cream);
}
.clinic address {
  font-style: normal;
  color: rgba(250,247,242,.8);
  line-height: 1.55;
  font-size: .97rem;
}
.clinic__hours {
  font-size: .92rem;
  color: rgba(250,247,242,.6);
}
.clinic__actions {
  display: flex; gap: .65rem;
  margin-top: .5rem;
  flex-wrap: wrap;
}
.section--dark .btn--primary { background: var(--gold); color: var(--ink); }
.section--dark .btn--primary:hover { background: var(--cream); }
.section--dark .btn--ghost { color: var(--cream); border-color: rgba(250,247,242,.4); }
.section--dark .btn--ghost:hover { background: var(--cream); color: var(--ink); }

/* ===== CTA ===== */
.cta {
  padding: var(--sect) 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(200,169,104,.15), transparent 60%),
    var(--bg-warm);
}
.cta__inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.cta__title {
  font-family: var(--serif);
  font-size: var(--display-2);
  font-weight: 380;
  line-height: 1.04;
  letter-spacing: -.022em;
  margin-bottom: 1.25rem;
}
.cta__lead {
  font-size: 1.13rem;
  color: var(--mute);
  margin-bottom: 3rem;
  max-width: 50ch;
  margin-left: auto; margin-right: auto;
}

/* ===== Form ===== */
.form {
  background: var(--paper);
  padding: 2.25rem;
  border-radius: var(--rad);
  text-align: left;
  box-shadow: 0 30px 60px -25px rgba(14,14,16,.18);
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.field {
  display: flex; flex-direction: column;
  gap: .4rem;
}
.field span {
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .03em;
  color: var(--mute);
}
.field input, .field select {
  padding: .85rem 1rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--bg);
  font-size: 1rem;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.field input:focus, .field select:focus {
  outline: none;
  border-color: var(--ink);
  background: var(--paper);
}
.field--check {
  flex-direction: row;
  align-items: flex-start;
  gap: .65rem;
  margin: 1.25rem 0;
}
.field--check input {
  margin-top: .15rem;
  width: 18px; height: 18px;
  accent-color: var(--ink);
}
.field--check span {
  font-size: .88rem;
  color: var(--mute);
  letter-spacing: 0;
  text-transform: none;
  font-weight: 400;
  line-height: 1.5;
}
.field--check a { color: var(--ink); text-decoration: underline; }
.form__note {
  text-align: center;
  font-size: .85rem;
  color: var(--mute);
  margin-top: 1rem;
}

/* ===== Footer ===== */
.footer {
  background: var(--ink);
  color: rgba(250,247,242,.75);
  padding: 4rem 0 2rem;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer h4 {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 1rem;
  letter-spacing: -.01em;
}
.footer ul { display: flex; flex-direction: column; gap: .5rem; font-size: .94rem; }
.footer a:hover { color: var(--gold); }
.footer__brand .brand__mark {
  border-color: var(--cream);
  color: var(--cream);
  margin-bottom: 1rem;
}
.footer__brand p { font-size: .94rem; max-width: 30ch; }
.footer p, .footer address { font-size: .94rem; line-height: 1.6; font-style: normal; }
.footer__bottom {
  border-top: 1px solid rgba(250,247,242,.1);
  padding-top: 1.75rem;
  display: flex; justify-content: space-between;
  font-size: .82rem;
  color: rgba(250,247,242,.55);
  flex-wrap: wrap;
  gap: 1rem;
}
.footer__bottom a:hover { color: var(--gold); }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__figure { aspect-ratio: 5/4; max-width: 600px; margin: 0 auto; }
  .cards { grid-template-columns: 1fr 1fr; }
  .card--feature { grid-row: auto; grid-column: span 2; }
  .card--feature .card__media { min-height: 240px; height: 280px; }
  .team { grid-template-columns: 1fr 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .nav, .header__cta { display: none; }
  .hamburger { display: block; }
  .utility__inner { font-size: .75rem; }
  .utility__item:not(.utility__item--right) { display: none; }
  .hero__trust { grid-template-columns: 1fr; gap: 1rem; padding: 1.25rem 0; }
  .hero__trust li { flex-direction: row; align-items: baseline; gap: .65rem; }
  .hero__trust strong { font-size: 1.3rem; }
  .hero__quote { position: static; margin: 1.25rem auto 0; max-width: none; font-size: 1.15rem; padding: 1.1rem 1.2rem; box-shadow: 0 12px 30px -10px rgba(14,14,16,.18); }
  .hero__badge { width: 78px; height: 78px; right: .5rem; top: .75rem; font-size: .55rem; padding: .65rem .8rem; }
  .hero__badge strong { font-size: 1.35rem; }
  .cards { grid-template-columns: 1fr; }
  .card--feature { grid-column: auto; }
  .team { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
  .reviews { grid-template-columns: 1fr; }
  .clinics { grid-template-columns: 1fr; }
  .manifesto__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .form { padding: 1.5rem; }
  .form__row { grid-template-columns: 1fr; }
  .section__head--split { flex-direction: column; align-items: flex-start; }
  .rating-big { align-items: flex-start; text-align: left; }
}
