/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --cream: #f7f1e7;
  --cream-2: #efe4d2;
  --card: #fbf7f0;
  --ink: #201c18;
  --ink-soft: #52493f;
  --ink-faint: #8b7f70;

  --taupe: #a9855f;
  --taupe-soft: #c9ac83;
  --champagne: #e3d2ad;
  --olive: #767c53;
  --olive-deep: #565b3c;
  --riman-green: #2d5849;
  --sage: #e4ead9;
  --sage-2: #cddabc;
  --sage-deep: #3f5a3a;

  --line: rgba(32, 28, 24, 0.12);
  --line-soft: rgba(32, 28, 24, 0.08);
  --white: #fffdf9;

  --serif: "Playfair Display", "Iowan Old Style", Georgia, serif;
  --sans: "Manrope", "Inter", -apple-system, BlinkMacSystemFont, sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);

  --gutter: clamp(1.25rem, 4vw, 3.5rem);
  --nav-h: 84px;
}

/* Dark editorial section (reserva) reuses the same palette but flips
   the roles — kept as an explicit var rather than a global theme
   switch, since only one section opts in. */
.section--reserva {
  --bg: var(--ink);
  --fg: var(--cream);
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  tab-size: 2;
  scroll-behavior: smooth;
  overflow-x: clip;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
  padding-bottom: 0;
}
@media (max-width: 719px) {
  body { padding-bottom: 76px; } /* room for sticky mobile CTA */
}

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.05; letter-spacing: -0.01em; font-family: var(--serif); font-weight: 500; }
ul, ol { list-style: none; padding: 0; }
::selection { background: var(--olive); color: var(--white); }

:focus-visible {
  outline: 2px solid var(--olive);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.skip-link {
  position: fixed; top: -100px; left: 1rem;
  padding: .6rem 1rem; background: var(--ink); color: var(--cream);
  z-index: 9999; border-radius: 8px; font-weight: 600; transition: top .2s var(--ease-out);
}
.skip-link:focus { top: 1rem; }

/* =============================================================
   3. Buttons
   ============================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .95rem 1.8rem;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: transform .3s var(--ease-out), background-color .3s var(--ease-out), color .3s var(--ease-out);
  white-space: nowrap;
}
.btn-primary {
  background: var(--ink);
  color: var(--cream);
}
.btn-primary:hover { transform: translateY(-2px); background: var(--olive-deep); }
.btn-olive { background: var(--olive); color: var(--cream); }
.btn-olive:hover { transform: translateY(-2px); background: var(--olive-deep); }
.btn-small { padding: .6rem 1.2rem; font-size: .7rem; }
.btn-block { width: 100%; }
.btn span[aria-hidden] { transition: transform .3s var(--ease-out); }
.btn:hover span[aria-hidden] { transform: translateX(3px); }

/* =============================================================
   4. Header / nav
   ============================================================= */
.masthead {
  position: fixed; inset-block-start: 0; inset-inline: 0; z-index: 100;
  background: rgba(247, 241, 231, 0);
  border-bottom: 1px solid transparent;
  transition: background-color .35s var(--ease-out), border-color .35s var(--ease-out);
}
.masthead.is-scrolled {
  background: rgba(247, 241, 231, 0.92);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border-bottom-color: var(--line-soft);
}
.masthead-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  height: var(--nav-h);
}
.brand-badge {
  display: inline-flex; align-items: center; gap: .6rem;
}
.brand-logo--riman { height: 14px; width: auto; }
.brand-logo--vanyti { height: clamp(38px, 9vw, 60px); width: auto; }
.brand-x { font-family: var(--serif); font-style: italic; color: var(--ink-faint); font-size: .95rem; }

.masthead-nav { display: none; align-items: center; gap: 2rem; }
.masthead-nav a {
  font-size: .8rem; font-weight: 600; letter-spacing: .04em;
  color: var(--ink-soft);
  position: relative;
}
.masthead-nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 1px;
  background: var(--olive); transform: scaleX(0); transform-origin: right;
  transition: transform .3s var(--ease-out);
}
.masthead-nav a:hover { color: var(--ink); }
.masthead-nav a:hover::after { transform: scaleX(1); transform-origin: left; }

.masthead-cta { display: none; }

.masthead-rule { display: none; }

.nav-toggle {
  display: inline-flex; flex-direction: column; gap: 5px;
  width: 34px; height: 34px; align-items: center; justify-content: center;
}
.nav-toggle span { width: 20px; height: 1.5px; background: var(--ink); transition: transform .3s var(--ease-out), opacity .3s var(--ease-out); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav {
  display: none; flex-direction: column; gap: 1.1rem;
  padding: 1.5rem var(--gutter) 2rem;
  background: var(--cream);
  border-bottom: 1px solid var(--line-soft);
}
.mobile-nav a { font-size: .95rem; font-weight: 600; color: var(--ink-soft); }
.mobile-nav .btn { margin-top: .4rem; }
.mobile-nav.is-open { display: flex; }

@media (min-width: 960px) {
  :root { --nav-h: 132px; }
  .masthead-nav { display: flex; }
  .masthead-cta { display: inline-flex; }
  .nav-toggle { display: none; }
  .masthead-rule { display: block; width: 1px; height: 26px; background: var(--line); margin-inline-start: .4rem; }
  .brand-logo--riman { height: 28px; }
  .brand-logo--vanyti { height: 120px; }
}

/* =============================================================
   5. Hero
   ============================================================= */
.hero {
  position: relative;
  overflow: clip;
  background: var(--cream);
  padding-top: var(--nav-h);
}
.hero-media {
  position: relative;
  width: 100%; aspect-ratio: 4 / 5;
}
.hero-img { width: 100%; height: 100%; object-fit: cover; object-position: 65% 18%; }
.hero-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, var(--cream) 0%, rgba(247,241,231,.92) 22%, rgba(247,241,231,.25) 55%, transparent 75%);
}
.hero-caption {
  display: none;
}
.hero-inner { position: relative; z-index: 1; padding-block: 2.5rem 3rem; }
.hero-content { max-width: 46ch; }

.kicker {
  display: inline-block;
  font-size: .72rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--olive);
}
.kicker--dark { color: var(--olive-deep); }
.section--reserva .kicker { color: var(--champagne); }

.antetitulo {
  font-size: .78rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--olive-deep);
  margin-bottom: 1rem;
}

.hero-title {
  font-size: clamp(2.6rem, 10vw, 5.6rem);
  line-height: .96;
  color: var(--ink);
  max-width: 14ch;
  margin-bottom: 1.4rem;
}
.hero-title em { font-style: italic; font-weight: 400; color: var(--olive-deep); }

.hero-desc {
  font-size: 1.02rem;
  color: var(--ink-soft);
  max-width: 42ch;
  margin-bottom: 1.8rem;
}

.hero-cta-row { display: flex; flex-wrap: wrap; align-items: center; gap: 1.1rem 1.5rem; margin-bottom: 1.3rem; }
.hero-price { font-size: .85rem; color: var(--ink-soft); letter-spacing: .01em; }
.hero-price strong { color: var(--ink); font-weight: 700; }

.hero-meta {
  display: flex; flex-wrap: wrap; gap: .6rem 1rem; align-items: center;
  font-size: .72rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-faint);
  padding-top: 1.1rem; border-top: 1px solid var(--line);
}
.hero-meta span + span { position: relative; padding-left: 1.1rem; }
.hero-meta span + span::before {
  content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 1px; height: 10px; background: var(--line);
}

@media (min-width: 720px) {
  .hero { min-height: min(78svh, 660px); display: flex; align-items: center; }
  .hero-media { position: absolute; inset: 0 0 0 auto; width: 48%; aspect-ratio: auto; }
  .hero-scrim { background: linear-gradient(90deg, var(--cream) 0%, rgba(247,241,231,.55) 10%, transparent 26%); }
  .hero-inner { padding-block: 0; width: 100%; }
  .hero-img { object-position: 50% 16%; }
  .hero-caption {
    display: block; position: absolute; right: var(--gutter); bottom: 3rem; z-index: 1;
    font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; text-align: right;
    line-height: 1.7; color: var(--ink-faint);
  }
}
@media (min-width: 1280px) {
  .hero-media { width: 44%; }
}
@media (min-width: 1280px) {
  .hero-title { font-size: clamp(3.6rem, 7.2vw, 6.6rem); }
}

/* =============================================================
   6. Sections — shared
   ============================================================= */
.section { padding-block: clamp(4.5rem, 9vw, 8rem); background: var(--cream); }
.section--experiencia { background: var(--cream); }
.section--productos { background: linear-gradient(180deg, var(--cream-2) 0%, var(--sage) 100%); }
.section--productos .kicker--dark { color: var(--sage-deep); }
.section--faq { background: var(--cream); }
.section--cierre { background: var(--cream-2); }
.section--ritual { background: var(--cream); padding-block: 0; }
.section--reserva { background: var(--ink); color: var(--cream); }

