/* =========================================================
   Música en directo para bodas — estilos
   Paleta: marfil, carbón, dorado discreto, verde oliva
   ========================================================= */
:root {
  --ivory: #F4EFE4;
  --paper: #FBF8F2;
  --ink: #232220;
  --ink-2-base: #57544C;
  --ink-2: var(--ink-2-base);
  --gold: #A6854C;
  --gold-2: #8A6C38;
  --olive: #4E5436;
  --olive-deep: #353926;
  --olive-soft: #E4E3D2;
  --line-base: #D9D0BE;
  --line: var(--line-base);
  --busy: #8F8A7E;
  --danger: #8C2F22;

  --serif: "Bodoni Moda", "Bodoni 72", Didot, Georgia, serif;
  --sans: "Hanken Grotesk", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --wrap: 1160px;
  --r-sm: 6px;
  --r: 14px;
  --sticky-h: 0px;
  --btn-r: 999px;
  --fs: 1.0625rem;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { transition: none !important; animation: none !important; } }
body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  font-size: var(--fs);
  line-height: 1.6;
  padding-bottom: var(--sticky-h);
}
img, video, iframe { max-width: 100%; display: block; }
a { color: inherit; text-underline-offset: .18em; text-decoration-thickness: 1px; }
button { font: inherit; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
.narrow { width: min(100% - 2.5rem, 760px); margin-inline: auto; }

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -.012em;
  margin: 0 0 .45em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.6rem, 7.2vw, 5.6rem); }
h2 { font-size: clamp(2.05rem, 4.6vw, 3.4rem); }
h3 { font-size: clamp(1.35rem, 2.3vw, 1.75rem); line-height: 1.15; }
h4 { font-size: 1.05rem; margin: 0 0 .4em; }
p { margin: 0 0 1em; max-width: 62ch; }
.lead { font-size: clamp(1.1rem, 1.7vw, 1.3rem); color: var(--ink-2); max-width: 54ch; }
.muted { color: var(--ink-2); }
.small { font-size: .92rem; }

.section { padding-block: clamp(4rem, 9vw, 7.5rem); }
.section-tight { padding-block: clamp(3rem, 6vw, 5rem); }
.section-head { margin-bottom: clamp(2rem, 4vw, 3.25rem); max-width: 720px; }
.section-head p { color: var(--ink-2); }
.center { text-align: center; }
.center p, .center .lead { margin-inline: auto; }

.skip { position: absolute; left: -9999px; top: 0; background: var(--ink); color: var(--paper); padding: .7rem 1rem; z-index: 100; }
.skip:focus { left: 1rem; top: 1rem; }

