/* ==========================================================================
   Nápoles Bar y Restaurante — styles.css
   «La taberna azul de Canillas · casa de Estrella Galicia»
   Paleta: navy taberna (dominante) + crema hueso + latón + Estrella Galicia rojo + ladrillo.
   Tipografía: Domine (display, serif recia) + Instrument Sans (texto).
   Motivo: AZULEJO español (cenefas que se colocan) · Motion: resplandor de tungsteno + tile lay-in.
   ========================================================================== */

:root {
  --navy:        #16233B;   /* superficie base dominante — el azul del aviso */
  --navy-deep:   #0F1A2E;
  --navy-panel:  #1E2F4D;   /* bandas y tarjetas sobre el navy */
  --navy-line:   #2A3E60;
  --cream:       #F2E7D2;   /* texto / hueso cálido (no blanco puro) */
  --cream-2:     #FBF4E6;
  --cream-soft:  #C9C0AE;   /* texto secundario sobre navy */
  --brass:       #C9A24B;   /* latón / la caña — acento cálido, CTAs */
  --brass-lt:    #E0C070;
  --brass-deep:  #A9832F;
  --eg-red:      #C42127;   /* Estrella Galicia — acento puntual */
  --eg-red-deep: #9E1B20;
  --brick:       #9C5A3C;   /* ladrillo del muro real */
  --brick-deep:  #7A4530;
  --tile-bone:   #EDE6D6;
  --tile-blue:   #2E5B8C;

  --maxw: 1200px;
  --gut: clamp(20px, 5vw, 68px);
  --r: 14px;
  --shadow: 0 26px 60px -30px rgba(0,0,0,.72);
  --shadow-sm: 0 12px 30px -18px rgba(0,0,0,.6);
  --ease: cubic-bezier(.22, .61, .36, 1);

  /* Azulejo talavera (bone + azul azulejo + puntito rojo EG) — motivo estructural */
  --tile-svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Crect width='40' height='40' fill='%23EDE6D6'/%3E%3Cg fill='none' stroke='%232E5B8C' stroke-width='2.4'%3E%3Cpath d='M0 12 Q12 12 12 0 M40 12 Q28 12 28 0 M0 28 Q12 28 12 40 M40 28 Q28 28 28 40'/%3E%3Crect x='13' y='13' width='14' height='14' transform='rotate(45 20 20)'/%3E%3C/g%3E%3Ccircle cx='20' cy='20' r='2.4' fill='%23C42127'/%3E%3C/svg%3E");
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }   /* el atributo hidden manda sobre display:grid/flex */
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--navy);
  color: var(--cream);
  font-family: "Instrument Sans", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.66;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

h1, h2, h3, .display {
  font-family: "Domine", Georgia, serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.005em;
}

.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gut); }
.section { padding-block: clamp(64px, 9vw, 128px); position: relative; }

/* ---------- Eyebrow + título de sección ---------- */
.eyebrow {
  font-weight: 600; font-size: .74rem; letter-spacing: .26em; text-transform: uppercase;
  color: var(--brass); margin: 0 0 .9rem; display: inline-flex; align-items: center; gap: .7em;
}
.eyebrow::before { content: ""; width: 30px; height: 2px; background: var(--brass); display: inline-block; }
.sec-title {
  font-size: clamp(2rem, 4.6vw, 3.4rem); margin: 0 0 1.1rem; color: var(--cream-2);
  position: relative; display: inline-block;
}
.sec-title .em { color: var(--brass-lt); }
/* trazo de latón que se dibuja bajo el título (solo transform) */
.sec-title::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -.16em; height: 3px;
  background: linear-gradient(90deg, var(--brass), var(--eg-red) 92%);
  transform: scaleX(0); transform-origin: left center; border-radius: 2px;
  transition: transform .9s var(--ease) .12s; opacity: .92;
}
.sec-title.in::after, .in .sec-title::after, :not(.is-anim) .sec-title::after { transform: scaleX(1); }
.sec-title.center { display: block; text-align: center; }
.sec-title.center::after { left: 50%; right: auto; width: 3.2em; transform: translateX(-50%) scaleX(0); }
.sec-title.center.in::after, .in .sec-title.center::after, :not(.is-anim) .sec-title.center::after { transform: translateX(-50%) scaleX(1); }

/* ---------- Reveal robusto (gated por .is-anim) ---------- */
.is-anim [data-r] { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); will-change: opacity, transform; }
.is-anim [data-r].in { opacity: 1; transform: none; }
.is-anim [data-r="clip"] { transform: translateY(14px); }
@media (prefers-reduced-motion: reduce) {
  .is-anim [data-r] { opacity: 1 !important; transform: none !important; }
  .is-anim .tilerow i { opacity: 1 !important; transform: none !important; }
}

/* ---------- Cenefa de AZULEJOS que se colocan (firma) ---------- */
.tilerow {
  display: flex; justify-content: center; gap: 0; overflow: hidden;
  padding-block: clamp(14px, 2.4vw, 26px); line-height: 0;
}
.tilerow.tight { padding-block: 0; }
.tilerow i {
  width: 40px; height: 40px; flex: none; display: block;
  background: var(--tile-svg) center / 40px 40px no-repeat;
  filter: drop-shadow(0 6px 10px rgba(0,0,0,.28));
}
.is-anim [data-r].tilerow { opacity: 1; transform: none; }   /* el contenedor no se mueve; las baldosas sí */
.is-anim .tilerow i {
  opacity: 0; transform: translateY(9px) scale(.5) rotate(-12deg);
  transition: opacity .5s var(--ease), transform .58s var(--ease);
}
.is-anim .tilerow.in i { opacity: 1; transform: none; }
.tilerow i:nth-child(1){transition-delay:.00s}  .tilerow i:nth-child(2){transition-delay:.05s}
.tilerow i:nth-child(3){transition-delay:.10s}  .tilerow i:nth-child(4){transition-delay:.15s}
.tilerow i:nth-child(5){transition-delay:.20s}  .tilerow i:nth-child(6){transition-delay:.25s}
.tilerow i:nth-child(7){transition-delay:.30s}  .tilerow i:nth-child(8){transition-delay:.35s}
.tilerow i:nth-child(9){transition-delay:.40s}  .tilerow i:nth-child(10){transition-delay:.45s}
.tilerow i:nth-child(11){transition-delay:.50s} .tilerow i:nth-child(12){transition-delay:.55s}
.tilerow i:nth-child(13){transition-delay:.60s} .tilerow i:nth-child(14){transition-delay:.65s}
.tilerow i:nth-child(15){transition-delay:.70s}

/* ---------- Resplandor de tungsteno (CSS puro, respira) ---------- */
.glow {
  position: absolute; pointer-events: none; z-index: 0; border-radius: 50%;
  background: radial-gradient(circle, rgba(224,192,112,.34) 0%, rgba(201,162,75,.16) 38%, rgba(201,162,75,0) 70%);
  filter: blur(6px); animation: tungsten 7.5s ease-in-out infinite;
}
@keyframes tungsten { 0%,100% { opacity: .5; transform: scale(1); } 50% { opacity: .92; transform: scale(1.07); } }
@media (prefers-reduced-motion: reduce) { .glow { animation: none; opacity: .6; } }

/* ---------- Botones ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55em;
  font-family: "Instrument Sans", sans-serif; font-weight: 600; font-size: .98rem;
  padding: .82em 1.5em; border-radius: 999px; text-decoration: none; cursor: pointer;
  border: 1.5px solid transparent; line-height: 1;
  transition: transform .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease), color .25s, border-color .25s;
}
.btn svg { width: 1.08em; height: 1.08em; }
.btn-primary { background: var(--brass); color: #22190A; box-shadow: 0 14px 30px -14px rgba(201,162,75,.6); }
.btn-primary:hover { background: var(--brass-lt); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--cream); border-color: rgba(242,231,210,.4); }
.btn-ghost:hover { border-color: var(--brass); color: var(--brass-lt); transform: translateY(-2px); }
.btn-light { background: rgba(242,231,210,.1); color: var(--cream); border-color: rgba(242,231,210,.42); backdrop-filter: blur(6px); }
.btn-light:hover { background: rgba(242,231,210,.18); transform: translateY(-2px); }

/* ---------- Chip abierto/cerrado ---------- */
.openstate {
  display: inline-flex; align-items: center; gap: .5em; font-size: .84rem; font-weight: 600;
  color: var(--cream); padding: .36em .82em; border-radius: 999px;
  background: rgba(15,26,46,.5); border: 1px solid rgba(242,231,210,.16);
}
.openstate .dot { width: .62em; height: .62em; border-radius: 50%; background: var(--cream-soft); flex: none; box-shadow: 0 0 0 3px rgba(201,201,174,.16); }
.openstate.is-open .dot { background: #5DBB63; box-shadow: 0 0 0 3px rgba(93,187,99,.24); animation: pulse 2.4s ease-in-out infinite; }
.openstate.is-closed .dot { background: var(--eg-red); box-shadow: 0 0 0 3px rgba(196,33,39,.24); }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 3px rgba(93,187,99,.24); } 50% { box-shadow: 0 0 0 6px rgba(93,187,99,.06); } }
@media (prefers-reduced-motion: reduce) { .openstate.is-open .dot { animation: none; } }

/* ==========================================================================
   NAV
   ========================================================================== */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: .7rem var(--gut);
  transition: background .3s var(--ease), box-shadow .3s var(--ease), padding .3s var(--ease);
}
.nav.scrolled { background: rgba(15,26,46,.9); box-shadow: 0 1px 0 rgba(201,162,75,.16), 0 16px 34px -28px rgba(0,0,0,.8); backdrop-filter: blur(11px); }
.brand { display: inline-flex; flex-direction: column; text-decoration: none; line-height: 1; }
.brand .word { font-family: "Domine", serif; font-weight: 700; font-size: 1.5rem; color: var(--cream-2); letter-spacing: .04em; }
.brand .word b { color: var(--brass-lt); font-weight: 700; }
.brand .sub { font-size: .58rem; font-weight: 600; letter-spacing: .3em; text-transform: uppercase; color: var(--cream-soft); margin-top: .32em; }
.nav-right { display: flex; align-items: center; gap: 1rem; }
.nav-chip {
  font-size: .82rem; font-weight: 600; color: var(--cream);
  padding: .36em .82em; border-radius: 999px;
  background: rgba(242,231,210,.08); border: 1px solid rgba(242,231,210,.2);
  backdrop-filter: blur(6px); white-space: nowrap;
}
.nav .btn { padding: .6em 1.2em; font-size: .9rem; }
.hamb { display: none; background: none; border: 0; cursor: pointer; padding: .3rem; }
.hamb span { display: block; width: 24px; height: 2px; background: var(--cream); margin: 5px 0; border-radius: 2px; }

.mobile-menu { position: fixed; inset: 0; z-index: 70; background: var(--navy-deep); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.3rem; }
.mobile-menu a { font-family: "Domine", serif; font-size: 1.7rem; text-decoration: none; color: var(--cream-2); }
.mobile-menu .btn { font-family: "Instrument Sans"; font-size: 1.05rem; color: #22190A; }
.mobile-menu .mm-close { position: absolute; top: 1.2rem; right: 1.4rem; background: none; border: 0; font-size: 2.2rem; color: var(--cream); cursor: pointer; line-height: 1; }

/* ==========================================================================
   HERO — full-bleed cinematográfico
   ========================================================================== */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; background: var(--navy-deep); }
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 55%;
  animation: kenburns 20s ease-in-out infinite alternate; transform-origin: 58% 60%;
}
@keyframes kenburns { from { transform: scale(1.02); } to { transform: scale(1.08); } }
@media (prefers-reduced-motion: reduce) { .hero-media img { animation: none; transform: scale(1.02); } }
.hero-veil {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to top, rgba(9,16,30,.9) 0%, rgba(15,26,46,.6) 34%, rgba(15,26,46,.28) 60%, rgba(15,26,46,.5) 100%),
    linear-gradient(100deg, rgba(15,26,46,.62), rgba(15,26,46,0) 58%);
}
.hero .glow { z-index: 2; width: 60vw; height: 60vw; max-width: 720px; max-height: 720px; right: -8%; bottom: 2%; }
.hero-inner { position: relative; z-index: 3; padding: 0 var(--gut) clamp(52px, 9vh, 104px); max-width: 1180px; width: 100%; margin: 0 auto; }
.hero-eyebrow { color: var(--brass-lt); font-weight: 600; letter-spacing: .24em; text-transform: uppercase; font-size: .76rem; margin: 0 0 1.1rem; display: inline-flex; align-items: center; gap: .7em; }
.hero-eyebrow::before { content: ""; width: 34px; height: 2px; background: var(--brass-lt); display: inline-block; }
.hero h1 { color: var(--cream-2); font-size: clamp(2.4rem, 6vw, 5rem); max-width: 17ch; margin: 0 0 1.1rem; text-shadow: 0 2px 34px rgba(0,0,0,.6); }
.hero h1 .em { color: var(--brass-lt); }
.hero-sub { color: var(--cream); font-size: clamp(1.02rem, 1.7vw, 1.26rem); max-width: 50ch; margin: 0 0 1.9rem; opacity: .94; text-shadow: 0 1px 16px rgba(0,0,0,.55); }
.hero-ctas { display: flex; flex-wrap: wrap; align-items: center; gap: .9rem 1.05rem; }
.hero-scroll { position: absolute; left: 50%; bottom: 20px; transform: translateX(-50%); z-index: 3; color: rgba(242,231,210,.6); font-size: .74rem; letter-spacing: .18em; text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: .4rem; }
.hero-scroll .mouse { width: 20px; height: 32px; border: 1.5px solid rgba(242,231,210,.5); border-radius: 12px; position: relative; }
.hero-scroll .mouse::after { content: ""; position: absolute; top: 6px; left: 50%; width: 3px; height: 6px; background: rgba(242,231,210,.7); border-radius: 2px; transform: translateX(-50%); animation: wheel 1.8s ease-in-out infinite; }
@keyframes wheel { 0%,100% { opacity: 0; transform: translate(-50%, 0); } 40% { opacity: 1; } 70% { opacity: 0; transform: translate(-50%, 8px); } }
@media (prefers-reduced-motion: reduce) { .hero-scroll .mouse::after { animation: none; } }

/* ==========================================================================
   BANDA ANSWER-FIRST — navy profundo + cenefa de azulejo
   ========================================================================== */
.answer { background: var(--navy-deep); text-align: center; overflow: hidden; }
.answer .glow { width: 44vw; height: 44vw; max-width: 520px; max-height: 520px; left: 50%; top: 42%; transform: translate(-50%,-50%); }
.answer .wrap { max-width: 980px; position: relative; z-index: 2; }
.answer .eyebrow { color: var(--brass); justify-content: center; }
.answer .eyebrow::before { display: none; }
.answer p {
  font-family: "Domine", serif; font-weight: 500;
  font-size: clamp(1.35rem, 3vw, 2.2rem); line-height: 1.4; margin: .4rem 0 0; color: var(--cream-2);
}
.answer p .hl { color: var(--brass-lt); }
.answer p .eg { color: var(--eg-red); font-weight: 700; }

/* ==========================================================================
   CASA ESTRELLA GALICIA — split editorial + foto real en cenefa de azulejo
   ========================================================================== */