.section-head { max-width: 60ch; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head .kicker { display: block; margin-bottom: .8rem; }
.section-title {
  font-size: clamp(1.9rem, 4.4vw, 3.1rem);
  color: var(--ink);
}
.section-title--light { color: var(--cream); }

/* Experiencia copy */
.experiencia-copy {
  max-width: 62ch;
  display: grid; gap: 1.1rem;
  color: var(--ink-soft);
  font-size: 1.02rem;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.editorial-caption {
  margin-top: .6rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
  font-size: .7rem; letter-spacing: .12em; text-transform: uppercase;
  line-height: 1.7; color: var(--olive-deep);
  max-width: 22ch;
}
.products-note + .editorial-caption { margin-top: 1.4rem; }
.editorial-caption--sage { color: var(--sage-deep); border-top-color: var(--sage-2); }

.pillars {
  display: grid; gap: 2.2rem;
  border-top: 1px solid var(--line);
  padding-top: 2.4rem;
}
.pillar-index {
  display: block;
  font-family: var(--serif); font-style: italic;
  font-size: 1.1rem; color: var(--taupe);
  margin-bottom: .6rem;
}
.pillar h3 { font-size: 1.15rem; color: var(--ink); margin-bottom: .5rem; }
.pillar p { color: var(--ink-soft); font-size: .93rem; max-width: 34ch; }

@media (min-width: 720px) {
  .pillars { grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
  .pillar { padding-inline-end: 1rem; border-right: 1px solid var(--line); }
  .pillar:last-child { border-right: 0; }
}

/* =============================================================
   7. Ritual — two-column editorial (photo + numbered list)
   ============================================================= */
.ritual-grid { display: grid; grid-template-columns: 1fr; }

.ritual-media { position: relative; aspect-ratio: 4 / 5; overflow: clip; }
.ritual-media img { width: 100%; height: 100%; object-fit: cover; }
.ritual-media-scrim { position: absolute; inset-inline: 0; height: 30%; pointer-events: none; }
.ritual-media-scrim--top { top: 0; background: linear-gradient(180deg, rgba(20, 22, 14, .45), transparent); }
.ritual-media-scrim--bottom { bottom: 0; background: linear-gradient(0deg, rgba(20, 22, 14, .5), transparent); }
.ritual-caption {
  position: absolute; z-index: 1; left: clamp(1.25rem, 4vw, 2.5rem);
  font-size: .68rem; letter-spacing: .14em; text-transform: uppercase;
  line-height: 1.7; color: var(--cream);
  padding-top: .7rem;
}
.ritual-caption::before {
  content: ""; position: absolute; top: 0; left: 0; width: 26px; height: 1px;
  background: rgba(247, 241, 231, .55);
}
.ritual-caption--top { top: clamp(1.25rem, 4vw, 2.5rem); }
.ritual-caption--bottom { bottom: clamp(1.25rem, 4vw, 2.5rem); }

.ritual-content { padding: 2.5rem var(--gutter) 3rem; }

.ritual-head { position: relative; margin-bottom: clamp(2rem, 4vw, 3rem); }
.ritual-kicker { display: inline-flex; align-items: center; gap: .8rem; margin-bottom: 1.4rem; }
.kicker-line { display: inline-block; width: 40px; height: 1px; background: var(--olive); }
.ritual-values {
  display: none;
}

.ritual-list { display: grid; gap: 0; }
.ritual-item {
  display: grid; grid-template-columns: auto 1fr;
  gap: 1.2rem;
  padding-block: 1.4rem;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.ritual-item:first-child { border-top: 1px solid var(--line); }
.ritual-n {
  font-family: var(--serif); font-size: 1.5rem; font-style: italic;
  color: var(--taupe);
}
.ritual-rule { display: none; }
.ritual-item h3 { font-size: 1.1rem; color: var(--ink); margin-bottom: .3rem; }
.ritual-item h3 em { font-style: italic; color: var(--olive-deep); }
.ritual-item p { color: var(--ink-soft); font-size: .9rem; max-width: 46ch; }

.ritual-note {
  margin-top: 1.6rem;
  font-size: .78rem; font-style: italic;
  color: var(--ink-faint);
}

.ritual-footer {
  margin-top: clamp(2rem, 4vw, 2.8rem);
  display: flex; flex-wrap: wrap; align-items: center; gap: 1.5rem 2.5rem;
}
.ritual-footer .editorial-caption { margin: 0; padding-top: .8rem; max-width: 26ch; }

@media (min-width: 720px) {
  .ritual-item { grid-template-columns: 60px auto 1fr; }
  .ritual-rule { display: block; width: 1px; align-self: stretch; background: var(--line); }
}

@media (min-width: 960px) {
  .ritual-grid { grid-template-columns: 42% 1fr; align-items: stretch; }
  .ritual-media { aspect-ratio: auto; height: 100%; min-height: 100%; }
  .ritual-content { padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 5vw, 4.5rem); }
  .ritual-values {
    display: block; position: absolute; top: 0; right: 0;
    font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; text-align: right; line-height: 1.9;
    color: var(--ink-faint);
    padding-top: .8rem; border-top: 1px solid var(--line);
  }
}

/* =============================================================
   8. Productos
   ============================================================= */
.products-grid {
  display: grid; gap: 1.6rem;
  grid-template-columns: repeat(2, 1fr);
}
.product-card {
  background: var(--card);
  border-radius: 18px;
  padding: 1.6rem 1.4rem 1.5rem;
  border: 1px solid var(--line-soft);
  transition: box-shadow .5s var(--ease-soft), border-color .5s var(--ease-soft);
}
.product-card.has-tilt {
  --rx: 0deg; --ry: 0deg;
  transform: perspective(1000px) rotateX(var(--rx)) rotateY(var(--ry));
  transform-style: preserve-3d;
}
.product-card.has-tilt:hover {
  border-color: var(--taupe-soft);
  box-shadow: 0 34px 60px -22px rgba(122, 100, 70, .28), 0 14px 26px -12px rgba(32, 28, 24, .14);
}
.product-media {
  aspect-ratio: 1 / 1.05;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
}
.product-media img {
  max-height: 100%; width: auto; object-fit: contain;
  filter: drop-shadow(0 18px 26px rgba(32,28,24,.1));
  transition: transform .6s var(--ease-soft);
}
.product-card.has-tilt:hover .product-media img { transform: scale(1.05) translateZ(30px); }
.product-brand { font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--olive); margin-bottom: .3rem; }
.product-name { font-size: 1.05rem; color: var(--ink); }

/* Featured product card — real editorial photography, not a floating cutout */
.product-card--featured {
  grid-column: 1 / -1;
  padding: 0;
  overflow: hidden;
}
.product-media--editorial {
  aspect-ratio: 16 / 10;
  margin-bottom: 0;
}
.product-media--editorial img {
  width: 100%; height: 100%;
  max-height: none;
  object-fit: cover;
  filter: none;
}
.product-card--featured .product-brand { margin-top: 1.5rem; padding-inline: 1.6rem; }
.product-card--featured .product-name { font-size: 1.3rem; padding-inline: 1.6rem; margin-bottom: 1.5rem; }

.products-note { margin-top: 2rem; font-size: .82rem; color: var(--ink-faint); max-width: 52ch; }

@media (min-width: 720px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }
  .product-media--editorial { aspect-ratio: 21 / 9; }
}

/* =============================================================
   8.5 Editorial band — full-bleed photo interlude
   ============================================================= */
.editorial-band {
  position: relative;
  display: flex; align-items: flex-end;
  min-height: 46vh;
  overflow: clip;
}
.editorial-band img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.editorial-band-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(24, 34, 20, .78) 0%, rgba(24, 34, 20, .15) 45%, rgba(24, 34, 20, .05) 100%);
}
.editorial-band-caption {
  position: relative; z-index: 1;
  padding: clamp(1.5rem, 4vw, 3rem) var(--gutter);
  font-family: var(--serif);
  font-size: clamp(1.4rem, 3.2vw, 2.1rem);
  line-height: 1.15;
  color: var(--cream);
  max-width: 20ch;
}
.editorial-band-caption em { font-style: italic; color: var(--sage-2); font-weight: 400; }

