:root {
    --bone-00: #FBF8F3;
    --bone-05: #F6F2EC;
    --bone-10: #EDE6DB;
    --bone-20: #D9D0C1;
    --ink-90:  #1A1A1A;
    --ink-60:  #57544F;
    --ink-40:  #8A857D;
    --ink-20:  #C7C2BA;
    --terra:   #B8542D;
    --terra-d: #8A3F21;
    --sage:    #6B7A5C;
    --sage-d:  #4E5B43;

    --serif: "Prata", "Times New Roman", serif;
    --sans:  "Inter Tight", "Helvetica Neue", Arial, sans-serif;

    --gutter: 32px;
    --max: 1320px;
    --ease: cubic-bezier(.2,.7,.2,1);
  }
  * { box-sizing: border-box; }
  html, body { margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    background: var(--bone-00);
    color: var(--ink-90);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
  }
  img, video { max-width: 100%; display: block; }
  a { color: inherit; text-decoration: none; }

  .wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }

  /* Acento de marca, sin abusar — sólo en titulares clave */
  em { font-style: normal; }
  em.acc, .acc { color: var(--terra) !important; font-style: normal; }

  /* Reveal: por defecto VISIBLE. Solo se oculta si JS marca el html con .js-reveal.
     Esto previene contenido invisible si las animaciones se congelan o JS falla. */
  .reveal { opacity: 1; transform: none; }
  html.js-reveal .reveal:not(.in) { opacity: 0; transform: translateY(16px); }
  html.js-reveal .reveal.in {
    animation: revealIn 700ms var(--ease) forwards;
  }
  html.js-reveal .reveal.in.d1 { animation-delay: 80ms; }
  html.js-reveal .reveal.in.d2 { animation-delay: 160ms; }
  html.js-reveal .reveal.in.d3 { animation-delay: 240ms; }
  /* Clase nuclear: si la animación se congela, force-show la mata por encima de todo */
  html.js-reveal .reveal.force-show,
  .reveal.force-show {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
  @keyframes revealIn {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: none; }
  }
  @media (prefers-reduced-motion: reduce) {
    html.js-reveal .reveal:not(.in) { opacity: 1; transform: none; }
    html.js-reveal .reveal.in { animation: none; }
  }

  /* ============ NAV ============ */
  .nav {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 50;
    transition: background 380ms var(--ease), color 380ms var(--ease), border-color 380ms var(--ease);
    color: #fff;
  }
  .nav.scrolled { background: rgba(251, 248, 243, 0.92); backdrop-filter: blur(12px); color: var(--ink-90); border-bottom: 1px solid var(--bone-10); }
  .nav-inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 22px var(--gutter);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: var(--gutter);
  }
  .nav .logo img { height: 40px; width: auto; display: block; }
  /* Logo SVG: blanco sobre el hero, color original al hacer scroll */
  .nav .logo .logo-svg { filter: brightness(0) invert(1); transition: filter 320ms var(--ease); }
  .nav.scrolled .logo .logo-svg { filter: none; }
  .nav ul {
    display: flex; list-style: none; margin: 0; padding: 0;
    gap: 36px; justify-content: center;
    font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
    font-weight: 500;
  }
  .nav ul a { text-decoration: none; position: relative; padding-bottom: 3px; }
  .nav ul a::after {
    content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 100%;
    background: currentColor; transform: scaleX(0); transform-origin: right;
    transition: transform 420ms var(--ease);
  }
  .nav ul a:hover::after { transform: scaleX(1); transform-origin: left; }
  .nav .cta-wrap { justify-self: end; }
  .nav .cta {
    font-family: var(--sans); font-weight: 500; font-size: 12px;
    letter-spacing: 0.14em; text-transform: uppercase;
    white-space: nowrap;
    padding: 12px 20px;
    border: 1px solid currentColor;
    background: transparent;
    color: inherit;
    text-decoration: none;
    display: inline-flex; align-items: center; gap: 10px;
    transition: background 320ms var(--ease), color 320ms var(--ease), border-color 320ms var(--ease);
  }
  .nav .cta:hover { background: var(--terra); color: #fff; border-color: var(--terra); }
  .nav .cta .arrow { transition: transform 320ms var(--ease); }
  .nav .cta:hover .arrow { transform: translateX(4px); }
  .nav-burger {
    display: none;
    background: none; border: none; cursor: pointer; padding: 0;
    width: 36px; height: 36px; position: relative;
    color: inherit;
  }
  .nav-burger span {
    position: absolute; left: 6px; right: 6px; height: 1.5px;
    background: currentColor;
    transition: transform 320ms var(--ease), opacity 220ms var(--ease), top 320ms var(--ease), bottom 320ms var(--ease);
  }
  .nav-burger span:nth-child(1) { top: 13px; }
  .nav-burger span:nth-child(2) { bottom: 13px; }
  .nav-burger[aria-expanded="true"] { color: var(--bone-00); }
  .nav-burger[aria-expanded="true"] span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
  .nav-burger[aria-expanded="true"] span:nth-child(2) { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

  @media (max-width: 900px) {
    .nav ul { display: none; }
    .nav .cta-wrap { display: none; }
    .nav-burger { display: block; justify-self: end; }
    .nav-inner { grid-template-columns: 1fr auto; }
  }

  /* Mobile drawer */
  .nav-mobile {
    position: fixed; inset: 0; z-index: 55;
    background: var(--ink-90); color: var(--bone-00);
    display: flex; flex-direction: column; justify-content: space-between;
    padding: 96px 32px 40px;
    opacity: 0; pointer-events: none;
    transition: opacity 360ms var(--ease);
  }
  .nav-mobile[aria-hidden="false"] { opacity: 1; pointer-events: auto; }
  .nav-mobile ul {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 4px;
  }
  .nav-mobile ul li {
    border-bottom: 1px solid rgba(255,255,255,.08);
    overflow: hidden;
  }
  .nav-mobile ul a {
    display: block; padding: 18px 0;
    font-family: var(--serif); font-weight: 300;
    font-size: 32px; line-height: 1;
    color: var(--bone-00); text-decoration: none;
    letter-spacing: -0.015em;
    opacity: 0; transform: translateY(12px);
    transition: color 280ms var(--ease), opacity 360ms var(--ease), transform 360ms var(--ease);
  }
  .nav-mobile[aria-hidden="false"] ul a {
    opacity: 1; transform: none;
  }
  .nav-mobile[aria-hidden="false"] ul li:nth-child(1) a { transition-delay: 80ms; }
  .nav-mobile[aria-hidden="false"] ul li:nth-child(2) a { transition-delay: 130ms; }
  .nav-mobile[aria-hidden="false"] ul li:nth-child(3) a { transition-delay: 180ms; }
  .nav-mobile[aria-hidden="false"] ul li:nth-child(4) a { transition-delay: 230ms; }
  .nav-mobile[aria-hidden="false"] ul li:nth-child(5) a { transition-delay: 280ms; }
  .nav-mobile[aria-hidden="false"] ul li:nth-child(6) a { transition-delay: 330ms; }
  .nav-mobile[aria-hidden="false"] ul li:nth-child(7) a { transition-delay: 380ms; }
  .nav-mobile ul a:hover { color: var(--terra); }
  .nav-mobile-foot {
    display: flex; flex-direction: column; gap: 24px;
    padding-top: 24px; border-top: 1px solid rgba(255,255,255,.08);
  }
  .nav-mobile-cta {
    align-self: flex-start;
    font-family: var(--sans); font-weight: 500;
    font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--bone-00); text-decoration: none;
    border: 1px solid rgba(255,255,255,.32);
    padding: 16px 24px;
    display: inline-flex; align-items: center; gap: 12px;
    transition: background 280ms var(--ease), border-color 280ms var(--ease), color 280ms var(--ease);
  }
  .nav-mobile-cta:hover { background: var(--terra); border-color: var(--terra); color: #fff; }
  .nav-mobile-cta .arrow { transition: transform 280ms var(--ease); }
  .nav-mobile-cta:hover .arrow { transform: translateX(4px); }
  .nav-mobile-info {
    display: flex; flex-direction: column; gap: 6px;
    font-family: var(--sans); font-size: 13px;
    color: rgba(255,255,255,.6);
  }
  .nav-mobile-info a { color: rgba(255,255,255,.85); text-decoration: none; }
  body.nav-open { overflow: hidden; }
  /* Forzar el burger a usar color claro cuando el menú está abierto */
  .nav.menu-open { color: var(--bone-00) !important; z-index: 60; }
  .nav.menu-open .logo .logo-svg { filter: brightness(0) invert(1); }
  .nav.menu-open.scrolled { background: transparent !important; border-bottom-color: transparent !important; }

  /* ============ HERO ============ */
  .hero {
    position: relative;
    min-height: 100vh;
    color: #fff;
    overflow: hidden;
    display: flex; flex-direction: column; justify-content: flex-end;
  }
  .hero video.bg, .hero .bg-fallback {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    filter: saturate(0.92) contrast(1.02) brightness(0.82);
  }
  .hero .bg-fallback {
    background: linear-gradient(135deg, #2a2420 0%, #5a4a3c 55%, #8a6f52 100%);
  }
  .hero::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.42) 0%, rgba(0,0,0,0) 28%, rgba(0,0,0,0) 52%, rgba(0,0,0,.62) 100%);
    pointer-events: none;
  }
  .hero-inner {
    position: relative; z-index: 2;
    max-width: var(--max);
    margin: 0 auto;
    width: 100%;
    padding: 0 var(--gutter) 88px;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: var(--gutter);
    align-items: end;
  }
  @media (max-width: 900px) { .hero-inner { grid-template-columns: 1fr; padding-bottom: 64px;} }

  .hero .eyebrow {
    font-family: var(--sans); font-weight: 500;
    font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
    color: rgba(255,255,255,.72);
    margin-bottom: 28px;
    display: flex; align-items: center; gap: 14px;
  }
  .hero .eyebrow .dot { width: 5px; height: 5px; background: var(--terra); border-radius: 50%; }

  .hero h1 {
    font-family: var(--serif); font-weight: 300;
    font-size: clamp(39px, 6.1vw, 96px);
    line-height: 1.02;
    letter-spacing: -0.02em;
    margin: 0;
    color: #fff;
    max-width: 18ch;
  }
  .hero h1 em { font-style: normal; font-weight: 300; color: rgba(255,255,255,.72); }

  .hero .side { max-width: 34ch; padding-bottom: 12px; }
  .hero .side p { font-size: 17px; line-height: 1.6; color: rgba(255,255,255,.88); margin: 0 0 32px; }
  .hero .side a.cta {
    display: inline-flex; align-items: center; gap: 12px;
    white-space: nowrap;
    font-family: var(--sans); font-weight: 500;
    font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
    padding: 18px 28px;
    background: #fff; color: var(--ink-90);
    text-decoration: none;
    transition: background 320ms var(--ease), color 320ms var(--ease);
  }
  .hero .side a.cta:hover { background: var(--bone-00); color: var(--ink-90); border-color: var(--bone-00); }

  .hero-foot {
    position: absolute; bottom: 24px; left: 0; right: 0;
    z-index: 2;
    display: flex; justify-content: space-between; align-items: center;
    padding: 0 var(--gutter);
    max-width: var(--max);
    margin: 0 auto;
    font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
    color: rgba(255,255,255,.72);
  }
  .hero-foot .mute {
    background: transparent; border: 1px solid rgba(255,255,255,.4);
    color: #fff; font-family: var(--sans); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
    padding: 8px 14px; cursor: pointer;
    transition: background 280ms var(--ease), border-color 280ms var(--ease);
  }
  .hero-foot .mute:hover { background: rgba(255,255,255,.12); border-color: #fff; }

  /* ============ SECTION BASE ============ */
  section.s { padding: 128px 0; }
  @media (max-width: 820px) { section.s { padding: 80px 0; } }
  .sec-head {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 32px 64px;
    margin-bottom: 72px;
    align-items: end;
  }
  .sec-head .head-block { display: flex; flex-direction: column; gap: 18px; max-width: 56ch; }
  .sec-head .num,
  .sec-head .tag,
  .sec-head .eb {
    font-family: var(--sans); font-weight: 500;
    font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--ink-40);
  }
  .sec-head h2 {
    font-family: var(--serif); font-weight: 300;
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1.04; letter-spacing: -0.015em;
    margin: 0; max-width: 22ch;
  }
  .sec-head h2 em { font-style: normal; color: var(--terra); }
  .sec-head .sec-lede {
    color: var(--ink-60);
    font-size: 16px; line-height: 1.7;
    max-width: 52ch;
    margin: 0;
  }
  .sec-head .head-cta {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--sans); font-weight: 500;
    font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--ink-90); text-decoration: none;
    padding: 14px 22px; border: 1px solid var(--ink-90); background: transparent;
    white-space: nowrap;
    transition: background 320ms var(--ease), color 320ms var(--ease), border-color 320ms var(--ease);
    cursor: pointer;
    font-family: var(--sans);
    align-self: end;
  }
  .sec-head .head-cta:hover { background: var(--terra); color: #fff; border-color: var(--terra); }
  .sec-head .head-cta .arrow { transition: transform 320ms var(--ease); }
  .sec-head .head-cta:hover .arrow { transform: translateX(4px); }
  @media (max-width: 820px) {
    .sec-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 48px; }
    .sec-head .head-cta { justify-self: start; }
  }

  /* ============ PLACEHOLDER TILE ============ */
  .ph {
    position: relative; width: 100%; height: 100%;
    background: var(--bone-10);
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
    color: var(--ink-60);
  }
  .ph::before {
    content: ""; position: absolute; inset: 0;
    background: repeating-linear-gradient(45deg, rgba(26,26,26,.035) 0 6px, transparent 6px 14px);
  }
  .ph .inner { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 14px; padding: 24px; text-align: center; }
  .ph svg { width: 40px; height: 40px; stroke: currentColor; fill: none; stroke-width: 1.2; opacity: .55; }
  .ph .lbl { font-family: var(--sans); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; opacity: .8; }
  .ph .ratio { font-family: var(--sans); font-size: 10px; letter-spacing: 0.18em; color: var(--ink-40); }
  .ph.dark { background: #272320; color: rgba(255,255,255,.7); }
  .ph.dark::before { background: repeating-linear-gradient(45deg, rgba(255,255,255,.04) 0 6px, transparent 6px 14px); }
  .ph.dark .ratio { color: rgba(255,255,255,.4); }

  /* ============ 01 · INTRO ============ */
  .espacio-photo { margin: 0 0 72px; position: relative; }
  .espacio-photo img { width: 100%; height: auto; aspect-ratio: 16/9; object-fit: cover; display: block; }

  /* Fragmentación de la foto: 4 piezas que se unen al hacer scroll */
  .espacio-frag {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--bone-05);
  }
  .espacio-frag .frag-fallback {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0;
    pointer-events: none;
  }
  .espacio-frag .frag-piece {
    position: absolute;
    width: 50%; height: 50%;
    background-image: url("assets/espacio-foto.jpg");
    background-size: 200% 200%;
    background-repeat: no-repeat;
    will-change: transform;
    transition: transform 100ms linear;
  }
  .espacio-frag .frag-piece.tl { top: 0; left: 0; background-position: 0 0; }
  .espacio-frag .frag-piece.tr { top: 0; right: 0; background-position: 100% 0; }
  .espacio-frag .frag-piece.bl { bottom: 0; left: 0; background-position: 0 100%; }
  .espacio-frag .frag-piece.br { bottom: 0; right: 0; background-position: 100% 100%; }
  /* Estado inicial: piezas separadas (a 18% hacia fuera) */
  .espacio-frag .frag-piece.tl { transform: translate(-18%, -18%); }
  .espacio-frag .frag-piece.tr { transform: translate(18%, -18%); }
  .espacio-frag .frag-piece.bl { transform: translate(-18%, 18%); }
  .espacio-frag .frag-piece.br { transform: translate(18%, 18%); }
  @media (prefers-reduced-motion: reduce) {
    .espacio-frag .frag-piece { transform: none !important; }
  }
  .espacio-photo figcaption {
    display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap;
    margin-top: 14px;
    font-family: var(--sans); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--ink-40);
  }
  .espacio-photo figcaption .name { color: var(--ink-90); }
  @media (max-width: 820px) { .espacio-photo { margin-bottom: 48px; } .espacio-photo img { aspect-ratio: 4/3; } }

  .intro { display: grid; grid-template-columns: 1fr 1fr; gap: 96px; align-items: start; }
  @media (max-width: 900px) { .intro { grid-template-columns: 1fr; gap: 48px; } }
  .intro .left p { font-size: 17px; line-height: 1.75; color: var(--ink-90); margin: 0 0 24px; max-width: 44ch; }
  .intro .left p.lede {
    font-family: var(--serif); font-weight: 400;
    font-size: clamp(28px, 3.2vw, 40px);
    line-height: 1.22; letter-spacing: -0.01em;
    color: var(--ink-90); max-width: 24ch; margin-bottom: 40px;
  }
  .intro .left p.lede em { font-style: normal; color: var(--ink-60); }

  /* Keywords destacadas: peso ligero + color más contrastado (sin gritar) */
  p strong, .sec-lede strong, .intro p strong { font-weight: 500; color: var(--ink-90); }
  .hero .side p strong, .dossier-band p strong, .faq-cta-text strong, .gastro-card p strong { color: #fff; font-weight: 500; }
  .intro dl { margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 32px 48px; }
  .intro dl > div { border-top: 1px solid var(--bone-10); padding-top: 20px; }
  .intro dl .dt-ico {
    display: block;
    width: 22px; height: 22px;
    color: var(--terra);
    margin-bottom: 14px;
  }
  .intro dl .dt-ico svg { width: 100%; height: 100%; }
  .intro dt { font-family: var(--sans); font-weight: 500; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-40); margin-bottom: 8px; }
  .intro dd { margin: 0; font-family: var(--serif); font-weight: 400; font-size: 24px; line-height: 1.25; }
  .intro dd small { display: block; font-family: var(--sans); font-size: 12px; color: var(--ink-60); letter-spacing: 0; text-transform: none; margin-top: 4px; }

  /* ============ 02 · LARGE IMAGE BLOCK ============ */
  .showcase { padding: 0 0 128px; }
  .showcase .frame {
    position: relative;
    aspect-ratio: 21/9;
    overflow: hidden;
    background: #1a1a1a;
  }
  @media (max-width: 720px) { .showcase .frame { aspect-ratio: 4/3; } }
  .showcase .frame-inner {
    position: absolute; left: 0; right: 0; top: -10%; height: 120%;
    will-change: transform;
  }
  .showcase .frame-inner img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    animation: showcaseKenburns 32s ease-in-out infinite alternate;
    will-change: transform;
  }
  @keyframes showcaseKenburns {
    0%   { transform: scale(1.02) translate(0%, 0%); }
    100% { transform: scale(1.12) translate(-2%, -1.5%); }
  }
  .showcase .frame::after {
    content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 1;
    background: linear-gradient(180deg, rgba(0,0,0,.40) 0%, rgba(0,0,0,0) 22%, rgba(0,0,0,0) 50%, rgba(0,0,0,.65) 100%);
  }
  .showcase .frame-overlay {
    position: absolute; inset: 0; z-index: 2;
    display: flex; flex-direction: column; justify-content: space-between;
    padding: clamp(24px, 3vw, 40px) clamp(24px, 4vw, 56px);
    color: #fff; pointer-events: none;
  }
  .showcase .frame-top, .showcase .frame-bottom {
    display: flex; justify-content: space-between; align-items: end; gap: 24px;
  }
  .showcase .frame-tag, .showcase .frame-coords, .showcase .frame-meta {
    font-family: var(--sans); font-weight: 500;
    font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
    color: rgba(255,255,255,.78);
  }
  .showcase .frame-coords { font-variant-numeric: tabular-nums; color: rgba(255,255,255,.55); }
  .showcase .frame-title {
    font-family: var(--serif); font-weight: 300;
    font-size: clamp(36px, 5.4vw, 76px);
    line-height: 1.02; letter-spacing: -0.02em;
    margin: 0; color: #fff;
    max-width: 14ch;
    text-wrap: balance;
  }
  .showcase .frame-title em { font-style: normal; color: rgba(255,255,255,.6); }
  @media (max-width: 720px) {
    .showcase .frame-bottom { flex-direction: column; align-items: flex-start; }
    .showcase .frame-meta { align-self: flex-start; }
  }
  @media (prefers-reduced-motion: reduce) {
    .showcase .frame-inner img { animation: none; transform: scale(1.02); }
  }

  /* ============ DOSSIER BAND · banner descargable ============ */
  .dossier-band {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 88px 5vw;
    color: var(--bone-00);
    background: #14110d;
    overflow: hidden;
    isolation: isolate;
  }
  .dossier-band .bg {
    position: absolute; inset: 0; z-index: 0;
    background: url("assets/dossier-bg.jpg") center / cover no-repeat;
    filter: brightness(0.5) saturate(0.95);
    transform: scale(1.02);
  }
  .dossier-band::before {
    content: "";
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(110deg, rgba(15,12,8,0.78) 0%, rgba(15,12,8,0.55) 55%, rgba(15,12,8,0.85) 100%);
    pointer-events: none;
  }
  .dossier-band .content {
    position: relative; z-index: 2;
    max-width: 1240px; margin: 0 auto;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 72px;
    align-items: center;
  }
  @media (max-width: 900px) {
    .dossier-band { padding: 56px 24px; }
    .dossier-band .content { grid-template-columns: 1fr; gap: 32px; }
  }
  .dossier-band .eyebrow {
    font-family: var(--sans); font-weight: 500; font-size: 11px; letter-spacing: 0.22em;
    text-transform: uppercase; color: var(--bone-00);
    margin-bottom: 22px; display: inline-flex; align-items: center; gap: 10px;
  }
  .dossier-band .eyebrow .dot { width: 6px; height: 6px; background: var(--bone-00); border-radius: 50%; display: inline-block; }
  .dossier-band h2 {
    font-family: var(--serif); font-weight: 300;
    font-size: clamp(30px, 3.6vw, 52px); line-height: 1.06; letter-spacing: -0.01em;
    margin: 0 0 18px;
  }
  .dossier-band h2 em { font-style: normal; color: rgba(255,255,255,0.55); }
  .dossier-band p { color: rgba(255,255,255,0.78); font-size: 15px; line-height: 1.7; max-width: 40ch; margin: 0; }

  /* Form */
  .dossier-form { width: 100%; max-width: 460px; }
  .dossier-form .row { display: flex; }
  .dossier-form input {
    flex: 1; min-width: 0;
    padding: 18px 20px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.22);
    color: #fff;
    font-family: var(--sans); font-size: 15px;
    outline: none;
    transition: border-color 280ms var(--ease), background 280ms var(--ease);
    border-right: none;
  }
  .dossier-form input::placeholder { color: rgba(255,255,255,0.45); }
  .dossier-form input:focus { border-color: var(--bone-00); background: rgba(255,255,255,0.1); }
  .dossier-form button {
    padding: 0 26px;
    background: var(--bone-00);
    color: var(--ink-90);
    border: 1px solid var(--bone-00);
    font-family: var(--sans); font-size: 12px; font-weight: 500;
    letter-spacing: 0.18em; text-transform: uppercase;
    cursor: pointer;
    transition: background 280ms var(--ease), color 280ms var(--ease), border-color 280ms var(--ease);
    white-space: nowrap;
  }
  .dossier-form button:hover { background: transparent; color: var(--bone-00); border-color: var(--bone-00); }
  .dossier-form .note {
    font-family: var(--sans); font-size: 11px; line-height: 1.6; letter-spacing: 0.02em;
    color: rgba(255,255,255,0.5);
    margin-top: 14px;
  }
  .dossier-success {
    font-family: var(--sans); font-size: 14px; line-height: 1.6;
    color: var(--bone-00);
    padding: 14px 0;
    display: flex; align-items: center; gap: 10px;
  }
  .dossier-success::before { content: ""; width: 8px; height: 8px; background: var(--bone-00); border-radius: 50%; }
  @media (max-width: 540px) {
    .dossier-form .row { flex-direction: column; }
    .dossier-form input { border-right: 1px solid rgba(255,255,255,0.22); }
    .dossier-form button { padding: 16px 28px; margin-top: -1px; }
  }

  /* ============ 03 · EVENT TYPES ============ */
  .types { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px 32px; border-top: 1px solid var(--rule); padding-top: 40px; }
  @media (max-width: 900px) { .types { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; } }
  @media (max-width: 560px) { .types { grid-template-columns: 1fr; } }
  .type-card { text-decoration: none; color: inherit; display: flex; flex-direction: column; gap: 14px; }
  .type-card .thumb { width: 96px; height: 96px; overflow: hidden; position: relative; }
  .type-card .thumb .inner { position: absolute; inset: 0; }
  .type-card .thumb svg { width: 22px; height: 22px; }
  .type-card .thumb::after { content: ""; position: absolute; inset: 0; background: transparent; transition: background 360ms var(--ease); pointer-events: none; }
  .type-card:hover .thumb::after { background: rgba(26,26,26,.08); }
  .type-card .idx { font-family: var(--sans); font-weight: 500; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-40); margin-top: 2px; }
  .type-card .title { font-family: var(--serif); font-weight: 400; font-size: 26px; line-height: 1.1; letter-spacing: -0.01em; color: var(--ink-90); }
  .type-card .desc { color: var(--ink-60); font-size: 14px; line-height: 1.6; }
  .type-card .go { display: inline-flex; align-items: center; gap: 8px; font-family: var(--sans); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-90); margin-top: 6px; }
  .type-card .go .arrow { transition: transform 320ms var(--ease); }
  .type-card:hover .go .arrow { transform: translateX(6px); }
  .type-card:hover .title { color: var(--terra); }

  /* ============ 04 · GALLERY (perfect 3×2 grid) ============ */
  .gallery-wrap { padding: 128px 0; background: var(--bone-00); }
  /* gal-head ahora usa .sec-head pattern */
  .gal-grid {
    max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter);
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
    align-items: start;
  }
  .gal-col { display: flex; flex-direction: column; gap: 24px; min-width: 0; }
  .gal-grid figure, .gal-col > figure { display: block; margin: 0; }
  @media (max-width: 900px) {
    .gal-grid { display: block; column-count: 2; column-gap: 16px; }
    .gal-col { display: contents; }
    .gal-grid figure { break-inside: avoid; margin: 0 0 16px; }
  }
  @media (max-width: 560px) {
    .gal-grid { column-count: 1; }
  }
  .gal-grid figure { cursor: pointer; }
  .gal-grid figure .f { width: 100%; overflow: hidden; }
  .gal-grid figure .f img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform 700ms var(--ease), filter 700ms var(--ease);
    filter: saturate(0.95);
  }
  .gal-grid figure:hover .f img { transform: scale(1.04); filter: saturate(1.05); }
  .gal-grid figure .f.r-43 { aspect-ratio: 4/3; }
  .gal-grid figure .f.r-34 { aspect-ratio: 3/4; }
  .gal-grid figure .f.r-11 { aspect-ratio: 1/1; }
  .gal-grid figure .f.r-23 { aspect-ratio: 2/3; }
  .gal-grid figure .f.r-169 { aspect-ratio: 16/9; }
  .gal-grid .f .lbl, .gal-grid .f .ratio { display: none; }
  .gal-grid figure figcaption {
    display: flex; justify-content: space-between; gap: 16px; margin-top: 14px;
    font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-40);
  }
  .gal-grid figure figcaption .name { color: var(--ink-90); }
  .gal-cta {
    background: var(--ink-90); color: var(--bone-00); aspect-ratio: 3/4;
    padding: 28px; display: flex; flex-direction: column; justify-content: space-between;
    text-decoration: none;
  }
  .gal-cta .k { font-family: var(--sans); font-weight: 500; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,.55); }
  .gal-cta .t { font-family: var(--serif); font-weight: 300; font-size: clamp(22px, 2.4vw, 30px); line-height: 1.15; letter-spacing: -0.01em; margin: 18px 0 0; color: var(--bone-00); }
  .gal-cta .t em { font-style: normal; color: rgba(255,255,255,.6); }
  .gal-cta .go { display: inline-flex; align-items: center; gap: 8px; font-family: var(--sans); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--bone-00); }
  .gal-cta .go .arrow { transition: transform 320ms var(--ease); }
  .gal-cta:hover .go .arrow { transform: translateX(6px); }

  /* ============ 05 · GASTRONOMÍA — cuatro firmas ============ */
  .gastro-wrap { background: var(--bone-00); border-top: 1px solid var(--bone-10); }
  .gastro-top { margin-bottom: 64px; }
  @media (max-width: 900px) { .gastro-top { margin-bottom: 48px; } }
  .gastro-intro { font-size: 17px; line-height: 1.7; color: var(--ink-60); max-width: 52ch; margin: 0; }
  .gastro-photo { margin: 0; position: relative; }
  .gastro-photo img { width: 100%; height: auto; aspect-ratio: 4/3; object-fit: cover; display: block; }
  .gastro-slideshow .ss-stage {
    position: relative; width: 100%; aspect-ratio: 21/9; overflow: hidden; background: #1a1a1a;
  }
  @media (max-width: 720px) { .gastro-slideshow .ss-stage { aspect-ratio: 4/3; } }
  .gastro-slideshow .ss-stage > * {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    aspect-ratio: auto;
    opacity: 0;
    animation: gastroFade 9s infinite;
    will-change: opacity;
  }
  .gastro-slideshow .ss-stage > img { object-fit: cover; }
  .gastro-slideshow .ss-stage > *:nth-child(1) { animation-delay: 0s; }
  .gastro-slideshow .ss-stage > *:nth-child(2) { animation-delay: 3s; }
  .gastro-slideshow .ss-stage > *:nth-child(3) { animation-delay: 6s; }
  @keyframes gastroFade {
    0%   { opacity: 0; }
    4%   { opacity: 1; }
    30%  { opacity: 1; }
    35%  { opacity: 0; }
    100% { opacity: 0; }
  }
  @media (prefers-reduced-motion: reduce) {
    .gastro-slideshow .ss-stage > * { animation: none; }
    .gastro-slideshow .ss-stage > *:nth-child(1) { opacity: 1; }
  }
  .gastro-photo figcaption {
    display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap;
    margin-top: 14px;
    font-family: var(--sans); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--ink-40);
  }
  .gastro-photo figcaption .name { color: var(--ink-90); }
  .catering-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 56px; }
  @media (max-width: 1080px) { .catering-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; } }
  @media (max-width: 580px) { .catering-grid { grid-template-columns: 1fr; gap: 12px; } }
  .catering-card {
    background: var(--bone-05); border: 1px solid var(--bone-10);
    padding: 32px 28px;
    display: flex; flex-direction: column; gap: 12px;
    transition: border-color 320ms var(--ease), transform 320ms var(--ease), background 320ms var(--ease);
    position: relative;
  }
  .catering-card::before {
    content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 2px; background: var(--terra);
    transform: scaleY(0); transform-origin: top; transition: transform 360ms var(--ease);
  }
  .catering-card:hover { border-color: var(--ink-90); background: #fff; transform: translateY(-2px); }
  .catering-card:hover::before { transform: scaleY(1); }
  .catering-card .line-meta {
    font-family: var(--sans); font-weight: 500; font-size: 11px; letter-spacing: 0.22em;
    text-transform: uppercase; color: var(--terra);
  }
  .catering-card h3 {
    font-family: var(--serif); font-weight: 300;
    font-size: clamp(26px, 2.2vw, 32px); line-height: 1.05;
    letter-spacing: -0.015em; margin: 0; color: var(--ink-90);
  }
  .catering-card .kicker {
    font-family: var(--serif); font-weight: 400; font-size: 17px;
    color: var(--ink-90); margin: 0; line-height: 1.3;
  }
  .catering-card p { font-size: 14px; line-height: 1.6; color: var(--ink-60); margin: 0; }

  /* ============ Catering · accordion (FAQ-style) ============ */
  .catering-acc { display: flex; flex-direction: column; margin-bottom: 56px; }
  .catering-item { border-bottom: 1px solid var(--bone-10); transition: background 320ms var(--ease); }
  .catering-item:first-child { border-top: 1px solid var(--bone-10); }
  .catering-item:hover { background: var(--bone-05); }
  .catering-item.is-open { background: #fff; }
  .catering-head {
    width: 100%; padding: 28px 16px;
    background: transparent; border: 0; cursor: pointer; text-align: left;
    display: grid;
    grid-template-columns: 140px 1.2fr 1.6fr auto;
    gap: 32px;
    align-items: center;
    font-family: var(--sans);
    transition: padding 320ms var(--ease);
  }
  .catering-head:hover { padding-left: 24px; }
  .catering-head .line-meta {
    font-family: var(--sans); font-weight: 500; font-size: 11px; letter-spacing: 0.22em;
    text-transform: uppercase; color: var(--terra);
  }
  .catering-head h3 {
    font-family: var(--serif); font-weight: 300;
    font-size: clamp(22px, 2.2vw, 30px); line-height: 1.1;
    letter-spacing: -0.015em; margin: 0; color: var(--ink-90);
  }
  .catering-head .kicker {
    font-family: var(--serif); font-weight: 400; font-size: 16px;
    color: var(--ink-60); margin: 0; line-height: 1.3;
  }
  .catering-icon {
    width: 32px; height: 32px; border: 1px solid var(--ink-90); border-radius: 50%;
    position: relative; flex-shrink: 0; justify-self: end;
    transition: background 320ms var(--ease), border-color 320ms var(--ease), transform 320ms var(--ease);
  }
  .catering-icon::before, .catering-icon::after {
    content: ""; position: absolute; left: 50%; top: 50%;
    background: var(--ink-90); transition: transform 320ms var(--ease), opacity 320ms var(--ease), background 320ms var(--ease);
  }
  .catering-icon::before { width: 12px; height: 1px; transform: translate(-50%, -50%); }
  .catering-icon::after { width: 1px; height: 12px; transform: translate(-50%, -50%); }
  .catering-item.is-open .catering-icon { background: var(--ink-90); border-color: var(--ink-90); }
  .catering-item.is-open .catering-icon::before, .catering-item.is-open .catering-icon::after { background: #fff; }
  .catering-item.is-open .catering-icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
  .catering-body {
    display: grid; grid-template-rows: 0fr;
    transition: grid-template-rows 480ms var(--ease);
  }
  .catering-item.is-open .catering-body { grid-template-rows: 1fr; }
  .catering-body-inner { overflow: hidden; padding: 0 16px; }
  .catering-item.is-open .catering-body-inner { padding: 0 16px 32px; }
  .catering-body p {
    font-size: 14px; line-height: 1.7; color: var(--ink-60); margin: 0; max-width: 60ch;
  }
  @media (max-width: 760px) {
    .catering-head {
      grid-template-columns: 1fr auto;
      grid-template-rows: auto auto auto;
      gap: 6px 16px;
      padding: 22px 12px;
    }
    .catering-head .line-meta { grid-column: 1; grid-row: 1; }
    .catering-head h3 { grid-column: 1; grid-row: 2; }
    .catering-head .kicker { grid-column: 1; grid-row: 3; }
    .catering-head .catering-icon { grid-column: 2; grid-row: 1 / 4; align-self: center; }
    .catering-head:hover { padding-left: 16px; }
  }

  .gastro-cta-wrap { display: flex; justify-content: flex-start; }

  .gastro-cta {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--sans); font-weight: 500;
    font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--ink-90); text-decoration: none;
    padding: 16px 28px; border: 1px solid var(--ink-90); background: transparent;
    transition: background 320ms var(--ease), color 320ms var(--ease);
  }
  .gastro-cta:hover { background: var(--terra); color: #fff; border-color: var(--terra); }
  .gastro-cta .arrow { transition: transform 320ms var(--ease); }
  .gastro-cta:hover .arrow { transform: translateX(4px); }

  /* OLD gastro layout (kept as no-op, may be unused) */
  .gastro-wrap-legacy { background: var(--bone-00); }
  .gastro-stage {
    position: relative; min-height: 760px; display: flex; align-items: center;
    padding: 120px 0;
  }
  @media (max-width: 900px) { .gastro-stage { min-height: 0; padding: 0 0 64px; flex-direction: column; align-items: stretch; } }
  .gastro-img {
    position: absolute; inset: 0 38% 0 0;
    overflow: hidden;
  }
  .gastro-img .inner { position: absolute; inset: 0; }
  .gastro-img svg { width: 56px; height: 56px; }
  @media (max-width: 900px) {
    .gastro-img { position: relative; inset: auto; height: 60vw; min-height: 320px; max-height: 480px; }
  }
  .gastro-card {
    position: relative; z-index: 2;
    margin-left: auto; margin-right: var(--gutter);
    width: min(560px, 92vw); padding: 56px 48px;
    background: var(--ink-90); color: var(--bone-00);
  }
  @media (max-width: 900px) {
    .gastro-card { margin: -64px 16px 0; width: auto; padding: 40px 28px; }
  }
  .gastro-card .num { font-family: var(--sans); font-weight: 500; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,.55); margin-bottom: 24px; }
  .gastro-card h2 { font-family: var(--serif); font-weight: 300; font-size: clamp(32px, 3.6vw, 48px); line-height: 1.1; letter-spacing: -0.015em; color: var(--bone-00); margin: 0 0 24px; max-width: 18ch; }
  .gastro-card h2 em { font-style: normal; color: rgba(255,255,255,.6); }
  .gastro-card p { color: rgba(255,255,255,.72); font-size: 15px; line-height: 1.7; margin: 0 0 28px; max-width: 42ch; }
  .gastro-card p em { font-style: normal; color: var(--bone-00); }
  .gastro-card ul { list-style: none; padding: 0; margin: 0 0 32px; }
  .gastro-card ul li { display: flex; justify-content: space-between; gap: 24px; padding: 14px 0; border-top: 1px solid rgba(255,255,255,.16); font-size: 14px; color: var(--bone-00); }
  .gastro-card ul li:last-child { border-bottom: 1px solid rgba(255,255,255,.16); }
  .gastro-card ul li .by { color: rgba(255,255,255,.5); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; }
  .gastro-card .gastro-cta {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--sans); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--bone-00); text-decoration: none; padding-bottom: 6px; border-bottom: 1px solid var(--terra);
  }
  .gastro-card .gastro-cta .arrow { transition: transform 320ms var(--ease); color: var(--terra); }
  .gastro-card .gastro-cta:hover .arrow { transform: translateX(6px); }
  .gastro-wrap .marca-line { margin-top: 80px; }

  .marca-line {
    display: flex; gap: 16px; align-items: center;
    font-family: var(--sans); font-size: 11px; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--ink-40);
  }
  .marca-line::before, .marca-line::after { content: ""; height: 1px; background: var(--bone-10); flex: 1; }

  /* ============ 06 · INSTAGRAM ============ */
  .ig-wrap { padding: 128px 0; background: var(--bone-00); border-top: 1px solid var(--bone-10); }
  /* ig-head ahora usa .sec-head pattern */

  .ig-grid {
    max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter);
    display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px;
  }
  @media (max-width: 900px) { .ig-grid { grid-template-columns: repeat(3, 1fr); } }
  .ig-tile { aspect-ratio: 1/1; position: relative; overflow: hidden; background: var(--bone-10); }
  .ig-tile img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform 700ms var(--ease), filter 700ms var(--ease);
    filter: saturate(0.95);
  }
  .ig-tile:hover img { transform: scale(1.04); filter: saturate(1.05) brightness(1.02); }
  .ig-tile .meta {
    position: absolute; inset: auto 10px 10px 10px;
    font-family: var(--sans); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
    color: rgba(255,255,255,.95);
    text-shadow: 0 1px 6px rgba(0,0,0,.45);
    opacity: 0; transition: opacity 320ms var(--ease);
  }
  .ig-tile:hover .meta { opacity: 1; }
  .ig-tile .reel-tag {
    position: absolute; top: 10px; right: 10px; z-index: 2;
    display: inline-flex; align-items: center; gap: 6px;
    font-family: var(--sans); font-weight: 500;
    font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
    color: #fff;
    background: rgba(0,0,0,.45); backdrop-filter: blur(4px);
    padding: 4px 8px;
  }
  .ig-tile .reel-tag svg { width: 10px; height: 10px; fill: currentColor; }
  .ig-tile.reel .play {
    position: absolute; inset: 0; display: grid; place-items: center;
    z-index: 2; pointer-events: none;
  }
  .ig-tile.reel .play svg {
    width: 52px; height: 52px;
    fill: rgba(255,255,255,.92);
    filter: drop-shadow(0 4px 14px rgba(0,0,0,.45));
    opacity: .85; transform: scale(.95);
    transition: opacity 360ms var(--ease), transform 360ms var(--ease);
  }
  .ig-tile.reel:hover .play svg { opacity: 1; transform: scale(1.06); }
  .ig-tile.placeholder {
    background: linear-gradient(160deg, var(--bone-10) 0%, var(--bone-20) 100%);
    display: flex; align-items: center; justify-content: center;
    color: var(--ink-40);
    transition: background 360ms var(--ease), color 360ms var(--ease), transform 360ms var(--ease);
  }
  .ig-tile.placeholder::before {
    content: ""; position: absolute; inset: 0;
    background: repeating-linear-gradient(45deg, rgba(26,26,26,.04) 0 6px, transparent 6px 14px);
    transition: background 360ms var(--ease);
  }
  .ig-tile.placeholder .pl-inner {
    position: relative; z-index: 1;
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    font-family: var(--sans); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
    transform: translateY(0);
    transition: transform 360ms var(--ease), color 360ms var(--ease);
  }
  .ig-tile.placeholder .pl-inner svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.2; opacity: .55; transition: transform 360ms var(--ease), opacity 360ms var(--ease); }

  /* Mouse-in: efecto de preview en cualquier tile (placeholder o foto) */
  .ig-tile { transition: transform 360ms var(--ease); }
  .ig-tile::after {
    content: "Ver en Instagram →";
    position: absolute; left: 0; right: 0; bottom: 0;
    padding: 12px 14px;
    font-family: var(--sans); font-weight: 500;
    font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
    color: #fff;
    background: linear-gradient(to top, rgba(26,26,26,.85), rgba(26,26,26,0));
    z-index: 3;
    opacity: 0; transform: translateY(8px);
    transition: opacity 320ms var(--ease), transform 320ms var(--ease);
    pointer-events: none;
  }
  .ig-tile:hover::after { opacity: 1; transform: none; }
  .ig-tile:hover { transform: translateY(-2px); }
  .ig-tile.placeholder:hover {
    background: linear-gradient(160deg, var(--ink-90) 0%, #2a2622 100%);
    color: var(--bone-00);
  }
  .ig-tile.placeholder:hover::before {
    background: repeating-linear-gradient(45deg, rgba(255,255,255,.05) 0 6px, transparent 6px 14px);
  }
  .ig-tile.placeholder:hover .pl-inner { transform: translateY(-6px); color: var(--bone-00); }
  .ig-tile.placeholder:hover .pl-inner svg { opacity: 1; transform: scale(1.1); }
  .ig-tile.reel.placeholder:hover .play svg { opacity: 1; transform: scale(1.05); }

  /* ============ FAQ ============ */
  .faq-wrap { background: var(--bone-00); }
  .faq-list { border-top: 1px solid var(--bone-10); }
  .faq-item { border-bottom: 1px solid var(--bone-10); padding: 0 24px 0 4px; transition: background 320ms var(--ease), padding-left 320ms var(--ease); }
  @media (max-width: 720px) { .faq-item { padding-right: 16px; } }
  .faq-item:hover { background: var(--bone-00); padding-left: 12px; }
  .faq-item.is-open { background: var(--bone-00); padding-left: 12px; }

  .faq-trigger {
    width: 100%; text-align: left; cursor: pointer;
    background: none; border: none; padding: 0;
    color: var(--ink-90); font-family: inherit;
    display: grid;
    grid-template-columns: 64px 1fr 36px;
    column-gap: 32px;
    align-items: center;
  }
  @media (max-width: 720px) { .faq-trigger { grid-template-columns: 44px 1fr 32px; column-gap: 18px; } }
  .faq-num {
    font-family: var(--sans); font-weight: 500; font-size: 11px;
    letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--ink-40);
    padding: 32px 0;
    transition: color 320ms var(--ease);
  }
  .faq-q {
    font-family: var(--serif); font-weight: 400;
    font-size: clamp(20px, 2vw, 26px); line-height: 1.25;
    letter-spacing: -0.01em;
    color: var(--ink-90);
    padding: 28px 0;
    transition: color 280ms var(--ease);
  }
  .faq-icon {
    width: 32px; height: 32px; position: relative;
    align-self: center; justify-self: end;
    border: 1px solid var(--bone-20); border-radius: 50%;
    transition: border-color 320ms var(--ease), background 320ms var(--ease), transform 320ms var(--ease);
  }
  .faq-icon::before, .faq-icon::after {
    content: ''; position: absolute; background: var(--ink-60);
    top: 50%; left: 50%; transform: translate(-50%, -50%);
    transition: transform 320ms var(--ease), opacity 320ms var(--ease), background 280ms var(--ease);
  }
  .faq-icon::before { width: 12px; height: 1px; }
  .faq-icon::after { width: 1px; height: 12px; }

  .faq-item:hover .faq-num { color: var(--terra); }
  .faq-item:hover .faq-icon { border-color: var(--terra); transform: rotate(90deg); }
  .faq-item:hover .faq-icon::before, .faq-item:hover .faq-icon::after { background: var(--terra); }

  .faq-item.is-open .faq-num { color: var(--terra); }
  .faq-item.is-open .faq-icon { background: var(--terra); border-color: var(--terra); transform: rotate(0); }
  .faq-item.is-open .faq-icon::before { background: #fff; }
  .faq-item.is-open .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }

  .faq-body-wrap {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 480ms var(--ease);
    padding-left: calc(64px + 32px);
  }
  @media (max-width: 720px) { .faq-body-wrap { padding-left: calc(44px + 18px); } }
  .faq-body-wrap > .faq-body { overflow: hidden; min-height: 0; }
  .faq-item.is-open .faq-body-wrap { grid-template-rows: 1fr; }
  .faq-body {
    max-width: 60ch;
    color: var(--ink-60);
    font-size: 15px; line-height: 1.75;
  }
  .faq-item.is-open .faq-body { padding: 0 0 28px; transition: padding 320ms var(--ease) 80ms; }

  .gal-end-cta { margin-top: 72px; }
  @media (max-width: 720px) { .gal-end-cta { margin-top: 48px; } }
  .faq-cta {
    margin-top: 64px; padding: 40px 48px;
    background: var(--ink-90); color: var(--bone-00);
    display: flex; justify-content: space-between; align-items: center;
    gap: 32px; flex-wrap: wrap;
  }
  @media (max-width: 720px) { .faq-cta { padding: 32px 28px; } }
  .faq-cta-text { display: flex; flex-direction: column; gap: 6px; max-width: 38ch; }
  .faq-cta-text .k {
    font-family: var(--sans); font-weight: 500;
    font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
    color: rgba(255,255,255,.6);
  }
  .faq-cta-text .t {
    font-family: var(--serif); font-weight: 300;
    font-size: clamp(22px, 2.4vw, 30px); line-height: 1.2;
    letter-spacing: -0.01em;
  }
  .faq-cta-text .t em.acc { color: var(--bone-00) !important; opacity: 0.7; }
  .faq-cta-btn {
    background: var(--bone-00); border: 1px solid var(--bone-00);
    padding: 18px 28px; cursor: pointer;
    font-family: var(--sans); font-weight: 500;
    font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--ink-90); white-space: nowrap;
    display: inline-flex; align-items: center; gap: 12px;
    transition: background 280ms var(--ease), border-color 280ms var(--ease), color 280ms var(--ease);
  }
  .faq-cta-btn:hover { background: transparent; border-color: var(--bone-00); color: var(--bone-00); }
  .faq-cta-btn .arrow { transition: transform 320ms var(--ease); }
  .faq-cta-btn:hover .arrow { transform: translateX(4px); }

  /* ============ 07 · FORM (tarjeta de invitación sobre crema base) ============ */
  .form-wrap {
    background: var(--bone-00);
    color: var(--ink-90);
    padding: 128px var(--gutter);
    position: relative;
  }
  .form-inner {
    max-width: 980px;
    margin: 0 auto;
    padding: 88px 72px;
    background: #FFFFFF;
    border: 1px solid var(--bone-20);
    box-shadow: 0 30px 80px -40px rgba(26, 26, 26, 0.18);
    position: relative;
  }
  .form-inner::before {
    content: "";
    position: absolute;
    top: 14px; left: 14px; right: 14px; bottom: 14px;
    border: 1px solid var(--bone-10);
    pointer-events: none;
    z-index: 1;
  }
  .form-inner > * { position: relative; z-index: 2; }
  @media (max-width: 720px) {
    .form-wrap { padding: 80px 16px; }
    .form-inner { padding: 56px 28px; }
    .form-inner::before { top: 10px; left: 10px; right: 10px; bottom: 10px; }
  }
  /* form-head ahora usa .sec-head pattern */

  /* Revised, clearer form */
  form.request { display: flex; flex-direction: column; gap: 40px; }
  .fgroup { }
  .fgroup .fhead {
    display: flex; align-items: baseline; gap: 12px;
    margin-bottom: 18px;
    font-family: var(--sans); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--ink-40);
  }
  .fgroup .fhead .step {
    display: inline-flex; align-items: center; justify-content: center;
    width: 22px; height: 22px;
    border: 1px solid var(--ink-20);
    font-size: 10px; letter-spacing: 0;
    color: var(--ink-60);
  }
  .fgroup .fhead .title { color: var(--ink-90); letter-spacing: 0.18em; }
  .fgroup .fhint { color: var(--ink-60); font-size: 13px; margin: -8px 0 18px; letter-spacing: 0; text-transform: none; }
  .ftype-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
  @media (max-width: 720px) { .ftype-grid { grid-template-columns: repeat(2, 1fr); } }
  .ftype {
    cursor: pointer;
    padding: 18px 16px;
    border: 1px solid var(--bone-10);
    background: #fff;
    color: var(--ink-90);
    font-family: var(--serif); font-size: 20px; line-height: 1.1; font-weight: 400;
    text-align: left;
    transition: background 280ms var(--ease), border-color 280ms var(--ease), color 280ms var(--ease), box-shadow 280ms var(--ease), transform 280ms var(--ease);
    display: flex; flex-direction: column; gap: 8px;
    position: relative;
  }
  .ftype small { font-family: var(--sans); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-40); }
  .ftype:hover { border-color: var(--ink-90); }
  .ftype.on {
    background: #fff; color: var(--ink-90);
    border-color: var(--terra);
    box-shadow: inset 0 0 0 2px var(--terra), 0 8px 22px rgba(184, 84, 45, 0.18);
    transform: translateY(-2px);
  }
  .ftype.on small { color: var(--terra); }
  .ftype.on::after {
    content: ""; position: absolute; top: 12px; right: 12px;
    width: 10px; height: 10px; border-radius: 50%;
    background: var(--terra);
    box-shadow: 0 0 0 3px rgba(184, 84, 45, 0.18);
  }

  .fpair { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
  @media (max-width: 720px) { .fpair { grid-template-columns: 1fr; gap: 24px; } }
  .fld { display: flex; flex-direction: column; gap: 8px; }
  .fld label { font-size: 12px; color: var(--ink-60); letter-spacing: 0; text-transform: none; }
  .fld label .req { color: var(--terra); margin-left: 4px; }
  .fld input, .fld textarea, .fld select {
    font-family: var(--sans); font-size: 17px;
    background: var(--bone-05);
    border: 1px solid var(--bone-20);
    color: var(--ink-90);
    padding: 16px 18px;
    outline: none;
    transition: border-color 260ms var(--ease), background 260ms var(--ease), box-shadow 260ms var(--ease);
  }
  .fld input:hover, .fld textarea:hover, .fld select:hover { border-color: var(--ink-60); background: #fff; }
  .fld input::placeholder, .fld textarea::placeholder { color: var(--ink-40); }
  .fld input:focus, .fld textarea:focus, .fld select:focus { border-color: var(--terra); background: #fff; box-shadow: 0 0 0 3px rgba(184,84,45,.14); }
  .fld textarea { resize: vertical; min-height: 32px; }
  .fld .help { font-size: 12px; color: var(--ink-40); }

  .guests-control { display: flex; align-items: center; gap: 18px; padding: 8px 0; }
  .guests-control input[type="range"] {
    flex: 1;
    -webkit-appearance: none; appearance: none;
    background: transparent;
    border: none;
    padding: 0;
    margin: 0;
    height: 28px;
    cursor: pointer;
    outline: none;
    box-shadow: none;
  }
  .guests-control input[type="range"]:hover,
  .guests-control input[type="range"]:focus { background: transparent; box-shadow: none; }
  /* Track · WebKit */
  .guests-control input[type="range"]::-webkit-slider-runnable-track {
    height: 6px;
    background: linear-gradient(to right, var(--bone-20), var(--bone-10));
    border-radius: 999px;
    box-shadow: inset 0 1px 2px rgba(26, 26, 26, 0.08);
  }
  /* Track · Firefox */
  .guests-control input[type="range"]::-moz-range-track {
    height: 6px;
    background: var(--bone-10);
    border-radius: 999px;
    box-shadow: inset 0 1px 2px rgba(26, 26, 26, 0.08);
  }
  /* Thumb · WebKit */
  .guests-control input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none; appearance: none;
    width: 26px; height: 26px;
    background: var(--terra);
    border: 3px solid #FFFFFF;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(184, 84, 45, 0.35);
    margin-top: -10px;
    cursor: grab;
    transition: transform 200ms var(--ease), box-shadow 200ms var(--ease);
  }
  .guests-control input[type="range"]:hover::-webkit-slider-thumb {
    transform: scale(1.08);
    box-shadow: 0 4px 12px rgba(184, 84, 45, 0.4);
  }
  .guests-control input[type="range"]:active::-webkit-slider-thumb,
  .guests-control input[type="range"]:focus::-webkit-slider-thumb {
    cursor: grabbing;
    transform: scale(1.12);
    box-shadow: 0 4px 16px rgba(184, 84, 45, 0.5), 0 0 0 4px rgba(184, 84, 45, 0.18);
  }
  /* Thumb · Firefox */
  .guests-control input[type="range"]::-moz-range-thumb {
    width: 26px; height: 26px;
    background: var(--terra);
    border: 3px solid #FFFFFF;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(184, 84, 45, 0.35);
    cursor: grab;
    transition: transform 200ms var(--ease), box-shadow 200ms var(--ease);
  }
  .guests-control input[type="range"]:hover::-moz-range-thumb {
    transform: scale(1.08);
  }
  .guests-control input[type="range"]:active::-moz-range-thumb,
  .guests-control input[type="range"]:focus::-moz-range-thumb {
    cursor: grabbing;
    transform: scale(1.12);
    box-shadow: 0 4px 16px rgba(184, 84, 45, 0.5), 0 0 0 4px rgba(184, 84, 45, 0.18);
  }
  .guests-control .value { font-family: var(--serif); font-size: 32px; color: var(--ink-90); min-width: 4.5ch; white-space: nowrap; }
  .guests-control .value small { font-family: var(--sans); font-size: 12px; color: var(--ink-40); letter-spacing: 0.1em; margin-left: 6px; }

  .submit-bar {
    display: flex; justify-content: space-between; align-items: center;
    gap: 24px; flex-wrap: wrap;
    padding-top: 24px;
    border-top: 1px solid var(--bone-10);
  }
  .submit-bar .note { font-size: 12px; color: var(--ink-40); max-width: 44ch; }
  .submit-bar button[type="submit"] {
    font-family: var(--sans); font-weight: 500;
    font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase;
    background: var(--terra); color: #fff;
    border: 1px solid var(--terra);
    padding: 20px 36px;
    cursor: pointer;
    display: inline-flex; align-items: center; gap: 14px;
    transition: background 320ms var(--ease), color 320ms var(--ease), border-color 320ms var(--ease);
  }
  .submit-bar button[type="submit"]:hover { background: var(--terra-d); border-color: var(--terra-d); }
  .submit-bar button[type="submit"] .arrow { transition: transform 320ms var(--ease); }
  .submit-bar button[type="submit"]:hover .arrow { transform: translateX(4px); }

  /* Contacts strip under form */
  .contacts-strip { margin-top: 80px; padding-top: 48px; border-top: 1px solid var(--bone-10);
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px;
  }
  @media (max-width: 720px) { .contacts-strip { grid-template-columns: 1fr; gap: 32px; } }
  .contacts-strip .c .lbl { font-family: var(--sans); font-weight: 500; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-40); margin-bottom: 8px; }
  .contacts-strip .c .val { font-family: var(--serif); font-weight: 400; font-size: 22px; color: var(--ink-90); }
  .contacts-strip .c .val a { text-decoration: none; }

  /* ============ FOOTER ============ */
  footer.site { background: var(--bone-00); padding: 80px 0 40px; border-top: 1px solid var(--bone-10); }
  .foot-top {
    display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr; gap: 48px;
    max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter);
  }
  @media (max-width: 900px) { .foot-top { grid-template-columns: 1fr 1fr; gap: 40px; } }
  .foot-top h5 { font-family: var(--sans); font-weight: 500; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-40); margin: 0 0 20px; }
  .foot-top .brand img { height: 46px; margin-bottom: 20px; }
  .foot-top .brand p { max-width: 32ch; font-size: 14px; color: var(--ink-60); line-height: 1.65; margin: 0; }
  .foot-top ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
  .foot-top ul a { text-decoration: none; color: var(--ink-90); transition: color 280ms var(--ease); }
  .foot-top ul a:hover { color: var(--terra); }
  .foot-bot {
    max-width: var(--max); margin: 56px auto 0; padding: 24px var(--gutter) 0;
    border-top: 1px solid var(--bone-10);
    display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap;
    font-size: 12px; color: var(--ink-40);
  }
  .foot-bot .eco { display: flex; gap: 20px; flex-wrap: wrap; }
  .foot-bot .eco a { color: var(--ink-60); text-decoration: none; }
  .foot-bot .eco a:hover { color: var(--ink-90); }

  /* ============ FAB · contacto rápido ============ */
  .fab-wrap {
    position: fixed; bottom: 24px; right: 24px; z-index: 40;
    display: flex; flex-direction: column; align-items: flex-end; gap: 10px;
    opacity: 0; transform: translateY(16px); pointer-events: none;
    transition: opacity 380ms var(--ease), transform 380ms var(--ease);
  }
  .fab-wrap.show { opacity: 1; transform: none; pointer-events: auto; }
  @media (max-width: 600px) { .fab-wrap { bottom: 16px; right: 16px; gap: 8px; } }

  .fab-toggle {
    background: var(--ink-90); color: #fff;
    border: 1px solid var(--ink-90);
    padding: 14px 20px; cursor: pointer;
    font-family: var(--sans); font-weight: 500;
    font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
    display: inline-flex; align-items: center; gap: 12px;
    transition: background 280ms var(--ease), border-color 280ms var(--ease);
  }
  .fab-toggle:hover { background: var(--terra); border-color: var(--terra); }
  .fab-toggle .fab-icn {
    display: inline-flex; align-items: center; justify-content: center;
    width: 16px; height: 16px;
    transition: transform 320ms var(--ease);
  }
  .fab-toggle .fab-icn::before, .fab-toggle .fab-icn::after {
    content: ""; position: absolute; background: currentColor;
  }
  .fab-toggle .fab-icn { position: relative; }
  .fab-toggle .fab-icn::before { width: 14px; height: 1.5px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
  .fab-toggle .fab-icn::after { width: 1.5px; height: 14px; top: 50%; left: 50%; transform: translate(-50%, -50%); transition: transform 320ms var(--ease), opacity 320ms var(--ease); }
  .fab-toggle[aria-expanded="true"] .fab-icn::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
  @media (max-width: 600px) { .fab-toggle { padding: 12px 16px; font-size: 11px; } }

  .fab-menu {
    display: flex; flex-direction: column; align-items: stretch; gap: 8px;
    visibility: hidden;
    opacity: 0;
    transform: translateY(8px) scale(.96);
    transform-origin: bottom right;
    transition: opacity 260ms var(--ease), transform 260ms var(--ease), visibility 0s linear 260ms;
  }
  .fab-menu[aria-hidden="false"] {
    visibility: visible; opacity: 1;
    transform: none;
    transition: opacity 260ms var(--ease), transform 260ms var(--ease), visibility 0s;
  }

  .fab-action {
    background: #fff; color: var(--ink-90);
    border: 1px solid var(--bone-10);
    padding: 12px 16px; cursor: pointer;
    font-family: var(--sans); font-weight: 500;
    font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
    text-decoration: none;
    display: inline-flex; align-items: center; gap: 12px;
    white-space: nowrap;
    box-shadow: 0 8px 24px rgba(26,26,26,.06);
    transition: border-color 220ms var(--ease), color 220ms var(--ease), transform 220ms var(--ease);
  }
  .fab-action:hover { border-color: var(--terra); color: var(--terra); transform: translateX(-2px); }
  .fab-action .fab-ic {
    display: inline-flex; align-items: center; justify-content: center;
    width: 18px; height: 18px; flex-shrink: 0;
  }
  .fab-action .fab-ic svg { width: 18px; height: 18px; }
  .fab-action.fab-wa .fab-ic { color: #25D366; }
  .fab-action:hover.fab-wa .fab-ic { color: var(--terra); }

  /* ============ MODAL · VISITA ============ */
  .modal {
    position: fixed; inset: 0; z-index: 200;
    display: none; align-items: flex-start; justify-content: center;
    padding: 48px 24px;
    overflow-y: auto;
  }
  .modal[aria-hidden="false"] { display: flex; }
  .modal-backdrop { position: fixed; inset: 0; background: rgba(26,26,26,.72); backdrop-filter: blur(6px); cursor: pointer; }
  .modal-panel {
    position: relative; z-index: 1;
    background: var(--bone-00); width: min(560px, 100%);
    padding: 56px 48px 40px;
    border: 1px solid var(--bone-10);
    box-shadow: 0 30px 90px rgba(0,0,0,.18);
    margin: auto 0;
  }
  @media (max-width: 600px) { .modal-panel { padding: 40px 24px 28px; } }
  .modal-close {
    position: absolute; top: 16px; right: 16px;
    background: none; border: none; cursor: pointer;
    font-size: 22px; color: var(--ink-60);
    width: 32px; height: 32px; display: grid; place-items: center;
    transition: color .2s;
  }
  .modal-close:hover { color: var(--ink-90); }
  .modal-eb { font-family: var(--sans); font-weight: 500; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-40); margin-bottom: 16px; }
  .modal-panel h3 {
    font-family: var(--serif); font-weight: 300;
    font-size: clamp(28px, 3vw, 36px); line-height: 1.08;
    letter-spacing: -0.015em; margin: 0 0 12px; color: var(--ink-90);
  }
  .modal-lede { color: var(--ink-60); font-size: 15px; margin: 0 0 28px; line-height: 1.6; }

  .cal { margin-bottom: 28px; border-top: 1px solid var(--bone-10); padding-top: 24px; }
  .cal-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 16px; }
  .cal-nav {
    background: none; border: 1px solid var(--bone-10); color: var(--ink-90);
    width: 32px; height: 32px; cursor: pointer; font-size: 14px;
    transition: border-color .2s, background .2s;
  }
  .cal-nav:hover { border-color: var(--ink-90); background: var(--bone-05); }
  .cal-month { font-family: var(--serif); font-weight: 400; font-size: 18px; color: var(--ink-90); text-transform: capitalize; }
  .cal-dows {
    display: grid; grid-template-columns: repeat(7, 1fr); text-align: center;
    font-family: var(--sans); font-size: 10px; letter-spacing: 0.2em;
    color: var(--ink-40); margin-bottom: 8px;
  }
  .cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
  .cal-day {
    aspect-ratio: 1; display: grid; place-items: center;
    font-family: var(--sans); font-size: 14px; cursor: pointer;
    background: none; border: 1px solid transparent;
    color: var(--ink-90);
    transition: background .2s, border-color .2s, color .2s;
  }
  .cal-day:hover:not(:disabled) { background: var(--bone-05); border-color: var(--bone-10); }
  .cal-day:disabled { color: var(--ink-20); cursor: not-allowed; }
  .cal-day.empty { visibility: hidden; cursor: default; }
  .cal-day.on { background: var(--terra); color: #fff; border-color: var(--terra); }
  .cal-day.on:hover { background: var(--terra-d); border-color: var(--terra-d); }

  .visit-form {
    display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
    margin-bottom: 24px;
  }
  @media (max-width: 600px) { .visit-form { grid-template-columns: 1fr; } }
  .visit-form .fld:first-child { grid-column: 1 / -1; max-width: 200px; }
  .visit-form .fld { display: flex; flex-direction: column; gap: 6px; }
  .visit-form label { font-size: 12px; color: var(--ink-60); }
  .visit-form input, .visit-form select {
    font-family: var(--sans); font-size: 15px;
    padding: 12px 14px;
    border: 1px solid var(--bone-20); background: var(--bone-05); color: var(--ink-90);
    transition: border-color .2s, background .2s;
  }
  .visit-form input:focus, .visit-form select:focus {
    border-color: var(--terra); outline: none; background: #fff;
    box-shadow: 0 0 0 3px rgba(184,84,45,.14);
  }

  .modal-foot {
    display: flex; justify-content: space-between; align-items: center;
    gap: 16px; flex-wrap: wrap;
    padding-top: 20px; border-top: 1px solid var(--bone-10);
  }
  .modal-foot #calSelected {
    font-family: var(--sans); font-size: 12px;
    color: var(--ink-60);
  }
  .modal-actions { display: flex; gap: 10px; }
  .btn-ghost {
    background: none; border: 1px solid var(--bone-20);
    padding: 12px 20px; cursor: pointer;
    font-family: var(--sans); font-weight: 500;
    font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--ink-60);
    transition: border-color .2s, color .2s;
  }
  .btn-ghost:hover { border-color: var(--ink-90); color: var(--ink-90); }
  .btn-primary {
    background: var(--terra); border: 1px solid var(--terra);
    padding: 12px 22px; cursor: pointer;
    font-family: var(--sans); font-weight: 500;
    font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
    color: #fff;
    display: inline-flex; align-items: center; gap: 10px;
    transition: background .2s, border-color .2s;
  }
  .btn-primary:hover { background: var(--terra-d); border-color: var(--terra-d); }
  .btn-primary .arrow { transition: transform 320ms var(--ease); }
  .btn-primary:hover .arrow { transform: translateX(4px); }

  body.modal-open { overflow: hidden; }

  /* ============ LIGHTBOX · galería ============ */
  .lightbox {
    position: fixed; inset: 0; z-index: 400;
    display: none; flex-direction: column;
    background: rgba(10, 10, 10, 0.96);
    backdrop-filter: blur(8px);
  }
  .lightbox[aria-hidden="false"] { display: flex; animation: lbFadeIn 320ms var(--ease); }
  @keyframes lbFadeIn { from { opacity: 0; } to { opacity: 1; } }
  .lb-close, .lb-nav {
    position: absolute; z-index: 2;
    background: rgba(0,0,0,.4); border: 1px solid rgba(255,255,255,.25);
    color: #fff; cursor: pointer;
    width: 48px; height: 48px;
    display: grid; place-items: center;
    transition: background 220ms ease, border-color 220ms ease;
  }
  .lb-close:hover, .lb-nav:hover { background: var(--bone-00); border-color: var(--bone-00); color: var(--ink-90); }
  .lb-close { top: 24px; right: 24px; }
  .lb-nav { top: 50%; transform: translateY(-50%); }
  .lb-prev { left: 24px; }
  .lb-next { right: 24px; }
  .lb-close svg, .lb-nav svg { width: 18px; height: 18px; display: block; }
  .lb-stage {
    flex: 1 1 0;
    display: flex; align-items: center; justify-content: center;
    padding: 80px 96px 24px;
    overflow: hidden;
    min-height: 0;
  }
  .lb-img {
    width: auto; height: auto;
    max-width: 100%; max-height: 100%;
    object-fit: contain; user-select: none;
    box-shadow: 0 30px 80px rgba(0,0,0,.5);
    animation: lbImgIn 340ms var(--ease);
  }
  @keyframes lbImgIn { from { opacity: 0; transform: scale(.98); } to { opacity: 1; transform: none; } }
  .lb-foot {
    padding: 18px clamp(24px, 4vw, 56px) 24px;
    display: flex; justify-content: space-between; align-items: center;
    gap: 24px; flex-wrap: wrap;
    color: #fff;
    border-top: 1px solid rgba(255,255,255,.1);
  }
  .lb-info { display: flex; flex-direction: column; gap: 4px; }
  .lb-name { font-family: var(--serif); font-weight: 400; font-size: 18px; line-height: 1.2; }
  .lb-detail { font-family: var(--sans); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,.6); }
  .lb-counter { font-family: var(--sans); font-size: 12px; letter-spacing: 0.22em; color: rgba(255,255,255,.55); font-variant-numeric: tabular-nums; }
  @media (max-width: 720px) {
    .lb-close, .lb-nav { width: 40px; height: 40px; }
    .lb-prev { left: 12px; }
    .lb-next { right: 12px; }
    .lb-close { top: 12px; right: 12px; }
    .lb-stage { padding: 56px 12px 16px; }
  }
  /* Lightbox · modo single (planos): oculta nav y counter, permite scroll del plano */
  .lightbox.is-single .lb-prev,
  .lightbox.is-single .lb-next,
  .lightbox.is-single .lb-counter { display: none; }
  .lightbox.is-single .lb-stage {
    overflow: auto;
    cursor: zoom-in;
    align-items: flex-start;
    justify-content: center;
    padding: 80px 24px 24px;
  }
  .lightbox.is-single .lb-img {
    max-height: none;
    max-width: 100%;
    background: #fff;
  }
  /* Click sobre la imagen en single mode hace zoom: dobla el tamaño */
  .lightbox.is-single .lb-img.zoomed {
    max-width: 200%;
    cursor: zoom-out;
  }

  /* ============ MODO EDICIÓN ============ */
  .edit-banner {
    position: fixed; top: 0; left: 0; right: 0; z-index: 300;
    background: var(--terra); color: #fff;
    font-family: var(--sans); font-weight: 500;
    font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
    padding: 12px var(--gutter);
    display: none; justify-content: space-between; align-items: center; gap: 24px;
    flex-wrap: wrap;
  }
  body.edit-mode .edit-banner { display: flex; }
  body.edit-mode { padding-top: 42px; }
  .edit-banner .edit-actions { display: flex; gap: 8px; }
  .edit-banner button {
    background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.3);
    color: #fff; cursor: pointer;
    font: inherit; padding: 6px 12px;
    transition: background 220ms ease, border-color 220ms ease;
  }
  .edit-banner button:hover { background: rgba(255,255,255,.32); border-color: #fff; }
  .edit-banner kbd {
    background: rgba(255,255,255,.18); padding: 2px 6px; border-radius: 3px;
    font-family: var(--sans); font-size: 10px; letter-spacing: 0; text-transform: none;
  }

  body.edit-mode [data-editable] {
    cursor: text;
    outline: 1px dashed transparent;
    outline-offset: 6px;
    transition: outline-color 220ms ease, background 220ms ease;
  }
  body.edit-mode [data-editable]:hover { outline-color: rgba(184,84,45,.5); }
  body.edit-mode [data-editable]:focus {
    outline-color: var(--terra); background: rgba(184,84,45,.06);
  }

  .edit-export {
    position: fixed; inset: 0; z-index: 350;
    display: none; align-items: center; justify-content: center;
    padding: 32px; background: rgba(26,26,26,.72); backdrop-filter: blur(6px);
  }
  .edit-export[aria-hidden="false"] { display: flex; }
  .edit-export .ee-panel {
    background: var(--bone-00); width: min(720px, 100%);
    max-height: calc(100vh - 64px);
    padding: 32px;
    border: 1px solid var(--bone-10);
    display: flex; flex-direction: column; gap: 16px;
  }
  .edit-export h4 {
    font-family: var(--serif); font-weight: 300; font-size: 24px;
    margin: 0; color: var(--ink-90);
  }
  .edit-export p { color: var(--ink-60); font-size: 13px; margin: 0; }
  .edit-export textarea {
    width: 100%; min-height: 280px; max-height: 50vh;
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 13px; line-height: 1.55;
    background: var(--bone-05); border: 1px solid var(--bone-10);
    color: var(--ink-90); padding: 16px; resize: vertical;
  }
  .edit-export-actions { display: flex; justify-content: flex-end; gap: 8px; }
  .edit-export-actions button {
    background: var(--ink-90); color: #fff; border: 1px solid var(--ink-90);
    cursor: pointer; padding: 10px 20px;
    font-family: var(--sans); font-weight: 500;
    font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  }
  .edit-export-actions button.ghost { background: transparent; color: var(--ink-90); }
  .edit-export-actions button:hover { background: var(--terra); border-color: var(--terra); color: #fff; }

  /* ============ PRELOADER ============ */
  .preloader {
    position: fixed; inset: 0;
    z-index: 9999;
    background: var(--ink-90);
    color: var(--bone-00);
    display: flex;
    transform: translateY(0);
    transition: transform 900ms cubic-bezier(0.76, 0, 0.24, 1);
    will-change: transform;
  }
  .preloader.done { transform: translateY(-100%); }
  body.preloading { overflow: hidden; }
  body.preloading .nav,
  body.preloading .hero,
  body.preloading section,
  body.preloading footer { opacity: 0; }
  body.revealing .nav,
  body.revealing .hero,
  body.revealing section,
  body.revealing footer { opacity: 1; transition: opacity 600ms ease 200ms; }

  .pre-inner {
    position: relative;
    width: 100%;
    max-width: var(--max);
    margin: 0 auto;
    padding: 40px var(--gutter);
    display: grid;
    grid-template-rows: auto 1fr auto;
    min-height: 100vh;
  }
  .pre-top, .pre-bottom {
    display: flex; justify-content: space-between; align-items: center;
    gap: 24px;
  }
  .pre-eyebrow, .pre-meta, .pre-count {
    font-family: var(--sans); font-weight: 500;
    font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
    color: rgba(255,255,255,.55);
  }
  .pre-count { font-variant-numeric: tabular-nums; color: rgba(255,255,255,.72); }
  .pre-logo {
    display: flex; align-items: center; justify-content: center;
    opacity: 0;
    transform: translateY(12px);
    animation: preLogoIn 1200ms cubic-bezier(0.22, 1, 0.36, 1) 100ms forwards;
  }
  .pre-logo img {
    width: clamp(200px, 22vw, 320px);
    height: auto;
    display: block;
  }
  @keyframes preLogoIn {
    to { opacity: 1; transform: translateY(0); }
  }

  .pre-bar {
    position: relative;
    flex: 1; max-width: 360px;
    height: 1px;
    background: rgba(255,255,255,.18);
    overflow: hidden;
  }
  .pre-fill {
    position: absolute; inset: 0 auto 0 0;
    width: 0%;
    background: var(--bone-00);
    transition: width 220ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  @media (max-width: 720px) {
    .pre-bottom { flex-direction: column; align-items: flex-start; gap: 16px; }
    .pre-bar { width: 100%; max-width: none; }
  }

  @media (prefers-reduced-motion: reduce) {
    .preloader { transition: opacity 400ms ease; }
    .preloader.done { transform: none; opacity: 0; pointer-events: none; }
    .pre-logo { animation: none; opacity: 1; transform: none; }
  }

/* ============ Multi-page additions ============ */

/* Submenu dropdown desktop */
.nav .has-submenu { position: relative; }
.nav .submenu-trigger {
  background: transparent; border: 0; cursor: pointer;
  font-family: inherit; font-size: inherit; font-weight: inherit;
  letter-spacing: inherit; text-transform: inherit;
  color: inherit; padding: 0; padding-bottom: 3px;
  display: inline-flex; align-items: center; gap: 6px;
  position: relative;
}
.nav .submenu-trigger::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 100%;
  background: currentColor; transform: scaleX(0); transform-origin: right;
  transition: transform 420ms var(--ease);
}
.nav .has-submenu:hover .submenu-trigger::after { transform: scaleX(1); transform-origin: left; }
.nav .submenu-trigger .caret { font-size: 9px; transition: transform 280ms var(--ease); }
.nav .has-submenu:hover .submenu-trigger .caret,
.nav .has-submenu .submenu-trigger[aria-expanded="true"] .caret { transform: rotate(180deg); }
.nav .submenu {
  position: absolute; top: calc(100% + 14px); left: -20px;
  display: block !important;  /* override .nav ul flex */
  list-style: none; padding: 14px 0; margin: 0;
  background: var(--bone-00); border: 1px solid var(--bone-10); border-radius: 4px;
  min-width: 320px;
  font-size: 14px; letter-spacing: 0; text-transform: none;  /* reset herencia .nav ul */
  box-shadow: 0 24px 60px rgba(20, 17, 13, 0.10), 0 4px 12px rgba(20, 17, 13, 0.04);
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity 280ms var(--ease), transform 280ms var(--ease), visibility 0s 280ms;
  z-index: 60;
}
.nav .submenu::before {
  content: ""; position: absolute; top: -7px; left: 28px;
  width: 12px; height: 12px; background: var(--bone-00);
  border-top: 1px solid var(--bone-10); border-left: 1px solid var(--bone-10);
  transform: rotate(45deg);
}
.nav .has-submenu:hover .submenu,
.nav .has-submenu:focus-within .submenu,
.nav .has-submenu .submenu-trigger[aria-expanded="true"] + .submenu {
  opacity: 1; visibility: visible; transform: translateY(0);
  transition: opacity 280ms var(--ease), transform 280ms var(--ease), visibility 0s;
}
.nav .submenu li { margin: 0; }
.nav .submenu li a {
  display: flex; align-items: center; gap: 16px;
  padding: 14px 22px;
  text-decoration: none;
  font-family: var(--sans); font-size: 14px; font-weight: 400;
  letter-spacing: 0; text-transform: none;
  color: var(--ink-90);
  transition: background 280ms var(--ease), padding-left 280ms var(--ease);
}
.nav .submenu li a:hover { background: var(--bone-05); padding-left: 28px; }
.nav .submenu .submenu-ico {
  width: 38px; height: 38px; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--bone-10); border-radius: 50%;
  color: var(--ink-60); background: #fff;
  transition: border-color 320ms var(--ease), color 320ms var(--ease), background 320ms var(--ease);
}
.nav .submenu .submenu-ico svg { width: 18px; height: 18px; }
.nav .submenu li a:hover .submenu-ico {
  border-color: var(--terra); color: var(--terra);
}
.nav .submenu .submenu-txt { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.nav .submenu .submenu-name {
  font-family: var(--serif); font-size: 17px; font-weight: 400;
  letter-spacing: -0.01em; color: var(--ink-90); line-height: 1.1;
}
.nav .submenu .submenu-desc {
  font-family: var(--sans); font-size: 11px; font-weight: 400;
  letter-spacing: 0.04em; color: var(--ink-40); line-height: 1.3;
}
/* Override del underline animado heredado de .nav ul a */
.nav .submenu li a::after { display: none; }

/* Active state per page (driven by body[data-active="..."]) */
body[data-active="espacios"] .nav a[data-key="espacios"],
body[data-active="bodas"] .nav a[data-key="bodas"],
body[data-active="empresa"] .nav a[data-key="empresa"],
body[data-active="privados"] .nav a[data-key="privados"],
body[data-active="gastronomia"] .nav a[data-key="gastronomia"],
body[data-active="galeria"] .nav a[data-key="galeria"],
body[data-active="contacto"] .nav a[data-key="contacto"],
body[data-active="preguntas"] .nav a[data-key="preguntas"] {
  color: var(--terra);
}
body[data-active="bodas"] .nav .submenu-trigger[data-key="eventos"],
body[data-active="empresa"] .nav .submenu-trigger[data-key="eventos"],
body[data-active="privados"] .nav .submenu-trigger[data-key="eventos"] {
  color: var(--terra);
}
/* En hero (nav blanco), el activo va sutil para no romper sobre la imagen */
.nav:not(.scrolled) [data-active] a[data-key],
body[data-active] .nav:not(.scrolled) a[class~="data-key"] { color: rgba(255,255,255,1); }

/* Mobile menu group label */
.nav-mobile .mobile-group { padding: 8px 0; }
.nav-mobile .mobile-group-label {
  display: block; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-40); padding: 12px 0 6px;
}
.nav-mobile .mobile-group ul {
  list-style: none; padding: 0 0 0 16px; margin: 0;
}
.nav-mobile .mobile-group ul li a {
  font-size: 22px; padding: 10px 0;
}

/* ============ TIPOLOGÍA · BODAS · capítulos ============ */
body[data-active="bodas"] .capitulos-wrap {
  padding: 96px 0 96px;
  background: var(--bone-00);
  position: relative;
}
@media (max-width: 720px) { body[data-active="bodas"] .capitulos-wrap { padding: 64px 0 64px; } }

/* Indicador de progreso lateral · sticky · solo desktop · con fade */
.bodas-progress {
  position: sticky;
  top: 50%;
  transform: translateY(-50%);
  float: left;
  margin-left: 32px;
  height: 0;
  z-index: 20;
  display: flex; flex-direction: column; gap: 22px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 480ms var(--ease);
}
.bodas-progress.is-visible {
  opacity: 1;
  pointer-events: auto;
}
@media (max-width: 1100px) { .bodas-progress { margin-left: 16px; } }
@media (max-width: 900px)  { .bodas-progress { display: none; } }

.bodas-progress .progress-dot {
  display: flex; flex-direction: column; align-items: flex-start; gap: 2px;
  font-family: var(--sans); font-size: 9px; letter-spacing: 0.18em;
  color: var(--ink-40); text-decoration: none;
  padding-left: 22px; position: relative;
  transition: color 320ms var(--ease);
}
.bodas-progress .progress-dot .rom {
  font-family: var(--serif); font-size: 16px; font-weight: 300;
  letter-spacing: 0; line-height: 1;
}
.bodas-progress .progress-dot .hour {
  font-size: 9px; color: var(--ink-40); transition: color 320ms var(--ease);
}
.bodas-progress .progress-dot::before {
  content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 8px; height: 1px; background: var(--ink-40);
  transition: background 320ms var(--ease), width 320ms var(--ease);
}
.bodas-progress .progress-dot.is-active { color: var(--terra); }
.bodas-progress .progress-dot.is-active .rom,
.bodas-progress .progress-dot.is-active .hour { color: var(--terra); }
.bodas-progress .progress-dot.is-active::before { background: var(--terra); width: 18px; }
.bodas-progress .progress-dot:hover { color: var(--ink-90); }
.bodas-progress .progress-dot:hover .rom { color: var(--ink-90); }

body[data-active="bodas"] .capitulos-wrap .sec-head { margin-bottom: 64px; }

.capitulo {
  display: grid;
  grid-template-columns: 100px 1fr 380px;
  gap: 56px;
  align-items: start;
  padding: 64px 0;
  border-top: 1px solid var(--bone-10);
}
.capitulo:last-of-type { border-bottom: 1px solid var(--bone-10); }

.capitulo.reverse { grid-template-columns: 380px 1fr 100px; }
.capitulo.reverse .cap-numeral { order: 3; text-align: left; }
.capitulo.reverse .cap-content { order: 2; padding-right: 32px; padding-left: 0; }
.capitulo.reverse .cap-photo { order: 1; }

@media (max-width: 900px) {
  .capitulo, .capitulo.reverse {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 48px 0;
  }
  /* En mobile el orden es siempre: numeral → texto → foto, sin importar reverse.
     Necesitamos misma especificidad que las reglas desktop para sobrescribir order. */
  .capitulo.reverse .cap-numeral { order: 0; text-align: left; }
  .capitulo.reverse .cap-content { order: 0; padding-right: 0; padding-left: 0; }
  .capitulo.reverse .cap-photo { order: 0; }
  .capitulo .cap-content { padding-left: 0; }
}

.cap-numeral {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(64px, 8vw, 112px); line-height: 1;
  color: var(--terra);
  text-align: right;
  letter-spacing: -0.02em;
  font-feature-settings: "smcp", "kern";
}
@media (max-width: 900px) { .cap-numeral { text-align: left; font-size: 64px; } }

.cap-content { padding-top: 14px; padding-left: 8px; }

.cap-title {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(28px, 3vw, 38px); line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--ink-90);
  margin: 0 0 10px;
}

