/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --bg:        #fdf9f6;
  --bg-2:      #f7ece2;
  --bg-3:      #ffffff;
  --ink:       #2b211d;
  --ink-soft:  #55453d;
  --ink-mute:  #93837a;
  --rose:      #e29288;
  --rose-deep: #b3574c;
  --beige:     #c9a06c;
  --beige-deep:#93712f;
  --beige-soft:#f4e3cc;
  --rose-glow: rgba(226, 146, 136, 0.3);
  --line:      rgba(43, 33, 29, 0.12);
  --line-soft: rgba(43, 33, 29, 0.07);
  --radius:    22px;
  --radius-sm: 12px;
  --gutter:    1.25rem;

  --serif: "EB Garamond", Georgia, serif;
  --sans:  "Poppins", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html { -webkit-text-size-adjust: 100%; tab-size: 2; scroll-behavior: smooth; overflow-x: clip; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  background: var(--bg);
  color: var(--ink-soft);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}
img, svg, video { display: block; max-width: 100%; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
ul { list-style: none; padding: 0; }
h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 600;
  text-wrap: balance;
  line-height: 1.1;
  letter-spacing: -0.005em;
  color: var(--ink);
}
em { font-style: italic; color: var(--rose-deep); }
::selection { background: var(--rose); color: #fff; }
:focus-visible { outline: 2px solid var(--rose); outline-offset: 3px; border-radius: 4px; }

.container { width: 100%; max-width: 1180px; margin-inline: auto; padding-inline: var(--gutter); }

.skip-link {
  position: fixed; top: -100px; left: 1rem;
  padding: .6rem 1rem; background: var(--ink); color: #fff;
  z-index: 9999; border-radius: 8px; font-weight: 600;
  transition: top .25s var(--ease-out);
}
.skip-link:focus { top: 1rem; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .78rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--rose-deep); margin-bottom: 1rem;
}
.eyebrow::before { content: ""; width: 18px; height: 1.5px; background: var(--rose); border-radius: 2px; }

/* =============================================================
   3. Buttons
   ============================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: 1rem 2.1rem; border-radius: 999px;
  font-weight: 600; font-size: .88rem; letter-spacing: .02em; white-space: nowrap;
  transition: transform .4s var(--ease-bounce), box-shadow .4s var(--ease-out), background .3s, color .3s;
}
.btn-primary { background: var(--rose); color: #fff; box-shadow: 0 16px 34px -14px var(--rose-glow); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 24px 44px -12px var(--rose-glow); }
.btn-ghost { border: 1.5px solid var(--line); color: var(--ink); }
.btn-ghost:hover { border-color: var(--rose); color: var(--rose-deep); transform: translateY(-3px); }
.btn:active { transform: translateY(-1px); transition-duration: .12s; }

/* =============================================================
   4. Nav
   ============================================================= */
.nav {
  position: fixed; top: 0; inset-inline: 0; z-index: 100;
  transition: background-color .4s var(--ease-out), backdrop-filter .4s var(--ease-out), border-color .4s var(--ease-out);
  border-bottom: 1px solid transparent;
  background: rgba(253, 249, 246, 0.85);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
}
.nav.is-scrolled { border-color: var(--line-soft); box-shadow: 0 10px 30px -20px rgba(43,33,29,.15); }
.nav-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; padding-block: .9rem; gap: .6rem 1rem; }
.nav-logo { display: inline-flex; align-items: center; gap: .65rem; }
.nav-logo-img { height: 42px; width: auto; flex-shrink: 0; }
.nav-logo-text { font-family: var(--serif); font-weight: 600; font-size: 1.2rem; line-height: 1.1; color: var(--ink); }
.nav-logo-text small { display: block; font-family: var(--sans); font-weight: 400; font-size: .56rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-mute); margin-top: .2rem; }

.nav-links { display: none; gap: 1.7rem; font-size: .88rem; font-weight: 500; color: var(--ink-soft); }
@media (min-width: 900px) { .nav-links { display: flex; } }
.nav-link { position: relative; padding: .25rem 0; opacity: .85; }
.nav-link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -3px; height: 1px;
  background: var(--rose);
  transform: scaleX(0); transform-origin: right; transition: transform .4s var(--ease-soft);
}
.nav-link:hover { opacity: 1; }
.nav-link:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { padding: .65rem 1.35rem; font-size: .8rem; flex-shrink: 0; }

/* =============================================================
   5. Hero
   ============================================================= */