.demo-banner {
  background: var(--gold); color: #fff; text-align: center; font-size: .9rem; padding: .5rem 1rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  min-height: 50px; padding: .75rem 1.5rem;
  border-radius: var(--btn-r); border: 1px solid transparent;
  font-weight: 600; font-size: 1rem; line-height: 1.2;
  text-decoration: none; cursor: pointer; text-align: center;
  transition: background-color .2s, color .2s, border-color .2s;
}
.btn-primary { background: var(--ink); color: var(--paper); }
.btn-primary:hover { background: var(--olive-deep); }
.btn-gold { background: var(--gold); color: #fff; }
.btn-gold:hover { background: var(--gold-2); }
.btn-ghost { background: transparent; border-color: currentColor; }
.btn-ghost:hover { background: rgba(255,255,255,.08); }
.btn-light { background: var(--paper); color: var(--ink); }
.btn-light:hover { background: #fff; }
.btn-sm { min-height: 42px; padding: .55rem 1.1rem; font-size: .95rem; }
.btn[disabled], .btn[aria-disabled="true"] { opacity: .5; cursor: not-allowed; }
.btn-row { display: flex; flex-wrap: wrap; gap: .75rem; }
.link { font-weight: 600; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(244, 239, 228, .94);
  backdrop-filter: saturate(1.2) blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; gap: 1rem; min-height: 68px; }
.brand { text-decoration: none; display: flex; flex-direction: column; line-height: 1.1; margin-right: auto; }
.brand strong { font-family: var(--serif); font-weight: 500; font-size: 1.28rem; }
.brand span { font-size: .8rem; color: var(--ink-2); }
.nav { display: flex; gap: 1.6rem; }
.nav a { text-decoration: none; font-weight: 500; font-size: .98rem; }
.nav a:hover, .nav a[aria-current="page"] { text-decoration: underline; }
.nav-toggle { display: none; background: none; border: 1px solid var(--line); border-radius: 999px; padding: .45rem 1rem; cursor: pointer; }

@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }
  .header-cta { display: none; }
  .nav {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; gap: 0; background: var(--paper); border-bottom: 1px solid var(--line);
    padding: .5rem 1.25rem 1rem;
  }
  .nav.open { display: flex; }
  .nav a { padding: .8rem 0; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
}

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 45;
  display: none; align-items: center; justify-content: space-between; gap: .75rem;
  padding: .7rem 1rem calc(.7rem + env(safe-area-inset-bottom));
  background: var(--olive-deep); color: var(--paper);
  box-shadow: 0 -8px 24px rgba(30, 30, 20, .18);
}
.sticky-cta span { font-size: .92rem; line-height: 1.25; }
.sticky-cta .btn { min-height: 44px; padding: .5rem 1rem; font-size: .93rem; white-space: nowrap; }
@media (max-width: 860px) {
  .sticky-cta { display: flex; }
  .sticky-cta span { font-size: .84rem; max-width: 11em; }
  .hero { min-height: 72svh; padding-block: 4rem 2.5rem; }
  body.has-sticky { --sticky-h: 76px; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; isolation: isolate;
  min-height: min(92svh, 880px);
  display: flex; align-items: flex-end;
  color: var(--paper);
  background: var(--olive-deep) url("/assets/img/hero.jpg") center 30% / cover no-repeat;
  padding-block: 7rem clamp(3rem, 7vw, 5.5rem);
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(25, 26, 18, .15) 0%, rgba(25, 26, 18, .35) 45%, rgba(25, 26, 18, .82) 100%);
}
.hero h1 { max-width: 15ch; margin-bottom: .35em; }
.hero .lead { color: rgba(251, 248, 242, .9); margin-bottom: 1.8rem; }
.hero .btn-ghost { color: var(--paper); }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }

/* inner page heading */
.page-head { padding-block: clamp(3.5rem, 8vw, 6rem) clamp(2rem, 4vw, 3rem); border-bottom: 1px solid var(--line); }
.page-head h1 { font-size: clamp(2.4rem, 6vw, 4.4rem); max-width: 16ch; }
.crumbs { font-size: .9rem; color: var(--ink-2); margin-bottom: 1.5rem; }
.crumbs a { text-decoration: none; }
.crumbs a:hover { text-decoration: underline; }

/* ---------- Moments ---------- */
.moments { display: grid; gap: 0; grid-template-columns: repeat(var(--n, 3), minmax(0, 1fr)); border-top: 1px solid var(--ink); }
.moment { padding: 1.6rem 1.6rem 1.8rem 0; border-right: 1px solid var(--line); }
.moment + .moment { padding-left: 1.6rem; }
.moment:last-child { border-right: 0; }
.moment .when { font-size: .9rem; color: var(--gold-2); font-weight: 600; margin-bottom: 1.4rem; display: block; }
.moment p { color: var(--ink-2); }
@media (max-width: 760px) {
  .moments { grid-template-columns: 1fr; }
  .moment, .moment + .moment { padding: 1.4rem 0; border-right: 0; border-bottom: 1px solid var(--line); }
}

.value-list { display: flex; flex-wrap: wrap; gap: .5rem 1.6rem; margin: 2rem 0 0; padding: 0; list-style: none; color: var(--ink-2); }
.value-list li::before { content: ""; display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); margin-right: .6rem; vertical-align: middle; }

/* ---------- Availability (signature section) ---------- */
.avail-layout { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr); gap: clamp(1.5rem, 4vw, 3.5rem); align-items: start; }
@media (max-width: 900px) { .avail-layout { grid-template-columns: 1fr; } }
.avail-side { padding-top: .5rem; }

.cal { background: var(--paper); color: var(--ink); border-radius: var(--r); padding: clamp(.9rem, 2.4vw, 1.5rem); }
.cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; gap: .5rem; }
.cal-title { font-family: var(--serif); font-size: clamp(1.4rem, 3vw, 1.9rem); margin: 0; }
.cal-nav { display: flex; gap: .4rem; }
.cal-nav button {
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line); background: #fff; cursor: pointer; font-size: 1.1rem;
}
.cal-nav button:disabled { opacity: .35; cursor: not-allowed; }
.cal-grid { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); gap: 5px; }
.cal-dow { text-align: center; font-size: .8rem; color: var(--ink-2); padding-bottom: .25rem; font-weight: 600; }
.day {
  display: grid; grid-template-rows: auto 1fr; gap: 4px;
  aspect-ratio: 1 / 1.12; min-height: 46px;
  padding: 5px; border-radius: 8px; border: 1px solid var(--line); background: #fff;
  text-align: left; cursor: pointer; color: var(--ink);
}
.day .n { font-size: .92rem; font-weight: 600; line-height: 1; }
.day .halves { display: grid; grid-template-rows: 1fr 1fr; gap: 3px; }
.half { border-radius: 3px; min-height: 6px; }
.half.free { background: var(--olive); }
.half.busy { background: repeating-linear-gradient(135deg, var(--busy) 0 1.5px, transparent 1.5px 5px); border: 1px solid #CFC8B8; }
.day.full .n { text-decoration: line-through; color: var(--busy); }
.day.full { background: #F3F0E8; cursor: default; }
.day.past { opacity: .32; cursor: default; background: transparent; }
.day.past .halves { visibility: hidden; }
.day.selected { outline: 2px solid var(--gold); outline-offset: 1px; border-color: var(--gold); }
.day:not(.past):not(.full):hover { border-color: var(--ink); }
.day.blank { visibility: hidden; }
.cal-legend { display: flex; flex-wrap: wrap; gap: .5rem 1.2rem; margin-top: 1rem; font-size: .86rem; color: var(--ink-2); }
.cal-legend span { display: inline-flex; align-items: center; gap: .45rem; }
.key { display: inline-grid; grid-template-rows: 1fr 1fr; gap: 2px; width: 16px; height: 18px; }
.key i { display: block; border-radius: 2px; }
.key .free { background: var(--olive); }
.key .busy { background: repeating-linear-gradient(135deg, var(--busy) 0 1.5px, transparent 1.5px 4px); border: 1px solid #CFC8B8; }
.cal-status { min-height: 1.4em; margin: .6rem 0 0; font-size: .9rem; color: var(--ink-2); }

.slot-panel { background: rgba(251, 248, 242, .08); border: 1px solid rgba(251, 248, 242, .25); border-radius: var(--r); padding: 1.25rem; }
.slot-panel .date-label { font-family: var(--serif); font-size: 1.6rem; line-height: 1.15; text-transform: none; margin: 0 0 1rem; }
.slots { display: grid; gap: .6rem; }
.slot {
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: .95rem 1.1rem; min-height: 56px; border-radius: 10px;
  border: 1px solid var(--line); background: #fff; color: var(--ink);
  text-decoration: none; font-weight: 600; cursor: pointer; text-align: left; width: 100%;
}
.slot small { font-weight: 500; color: var(--olive); }
.slot.busy { background: transparent; color: var(--busy); border-style: dashed; cursor: not-allowed; }
.slot.busy small { color: var(--busy); }
.slot[aria-pressed="true"] { border-color: var(--gold); box-shadow: inset 0 0 0 1px var(--gold); background: #FFFCF4; }
.availability .slot.busy { color: rgba(251, 248, 242, .6); border-color: rgba(251, 248, 242, .35); }
.availability .slot.busy small { color: rgba(251, 248, 242, .6); }

/* ---------- Pricing ---------- */
.prices { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; align-items: stretch; }
@media (max-width: 900px) { .prices { grid-template-columns: 1fr; } }
.price-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: 1.8rem 1.6rem; display: flex; flex-direction: column; }
.price-card h3 { margin-bottom: .3em; }
.price-card .tagline { color: var(--ink-2); margin-bottom: 1.4rem; }
.price { font-family: var(--serif); font-size: 2.4rem; line-height: 1; margin: 0 0 1.4rem; }
.price small { font-family: var(--sans); font-size: .9rem; color: var(--ink-2); margin-right: .35rem; }
.price.tbd { font-size: 1.3rem; color: var(--ink-2); }
.includes { list-style: none; margin: 0 0 1.8rem; padding: 0; display: grid; gap: .55rem; }
.includes li { padding-left: 1.5rem; position: relative; }
.includes li::before { content: "✓"; position: absolute; left: 0; color: var(--gold-2); font-weight: 700; }
.price-card .btn { margin-top: auto; }
.price-card.featured { background: var(--olive-deep); color: var(--paper); border-color: var(--olive-deep); }
.price-card.featured .tagline, .price-card.featured .price small, .price-card.featured .price.tbd { color: rgba(251, 248, 242, .8); }
.price-card.featured .includes li::before { color: #D8BE8A; }
.price-note { margin-top: 1.6rem; color: var(--ink-2); font-size: .95rem; }

/* ---------- Instruments ---------- */
.instruments { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.instrument { padding: clamp(1.6rem, 4vw, 3rem) clamp(0rem, 3vw, 2.5rem) clamp(1.6rem, 4vw, 3rem) 0; }
.instrument + .instrument { border-left: 1px solid var(--line); padding-left: clamp(1.2rem, 3vw, 2.5rem); }
.instrument .big { font-family: var(--serif); font-style: italic; font-size: clamp(3rem, 8vw, 5.5rem); line-height: .9; margin: 0 0 1.2rem; }
.traits { display: flex; flex-wrap: wrap; gap: .4rem; margin: 0 0 1.2rem; padding: 0; list-style: none; }
.traits li { border: 1px solid var(--line); border-radius: 999px; padding: .2rem .8rem; font-size: .9rem; background: var(--paper); }
@media (max-width: 760px) {
  .instruments { grid-template-columns: 1fr; }
  .instrument, .instrument + .instrument { padding: 1.8rem 0; border-left: 0; }
  .instrument + .instrument { border-top: 1px solid var(--line); }
}

/* ---------- Mood selector ---------- */
.moods { display: grid; grid-template-columns: repeat(var(--n, 4), minmax(0, 1fr)); gap: .75rem; margin-top: 2.5rem; }
@media (max-width: 860px) { .moods { grid-template-columns: 1fr 1fr; } }
.mood { display: block; text-decoration: none; padding: 1.2rem 1.1rem; border: 1px solid var(--line); border-radius: var(--r); background: var(--paper); }
.mood strong { display: block; font-family: var(--serif); font-weight: 500; font-size: 1.25rem; margin-bottom: .35rem; }
.mood span { font-size: .9rem; color: var(--ink-2); }
.mood:hover { border-color: var(--ink); }

/* ---------- Songs ---------- */
.songs { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.song { display: grid; grid-template-columns: 48px 1fr auto; align-items: center; gap: 1rem; padding: .8rem 0; border-bottom: 1px solid var(--line); }
.play {
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--ink); background: transparent; cursor: pointer;
  display: grid; place-items: center; color: var(--ink);
}
.play svg { width: 16px; height: 16px; }
.play[aria-pressed="true"] { background: var(--ink); color: var(--paper); }
.play:disabled { border-color: var(--line); color: var(--line); cursor: default; }
.song-title { font-weight: 600; line-height: 1.3; }
.song-meta { font-size: .88rem; color: var(--ink-2); }
.song-tags { display: flex; gap: .35rem; flex-wrap: wrap; justify-content: flex-end; }
.tag { font-size: .78rem; border: 1px solid var(--line); border-radius: 999px; padding: .1rem .55rem; white-space: nowrap; background: var(--paper); }
.song .progress { grid-column: 2 / -1; height: 2px; background: var(--line); position: relative; display: none; }
.song.playing .progress { display: block; }
.song .progress i { position: absolute; inset: 0 auto 0 0; background: var(--gold); width: 0; }
@media (max-width: 600px) { .song { grid-template-columns: 44px 1fr; } .song-tags { grid-column: 2; justify-content: flex-start; } }

.filters { display: grid; gap: 1rem; margin-bottom: 1.5rem; }
.search { width: 100%; min-height: 52px; padding: .8rem 1rem; border-radius: 999px; border: 1px solid var(--line); background: #fff; font: inherit; }
.chips { display: flex; gap: .45rem; overflow-x: auto; padding-bottom: .3rem; scrollbar-width: thin; }
.chip { flex: none; border: 1px solid var(--line); background: var(--paper); border-radius: 999px; padding: .5rem .95rem; cursor: pointer; font-size: .92rem; min-height: 40px; }
.chip[aria-pressed="true"] { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.filter-row { display: flex; gap: .75rem; flex-wrap: wrap; }
.filter-row select { min-height: 44px; border-radius: 999px; border: 1px solid var(--line); padding: .4rem 1rem; background: #fff; font: inherit; }
.result-count { font-size: .9rem; color: var(--ink-2); }

/* ---------- Videos ---------- */
.videos { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 1.25rem; align-items: start; }
.video-card figure { margin: 0; }
.video-frame { position: relative; border-radius: var(--r); overflow: hidden; background: var(--olive-deep); aspect-ratio: 16 / 9; }
.video-frame.vertical { aspect-ratio: 9 / 16; }
.video-frame img, .video-frame video, .video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border: 0; }
.video-frame video { object-fit: contain; background: #000; }
.video-play {
  position: absolute; inset: 0; display: grid; place-items: center; background: transparent; border: 0; cursor: pointer; color: #fff;
}
.video-play span { width: 64px; height: 64px; border-radius: 50%; background: rgba(35, 34, 32, .7); display: grid; place-items: center; }
.video-card figcaption { padding-top: .75rem; }
.video-card figcaption strong { display: block; }
.video-card figcaption span { font-size: .92rem; color: var(--ink-2); }

.empty { border: 1px dashed var(--line); border-radius: var(--r); padding: 2rem; color: var(--ink-2); background: var(--paper); }

/* ---------- Configurator ---------- */
.config { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: clamp(1.4rem, 4vw, 2.5rem); }
.config fieldset { border: 0; padding: 0; margin: 0 0 1.6rem; }
.config legend { font-family: var(--serif); font-size: 1.35rem; margin-bottom: .75rem; }
.options { display: flex; flex-wrap: wrap; gap: .5rem; }
.opt { position: relative; }
.opt input { position: absolute; opacity: 0; inset: 0; margin: 0; cursor: pointer; }
.opt span { display: inline-flex; align-items: center; min-height: 46px; padding: .55rem 1.1rem; border: 1px solid var(--line); border-radius: 999px; background: #fff; }
.opt input:checked + span { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.opt input:focus-visible + span { outline: 2px solid var(--gold); outline-offset: 2px; }
.config-result { border-top: 1px solid var(--line); padding-top: 1.4rem; margin-top: .5rem; }

/* ---------- About ---------- */
.about { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(1.5rem, 5vw, 4.5rem); align-items: center; }
@media (max-width: 860px) { .about { grid-template-columns: 1fr; } }
.portrait { margin: 0; aspect-ratio: 4 / 5; border-radius: var(--r); overflow: hidden; background: var(--olive) center / cover; position: relative; }
.portrait img { width: 100%; height: 100%; object-fit: cover; }
.portrait .ph { position: absolute; inset: auto 1rem 1rem 1rem; color: rgba(251, 248, 242, .8); font-size: .85rem; }
.facts { list-style: none; padding: 0; margin: 1.5rem 0 0; border-top: 1px solid var(--line); }
.facts li { padding: .7rem 0; border-bottom: 1px solid var(--line); color: var(--ink-2); }

/* ---------- Steps (real sequence) ---------- */
.steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(var(--n, 5), minmax(0, 1fr)); gap: 1.25rem; counter-reset: s; }
.steps li { counter-increment: s; border-top: 1px solid var(--ink); padding-top: 1rem; }
.steps li::before { content: counter(s, decimal-leading-zero); display: block; font-family: var(--serif); font-size: 2.2rem; color: var(--gold-2); margin-bottom: .6rem; }
.steps h3 { font-size: 1.25rem; }
.steps p { color: var(--ink-2); font-size: .98rem; }
@media (max-width: 960px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }

/* ---------- Reviews ---------- */
.rating-summary { display: flex; align-items: baseline; gap: .8rem; margin-bottom: 1.5rem; }
.rating-summary strong { font-family: var(--serif); font-size: 3rem; font-weight: 500; }
.reviews { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.25rem; }
.review { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: 1.5rem; margin: 0; }
.stars { color: var(--gold); letter-spacing: .1em; font-size: 1.05rem; }
.review blockquote { margin: .8rem 0 1rem; font-family: var(--serif); font-size: 1.15rem; line-height: 1.45; }
.review figcaption { font-size: .92rem; color: var(--ink-2); }

/* ---------- FAQ ---------- */
.faq { border-top: 1px solid var(--ink); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer; padding: 1.2rem 2.5rem 1.2rem 0; position: relative;
  font-family: var(--serif); font-size: clamp(1.15rem, 2vw, 1.4rem); line-height: 1.3;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: .25rem; top: 1.1rem; font-family: var(--sans); font-size: 1.5rem; color: var(--gold-2); }
.faq details[open] summary::after { content: "−"; }
.faq .answer { padding: 0 0 1.4rem; color: var(--ink-2); white-space: pre-line; }

/* ---------- Final CTA ---------- */
.cta { text-align: center; }
.cta h2 { font-size: clamp(2.4rem, 6vw, 4.6rem); }
.cta p { margin-inline: auto; }
.cta .btn-row { justify-content: center; margin-top: 1.8rem; }
.cta .note { margin-top: 1rem; font-size: .92rem; color: var(--ink-2); }

/* ---------- Forms ---------- */
.form { display: grid; gap: 1.1rem; }
.field { display: grid; gap: .35rem; }
.field label, .field .label { font-weight: 600; font-size: .95rem; }
.field .hint { font-size: .85rem; color: var(--ink-2); font-weight: 400; }
.input, .form input[type="text"], .form input[type="email"], .form input[type="tel"], .form input[type="date"], .form textarea, .form select {
  width: 100%; min-height: 52px; padding: .8rem 1rem; border-radius: 10px; border: 1px solid #C9C0AE; background: #fff; font: inherit; color: var(--ink);
}
.form textarea { min-height: 120px; resize: vertical; }
.form input:focus, .form textarea:focus, .form select:focus { outline: 2px solid var(--gold); outline-offset: 1px; border-color: var(--gold); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 600px) { .field-row { grid-template-columns: 1fr; } }
.check { display: flex; gap: .7rem; align-items: flex-start; font-size: .93rem; }
.check input { width: 22px; height: 22px; flex: none; margin-top: .1rem; accent-color: var(--olive); }
.hp { position: absolute !important; left: -10000px !important; width: 1px; height: 1px; overflow: hidden; }
.form-error { color: var(--danger); font-weight: 600; min-height: 1.2em; margin: 0; }
.form-ok { background: var(--olive-soft); border-radius: var(--r); padding: 1.5rem; }
.form-ok h3 { margin-bottom: .4em; }

/* ---------- Booking page ---------- */
.booking { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); gap: clamp(1.5rem, 4vw, 3rem); align-items: start; }
@media (max-width: 960px) { .booking { grid-template-columns: 1fr; } }
.booking .cal { border: 1px solid var(--line); }
.step-block { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: clamp(1.2rem, 3vw, 1.8rem); margin-bottom: 1rem; }
.step-block h2 { font-size: 1.6rem; margin-bottom: .6rem; }
.step-block.locked { opacity: .5; }
.summary-line { font-family: var(--serif); font-size: 1.35rem; margin: 0 0 1rem; }
.pay-note { font-size: .95rem; color: var(--ink-2); border-left: 3px solid var(--gold); padding-left: 1rem; margin: 1rem 0; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.25rem; }
.contact-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: 1.6rem; }
.contact-card h3 { font-size: 1.4rem; }

/* ---------- Prose / legal ---------- */
.prose h2 { font-size: 1.8rem; margin-top: 2rem; }
.prose ul { padding-left: 1.2rem; }
.split { display: grid; grid-template-columns: repeat(var(--n, 2), minmax(0, 1fr)); gap: clamp(1.5rem, 5vw, 4rem); }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } }
.callout { background: var(--olive-soft); border-radius: var(--r); padding: 1.6rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--olive-deep); color: rgba(251, 248, 242, .85); padding-block: 3.5rem 2.5rem; font-size: .95rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h2 { font-size: 1.5rem; color: var(--paper); }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .45rem; }
.site-footer a { text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.footer-bottom { border-top: 1px solid rgba(251, 248, 242, .15); margin-top: 2.5rem; padding-top: 1.5rem; font-size: .85rem; display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; justify-content: space-between; }

/* ---------- Cookie banner ---------- */
.consent {
  position: fixed; z-index: 60; left: 1rem; right: 1rem; bottom: calc(1rem + var(--sticky-h));
  max-width: 520px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--r);
  padding: 1.2rem; box-shadow: 0 12px 40px rgba(30, 30, 20, .2); font-size: .93rem;
}
.consent p { margin-bottom: .8rem; }

[hidden] { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); border: 0; }

/* =========================================================
   Bloques del editor visual
   ========================================================= */
.pg-wait main { visibility: hidden; }
.sticky-cta.off { display: none !important; }
.more { margin: 1.5rem 0 0; }
.h3-size { font-size: clamp(1.35rem, 2.3vw, 1.75rem); line-height: 1.15; }
.prose > :last-child { margin-bottom: 0; }
.prose h3 { margin-top: 1.4rem; }
.prose h2:first-child, .prose h3:first-child { margin-top: 0; }
.callout .btn-row { margin-top: 1.2rem; }
.about.img-right > .portrait { order: 2; }
@media (max-width: 860px) { .about.img-right > .portrait { order: 0; } }
.wrap.wide { --wrap: 1400px; }
.full { width: 100%; }
.left { text-align: left; }
.center .btn-row { justify-content: center; }
.center .section-head { margin-inline: auto; }
@media (max-width: 860px) { .hide-d { display: none !important; } }
@media (min-width: 861px) { .hide-m { display: none !important; } }

/* Espacios */
.blk.pt-none { padding-top: 0; } .blk.pb-none { padding-bottom: 0; }
.blk.pt-s { padding-top: clamp(1.5rem, 3vw, 2.5rem); } .blk.pb-s { padding-bottom: clamp(1.5rem, 3vw, 2.5rem); }
.blk.pt-m { padding-top: clamp(3rem, 6vw, 5rem); } .blk.pb-m { padding-bottom: clamp(3rem, 6vw, 5rem); }
.blk.pt-l { padding-top: clamp(4rem, 9vw, 7.5rem); } .blk.pb-l { padding-bottom: clamp(4rem, 9vw, 7.5rem); }
.blk.pt-xl { padding-top: clamp(6rem, 12vw, 10rem); } .blk.pb-xl { padding-bottom: clamp(6rem, 12vw, 10rem); }

/* Fondos */
.blk.bg-claro { background: var(--ivory); } .blk.bg-papel { background: var(--paper); } .blk.bg-crema { background: var(--olive-soft); }
.blk.bg-oscuro { background: var(--ink); } .blk.bg-oliva { background: var(--olive); } .blk.bg-oliva-oscuro { background: var(--olive-deep); }
.blk.bg-dorado { background: var(--gold); }
.blk.bg-imagen { position: relative; isolation: isolate; background-color: var(--olive-deep); background-size: cover; background-position: center; }
.blk.bg-imagen::before { content: ""; position: absolute; inset: 0; z-index: -1; background: rgba(25, 26, 18, .55); }
.blk.bg-imagen.ov-suave::before { background: rgba(25, 26, 18, .3); }
.blk.bg-imagen.ov-fuerte::before { background: rgba(25, 26, 18, .78); }

/* Secciones oscuras: el texto y las líneas se aclaran solos */
.is-dark { color: var(--paper); --ink-2: rgba(251, 248, 242, .8); --line: rgba(251, 248, 242, .22); }
.is-dark :is(.moments, .instruments, .faq) , .is-dark .steps li { border-color: rgba(251, 248, 242, .45); }
.is-dark .btn-primary { background: var(--paper); color: var(--ink); }
.is-dark .btn-primary:hover { background: #fff; }
.is-dark .btn-ghost { color: var(--paper); }
:is(.cal, .price-card, .step-block, .contact-card, .callout, .form-ok, .mood, .config, .review, .empty, .b-quote) { --ink-2: var(--ink-2-base); --line: var(--line-base); }
.is-dark :is(.mood, .config, .callout, .contact-card, .review, .empty, .step-block, .price-card:not(.featured)) { color: var(--ink); }
.is-dark :is(.mood, .config, .callout, .contact-card, .review, .step-block) .btn-primary { background: var(--ink); color: var(--paper); }

/* Portada con imagen */
.hero.hero-h-media { min-height: min(66svh, 640px); }
.hero.hero-h-baja { min-height: 0; padding-top: clamp(5rem, 10vw, 8rem); }
.hero.ov-suave::before { background: linear-gradient(180deg, rgba(25, 26, 18, .05) 0%, rgba(25, 26, 18, .2) 45%, rgba(25, 26, 18, .6) 100%); }
.hero.ov-fuerte::before { background: linear-gradient(180deg, rgba(25, 26, 18, .45) 0%, rgba(25, 26, 18, .6) 45%, rgba(25, 26, 18, .9) 100%); }
.hero.center .wrap { text-align: center; } .hero.center h1, .hero.center h2 { margin-inline: auto; }

/* Imagen, galería, vídeo, cita */
.b-figure { margin: 0; }
.b-figure img { width: 100%; height: auto; border-radius: var(--r); }
.b-figure[style*="--ratio"] img { aspect-ratio: var(--ratio); object-fit: cover; }
.full .b-figure img { border-radius: 0; }
.b-figure figcaption { font-size: .9rem; color: var(--ink-2); margin-top: .6rem; }
.b-gallery { display: grid; grid-template-columns: repeat(var(--cols, 3), minmax(0, 1fr)); gap: .75rem; }
@media (max-width: 700px) { .b-gallery { grid-template-columns: 1fr 1fr; } }
.b-gallery figure { margin: 0; aspect-ratio: 4 / 5; overflow: hidden; border-radius: var(--r-sm); background: var(--olive-soft); }
.b-gallery img { width: 100%; height: 100%; object-fit: cover; }
.b-video.is-vertical { max-width: 380px; }
.center .b-video.is-vertical { margin-inline: auto; }
.b-video video { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.b-quote { margin: 0; }
.b-quote blockquote { margin: 0; font-family: var(--serif); font-size: clamp(1.7rem, 4vw, 2.8rem); line-height: 1.2; text-wrap: balance; }
.b-quote figcaption { margin-top: 1.2rem; color: var(--ink-2); }
.b-spacer.sp-s { height: clamp(1rem, 2vw, 1.5rem); } .b-spacer.sp-m { height: clamp(2rem, 5vw, 4rem); } .b-spacer.sp-l { height: clamp(4rem, 9vw, 7rem); }
.b-divider hr { border: 0; border-top: 1px solid var(--line); margin: 0; }
.b-divider { padding-block: 1.5rem; }
.b-empty { border: 1px dashed var(--line); border-radius: var(--r); padding: 2rem; text-align: center; color: var(--ink-2); }
.is-editing [data-bid][hidden] { display: block !important; opacity: .45; }