.cap-meta {
  font-family: var(--sans); font-weight: 500;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-40);
  margin-bottom: 24px;
}

.cap-text {
  font-family: var(--serif); font-weight: 300;
  font-size: 19px; line-height: 1.65;
  color: var(--ink-90);
  max-width: 52ch;
  margin: 0;
}
@media (max-width: 720px) { .cap-text { font-size: 17px; } }

.cap-photo { margin: 0; }
.cap-photo .ph {
  width: 100%;
  background: var(--bone-05);
  border: 1px solid var(--bone-10);
}

.capitulos-epilogue {
  margin: 96px auto 0;
  max-width: 56ch;
  text-align: center;
  padding-top: 56px;
  position: relative;
}
.capitulos-epilogue::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 40px; height: 1px;
  background: var(--bone-20);
}
.capitulos-epilogue p {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(19px, 2vw, 22px);
  line-height: 1.55;
  color: var(--ink-60);
  margin: 0;
  letter-spacing: -0.003em;
}
.capitulos-epilogue p strong {
  color: var(--ink-90);
  font-weight: 500;
}
.capitulos-epilogue p em.acc {
  color: var(--terra);
}
@media (max-width: 720px) {
  .capitulos-epilogue { margin-top: 64px; padding-top: 40px; }
}

/* ============ TIPOLOGÍA · BODAS · lo que va dentro ============ */
body[data-active="bodas"] .cubierto-wrap { padding: 96px 0; background: var(--bone-05); }

.cubierto-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
@media (max-width: 900px) { .cubierto-grid { grid-template-columns: 1fr; gap: 16px; } }

.cubierto-card {
  background: var(--bone-00);
  border: 1px solid var(--bone-10);
  padding: 40px 32px;
  display: flex; flex-direction: column; gap: 16px;
  transition: border-color 320ms var(--ease), background 320ms var(--ease);
}
.cubierto-card:hover { border-color: var(--ink-90); background: #fff; }

.cub-icon {
  width: 48px; height: 48px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--ink-90);
  color: var(--ink-90);
  margin-bottom: 8px;
}
.cub-icon svg { width: 22px; height: 22px; }
.cubierto-card:hover .cub-icon { color: var(--terra); border-color: var(--terra); }

.cubierto-card h3 {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(22px, 2.4vw, 28px); line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--ink-90); margin: 0;
}
.cubierto-card p {
  font-family: var(--sans); font-size: 15px; line-height: 1.7;
  color: var(--ink-60); margin: 0;
}

/* ============ TESTIMONIO ============ */
.testimonio {
  margin: 72px auto 0;
  max-width: 720px;
  text-align: center;
  padding: 36px 24px;
  border-top: 1px solid var(--bone-10);
  border-bottom: 1px solid var(--bone-10);
}

/* En bodas, comprimir el padding bottom del bloque gallery para que no quede
   mucho espacio entre el testimonio y la siguiente sección */
body[data-active="bodas"] .gallery-wrap { padding: 96px 0 56px; }
@media (max-width: 720px) { body[data-active="bodas"] .gallery-wrap { padding: 64px 0 40px; } }
.testimonio p {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(20px, 2.4vw, 26px); line-height: 1.4;
  color: var(--ink-90); margin: 0 0 20px;
  letter-spacing: -0.01em;
}
.testimonio footer {
  font-family: var(--sans); font-weight: 500;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-40);
}

/* ============ VISITA · CTA FINAL ============ */
.visita-wrap { padding: 0 0 128px; background: var(--bone-05); }
@media (max-width: 720px) { .visita-wrap { padding: 0 0 80px; } }

.visita-card {
  background: var(--ink-90);
  color: var(--bone-00);
  padding: 80px 64px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
  border-radius: 4px;
}
@media (max-width: 900px) {
  .visita-card { grid-template-columns: 1fr; gap: 36px; padding: 56px 32px; }
}
@media (max-width: 540px) { .visita-card { padding: 40px 24px; } }

.visita-card .num {
  font-family: var(--sans); font-weight: 500;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.55); margin-bottom: 18px;
}

.visita-card h2 {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(28px, 3.6vw, 44px); line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--bone-00); margin: 0 0 18px;
}
.visita-card h2 em { font-style: normal; color: rgba(255,255,255,0.55); }

.visita-card p {
  font-family: var(--sans); font-size: 15px; line-height: 1.7;
  color: rgba(255,255,255,0.78); margin: 0;
  max-width: 50ch;
}

.visita-actions { display: flex; flex-direction: column; gap: 18px; align-items: flex-start; }

.visita-cta-primary {
  background: var(--bone-00); color: var(--ink-90);
  border: 1px solid var(--bone-00);
  padding: 18px 28px;
  font-family: var(--sans); font-weight: 500;
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  cursor: pointer; display: inline-flex; align-items: center; gap: 12px;
  transition: background 280ms var(--ease), color 280ms var(--ease), border-color 280ms var(--ease);
}
.visita-cta-primary:hover {
  background: transparent; color: var(--bone-00); border-color: var(--bone-00);
}

.visita-cta-secondary, .visita-cta-tertiary {
  font-family: var(--sans); font-size: 13px; letter-spacing: 0.04em;
  color: rgba(255,255,255,0.78); text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 4px;
  transition: color 280ms var(--ease), border-color 280ms var(--ease);
}
.visita-cta-secondary:hover, .visita-cta-tertiary:hover {
  color: var(--bone-00); border-color: var(--bone-00);
}