.casa { background: var(--navy); }
.casa-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: clamp(28px, 5vw, 74px); align-items: center; }
/* marco de azulejos alrededor de la foto real de la fachada */
.frame { position: relative; padding: 14px; background:
    var(--tile-svg) top left / 40px 40px repeat-x,
    var(--tile-svg) bottom left / 40px 40px repeat-x,
    var(--tile-svg) top left / 40px 40px repeat-y,
    var(--tile-svg) top right / 40px 40px repeat-y;
  background-color: var(--navy-panel); border-radius: 6px; box-shadow: var(--shadow); rotate: -1deg;
}
.frame img { border-radius: 3px; aspect-ratio: 4/3; object-fit: cover; width: 100%; height: auto; box-shadow: 0 0 0 5px var(--navy-panel), inset 0 0 40px rgba(0,0,0,.3); }
.frame .tag { position: absolute; bottom: -14px; right: 20px; z-index: 5; background: var(--eg-red); color: #fff; font-size: .72rem; font-weight: 700; letter-spacing: .05em; padding: .42em .95em; border-radius: 999px; box-shadow: var(--shadow-sm); rotate: 1deg; }
.casa-copy p { color: var(--cream-soft); margin: 0 0 1.05rem; max-width: 48ch; }
.casa-copy p .lead { color: var(--cream-2); }
.casa-copy .eg-badge { display: inline-flex; align-items: center; gap: .6em; margin-top: .4rem; font-size: .9rem; font-weight: 600; color: var(--cream); background: rgba(196,33,39,.14); border: 1px solid rgba(196,33,39,.4); padding: .5em 1em; border-radius: 999px; }
.casa-copy .eg-badge .star { color: var(--eg-red); font-size: 1.1em; }
.casa-note { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.5rem; }
.casa-note .pill { font-size: .84rem; font-weight: 600; color: var(--cream); background: var(--navy-panel); border: 1px solid var(--navy-line); padding: .46em .9em; border-radius: 999px; }
.casa-note .pill b { color: var(--brass-lt); font-weight: 700; }

/* ==========================================================================
   ARCO DEL DÍA — bandas cinematográficas alternadas
   ========================================================================== */
.arco { background: var(--navy-deep); }
.arco-head { max-width: 62ch; margin-bottom: clamp(34px, 5vw, 64px); }
.arco-head p { color: var(--cream-soft); margin: 0; }
.beat { display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(22px, 4vw, 56px); align-items: center; margin-bottom: clamp(30px, 5vw, 68px); }
.beat:last-child { margin-bottom: 0; }
.beat.rev .beat-media { order: 2; }
.beat-media { position: relative; border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 16/10; }
.beat-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.beat:hover .beat-media img { transform: scale(1.05); }
.beat-media::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(201,162,75,.24); border-radius: var(--r); }
.beat-media .hh { position: absolute; left: 16px; bottom: 14px; z-index: 2; font-family: "Domine", serif; font-weight: 700; font-size: 1rem; color: var(--cream-2); background: rgba(9,16,30,.6); padding: .3em .8em; border-radius: 999px; backdrop-filter: blur(4px); }
.beat-copy .kicker { font-size: .72rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--brass); margin: 0 0 .6rem; display: inline-flex; align-items: center; gap: .6em; }
.beat-copy .kicker .clock { color: var(--brass-lt); }
.beat-copy h3 { font-size: clamp(1.5rem, 3vw, 2.1rem); color: var(--cream-2); margin: 0 0 .7rem; }
.beat-copy p { color: var(--cream-soft); margin: 0 0 .7rem; max-width: 42ch; }
.beat-copy .taste { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1rem; }
.beat-copy .taste span { font-size: .82rem; font-weight: 600; color: var(--cream); background: var(--navy-panel); border: 1px solid var(--navy-line); padding: .4em .85em; border-radius: 999px; }

/* ==========================================================================
   MENÚ DEL DÍA — pizarra / encerado de tasca
   ========================================================================== */
.pizarra { background: var(--navy); }
.board {
  position: relative; border-radius: 12px; padding: clamp(30px, 5vw, 60px) clamp(24px, 5vw, 64px);
  background:
    radial-gradient(ellipse at 30% 20%, rgba(255,255,255,.045), rgba(255,255,255,0) 60%),
    linear-gradient(160deg, #0C1A17, #0B1622 60%, #0C1524);
  border: 10px solid transparent;
  border-image: linear-gradient(135deg, var(--brass-lt), var(--brass-deep) 55%, var(--brick)) 1;
  box-shadow: var(--shadow), inset 0 0 80px rgba(0,0,0,.5);
}
.board::after { /* raya de tiza sutil */ content: ""; position: absolute; inset: 16px; border: 1px dashed rgba(242,231,210,.14); border-radius: 6px; pointer-events: none; }
.board-head { text-align: center; margin-bottom: clamp(24px, 4vw, 44px); position: relative; z-index: 1; }
.board-head .chalk-eyebrow { font-size: .78rem; font-weight: 600; letter-spacing: .24em; text-transform: uppercase; color: var(--brass-lt); }
.board h2 { font-size: clamp(2rem, 5vw, 3.2rem); color: var(--cream-2); margin: .3rem 0 .5rem; }
.board h2 .u { text-decoration: underline; text-decoration-color: var(--brass); text-underline-offset: .16em; text-decoration-thickness: 2px; }
.board-head p { color: var(--cream-soft); margin: 0; font-size: 1rem; }
.courses { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 3vw, 40px); position: relative; z-index: 1; }
.course { text-align: center; }
.course .n { font-family: "Domine", serif; font-size: .9rem; color: var(--brass); letter-spacing: .1em; }
.course h3 { font-size: 1.5rem; color: var(--cream-2); margin: .3rem 0 .6rem; }
.course p { color: var(--cream-soft); margin: 0; font-size: .96rem; max-width: 26ch; margin-inline: auto; }
.course .rule { width: 40px; height: 2px; background: rgba(201,162,75,.5); margin: .9rem auto 0; }
.board-foot { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1rem 1.6rem; margin-top: clamp(26px, 4vw, 46px); position: relative; z-index: 1; }
.included { display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; }
.included span { font-size: .84rem; font-weight: 600; color: var(--cream); background: rgba(242,231,210,.08); border: 1px solid rgba(242,231,210,.18); padding: .42em .9em; border-radius: 999px; }
.board-note { text-align: center; color: var(--cream-soft); font-size: .92rem; margin: 1.4rem 0 0; font-style: italic; position: relative; z-index: 1; }

