/* ============= El Ombú — Inner Pages ============= */

/* Trust logo images — force pure white over dark trust strip */
.trust-logo-img {
  height: clamp(56px, 6vw, 78px);
  width: auto;
  max-width: 240px;
  object-fit: contain;
  opacity: 0.82;
  filter: brightness(0) invert(1);
  transition: opacity .25s;
}
.trust-logo-img:hover {
  opacity: 1;
}

/* Active nav link */
.nav-links a.active {
  color: var(--cream);
}
.nav-links a.active::before {
  content: "";
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--ember);
  margin-right: 8px;
  vertical-align: middle;
}

/* ============= Page hero (inner pages) ============= */
.page-hero {
  position: relative;
  min-height: 78vh;
  display: flex; align-items: flex-end;
  padding: 160px var(--pad-x) 80px;
  overflow: hidden;
  isolation: isolate;
}
.page-hero-bg {
  position: absolute; inset: 0; z-index: -1;
}
.page-hero-bg img,
.page-hero-bg video {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.55) saturate(1.05);
}
.page-hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(15,10,7,0.5) 0%, transparent 30%, rgba(15,10,7,0.85) 100%),
    linear-gradient(90deg, rgba(15,10,7,0.5), transparent 60%);
}
.page-hero-inner {
  width: 100%; max-width: var(--maxw); margin: 0 auto;
  display: flex; flex-direction: column; gap: 24px;
  position: relative; z-index: 1;
}

/* ---- Split hero: text left, vertical (9:16) video panel right ---- */
.page-hero--split .page-hero-inner { max-width: var(--maxw); }
.page-hero--split .page-hero-inner > * { max-width: 60%; }
.page-hero-media {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: clamp(320px, 40vw, 560px);
  z-index: 0; overflow: hidden;
}
.page-hero-media video,
.page-hero-media img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  filter: saturate(1.06) contrast(1.03);
}
/* Funde el borde izquierdo del vídeo con el fondo oscuro y atenúa arriba/abajo */
.page-hero-media::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(90deg, var(--ink) 0%, rgba(15,10,7,0.6) 16%, rgba(15,10,7,0.12) 42%, transparent 70%),
    linear-gradient(180deg, rgba(15,10,7,0.45) 0%, transparent 22%, transparent 72%, rgba(15,10,7,0.65) 100%);
}
.page-hero h1 {
  font-size: clamp(48px, 8vw, 110px);
  font-weight: 600;
  max-width: 16ch;
  line-height: 0.92;
  text-wrap: balance;
}
.page-hero h1 .nostalg {
  font-style: normal;
  font-weight: 500;
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-muted);
  margin-bottom: 24px;
  font-family: var(--font-body);
}
.page-hero h1 .nostalg::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--ember);
  display: inline-block;
  flex: none;
}
.page-hero-sub {
  font-size: clamp(17px, 1.4vw, 21px);
  color: var(--cream-muted);
  max-width: 560px;
  line-height: 1.55;
}
.page-hero-meta {
  display: flex; gap: clamp(24px, 4vw, 56px); flex-wrap: wrap;
  margin-top: 24px;
  padding-top: 28px;
  border-top: 1px solid rgba(245,237,224,0.15);
  max-width: 700px;
}
.page-hero-meta div { display: flex; flex-direction: column; gap: 4px; }
.page-hero-meta dt {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--cream-muted);
  font-weight: 500;
}
.page-hero-meta dd {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 28px);
  color: var(--cream);
  margin: 0;
}

/* ============= Editorial split (alternating image + text) ============= */
.editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.editorial.flip { direction: rtl; }
.editorial.flip > * { direction: ltr; }
.editorial-img {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
}
.editorial-img img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}
.editorial-img:hover img { transform: scale(1.04); }
.editorial-img.tall { aspect-ratio: 3/4.5; }
.editorial-text { display: flex; flex-direction: column; gap: 24px; }
.editorial-text h2 { font-weight: 500; }
.editorial-text p { font-size: 17px; color: var(--cream-muted); line-height: 1.7; }