@media (min-width: 720px) {
  .editorial-band { min-height: 56vh; }
}

/* =============================================================
   9. Reserva
   ============================================================= */
.reserva-grid { display: grid; gap: 2.5rem; }

.reserva-options { display: grid; gap: 1rem; }
.option-card {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.3rem 1.5rem;
  border-radius: 16px;
  border: 1px solid rgba(247, 241, 231, 0.22);
  background: rgba(247, 241, 231, 0.04);
  text-align: left;
  transition: border-color .3s var(--ease-out), background-color .3s var(--ease-out);
}
.option-card:hover { border-color: rgba(247, 241, 231, 0.4); }
.option-card.is-selected {
  border-color: var(--champagne);
  background: rgba(227, 210, 173, 0.1);
}
.option-label { font-family: var(--serif); font-size: 1.1rem; flex: 1 1 auto; }
.option-people { font-size: .75rem; letter-spacing: .06em; text-transform: uppercase; color: rgba(247, 241, 231, 0.55); }
.option-price { font-weight: 700; font-size: .95rem; color: var(--champagne); white-space: nowrap; }

.reserva-meta { display: grid; gap: 1rem; padding-block: .5rem 1rem; border-top: 1px solid rgba(247, 241, 231, 0.14); border-bottom: 1px solid rgba(247, 241, 231, 0.14); }
.reserva-meta > div { display: flex; justify-content: space-between; gap: 1rem; font-size: .88rem; }
.reserva-meta dt { color: rgba(247, 241, 231, 0.5); }
.reserva-meta dd { color: var(--cream); text-align: right; }
.reserva-meta dd a { color: var(--champagne); text-decoration: underline; text-underline-offset: 2px; }
.reserva-meta dd a:hover { color: var(--cream); }

