:root {
  --bg: #05060a;
  --ink: #f5ecd9;
  --orange: #ff8a1f;
  --blue: #1f6dff;
  --gold: #e8b87a;
  --deep: #0a0c14;
  --display-font: "Italiana", serif;
  --sway: 7;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  background: var(--bg);
  color: var(--ink);
  font-family: "Inter", system-ui, sans-serif;
  overflow-x: hidden;
}

@keyframes palm-sway-a {
  0%, 100% { transform: rotate(0deg) scale(1); }
  50%      { transform: rotate(calc(var(--sway, 7) * 0.4deg)) scale(1.015); }
}
@keyframes palm-sway-b {
  0%, 100% { transform: rotate(0deg) scale(1); }
  50%      { transform: rotate(calc(var(--sway, 7) * -0.4deg)) scale(0.985); }
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes char-rise {
  from { opacity: 0; transform: translateY(0.6em) rotate(-2deg); filter: blur(8px); }
  to   { opacity: 1; transform: translateY(0) rotate(0); filter: blur(0); }
}
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes fade-up-y {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes rule-grow { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes scroll-line {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-33.333%); }
}
@keyframes ken-burns {
  from { transform: scale(1.04); }
  to   { transform: scale(1.18); }
}
@keyframes neon-flicker {
  0%, 100% { opacity: 1; }
  92%      { opacity: 1; }
  93%      { opacity: 0.7; }
  94%      { opacity: 1; }
  96%      { opacity: 0.85; }
  97%      { opacity: 1; }
}

@keyframes margin-fade-l {
  from { opacity: 0; transform: translateY(-50%) rotate(-90deg) translateX(-20px); }
  to   { opacity: 0.6; transform: translateY(-50%) rotate(-90deg) translateX(0); }
}
@keyframes margin-fade-r {
  from { opacity: 0; transform: translateY(-50%) rotate(90deg) translateX(-20px); }
  to   { opacity: 0.6; transform: translateY(-50%) rotate(90deg) translateX(0); }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--bg);
  overflow: hidden;
  padding: 28px 48px 48px;
  display: flex;
  flex-direction: column;
}

/* Photo backdrop layer */
.hero-bg {
  position: absolute; inset: 0; z-index: 0; overflow: hidden;
}
.hero-bg-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0;
  transition: opacity 1.6s ease, transform 8s ease-out;
  transform: scale(1.04);
  filter: saturate(1.15) contrast(1.05);
}
.hero-bg-img.active {
  opacity: 0.55;
  animation: ken-burns 8s ease-out forwards;
}
.hero-bg-solid {
  background: radial-gradient(ellipse at center, #1a0e08 0%, #05060a 80%);
}

/* Topbar */
.topbar {
  position: relative; z-index: 5;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(245, 236, 217, 0.15);
  animation: fade-up-y 1s ease 0.1s both;
}
.topbar-mark { display: flex; align-items: center; gap: 10px; font-size: 11px; letter-spacing: 0.22em; opacity: 0.85; }
.mark-dot { width: 6px; height: 6px; background: var(--orange); border-radius: 50%; box-shadow: 0 0 12px var(--orange); animation: neon-flicker 4s infinite; }
.topbar-nav { display: flex; gap: 36px; justify-self: center; }
.topbar-nav a {
  font-size: 11px; letter-spacing: 0.28em;
  color: var(--ink); opacity: 0.85;
  cursor: pointer; position: relative; padding: 6px 0;
  transition: opacity 0.3s, letter-spacing 0.4s;
}
.topbar-nav a::after {
  content: ''; position: absolute; inset: auto 0 0 0;
  height: 1px; background: var(--blue);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.7, 0, 0.3, 1);
  box-shadow: 0 0 8px var(--blue);
}
.topbar-nav a:hover { opacity: 1; letter-spacing: 0.32em; }
.topbar-nav a:hover::after { transform: scaleX(1); }

/* Reservar CTA inside the topbar nav */
.topbar-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 18px 8px;
  margin-left: 8px;
  background: var(--orange);
  color: #0a0807;
  border: none;
  border-radius: 999px;
  font-family: inherit;
  font-size: 11px;
  letter-spacing: 0.28em;
  font-weight: 500;
  cursor: pointer;
  text-transform: uppercase;
  transition: background 0.3s, color 0.3s, transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 0 18px rgba(255, 138, 31, 0.35);
}
.topbar-cta:hover {
  background: var(--blue);
  color: var(--ink);
  transform: translateY(-1px);
  box-shadow: 0 0 24px rgba(31, 109, 255, 0.45);
}
.topbar-cta-arrow {
  font-size: 13px;
  transition: transform 0.3s;
  letter-spacing: 0;
}
.topbar-cta:hover .topbar-cta-arrow { transform: translateX(4px); }
.topbar-cta::after { display: none !important; }

/* ============================================================
   SITE HEADER (subpages — _shared.jsx)
   Mirrors the home topbar styling so nav looks consistent.
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 60;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 32px;
  padding: 22px clamp(24px, 5vw, 64px);
  background: rgba(15, 14, 12, 0.85);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  border-bottom: 1px solid rgba(245, 236, 217, 0.08);
  color: #f5ecd9;
}
.site-header .sh-mark {
  display: inline-flex; flex-direction: column; gap: 2px;
  text-decoration: none; color: inherit;
}
.site-header .sh-mark-glyph {
  font-size: clamp(20px, 1.6vw, 24px);
  letter-spacing: 0.18em;
  line-height: 1;
}
.site-header .sh-mark-sub {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.32em;
  opacity: 0.55;
  text-transform: uppercase;
}
.site-header .sh-nav {
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: flex-end;
}
.site-header .sh-link {
  position: relative;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #f5ecd9;
  text-decoration: none;
  opacity: 0.78;
  padding: 6px 0;
  transition: opacity 0.25s, letter-spacing 0.4s;
}
.site-header .sh-link::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--blue, #1f6dff);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s;
  box-shadow: 0 0 8px var(--blue, #1f6dff);
}
.site-header .sh-link:hover { opacity: 1; letter-spacing: 0.32em; }
.site-header .sh-link:hover::after { transform: scaleX(1); }
.site-header .sh-link.on { opacity: 1; color: var(--gold, #c8a96a); }
.site-header .sh-link.on::after { transform: scaleX(1); background: var(--gold, #c8a96a); box-shadow: 0 0 8px var(--gold, #c8a96a); }

.site-header .sh-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 18px 8px;
  margin-left: 8px;
  background: var(--orange, #ff8a1f);
  color: #0a0807;
  border: none;
  border-radius: 999px;
  font-family: inherit;
  font-size: 11px;
  letter-spacing: 0.28em;
  font-weight: 500;
  cursor: pointer;
  text-transform: uppercase;
  transition: background 0.3s, color 0.3s, transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 0 18px rgba(255, 138, 31, 0.35);
}
.site-header .sh-cta:hover {
  background: var(--blue, #1f6dff);
  color: #f5ecd9;
  transform: translateY(-1px);
  box-shadow: 0 0 24px rgba(31, 109, 255, 0.45);
}

@media (max-width: 900px) {
  .site-header { grid-template-columns: 1fr; gap: 16px; padding: 16px 24px; }
  .site-header .sh-nav { flex-wrap: wrap; gap: 18px 22px; justify-content: flex-start; }
  .site-header .sh-mark-sub { display: none; }
}
.topbar-meta { justify-self: end; display: flex; gap: 10px; font-size: 10px; letter-spacing: 0.2em; opacity: 0.7; font-variant-numeric: tabular-nums; }
.meta-sep { opacity: 0.5; }

/* Palms */
.palm {
  position: absolute; top: 0; height: 100vh;
  width: 38vw; pointer-events: none;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: 1;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; animation: fade 1.6s ease 0.4s forwards;
  mix-blend-mode: screen;
}
.palm-left  { left: -12vw; }
.palm-right { right: -12vw; }

/* Margin text */
.margin-text {
  position: absolute; top: 50%;
  font-size: 10px; letter-spacing: 0.4em;
  white-space: nowrap; z-index: 4;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
  opacity: 0;
}
.margin-left  { left: 30px; transform-origin: left center;
  animation: margin-fade-l 1.4s ease 1.2s both; }
.margin-right { right: 30px; transform-origin: right center;
  animation: margin-fade-r 1.4s ease 1.2s both; }

/* ============================================================
   BRAND SIDEBAR (right edge of poster) — masthead + seal
   ============================================================ */
.brand-sidebar {
  position: absolute;
  top: 50%;
  right: clamp(60px, 7vw, 110px);
  transform: translateY(-50%);
  z-index: 5;
  width: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: var(--ink);
  opacity: 0;
  animation: bs-fade 1.6s ease 1.8s forwards;
  pointer-events: none;
}
@keyframes bs-fade {
  from { opacity: 0; transform: translate(8px, -50%); }
  to   { opacity: 0.85; transform: translate(0, -50%); }
}
.bs-mark {
  font-size: 56px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--orange);
  margin-bottom: 14px;
  text-shadow: 0 0 28px rgba(255, 138, 31, 0.35);
}
.bs-mark-amp {
  font-size: 0.5em;
  vertical-align: middle;
  margin: 0 0.05em;
  opacity: 0.7;
}
.bs-rule {
  width: 60px;
  height: 1px;
  background: currentColor;
  opacity: 0.35;
  margin-bottom: 12px;
}
.bs-name {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.42em;
  margin-bottom: 8px;
}
.bs-meta {
  font-family: 'Inter', sans-serif;
  font-size: 8.5px;
  letter-spacing: 0.32em;
  opacity: 0.65;
  display: flex;
  flex-direction: column;
  gap: 3px;
  line-height: 1.5;
  margin-bottom: 22px;
}
.bs-meta .bs-dot { display: none; }