/* ============= Pull quote ============= */
.pull-quote {
  text-align: center;
  max-width: 900px; margin: 0 auto;
  padding: clamp(60px, 10vh, 120px) var(--pad-x);
}
.pull-quote blockquote {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(30px, 4.2vw, 52px);
  line-height: 1.18;
  text-transform: none;
  letter-spacing: 0.005em;
  color: var(--cream);
  margin: 0 0 28px;
  text-wrap: balance;
}
.pull-quote cite {
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ember);
}

/* ============= Stats / numbers band ============= */
.stats-band {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 64px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat {
  display: flex; flex-direction: column; gap: 8px;
  padding: 8px 12px;
  min-width: 0;
}
.stat-value {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 500;
  line-height: 1;
  color: var(--cream);
  letter-spacing: -0.02em;
}
.stat-value .unit { color: var(--ember); font-size: 0.5em; font-weight: 500; margin-left: 4px; }
.stat-label {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-muted);
}

/* ============= Feature list (numbered bullets) ============= */
.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: clamp(40px, 5vw, 80px);
  row-gap: 0;
  position: relative;
}
/* Filete vertical en la cuadrícula de 2 columnas */
.feature-list::before {
  content: "";
  position: absolute; top: 0; bottom: 0; left: 50%;
  width: 1px; background: var(--border);
}
.feature-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(18px, 1.8vw, 28px);
  padding: clamp(28px, 3vw, 40px) 0;
  border-top: 1px solid var(--border);
  align-items: baseline;
}
.feature-item:nth-last-child(-n+2) { border-bottom: 1px solid var(--border); }
.feature-num {
  font-family: var(--font-display);
  font-size: clamp(28px, 2.8vw, 40px);
  color: var(--gold);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.01em;
  font-variant-numeric: tabular-nums;
  transition: color .3s ease;
}
.feature-item:hover .feature-num { color: var(--ember); }
.feature-body h3 {
  font-size: clamp(20px, 1.7vw, 24px);
  margin-bottom: 10px;
  font-weight: 600;
}
.feature-body p { color: var(--cream-muted); font-size: 15.5px; line-height: 1.65; max-width: 42ch; }

/* ============= Dossier (vertical pages of bodas) ============= */
.dossier {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.dossier-page {
  position: relative;
  aspect-ratio: 864/1366;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-secondary);
  transition: transform .4s ease, box-shadow .4s ease;
}
.dossier-page img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.dossier-page:hover { transform: translateY(-6px); box-shadow: 0 20px 40px -16px rgba(0,0,0,0.5); }
.dossier-page .dossier-tag {
  position: absolute; top: 16px; left: 16px;
  background: rgba(15,10,7,0.7);
  backdrop-filter: blur(8px);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  z-index: 1;
}

/* ============= Venue card (Fincas) ============= */
.venues-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.venue-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: border-color .25s, transform .25s;
}
.venue-card:hover { border-color: rgba(255,231,202,0.4); transform: translateY(-3px); }
.venue-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.venue-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.venue-card:hover .venue-img img { transform: scale(1.06); }
.venue-img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(15,10,7,0.5), transparent 50%); }
.venue-region {
  position: absolute; top: 16px; left: 16px; z-index: 1;
  background: rgba(15,10,7,0.7); backdrop-filter: blur(8px);
  padding: 6px 12px; border-radius: 999px;
  font-size: 10.5px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--cream);
}
.venue-content { padding: 28px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.venue-content h3 {
  font-size: 22px;
  font-weight: 600;
}
.venue-meta {
  display: flex; gap: 20px; font-size: 12px; color: var(--cream-muted);
  letter-spacing: 0.05em;
}
.venue-meta span::before {
  content: "·";
  margin-right: 8px;
  color: var(--ember);
}
.venue-meta span:first-child::before { display: none; }
.venue-desc { font-size: 14.5px; color: var(--cream-muted); line-height: 1.6; flex: 1; }

/* ============= Timeline ============= */
.timeline {
  position: relative;
  padding-left: 40px;
}
.timeline::before {
  content: "";
  position: absolute; top: 0; bottom: 0; left: 12px;
  width: 1px;
  background: linear-gradient(180deg, var(--ember) 0%, var(--border) 60%, transparent 100%);
}
.timeline-item {
  position: relative;
  padding-bottom: 56px;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: "";
  position: absolute;
  left: -34px; top: 8px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--bg-primary);
  border: 2px solid var(--ember);
}
.timeline-year {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 8px;
  display: block;
}
.timeline-item h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}
.timeline-item p { color: var(--cream-muted); font-size: 15.5px; line-height: 1.7; }