.hero {
  position: relative; overflow: clip;
  min-height: 100vh; min-height: 100svh;
  display: flex; align-items: center;
  padding-block: 10.5rem 4rem;
  isolation: isolate;
  color: #fff;
}
@media (min-width: 960px) { .hero { padding-block: 8rem 4rem; } }
.hero-photos { position: absolute; inset: -2%; z-index: -3; }
.clinic-photo {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%;
  opacity: 0; transition: opacity 1.6s ease;
}
.clinic-photo.is-active { opacity: 1; }
.hero-scrim {
  position: absolute; inset: 0; z-index: -2;
  background: linear-gradient(190deg, rgba(43,33,29,.72) 0%, rgba(43,33,29,.42) 45%, rgba(43,33,29,.85) 100%);
}
.hero-tint {
  position: absolute; inset: 0; z-index: -2;
  background: radial-gradient(60% 55% at 80% 10%, rgba(226,146,136,.35), transparent 65%);
  mix-blend-mode: screen;
}

.hero-inner { max-width: 640px; }

.hero-title { font-size: clamp(2.6rem, 5.6vw, 4.3rem); max-width: 16ch; color: #fff; }
.hero-title em { color: var(--rose); }
.hero-title--brand { font-size: clamp(2.1rem, 4.6vw, 3.4rem); max-width: 15ch; line-height: 1.12; }
.hero-sub { margin-top: 1.4rem; max-width: 46ch; color: rgba(255,255,255,.82); font-size: clamp(1.02rem, 1.4vw, 1.15rem); }
.hero-actions { margin-top: 2.1rem; display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-actions .btn-ghost { border-color: rgba(255,255,255,.4); color: #fff; }
.hero-actions .btn-ghost:hover { border-color: var(--rose); color: var(--rose); }
.hero-trust { margin-top: 2.3rem; display: flex; gap: 1.7rem; flex-wrap: wrap; }
.hero-trust-item { display: flex; flex-direction: column; }
.hero-trust-num { font-family: var(--serif); font-size: 1.6rem; font-weight: 700; color: var(--rose); }
.hero-trust-label { font-size: .78rem; color: rgba(255,255,255,.75); }
.hero .eyebrow { color: var(--rose); }
.hero .eyebrow::before { background: var(--rose); }

/* =============================================================
   6. Sections generic
   ============================================================= */
.section { padding-block: 5.5rem; position: relative; }
.section-alt { background: var(--bg-2); }
.section-title { font-size: clamp(1.9rem, 3.6vw, 2.7rem); max-width: 20ch; }
.section-lead { margin-top: 1rem; max-width: 58ch; color: var(--ink-mute); font-size: 1.05rem; }
.section-head--center { max-width: 640px; margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }

/* =============================================================
   7. Quiénes somos
   ============================================================= */
.about-inner { display: grid; gap: 3rem; }
@media (min-width: 960px) { .about-inner { grid-template-columns: .82fr 1.18fr; gap: 4.5rem; align-items: start; } }
.about-text { max-width: 68ch; }
.about-text p { margin-top: 1.1rem; color: var(--ink-mute); }
.about-philosophy-line {
  margin-top: .9rem !important; font-family: var(--serif); font-style: italic;
  font-size: 1.15rem; color: var(--rose-deep) !important;
}

.about-figure {
  position: relative; aspect-ratio: 4/5; border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 40px 80px -30px rgba(43, 33, 29, .18);
  max-width: 420px; margin-inline: auto;
}
.about-figure img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 15%; display: block; }
.about-figure-badge {
  position: absolute; bottom: 1.1rem; left: 1.1rem; right: 1.1rem;
  background: rgba(255,255,255,.94); backdrop-filter: blur(6px);
  border-radius: var(--radius-sm); padding: .85rem 1.1rem;
  box-shadow: 0 16px 34px -18px rgba(43, 33, 29, .3);
}
.about-figure-badge strong { display: block; font-family: var(--serif); font-size: 1.05rem; color: var(--ink); }
.about-figure-badge span { display: block; font-size: .78rem; color: var(--ink-mute); margin-top: .15rem; }
.pillars { margin-top: 2.3rem; display: grid; gap: 1.4rem; }
.pillar { display: flex; gap: 1.1rem; border-top: 1px solid var(--line); padding-top: 1.1rem; }
.pillar-mark { flex-shrink: 0; width: 22px; height: 22px; border: 1.5px solid var(--rose); border-radius: 50%; margin-top: .2rem; }
.pillar h3 { font-size: 1.08rem; margin-bottom: .35rem; }
.pillar p { font-size: .92rem; color: var(--ink-mute); }

/* =============================================================
   8. Tratamientos
   ============================================================= */
.treatment-feature {
  margin-top: 2.8rem; background: var(--bg-3); border-radius: var(--radius);
  padding: 2.6rem clamp(1.4rem, 4vw, 3.2rem); max-width: 880px; margin-inline: auto;
  box-shadow: 0 40px 80px -34px rgba(43, 33, 29, .16);
}
.treatment-feature .eyebrow { margin-bottom: .6rem; }
.treatment-feature--split { max-width: 1040px; }
@media (min-width: 760px) {
  .treatment-feature--split { display: grid; grid-template-columns: .8fr 1.2fr; gap: 2.4rem; align-items: center; }
}
.treatment-feature-photos { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; margin-bottom: 1.8rem; }
@media (min-width: 760px) { .treatment-feature-photos { margin-bottom: 0; } }
.treatment-feature-photo {
  border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 4/5;
  box-shadow: 0 30px 60px -28px rgba(43, 33, 29, .22); margin-bottom: 1.8rem;
}
.treatment-feature-photos .treatment-feature-photo { margin-bottom: 0; }
@media (min-width: 760px) { .treatment-feature-photo { margin-bottom: 0; } }
.treatment-feature-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.treatment-feature-photos .treatment-feature-photo { background: var(--bg-2); }
.treatment-feature-photos .treatment-feature-photo img { object-fit: contain; }
.treatment-feature-title { font-family: var(--serif); font-size: clamp(1.5rem, 2.6vw, 1.9rem); color: var(--ink); }
.treatment-feature-subtitle { display: block; font-family: var(--sans); font-size: .95rem; font-weight: 500; font-style: normal; color: var(--ink-mute); margin-top: .3rem; }
.treatment-feature-intro { margin-top: 1.1rem; color: var(--ink-mute); }
.treatment-feature-intro--lead { color: var(--ink); font-weight: 600; }

.treatment-phases { margin-top: 2rem; display: grid; gap: 1.5rem; }
.treatment-phase { display: flex; gap: 1.1rem; border-top: 1px solid var(--line); padding-top: 1.3rem; }
.treatment-phase-num {
  flex-shrink: 0; width: 34px; height: 34px; border-radius: 50%;
  background: var(--rose); color: #fff; font-family: var(--serif); font-weight: 700;
  display: flex; align-items: center; justify-content: center; font-size: .95rem;
}
.treatment-phase h4 { font-size: 1.02rem; margin-bottom: .3rem; }
.treatment-phase p { font-size: .92rem; color: var(--ink-mute); }

.treatment-result {
  margin-top: 2.2rem; background: var(--bg-2); border-radius: var(--radius-sm);
  padding: 1.6rem 1.8rem; border-left: 3px solid var(--rose);
}
.treatment-result strong { display: block; font-family: var(--serif); font-size: 1.05rem; color: var(--rose-deep); margin-bottom: .5rem; }
.treatment-result p { color: var(--ink-soft); font-size: .95rem; }

.treatment-feature-cta { margin-top: 2rem; }

/* =============================================================
   8b. Productos
   ============================================================= */
.product-feature {
  margin-top: 2.8rem; background: var(--bg-3); border-radius: var(--radius);
  padding: clamp(1.4rem, 4vw, 2.6rem); max-width: 1040px; margin-inline: auto;
  box-shadow: 0 40px 80px -34px rgba(43, 33, 29, .16);
}
@media (min-width: 760px) {
  .product-feature { display: grid; grid-template-columns: .85fr 1.15fr; gap: 2.6rem; align-items: center; }
}
.product-feature-photo {
  border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 4/5;
  box-shadow: 0 30px 60px -28px rgba(43, 33, 29, .22); margin-bottom: 1.8rem;
}
@media (min-width: 760px) { .product-feature-photo { margin-bottom: 0; } }
.product-feature-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.product-feature-body .eyebrow { margin-bottom: .6rem; }
.product-feature-title { font-family: var(--serif); font-size: clamp(1.6rem, 2.8vw, 2.1rem); color: var(--ink); }
.product-feature-intro { margin-top: 1.1rem; color: var(--ink-mute); }
.product-feature-list { margin-top: 1.3rem; display: grid; gap: .7rem; }
.product-feature-list li {
  position: relative; padding-left: 1.5rem; font-size: .93rem; color: var(--ink-soft);
}
.product-feature-list li::before {
  content: ""; position: absolute; left: 0; top: .5em; width: 8px; height: 8px;
  border-radius: 50%; background: var(--rose);
}
.product-feature-cta { margin-top: 1.8rem; }

/* =============================================================
   9. Antes y después
   ============================================================= */
.result-case { margin-top: 3.2rem; text-align: center; }
.result-case-title {
  font-family: var(--serif); font-style: italic; font-size: 1.3rem; color: var(--rose-deep);
  margin-bottom: 1.6rem;
}
.results-grid { display: grid; gap: 2rem; max-width: 640px; margin-inline: auto; }
.results-grid--pair { grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
.result-card { text-align: center; }
.result-figure {
  position: relative; border-radius: var(--radius-sm); overflow: hidden;
  aspect-ratio: 4/5; background: var(--bg-3);
  box-shadow: 0 30px 60px -28px rgba(43, 33, 29, .2);
}
.result-figure img { width: 100%; height: 100%; object-fit: cover; display: block; }
.result-figure span { font-size: .82rem; color: var(--ink-mute); font-weight: 600; padding: 1rem; text-align: center; }
.result-label { margin-top: 1.1rem; font-family: var(--serif); font-style: italic; font-size: 1.15rem; color: var(--ink); }
.results-note { margin-top: 2.5rem; font-size: .82rem; color: var(--ink-mute); max-width: 62ch; }

.result-video-wrap { max-width: 300px; margin-inline: auto; }
.result-video {
  width: 100%; aspect-ratio: 9/16; display: block; background: #000;
  border-radius: var(--radius-sm); box-shadow: 0 30px 60px -28px rgba(43, 33, 29, .2);
  object-fit: cover;
}

/* =============================================================
   10. FAQ
   ============================================================= */
.faq-list { margin-top: 2.5rem; display: grid; gap: 1rem; max-width: 780px; }
.faq-item { background: var(--bg-3); border: 1px solid var(--line-soft); border-radius: var(--radius-sm); overflow: hidden; transition: border-color .3s; }
.faq-item.is-open { border-color: rgba(226,146,136,.4); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.2rem 1.4rem; text-align: left; font-weight: 600; font-size: .98rem; color: var(--ink); }
.faq-q-icon { width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0; background: var(--bg-2); display: grid; place-items: center; transition: transform .4s var(--ease-soft), background .3s; }
.faq-item.is-open .faq-q-icon { background: var(--rose); color: #fff; transform: rotate(45deg); }
.faq-q-icon svg { width: 14px; height: 14px; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .45s var(--ease-soft); }
.faq-a-inner { padding: 0 1.4rem 1.3rem; font-size: .92rem; color: var(--ink-mute); max-width: 62ch; }

/* =============================================================
   11. Pedir cita
   ============================================================= */
.cita-inner { position: relative; display: grid; gap: 2.5rem; }
@media (min-width: 960px) { .cita-inner { grid-template-columns: .85fr 1.15fr; gap: 4rem; align-items: start; } }
.cita-note { margin-top: 1.1rem; color: var(--ink-mute); font-size: .95rem; }
.cita-meta { margin-top: 2rem; display: grid; gap: .9rem; }
.cita-meta li { display: flex; justify-content: space-between; gap: 1rem; border-top: 1px solid var(--line); padding-top: .7rem; font-size: .92rem; }
.cita-meta li span:first-child { color: var(--ink-mute); font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; }
.cita-meta li a:hover { color: var(--rose-deep); }
.cita-whatsapp { margin-top: 1.6rem; display: inline-flex; align-items: center; gap: .6rem; }
.cita-whatsapp svg { color: #25D366; flex-shrink: 0; }

.cita-form {
  position: relative; display: grid; gap: 1.1rem;
  background: var(--bg-3); border: 1px solid var(--line-soft); border-radius: var(--radius);
  padding: 2rem; box-shadow: 0 30px 70px -30px rgba(43,33,29,.18);
  transition: opacity .55s var(--ease-out), transform .55s var(--ease-soft);
}
.cita-form.is-sent { opacity: 0; transform: translateY(-12px); pointer-events: none; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { position: relative; }
.field input, .field textarea {
  width: 100%; padding: 1.3rem 1rem .5rem;
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: var(--bg); color: var(--ink);
  font: inherit; font-size: .95rem; transition: border-color .3s;
}
.field textarea { resize: vertical; min-height: 80px; }
.field input:focus, .field textarea:focus { border-color: var(--rose); outline: none; }
.field label {
  position: absolute; left: 1rem; top: 50%; transform: translateY(-50%);
  pointer-events: none; transition: all .25s var(--ease-out);
  color: var(--ink-mute); font-size: .95rem;
}
.field input:focus + label, .field input:not(:placeholder-shown) + label,
.field textarea:focus + label, .field textarea:not(:placeholder-shown) + label {
  top: .85rem; transform: none; font-size: .68rem; letter-spacing: .06em; text-transform: uppercase; color: var(--rose-deep);
}

.cita-submit { position: relative; margin-top: .3rem; }
.form-spinner, .form-check { position: absolute; inset: 0; display: grid; place-items: center; opacity: 0; pointer-events: none; }
.cita-form.is-sending .form-label { opacity: 0; }
.cita-form.is-sending .form-spinner { opacity: 1; }
.form-spinner::after { content: ""; width: 18px; height: 18px; border: 1.5px solid rgba(255,255,255,.4); border-top-color: #fff; border-radius: 50%; animation: spin .9s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.form-check path { stroke: currentColor; stroke-width: 2; fill: none; stroke-dasharray: 1; stroke-dashoffset: 1; transition: stroke-dashoffset .55s var(--ease-out); }

.cita-success { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -40%); opacity: 0; pointer-events: none; text-align: center; transition: opacity .8s var(--ease-out) .25s, transform .9s var(--ease-soft) .25s; }
.cita-success.is-visible { opacity: 1; transform: translate(-50%, -50%); pointer-events: auto; }
.cita-success-icon { width: 56px; height: 56px; border-radius: 50%; margin: 0 auto 1rem; background: var(--rose); color: #fff; display: grid; place-items: center; }
.cita-success-icon svg { width: 26px; height: 26px; }
.cita-success h3 { font-size: 1.4rem; margin-bottom: .5rem; }
.cita-success p { color: var(--ink-mute); max-width: 34ch; margin-inline: auto; }

/* =============================================================
   11b. Nuestros centros
   ============================================================= */
.centers-grid { margin-top: 3rem; display: grid; gap: 2rem; }
@media (min-width: 760px) { .centers-grid { grid-template-columns: repeat(2, 1fr); gap: 2.2rem; } }
.center-card {
  background: var(--bg-3); border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 40px 80px -34px rgba(43, 33, 29, .16);
}
.center-card-map { aspect-ratio: 16/10; }
.center-card-map iframe { width: 100%; height: 100%; border: 0; display: block; }
.center-card-body { padding: 1.8rem clamp(1.3rem, 3vw, 2rem); }
.center-card-body h3 { font-family: var(--serif); font-size: 1.3rem; color: var(--ink); }
.center-card-address { margin-top: .5rem; color: var(--ink-mute); font-size: .92rem; }
.center-card-hours { margin-top: 1.3rem; display: grid; gap: .6rem; }
.center-card-hours li { display: flex; justify-content: space-between; gap: 1rem; border-top: 1px solid var(--line); padding-top: .6rem; font-size: .9rem; }
.center-card-hours li span:first-child { color: var(--ink-mute); font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; }

/* =============================================================
   12. Contacto
   ============================================================= */
.contact-inner { display: grid; gap: 2.5rem; }
@media (min-width: 960px) { .contact-inner { grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; } }
.contact-inner--simple { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; text-align: center; }
.contact-inner--simple .cita-whatsapp { justify-content: center; }
.contact-meta { margin-top: 2rem; display: grid; gap: 1rem; max-width: 460px; }
.contact-inner--simple .contact-meta { margin-inline: auto; }
.contact-meta li { display: flex; justify-content: space-between; gap: 1rem; border-top: 1px solid var(--line); padding-top: .7rem; font-size: .92rem; }
.contact-meta li span:first-child { color: var(--ink-mute); font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; }
.contact-meta li a:hover { color: var(--rose-deep); }

/* =============================================================
   13. Footer
   ============================================================= */
.site-footer { border-top: 1px solid var(--line); padding-block: 2.5rem; background: var(--bg-3); }
.footer-inner { display: flex; flex-direction: column; gap: 1.5rem; align-items: flex-start; }
@media (min-width: 900px) { .footer-inner { flex-direction: row; align-items: center; justify-content: space-between; } }
.footer-logo { display: inline-flex; align-items: center; gap: .6rem; }
.footer-logo-img { height: 34px; width: auto; }
.footer-links { display: flex; flex-wrap: wrap; gap: 1.3rem; font-size: .88rem; color: var(--ink-soft); }
.footer-links a:hover { color: var(--rose-deep); }
.footer-social { display: inline-flex; align-items: center; gap: .5rem; font-size: .88rem; color: var(--ink-soft); }
.footer-social:hover { color: var(--rose-deep); }
.footer-copy { font-size: .82rem; color: var(--ink-mute); }

/* =============================================================
   14. Reveal-on-scroll
   ============================================================= */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s var(--ease-out), transform .75s var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }
