/* ============================================================
   GUT ROSENHAIN — Eventlocation / Hochzeitsgut (plantilla-10)
   Design tokens: marfil + salvia + blush. Ovo (display) + Nunito Sans.
   Romántico aireado y sofisticado, nunca cursi. Mobile-first.
   Contenido visible por defecto; los estados de pre-animación viven
   bajo .js y caducan con .js-timeout.
   ============================================================ */

/* ---------- Fuentes autohospedadas ---------- */
@font-face {
  font-family: 'Ovo';
  src: url('../fonts/ovo-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Nunito Sans';
  src: url('../fonts/nunito-sans-var.woff2') format('woff2-variations');
  font-weight: 300 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Nunito Sans';
  src: url('../fonts/nunito-sans-italic-var.woff2') format('woff2-variations');
  font-weight: 300 800;
  font-style: italic;
  font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  --ivory: #faf6ef;
  --ivory-2: #f3ecde;
  --cream: #fffdf8;
  --ink: #33372d;
  --ink-soft: #4f5347;
  --ink-dim: #7c7f70;
  --sage: #6f8264;
  --sage-deep: #4f6047;
  --sage-darker: #3c4a36;
  --sage-soft: #dde4d3;
  --sage-line: rgba(79, 96, 71, 0.16);
  --blush: #d69f96;
  --blush-soft: #f0dbd4;
  --paper-line: rgba(51, 55, 45, 0.12);
  --on-dark: #f2efe6;
  --on-dark-dim: #c3c9b8;
  --line-dark: rgba(242, 239, 230, 0.16);
  --font-display: 'Ovo', Georgia, 'Times New Roman', serif;
  --font-body: 'Nunito Sans', system-ui, -apple-system, sans-serif;
  --wrap: 74rem;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-soft: 0 26px 60px -30px rgba(51, 55, 45, 0.4);
  --shadow-card: 0 18px 44px -24px rgba(51, 55, 45, 0.32);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3, dt, dd, figure, blockquote, p, ul, ol, dl { margin: 0; }
ul, ol { padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; }
input, select, textarea { font: inherit; }
em { font-style: italic; }

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

.visually-hidden {
  position: absolute; width: 1px; height: 1px; margin: -1px;
  clip-path: inset(50%); overflow: hidden; white-space: nowrap; border: 0; padding: 0;
}
.skip-link {
  position: absolute; left: 1rem; top: -4rem; z-index: 200;
  background: var(--sage); color: var(--cream); padding: 0.6rem 1.1rem;
  font-family: var(--font-body); font-weight: 700; text-decoration: none;
  border-radius: 6px; transition: top 0.25s var(--ease-out);
}
.skip-link:focus { top: 1rem; }
::selection { background: var(--blush-soft); color: var(--ink); }
:focus-visible { outline: 2px solid var(--sage); outline-offset: 3px; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset-inline: 0; top: 0; z-index: 100;
  padding-block: 1.15rem;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}
.site-header.is-scrolled {
  background: rgba(250, 246, 239, 0.86);
  backdrop-filter: blur(14px);
  padding-block: 0.7rem;
  box-shadow: 0 1px 0 var(--sage-line);
}
.header-inner { display: flex; align-items: center; gap: 1.5rem; }
.brand {
  display: inline-flex; align-items: center; gap: 0.65rem;
  font-family: var(--font-display); font-size: 1.28rem;
  letter-spacing: 0.01em; text-decoration: none; color: var(--ink);
}
.brand-mark {
  display: inline-block; width: 1.55rem; height: 1.55rem; flex: none;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath d='M16 5c2.4 4.6 8 5.6 8 11.2a8 8 0 1 1-16 0C8 10.6 13.6 9.6 16 5z' fill='none' stroke='%236f8264' stroke-width='2'/%3E%3C/svg%3E") center / contain no-repeat;
}
.site-nav { margin-left: auto; }
.site-nav ul { display: flex; gap: 1.7rem; }
.site-nav a {
  font-family: var(--font-body); font-weight: 600; font-size: 0.92rem;
  letter-spacing: 0.01em; text-decoration: none; color: var(--ink-soft);
  transition: color 0.25s ease;
}
.site-nav a:hover, .site-nav a:focus-visible { color: var(--sage); }
@media (max-width: 55.9rem) { .site-nav { display: none; } }

/* Header sobre el hero (estado no-scrolled): texto claro para legibilidad */
.site-header:not(.is-scrolled) .brand,
.site-header:not(.is-scrolled) .site-nav a,
.site-header:not(.is-scrolled) .btn-nav { color: #fdfbf5; }
.site-header:not(.is-scrolled) .brand,
.site-header:not(.is-scrolled) .site-nav a { text-shadow: 0 1px 14px rgba(30, 28, 22, 0.5); }
.site-header:not(.is-scrolled) .site-nav a:hover,
.site-header:not(.is-scrolled) .site-nav a:focus-visible { color: #eabfae; }
.site-header:not(.is-scrolled) .btn-nav { border-color: rgba(255, 255, 255, 0.5); }
.site-header:not(.is-scrolled) .btn-nav:hover,
.site-header:not(.is-scrolled) .btn-nav:focus-visible { background: rgba(255, 255, 255, 0.14); color: #fff; border-color: #fff; }
.site-header:not(.is-scrolled) .brand-mark { filter: brightness(0) invert(1); opacity: 0.92; }
/* Sin JS: el header no puede alternar a "scrolled" -> barra sólida clara, texto oscuro, legible en todas las secciones */
html:not(.js) .site-header { background: rgba(250, 246, 239, 0.92); backdrop-filter: blur(12px); box-shadow: 0 1px 0 var(--sage-line); }
html:not(.js) .site-header .brand,
html:not(.js) .site-header .site-nav a,
html:not(.js) .site-header .btn-nav { color: var(--ink); text-shadow: none; }
html:not(.js) .site-header .btn-nav { border-color: var(--sage-line); }
html:not(.js) .site-header .brand-mark { filter: none; opacity: 1; }

/* ---------- Botones ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.5rem; padding: 0.85rem 1.7rem; border-radius: 100px;
  font-family: var(--font-body); font-weight: 700; font-size: 0.95rem;
  letter-spacing: 0.01em; text-decoration: none; border: 1px solid transparent;
  transition: transform 0.3s var(--ease-out), background 0.3s ease,
              color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.btn-primary { background: var(--sage); color: var(--cream); box-shadow: 0 10px 24px -14px rgba(79, 96, 71, 0.9); }
.btn-primary:hover, .btn-primary:focus-visible { background: var(--sage-deep); transform: translateY(-2px); }
.btn-ghost { border-color: var(--sage-line); color: var(--ink); }
.btn-ghost:hover, .btn-ghost:focus-visible { border-color: var(--sage); color: var(--sage-deep); background: rgba(111, 130, 100, 0.06); }
.btn-nav { padding: 0.55rem 1.25rem; border-color: var(--sage-line); color: var(--ink); font-size: 0.88rem; }
.btn-nav:hover, .btn-nav:focus-visible { border-color: var(--sage); color: var(--sage-deep); }
.btn-block { width: 100%; }

/* ---------- Etiquetas de sección ---------- */
.sec-label {
  font-family: var(--font-body); font-weight: 700; font-size: 0.78rem;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--sage);
  display: flex; align-items: center; gap: 0.8rem;
}
.sec-label::before { content: ''; width: 2rem; height: 1px; background: var(--sage); }
.sec-label-light { color: var(--blush); }
.sec-label-light::before { background: var(--blush); }
.sec-title {
  font-family: var(--font-display); font-weight: 400; line-height: 1.08;
  font-size: clamp(2.1rem, 4.8vw, 3.5rem); letter-spacing: -0.005em;
  margin-top: 1.1rem; max-width: 22ch; color: var(--ink);
}
.sec-lead { margin-top: 1.2rem; max-width: 52ch; color: var(--ink-dim); font-size: 1.08rem; }
.sec-lead-light { color: var(--on-dark-dim); }

/* ---------- HERO ---------- */
.hero { position: relative; min-height: 100svh; display: flex; flex-direction: column; justify-content: center; overflow: clip; }
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(46, 42, 36, 0.62) 2%, rgba(46, 42, 36, 0.12) 42%, rgba(46, 42, 36, 0.44) 100%),
    linear-gradient(105deg, rgba(40, 38, 32, 0.55) 8%, rgba(40, 38, 32, 0.05) 60%);
}
.hero-inner { position: relative; padding-block: 8rem 3rem; }
.hero-kicker {
  font-family: var(--font-body); font-weight: 700; font-size: 0.82rem;
  letter-spacing: 0.24em; text-transform: uppercase; color: #f4ede0;
}
.hero-title {
  font-family: var(--font-display); font-weight: 400; color: #fdfbf5;
  font-size: clamp(2.9rem, 8.2vw, 6.4rem); line-height: 1.02;
  letter-spacing: -0.01em; margin-top: 1.4rem; max-width: 18ch;
  text-shadow: 0 2px 30px rgba(30, 28, 22, 0.35);
}
.hero-title em { font-style: normal; color: #eabfae; }
.hero-title .line { display: block; overflow: hidden; padding-bottom: 0.08em; }
.hero-title .line-inner { display: inline-block; }
.hero-lead { margin-top: 1.8rem; max-width: 46ch; font-size: 1.16rem; color: #f0e9dc; line-height: 1.66; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2.4rem; }
.hero .btn-ghost { color: #fdfbf5; border-color: rgba(255, 255, 255, 0.55); }
.hero .btn-ghost:hover, .hero .btn-ghost:focus-visible { color: #fff; border-color: #fff; background: rgba(255, 255, 255, 0.12); }
.hero-foot {
  position: relative; display: flex; flex-wrap: wrap; gap: 0.8rem 2.6rem;
  padding-block: 1.4rem 2rem; border-top: 1px solid rgba(255, 255, 255, 0.2); margin-top: auto;
}
.hero-foot-item {
  font-family: var(--font-body); font-weight: 600; font-size: 0.86rem;
  letter-spacing: 0.04em; color: #efe8db;
  display: flex; align-items: center; gap: 0.55rem;
}
.hero-foot-item::before { content: ''; width: 0.4rem; height: 0.4rem; border-radius: 50%; background: var(--blush); }

.js:not(.js-timeout) .hero-title .line-inner { transform: translateY(112%); }
.js:not(.js-timeout) [data-hero-el] { opacity: 0; transform: translateY(22px); }

/* ---------- INTRO ---------- */
.intro { padding-block: clamp(4.5rem, 10vw, 8rem); background: var(--cream); }
.intro-inner { max-width: 60rem; }
.statement {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(1.6rem, 3.4vw, 2.6rem); line-height: 1.34;
  letter-spacing: -0.005em; margin-top: 1.4rem; max-width: 30ch; color: var(--ink);
}
.statement .w { display: inline-block; }
.js:not(.js-timeout) .statement .w { opacity: 0.16; }

/* ---------- RÄUME (recorrido con crossfade) ---------- */
.raeume { padding-block: clamp(4.5rem, 10vw, 8rem); }
.raeume-head { margin-bottom: 3rem; }
.tour { display: grid; gap: 2rem; }
@media (min-width: 62rem) { .tour { grid-template-columns: 20rem 1fr; gap: 3.5rem; align-items: start; } }
.tour-tabs { display: grid; gap: 0.8rem; }
.tour-tab {
  display: grid; gap: 0.2rem; text-align: left;
  padding: 1.1rem 1.3rem; border-radius: 12px;
  background: var(--cream); border: 1px solid var(--paper-line);
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s var(--ease-out);
}
.tour-tab:hover { transform: translateY(-2px); border-color: var(--sage-line); }
.tour-tab.is-active { border-color: var(--sage); background: var(--sage-soft); }
.tt-num { font-family: var(--font-display); font-size: 0.9rem; color: var(--sage); }
.tt-name { font-family: var(--font-display); font-size: 1.35rem; color: var(--ink); line-height: 1.1; }
.tt-meta { font-size: 0.85rem; color: var(--ink-dim); }
.tour-tab.is-active .tt-num { color: var(--sage-deep); }

.tour-stage { position: relative; }
.tour-panel { display: grid; gap: 1.6rem; }
.tour-media { border-radius: 14px; overflow: clip; box-shadow: var(--shadow-card); }
.tour-media img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.tour-name { font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.1rem); color: var(--ink); }
.tour-text { margin-top: 0.7rem; color: var(--ink-dim); max-width: 52ch; }
.tour-facts { display: flex; flex-wrap: wrap; gap: 1rem 2.2rem; margin-top: 1.5rem; padding-top: 1.3rem; border-top: 1px solid var(--paper-line); }
.tour-facts li { font-size: 0.92rem; color: var(--ink-dim); }
.tour-facts span { display: block; font-family: var(--font-display); font-size: 1.5rem; color: var(--sage-deep); line-height: 1.1; }

/* Modo JS: panels apilados en la misma celda -> crossfade por opacidad */
.js .tour-stage { display: grid; }
.js .tour-panel { grid-area: 1 / 1; opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(12px); transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out); }
.js .tour-panel.is-active { opacity: 1; visibility: visible; pointer-events: auto; transform: none; }
/* Sin JS: mostramos todos los espacios apilados y ocultamos las pestañas */
html:not(.js) .tour-tabs { display: none; }
html:not(.js) .tour-stage { display: grid; gap: 3rem; }
html:not(.js) .tour-panel[hidden] { display: grid; }

/* ---------- GALERIE (masonry + lightbox) ---------- */
.galerie { padding-block: clamp(4.5rem, 10vw, 8rem); background: var(--cream); }
.galerie-head { margin-bottom: 2.8rem; }
.masonry { columns: 1; column-gap: 1.2rem; }
@media (min-width: 40rem) { .masonry { columns: 2; } }
@media (min-width: 64rem) { .masonry { columns: 3; column-gap: 1.4rem; } }
.mas-item { break-inside: avoid; margin-bottom: 1.2rem; }
@media (min-width: 64rem) { .mas-item { margin-bottom: 1.4rem; } }
.mas-btn {
  display: block; width: 100%; padding: 0; border: 0; border-radius: 12px;
  overflow: clip; background: var(--ivory-2); position: relative;
  box-shadow: var(--shadow-card);
}
.mas-btn img { width: 100%; height: auto; display: block; transition: transform 0.9s var(--ease-out), filter 0.5s ease; }
.mas-btn::after {
  content: ''; position: absolute; inset: 0; border-radius: 12px;
  background: linear-gradient(to top, rgba(46, 42, 36, 0.28), transparent 45%);
  opacity: 0; transition: opacity 0.4s ease;
}
.mas-btn:hover img, .mas-btn:focus-visible img { transform: scale(1.05); }
.mas-btn:hover::after, .mas-btn:focus-visible::after { opacity: 1; }
.js:not(.js-timeout) .mas-item { opacity: 0; transform: translateY(26px); }

/* Lightbox */
.lightbox {
  border: 0; padding: 0; max-width: 100vw; max-height: 100vh;
  width: 100%; height: 100%; background: transparent;
}
.lightbox::backdrop { background: rgba(28, 26, 21, 0.9); backdrop-filter: blur(4px); }
.lightbox[open] { display: grid; place-items: center; }
.lb-stage {
  margin: 0; padding: 1.5rem; max-width: min(92vw, 68rem);
  display: grid; place-items: center;
}
.lb-stage img { width: auto; height: auto; max-width: 100%; max-height: 82vh; border-radius: 8px; box-shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.7); }
.lb-close, .lb-arrow {
  position: fixed; z-index: 2; display: grid; place-items: center;
  width: 3rem; height: 3rem; border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3); background: rgba(28, 26, 21, 0.5);
  color: #fff; font-size: 1.4rem; line-height: 1; backdrop-filter: blur(6px);
  transition: background 0.25s ease, transform 0.25s var(--ease-out);
}
.lb-close:hover, .lb-arrow:hover, .lb-close:focus-visible, .lb-arrow:focus-visible { background: var(--sage); transform: scale(1.06); }
.lb-close { top: 1.2rem; right: 1.2rem; font-size: 1.7rem; }
.lb-arrow { top: 50%; transform: translateY(-50%); }
.lb-arrow:hover, .lb-arrow:focus-visible { transform: translateY(-50%) scale(1.06); }
.lb-prev { left: 1.2rem; }
.lb-next { right: 1.2rem; }
.lb-count {
  position: fixed; bottom: 1.4rem; left: 50%; transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.85); font-size: 0.9rem; letter-spacing: 0.08em;
  font-weight: 600;
}
@media (max-width: 40rem) {
  .lb-arrow { top: auto; bottom: 1.4rem; transform: none; }
  .lb-arrow:hover, .lb-arrow:focus-visible { transform: scale(1.06); }
  .lb-prev { left: 25%; }
  .lb-next { right: 25%; }
  .lb-count { bottom: 5.6rem; }
}

/* ---------- KAPAZITÄT (sección oscura + diagrama) ---------- */
.kapazitaet {
  padding-block: clamp(4.5rem, 10vw, 8rem);
  background: var(--sage-darker); color: var(--on-dark);
}
.kapazitaet .sec-title { color: var(--on-dark); }
.kap-inner { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 60rem) { .kap-inner { grid-template-columns: 1fr 1fr; gap: 4.5rem; } }
.kap-tabs { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 2rem; }
.kap-tab {
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding: 0.7rem 1.2rem; border-radius: 100px;
  background: transparent; border: 1px solid var(--line-dark); color: var(--on-dark-dim);
  font-weight: 700; font-size: 0.95rem;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.kap-tab:hover { color: var(--on-dark); border-color: rgba(242, 239, 230, 0.4); }
.kap-tab.is-active { background: var(--blush-soft); color: var(--sage-darker); border-color: var(--blush-soft); }
.kap-num { font-family: var(--font-display); font-size: 1.05rem; }
.kap-tab.is-active .kap-num { color: var(--sage-deep); }
.kap-note { margin-top: 1.4rem; color: var(--on-dark-dim); max-width: 46ch; min-height: 3.4rem; }
.kap-diagramm {
  background: rgba(242, 239, 230, 0.04); border: 1px solid var(--line-dark);
  border-radius: 16px; padding: 1.2rem;
}
.kap-diagramm svg { width: 100%; height: auto; display: block; }
.kap-floor { fill: rgba(242, 239, 230, 0.05); stroke: var(--line-dark); stroke-width: 1; }
.kap-stage-rect { fill: rgba(214, 159, 150, 0.16); stroke: rgba(214, 159, 150, 0.4); stroke-width: 1; }
.kap-tag { fill: var(--on-dark-dim); font-family: var(--font-body); font-size: 12px; font-weight: 600; letter-spacing: 0.04em; }
.kap-tag-small { font-size: 10px; fill: var(--blush); }
.kap-dot { fill: var(--sage-soft); }
.kap-dot-accent { fill: var(--blush); }

/* ---------- EUER TAG (timeline) ---------- */
.tag { padding-block: clamp(4.5rem, 10vw, 8rem); }
.tag-head { margin-bottom: 3.2rem; }
.tagline { position: relative; display: grid; gap: clamp(2.6rem, 5vw, 4rem); padding-left: 2.4rem; }
.tagline-rail { position: absolute; left: 0.5rem; top: 0.5rem; bottom: 0.5rem; width: 2px; background: var(--sage-line); border-radius: 2px; overflow: hidden; }
.tagline-rail span { display: block; width: 100%; height: 100%; background: var(--sage); transform-origin: top; transform: scaleY(0); }
html:not(.js) .tagline-rail span, .js-timeout .tagline-rail span { transform: none; }
.moment { position: relative; display: grid; gap: 1rem; }
@media (min-width: 54rem) { .moment { grid-template-columns: 15rem 1fr; gap: 2rem; align-items: start; } }
.moment::before {
  content: ''; position: absolute; left: -2.4rem; top: 0.3rem;
  width: 0.85rem; height: 0.85rem; border-radius: 50%;
  background: var(--ivory); border: 2px solid var(--sage);
  box-shadow: 0 0 0 4px var(--ivory);
}
.moment-time {
  font-family: var(--font-display); font-size: 1.5rem; color: var(--sage-deep);
  line-height: 1;
}
.moment-media { border-radius: 12px; overflow: clip; box-shadow: var(--shadow-card); }
@media (min-width: 54rem) { .moment-media { grid-row: 1 / span 3; grid-column: 1; } }
.moment-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.moment-title { font-family: var(--font-display); font-size: 1.5rem; color: var(--ink); margin-top: 0.2rem; }
.moment-text { color: var(--ink-dim); max-width: 46ch; }
@media (min-width: 54rem) {
  .moment-time { grid-column: 2; }
  .moment-title { grid-column: 2; }
  .moment-text { grid-column: 2; }
}
.js:not(.js-timeout) .moment { opacity: 0; transform: translateY(28px); }

/* ---------- SERVICE ---------- */
.service { padding-block: clamp(4.5rem, 10vw, 8rem); background: var(--cream); }
.service .sec-title { margin-bottom: 2.8rem; }
.service-grid { display: grid; gap: 1.4rem; }
@media (min-width: 40rem) { .service-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 64rem) { .service-grid { grid-template-columns: repeat(4, 1fr); } }
.svc {
  padding: 1.8rem 1.6rem; border-radius: 14px;
  background: var(--ivory); border: 1px solid var(--paper-line);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s ease, border-color 0.35s ease;
}
.svc:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); border-color: var(--sage-line); }
.svc-name { font-family: var(--font-display); font-size: 1.35rem; color: var(--ink); }
.svc-text { margin-top: 0.7rem; color: var(--ink-dim); font-size: 0.98rem; }
.svc-meta { margin-top: 1.2rem; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--sage); font-weight: 700; }

/* ---------- FAQ ---------- */
.faq { padding-block: clamp(4.5rem, 10vw, 8rem); }
.faq-inner { display: grid; gap: 2.5rem; }
@media (min-width: 60rem) { .faq-inner { grid-template-columns: 22rem 1fr; gap: 4rem; align-items: start; } }
.faq-list { display: grid; gap: 0.9rem; }
.qa { border: 1px solid var(--paper-line); border-radius: 12px; background: var(--cream); overflow: hidden; }
.qa summary {
  list-style: none; cursor: pointer; padding: 1.2rem 1.4rem;
  font-family: var(--font-display); font-size: 1.18rem; color: var(--ink);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  transition: color 0.25s ease;
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary::after {
  content: ''; flex: none; width: 0.7rem; height: 0.7rem;
  border-right: 2px solid var(--sage); border-bottom: 2px solid var(--sage);
  transform: rotate(45deg); transition: transform 0.3s var(--ease-out);
  margin-right: 0.3rem;
}
.qa[open] summary::after { transform: rotate(-135deg); }
.qa summary:hover { color: var(--sage-deep); }
.qa-body { padding: 0 1.4rem 1.3rem; color: var(--ink-dim); }
.qa-body p { max-width: 60ch; }

/* ---------- BESICHTIGUNG (sección oscura + formulario) ---------- */
.besichtigung {
  background: var(--sage-deep); color: var(--on-dark);
  padding-block: clamp(4.5rem, 10vw, 8rem) 3rem;
}
.besichtigung .sec-title { color: #fdfbf5; }
.bes-inner { display: grid; gap: 3rem; }
@media (min-width: 60rem) { .bes-inner { grid-template-columns: 1fr 1fr; gap: 4.5rem; align-items: center; } }
.bes-form {
  background: rgba(255, 253, 248, 0.06); border: 1px solid var(--line-dark);
  border-radius: 16px; padding: clamp(1.6rem, 3vw, 2.4rem);
  display: grid; gap: 1.1rem;
}
.field { display: grid; gap: 0.45rem; }
.field-row { display: grid; gap: 1.1rem; }
@media (min-width: 30rem) { .field-row { grid-template-columns: 1fr 1fr; } }
.field label {
  font-family: var(--font-body); font-weight: 700; font-size: 0.8rem;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--on-dark-dim);
}
.field input, .field select {
  background: rgba(28, 32, 24, 0.4); border: 1px solid var(--line-dark);
  border-radius: 8px; color: var(--on-dark); padding: 0.8rem 0.95rem;
  transition: border-color 0.25s ease;
}
.field select { appearance: none; }
.field input:focus-visible, .field select:focus-visible { outline: none; border-color: var(--blush); }
.bes-note { font-size: 0.85rem; color: var(--on-dark-dim); font-style: italic; }
.besichtigung .btn-primary { background: var(--blush); color: var(--sage-darker); box-shadow: none; }
.besichtigung .btn-primary:hover, .besichtigung .btn-primary:focus-visible { background: #e6b4a8; }
.kontakt-details {
  display: flex; flex-wrap: wrap; gap: 1.2rem 3.5rem;
  margin-top: clamp(3rem, 7vw, 4.5rem); padding-top: 1.6rem; border-top: 1px solid var(--line-dark);
}
.kontakt-details li { display: grid; gap: 0.2rem; }
.kd-label {
  font-family: var(--font-body); font-weight: 700; font-size: 0.72rem;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--blush);
}
.kontakt-details a { text-decoration: none; }
.kontakt-details a:hover { color: #fff; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--paper-line); padding-block: 3rem 2.2rem; background: var(--ivory); }
.footer-inner { display: grid; gap: 2.2rem; }
@media (min-width: 48rem) { .footer-inner { grid-template-columns: 1fr auto; align-items: start; } }
.brand-lg { font-size: 1.4rem; }
.footer-brand p { margin-top: 0.9rem; color: var(--ink-dim); font-size: 0.95rem; }
.footer-nav { display: flex; gap: 3.5rem; }
.footer-nav ul { display: grid; gap: 0.55rem; }
.footer-nav a { text-decoration: none; color: var(--ink-dim); font-size: 0.95rem; transition: color 0.25s ease; }
.footer-nav a:hover, .footer-nav a:focus-visible { color: var(--sage); }
.footer-legal { grid-column: 1 / -1; padding-top: 1.6rem; border-top: 1px solid var(--paper-line); font-size: 0.82rem; color: var(--ink-dim); }

/* ---------- Revelados genéricos ---------- */
.js:not(.js-timeout) [data-reveal] { opacity: 0; transform: translateY(24px); }
.js:not(.js-timeout) [data-reveal-lines] { opacity: 0; transform: translateY(28px); }

/* ---------- Reduced motion: todo visible, nada se mueve ---------- */
@media (prefers-reduced-motion: reduce) {
  .js [data-reveal], .js [data-reveal-lines], .js [data-hero-el],
  .js .mas-item, .js .moment, .js .hero-title .line-inner, .js .statement .w {
    opacity: 1 !important; transform: none !important;
  }
  .js .tour-panel { transition: none !important; }
  .tagline-rail span { transform: none !important; }
  *, *::before, *::after {
    animation-duration: 0.001s !important; transition-duration: 0.001s !important;
  }
}