/* ==========================================================================
   VISITA — split mapa + datos + horario
   ========================================================================== */
.visita { background: var(--navy-deep); }
.visita-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(26px, 4vw, 56px); align-items: stretch; }
.map-wrap { border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow); min-height: 430px; position: relative; border: 6px solid var(--navy-panel); }
.map-wrap iframe { width: 100%; height: 100%; min-height: 418px; border: 0; display: block; filter: grayscale(.16) contrast(1.02); }
.visita-info { display: flex; flex-direction: column; }
.visita-info .addr { font-size: 1.1rem; color: var(--cream-2); margin: 0 0 .3rem; font-weight: 600; }
.visita-info .addr-sub { color: var(--cream-soft); margin: 0 0 1.4rem; font-size: .96rem; }
.hours-list { list-style: none; margin: 0 0 1.6rem; padding: 0; border-top: 1px solid var(--navy-line); }
.hours-list li { display: flex; justify-content: space-between; gap: 1rem; padding: .62rem 0; border-bottom: 1px solid var(--navy-line); font-size: .98rem; color: var(--cream-soft); }
.hours-list li .d { font-weight: 600; color: var(--cream); }
.hours-list li.today { background: linear-gradient(90deg, rgba(201,162,75,.16), transparent); border-radius: 8px; padding-inline: .7rem; margin-inline: -.7rem; }
.hours-list li.today .d { color: var(--brass-lt); }
.hours-list li.today .h { font-weight: 700; color: var(--brass-lt); }
.hours-list li .today-badge { display: none; }
.hours-list li.today .today-badge { display: inline-block; margin-left: .5em; font-size: .62rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #22190A; background: var(--brass); padding: .14em .55em; border-radius: 999px; vertical-align: middle; }
.visita-cta { margin-top: auto; display: flex; flex-wrap: wrap; gap: .8rem; align-items: center; }

/* ==========================================================================
   FAQ — acordeón sobrio + remate de azulejo
   ========================================================================== */
.faq { background: var(--navy); }
.faq-grid { max-width: 840px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--navy-line); }
.faq-item summary { list-style: none; cursor: pointer; padding: 1.2rem .2rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem; font-family: "Domine", serif; font-weight: 700; font-size: 1.12rem; color: var(--cream-2); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .plus { flex: none; width: 26px; height: 26px; position: relative; transition: transform .35s var(--ease); }
.faq-item summary .plus::before, .faq-item summary .plus::after { content: ""; position: absolute; background: var(--brass); border-radius: 2px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.faq-item summary .plus::before { width: 14px; height: 2px; }
.faq-item summary .plus::after { width: 2px; height: 14px; transition: transform .35s var(--ease); }
.faq-item[open] summary .plus::after { transform: translate(-50%,-50%) scaleY(0); }
.faq-item .ans { padding: 0 .2rem 1.3rem; color: var(--cream-soft); font-size: .99rem; max-width: 66ch; }
.faq-item .ans strong { color: var(--cream); }
.faq-item .ans a { color: var(--brass-lt); text-decoration: underline; text-underline-offset: 2px; }
.faq-item .ans .pend { color: var(--brass); font-style: italic; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer { background: var(--navy-deep); color: var(--cream-soft); padding-block: clamp(52px, 7vw, 84px) 2.2rem; border-top: 1px solid var(--navy-line); }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: clamp(24px, 4vw, 56px); }
.footer .brand .word { color: var(--cream-2); font-size: 2rem; }
.footer-top p { margin: .9rem 0 0; font-size: .96rem; color: var(--cream-soft); max-width: 36ch; }
.footer h4 { font-family: "Instrument Sans"; font-weight: 700; font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; color: var(--brass); margin: 0 0 1rem; }
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer ul li { margin-bottom: .5rem; font-size: .95rem; color: var(--cream-soft); }
.footer a { color: var(--cream); text-decoration: none; }
.footer a:hover { color: var(--brass-lt); text-decoration: underline; }
.footer-bottom { margin-top: clamp(34px, 5vw, 58px); padding-top: 1.6rem; border-top: 1px solid var(--navy-line); display: flex; flex-wrap: wrap; gap: .8rem 1.4rem; justify-content: space-between; align-items: center; font-size: .86rem; color: var(--cream-soft); }
.panoramic-sign { color: var(--cream-soft); }
.panoramic-sign a { color: var(--brass); font-weight: 600; }
.panoramic-sign a:hover { color: var(--brass-lt); }

/* ==========================================================================
   FAB «Llamar»
   ========================================================================== */
.fab {
  position: fixed; right: clamp(16px, 3vw, 28px); bottom: clamp(16px, 3vw, 28px); z-index: 55;
  display: inline-flex; align-items: center; gap: .5em; background: var(--brass); color: #22190A;
  text-decoration: none; font-weight: 700; font-size: .95rem; padding: .82em 1.3em; border-radius: 999px;
  box-shadow: 0 14px 30px -12px rgba(201,162,75,.7);
  opacity: 0; transform: translateY(14px) scale(.96); pointer-events: none;
  transition: opacity .4s var(--ease), transform .4s var(--ease), background .25s;
}
.fab.show { opacity: 1; transform: none; pointer-events: auto; }
.fab:hover { background: var(--brass-lt); }
.fab svg { width: 1.15em; height: 1.15em; }

/* ==========================================================================
   MODAL WHATSAPP (gated; estilado en la paleta)
   ========================================================================== */
.wa-modal { position: fixed; inset: 0; z-index: 90; display: grid; place-items: center; padding: 1.2rem; }
.wa-overlay { position: absolute; inset: 0; background: rgba(9,16,30,.6); backdrop-filter: blur(7px); }
.wa-card { position: relative; z-index: 1; width: min(440px, 96vw); background: var(--navy-panel); color: var(--cream); border: 1px solid var(--navy-line); border-radius: 18px; padding: 1.8rem 1.7rem 1.9rem; box-shadow: 0 40px 90px -30px rgba(0,0,0,.7); }
.wa-close { position: absolute; top: .8rem; right: 1rem; background: none; border: 0; font-size: 1.7rem; line-height: 1; cursor: pointer; color: var(--cream-soft); }
.wa-card h3 { font-size: 1.5rem; margin: 0 0 .3rem; color: var(--cream-2); }
.wa-card p { font-size: .95rem; color: var(--cream-soft); margin: 0 0 1.1rem; }
.wa-qr { display: grid; place-items: center; padding: 1rem; background: #fff; border-radius: 12px; margin-bottom: 1rem; }
.wa-qr img { width: 190px; height: 190px; image-rendering: pixelated; }
.wa-preview { font-size: .84rem; color: var(--cream-soft); text-align: center; margin: 0 0 1rem; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 900px) {
  .casa-grid, .visita-grid { grid-template-columns: 1fr; }
  .beat, .beat.rev { grid-template-columns: 1fr; }
  .beat.rev .beat-media { order: 0; }
  .courses { grid-template-columns: 1fr; gap: 26px; }
  .course .rule { margin-top: .7rem; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .frame { rotate: 0deg; }
}
@media (max-width: 720px) {
  .nav-chip { display: none; }
  .nav .desk-cta { display: none; }
  .hamb { display: block; }
  .nav-right { gap: .5rem; }
  .brand .sub { display: none; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .tilerow i { width: 34px; height: 34px; background-size: 34px 34px; }
}