/* Seal */
.bs-seal {
  width: 152px;
  height: 152px;
  position: relative;
  margin-bottom: 18px;
  animation: bs-seal-rotate 60s linear infinite;
}
@keyframes bs-seal-rotate {
  to { transform: rotate(360deg); }
}
.bs-seal-svg {
  width: 100%;
  height: 100%;
  display: block;
}
.bs-seal-text {
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  letter-spacing: 0.42em;
  font-weight: 500;
  text-transform: uppercase;
}
.bs-seal-no {
  font-family: 'Italiana', serif;
  font-size: 11px;
  letter-spacing: 0.3em;
  opacity: 0.7;
}

.bs-foot {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  letter-spacing: 0.36em;
  opacity: 0.7;
}
.bs-foot-num {
  font-size: 22px;
  letter-spacing: 0;
  color: var(--orange);
  font-style: italic;
  opacity: 1;
}

/* Hide on smaller screens — protect the centerpiece */
@media (max-width: 1280px) {
  .brand-sidebar { display: none; }
}

/* Stage */
.stage {
  position: relative; z-index: 3;
  flex: 1;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 48px 0 0; gap: 28px;
}

.headline {
  font-family: var(--display-font);
  font-size: clamp(56px, 11vw, 200px);
  font-weight: 400;
  letter-spacing: 0.12em;
  line-height: 0.9;
  color: var(--ink);
  text-align: center;
  white-space: nowrap;
  text-shadow:
    0 4px 60px rgba(0, 0, 0, 0.7),
    0 0 80px rgba(31, 109, 255, 0.15);
}

/* Silver chrome treatment matching the original poster — applied per-char so animated spans show */
.headline-chrome {
  letter-spacing: 0.18em;
  font-size: clamp(56px, 10vw, 180px);
  filter: drop-shadow(0 4px 30px rgba(255, 230, 180, 0.3))
          drop-shadow(0 0 60px rgba(255, 138, 31, 0.2));
}
.headline-chrome .hl-char {
  background: linear-gradient(
    180deg,
    #f8f4eb 0%,
    #ffffff 18%,
    #c9c4b8 38%,
    #6b665a 50%,
    #c9c4b8 62%,
    #ffffff 82%,
    #d0c8b4 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* Relief frame */
.relief-frame {
  position: relative;
  width: min(900px, 80vw);
  aspect-ratio: 1230 / 670;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  animation: fade-up-y 1.4s ease 0.9s both;
  margin: 8px 0;
}
.relief-img-wrap {
  position: absolute; inset: 0;
  overflow: hidden;
  border: 1px solid rgba(232, 184, 122, 0.3);
  box-shadow:
    0 30px 100px rgba(0, 0, 0, 0.7),
    0 0 80px rgba(255, 138, 31, 0.15),
    inset 0 0 60px rgba(0, 0, 0, 0.4);
}
.relief-img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  filter: contrast(1.05) saturate(1.1);
  animation: ken-burns 22s ease-in-out infinite alternate;
}
.relief-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 50%, rgba(10, 8, 7, 0.5) 100%),
    linear-gradient(180deg, rgba(10, 8, 7, 0.2) 0%, transparent 30%, transparent 70%, rgba(10, 8, 7, 0.3) 100%);
  pointer-events: none;
}
.relief-corner {
  position: absolute;
  width: 26px; height: 26px;
  border: 1px solid var(--gold);
  z-index: 2;
  opacity: 0;
  animation: fade 0.6s ease 1.4s forwards;
}
.relief-corner.tl { top: -12px; left: -12px; border-right: none; border-bottom: none; }
.relief-corner.tr { top: -12px; right: -12px; border-left: none; border-bottom: none; animation-delay: 1.5s; }
.relief-corner.bl { bottom: -12px; left: -12px; border-right: none; border-top: none; animation-delay: 1.6s; }
.relief-corner.br { bottom: -12px; right: -12px; border-left: none; border-top: none; animation-delay: 1.7s; }

/* Spaced tagline like the original poster */
.tagline-spaced {
  font-family: var(--display-font);
  font-size: clamp(11px, 1.1vw, 15px);
  letter-spacing: 0.5em;
  text-transform: lowercase;
  color: rgba(245, 236, 217, 0.92);
  font-weight: 400;
  font-style: normal;
  text-shadow: 0 2px 16px rgba(0,0,0,0.6);
  display: flex;
}
.tg-char {
  display: inline-block; opacity: 0;
  animation: fade-up-y 0.6s ease both;
}
.hl-char {
  display: inline-block; opacity: 0;
  animation: char-rise 1.1s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

/* Tagline */
.tagline-row {
  display: flex; align-items: center; gap: 24px;
  margin-top: 8px;
  animation: fade-up-y 1s ease 1.6s both;
}
.tag-rule {
  width: 80px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: rule-grow 1.2s ease 1.8s both;
}
.tagline {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(18px, 2vw, 28px);
  letter-spacing: 0.06em;
  color: var(--ink); opacity: 0.95;
  font-style: italic; font-weight: 400;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

/* CTA */
.cta-cluster {
  display: flex; gap: 20px; align-items: center;
  margin-top: 8px;
  animation: fade-up-y 1s ease 1.9s both;
}
.cta-primary {
  background: var(--orange);
  color: #0a0807; border: none;
  padding: 18px 28px;
  font-size: 11px; letter-spacing: 0.3em; font-weight: 700;
  cursor: pointer;
  display: flex; align-items: center; gap: 14px;
  position: relative; overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: 0 0 30px rgba(255, 138, 31, 0.35);
}
.cta-primary::before {
  content: ''; position: absolute; inset: 0;
  background: var(--blue);
  transform: translateX(-100%);
  transition: transform 0.5s cubic-bezier(0.7, 0, 0.3, 1);
}
.cta-primary:hover::before { transform: translateX(0); }
.cta-primary:hover { color: var(--ink); transform: translateY(-2px); box-shadow: 0 0 40px rgba(31, 109, 255, 0.55); }
.cta-primary > * { position: relative; z-index: 1; }
.cta-arrow { font-size: 14px; transition: transform 0.4s; }
.cta-primary:hover .cta-arrow { transform: translateX(6px); }

.cta-ghost {
  background: transparent; color: var(--ink);
  border: 1px solid rgba(245, 236, 217, 0.3);
  padding: 18px 24px;
  font-family: "Cormorant Garamond", serif;
  font-style: italic; font-size: 14px; letter-spacing: 0.06em;
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s, color 0.3s;
}
.cta-ghost:hover { border-color: var(--blue); background: rgba(31, 109, 255, 0.08); color: var(--blue); }

/* Photo dots */
.photo-dots {
  display: flex; gap: 0; margin-top: 24px;
  animation: fade-up-y 1s ease 2.2s both;
}
.pdot {
  background: transparent; border: none;
  color: var(--ink); cursor: pointer;
  display: flex; flex-direction: column;
  align-items: flex-start; gap: 6px;
  padding: 10px 18px;
  border-left: 1px solid rgba(245,236,217,0.15);
  transition: opacity 0.3s;
  opacity: 0.5;
}
.pdot:last-child { border-right: 1px solid rgba(245,236,217,0.15); }
.pdot.on { opacity: 1; }
.pdot-num { font-family: var(--display-font); font-size: 18px; font-variant-numeric: tabular-nums; }
.pdot-label { font-size: 9px; letter-spacing: 0.24em; text-transform: uppercase; opacity: 0.85; }
.pdot-bar { width: 100%; height: 1px; background: rgba(245,236,217,0.2); position: relative; overflow: hidden; }
.pdot.on .pdot-bar::after {
  content: ''; position: absolute; inset: 0;
  background: var(--orange); box-shadow: 0 0 8px var(--orange);
  animation: rule-grow 5.2s linear forwards;
  transform-origin: left;
}

/* Stats */
.stats-strip {
  position: relative; z-index: 3;
  display: grid; grid-template-columns: repeat(4, 1fr);
  margin-top: 60px;
  border-top: 1px solid rgba(245, 236, 217, 0.15);
  padding-top: 24px;
  animation: fade-up-y 1s ease 2.4s both;
}
.stat { display: flex; flex-direction: column; gap: 4px; padding: 0 24px; border-right: 1px solid rgba(245, 236, 217, 0.1); }
.stat:last-child { border-right: none; }
.stat-n { font-family: var(--display-font); font-size: 48px; line-height: 1; font-variant-numeric: tabular-nums; }
.stat-label { font-size: 10px; letter-spacing: 0.24em; opacity: 0.7; text-transform: uppercase; }

.scroll-cue {
  position: absolute; bottom: 16px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 9px; letter-spacing: 0.36em; opacity: 0.6;
  z-index: 4;
}
.cue-line { width: 1px; height: 40px; background: var(--blue); box-shadow: 0 0 8px var(--blue); animation: scroll-line 2.4s cubic-bezier(0.7, 0, 0.3, 1) infinite; }

.grain {
  position: absolute; inset: 0; pointer-events: none;
  z-index: 6; opacity: 0.08; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}
.vignette {
  position: absolute; inset: 0; pointer-events: none; z-index: 2;
  background: radial-gradient(ellipse at center, transparent 50%, rgba(0, 0, 0, 0.6) 100%);
}

/* ============ MARQUEE ============ */
.marquee {
  background: var(--bg);
  /* Removed hard borders — let it blend seamlessly into the hero above and the section below */
  padding: 28px 0; overflow: hidden; position: relative;
}
/* Soft top fade so the marquee emerges from the hero rather than being walled off */
.marquee::before, .marquee::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 160px; z-index: 2; pointer-events: none;
}
.marquee::before { left: 0;  background: linear-gradient(90deg, var(--bg), transparent); }
.marquee::after  { right: 0; background: linear-gradient(-90deg, var(--bg), transparent); }
/* Vertical fade-into hero (top) */
.marquee {
  box-shadow:
    inset 0 12px 24px -12px rgba(10, 8, 7, 0.9),
    inset 0 -12px 24px -12px rgba(10, 8, 7, 0.6);
}
.marquee-track { display: flex; gap: 60px; white-space: nowrap; animation: marquee 36s linear infinite; width: max-content; }
.marquee-item { font-size: 48px; letter-spacing: 0.16em; color: var(--ink); opacity: 0.85; }
.marquee-item:nth-child(4n)   { color: var(--orange); font-style: italic; text-shadow: 0 0 20px rgba(255,138,31,0.4); }
.marquee-item:nth-child(4n+2) { color: var(--blue);   font-style: italic; text-shadow: 0 0 20px rgba(31,109,255,0.4); }

/* ============ GALLERY ============ */
.gallery { padding: 120px 48px; background: var(--bg); }
.gal-head { max-width: 1400px; margin: 0 auto 56px; }
.gal-eye { font-size: 11px; letter-spacing: 0.3em; opacity: 0.7; }
.gal-title { font-size: clamp(40px, 6vw, 88px); line-height: 1; margin-top: 18px; letter-spacing: 0.02em; }

.gal-grid {
  max-width: 1400px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 14px;
}
.ig-cell {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; color: var(--ink);
  position: relative; overflow: hidden;
  cursor: pointer;
}
.ig-cell::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,138,31,0.5), transparent 60%);
  opacity: 0.7;
  transition: opacity 0.5s;
}
.ig-cell:hover::before { opacity: 1; }
.ig-cell::after { display: none; }
.ig-inner { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 14px; padding: 24px; text-align: center; }
.ig-icon { width: 44px; height: 44px; color: var(--ink); }
.ig-handle { font-size: 24px; line-height: 1; }
.ig-cta { font-size: 10px; letter-spacing: 0.28em; opacity: 0.95; font-weight: 600; }
.gal-cell {
  position: relative;
  background-size: cover; background-position: center;
  overflow: hidden;
  border: 1px solid rgba(245,236,217,0.08);
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.5s;
}
.gal-cell::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.7) 100%);
}
.gal-cell:hover { transform: translateY(-4px); box-shadow: 0 24px 60px rgba(0,0,0,0.6); }
.gal-cell.tall  { grid-row: span 2; grid-column: span 1; }
.gal-cell.wide  { grid-column: span 2; }
.gal-cell.collage { grid-row: span 2; }
.cell-tag {
  position: absolute; bottom: 18px; left: 18px;
  font-size: 10px; letter-spacing: 0.3em; font-weight: 600;
  padding: 8px 12px; z-index: 2;
  background: rgba(5,6,10,0.65); backdrop-filter: blur(8px);
  border: 1px solid rgba(245,236,217,0.15);
}
.cell-tag.amber { color: var(--orange); border-color: rgba(255,138,31,0.4); box-shadow: 0 0 20px rgba(255,138,31,0.2); }
.cell-tag.blue  { color: var(--blue);   border-color: rgba(31,109,255,0.4); box-shadow: 0 0 20px rgba(31,109,255,0.2); }