.reserva-form { display: grid; gap: 1.1rem; }
.field { display: grid; gap: .5rem; }
.field label { font-size: .78rem; letter-spacing: .04em; color: rgba(247, 241, 231, 0.7); }
.field input {
  width: 100%;
  padding: .9rem 1rem;
  border-radius: 10px;
  border: 1px solid rgba(247, 241, 231, 0.25);
  background: rgba(247, 241, 231, 0.06);
  color: var(--cream);
  font-family: var(--sans); font-size: .95rem;
}
.field input::placeholder { color: rgba(247, 241, 231, 0.35); }
.field input:focus-visible { outline-color: var(--champagne); }

.checkbox-field {
  display: flex; align-items: flex-start; gap: .7rem;
  font-size: .82rem; color: rgba(247, 241, 231, 0.75);
}
.checkbox-field input { margin-top: .2rem; accent-color: var(--champagne); }
.checkbox-field a { text-decoration: underline; text-underline-offset: 2px; }

.reserva-form .btn-primary { background: var(--champagne); color: var(--ink); }
.reserva-form .btn-primary:hover { background: var(--cream); }

.form-status { font-size: .85rem; min-height: 1.2em; color: var(--champagne); }
.form-status.is-error { color: #e3a8a0; }
.form-disclaimer { font-size: .74rem; color: rgba(247, 241, 231, 0.45); }

@media (min-width: 960px) {
  .reserva-grid { grid-template-columns: 1fr 1fr; grid-template-areas: "options form" "meta form"; align-items: start; }
  .reserva-options { grid-area: options; }
  .reserva-meta { grid-area: meta; }
  .reserva-form { grid-area: form; }
}

/* =============================================================
   10. FAQ
   ============================================================= */
.faq-list { max-width: 74ch; display: grid; }
.faq-item {
  border-bottom: 1px solid var(--line);
  padding-block: 1.3rem;
}
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  list-style: none;
  font-size: 1.02rem; font-weight: 600; color: var(--ink);
  cursor: pointer;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon { position: relative; width: 16px; height: 16px; flex: none; }
.faq-icon::before, .faq-icon::after {
  content: ""; position: absolute; background: var(--ink); border-radius: 2px;
}
.faq-icon::before { inset: 7px 0; height: 1.5px; }
.faq-icon::after { inset: 0 7px; width: 1.5px; transition: transform .3s var(--ease-out); }
.faq-item[open] .faq-icon::after { transform: rotate(90deg); opacity: 0; }
.faq-item p { margin-top: .8rem; color: var(--ink-soft); font-size: .93rem; max-width: 60ch; }

/* =============================================================
   11. Cierre
   ============================================================= */
.cierre-inner { max-width: 62ch; margin-inline: auto; text-align: center; display: grid; gap: 1.3rem; justify-items: center; }
.cierre-text { color: var(--ink-soft); font-size: 1.02rem; max-width: 48ch; }

/* =============================================================
   12. Footer
   ============================================================= */
.site-footer { background: var(--ink); color: rgba(247, 241, 231, 0.6); padding-block: 2.6rem; }
.footer-inner { display: grid; gap: 1.4rem; text-align: center; justify-items: center; }
.footer-brands { display: flex; align-items: center; gap: .7rem; }
.footer-logo--riman { height: 13px; filter: invert(1) brightness(1.6); }
.footer-logo--vanyti { height: clamp(34px, 8vw, 54px); filter: brightness(1.35) saturate(1.1); }
.footer-links { display: flex; gap: 1.5rem; font-size: .8rem; }
.footer-links a:hover { color: var(--cream); }
.footer-copy { font-size: .72rem; letter-spacing: .04em; }

@media (min-width: 720px) {
  .footer-inner { grid-template-columns: auto 1fr auto; text-align: left; justify-items: start; }
  .footer-links { justify-content: center; }
  .footer-copy { text-align: right; justify-self: end; }
}
@media (min-width: 960px) {
  .footer-logo--riman { height: 26px; }
  .footer-logo--vanyti { height: 108px; }
}

/* =============================================================
   13. Mobile sticky reservation bar
   ============================================================= */
.mobile-cta-bar {
  position: fixed; inset-inline: 0; bottom: 0; z-index: 90;
  padding: .8rem var(--gutter) calc(.8rem + env(safe-area-inset-bottom));
  background: rgba(247, 241, 231, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--line-soft);
  transform: translateY(0);
  transition: transform .35s var(--ease-out);
}
.mobile-cta-bar.is-hidden { transform: translateY(110%); }
@media (min-width: 720px) { .mobile-cta-bar { display: none; } }

/* =============================================================
   14. Reveal-on-scroll
   ============================================================= */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-split] { opacity: 1; transform: none; }