/* ============ VISITA · checks list dentro del card oscuro ============ */
.visita-checks {
  list-style: none; padding: 0; margin: 24px 0 0;
  display: flex; flex-direction: column; gap: 8px;
  font-family: var(--sans); font-size: 14px; line-height: 1.5;
  color: rgba(255,255,255,0.7);
}
.visita-checks li { padding-left: 18px; position: relative; }
.visita-checks li::before {
  content: ""; position: absolute; left: 0; top: 9px;
  width: 8px; height: 1px; background: var(--bone-00);
}

/* ============ VISITA · FORM (sobre fondo oscuro ink-90) ============ */
.visita-form {
  display: grid; gap: 14px;
  font-family: var(--sans);
}
.visita-form .bot-field { display: none; }
.visita-form .fld { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.visita-form .fld label {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.6); font-weight: 500;
}
.visita-form .fld label .opt {
  text-transform: none; letter-spacing: 0.02em; color: rgba(255,255,255,0.4);
  font-weight: 400; margin-left: 4px;
}
.visita-form .fld input,
.visita-form .fld select,
.visita-form .fld textarea {
  font-family: var(--sans); font-size: 15px;
  color: var(--bone-00);
  padding: 14px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.18);
  outline: none;
  transition: border-color 280ms var(--ease), background 280ms var(--ease);
}
.visita-form .fld input::placeholder,
.visita-form .fld textarea::placeholder { color: rgba(255,255,255,0.4); }
.visita-form .fld input:focus,
.visita-form .fld select:focus,
.visita-form .fld textarea:focus {
  border-color: var(--bone-00); background: rgba(255,255,255,0.08);
}
.visita-form .fld select { cursor: pointer; appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%23F8F4ED' stroke-width='1.4' fill='none'/></svg>"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.visita-form .fld select option { background: #1a1a1a; color: #F8F4ED; }
.visita-form .fld textarea { resize: vertical; min-height: 80px; line-height: 1.5; }
.visita-form .fld-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 540px) { .visita-form .fld-row { grid-template-columns: 1fr; } }