/* ============ RITUALS ============ */
.rituals { background: var(--bg); padding: 120px 48px; position: relative; }
.rit-head { max-width: 1400px; margin: 0 auto 64px; }
.rit-eyebrow { font-size: 11px; letter-spacing: 0.3em; opacity: 0.7; }
.rit-title { font-size: clamp(40px, 6vw, 88px); line-height: 1; margin-top: 18px; letter-spacing: 0.02em; }

.rit-grid { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 1.6fr 1fr; gap: 64px; align-items: start; }
.rit-list { list-style: none; border-top: 1px solid rgba(245, 236, 217, 0.18); }
.rit-row {
  display: grid; grid-template-columns: 50px 1fr auto auto auto 30px;
  gap: 24px; align-items: center;
  padding: 28px 8px;
  border-bottom: 1px solid rgba(245, 236, 217, 0.12);
  cursor: pointer; outline: none;
  transition: padding 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), background 0.4s;
  position: relative;
}
.rit-row::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 0; background: var(--orange); box-shadow: 0 0 12px var(--orange);
  transition: width 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.rit-row.active { padding-left: 24px; background: rgba(255, 138, 31, 0.06); }
.rit-row.active::before { width: 3px; }
.rit-num { font-family: var(--display-font); font-size: 22px; opacity: 0.5; }
.rit-name { font-size: 32px; letter-spacing: 0.02em; transition: color 0.3s; }
.rit-row.active .rit-name { color: var(--orange); }
.rit-tag { font-size: 9px; letter-spacing: 0.24em; opacity: 0.8; padding: 4px 8px; border: 1px solid rgba(245, 236, 217, 0.25); }
.rit-time, .rit-price { font-size: 13px; letter-spacing: 0.1em; font-variant-numeric: tabular-nums; opacity: 0.9; }
.rit-arrow { opacity: 0; transition: opacity 0.4s, transform 0.4s; }
.rit-row.active .rit-arrow { opacity: 1; color: var(--orange); transform: translateX(6px); }