/* ============= Family portrait grid (Nosotros) ============= */
.portrait-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  grid-auto-rows: 130px;
}
.portrait-grid .p {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border);
}
.portrait-grid .p img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .8s; }
.portrait-grid .p:hover img { transform: scale(1.06); }
.portrait-grid .p::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(15,10,7,0.4), transparent 60%);
  pointer-events: none;
}
.portrait-grid .span-c2 { grid-column: span 2; }
.portrait-grid .span-c3 { grid-column: span 3; }
.portrait-grid .span-c4 { grid-column: span 4; }
.portrait-grid .span-r2 { grid-row: span 2; }
.portrait-grid .span-r3 { grid-row: span 3; }
.portrait-grid .p-team img { object-position: center 35%; }

/* ============= Process steps (eventos pages) ============= */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}
.process-step {
  padding: 32px 0;
  border-top: 1px solid var(--ember);
  position: relative;
  counter-increment: step;
}
.process-step::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--ember);
  display: block;
  margin-bottom: 16px;
  font-weight: 500;
}
.process-step h3 {
  font-family: var(--font-body);
  font-size: 21px;
  font-weight: 600;
  margin-bottom: 12px;
}
.process-step p { color: var(--cream-muted); font-size: 14.5px; line-height: 1.65; }

/* ============= Indoor/Outdoor service types tiles ============= */
.types-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.type-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 16/10;
  isolation: isolate;
  cursor: pointer;
}
.type-card img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s ease;
}
.type-card::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(0deg, rgba(15,10,7,0.92) 0%, rgba(15,10,7,0.45) 40%, rgba(15,10,7,0.15) 100%);
  transition: background .4s;
}
.type-card:hover img { transform: scale(1.05); }
.type-content {
  position: relative; z-index: 2;
  padding: 40px;
  height: 100%;
  display: flex; flex-direction: column; justify-content: flex-end;
  gap: 12px;
}
.type-content .num {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1;
  color: var(--ember);
  letter-spacing: 0.04em;
}
.type-content h3 {
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 600;
}
.type-content p { color: var(--cream-muted); max-width: 80%; font-size: 14.5px; }

/* ============= CTA banner (inner pages) ============= */
.cta-banner {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(40px, 6vw, 72px);
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute; top: 0; right: 0; width: 50%; height: 100%;
  background: radial-gradient(circle at 100% 50%, rgba(255,231,202,0.08), transparent 70%);
  pointer-events: none;
}
.cta-banner-text { max-width: 560px; }
.cta-banner h2 {
  font-size: clamp(30px, 3.2vw, 44px);
  font-weight: 500;
  margin-bottom: 12px;
}
.cta-banner p { color: var(--cream-muted); }
.cta-banner .btn { position: relative; z-index: 1; }