.visita-form-submit {
  margin-top: 10px;
  padding: 16px 28px;
  background: var(--bone-00); color: var(--ink-90);
  border: 1px solid var(--bone-00);
  font-family: var(--sans); font-weight: 500;
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  transition: background 280ms var(--ease), color 280ms var(--ease);
}
.visita-form-submit:hover { background: transparent; color: var(--bone-00); }
.visita-form-submit .arrow { transition: transform 320ms var(--ease); }
.visita-form-submit:hover .arrow { transform: translateX(4px); }

/* Mensaje de éxito al enviar */
.visita-success {
  background: var(--ink-90); color: var(--bone-00);
  padding: 80px 64px; border-radius: 4px;
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(22px, 2.4vw, 32px); line-height: 1.3;
  text-align: center;
}
.visita-success em { font-style: normal; color: rgba(255,255,255,0.55); }
.visita-success .ck { display: inline-block; width: 8px; height: 8px; background: var(--bone-00); border-radius: 50%; margin-right: 12px; vertical-align: middle; }

/* ============ VISITA · fallback (WhatsApp / mail / tel) ============ */
.visita-fallback {
  margin-top: 28px; padding: 20px 24px;
  display: flex; flex-wrap: wrap; gap: 12px 28px; align-items: center;
  font-family: var(--sans); font-size: 13px; color: var(--ink-60);
}
.visita-fallback .fb-label {
  letter-spacing: 0.04em; color: var(--ink-60);
}
.visita-fallback-links { display: flex; flex-wrap: wrap; gap: 10px 24px; }
.visita-fallback-links a {
  color: var(--ink-90); text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px;
  border-bottom: 1px solid var(--bone-10);
  padding-bottom: 2px;
  transition: color 280ms var(--ease), border-color 280ms var(--ease);
}
.visita-fallback-links a:hover { color: var(--terra); border-color: var(--terra); }
.visita-fallback-links .link-wa svg { color: #25D366; }
.visita-fallback-links a.link-wa:hover svg { color: var(--terra); }

/* ============ ANTES / DURANTE · slider before-after ============ */
body[data-active="bodas"] .antes-durante-wrap { padding: 96px 0 96px; background: var(--bone-05); }
@media (max-width: 720px) { body[data-active="bodas"] .antes-durante-wrap { padding: 64px 0 64px; } }

body[data-active="bodas"] .antes-durante-wrap .sec-head { margin-bottom: 48px; }

.ba-slider {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  aspect-ratio: 16/9;
  overflow: hidden;
  user-select: none;
  cursor: ew-resize;
  background: var(--bone-10);
  box-shadow: 0 24px 60px rgba(20, 17, 13, 0.10), 0 4px 12px rgba(20, 17, 13, 0.04);
  border-radius: 2px;
}
@media (max-width: 720px) { .ba-slider { aspect-ratio: 4/3; margin: 0 16px; } }

.ba-pane { position: absolute; inset: 0; overflow: hidden; }
.ba-pane img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
.ba-after { z-index: 1; }
.ba-before {
  z-index: 2;
  width: 50%;
  /* JS update via clip-path or width */
}
.ba-before img {
  width: 200vw;  /* compensar el clip si usamos width */
  max-width: calc(100vw - 2 * var(--gutter));
}
.ba-tag {
  position: absolute; top: 24px;
  font-family: var(--sans); font-size: 10px; font-weight: 500;
  letter-spacing: 0.28em; text-transform: uppercase;
  padding: 8px 14px;
  background: rgba(20,17,13,0.7); color: var(--bone-00);
  backdrop-filter: blur(6px);
  z-index: 4;
}
.ba-tag-before { left: 24px; }
.ba-tag-after { right: 24px; }

/* Range input solo para accesibilidad (keyboard). No visible. Tab + flechas funcionan. */
.ba-range {
  position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px;
  margin: 0; padding: 0;
  background: transparent; border: 0;
  appearance: none; -webkit-appearance: none;
  z-index: 1;
  opacity: 0;
  pointer-events: none;
}
.ba-range:focus-visible {
  outline: 2px solid var(--bone-00);
  outline-offset: 4px;
}
.ba-slider { touch-action: none; }
.ba-slider.is-dragging .ba-handle .ba-handle-knob { transform: scale(1.1); transition: transform 180ms var(--ease); }

.ba-handle {
  position: absolute; top: 0; bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--bone-00);
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 3;
  display: flex; flex-direction: column; align-items: center;
  box-shadow: 0 0 24px rgba(20,17,13,0.2);
}
.ba-handle .ba-handle-line { flex: 1; width: 2px; background: var(--bone-00); }
.ba-handle .ba-handle-knob {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--bone-00);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-90);
  box-shadow: 0 8px 24px rgba(20,17,13,0.18);
  flex-shrink: 0;
}
.ba-handle .ba-handle-knob svg { width: 22px; height: 22px; }
@media (max-width: 720px) {
  .ba-handle .ba-handle-knob { width: 44px; height: 44px; }
  .ba-handle .ba-handle-knob svg { width: 18px; height: 18px; }
}

