/* ── Experience consent ────────────────────────────────── */
.exp-overlay {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 10000;
  pointer-events: none;
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .5s ease, transform .5s cubic-bezier(.34,1.36,.64,1);
}
.exp-overlay.visible { opacity: 1; transform: none; pointer-events: all; }
.exp-overlay.hidden { display: none; }
.exp-popup {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 28px;
  max-width: 320px;
  width: 100%;
  box-shadow: 0 8px 40px rgba(0,0,0,.12);
  position: relative;
  overflow: hidden;
}
.exp-popup::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 0% 50%, rgba(0,180,198,.06) 0%, transparent 70%);
  pointer-events: none;
}
.exp-icon { font-size: 28px; margin-bottom: 10px; display: inline-block; }
.exp-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 8px;
}
.exp-title span { color: var(--accent); }
.exp-sub { font-size: 12px; color: var(--muted); line-height: 1.6; margin-bottom: 20px; }
.exp-btns { display: flex; gap: 8px; }
.exp-btns .btn { padding: 10px 18px; font-size: 13px; }

/* ── Reset & base ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) var(--bg2);
}
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 99px; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}
body::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background-image:
    radial-gradient(circle, rgba(0,180,198,.35) 2px, transparent 2px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ── Custom properties ─────────────────────────────────── */
:root {
  --accent:      #00B4C6;
  --accent-dark: #008fa0;
  --accent-pale: #e0f7fa;
  --bg:          #f7f8f9;
  --bg2:         #eef0f3;
  --bg3:         #e4e7ec;
  --surface:     #ffffff;
  --border:      #dde1e8;
  --text:        #111418;
  --muted:       #6b7280;
  --radius:      12px;
}

/* ── Grain overlay ─────────────────────────────────────── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: .025;
  filter: url(#grain-filter);
  background: transparent;
  width: 100%;
  height: 100%;
}

/* ── Utility ───────────────────────────────────────────── */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ── Reveal on scroll ──────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ── Botones ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: transform .15s, box-shadow .15s, background .15s;
  border: none;
  white-space: nowrap;
  font-family: inherit;
}
.btn:hover { transform: translateY(-2px); }
.btn-lg { padding: 18px 40px; font-size: 16px; }
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 20px rgba(0,180,198,.3);
}
.btn-primary:hover {
  background: var(--accent-dark);
  box-shadow: 0 6px 28px rgba(0,180,198,.4);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--border);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-ghost {
  background: var(--bg2);
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover { background: var(--bg3); }

/* ── Section labels ────────────────────────────────────── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 20px;
}
.section-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.7;
}

/* ── NAV ───────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-img {
  height: 36px;
  width: auto;
  flex-shrink: 0;
}
.logo-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.logo-wordmark strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: .02em;
  color: var(--text);
}
.logo-wordmark span {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 500;
}
.nav-links a {
  color: var(--muted);
  transition: color .15s;
}
.nav-links a:hover { color: var(--text); }
.nav-links a.nav-cta,
.nav-links a.nav-cta:hover { color: #fff; }
.nav-cta { margin-left: 8px; }

@media (max-width: 900px) {
  .nav-links { display: none; }
}

/* ── Side nav mobile ───────────────────────────────────── */
#side-nav-root { display: none; }
.side-nav-wrap { display: none; }

@media (max-width: 900px) {
  #side-nav-root { display: block; }
  .side-nav-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    position: fixed;
    right: 0;
    bottom: calc(env(safe-area-inset-bottom) + 30px);
    z-index: 200;
    width: 5rem;
    background: #fff;
    border-radius: 16px 0 0 0;
    padding: 10px 7px;
    box-shadow: 0 4px 20px rgba(0,0,0,.15);
  }
  .side-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  .side-nav-wrap.hidden {
    transform: translateX(calc(100% + 2px));
    opacity: 0;
    pointer-events: none;
  }
  .side-nav-wrap {
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .bnav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    color: var(--text);
    font-size: 12px;
    letter-spacing: 0.04em;
    text-align: center;
    transition: transform 0.15s;
    width: 100%;
    -webkit-tap-highlight-color: transparent;
    overflow: visible;
  }
  .bnav-item:active { transform: scale(0.88); }
  .bnav-icon-wrap {
    width: 1.6rem;
    height: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .bnav-icon-wrap svg {
    width: 100%;
    height: 100%;
  }
  .bnav-wa { color: #25d366; }

  /* Toggle ∧/∨ */
  .side-nav-toggle {
    position: fixed;
    right: 0;
    bottom: env(safe-area-inset-bottom);
    z-index: 202;
    background: #fff;
    border: none;
    border-radius: 0;
    cursor: pointer;
    color: var(--muted);
    padding: 6px 0;
    width: 5rem;
    display: flex;
    justify-content: center;
    box-shadow: -2px 0 8px rgba(0,0,0,.08);
    transition: bottom 0.3s ease;
  }
  .side-nav-toggle svg { width: 18px; height: 18px; display: block; transition: transform 0.3s ease; }
  .side-nav-toggle.rotated svg { transform: rotate(180deg); }
  .side-nav-toggle.nav-closed { border-radius: 8px 0 0 8px; }
}

/* ── HERO ──────────────────────────────────────────────── */
.hero {
  min-height: 90svh;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  align-items: center;
  overflow: hidden;
}

/* Texto izquierda */
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 48px 40px 0;
  padding-left: max(28px, calc((100vw - 1120px)/2 + 28px));
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.hero-eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(.7); }
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 700;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 16px;
}
.hero-title em {
  font-style: italic;
  color: var(--accent);
}
.hero-sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 460px;
  line-height: 1.7;
  margin-bottom: 28px;
}
.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero-actions .btn {
  width: 100%;
  justify-content: center;
}
.hero-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}
.hero-stat-num span { color: var(--accent); font-style: normal; font-family: sans-serif; }
.hero-stat-label {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}

/* Visual derecha */
.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 24px;
  padding: 40px max(28px, calc((100vw - 1120px)/2 + 28px)) 40px 24px;
  position: relative;
  align-self: stretch;
}
.hero-stats {
  display: flex;
  gap: 0;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.hero-stats > div {
  flex: 1;
  padding: 0 20px;
  border-right: 1px solid var(--border);
  text-align: center;
}
.hero-stats > div:first-child { padding-left: 20px; }
.hero-stats > div:last-child { border-right: none; }

/* Marco del video */
.hero-mockup {
  width: 100%;
  max-width: 680px;
  border-radius: 16px;
  border: 1px solid var(--border);
  overflow: hidden;
  background: #111;
  box-shadow:
    0 0 0 1px rgba(0,180,198,.1),
    0 32px 80px rgba(0,0,0,.15),
    0 0 60px rgba(0,180,198,.06);
}
.hero-mockup-screen {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.hero-mockup-screen video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Badge flotante */
.hero-badge {
  position: absolute;
  top: 56px;
  right: max(28px, calc((100vw - 1120px)/2 + 28px));
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,.1);
  z-index: 3;
}
.hero-badge-icon {
  width: 40px; height: 40px;
  background: var(--accent-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-badge-icon svg { width: 22px; height: 22px; fill: var(--accent); }
.hero-badge-text strong { font-size: 14px; font-weight: 700; color: var(--text); display: block; }
.hero-badge-text span { font-size: 12px; color: var(--muted); }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-content { padding: 60px 28px 40px; }
  .hero-visual { padding: 0 28px 60px; gap: 20px; }
  .hero-badge { display: none; }
  .hero-stats { gap: 0; }
  .hero-stats > div { padding: 0 16px; }
}

/* ── SERVICIOS ─────────────────────────────────────────── */
.servicios {
  padding: 100px 0;
  background: var(--surface);
  position: relative;
  overflow: hidden;
}
.servicios::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,180,198,.06) 0%, transparent 70%);
  pointer-events: none;
}
.servicios-header {
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.servicios-header .section-sub { margin: 0 auto; }

.servicios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.servicio-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 32px;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  cursor: default;
  position: relative;
  overflow: hidden;
}
.servicio-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,180,198,.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .3s;
}
.servicio-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,180,198,.12);
  border-color: rgba(0,180,198,.3);
}
.servicio-card:hover::after { opacity: 1; }
.servicio-card.featured {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.servicio-card.featured .servicio-icon { background: rgba(255,255,255,.2); }
.servicio-card.featured .servicio-name { color: #fff; }
.servicio-card.featured .servicio-desc { color: rgba(255,255,255,.8); }
.servicio-card.featured .servicio-tag { background: rgba(255,255,255,.2); color: #fff; }
.servicio-card.featured:hover { box-shadow: 0 16px 48px rgba(0,180,198,.35); }
.servicio-card.featured::after { display: none; }

.servicio-icon {
  width: 52px; height: 52px;
  background: var(--accent-pale);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.servicio-icon svg { width: 28px; height: 28px; fill: var(--accent); }
.servicio-card.featured .servicio-icon svg { fill: #fff; }

.servicio-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.2;
}
.servicio-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.servicio-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-pale);
  padding: 5px 10px;
  border-radius: 99px;
}

@media (max-width: 900px) {
  .servicios-grid { grid-template-columns: 1fr; gap: 16px; }
}
@media (min-width: 600px) and (max-width: 900px) {
  .servicios-grid { grid-template-columns: 1fr 1fr; }
}

/* ── POR QUÉ NOSOTROS ──────────────────────────────────── */
.porque {
  padding: 100px 0;
}
.card-surface {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
}
.porque-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.porque-visual {
  position: relative;
}
.porque-video-wrap {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--bg2);
  position: relative;
}
.porque-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.porque-video-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 14px;
  background: linear-gradient(135deg, var(--bg2), var(--bg3));
}
/* Floating stat card */
.porque-float-card {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px 24px;
  box-shadow: 0 12px 40px rgba(0,0,0,.1);
  min-width: 160px;
}
.porque-float-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.porque-float-label {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}