/* ============= Responsive (inner pages) ============= */
@media (max-width: 1024px) {
  .editorial, .editorial.flip { grid-template-columns: 1fr; direction: ltr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-list { grid-template-columns: 1fr; }
  .feature-list::before { display: none; }
  .feature-item:nth-last-child(2) { border-bottom: 0; }
  .feature-item:last-child { border-bottom: 1px solid var(--border); }
  .dossier { grid-template-columns: 1fr 1fr; }
  .venues-grid { grid-template-columns: 1fr 1fr; }
  .process { grid-template-columns: 1fr 1fr; }
  .types-grid { grid-template-columns: 1fr; }
  .portrait-grid { grid-auto-rows: 110px; }
}
@media (max-width: 720px) {
  .page-hero { padding-top: 120px; min-height: auto; }
  .page-hero h1 { font-size: clamp(40px, 11vw, 56px); line-height: 1.02; }
  .page-hero-sub { font-size: 16px; }
  .page-hero-meta { gap: 20px 24px; margin-top: 16px; }
  .page-hero-meta dd { font-size: 17px; }
  /* Split hero en móvil: el vídeo vertical ocupa todo el fondo (la pantalla ya es vertical) */
  .page-hero--split .page-hero-media {
    position: absolute; inset: 0; width: 100%; z-index: -1;
  }
  .page-hero--split .page-hero-media::after {
    background:
      linear-gradient(180deg, rgba(15,10,7,0.45) 0%, transparent 30%, rgba(15,10,7,0.9) 100%),
      linear-gradient(90deg, rgba(15,10,7,0.5), transparent 65%);
  }
  .page-hero--split .page-hero-inner > * { max-width: 100%; }
  .dossier { grid-template-columns: 1fr; }
  .venues-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .stat-value { font-size: clamp(36px, 11vw, 56px); }
  .process { grid-template-columns: 1fr; }
  /* type-card: en móvil la tarjeta crece con el texto (sin recortes ni solapes) */
  .types-grid { gap: 20px; }
  .type-card { aspect-ratio: auto; min-height: 56vw; }
  .type-content { padding: 28px 26px 30px; }
  .type-content .num { font-size: 40px; }
  .type-content h3 { font-size: 24px; }
  .type-content p { max-width: 100%; font-size: 15px; }
  .type-card::before {
    background: linear-gradient(0deg, rgba(15,10,7,0.92) 0%, rgba(15,10,7,0.72) 52%, rgba(15,10,7,0.42) 100%);
  }
  .portrait-grid { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 90px; }
  .portrait-grid .span-c2, .portrait-grid .span-c3, .portrait-grid .span-c4 { grid-column: span 2; }
  .portrait-grid .p-team { grid-column: 1 / -1; grid-row: span 4; }
  .cta-banner { flex-direction: column; align-items: flex-start; padding: 32px 24px; gap: 24px; }
  .cta-banner > * { width: 100%; }
  .cta-banner .btn { width: 100%; justify-content: center; white-space: normal; text-align: center; padding-left: 22px; padding-right: 22px; }
  .cta-banner h2 { font-size: clamp(26px, 7vw, 34px); }
  .feature-item { padding: 24px 0; }
  .editorial { gap: 24px; }
  .editorial-text h2 { font-size: clamp(28px, 8vw, 40px); }
  .pull-quote { padding: 64px 24px; }
  .pull-quote blockquote { font-size: clamp(22px, 6vw, 32px); }
}

/* ============= Legal pages (privacidad / aviso / cookies) ============= */
.legal-hero {
  min-height: 46vh;
  background: linear-gradient(180deg, var(--ink-2) 0%, var(--ink) 100%);
}
.legal-hero .page-hero-inner { gap: 18px; }
.legal-hero h1 {
  font-size: clamp(40px, 6.5vw, 78px);
  max-width: 20ch;
  line-height: 0.96;
}
.legal-updated {
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--cream-muted);
}
.legal-updated strong { color: var(--cream); font-weight: 400; }

.legal-section { padding: clamp(56px, 9vh, 104px) 0 var(--pad-y); }
.legal-layout {
  display: grid;
  grid-template-columns: 232px minmax(0, 1fr);
  gap: clamp(40px, 7vw, 88px);
  max-width: 1080px;
  margin: 0 auto;
  align-items: start;
}