.ba-hint {
  text-align: center; margin: 24px 0 0;
  font-family: var(--sans); font-size: 11px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--ink-40);
}

@media (max-width: 720px) {
  .ba-tag { top: 14px; font-size: 9px; padding: 6px 10px; letter-spacing: 0.22em; }
  .ba-tag-before { left: 14px; }
  .ba-tag-after { right: 14px; }
}

/* ============ Form errores de validación (dentro del visita-form oscuro) ============ */
.visita-form .fld input.has-error,
.visita-form .fld select.has-error,
.visita-form .fld textarea.has-error {
  border-color: #E07B5C;
  background: rgba(224, 123, 92, 0.06);
}
.visita-form .fld .fld-error {
  display: block; margin-top: 6px;
  font-family: var(--sans); font-size: 12px; line-height: 1.4;
  color: #FFB39A;
  letter-spacing: 0.02em; text-transform: none;
}

/* ============ CONTACTO · página dedicada ============ */
body[data-active="contacto"] .hero { min-height: 60vh; }
body[data-active="contacto"] .hero-meta {
  font-family: var(--sans); font-size: 12px; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(255,255,255,0.55);
  margin: 0 0 24px;
}

/* ============ /CONTACTO · bloques específicos ============ */

/* Honeypot oculto + opciones secundarias */
body[data-active="contacto"] .bot-field { display: none; }
body[data-active="contacto"] .visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
body[data-active="contacto"] .opt,
body[data-active="contacto"] .opt-meta {
  font-family: var(--sans); font-size: 12px; font-weight: 400;
  letter-spacing: 0.02em; text-transform: none;
  color: var(--ink-40); margin-left: 6px;
}

/* Encontrarnos · foto + info */
.encontrar-grid {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 80px; margin-top: 8px;
  align-items: start;
}
@media (max-width: 900px) {
  .encontrar-grid { grid-template-columns: 1fr; gap: 48px; }
}

.encontrar-photo { margin: 0; }
.encontrar-photo img {
  width: 100%; height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

.encontrar-info {
  display: flex; flex-direction: column;
  gap: 36px;
}
.enc-block {
  display: flex; flex-direction: column; gap: 12px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--bone-10);
}
.enc-block:last-child { border-bottom: none; padding-bottom: 0; }
.enc-label {
  font-family: var(--sans); font-weight: 500;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-40);
}
.enc-block p {
  font-family: var(--sans); font-size: 16px; line-height: 1.65;
  color: var(--ink-90); margin: 0;
}
.enc-block ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 8px;
}
.enc-block ul li {
  font-family: var(--sans); font-size: 15px; line-height: 1.55;
  color: var(--ink-90);
  padding-left: 20px; position: relative;
}
.enc-block ul li::before {
  content: ""; position: absolute; left: 4px; top: 10px;
  width: 5px; height: 5px;
  background: var(--terra); border-radius: 50%;
}

/* Cómo localizarnos · grid de canales (sin columna izquierda) */
.intro-contacto { grid-template-columns: 1fr; gap: 0; }
.intro-contacto dl {
  grid-template-columns: repeat(4, 1fr);
  gap: 32px 40px;
}
@media (max-width: 900px) {
  .intro-contacto dl { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}
@media (max-width: 540px) {
  .intro-contacto dl { grid-template-columns: 1fr; gap: 28px; }
}

/* Estados de error y feedback de éxito (compartidos con form de la home) */
.fld input.has-error,
.fld select.has-error,
.fld textarea.has-error {
  border-color: #C04D26;
  background: rgba(192, 77, 38, 0.04);
}
.fld .fld-error {
  display: block; margin-top: 6px;
  font-family: var(--sans); font-size: 12px; line-height: 1.4;
  color: #C04D26; letter-spacing: 0.02em; text-transform: none;
}
.contacto-success {
  background: var(--ink-90); color: var(--bone-00);
  padding: 56px 40px;
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(20px, 2.4vw, 28px); line-height: 1.4;
  text-align: center;
}
.contacto-success em { font-style: normal; color: rgba(255,255,255,0.55); }
.contacto-success .ck {
  display: inline-block; width: 8px; height: 8px;
  background: var(--bone-00); border-radius: 50%;
  margin-right: 12px; vertical-align: middle;
}


/* ================================================================
   /ESPACIOS · página de salones
   ================================================================ */

/* Hero · usa la imagen exterior como fondo */
.hero-espacios .bg-fallback {
  background: #1A1A1A url('assets/photo-exterior.jpg') center/cover no-repeat;
  filter: brightness(0.55);
}
body[data-active="espacios"] .hero { min-height: 70vh; }

/* Intro · misma columna que la home, sin override grande */
.intro-espacios { /* hereda .intro */ }

/* ============ Salones · sección ============ */
.salones-wrap { padding: 32px 0 96px; }

.salones-wrap .salon {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 80px 80px;
  align-items: center;
  margin-top: 96px;
}
.salones-wrap .salon:first-of-type { margin-top: 64px; }
.salones-wrap .salon .salon-photo { order: 1; }
.salones-wrap .salon .salon-info { order: 2; }
.salones-wrap .salon .salon-plano { order: 3; }
.salones-wrap .salon .salon-data { order: 4; }
.salones-wrap .salon.reverse { grid-template-columns: 1fr 1.15fr; }
.salones-wrap .salon.reverse .salon-photo { order: 2; }
.salones-wrap .salon.reverse .salon-info { order: 1; }

@media (max-width: 900px) {
  .salones-wrap .salon,
  .salones-wrap .salon.reverse {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 72px;
  }
  .salones-wrap .salon.reverse .salon-photo { order: 0; }
  .salones-wrap .salon.reverse .salon-info { order: 0; }
}

.salon-photo { margin: 0; }
.salon-photo img {
  width: 100%; height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

.salon-info {
  display: flex; flex-direction: column;
  gap: 16px;
  padding: 8px 0;
}
.salon-num {
  font-family: var(--sans); font-weight: 500;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-40);
}
.salon-name {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.0;
  letter-spacing: -0.01em;
  color: var(--ink-90);
  margin: 0;
}
.salon-kicker {
  font-family: var(--serif); font-weight: 400; font-style: normal;
  font-size: 20px; line-height: 1.3;
  color: var(--terra);
  margin: 0;
}
.salon-desc {
  font-family: var(--sans);
  font-size: 16px; line-height: 1.65;
  color: var(--ink-60);
  max-width: 50ch;
  margin: 8px 0 16px;
}
.salon-desc strong { color: var(--ink-90); font-weight: 500; }

.salon-data {
  grid-column: 1 / -1;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px 32px;
  padding-top: 32px;
}
@media (max-width: 540px) {
  .salon-data { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
.salon-data > div { display: flex; flex-direction: column; gap: 4px; }
.salon-data dt {
  font-family: var(--sans); font-weight: 500;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-40);
  margin: 0;
}
.salon-data dd {
  font-family: var(--serif); font-weight: 400;
  font-size: 24px; line-height: 1.1;
  color: var(--ink-90);
  margin: 0;
}
.salon-data dd small {
  display: block;
  font-family: var(--sans); font-size: 11px;
  color: var(--ink-40); letter-spacing: 0;
  text-transform: none; font-weight: 400;
  margin-top: 2px;
}

/* ============ Toggle "Ver plano técnico" ============ */
.salon-plano-toggle {
  margin-top: 24px;
  align-self: flex-start;
  background: transparent;
  border: none;
  padding: 12px 0;
  cursor: pointer;
  font-family: var(--sans); font-weight: 500;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-60);
  display: inline-flex; align-items: center; gap: 14px;
  border-bottom: 1px solid var(--bone-20);
  transition: color 320ms var(--ease), border-color 320ms var(--ease), gap 320ms var(--ease);
}
.salon-plano-toggle:hover { color: var(--terra); border-bottom-color: var(--terra); gap: 18px; }
.salon-plano-toggle .plano-label {
  display: inline-block;
  transition: opacity 220ms var(--ease);
}
.salon-plano-toggle.is-changing .plano-label { opacity: 0; }
.salon-plano-toggle .plano-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  color: inherit;
  transition: transform 520ms cubic-bezier(0.34, 1.4, 0.64, 1),
              background 320ms var(--ease),
              color 320ms var(--ease),
              border-color 320ms var(--ease);
}
.salon-plano-toggle .plano-icon svg {
  width: 10px; height: 10px; display: block;
  transition: transform 320ms var(--ease);
}
.salon-plano-toggle:hover .plano-icon {
  background: var(--terra);
  color: #fff;
  border-color: var(--terra);
}
.salon-plano-toggle[aria-expanded="true"] .plano-icon { transform: rotate(135deg); }

/* Plano expandible · simple show/hide con fade */
.salon-plano {
  grid-column: 1 / -1;
  margin-top: 32px;
  animation: planoFadeIn 380ms var(--ease) both;
}
.salon-plano[hidden] { display: none; }
@keyframes planoFadeIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}
.salon-plano-inner {
  padding: 32px;
  background: var(--bone-05);
  border: 1px solid var(--bone-10);
}
.salon-plano-zoom {
  display: block;
  position: relative;
  cursor: zoom-in;
  background: #fff;
  border: 1px solid var(--bone-10);
  overflow: hidden;
}
.salon-plano-zoom img { transition: transform 380ms var(--ease); }
.salon-plano-zoom:hover img { transform: scale(1.02); }
.salon-plano-zoom-hint {
  position: absolute;
  top: 14px; right: 14px;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans); font-weight: 500;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: #fff;
  background: rgba(26, 26, 26, 0.85);
  padding: 8px 14px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  pointer-events: none;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 280ms var(--ease), transform 280ms var(--ease);
}
.salon-plano-zoom:hover .salon-plano-zoom-hint,
.salon-plano-zoom:focus-visible .salon-plano-zoom-hint {
  opacity: 1; transform: translateY(0);
}
.salon-plano-zoom-hint svg { width: 12px; height: 12px; }
.salon-plano-inner img {
  width: 100%; height: auto;
  display: block;
  background: #fff;
}
.plano-credit {
  font-family: var(--sans); font-weight: 500;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-40);
  margin: 20px 0 0;
  text-align: center;
}
@media (max-width: 720px) {
  .salon-plano-inner { padding: 16px; margin-top: 24px; }
}

/* ============ Terrazas · grid 1 grande + 2 pequeñas ============ */
.terrazas-wrap { padding: 96px 0; }
.terrazas-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 24px;
  margin-top: 56px;
}
.terraza-tile { margin: 0; position: relative; }
.terraza-tile-large {
  grid-row: span 2;
}
.terraza-tile img {
  width: 100%; height: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.terraza-tile-large img { aspect-ratio: auto; height: 100%; min-height: 480px; }
.terraza-tile figcaption {
  position: absolute; left: 16px; bottom: 16px;
  font-family: var(--sans); font-weight: 500;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: #fff;
  background: rgba(26, 26, 26, 0.75);
  padding: 8px 14px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
@media (max-width: 720px) {
  .terrazas-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .terraza-tile-large { grid-row: auto; }
  .terraza-tile-large img { min-height: 0; aspect-ratio: 4/3; }
}

/* ============ CTA visita final ============ */
.salones-cta-wrap { padding: 0 0 128px; }

/* ============ Scroll-spy · nav one-page ============ */
.nav-links a.nav-spy { position: relative; }
.nav-links a.nav-spy.is-current::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -5px;
  height: 1px; background: currentColor;
  transform-origin: left center;
  animation: spyIn 260ms var(--ease);
}
@keyframes spyIn { from { opacity: 0; transform: scaleX(.4); } to { opacity: 1; transform: scaleX(1); } }
.nav-mobile a.is-current { color: var(--terra); }

/* ============ Logo definitivo SVG · preloader (blanco sobre oscuro) ============ */
.pre-logo .pre-logo-svg { filter: brightness(0) invert(1); }

/* ============ Secciones capadas temporalmente (reactivar quitando los ids) ============ */
#instagram, #faq { display: none; }