.porque-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 40px;
}
.porque-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.porque-item-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--accent-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.porque-item-icon svg { width: 22px; height: 22px; fill: var(--accent); }
.porque-item-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.porque-item-desc { font-size: 14px; color: var(--muted); line-height: 1.65; }

@media (max-width: 900px) {
  .porque-inner { grid-template-columns: 1fr; gap: 48px; }
  .porque-float-card { right: 16px; bottom: 16px; }
}

/* ── ANTES / DESPUÉS ───────────────────────────────────── */

/* ── TESTIMONIOS ───────────────────────────────────────── */
.testimonios {
  padding: 100px 0;
}
.testimonios-header {
  text-align: center;
  margin-bottom: 60px;
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: box-shadow .25s, transform .25s;
}
.testi-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,.08);
  transform: translateY(-4px);
}
.testi-stars { color: var(--accent); font-size: 14px; letter-spacing: 2px; }
.testi-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-style: italic;
  color: var(--text);
  line-height: 1.6;
  flex: 1;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testi-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 3px solid var(--accent-pale);
  background: linear-gradient(135deg, var(--accent-pale), var(--bg3));
}
.testi-avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}
.testi-name { font-size: 14px; font-weight: 700; color: var(--text); }
.testi-meta { font-size: 12px; color: var(--muted); }

@media (max-width: 900px) { .testi-grid { grid-template-columns: 1fr; } }
@media (min-width: 600px) and (max-width: 900px) { .testi-grid { grid-template-columns: 1fr 1fr; } }

/* ── AGENDAR CITA ──────────────────────────────────────── */
.cita {
  padding: 100px 0;
  background: var(--surface);
  position: relative;
  overflow: hidden;
}
.cita::before {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,180,198,.07) 0%, transparent 70%);
  pointer-events: none;
}
.cita-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.cita-info {
  padding-top: 8px;
}
.cita-info .section-sub { margin-bottom: 40px; }
.cita-detail {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cita-detail-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: var(--text);
}
.cita-detail-item svg { width: 20px; height: 20px; fill: var(--accent); flex-shrink: 0; }

.cita-form-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}
.form-full { grid-column: 1 / -1; }
.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-field label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-field input,
.form-field select,
.form-field textarea {
  padding: 13px 16px;
  border-radius: 10px;
  border: 1.5px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  appearance: none;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0,180,198,.12);
}
.form-field textarea { resize: vertical; min-height: 100px; }
.form-submit { width: 100%; justify-content: center; margin-top: 8px; transition: background .4s; }
.spin { animation: spin .7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.check-path {
  stroke-dasharray: 20;
  stroke-dashoffset: 20;
  animation: draw-check .4s ease forwards .1s;
}
@keyframes draw-check { to { stroke-dashoffset: 0; } }

@media (max-width: 900px) {
  .cita-inner { grid-template-columns: 1fr; gap: 48px; }
  .form-grid { grid-template-columns: 1fr; }
  .cita-form-wrap { padding: 28px 20px; }
}

/* ── FOOTER ────────────────────────────────────────────── */
footer {
  background: var(--text);
  color: #fff;
  padding: 60px 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  margin-bottom: 32px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.footer-logo-img {
  height: 32px;
  width: auto;
  filter: brightness(0) invert(1);
  flex-shrink: 0;
}
.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}
.footer-brand-name span { color: var(--accent); }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,.4); }
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,.65);
  margin-bottom: 10px;
  transition: color .15s;
}
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,.35);
}
.footer-bottom a { color: var(--accent); transition: opacity .15s; }
.footer-bottom a:hover { opacity: .8; }

@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer-links { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ── Section divider ───────────────────────────────────── */
.section-divider {
  height: 1px;
  background: var(--border);
  margin: 0;
}

/* ── Swup transitions ──────────────────────────────────── */
#swup-transition { display: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}