/* Table of contents */
.legal-toc {
  position: sticky;
  top: 108px;
  display: flex; flex-direction: column;
  font-size: 14px;
}
.legal-toc .toc-label {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--cream-muted);
  margin-bottom: 14px;
}
.legal-toc a {
  color: var(--cream-muted);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,231,202,0.08);
  transition: color .2s ease;
  text-wrap: balance;
}
.legal-toc a:last-child { border-bottom: 0; }
.legal-toc a:hover { color: var(--cream); }

/* Body prose */
.legal-body { max-width: 68ch; }
.legal-body > h2 {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 29px);
  letter-spacing: 0;
  color: var(--cream);
  margin: 56px 0 18px;
  scroll-margin-top: 100px;
  display: flex; align-items: baseline; gap: 14px;
}
.legal-body > h2:first-child { margin-top: 0; }
.legal-body > h2 .num {
  font-size: 14px;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
  flex: none;
}
.legal-body h3 {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 18px;
  color: var(--cream);
  margin: 28px 0 10px;
}
.legal-body p, .legal-body li {
  color: var(--cream-muted);
  font-size: 16px;
  line-height: 1.78;
}
.legal-body p { margin: 0 0 18px; }
.legal-body strong { color: var(--cream); font-weight: 400; }
.legal-body a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.legal-body a:hover { color: var(--cream); }
.legal-body ul {
  margin: 0 0 18px; padding: 0;
  list-style: none;
  display: flex; flex-direction: column; gap: 11px;
}
.legal-body ul li {
  padding-left: 26px; position: relative;
}
.legal-body ul li::before {
  content: "—"; position: absolute; left: 0;
  color: var(--gold);
}

/* Identity / responsable data block */
.legal-data {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--ink-2);
  padding: 24px 28px;
  margin: 0 0 28px;
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 10px 28px;
}
.legal-data dt { color: var(--cream-muted); font-size: 14px; }
.legal-data dd { color: var(--cream); font-size: 15px; margin: 0; }
.legal-data dd a { color: var(--gold); }

/* Cookie table */
.cookie-table {
  width: 100%; border-collapse: collapse;
  margin: 4px 0 28px; font-size: 14px;
}
.cookie-table caption {
  text-align: left; color: var(--cream);
  margin-bottom: 12px; font-size: 16px;
}
.cookie-table th, .cookie-table td {
  text-align: left; padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.cookie-table thead th {
  color: var(--cream); font-weight: 400;
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
}
.cookie-table tbody th {
  color: var(--cream); font-weight: 400; white-space: nowrap;
}
.cookie-table td { color: var(--cream-muted); line-height: 1.5; }

/* Callout note */
.legal-note {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(237,188,64,0.07);
  padding: 20px 24px;
  margin: 0 0 28px;
}
.legal-note p { margin: 0; color: var(--cream); font-size: 15px; line-height: 1.65; }

@media (max-width: 860px) {
  .legal-layout { grid-template-columns: 1fr; gap: 0; }
  .legal-toc {
    position: static;
    flex-direction: row; flex-wrap: wrap;
    gap: 6px 14px;
    margin-bottom: 36px; padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
  }
  .legal-toc .toc-label { width: 100%; margin-bottom: 6px; }
  .legal-toc a { border-bottom: 0; padding: 4px 0; }
  .legal-toc a::after { content: "·"; margin-left: 14px; color: rgba(255,231,202,0.3); }
  .legal-toc a:last-child::after { content: ""; }
  .legal-data { grid-template-columns: 1fr; gap: 3px; }
  .legal-data dt { margin-top: 12px; }
  .legal-data dt:first-child { margin-top: 0; }
  .cookie-table, .cookie-table thead, .cookie-table tbody, .cookie-table th, .cookie-table td, .cookie-table tr { display: block; }
  .cookie-table thead { display: none; }
  .cookie-table tbody tr { border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 8px 4px; margin-bottom: 14px; }
  .cookie-table th, .cookie-table td { border: 0; padding: 6px 16px; }
}

/* ============= Wedding menus (bodas) ============= */
.wmenu-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 48px;
}
.wmenu-tab {
  text-align: left;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
  display: flex; flex-direction: column; gap: 7px;
  color: inherit;
}
.wmenu-tab:hover { border-color: rgba(255,231,202,0.32); transform: translateY(-2px); }
.wmenu-tab.active { border-color: var(--gold); background: var(--ink-3); }
.wmenu-tab-n {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--cream-muted);
}
.wmenu-tab.active .wmenu-tab-n { color: var(--gold); }
.wmenu-tab-name {
  font-family: var(--font-display);
  font-size: clamp(19px, 1.7vw, 25px);
  line-height: 1;
  color: var(--cream);
  text-transform: uppercase;
}
.wmenu-tab-price { font-size: 13px; color: var(--cream-muted); }
.wmenu-tab-price strong { color: var(--cream); font-weight: 400; }