.rit-detail { position: sticky; top: 40px; }
.detail-frame {
  border: 1px solid rgba(31, 109, 255, 0.3);
  padding: 36px; position: relative;
  background:
    radial-gradient(circle at 70% 30%, rgba(255, 138, 31, 0.10), transparent 60%),
    radial-gradient(circle at 20% 80%, rgba(31, 109, 255, 0.10), transparent 60%),
    var(--deep);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.detail-label { font-size: 10px; letter-spacing: 0.3em; color: var(--orange); }
.detail-name { font-size: 44px; line-height: 1; margin-top: 14px; letter-spacing: 0.02em; }
.detail-note { font-size: 18px; margin-top: 16px; opacity: 0.9; }
.detail-meta { display: flex; gap: 24px; margin-top: 28px; font-size: 12px; opacity: 0.9; }
.detail-meta b { display: block; font-size: 9px; letter-spacing: 0.24em; opacity: 0.7; margin-bottom: 4px; font-weight: 600; }
.detail-illu { margin-top: 36px; aspect-ratio: 1; max-width: 200px; }

/* ============ FOOTER ============ */
.footer { background: var(--bg); padding: 100px 48px 36px; color: var(--ink); }
.foot-grid { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 48px; align-items: start; }
.foot-eye { font-size: 10px; letter-spacing: 0.28em; opacity: 0.7; }
.foot-block p { margin-top: 16px; font-size: 18px; line-height: 1.5; }
.foot-mark { display: flex; align-items: baseline; gap: 18px; justify-self: end; }
.mark-big { font-size: 120px; line-height: 0.8; color: var(--orange); text-shadow: 0 0 40px rgba(255, 138, 31, 0.4); }
.mark-sub { font-size: 11px; letter-spacing: 0.36em; opacity: 0.8; }
.foot-rule { max-width: 1400px; margin: 60px auto 24px; height: 1px; background: rgba(245, 236, 217, 0.15); }
.foot-bottom { max-width: 1400px; margin: 0 auto; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; font-size: 10px; letter-spacing: 0.22em; opacity: 0.6; }
.foot-credit a {
  color: inherit;
  text-decoration: none;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color 0.3s ease, opacity 0.3s ease;
  opacity: 0.85;
}
.foot-credit a:hover { color: #c8a96a; opacity: 1; }
.foot-credit strong {
  font-weight: 500;
  color: #c8a96a;
  letter-spacing: 0.2em;
}

@media (max-width: 900px) {
  .topbar-nav, .topbar-meta { display: none; }
  .topbar { grid-template-columns: 1fr; justify-items: start; }
  .stats-strip { grid-template-columns: repeat(2, 1fr); gap: 24px 0; }
  .stat:nth-child(2) { border-right: none; }
  .rit-grid { grid-template-columns: 1fr; }
  .rit-detail { position: static; }
  .rit-row { grid-template-columns: 30px 1fr auto; }
  .rit-tag, .rit-time, .rit-arrow { display: none; }
  .foot-grid { grid-template-columns: 1fr; gap: 32px; }
  .foot-mark { justify-self: start; }
  .margin-text { display: none; }
  .palm { width: 70vw; opacity: 0.4; }
  .gal-grid { grid-template-columns: repeat(2, 1fr); }
  .gal-cell.wide, .gal-cell.tall, .gal-cell.collage { grid-column: span 2; grid-row: auto; }
  .photo-dots { flex-wrap: wrap; }
}


/* ============================================================
   HERO SLIDER — stacked crossfade w/ parallax + arrows + dots
   ============================================================ */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 720px;
  overflow: hidden;
  background: #0a0807;
  isolation: isolate;
}
.hs-topbar {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 60;
  padding: 18px clamp(24px, 5vw, 64px) 0;
  /* subtle gradient scrim so the nav stays legible over any slide */
  background: linear-gradient(to bottom, rgba(10, 8, 7, 0.55) 0%, rgba(10, 8, 7, 0.2) 60%, transparent 100%);
  pointer-events: none;
}
.hs-topbar > * { pointer-events: auto; }
.hs-topbar .topbar { padding-top: 6px; }

.hs-stage {
  position: absolute; inset: 0;
}
.hs-slide {
  position: absolute; inset: 0;
  overflow-y: auto;
  overflow-x: hidden;
  opacity: 0;
  transform: translateX(0) scale(1.02);
  filter: blur(8px);
  pointer-events: none;
  transition:
    opacity 1.1s cubic-bezier(0.4, 0, 0.2, 1),
    transform 1.4s cubic-bezier(0.4, 0, 0.2, 1),
    filter 1.1s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform, filter;
}
.hs-slide.is-active {
  opacity: 1;
  transform: translateX(0) scale(1);
  filter: blur(0);
  pointer-events: auto;
  z-index: 2;
}
/* outgoing slide drifts in the direction of travel */
.hs-slide.is-inactive.dir-fwd { transform: translateX(-6%) scale(1.02); }
.hs-slide.is-inactive.dir-back { transform: translateX(6%) scale(1.02); }

.hs-slide::-webkit-scrollbar { width: 0; }

/* Arrows */
.hs-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 50;
  width: 56px; height: 56px;
  display: grid; place-items: center;
  background: rgba(10, 8, 7, 0.4);
  color: #f5ecd9;
  border: 1px solid rgba(245, 236, 217, 0.18);
  border-radius: 50%;
  cursor: pointer;
  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  transition: background 0.3s, border-color 0.3s, color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.hs-arrow:hover {
  background: var(--orange, #ff8a1f);
  color: #0a0807;
  border-color: var(--orange, #ff8a1f);
  box-shadow: 0 0 24px rgba(255, 138, 31, 0.5);
}
.hs-arrow--prev { left: clamp(14px, 3vw, 40px); }
.hs-arrow--next { right: clamp(14px, 3vw, 40px); }
.hs-arrow:hover.hs-arrow--prev { transform: translateY(-50%) translateX(-3px); }
.hs-arrow:hover.hs-arrow--next { transform: translateY(-50%) translateX(3px); }
.hs-arrow svg { display: block; }

/* Slide dots */
.hs-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 14px;
  z-index: 50;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(10, 8, 7, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.hs-dot {
  position: relative;
  width: 44px;
  height: 3px;
  padding: 0;
  background: rgba(245, 236, 217, 0.22);
  border: none;
  cursor: pointer;
  border-radius: 2px;
  overflow: hidden;
  transition: background 0.3s, width 0.3s;
}
.hs-dot.on { background: rgba(245, 236, 217, 0.18); width: 64px; }
.hs-dot:hover { background: rgba(245, 236, 217, 0.36); }
.hs-dot-fill {
  position: absolute;
  inset: 0;
  background: var(--orange, #ff8a1f);
  transform: translateX(-100%);
  animation-name: hs-fill;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
}
.hs-dot.on .hs-dot-fill { box-shadow: 0 0 12px var(--orange, #ff8a1f); }
.hs-dot:not(.on) .hs-dot-fill { animation: none !important; transform: translateX(-100%); }
@keyframes hs-fill {
  from { transform: translateX(-100%); }
  to   { transform: translateX(0); }
}

@media (max-width: 768px) {
  .hero-slider { height: auto; min-height: 100vh; }
  .hs-arrow { width: 44px; height: 44px; }
  .hs-dot { width: 32px; }
  .hs-dot.on { width: 48px; }
}
.seo-hero {
  position: relative;
  background: var(--bg);
  color: var(--ink);
  padding: clamp(140px, 16vw, 200px) 0 clamp(80px, 12vw, 160px);
  border-top: 1px solid rgba(245, 236, 217, 0.08);
  border-bottom: 1px solid rgba(245, 236, 217, 0.08);
  overflow: hidden;
}
.seo-grain {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.5;
  background-image:
    radial-gradient(ellipse at 20% 30%, rgba(255, 138, 31, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 70%, rgba(31, 109, 255, 0.06) 0%, transparent 60%);
}
/* Decorative palm fronds bleeding in from the edges — matches poster atmosphere */
.seo-palms {
  position: absolute; inset: 0; pointer-events: none; z-index: 1;
  opacity: 0.28;
}
.seo-palms .seo-palm-l,
.seo-palms .seo-palm-r {
  position: absolute;
  top: 50%;
  width: 40vw;
  max-width: 600px;
  height: 90vh;
  transform: translateY(-50%);
}
.seo-palms .seo-palm-l { left: -8vw; }
.seo-palms .seo-palm-r { right: -8vw; transform: translateY(-50%) scaleX(-1); }
.seo-inner {
  position: relative; z-index: 2;
  max-width: 1280px; margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.8fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.seo-text { display: flex; flex-direction: column; gap: clamp(20px, 3vw, 36px); }
@media (max-width: 900px) {
  .seo-inner { grid-template-columns: 1fr; gap: clamp(48px, 8vw, 80px); }
}
.seo-eye {
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 11px; letter-spacing: 0.32em; color: var(--gold);
  text-transform: uppercase;
}
.seo-h1 {
  font-size: clamp(56px, 9vw, 132px);
  line-height: 0.92; letter-spacing: -0.02em;
  margin: 0; max-width: 14ch;
  text-wrap: balance;
}
.seo-h1 em { color: var(--gold); font-style: italic; }
.seo-lead {
  font-size: clamp(20px, 1.6vw, 26px);
  line-height: 1.5; max-width: 56ch;
  color: rgba(245, 236, 217, 0.82);
  margin: 0;
  text-wrap: pretty;
}
.seo-cta {
  display: flex; gap: 14px; flex-wrap: wrap; align-items: center;
  margin-top: 8px;
}
.seo-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: clamp(40px, 5vw, 72px);
  padding-top: clamp(32px, 4vw, 48px);
  border-top: 1px solid rgba(245, 236, 217, 0.12);
}
.seo-stat {
  display: flex; flex-direction: column; gap: 6px;
  padding: 0 24px;
  border-right: 1px solid rgba(245, 236, 217, 0.1);
}
.seo-stat:first-child { padding-left: 0; }
.seo-stat:last-child { border-right: none; padding-right: 0; }
.seos-n {
  font-size: clamp(48px, 5vw, 72px); line-height: 1;
  color: var(--gold); letter-spacing: -0.02em;
}
.seos-n sup { font-size: 0.5em; vertical-align: super; }
.seos-l {
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 11px; letter-spacing: 0.28em; color: var(--ink);
  text-transform: uppercase; margin-top: 4px;
}
.seos-s {
  font-size: 14px; color: rgba(245, 236, 217, 0.6);
  letter-spacing: 0.02em;
}
@media (max-width: 768px) {
  .seo-stats { grid-template-columns: 1fr; gap: 24px; }
  .seo-stat { border-right: none; padding: 0; border-bottom: 1px solid rgba(245, 236, 217, 0.1); padding-bottom: 20px; }
  .seo-stat:last-child { border-bottom: none; padding-bottom: 0; }
}

/* ============================================================
   SEO BRAND SEAL — TP monogram + circular decals (right column)
   ============================================================ */
.seo-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: var(--ink);
  opacity: 0.92;
  pointer-events: none;
  position: relative;
  z-index: 3;
}
.seo-brand-mark {
  font-size: clamp(96px, 9vw, 140px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--orange);
  margin-bottom: 22px;
  text-shadow: 0 0 60px rgba(255, 138, 31, 0.4);
}
.seo-brand-amp {
  font-size: 0.5em;
  vertical-align: middle;
  margin: 0 0.05em;
  opacity: 0.7;
}
.seo-brand-rule {
  width: 80px;
  height: 1px;
  background: currentColor;
  opacity: 0.35;
  margin-bottom: 16px;
}
.seo-brand-name {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.42em;
  margin-bottom: 10px;
}
.seo-brand-meta {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 0.32em;
  opacity: 0.65;
  display: flex;
  flex-direction: column;
  gap: 4px;
  line-height: 1.5;
  margin-bottom: 32px;
}
.seo-brand-meta .seo-brand-dot { display: none; }

.seo-brand-seal {
  width: clamp(180px, 18vw, 240px);
  height: clamp(180px, 18vw, 240px);
  position: relative;
  margin-bottom: 24px;
  animation: bs-seal-rotate 60s linear infinite;
}
.seo-brand-seal-svg { width: 100%; height: 100%; display: block; }
.seo-brand-seal-text {
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  letter-spacing: 0.42em;
  font-weight: 500;
  text-transform: uppercase;
}
.seo-brand-seal-no {
  font-family: 'Italiana', serif;
  font-size: 11px;
  letter-spacing: 0.3em;
  opacity: 0.7;
}
.seo-brand-foot {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.36em;
  opacity: 0.75;
}
.seo-brand-foot-num {
  font-size: 28px;
  letter-spacing: 0;
  color: var(--orange);
  font-style: italic;
  opacity: 1;
}

@media (max-width: 900px) {
  .seo-brand { order: -1; }
  .seo-brand-mark { font-size: 80px; }
  .seo-brand-seal { width: 160px; height: 160px; }
}

/* ============================================================
   BOOKING BAND — final CTA before footer
   ============================================================ */
.booking-band {
  position: relative;
  background: var(--bg);
  color: var(--ink);
  padding: clamp(80px, 10vw, 140px) clamp(24px, 5vw, 80px);
  border-top: 1px solid rgba(245, 236, 217, 0.08);
  overflow: hidden;
}
.booking-band::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 138, 31, 0.1) 0%, transparent 55%),
    radial-gradient(circle at 85% 80%, rgba(31, 109, 255, 0.08) 0%, transparent 55%);
}
.bb-inner {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.bb-eye {
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 11px; letter-spacing: 0.32em; color: var(--gold);
  text-transform: uppercase;
}
.bb-h {
  font-size: clamp(48px, 7vw, 104px);
  line-height: 0.94; letter-spacing: -0.02em;
  margin: 16px 0 20px; max-width: 12ch;
  text-wrap: balance;
}
.bb-h em { color: var(--gold); font-style: italic; }
.bb-sub {
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.5; max-width: 42ch;
  color: rgba(245, 236, 217, 0.78);
  margin: 0;
}
.bb-actions {
  display: flex; flex-direction: column;
  gap: 0;
  padding: 28px 32px;
  border: 1px solid rgba(245, 236, 217, 0.18);
  background: rgba(0, 0, 0, 0.25);
  border-radius: 2px;
  backdrop-filter: blur(2px);
}
.bb-cta.bb-cta {
  align-self: flex-start;
  margin-bottom: 24px;
}
.booking-band .bb-line {
  display: grid !important;
  grid-template-columns: 130px 1fr;
  gap: 16px;
  align-items: baseline;
  padding: 18px 0;
  border-top: 1px solid rgba(245, 236, 217, 0.12);
  text-decoration: none !important;
  color: var(--ink) !important;
  transition: color 0.2s;
}
.booking-band a.bb-line:hover { color: var(--orange) !important; }
.booking-band a.bb-line:hover .bb-line-v { color: var(--orange); }
.booking-band .bb-line-l {
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 10px;
  letter-spacing: 0.28em;
  color: rgba(245, 236, 217, 0.5);
  text-transform: uppercase;
  align-self: center;
}
.booking-band .bb-line-v {
  font-family: var(--font-italiana, 'Italiana', serif);
  font-size: clamp(20px, 1.8vw, 26px);
  letter-spacing: 0.01em;
  color: var(--ink);
  transition: color 0.2s;
}
@media (max-width: 900px) {
  .bb-inner { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 560px) {
  .booking-band .bb-line { grid-template-columns: 1fr; gap: 4px; padding: 14px 0; }
  .bb-actions { padding: 20px 22px; }
}

/* ============================================================
   STICKY DOCK
   ============================================================ */
.dock {
  position: fixed; bottom: 20px; right: 20px; z-index: 80;
  display: flex; gap: 10px; align-items: center;
  opacity: 0; transform: translateY(20px); pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.dock.on { opacity: 1; transform: translateY(0); pointer-events: auto; }
.dock-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 16px; border-radius: 999px;
  font: 600 12px/1 "Inter", sans-serif; letter-spacing: 0.16em;
  text-decoration: none; color: var(--ink); border: none; cursor: pointer;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5), 0 2px 8px rgba(0,0,0,0.4);
  backdrop-filter: blur(10px);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.dock-btn:hover { transform: translateY(-2px); box-shadow: 0 18px 50px rgba(0,0,0,0.6); }
.dock-wa { background: #25D366; color: #052e16; }
.dock-wa span { font-weight: 700; }
.dock-call { background: rgba(20,18,15,0.85); color: var(--ink); border: 1px solid rgba(232,184,122,0.25); }
.dock-reserve {
  background: linear-gradient(135deg, var(--orange), #ff5e1a);
  color: #1a0f05;
  font-weight: 700;
  padding: 14px 22px;
}
.dock-reserve .cta-arrow { font-weight: 400; }
@media (max-width: 640px) {
  .dock { bottom: 12px; right: 12px; left: 12px; }
  .dock-btn span:not(.cta-arrow) { display: none; }
  .dock-btn { padding: 14px; }
  .dock-reserve span { display: inline !important; }
}

/* ============================================================
   RESERVE PANEL
   ============================================================ */
.reserve-overlay {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(5,4,3,0); backdrop-filter: blur(0);
  pointer-events: none;
  transition: background 0.4s ease, backdrop-filter 0.4s ease;
}
.reserve-overlay.on {
  background: rgba(5,4,3,0.7); backdrop-filter: blur(8px);
  pointer-events: auto;
}
.reserve-panel {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: min(520px, 100vw);
  background: linear-gradient(180deg, #14110d 0%, #0a0807 100%);
  border-left: 1px solid rgba(232,184,122,0.2);
  padding: 36px 40px 40px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: -30px 0 80px rgba(0,0,0,0.6);
}
.reserve-panel.on { transform: translateX(0); }
.reserve-close {
  position: absolute; top: 18px; right: 22px;
  background: none; border: none; color: var(--ink);
  font-size: 32px; line-height: 1; cursor: pointer; opacity: 0.6;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.reserve-close:hover { opacity: 1; transform: rotate(90deg); }
.reserve-eye { display: block; font: 600 10px/1 "Inter"; letter-spacing: 0.32em; color: var(--orange); margin-bottom: 14px; }
.reserve-title { font-size: 42px; line-height: 1; letter-spacing: 0.04em; margin-bottom: 10px; }
.reserve-sub { font-size: 16px; opacity: 0.7; margin-bottom: 26px; }
.reserve-form { display: flex; flex-direction: column; gap: 16px; }
.rf-field { display: flex; flex-direction: column; gap: 6px; }
.rf-field span { font: 600 10px/1 "Inter"; letter-spacing: 0.24em; color: var(--gold); text-transform: uppercase; }
.rf-field input,
.rf-field select,
.rf-field textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(232,184,122,0.18);
  color: var(--ink);
  padding: 12px 14px;
  font: 400 15px/1.4 "Cormorant Garamond", serif;
  border-radius: 2px;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.rf-field input:focus,
.rf-field select:focus,
.rf-field textarea:focus {
  border-color: var(--orange);
  background: rgba(255,138,31,0.06);
}
.rf-field textarea { resize: vertical; font-family: "Inter", sans-serif; font-size: 14px; }
.rf-field select { appearance: none; -webkit-appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%), linear-gradient(135deg, var(--gold) 50%, transparent 50%); background-position: calc(100% - 16px) 50%, calc(100% - 11px) 50%; background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; padding-right: 32px; }
/* Force the native dropdown popup to render dark instead of OS-default white */
.reserve-form { color-scheme: dark; }
.rf-field select option,
.rf-field select optgroup {
  background: #14100c;
  color: #f5ecd9;
  padding: 10px;
}
.rf-field select option:checked {
  background: #2a1d10;
  color: #ffb86b;
}
.rf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.rf-pills { display: flex; gap: 8px; }
.rf-pill {
  flex: 1; padding: 10px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(232,184,122,0.18);
  color: var(--ink);
  font: 500 13px/1 "Inter"; letter-spacing: 0.08em;
  cursor: pointer; transition: all 0.2s ease;
  border-radius: 2px;
}
.rf-pill.on { background: var(--orange); color: #1a0f05; border-color: var(--orange); font-weight: 700; }
.rf-submit {
  margin-top: 8px; padding: 16px;
  background: linear-gradient(135deg, var(--orange), #ff5e1a);
  color: #1a0f05; border: none; border-radius: 2px;
  font: 700 12px/1 "Inter"; letter-spacing: 0.24em;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.rf-submit:hover { transform: translateY(-1px); box-shadow: 0 10px 30px rgba(255,138,31,0.4); }
.rf-fine { font-size: 13px; opacity: 0.55; text-align: center; margin-top: 4px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  background: var(--bg); color: var(--ink);
  padding: 120px 60px;
  position: relative;
}
.faq-head { max-width: 1200px; margin: 0 auto 60px; }
.faq-eye { font: 600 11px/1 "Inter"; letter-spacing: 0.32em; color: var(--gold); display: block; margin-bottom: 18px; }
.faq-title { font-size: clamp(40px, 5vw, 72px); line-height: 1.05; letter-spacing: 0.02em; }
.faq-list { max-width: 1000px; margin: 0 auto; }
.faq-row {
  border-top: 1px solid rgba(232,184,122,0.15);
  padding: 26px 0;
  cursor: pointer;
}
.faq-row:last-child { border-bottom: 1px solid rgba(232,184,122,0.15); }
.faq-q {
  display: grid; grid-template-columns: 60px 1fr 40px;
  align-items: baseline; gap: 16px;
  font-size: clamp(20px, 2.6vw, 32px);
  letter-spacing: 0.02em;
  list-style: none;
  cursor: pointer;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-num { font: 600 12px/1 "Inter"; letter-spacing: 0.2em; color: var(--orange); }
.faq-toggle { font-size: 32px; color: var(--gold); text-align: right; line-height: 1; transition: transform 0.3s ease; }
.faq-row[open] .faq-toggle { transform: rotate(180deg); color: var(--orange); }
.faq-a {
  margin-top: 14px;
  padding-left: 76px;
  padding-right: 56px;
  font-size: 19px; line-height: 1.55;
  color: rgba(245, 236, 217, 0.75);
}
.faq-cta { display: flex; justify-content: center; margin-top: 48px; }

/* ============================================================
   VISIT
   ============================================================ */
.visit {
  background: var(--bg);
  padding: 120px 60px;
  border-top: 1px solid rgba(232,184,122,0.1);
}
.visit-grid {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: stretch;
}
.visit-info { display: flex; flex-direction: column; gap: 32px; }
.v-eye { font: 600 11px/1 "Inter"; letter-spacing: 0.32em; color: var(--gold); }
.v-title { font-size: clamp(40px, 5vw, 72px); line-height: 1.05; letter-spacing: 0.02em; margin-bottom: 12px; }
.v-rows { display: flex; flex-direction: column; gap: 24px; }
.v-row { padding: 20px 0; border-top: 1px solid rgba(232,184,122,0.15); }
.v-row:first-child { border-top: none; padding-top: 0; }
.v-label { font: 600 10px/1 "Inter"; letter-spacing: 0.32em; color: var(--orange); display: block; margin-bottom: 10px; }
.v-link { display: inline-block; margin-top: 8px; color: var(--gold); text-decoration: none; font: 500 12px/1 "Inter"; letter-spacing: 0.16em; border-bottom: 1px solid var(--gold); padding-bottom: 4px; transition: color 0.2s, border-color 0.2s; }
.v-link:hover { color: var(--orange); border-color: var(--orange); }
.visit-map {
  position: relative;
  display: block;
  min-height: 520px;
  border: 1px solid rgba(232,184,122,0.2);
  overflow: hidden;
  text-decoration: none;
}
.visit-map iframe {
  width: 100%; height: 100%;
  border: 0;
  filter: grayscale(0.4) contrast(1.1) brightness(0.85);
  position: absolute; inset: 0;
}
.map-pin {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  pointer-events: none;
}
.map-dot {
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 6px rgba(255,138,31,0.25), 0 0 30px rgba(255,138,31,0.6);
  animation: pulse 2.5s ease-in-out infinite;
}
.map-label {
  font-size: 18px; letter-spacing: 0.2em;
  color: var(--ink);
  background: rgba(10,8,7,0.8);
  padding: 6px 14px;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(232,184,122,0.3);
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 6px rgba(255,138,31,0.25), 0 0 30px rgba(255,138,31,0.6); }
  50%      { box-shadow: 0 0 0 14px rgba(255,138,31,0), 0 0 40px rgba(255,138,31,0.8); }
}
@media (max-width: 900px) {
  .visit-grid { grid-template-columns: 1fr; }
  .visit-map { min-height: 360px; }
  .faq-q { grid-template-columns: 50px 1fr 30px; }
  .faq-a { padding-left: 66px; padding-right: 0; }
  .reserve-panel { padding: 28px 24px; }
  .rf-row { grid-template-columns: 1fr; }
}

/* ============================================================
   FOOTER CTA
   ============================================================ */
.foot-cta {
  margin-top: 14px;
  background: var(--orange);
  color: #1a0f05;
  border: none;
  padding: 12px 20px;
  font: 700 11px/1 "Inter"; letter-spacing: 0.24em;
  cursor: pointer;
  border-radius: 2px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.foot-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,138,31,0.4); }

/* Pad bottom of body to clear sticky dock */
.footer { padding-bottom: 100px; }

/* ====== Competitive copy refinements (v7) ====== */

/* Stats — sublabel + better hierarchy */
.stat { padding: 8px 32px; min-width: 0; }
.stat-n { font-size: clamp(40px, 5vw, 56px); color: var(--orange); letter-spacing: 0.02em; }
.stat-label { margin-top: 6px; font-weight: 600; letter-spacing: 0.28em; opacity: 0.95; }
.stat-sublabel {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 14px;
  opacity: 0.65;
  letter-spacing: 0.02em;
  margin-top: 2px;
}

/* Rituals teaser sub + footer */
.rit-sub {
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.5;
  margin-top: 18px;
  max-width: 640px;
  opacity: 0.82;
}
.rit-foot {
  max-width: 1400px;
  margin: 56px auto 0;
  padding-top: 36px;
  border-top: 1px solid rgba(245, 236, 217, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.rit-foot-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font: 700 12px/1 "Inter";
  letter-spacing: 0.32em;
  color: var(--orange);
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid var(--orange);
  transition: gap 0.25s ease, opacity 0.2s ease;
}
.rit-foot-link:hover { gap: 22px; opacity: 0.85; }
.rit-foot-note { font-size: 16px; opacity: 0.55; letter-spacing: 0.01em; }

/* A Casa lead paragraph */
.v-lead {
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.65;
  max-width: 540px;
  opacity: 0.8;
  margin-top: 18px;
  margin-bottom: 8px;
}



/* ============================================================
   HERO v2 — product-style two-column
   ============================================================ */
.hero-v2 {
  min-height: 100vh;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hv2 .palm-faded { opacity: 0.18; filter: blur(0.4px); }
.hero-v2 .palm-faded { opacity: 0.1; filter: blur(0.6px); }
.hero-v2 .hero-bg-solid { background: #0a0807; }

/* Bottom fade so hero blends into the marquee below */
.hero-v2::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent 0%, rgba(10, 8, 7, 0.7) 60%, var(--bg, #0a0807) 100%);
  z-index: 4;
  pointer-events: none;
}

/* ==== Tropical palm illustration — hero frame ==== */
.hv2-illust {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
}
.hv2-illust img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom center;
  /* Tone illustration so it fits the moody brand */
  filter: brightness(0.85) saturate(1) contrast(0.96);
  opacity: 0.95;
  /* gentle 16s sway from bottom (where palms are rooted) */
  transform-origin: 50% 100%;
  animation: hv2-illust-sway 16s ease-in-out infinite;
}
@keyframes hv2-illust-sway {
  0%, 100% { transform: scale(1.02) rotate(-0.2deg); }
  50%      { transform: scale(1.02) rotate(0.2deg); }
}

/* ==== Animated birds ==== */
.hv2-bird {
  position: absolute;
  width: 36px;
  height: 18px;
  pointer-events: none;
  z-index: 4;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
  /* The inline transform handles mouse+scroll. The wrapper animates the flight path. */
  will-change: transform;
}
/* Wrappers so we can stack two transforms (flight loop on outer, mouse on inline) */
.hv2-bird::before {
  content: '';
}
/* Flight-loop animations — each bird flies a different lazy figure-8/arc */
.hv2-bird-1 {
  top: 18%; left: 38%;
  animation: hv2-bird-flight-1 22s ease-in-out infinite;
}
.hv2-bird-2 {
  top: 14%; left: 52%;
  width: 28px;
  animation: hv2-bird-flight-2 18s ease-in-out infinite 2s;
}
.hv2-bird-3 {
  top: 22%; left: 60%;
  width: 24px;
  animation: hv2-bird-flight-3 26s ease-in-out infinite 5s;
}
@keyframes hv2-bird-flight-1 {
  0%   { left: 38%; top: 18%; opacity: 0; }
  10%  { opacity: 1; }
  25%  { left: 50%; top: 12%; }
  50%  { left: 65%; top: 22%; }
  75%  { left: 48%; top: 28%; }
  90%  { opacity: 1; }
  100% { left: 38%; top: 18%; opacity: 0; }
}
@keyframes hv2-bird-flight-2 {
  0%   { left: 52%; top: 14%; opacity: 0; }
  15%  { opacity: 1; }
  30%  { left: 62%; top: 18%; }
  60%  { left: 58%; top: 24%; }
  85%  { left: 50%; top: 16%; opacity: 1; }
  100% { left: 52%; top: 14%; opacity: 0; }
}
@keyframes hv2-bird-flight-3 {
  0%   { left: 60%; top: 22%; opacity: 0; }
  20%  { opacity: 1; }
  40%  { left: 70%; top: 14%; }
  65%  { left: 56%; top: 26%; }
  90%  { opacity: 1; }
  100% { left: 60%; top: 22%; opacity: 0; }
}
/* Add a flapping wing effect via subtle scaleY pulse */
.hv2-bird path {
  animation: hv2-bird-flap 0.6s ease-in-out infinite alternate;
  transform-origin: center;
}
.hv2-bird-2 path { animation-duration: 0.45s; }
.hv2-bird-3 path { animation-duration: 0.55s; }
@keyframes hv2-bird-flap {
  0%   { transform: scaleY(0.7); }
  100% { transform: scaleY(1.3); }
}

/* Vignette over palm illustration for legibility */
.hv2-illust-vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
  background:
    /* Center reading zone for headline */
    radial-gradient(ellipse 55% 55% at 30% 50%, rgba(10, 8, 7, 0.55), transparent 70%),
    /* Top fade */
    linear-gradient(to bottom, rgba(10, 8, 7, 0.45) 0%, transparent 22%),
    /* Bottom anchor */
    linear-gradient(to top, rgba(10, 8, 7, 0.55) 0%, transparent 32%);
}

@media (prefers-reduced-motion: reduce) {
  .hv2-illust img,
  .hv2-bird,
  .hv2-bird path { animation: none; }
}

/* ==== Recurring engraved-palm motif on other sections ==== */
.engraved-motif {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.engraved-motif img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.10;
}
.engraved-motif--top {
  top: 0; left: 0; right: 0;
  height: 360px;
}
.engraved-motif--top img {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleY(-1);
  width: max(1400px, 110%);
  opacity: 0.07;
}
.engraved-motif--bottom {
  bottom: 0; left: 0; right: 0;
  height: 380px;
}
.engraved-motif--bottom img {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: max(1400px, 110%);
  opacity: 0.08;
}
.engraved-motif--left {
  top: 0; bottom: 0; left: 0;
  width: 30%; max-width: 360px;
}
.engraved-motif--left img {
  position: absolute;
  bottom: 0; left: 0;
  width: 200%;
  max-width: none;
  opacity: 0.10;
}
.engraved-motif--right {
  top: 0; bottom: 0; right: 0;
  width: 30%; max-width: 360px;
}
.engraved-motif--right img {
  position: absolute;
  bottom: 0; right: 0;
  width: 200%;
  max-width: none;
  transform: translateX(50%);
  opacity: 0.10;
}

.hv2-stage {
  position: relative; z-index: 5;
  width: min(1320px, 92vw);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 88px);
  align-items: center;
  padding: clamp(80px, 10vh, 120px) 0 clamp(60px, 8vh, 100px);
}

/* LEFT */
.hv2-left { display: flex; flex-direction: column; align-items: flex-start; gap: 22px; }

.hv2-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 9px 18px;
  border: 1px solid rgba(245, 236, 217, 0.16);
  border-radius: 100px;
  background: rgba(20, 16, 14, 0.55);
  backdrop-filter: blur(8px);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: rgba(245, 236, 217, 0.78);
  font-weight: 500;
  animation: hv2-fade-in 0.8s ease 0.1s both;
}
.hv2-eye-icon { width: 14px; height: 14px; color: var(--orange); flex-shrink: 0; }

.hv2-headline {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(48px, 6.2vw, 96px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  color: #f5ecd9;
  margin: 4px 0 0;
  text-wrap: balance;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.5);
  animation: hv2-fade-in 1s ease 0.25s both;
}
.hv2-amber {
  color: var(--orange);
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.005em;
}

.hv2-sub {
  font-family: 'Inter', sans-serif;
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.7;
  color: rgba(245, 236, 217, 0.85);
  max-width: 520px;
  margin: 8px 0 6px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
  animation: hv2-fade-in 1s ease 0.45s both;
}

.hv2-ctas {
  display: flex; flex-wrap: wrap; gap: 14px; margin-top: 8px;
  animation: hv2-fade-in 1s ease 0.6s both;
}
.hv2-cta-primary {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 28px;
  background: var(--orange);
  color: #0a0807;
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
  box-shadow: 0 14px 40px -14px rgba(255, 138, 31, 0.55);
}
.hv2-cta-primary:hover { transform: translateY(-2px); filter: brightness(1.08); }
.hv2-cta-arrow {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(10, 8, 7, 0.18);
  font-size: 13px;
  transition: transform 0.25s ease;
}
.hv2-cta-primary:hover .hv2-cta-arrow { transform: translateX(3px); }
.hv2-cta-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 26px;
  background: rgba(245, 236, 217, 0.04);
  border: 1px solid rgba(245, 236, 217, 0.14);
  border-radius: 100px;
  color: rgba(245, 236, 217, 0.85);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.hv2-cta-ghost:hover { border-color: rgba(245, 236, 217, 0.32); background: rgba(245, 236, 217, 0.07); }

.hv2-chips {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px;
  animation: hv2-fade-in 1s ease 0.78s both;
}
.hv2-chip {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 11px 18px;
  background: rgba(245, 236, 217, 0.025);
  border: 1px solid rgba(245, 236, 217, 0.1);
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 12.5px;
  color: rgba(245, 236, 217, 0.7);
  font-weight: 500;
}
.hv2-chip-icon { width: 15px; height: 15px; color: var(--orange); opacity: 0.85; flex-shrink: 0; }

/* RIGHT — featured ritual card */
.hv2-card {
  position: relative;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(28, 22, 18, 0.85) 0%, rgba(15, 11, 9, 0.95) 100%);
  border: 1px solid rgba(245, 236, 217, 0.08);
  padding: clamp(28px, 3vw, 44px);
  overflow: hidden;
  isolation: isolate;
  aspect-ratio: 4 / 4.4;
  max-width: 540px;
  width: 100%;
  justify-self: end;
  box-shadow:
    0 40px 80px -30px rgba(0, 0, 0, 0.7),
    inset 0 1px 0 rgba(245, 236, 217, 0.06);
  animation: hv2-fade-in 1.2s ease 0.4s both;
  transition: transform 0.6s cubic-bezier(.2,.8,.2,1);
  display: flex;
  flex-direction: column;
}

.hv2-mood {
  position: absolute;
  top: clamp(20px, 2.5vw, 32px);
  left: clamp(20px, 2.5vw, 32px);
  z-index: 4;
  display: inline-flex; align-items: center; gap: 12px;
  padding: 12px 16px;
  background: rgba(8, 6, 5, 0.78);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(245, 236, 217, 0.1);
  border-radius: 14px;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.6);
}
.hv2-mood-icon { width: 18px; height: 18px; color: var(--orange); flex-shrink: 0; }
.hv2-mood-text { display: flex; flex-direction: column; gap: 2px; line-height: 1.1; }
.hv2-mood-label {
  font-family: 'Inter', sans-serif;
  font-size: 9.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245, 236, 217, 0.5);
}
.hv2-mood-value {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 15px;
  color: #f5ecd9;
  white-space: nowrap;
}

.hv2-card-stage {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 -8px;
  min-height: 0;
}

/* Warm radial glow behind the relief */
.hv2-glow {
  position: absolute;
  inset: 10% 15%;
  background: radial-gradient(circle, rgba(255, 138, 31, 0.45) 0%, rgba(255, 138, 31, 0.18) 30%, transparent 65%);
  filter: blur(20px);
  z-index: 0;
  animation: hv2-pulse 6s ease-in-out infinite;
}

.hv2-relief {
  position: relative;
  z-index: 2;
  width: 56%;
  aspect-ratio: 1.7 / 1;
  margin-top: 8%;
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 20px 60px -20px rgba(0, 0, 0, 0.75),
    inset 0 0 50px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(245, 236, 217, 0.07);
}
.hv2-relief img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: sepia(0.15) brightness(0.85) contrast(1.05);
  animation: hv2-ken-burns 18s ease-in-out infinite alternate;
}

.hv2-palm-silh {
  position: absolute;
  bottom: 8%;
  width: clamp(70px, 11%, 110px);
  height: auto;
  z-index: 3;
  pointer-events: none;
}
.hv2-palm-silh-left { left: 6%; transform: rotate(-3deg); }
.hv2-palm-silh-right { right: 6%; transform: rotate(3deg); }

.hv2-feature {
  position: relative;
  z-index: 3;
  margin-top: clamp(20px, 2.5vw, 32px);
  padding-top: 22px;
  border-top: 1px solid rgba(245, 236, 217, 0.08);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hv2-feature-eye {
  font-family: 'Inter', sans-serif;
  font-size: 10.5px;
  letter-spacing: 0.32em;
  color: rgba(245, 236, 217, 0.45);
  text-transform: uppercase;
  font-weight: 500;
}
.hv2-feature-title {
  font-size: clamp(28px, 2.6vw, 38px);
  letter-spacing: 0.005em;
  color: #f5ecd9;
  line-height: 1;
  margin: 2px 0;
}
.hv2-feature-sub {
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(245, 236, 217, 0.55);
  margin: 0;
}

/* Animations */
@keyframes hv2-fade-in {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes hv2-pulse {
  0%, 100% { opacity: 0.85; transform: scale(1); }
  50%      { opacity: 1; transform: scale(1.06); }
}
@keyframes hv2-ken-burns {
  0%   { transform: scale(1.0) translate(0, 0); }
  100% { transform: scale(1.08) translate(-1.5%, 1.5%); }
}

/* ============ RESPONSIVE — Hero v2 ============ */

/* Tablet — keep 2-col but tighten */
@media (max-width: 1100px) {
  .hv2-stage {
    gap: clamp(24px, 4vw, 48px);
    padding: clamp(64px, 8vh, 96px) 0 clamp(48px, 6vh, 80px);
  }
  .hv2-headline { font-size: clamp(40px, 6vw, 72px); }
  .hv2-buddha-stage { width: clamp(200px, 26vw, 300px); }
}

/* Mobile / small tablet — collapse to single column */
@media (max-width: 880px) {
  .hv2-stage {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 80px 0 56px;
    width: min(560px, 92vw);
    text-align: center;
  }
  .hv2-left { align-items: center; }
  .hv2-headline { font-size: clamp(36px, 9vw, 52px); text-align: center; }
  .hv2-sub { text-align: center; max-width: 100%; }
  .hv2-eyebrow,
  .hv2-chips { justify-content: center; }
  .hv2-chips { justify-content: center; }
  .hv2-ctas { justify-content: center; flex-wrap: wrap; }
  .hv2-cta-primary,
  .hv2-cta-ghost {
    flex: 1 1 auto;
    min-width: 0;
    justify-content: center;
  }
  .hv2-card { justify-self: stretch; max-width: 100%; aspect-ratio: 4 / 4.6; }
  .hv2-buddha-col { padding: 40px 16px 32px; }

  /* On mobile, fade illustration further so text reads cleanly */
  .hv2-illust img { opacity: 0.65; filter: brightness(0.7) saturate(0.95); }
}

/* Small phones — tighten further */
@media (max-width: 480px) {
  .hv2-headline { font-size: clamp(30px, 9vw, 42px); }
  .hv2-sub { font-size: 14px; line-height: 1.6; }
  .hv2-eyebrow { font-size: 10px; padding: 7px 14px; }
  .hv2-chip { padding: 9px 14px; font-size: 12px; }
  .hv2-cta-primary,
  .hv2-cta-ghost {
    width: 100%;
    flex: 1 1 100%;
    padding: 14px 18px;
    font-size: 14px;
  }
  .hv2-buddha-stage { width: clamp(180px, 60vw, 240px); }
  .hv2-mood {
    font-size: 11px;
    padding: 8px 14px;
    top: 16px;
  }
  .hv2-mood-value { font-size: 14px; }
  .hv2-feature-title { font-size: 22px; }
  .hv2-feature-sub { font-size: 12.5px; }
}

/* Very small / landscape mobile — make hero scrollable instead of forcing 100vh */
@media (max-height: 640px) and (max-width: 880px) {
  .hero-v2 {
    min-height: auto;
    padding: 56px 0;
  }
}

/* Standalone topbar wrap — replaces hs-topbar after slider was retired */
.hs-topbar-wrap {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 22px clamp(28px, 5vw, 64px) 0;
  pointer-events: none;
}
.hs-topbar-wrap > * { pointer-events: auto; }
.hs-topbar-wrap .topbar { padding-top: 6px; }

/* ==== Buddha column (replaces ritual card) ==== */
.hv2-buddha-col {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  padding: 60px 20px 80px;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  min-height: 100%;
}
.hv2-buddha-col .hv2-mood {
  position: absolute;
  top: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  background: rgba(20, 14, 10, 0.78);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(245, 236, 217, 0.12);
  border-radius: 999px;
  padding: 8px 14px 8px 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.hv2-buddha-stage {
  position: relative;
  width: clamp(280px, 36vw, 480px);
  aspect-ratio: 16 / 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Warm glow halo behind the buddha */
.hv2-buddha-glow {
  position: absolute;
  inset: -20%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 45%,
      rgba(217, 119, 53, 0.45) 0%,
      rgba(217, 119, 53, 0.22) 28%,
      rgba(184, 100, 32, 0.08) 50%,
      transparent 72%);
  filter: blur(8px);
  z-index: 0;
  animation: hv2-buddha-glow-pulse 6s ease-in-out infinite;
}
@keyframes hv2-buddha-glow-pulse {
  0%, 100% { opacity: 0.85; transform: scale(1); }
  50%      { opacity: 1;   transform: scale(1.04); }
}

/* Sun rays SVG behind buddha */
.hv2-buddha-rays {
  position: absolute;
  inset: -10%;
  z-index: 1;
  animation: hv2-rays-rotate 60s linear infinite;
}
.hv2-buddha-rays svg { width: 100%; height: 100%; display: block; }
@keyframes hv2-rays-rotate {
  to { transform: rotate(360deg); }
}

.hv2-buddha-img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Crop the Buddha inside a niche so internal pan/zoom is contained */
  overflow: hidden;
  /* Niche shape: arched at top, straight at bottom — like a temple alcove */
  border-radius: 50% 50% 12px 12px / 28% 28% 12px 12px;
  /* Layered border: warm gold outer ring + subtle inner highlight */
  background: radial-gradient(ellipse at 50% 30%, rgba(217, 119, 53, 0.12), transparent 65%);
  box-shadow:
    /* Soft outer halo */
    0 0 0 1px rgba(217, 119, 53, 0.55),
    0 0 0 5px rgba(20, 14, 10, 0.85),
    0 0 0 6px rgba(217, 119, 53, 0.35),
    0 0 0 9px rgba(20, 14, 10, 0.6),
    /* Cast shadow for depth */
    0 18px 50px -12px rgba(0, 0, 0, 0.7),
    0 0 60px rgba(217, 119, 53, 0.18),
    /* Inner top highlight + bottom shadow for niche depth */
    inset 0 14px 28px -10px rgba(255, 200, 130, 0.18),
    inset 0 -20px 40px -12px rgba(0, 0, 0, 0.55);
}
.hv2-buddha-img img {
  width: 105%;
  height: 105%;
  object-fit: cover;
  object-position: center 35%;
  /* Warm sepia treatment so it harmonizes with the illustration */
  filter:
    sepia(0.2)
    saturate(1.12)
    brightness(1.08)
    contrast(1.05)
    drop-shadow(0 0 24px rgba(217, 119, 53, 0.18));
  /* Ken-Burns: slow zoom + horizontal drift */
  animation: hv2-buddha-kenburns 20s ease-in-out infinite alternate;
  transform-origin: center 40%;
}
/* Decorative corner ornaments — subtle gold flourishes at niche corners */
.hv2-buddha-img::before,
.hv2-buddha-img::after {
  content: '';
  position: absolute;
  bottom: 4px;
  width: 24px;
  height: 24px;
  z-index: 3;
  pointer-events: none;
  background:
    linear-gradient(45deg, transparent 46%, rgba(217, 119, 53, 0.7) 47%, rgba(217, 119, 53, 0.7) 53%, transparent 54%),
    linear-gradient(135deg, transparent 46%, rgba(217, 119, 53, 0.7) 47%, rgba(217, 119, 53, 0.7) 53%, transparent 54%);
  opacity: 0.6;
}
.hv2-buddha-img::before { left: 4px; transform: rotate(-90deg); }
.hv2-buddha-img::after  { right: 4px; transform: rotate(180deg); }

@keyframes hv2-buddha-kenburns {
  0% {
    transform: scale(1.0) translateX(-2%);
  }
  50% {
    transform: scale(1.06) translateX(0%);
  }
  100% {
    transform: scale(1.02) translateX(2%);
  }
}
}

/* Caption beneath the buddha */
.hv2-buddha-caption {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  margin-top: 8px;
  padding: 0 12px;
}
.hv2-buddha-caption .hv2-feature-eye {
  letter-spacing: 0.32em;
}
.hv2-buddha-caption .hv2-feature-title {
  margin: 4px 0 6px;
}
.hv2-buddha-caption .hv2-feature-sub {
  text-align: center;
  text-wrap: pretty;
  max-width: 320px;
  margin: 0 auto;
}

@media (prefers-reduced-motion: reduce) {
  .hv2-buddha-glow,
  .hv2-buddha-rays,
  .hv2-buddha-img img { animation: none; }
}

@media (max-width: 880px) {
  .hv2-buddha-stage { width: clamp(220px, 60vw, 280px); }
}

/* ============================================================
   HERO LAYOUT VARIATIONS — toggled via [data-hero-layout]
   ============================================================ */

/* ---------- 1. CINEMATIC DEPTH ----------
   Reorganize z-layers: distant palms (faded/blurred behind), mid-ground
   Buddha, foreground palms partially in front of niche. Strong amber
   light bleed from Buddha into surroundings. Headline integrated. */
.hero-v2[data-hero-layout="cinematic"] .hv2-illust img {
  /* Background palms: more faded, slightly blurred, recede */
  opacity: 0.55;
  filter: brightness(0.7) saturate(0.95) blur(2px);
  transform: scale(1.08);
}
.hero-v2[data-hero-layout="cinematic"] .hv2-illust {
  z-index: 1;
}
/* Add a foreground palms overlay — duplicate, sharper, in front of Buddha */
.hero-v2[data-hero-layout="cinematic"] .hv2-illust::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('assets/palms-illustration.png?v=5');
  background-size: cover;
  background-position: bottom center;
  z-index: 8;
  /* Only show edges — fade out the middle so Buddha shows through */
  -webkit-mask-image: linear-gradient(to right,
    rgba(0,0,0,1) 0%,
    rgba(0,0,0,1) 18%,
    rgba(0,0,0,0) 32%,
    rgba(0,0,0,0) 68%,
    rgba(0,0,0,1) 82%,
    rgba(0,0,0,1) 100%);
          mask-image: linear-gradient(to right,
    rgba(0,0,0,1) 0%,
    rgba(0,0,0,1) 18%,
    rgba(0,0,0,0) 32%,
    rgba(0,0,0,0) 68%,
    rgba(0,0,0,1) 68%,
    rgba(0,0,0,1) 82%,
    rgba(0,0,0,1) 100%);
  filter: brightness(1.05) saturate(1.1) drop-shadow(0 12px 24px rgba(0,0,0,0.5));
  pointer-events: none;
  animation: hv2-illust-sway 18s ease-in-out infinite reverse;
  transform-origin: 50% 100%;
}
/* Buddha sits mid-ground with stronger amber bleed into the scene */
.hero-v2[data-hero-layout="cinematic"] .hv2-buddha-glow {
  inset: -35%;
  background:
    radial-gradient(ellipse at 50% 50%,
      rgba(217, 119, 53, 0.55) 0%,
      rgba(217, 119, 53, 0.32) 22%,
      rgba(184, 100, 32, 0.16) 42%,
      rgba(217, 119, 53, 0.06) 60%,
      transparent 80%);
  filter: blur(16px);
}
/* Stronger column-wide amber light wash spilling into the whole scene */
.hero-v2[data-hero-layout="cinematic"] .hv2-buddha-col::before {
  content: '';
  position: absolute;
  inset: -20% -50%;
  background: radial-gradient(ellipse at 50% 55%,
    rgba(217, 119, 53, 0.18) 0%,
    rgba(217, 119, 53, 0.08) 35%,
    transparent 65%);
  filter: blur(40px);
  z-index: 0;
  pointer-events: none;
}
/* Soften the niche frame — less heavy, more atmospheric */
.hero-v2[data-hero-layout="cinematic"] .hv2-buddha-img {
  border-radius: 50% 50% 8px 8px / 32% 32% 8px 8px;
  box-shadow:
    0 0 0 1px rgba(217, 119, 53, 0.4),
    0 0 0 6px rgba(20, 14, 10, 0.6),
    0 24px 60px -16px rgba(0, 0, 0, 0.7),
    0 0 80px rgba(217, 119, 53, 0.25),
    inset 0 14px 28px -10px rgba(255, 200, 130, 0.22),
    inset 0 -20px 40px -12px rgba(0, 0, 0, 0.5);
}
.hero-v2[data-hero-layout="cinematic"] .hv2-buddha-img::before,
.hero-v2[data-hero-layout="cinematic"] .hv2-buddha-img::after {
  display: none; /* drop the corner ornaments */
}
/* Headline + sub get warmer ambient tint to feel inside the same scene */
.hero-v2[data-hero-layout="cinematic"] .hv2-headline {
  text-shadow:
    0 2px 18px rgba(0, 0, 0, 0.7),
    0 0 60px rgba(217, 119, 53, 0.18);
}

/* ---------- 2. HEADLINE-FIRST ----------
   Buddha shrinks ~35% to supporting role. Headline becomes dominant.
   Atmosphere chip absorbed into eyebrow. Grid shifts to favor left. */
.hero-v2[data-hero-layout="headline"] .hv2-stage {
  grid-template-columns: 1.5fr 0.65fr;
  gap: clamp(48px, 6vw, 100px);
}
.hero-v2[data-hero-layout="headline"] .hv2-headline {
  font-size: clamp(56px, 8.5vw, 128px);
  line-height: 0.96;
  letter-spacing: -0.02em;
}
.hero-v2[data-hero-layout="headline"] .hv2-sub {
  font-size: clamp(16px, 1.15vw, 19px);
  max-width: 560px;
}
.hero-v2[data-hero-layout="headline"] .hv2-buddha-stage {
  width: clamp(200px, 22vw, 320px);
  aspect-ratio: 16 / 10;
}
.hero-v2[data-hero-layout="headline"] .hv2-buddha-glow {
  inset: -10%;
  filter: blur(6px);
}
.hero-v2[data-hero-layout="headline"] .hv2-buddha-rays svg {
  /* Rays smaller and softer */
  opacity: 0.5;
}
.hero-v2[data-hero-layout="headline"] .hv2-buddha-img {
  /* Lighter frame */
  box-shadow:
    0 0 0 1px rgba(217, 119, 53, 0.4),
    0 0 0 4px rgba(20, 14, 10, 0.7),
    0 12px 36px -10px rgba(0, 0, 0, 0.6),
    inset 0 10px 22px -10px rgba(255, 200, 130, 0.16),
    inset 0 -16px 32px -10px rgba(0, 0, 0, 0.45);
}
.hero-v2[data-hero-layout="headline"] .hv2-buddha-img::before,
.hero-v2[data-hero-layout="headline"] .hv2-buddha-img::after {
  display: none;
}
/* Hide separate mood chip — absorbed into eyebrow */
.hero-v2[data-hero-layout="headline"] .hv2-mood { display: none; }
/* Inject mood into eyebrow as second line */
.hero-v2[data-hero-layout="headline"] .hv2-eyebrow::after {
  content: '· Calma · Quente · Sagrada';
  margin-left: 4px;
  font-style: italic;
  opacity: 0.75;
  font-size: 0.92em;
  letter-spacing: 0.04em;
  text-transform: none;
}
/* Caption beneath Buddha gets smaller, tighter */
.hero-v2[data-hero-layout="headline"] .hv2-feature-title {
  font-size: clamp(18px, 1.3vw, 22px);
}
.hero-v2[data-hero-layout="headline"] .hv2-feature-sub {
  font-size: 12px;
  line-height: 1.55;
  max-width: 240px;
}
.hero-v2[data-hero-layout="headline"] .hv2-feature-eye {
  font-size: 9.5px;
}
/* Headline-first: collapse Buddha column on tablet too — keep emphasis on text */
@media (max-width: 1100px) {
  .hero-v2[data-hero-layout="headline"] .hv2-stage {
    grid-template-columns: 1.4fr 0.7fr;
  }
}
@media (max-width: 880px) {
  .hero-v2[data-hero-layout="headline"] .hv2-stage {
    grid-template-columns: 1fr;
  }
}