/* =============================================================
   15. Reduced-motion — only intrusive effects
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .mobile-cta-bar { transition: none; }
}

/* =============================================================
   16. Responsive — container/gutter already fluid via clamp() above
   ============================================================= */
@media (min-width: 1600px) {
  .container { max-width: 1360px; }
}

/* =============================================================
   17. Custom cursor (desktop, fine pointer only)
   ============================================================= */
.cursor {
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  display: none;
  mix-blend-mode: difference;
  opacity: 0;
  transition: opacity .25s var(--ease-out);
}
.cursor.is-ready { opacity: 1; }
@media (hover: hover) and (pointer: fine) { .cursor { display: block; } }
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0; pointer-events: none; will-change: transform;
}
.cursor-dot { width: 5px; height: 5px; margin: -2.5px; background: var(--cream); border-radius: 50%; }
.cursor-ring {
  width: 30px; height: 30px; margin: -15px; border: 1px solid var(--cream); border-radius: 50%;
  transition: width .35s var(--ease-out), height .35s var(--ease-out), margin .35s var(--ease-out);
}
.cursor.is-interactive .cursor-ring { width: 46px; height: 46px; margin: -23px; }
.has-cursor, .has-cursor a, .has-cursor button, .has-cursor summary { cursor: none; }

/* =============================================================
   18. Magnetic buttons
   ============================================================= */
.has-magnetic { display: inline-flex; position: relative; isolation: isolate; }
.magnetic-inner {
  display: inline-flex; align-items: center; justify-content: center; gap: inherit;
  will-change: transform;
  transition: transform .8s var(--ease-soft);
}

/* =============================================================
   19. Split-text word reveal
   ============================================================= */
.split-word { display: inline-block; will-change: transform, opacity; }

/* =============================================================
   20. Marquee ticker
   ============================================================= */
.marquee {
  overflow: hidden; position: relative;
  background: var(--ink); color: var(--champagne);
  padding-block: .9rem;
  border-block: 1px solid rgba(247, 241, 231, 0.1);
}
.marquee::before, .marquee::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 60px; z-index: 2; pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(90deg, var(--ink), transparent); }
.marquee::after { right: 0; background: linear-gradient(270deg, var(--ink), transparent); }
.marquee-track {
  display: inline-flex; gap: 1.4rem; white-space: nowrap; will-change: transform;
  font-size: .74rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
}

/* =============================================================
   21. Subtle grain texture (tactile, print-adjacent)
   ============================================================= */
.has-grain { position: relative; }
.has-grain::after {
  content: ""; position: fixed; inset: 0;
  pointer-events: none; opacity: 0.045; mix-blend-mode: overlay; z-index: 1;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.4 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 200px 200px;
}