.wmenu-panel { display: none; }
.wmenu-panel.active {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 4vw, 60px);
  align-items: start;
  animation: wmenu-fade .4s ease;
}
@keyframes wmenu-fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.wmenu-visual {
  position: sticky; top: 100px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
}
.wmenu-visual img { width: 100%; display: block; }
.wmenu-badge {
  position: absolute; top: 16px; left: 16px;
  background: rgba(30,30,28,0.82);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 9px 18px;
  font-size: 14px; color: var(--cream);
}
.wmenu-badge strong { color: var(--gold); font-weight: 400; }

.wmenu-detail-head {
  border-bottom: 1px solid var(--border);
  padding-bottom: 22px; margin-bottom: 30px;
}
.wmenu-name {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.4vw, 48px);
  line-height: 0.98;
  color: var(--cream);
  text-transform: uppercase;
  display: block;
}
.wmenu-sub {
  font-size: 13px; color: var(--cream-muted);
  margin-top: 12px; letter-spacing: 0.02em;
}
.wmenu-sub strong { color: var(--gold); font-weight: 400; }

.wmenu-courses { display: flex; flex-direction: column; }
.wmenu-course {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,231,202,0.08);
}
.wmenu-course:first-child { padding-top: 0; }
.wmenu-course:last-child { border-bottom: 0; padding-bottom: 0; }
.wmenu-course-label {
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold);
  line-height: 1.4;
  overflow-wrap: break-word;
  hyphens: auto;
}
.wmenu-course-time {
  display: block; margin-top: 6px;
  font-size: 11px; letter-spacing: 0.12em;
  color: var(--cream-muted);
}
.wmenu-course-note {
  display: block; margin-top: 8px;
  font-size: 11px; color: var(--cream-muted);
  font-style: italic; max-width: 16ch;
}
.wmenu-items {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 9px;
}
.wmenu-items.cols2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px 28px;
}
.wmenu-items li {
  position: relative; padding-left: 18px;
  font-size: 16px; line-height: 1.35;
  color: var(--cream);
}
.wmenu-items li::before {
  content: ""; position: absolute; left: 0; top: 9px;
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold);
}
.wmenu-items li span { color: var(--cream-muted); font-size: 13px; }

.wmenu-foot {
  margin-top: 28px; padding-top: 22px;
  border-top: 1px solid var(--border);
  font-size: 14px; color: var(--cream-muted); line-height: 1.6;
}

@media (max-width: 900px) {
  .wmenu-tabs { grid-template-columns: 1fr 1fr; }
  .wmenu-panel.active { grid-template-columns: 1fr; gap: 32px; }
  .wmenu-visual { position: static; max-width: 460px; }
}
@media (max-width: 560px) {
  .wmenu-tabs { grid-template-columns: 1fr; }
  .wmenu-course { grid-template-columns: 1fr; gap: 12px; padding: 20px 0; }
  .wmenu-items.cols2 { grid-template-columns: 1fr; }
}
