/* =========================================================
   PROMESSA — one world. Pure villa canvas. No templates.
   Every block of text floats DIRECTLY on the frame.
   Mom is feathered into the scene like she is standing there.
   ========================================================= */

:root {
  --ivory:        #f7f1e6;
  --ink:          #2a221c;
  --gold:         #c9a96e;
  --gold-soft:    #d8b378;
  --gold-deep:    #8a6a3f;
  --gold-pale:    #f3e1bd;
  --line:         rgba(243, 225, 189, 0.22);

  --display: 'Bodoni Moda', 'Cormorant Garamond', Georgia, serif;
  --serif:   'Cormorant Garamond', 'Bodoni Moda', Georgia, serif;
  --sans:    'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --mono:    'JetBrains Mono', 'SF Mono', Menlo, monospace;

  --ease:    cubic-bezier(.22, .61, .36, 1);

  /* Drop shadow strong enough to keep ivory text readable on bright
     golden-hour frames. Used everywhere text floats on the world. */
  --txt-shadow:
    0 1px 0 rgba(0,0,0,0.4),
    0 2px 6px rgba(0,0,0,0.85),
    0 0 22px rgba(0,0,0,0.55);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { overflow-y: auto; overflow-x: hidden; }
body {
  font-family: var(--sans);
  background: #0a0603;
  color: var(--ivory);
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
::selection { background: var(--gold); color: var(--ink); }

/* Custom cursor */
@media (hover: hover) and (pointer: fine) {
  html, body, a, button { cursor: auto; }
  .cursor { display: none; }
  .cursor__dot {
    position: fixed; top: 0; left: 0;
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--gold-pale);
    transform: translate(-50%, -50%);
    transition: width .3s var(--ease), height .3s var(--ease), opacity .3s var(--ease);
    box-shadow: 0 0 10px rgba(243, 225, 189, 0.7);
  }
  .cursor__ring {
    position: fixed; top: 0; left: 0;
    width: 38px; height: 38px;
    border: 1px solid rgba(243, 225, 189, 0.65);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width .35s var(--ease), height .35s var(--ease), border-color .35s var(--ease), background .35s var(--ease);
  }
  .cursor.is-hover .cursor__dot { width: 4px; height: 4px; opacity: 0.65; }
  .cursor.is-hover .cursor__ring { width: 64px; height: 64px; border-color: var(--gold-pale); background: rgba(201, 169, 110, 0.12); }
  .cursor.is-down .cursor__ring { width: 28px; height: 28px; }
}

/* =========================================================
   THE WORLD — fixed canvas. Scroll paints frames.
   ========================================================= */
.world {
  position: fixed; inset: 0;
  z-index: 0;
  /* opener frame as a static poster — shows instantly + as a fallback so the
     world is never a black screen (esp. on mobile / before the canvas paints) */
  background: #0a0603 url('images/frames-desktop/d_0001.jpg?v=1') center center / cover no-repeat;
  overflow: hidden;
  pointer-events: none;
}
#frameCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  filter: saturate(1.05) contrast(1.04);
}
.world__warmth {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 55%, transparent 0%, rgba(10, 6, 3, 0.08) 62%, rgba(10, 6, 3, 0.30) 100%);
  pointer-events: none;
}
.world__vignette {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 6, 3, 0.34) 0%, rgba(10, 6, 3, 0.02) 16%, rgba(10, 6, 3, 0.04) 74%, rgba(10, 6, 3, 0.52) 100%);
  pointer-events: none;
}
#dust {
  position: fixed; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 3;
  mix-blend-mode: screen;
  opacity: 0.42;
}

/* Preload */
.preload {
  position: fixed; inset: 0;
  z-index: 300;
  background: #0a0603;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  transition: opacity 1s var(--ease) .15s, visibility 0s linear 1.2s;
}
.preload.is-gone { opacity: 0; visibility: hidden; pointer-events: none; }
.preload__cap {
  font-family: var(--serif); font-style: italic;
  font-size: 0.9rem; letter-spacing: 0.32em;
  color: var(--gold-soft);
  text-transform: uppercase; margin-bottom: 1rem;
}
.preload__brand {
  font-family: var(--display);
  font-weight: 400;
  color: var(--ivory);
  font-size: clamp(2.6rem, 7.5vw, 5.6rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 2.4rem;
  text-shadow: 0 6px 30px rgba(0,0,0,0.6);
}
.preload__bar {
  width: clamp(220px, 28vw, 380px);
  height: 1px;
  background: rgba(243, 225, 189, 0.18);
  overflow: hidden;
  position: relative;
}
.preload__bar span {
  position: absolute; inset: 0 100% 0 0;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-pale));
  transition: inset .2s linear;
}
.preload__pct {
  margin-top: 1rem;
  font-family: var(--mono);
  font-size: 0.68rem; letter-spacing: 0.4em;
  color: var(--gold-pale); opacity: 0.65;
  text-transform: uppercase;
}

/* Brand mark */
.brand {
  position: fixed;
  top: 1.1rem; left: 1.6rem;
  z-index: 60;
  display: inline-flex;
  align-items: baseline;
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.05rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--ivory);
  text-shadow: var(--txt-shadow);
  transition: color .3s var(--ease);
  padding: 0.6rem 0.8rem;
  white-space: nowrap;
}
.brand:hover { color: var(--gold-pale); }

.ring-o {
  display: inline-block;
  position: relative;
  width: 0.78em;
  height: 0.92em;
  margin: 0 0.04em;
  vertical-align: baseline;
  line-height: 0;
  overflow: visible;
}
.ring-o img {
  position: absolute;
  bottom: -0.04em;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 2px 12px rgba(0,0,0,0.85));
  user-select: none;
  -webkit-user-drag: none;
  animation: ringGlow 5s ease-in-out infinite;
}
.ring-o--sm, .ring-o--xl { width: 0.78em; height: 0.92em; }
@keyframes ringGlow {
  0%, 100% { filter: drop-shadow(0 2px 12px rgba(0,0,0,0.85)); }
  50%      { filter: drop-shadow(0 2px 18px rgba(255, 245, 220, 0.5)) drop-shadow(0 0 8px rgba(243, 225, 189, 0.35)); }
}

/* HUD */
.hud { position: fixed; inset: 0; pointer-events: none; z-index: 55; }
.hud__corner {
  position: absolute;
  width: 22px; height: 22px;
  border: 1px solid var(--gold-pale);
  opacity: 0.55;
}
.hud__corner--tl { top: 22px; left: 22px;   border-right: 0; border-bottom: 0; }
.hud__corner--tr { top: 22px; right: 22px;  border-left: 0;  border-bottom: 0; }
.hud__corner--bl { bottom: 22px; left: 22px;  border-right: 0; border-top: 0; }
.hud__corner--br { bottom: 22px; right: 22px; border-left: 0;  border-top: 0; }
.hud__telemetry {
  position: absolute;
  display: flex; align-items: center; gap: 0.6rem;
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-pale);
  opacity: 0.92;
  text-shadow: var(--txt-shadow);
}
.hud__telemetry--tr { top: 26px;   right: 60px; }
.hud__telemetry--bl { bottom: 26px; left:  60px; }
.hud__telemetry--br { bottom: 26px; right: 60px; }
.hud__dot { opacity: 0.5; }
.hud__pulse {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold);
  animation: hudPulse 1.8s ease-in-out infinite;
}
@keyframes hudPulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50%      { opacity: 1;   transform: scale(1.3); }
}
@media (max-width: 720px) {
  .hud__telemetry { font-size: 0.58rem; }
  .hud__telemetry--bl { display: none; }
}

/* Sidenav */
.sidenav {
  position: fixed;
  top: 50%; right: 2rem;
  transform: translateY(-50%);
  z-index: 56;
  display: flex; flex-direction: column;
  gap: 0.35rem;
}
.sidenav a {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-pale);
  opacity: 0.46;
  padding: 0.4rem 0.6rem;
  text-align: right;
  transition: all .4s var(--ease);
  border-right: 1px solid transparent;
  text-shadow: var(--txt-shadow);
}
.sidenav a:hover { opacity: 1; }
.sidenav a.is-on {
  opacity: 1;
  color: var(--ivory);
  border-right-color: var(--gold);
  padding-right: 1rem;
}
.sidenav__cta {
  margin-top: 0.4rem;
  border: 1px solid var(--gold) !important;
  background: rgba(201, 169, 110, 0.18);
  border-radius: 2px;
}
@media (max-width: 980px) { .sidenav { display: none; } }

.topcta {
  position: fixed;
  top: 1.2rem; right: 1.6rem;
  z-index: 60;
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ivory);
  padding: 0.7rem 1.3rem;
  border: 1px solid var(--gold);
  border-radius: 2px;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(6px);
  transition: all .4s var(--ease);
  text-shadow: 0 1px 6px rgba(0,0,0,0.7);
}
.topcta:hover { background: var(--gold); color: var(--ink); }
@media (min-width: 981px) { .topcta { display: none; } }

/* =========================================================
   TRACK — invisible scroll spacer
   ========================================================= */
.track {
  position: relative;
  z-index: 1;
  width: 100%;
}

/* =========================================================
   BEATS — fixed overlay above canvas. NO templates, NO plates.
   Just typography floating on the villa.
   ========================================================= */
.beats {
  position: fixed;
  inset: 0;
  z-index: 10;
  pointer-events: none;
}
.beat {
  position: absolute;
  inset: 0;
  display: flex;
  padding: 10vh 7vw 12vh;
  pointer-events: none;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.beat.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.beat--center {
  align-items: center; justify-content: center;
  text-align: center; flex-direction: column;
}
.beat--bl { align-items: flex-end; justify-content: flex-start; flex-direction: column; gap: 0; }
.beat--bl > * { max-width: 540px; }
.beat--br { align-items: flex-end; justify-content: flex-end; flex-direction: column; gap: 0; }
.beat--br > * { max-width: 540px; align-self: flex-end; text-align: right; }
/* (Alexandra composite layout lives in its own block below) */

/* =========================================================
   Floating typography — every line has the same shadow recipe
   so it stays legible whether it lands on dark or bright frames.
   ========================================================= */
.proto {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-pale);
  margin-bottom: 1rem;
  padding-left: 28px;
  position: relative;
  display: inline-block;
  text-shadow: var(--txt-shadow);
}
.proto::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 18px; height: 1px;
  background: var(--gold);
  opacity: 0.85;
  box-shadow: 0 0 6px rgba(243, 225, 189, 0.4);
}

.title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.4rem, 5.2vw, 4.4rem);
  line-height: 1;
  color: var(--ivory);
  margin-bottom: 0.9rem;
  text-shadow: var(--txt-shadow);
}
.title em { font-style: italic; color: var(--gold-soft); }

.sub {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  color: var(--ivory);
  opacity: 0.96;
  max-width: 520px;
  text-shadow: var(--txt-shadow);
}

.body {
  font-family: var(--serif);
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  line-height: 1.65;
  color: var(--ivory);
  opacity: 0.98;
  margin-bottom: 1rem;
  max-width: 480px;
  text-shadow: var(--txt-shadow);
}
.body em { font-style: italic; color: var(--gold-soft); }

.sig {
  font-family: var(--serif); font-style: italic;
  font-size: 0.92rem; letter-spacing: 0.16em;
  color: var(--gold-soft);
  margin-top: 0.8rem;
  text-shadow: var(--txt-shadow);
}

.rule {
  font-family: var(--mono);
  font-size: 0.78rem; letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin: 0.5rem auto 1.4rem;
  text-shadow: var(--txt-shadow);
}
.tag {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1.05rem, 1.4vw, 1.3rem);
  color: var(--ivory);
  opacity: 0.96;
  max-width: 620px;
  margin: 0 auto;
  text-shadow: var(--txt-shadow);
}
.dict {
  font-family: var(--mono);
  font-size: 0.74rem; letter-spacing: 0.18em;
  color: var(--gold-soft);
  margin-bottom: 1.4rem;
  text-shadow: var(--txt-shadow);
}
.dict em { color: var(--gold-pale); text-transform: uppercase; letter-spacing: 0.3em; }
.quote {
  font-family: var(--serif); font-style: italic;
  font-weight: 400;
  font-size: clamp(2rem, 4.6vw, 3.8rem);
  line-height: 1.25;
  color: var(--gold-pale);
  margin-bottom: 1rem;
  text-shadow: var(--txt-shadow);
}
.trans {
  font-family: var(--mono);
  font-size: 0.78rem; letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-top: 0.8rem;
  text-shadow: var(--txt-shadow);
}

.mailto {
  display: inline-block;
  margin-top: 1.4rem;
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  color: var(--gold-pale);
  text-shadow: var(--txt-shadow);
  letter-spacing: 0.02em;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 0.2rem;
  transition: color .35s var(--ease);
}
.mailto:hover { color: var(--ivory); }
.reserve-links {
  margin-top: 1.2rem;
  display: inline-flex; align-items: center; gap: 0.9rem;
  font-family: var(--mono);
  font-size: 0.72rem; letter-spacing: 0.26em;
  text-transform: uppercase;
  text-shadow: var(--txt-shadow);
}
.reserve-link {
  color: var(--gold-pale); opacity: 0.92;
  transition: color .3s var(--ease), opacity .3s var(--ease);
}
.reserve-link:hover { color: var(--ivory); opacity: 1; }
.reserve-sep { color: var(--gold); opacity: 0.6; }
.reserve-link--ig { display: inline-flex; align-items: center; gap: 0.4rem; }
.ig-glyph { flex: none; transform: translateY(-0.5px); }
@media (max-width: 640px) {
  .reserve-links { flex-direction: column; gap: 0.5rem; font-size: 0.66rem; letter-spacing: 0.2em; margin-top: 1rem; }
  .reserve-sep { display: none; }
}
.footer-meta {
  margin-top: 2.2rem;
  font-family: var(--mono);
  font-size: 0.62rem; letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-pale); opacity: 0.7;
  text-shadow: var(--txt-shadow);
}

/* Hero lockup */
.hero {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.8rem, 8.4vw, 7rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ivory);
  text-shadow: 0 6px 40px rgba(0,0,0,0.85), 0 1px 0 rgba(0,0,0,0.5);
  line-height: 0.95;
  margin-bottom: 0.8rem;
  white-space: nowrap;
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
}

/* Scroll hint */
.scrollhint {
  position: absolute;
  bottom: 5vh; left: 50%;
  transform: translateX(-50%);
  display: inline-flex; flex-direction: column;
  align-items: center; gap: 0.6rem;
  font-family: var(--mono);
  font-size: 0.62rem; letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold-pale); opacity: 0.85;
  text-shadow: var(--txt-shadow);
}
.scrollhint__line {
  width: 1px; height: 38px;
  background: linear-gradient(180deg, var(--gold-pale), transparent);
  animation: hintPulse 2.4s ease-in-out infinite;
}
@keyframes hintPulse {
  0%, 100% { transform: scaleY(0.4); transform-origin: top; opacity: 0.5; }
  50%      { transform: scaleY(1);   opacity: 1; }
}

/* =========================================================
   ALEXANDRA — composited INTO the villa world as a 3D figure.
   Her cut-out floats on the left with mouse-driven parallax +
   a slow idle float, so she reads as standing in the scene with
   real depth against the fixed villa behind her.
   A transparent PNG cut-out looks best; a rectangular stand-in
   still melts in thanks to the feather mask below.
   ========================================================= */
.beat--alex {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.02fr);
  align-items: end;
  padding: 0;
  perspective: 1300px;            /* gives the figure real 3D tilt */
}
.alex-stage {
  position: relative;
  align-self: end;
  height: 100vh;
  width: 100%;
  overflow: visible;
  pointer-events: none;
  transform-style: preserve-3d;
}
.alex-figure {
  position: absolute;
  bottom: 0; left: 2%;
  width: 94%; height: 100%;
  object-fit: cover;
  object-position: 50% 22%;        /* keep her face in frame (portrait photo) */
  z-index: 1;
  filter: contrast(1.05) saturate(1.06)
          drop-shadow(0 34px 60px rgba(0,0,0,0.5));
  will-change: transform;
  transform: translate3d(0,0,0);
  /* idle float uses the `translate` property so it composes with the
     JS-driven `transform` parallax without fighting it */
  animation: alexFloat 7.5s ease-in-out infinite;
  /* Feathered edges so a rectangular stand-in dissolves into the villa.
     A transparent cut-out simply ignores the soft edges. */
  -webkit-mask-image:
    linear-gradient(180deg, transparent 0%, #000 16%, #000 100%),
    linear-gradient(270deg, transparent 0%, #000 28%, #000 100%);
  -webkit-mask-composite: source-in;
          mask-image:
    linear-gradient(180deg, transparent 0%, #000 16%, #000 100%),
    linear-gradient(270deg, transparent 0%, #000 28%, #000 100%);
          mask-composite: intersect;
}
@keyframes alexFloat {
  0%, 100% { translate: 0 0; }
  50%      { translate: 0 -12px; }
}
/* Transparent cut-out of Alexandra standing IN the beach world — no feather mask, full figure */
.alex-figure--cut {
  -webkit-mask-image: none !important;
          mask-image: none !important;
  object-fit: contain;
  object-position: bottom center;
  filter: contrast(1.04) saturate(1.05) drop-shadow(0 26px 44px rgba(0,0,0,0.45));
  animation: none !important;   /* hold still — no idle float */
  transform: none !important;
}
/* Warm golden-hour halo behind her */
.alex-glow {
  content: '';
  position: absolute;
  /* a translucent frosted block behind her — highlights & frames her,
     instead of melting her into the world */
  inset: 6% 6% 3% 5%;
  /* NO backdrop-filter — it glitches over the low-latency canvas.
     A plain warm-dark translucent panel highlights her cleanly. */
  background: linear-gradient(180deg, rgba(26, 17, 9, 0.30) 0%, rgba(26, 17, 9, 0.52) 100%);
  border: 1px solid rgba(243, 225, 189, 0.32);
  border-radius: 4px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4);
  z-index: 0;
  pointer-events: none;
}

.alex-copy {
  align-self: center;          /* center vertically so the longer copy + traits breathe */
  padding: 0 6vw 0 1vw;
  max-width: 560px;
  pointer-events: auto;
}
.alex-copy .proto { margin-bottom: 1.4rem; }
.alex-copy .title { font-size: clamp(2.2rem, 4.6vw, 3.8rem); }
.alex-copy .body  { max-width: 100%; }

/* Her character, as three quick beats */
.traits {
  margin: 1.5rem 0 0.4rem;
  display: flex; flex-direction: column; gap: 0.6rem;
}
.traits li {
  display: flex; align-items: baseline; gap: 0.7rem;
  padding-left: 24px; position: relative;
  text-shadow: var(--txt-shadow);
}
.traits li::before {
  content: '';
  position: absolute; left: 0; top: 0.55em;
  width: 13px; height: 1px;
  background: var(--gold);
  box-shadow: 0 0 6px rgba(243, 225, 189, 0.45);
}
.traits__k {
  font-family: var(--display); font-style: italic;
  font-size: 1.14rem; color: var(--gold-soft);
  white-space: nowrap;
}
.traits__v {
  font-family: var(--serif);
  font-size: 1.02rem; color: var(--ivory); opacity: 0.92;
}

/* =========================================================
   Responsive — tablet
   ========================================================= */
@media (max-width: 980px) {
  .brand { font-size: 0.86rem; top: 0.9rem; left: 0.9rem; padding: 0.4rem 0.6rem; letter-spacing: 0.34em; }
  .topcta { font-size: 0.62rem; padding: 0.55rem 1rem; top: 0.9rem; right: 0.9rem; letter-spacing: 0.24em; }
  .hud__corner { width: 16px; height: 16px; }
  .beat { padding: 11vh 1.4rem 9vh; }
  .beat--alex { grid-template-columns: 1fr; grid-template-rows: 42vh auto; padding: 7vh 0 0; align-content: start; }
  .alex-stage { height: 42vh; align-self: start; margin-top: 0; }
  .alex-figure {
    left: 0; width: 100%;
    object-position: 60% top;
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 12%, #000 80%, transparent 100%);
            mask-image: linear-gradient(180deg, transparent 0%, #000 12%, #000 80%, transparent 100%);
  }
  .alex-copy { padding: 0.6rem 1.4rem 7vh; max-width: 100%; align-self: start; }
  /* On stacked layouts the decorative bottom-left telemetry overlaps the copy */
  .hud__telemetry--bl { display: none; }
  .hero { font-size: clamp(2.2rem, 13vw, 4.2rem); letter-spacing: 0.08em; white-space: nowrap; }
}

/* =========================================================
   Responsive — phone (≤640px)
   The layout has to stay readable, the villa has to fill the
   screen, and mom has to actually fit above her summary.
   ========================================================= */
@media (max-width: 640px) {
  /* Top chrome: lighter, never collides */
  .brand { font-size: 0.78rem; letter-spacing: 0.3em; top: 0.7rem; left: 0.7rem; padding: 0.35rem 0.5rem; }
  .topcta { font-size: 0.58rem; padding: 0.5rem 0.85rem; top: 0.7rem; right: 0.7rem; letter-spacing: 0.22em; }
  .hud__corner { width: 14px; height: 14px; }
  .hud__corner--tl, .hud__corner--tr { top: 14px; }
  .hud__corner--bl, .hud__corner--br { bottom: 14px; }
  .hud__corner--tl, .hud__corner--bl { left: 14px; }
  .hud__corner--tr, .hud__corner--br { right: 14px; }
  /* Most HUD telemetry is decorative — keep only the chapter readout */
  .hud__telemetry--tr, .hud__telemetry--bl { display: none; }
  .hud__telemetry--br { bottom: 16px; right: 36px; font-size: 0.54rem; letter-spacing: 0.22em; }

  /* Beats: tighter padding, leave room for top brand + bottom HUD */
  .beat {
    padding: 12vh 1.1rem 11vh;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .beat--bl, .beat--br {
    align-items: flex-end;
    text-align: left;
    justify-content: flex-start;
  }
  .beat--bl > *, .beat--br > * { max-width: 100%; align-self: flex-start; text-align: left; }

  /* Hero lockup: smaller, allow tighter letter-spacing */
  .hero {
    font-size: clamp(1.8rem, 14.5vw, 3.4rem);
    letter-spacing: 0.06em;
    margin-bottom: 0.6rem;
  }
  .rule { font-size: 0.66rem; letter-spacing: 0.3em; margin: 0.4rem auto 1rem; }
  .tag { font-size: 1rem; line-height: 1.5; padding: 0 0.4rem; }
  .scrollhint { bottom: 7vh; font-size: 0.56rem; letter-spacing: 0.28em; }

  /* Floating typography on phone */
  .proto { font-size: 0.6rem; letter-spacing: 0.26em; padding-left: 22px; margin-bottom: 0.7rem; }
  .proto::before { width: 14px; }
  .title { font-size: clamp(2rem, 9.5vw, 2.8rem); margin-bottom: 0.7rem; }
  .sub { font-size: 0.98rem; line-height: 1.45; }
  .body { font-size: 1rem; line-height: 1.55; margin-bottom: 0.8rem; }
  .sig { font-size: 0.84rem; letter-spacing: 0.12em; }

  /* Alexandra beat: figure on top, copy below — both fit the viewport */
  .beat--alex {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    padding: 10vh 1.1rem 9vh;
    gap: 0.4rem;
    align-items: start;
    justify-content: stretch;
  }
  .alex-stage {
    height: 38vh;
    width: 100%;
    margin-top: 0;
    align-self: start;
  }
  .alex-figure {
    left: 0; width: 100%;
    object-position: 60% 22%;
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 10%, #000 82%, transparent 100%);
            mask-image: linear-gradient(180deg, transparent 0%, #000 10%, #000 82%, transparent 100%);
  }
  .alex-copy {
    padding: 0.4rem 0 0;
    max-width: 100%;
  }
  .alex-copy .proto  { margin-bottom: 0.7rem; }
  .alex-copy .title  { font-size: clamp(1.8rem, 9vw, 2.6rem); }
  .traits { margin: 1rem 0 0.2rem; gap: 0.45rem; }
  .traits__k { font-size: 1rem; }
  .traits__v { font-size: 0.92rem; }

  /* The Italian vow centered, still cinematic on a small screen */
  .quote {
    font-size: clamp(1.6rem, 8vw, 2.4rem);
    line-height: 1.25;
  }
  .trans, .dict { font-size: 0.66rem; letter-spacing: 0.22em; }
  .dict { margin-bottom: 1rem; padding: 0 0.4rem; }

  /* Reserve beat: mailto, no form, no horizontal scroll */
  .mailto {
    font-size: clamp(1rem, 4.4vw, 1.3rem);
    margin-top: 1rem;
    word-break: break-all;
    padding-bottom: 0.15rem;
  }
  .footer-meta { font-size: 0.55rem; letter-spacing: 0.22em; margin-top: 1.4rem; padding: 0 0.4rem; }
}

/* Tap targets: any clickable on touch devices */
@media (hover: none) and (pointer: coarse) {
  html, body, a, button { cursor: auto; }
  .cursor { display: none; }
  /* Disable the magnetic translate3d on touch so taps don't drift */
  .magnetic { transform: none !important; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* =========================================================
   CONTENT LAYER — scrolls in warm daylight AFTER the
   immersive intro. Sits above the fixed villa/beach world.
   ========================================================= */
.site {
  position: relative;
  z-index: 70;                 /* covers the fixed immersive chrome */
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
}

/* Sticky top nav, appears once content reaches the top */
.site-nav {
  position: sticky; top: 0; z-index: 5;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem clamp(1.1rem, 4vw, 3rem);
  background: rgba(247, 241, 230, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(138, 106, 63, 0.18);
}
.site-nav__brand {
  font-family: var(--display);
  font-size: 1.05rem; letter-spacing: 0.4em;
  text-transform: uppercase; color: var(--ink);
}
.site-nav__links { display: flex; align-items: center; gap: clamp(0.6rem, 1.6vw, 1.6rem); flex-wrap: wrap; justify-content: flex-end; }
.site-nav__links a {
  font-family: var(--mono);
  font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold-deep); transition: color .25s var(--ease);
}
.site-nav__links a:hover { color: var(--ink); }
.site-nav__cta {
  border: 1px solid var(--gold-deep); border-radius: 2px;
  padding: 0.45rem 0.9rem; color: var(--ink) !important;
}
.site-nav__cta:hover { background: var(--gold-deep); color: var(--ivory) !important; }

/* Generic section */
.sec { max-width: 1140px; margin: 0 auto; padding: clamp(4rem, 9vw, 8rem) clamp(1.2rem, 5vw, 3rem); }
.kicker {
  font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.34em;
  text-transform: uppercase; color: var(--gold-deep); margin-bottom: 1rem;
}
.kicker.center, .sec__title.center, .center { text-align: center; }
.kicker.center { margin-left: auto; margin-right: auto; }
.sec__title {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(2rem, 4.4vw, 3.4rem); line-height: 1.05;
  color: var(--ink); margin-bottom: 1.6rem;
}
.sec__title em { font-style: italic; color: var(--gold-deep); }
.sec p { font-family: var(--serif); font-size: clamp(1.05rem, 1.3vw, 1.2rem); line-height: 1.7; color: #4a3f34; margin-bottom: 1rem; }

/* Over Alexandra — image + body */
.sec--over { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.sec__img img { width: 100%; height: 100%; max-height: 80vh; object-fit: cover; border-radius: 3px; box-shadow: 0 30px 60px rgba(42,34,28,0.18); }
.ticks { list-style: none; margin-top: 1.4rem; display: grid; gap: 0.6rem; }
.ticks li { font-family: var(--serif); font-size: 1.05rem; color: var(--ink); padding-left: 1.7rem; position: relative; }
.ticks li::before { content: '✦'; position: absolute; left: 0; color: var(--gold-deep); }

/* Diensten — package cards */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin-top: 2.4rem; }
.card {
  position: relative; background: #fffdf8;
  border: 1px solid rgba(138,106,63,0.18); border-radius: 4px;
  padding: 2.2rem 1.8rem; display: flex; flex-direction: column;
}
.card--feature { border-color: var(--gold-deep); box-shadow: 0 20px 50px rgba(42,34,28,0.12); }
.card__tag {
  position: absolute; top: -0.8rem; left: 50%; transform: translateX(-50%);
  background: var(--gold-deep); color: var(--ivory);
  font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.2em;
  text-transform: uppercase; padding: 0.35rem 0.8rem; border-radius: 2px; white-space: nowrap;
}
.card h3 { font-family: var(--display); font-weight: 500; font-size: 1.5rem; color: var(--ink); margin-bottom: 0.4rem; }
.card__price { font-family: var(--serif); font-style: italic; font-size: 1.3rem; color: var(--gold-deep); margin-bottom: 0.8rem; }
.card__desc { margin-bottom: 1rem; }
.card ul { list-style: none; display: grid; gap: 0.5rem; margin-top: auto; }
.card li { font-family: var(--sans); font-size: 0.92rem; color: #4a3f34; padding-left: 1.3rem; position: relative; }
.card li::before { content: '–'; position: absolute; left: 0; color: var(--gold-deep); }
.diensten__note { text-align: center; font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.06em; color: #8a7c6a; margin-top: 2rem; }

/* Bruiloften — gallery */
.gallery { columns: 3; column-gap: 1rem; margin-top: 2.4rem; }
.gallery .g { break-inside: avoid; margin: 0 0 1rem; }
.gallery img { width: 100%; border-radius: 3px; display: block; box-shadow: 0 14px 34px rgba(42,34,28,0.14); }

/* Verhalen — testimonials */
.quotes { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; margin-top: 2.4rem; }
.quotes blockquote {
  background: #fffdf8; border: 1px solid rgba(138,106,63,0.16);
  border-left: 3px solid var(--gold-deep); border-radius: 3px;
  padding: 1.8rem; font-family: var(--serif); font-style: italic;
  font-size: 1.15rem; line-height: 1.6; color: var(--ink);
}
.quotes cite { display: block; margin-top: 1rem; font-style: normal; font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-deep); }

/* FAQ — native accordion */
.faq { max-width: 760px; margin: 2.4rem auto 0; }
.faq details { border-bottom: 1px solid rgba(138,106,63,0.22); padding: 0.4rem 0; }
.faq summary {
  cursor: pointer; list-style: none; padding: 1rem 0;
  font-family: var(--display); font-size: 1.2rem; color: var(--ink);
  display: flex; justify-content: space-between; align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; color: var(--gold-deep); font-size: 1.4rem; margin-left: 1rem; }
.faq details[open] summary::after { content: '–'; }
.faq details p { padding: 0 0 1rem; max-width: 100%; }

/* Contact */
.contact__lead { max-width: 620px; margin: 0 auto 2rem; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.btn {
  font-family: var(--mono); font-size: 0.74rem; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 0.95rem 1.6rem; border-radius: 2px;
  background: var(--gold-deep); color: var(--ivory);
  border: 1px solid var(--gold-deep); transition: all .25s var(--ease);
}
.btn:hover { background: var(--ink); border-color: var(--ink); }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--gold-deep); color: var(--ivory); border-color: var(--gold-deep); }

/* Footer */
.site-foot { background: var(--ink); color: var(--ivory); text-align: center; padding: clamp(3rem, 6vw, 5rem) 1.4rem; }
.site-foot__brand { font-family: var(--display); letter-spacing: 0.42em; font-size: 1.4rem; }
.site-foot__line { font-family: var(--serif); font-style: italic; color: var(--gold-pale); margin: 0.8rem 0 1.6rem; }
.site-foot__links { display: flex; flex-wrap: wrap; gap: 1.2rem; justify-content: center; margin-bottom: 1.4rem; }
.site-foot__links a, .site-foot__contact a { font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-pale); transition: color .25s var(--ease); }
.site-foot__links a:hover, .site-foot__contact a:hover { color: var(--ivory); }
.site-foot__contact { margin-bottom: 1.4rem; }
.site-foot__legal { font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.16em; color: rgba(243,225,189,0.55); }

/* Responsive */
@media (max-width: 900px) {
  .sec--over { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; }
  .gallery { columns: 2; }
  .quotes { grid-template-columns: 1fr; }
  .site-nav__brand { font-size: 0.9rem; letter-spacing: 0.3em; }
}
@media (max-width: 540px) {
  .gallery { columns: 1; }
  .site-nav { flex-direction: column; gap: 0.6rem; }
}

/* Hand-off: hide the immersive world + chrome once in the content */
.world, #dust, .hud, .sidenav, .brand, .topcta {
  transition: opacity .45s var(--ease);
}
body.in-content .world,
body.in-content #dust,
body.in-content .hud,
body.in-content .sidenav,
body.in-content .brand,
body.in-content .topcta {
  opacity: 0 !important;
  visibility: hidden;
  pointer-events: none;
}

/* The header stays — turns solid ivory with dark text once in the content */
body.in-content .topbar {
  background: rgba(247, 241, 230, 0.94);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(138, 106, 63, 0.18);
  padding-top: 0.75rem; padding-bottom: 0.75rem;
}
body.in-content .topbar__brand { color: var(--ink); text-shadow: none; }
body.in-content .topbar__nav a { color: var(--gold-deep); text-shadow: none; }
body.in-content .topbar__nav a:hover { color: var(--ink); }
body.in-content .topbar__cta { border-color: var(--gold-deep); color: var(--ink); }
body.in-content .topbar__cta:hover { background: var(--gold-deep); color: var(--ivory) !important; border-color: var(--gold-deep); }

/* =========================================================
   RICHER CONTENT BLOCKS (reference-style, our branding)
   ========================================================= */
/* Manifest / intro statement */
.sec--manifest { text-align: center; padding-bottom: clamp(2rem,5vw,4rem); }
.manifest {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(2.2rem, 5.4vw, 4.2rem); line-height: 1.06;
  color: var(--ink); margin: 0.4rem auto 1.4rem; max-width: 16ch;
}
.manifest em { font-style: italic; color: var(--gold-deep); }
.manifest__sub {
  font-family: var(--serif); font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  line-height: 1.65; color: #4a3f34; max-width: 60ch; margin: 0 auto;
}

/* Editorial image + text rows */
.feature-row { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(2rem,5vw,4.5rem); align-items: center; }
.feature-row--rev .feature-row__img { order: 2; }
.feature-row__img img { width: 100%; max-height: 78vh; object-fit: cover; border-radius: 3px; box-shadow: 0 30px 60px rgba(42,34,28,0.18); }
.feature-row__body .sec__title { margin-bottom: 1.2rem; }

/* Process steps */
.process { margin-top: clamp(3rem,6vw,5rem); }
.process__title { font-family: var(--display); font-size: 1.6rem; text-align: center; color: var(--ink); margin-bottom: 2rem; }
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.6rem; counter-reset: step; }
.steps li { position: relative; padding-top: 0.6rem; border-top: 1px solid rgba(138,106,63,0.3); }
.steps__n { font-family: var(--mono); font-size: 0.8rem; letter-spacing: 0.2em; color: var(--gold-deep); }
.steps h4 { font-family: var(--display); font-weight: 500; font-size: 1.2rem; color: var(--ink); margin: 0.5rem 0 0.4rem; }
.steps p { font-family: var(--serif); font-size: 1rem; line-height: 1.55; color: #4a3f34; }

/* Featured weddings — case cards */
.weddings { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.4rem; margin-top: 2.4rem; }
.wed { background: #fffdf8; border: 1px solid rgba(138,106,63,0.16); border-radius: 4px; overflow: hidden; }
.wed__img { aspect-ratio: 4/3; overflow: hidden; }
.wed__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.wed:hover .wed__img img { transform: scale(1.05); }
.wed__cap { padding: 1.3rem 1.4rem 1.6rem; }
.wed__cap h3 { font-family: var(--display); font-weight: 500; font-size: 1.4rem; color: var(--ink); }
.wed__loc { font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-deep); margin: 0.3rem 0 0.6rem; }
.wed__cap p:last-child { font-family: var(--serif); font-style: italic; font-size: 1.02rem; color: #4a3f34; }

/* Why Promessa — credibility strip */
.why { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.6rem; margin-top: 2.4rem; }
.why__item { padding: 1.6rem 1.2rem; border: 1px solid rgba(138,106,63,0.16); border-radius: 4px; background: #fffdf8; text-align: center; }
.why__item h3 { font-family: var(--display); font-size: 1.3rem; color: var(--gold-deep); margin-bottom: 0.6rem; }
.why__item p { font-family: var(--serif); font-size: 0.98rem; line-height: 1.5; color: #4a3f34; }

@media (max-width: 900px) {
  .feature-row { grid-template-columns: 1fr; }
  .feature-row--rev .feature-row__img { order: 0; }
  .steps { grid-template-columns: repeat(2,1fr); }
  .weddings { grid-template-columns: 1fr; max-width: 460px; margin-left:auto; margin-right:auto; }
  .why { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .steps { grid-template-columns: 1fr; }
  .why { grid-template-columns: 1fr; }
}

/* =========================================================
   FULL-BLEED IMAGE BANDS — visual variation like the reference
   ========================================================= */
.band {
  position: relative;
  color: var(--ivory);
  text-align: center;
  padding: clamp(5rem, 13vw, 9rem) clamp(1.2rem, 5vw, 3rem);
  background: #2a221c center / cover no-repeat;
  background-attachment: fixed;
  overflow: hidden;
  /* feather top & bottom edges into the ivory content (no hard cut) */
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
          mask-image: linear-gradient(180deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
}
.band::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(18,11,6,0.55) 0%, rgba(18,11,6,0.42) 50%, rgba(18,11,6,0.6) 100%);
}
.band__inner { position: relative; z-index: 1; max-width: 64ch; margin: 0 auto; }
.band .kicker { color: var(--gold-pale); }
.band .manifest, .band .sec__title { color: var(--ivory); }
.band .manifest em, .band .sec__title em { color: var(--gold-pale); }
.band p { color: rgba(247, 241, 230, 0.94); }
.band--manifest { background-image: url('images/gallery/bg-beach.jpg'); }
.band--quote    { background-image: url('images/gallery/bg-texture.jpg'); }
.band--contact  { background-image: url('images/gallery/bg-couple.jpg'); }
.band-quote__line {
  font-family: var(--display); font-style: italic;
  font-size: clamp(1.8rem, 4.2vw, 3rem); line-height: 1.3; color: var(--ivory);
  text-shadow: 0 2px 18px rgba(0,0,0,0.4);
}
.band .contact__lead { color: rgba(247,241,230,0.94); }
.band .btn--ghost { color: var(--ivory); border-color: rgba(247,241,230,0.55); }
.band .btn--ghost:hover { background: var(--ivory); color: var(--ink); border-color: var(--ivory); }
@media (max-width: 740px) { .band { background-attachment: scroll; } }

/* =========================================================
   LIVING DETAILS — scroll-reveal + swaying dune grass
   ========================================================= */
/* Scroll reveal (class added by JS → progressive enhancement) */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

/* Dune grass tufts tucked into section edges */
.sec { position: relative; }
.dunes {
  position: absolute; bottom: 0; z-index: 0;
  width: clamp(140px, 19vw, 280px); height: auto;
  color: var(--gold-soft); opacity: 0.4;
  pointer-events: none;
}
.dunes--left  { left: -1.5%; }
.dunes--right { right: -1.5%; transform: scaleX(-1); }
.dunes .blade { transform-origin: bottom center; animation: sway 5.5s ease-in-out infinite; }
.dunes .blade:nth-child(odd) { animation-duration: 6.8s; }
.dunes .blade:nth-child(3n)  { animation-delay: -2.2s; }
.dunes .blade:nth-child(2n)  { animation-delay: -1.1s; }
.dunes .seed { animation: sway 6.2s ease-in-out infinite; transform-origin: bottom center; }
@keyframes sway { 0%, 100% { transform: rotate(-2.6deg); } 50% { transform: rotate(2.6deg); } }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  .dunes .blade, .dunes .seed { animation: none; }
}
@media (max-width: 640px) { .dunes { width: 120px; opacity: 0.3; } }

/* Real AI dune-grass side fillers (replaces the SVG tufts) */
.grass {
  position: absolute; bottom: 0; z-index: 0;
  width: clamp(120px, 16vw, 230px); height: auto;
  opacity: 0.85; pointer-events: none;
  transform-origin: bottom center;
  animation: grassSway 7s ease-in-out infinite;
  filter: drop-shadow(0 14px 22px rgba(42, 34, 28, 0.12));
}
.grass--left  { left: 0; }
.grass--right { right: 0; transform: scaleX(-1); }   /* rotate prop animates separately, keeps the flip */
@keyframes grassSway { 0%, 100% { rotate: -1.4deg; } 50% { rotate: 1.4deg; } }
@media (prefers-reduced-motion: reduce) { .grass { animation: none; } }
@media (max-width: 640px) { .grass { width: 96px; opacity: 0.55; } }

/* smaller grass accent + clump sizing */
.grass--sm { width: clamp(90px, 11vw, 155px); opacity: 0.6; }

/* =========================================================
   SITE HEADER over the world (start page)
   ========================================================= */
.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 80;   /* above the content layer */
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.15rem clamp(1.2rem, 4vw, 2.8rem);
  pointer-events: none;
  transition: background .4s var(--ease), padding .4s var(--ease), opacity .45s var(--ease);
}
.topbar > * { pointer-events: auto; }
.topbar__brand {
  font-family: var(--display); font-size: 1.1rem; letter-spacing: 0.42em;
  text-transform: uppercase; color: var(--ivory); text-shadow: var(--txt-shadow);
}
.topbar__nav { display: flex; align-items: center; gap: clamp(0.7rem, 1.8vw, 1.7rem); }
.topbar__nav a {
  font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ivory); opacity: 0.92; text-shadow: var(--txt-shadow);
  transition: opacity .25s var(--ease), color .25s var(--ease);
}
.topbar__nav a:hover { opacity: 1; color: var(--gold-pale); }
.topbar__cta { border: 1px solid var(--gold-pale); border-radius: 2px; padding: 0.5rem 1.05rem; }
.topbar__cta:hover { background: var(--gold); color: var(--ink) !important; border-color: var(--gold); }

/* the header replaces the old minimal chrome */
.brand, .topcta, .sidenav { display: none !important; }
.hud__telemetry--tr { display: none; }   /* avoid clashing with the header */

@media (max-width: 760px) {
  .topbar { padding: 0.9rem 1.1rem; }
  .topbar__nav a:not(.topbar__cta) { display: none; }
  .topbar__brand { font-size: 0.95rem; letter-spacing: 0.3em; }
}

/* =========================================================
   DUNE-GRASS GROUND FRINGE — subtle, runs along the bottom
   of every content section so the page sits in the dunes
   ========================================================= */
.grass { display: none !important; }   /* retire the old corner tufts */
/* ONE thin, elegant dune-grass divider — used sparingly between sections,
   edges fade out so it reads as a delicate hairline of grass, not a border */
.grass-line {
  position: relative;
  height: clamp(40px, 4.5vw, 58px);
  max-width: 980px;
  margin: clamp(1rem, 3vw, 2.4rem) auto;
  background: url('images/gallery/grass-fringe-sil.jpg') repeat-x bottom center;
  background-size: auto 100%;
  mix-blend-mode: multiply;
  opacity: 0.22;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 26%, #000 74%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0%, #000 26%, #000 74%, transparent 100%);
}

/* Driftwood character sign next to Alexandra */
.char-sign { float: right; width: clamp(118px, 15vw, 172px); margin: 0.2rem 0 0.6rem 1.6rem; }
.char-sign img {
  width: 100%; height: auto;
  filter: drop-shadow(0 16px 26px rgba(42, 34, 28, 0.18));
  transform-origin: bottom center;
  animation: grassSway 8s ease-in-out infinite;
}
.char-note {
  clear: both; font-family: var(--mono); font-size: 0.64rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold-deep); padding-top: 0.4rem;
}
@media (max-width: 900px) { .char-sign { float: none; display: block; margin: 1rem auto 0.6rem; } .char-note { text-align: center; } }

/* anchor targets clear the fixed header */
.sec, .band { scroll-margin-top: 84px; }

/* =========================================================
   PREMIUM PASS — airier, calmer, editorial (Katrina-level)
   Overrides tuned for breathing room + refined type.
   ========================================================= */
.sec { padding-top: clamp(6rem, 12vw, 12rem); padding-bottom: clamp(6rem, 12vw, 12rem); max-width: 1180px; }
.kicker { font-size: 0.7rem; letter-spacing: 0.42em; margin-bottom: 1.5rem; }
.sec__title { font-size: clamp(2.4rem, 5.4vw, 4.4rem); line-height: 1.04; margin-bottom: 1.8rem; }
.sec p { font-size: clamp(1.08rem, 1.2vw, 1.2rem); line-height: 1.85; }

/* Over / Aanpak editorial rows — bigger image, more gap */
.feature-row { gap: clamp(3rem, 7vw, 6.5rem); }
.feature-row__body .sec__title { margin-bottom: 1.4rem; }

/* Manifest — larger, calmer */
.manifest { font-size: clamp(2.6rem, 6.2vw, 5.2rem); margin-bottom: 1.8rem; }
.manifest__sub { font-size: clamp(1.15rem, 1.5vw, 1.4rem); line-height: 1.75; }

/* Diensten — lighter, airier cards */
.cards { gap: 2rem; margin-top: 3.6rem; }
.card { padding: 2.8rem 2.2rem; border-color: rgba(138, 106, 63, 0.14); border-radius: 5px; }
.card h3 { font-size: 1.65rem; margin-bottom: 0.5rem; }
.card__price { font-size: 1.4rem; margin-bottom: 1.1rem; }
.process { margin-top: clamp(4rem, 8vw, 6rem); }
.steps { gap: 2rem; }

/* Bruiloften + Verhalen — more space */
.weddings { gap: 2rem; margin-top: 3.6rem; }
.wed { border-color: rgba(138, 106, 63, 0.12); }
.quotes { gap: 2.2rem; margin-top: 3.6rem; }
.quotes blockquote { padding: 2.2rem; font-size: 1.2rem; }

/* Why — calmer */
.why { gap: 2rem; margin-top: 3.4rem; }
.why__item { padding: 2rem 1.6rem; border-color: rgba(138, 106, 63, 0.12); }

/* Calm the decorative noise so the content reads premium */
.grass-line { opacity: 0.16; }

/* =========================================================
   PREMIUM EDITORIAL DETAILS (Katrina-inspired)
   ========================================================= */
.sec { isolation: isolate; }
.sec > *:not(.sec__wm) { position: relative; z-index: 1; }

/* Oversized faint script watermark behind a section */
.sec__wm {
  position: absolute; z-index: 0;
  top: clamp(-1rem, 0.5vw, 1rem); left: 50%;
  transform: translateX(-50%);
  font-family: 'Pinyon Script', cursive;
  font-size: clamp(6rem, 19vw, 16rem); line-height: 0.7;
  color: var(--gold-deep); opacity: 0.09;
  white-space: nowrap; pointer-events: none; user-select: none;
}

/* Rotating brand stamp */
.badge { position: absolute; width: clamp(94px, 10vw, 132px); height: clamp(94px, 10vw, 132px); z-index: 3; pointer-events: none; }
.badge svg { width: 100%; height: 100%; animation: badgeSpin 28s linear infinite; }
.badge__ring { fill: none; stroke: rgba(138, 106, 63, 0.35); stroke-width: 0.6; }
.badge text { font-family: var(--mono); font-size: 7.3px; letter-spacing: 2.2px; fill: var(--gold-deep); text-transform: uppercase; }
.badge__mark { font-family: var(--display); font-style: italic; font-size: 17px; fill: var(--gold-deep); }
@keyframes badgeSpin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .badge svg { animation: none; } }

.feature-row__img { position: relative; }
.badge--over { right: -3%; bottom: 7%; }
/* soft ivory disc so the stamp reads on the photo */
.badge { border-radius: 50%; background: radial-gradient(circle, rgba(247,241,230,0.9) 60%, rgba(247,241,230,0) 72%); }
@media (max-width: 900px) { .badge--over { right: 4%; bottom: -5%; } }

/* ===================================================================
   FINE-TUNE PASS (step-by-step feedback): tighter whitespace,
   remove ugly grass dividers, refine headers, side-grass fillers
   =================================================================== */
/* tighter sections — premium but not cavernous */
.sec { padding-top: clamp(3.4rem, 6vw, 6.5rem); padding-bottom: clamp(3.4rem, 6vw, 6.5rem); }
.feature-row { align-items: center; }

/* remove the grass-line dividers + any fringe (ugly) */
.grass-line { display: none !important; }

/* process header smaller & cleaner */
.process { margin-top: clamp(2.4rem, 4.5vw, 3.6rem); }
.process__title { font-size: 1.2rem; letter-spacing: 0.05em; margin-bottom: 1.3rem; }

/* contact: tighter, no big void */
.sec--contact { padding-top: clamp(2.6rem, 4.5vw, 4.5rem); padding-bottom: clamp(2.8rem, 5vw, 5rem); }
.contact__lead { margin-bottom: 1.6rem; }

/* waarom: tighter top */
.sec--why { padding-top: clamp(1.6rem, 3.5vw, 3.4rem); }

/* IG logo inside the contact button */
.btn--ig { display: inline-flex; align-items: center; gap: 0.5rem; }
.btn--ig svg { width: 15px; height: 15px; flex: none; }

/* realistic dune-grass cutout on a section side + soft sand at the bottom */
.side-grass { position: absolute; bottom: 0; width: clamp(100px, 12vw, 188px); height: auto; opacity: 0.92; pointer-events: none; z-index: 0 !important; transform-origin: bottom center; animation: grassSway 8.5s ease-in-out infinite; filter: drop-shadow(0 12px 20px rgba(42,34,28,0.1)); }
.side-grass--left  { left: -1.5%; }
.side-grass--right { right: -1.5%; transform: scaleX(-1); }
.sec--sand::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0;
  height: clamp(44px, 6vw, 96px); z-index: 0; pointer-events: none;
  background: linear-gradient(180deg, transparent 0%, rgba(214,179,120,0.18) 100%);
}
@media (max-width: 900px) { .side-grass { width: 84px; opacity: 0.7; } }
@media (prefers-reduced-motion: reduce) { .side-grass { animation: none; } }

/* ===== Manifest clean & centered (no image) ===== */
.sec--manifest { text-align: center; padding-top: clamp(3.5rem, 6vw, 6rem); padding-bottom: clamp(2.6rem, 4.5vw, 4.5rem); }
.sec--manifest .manifest { max-width: 20ch; margin-left: auto; margin-right: auto; }
.sec--manifest .manifest__sub { max-width: 54ch; margin: 1.3rem auto 0; }

/* ===== Char-sign in the immersive Alexandra beat (on the dark world) ===== */
.char-sign--immersive { float: right; width: clamp(108px, 13vw, 160px); margin: 0 0 0 1.6rem; filter: drop-shadow(0 18px 30px rgba(0,0,0,0.5)); }

/* ===== Featured testimonial (Katrina-style: framed photo + big quote) ===== */
.testi { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(2.4rem, 6vw, 5rem); align-items: center; margin-top: clamp(2.4rem, 5vw, 4rem); }
.testi__img { position: relative; }
.testi__img img { width: 100%; max-height: 76vh; object-fit: cover; border-radius: 3px; box-shadow: 0 30px 60px rgba(42,34,28,0.2); position: relative; z-index: 1; }
.testi__img::before { content: ''; position: absolute; inset: 1.6rem -1.6rem -1.6rem 1.6rem; background: #fffdf8; box-shadow: 0 20px 40px rgba(42,34,28,0.1); border-radius: 3px; z-index: 0; }
.testi__quote { font-family: var(--display); font-weight: 400; font-size: clamp(1.65rem, 2.9vw, 2.6rem); line-height: 1.3; color: var(--ink); }
.testi__quote em { font-style: italic; color: var(--gold-deep); }
.testi__cite { font-family: var(--display); font-size: 1.45rem; color: var(--ink); margin-top: 1.6rem; }
.testi__loc { font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-deep); margin-top: 0.45rem; }
@media (max-width: 900px) { .testi { grid-template-columns: 1fr; } .testi__img::before { display: none; } }

/* ===================================================================
   ALIGN PASS — kill the big empty voids, cap image heights
   =================================================================== */
.sec { padding-top: clamp(2.6rem, 4.4vw, 4.6rem) !important; padding-bottom: clamp(2.6rem, 4.4vw, 4.6rem) !important; }
.feature-row { align-items: center; gap: clamp(2rem, 5vw, 4rem); }
.feature-row__img { max-height: 540px; overflow: hidden; border-radius: 3px; }
.feature-row__img img { max-height: 540px; object-fit: cover; }
.testi__img img { max-height: 540px; }
.sec--manifest { padding-top: clamp(2.6rem,4vw,4rem) !important; padding-bottom: clamp(2rem,3.4vw,3.2rem) !important; }
.manifest { font-size: clamp(2.1rem, 4.4vw, 3.5rem) !important; }
/* keep side-grass modest so it doesn't dominate the void */
.side-grass { width: clamp(86px, 10vw, 150px); opacity: 0.8; }

/* driftwood pole planted naturally in the immersive beach scene */
.alex-pole {
  position: absolute; bottom: 0; left: 43%;
  width: clamp(90px, 10vw, 142px); height: auto;
  z-index: 2; pointer-events: none;
  filter: drop-shadow(0 16px 26px rgba(0,0,0,0.5));
}
@media (max-width: 900px) { .alex-pole { left: auto; right: 4%; width: 80px; } }

/* ===================================================================
   Immersive ALEXANDRA beat — highlight the copy over the busy world
   (gradient scrim only, no backdrop-filter → no canvas glitch)
   =================================================================== */
.beat--alex .alex-copy {
  position: relative;
  padding: clamp(1.3rem, 2.4vw, 2.2rem) clamp(1.5rem, 2.8vw, 2.5rem);
  border-radius: 4px;
  background: linear-gradient(100deg,
      rgba(16,11,7,0) 0%,
      rgba(16,11,7,0.30) 26%,
      rgba(16,11,7,0.55) 100%);
}
.beat--alex .alex-copy .title,
.beat--alex .alex-copy .body,
.beat--alex .alex-copy .body p,
.beat--alex .alex-copy .traits li,
.beat--alex .alex-copy .sig {
  text-shadow: 0 2px 16px rgba(0,0,0,0.80), 0 1px 2px rgba(0,0,0,0.55);
}
.beat--alex .traits { margin-top: 1.7rem; }
.beat--alex .traits__k { font-size: 1.22rem; }
.beat--alex .traits__v { opacity: 1; color: #fff; }

/* ===================================================================
   PREMIUM EDITORIAL REDESIGN — Over (About) + Aanpak (split)
   Katrina-style: staggered anchored photos, no floating decorations
   =================================================================== */
.about {
  display: grid;
  grid-template-columns: 1.04fr 1fr;
  gap: clamp(2.4rem, 5vw, 5.5rem);
  align-items: center;
}
.about__media { position: relative; padding-bottom: clamp(2.2rem, 5vw, 4.5rem); }
.about__img img { display: block; width: 100%; height: auto; object-fit: cover; border-radius: 3px; }
.about__img--main img { max-height: 600px; box-shadow: 0 34px 70px rgba(42,34,28,0.20); }
.about__img--inset { position: absolute; right: -7%; bottom: 0; width: 47%; margin: 0; }
.about__img--inset img {
  box-shadow: 0 26px 50px rgba(42,34,28,0.32);
  border: 6px solid var(--ivory, #f4eee3);
  border-radius: 2px;
}
.about__copy { max-width: 30rem; }
.about__copy .sec__title { margin: 0.4rem 0 1.15rem; }
.about__lead {
  font-family: var(--display); font-style: italic;
  font-size: clamp(1.15rem, 1.7vw, 1.42rem); line-height: 1.55;
  margin-bottom: 1.1rem;
}
.about__meta {
  margin-top: 1.35rem; font-size: 0.8rem;
  letter-spacing: 0.16em; text-transform: uppercase; opacity: 0.66;
}
.btn--ghost {
  display: inline-block; margin-top: 1.8rem;
  padding: 0.85rem 1.95rem; border: 1px solid currentColor; border-radius: 2px;
  font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase;
  text-decoration: none; color: inherit; transition: background .3s ease, color .3s ease;
}
.btn--ghost:hover { background: #2a221c; color: var(--ivory, #f4eee3); border-color: #2a221c; }

/* Clean split row (Aanpak) */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.4rem, 5vw, 5.5rem); align-items: center; }
.split__copy { max-width: 30rem; }
.split--rev .split__copy { order: 1; }
.split--rev .split__img  { order: 2; }
.split__img { margin: 0; }
.split__img img {
  display: block; width: 100%; height: auto; max-height: 560px; object-fit: cover;
  border-radius: 3px; box-shadow: 0 30px 60px rgba(42,34,28,0.18);
}

/* Manifest — constrain for elegance */
.sec--manifest .manifest { max-width: 38rem; margin-left: auto; margin-right: auto; }
.sec--manifest .manifest__sub { max-width: 46ch; }

@media (max-width: 900px) {
  .about { grid-template-columns: 1fr; }
  .about__media { padding-bottom: 0; margin-bottom: 2.6rem; }
  .about__img--inset { position: static; width: 62%; margin: -16% 0 0 auto; }
  .about__copy { max-width: 100%; }
  .split { grid-template-columns: 1fr; }
  .split--rev .split__copy { order: 1; }
  .split--rev .split__img  { order: 2; }
  .sec--manifest .manifest { max-width: 100%; }
}

/* ===================================================================
   Premium outreach cards (Contact)
   =================================================================== */
.contact-cards {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
  max-width: 920px; margin: clamp(2.2rem, 4vw, 3.2rem) auto 0;
}
.contact-card {
  display: flex; flex-direction: column; align-items: center; gap: 0.55rem;
  text-align: center; text-decoration: none; color: inherit;
  padding: clamp(1.7rem, 3vw, 2.4rem) 1.2rem;
  border: 1px solid rgba(42, 34, 28, 0.16); border-radius: 4px;
  background: rgba(255, 255, 255, 0.42);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease, background .35s ease;
}
.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 48px rgba(42, 34, 28, 0.14);
  border-color: var(--gold, #8a6d3b);
  background: rgba(255, 255, 255, 0.7);
}
.contact-card__icon { width: 32px; height: 32px; color: var(--gold-deep, #8a6d3b); margin-bottom: 0.2rem; }
.contact-card__icon svg { width: 100%; height: 100%; display: block; }
.contact-card__label { font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase; opacity: 0.6; }
.contact-card__value { font-family: var(--display); font-style: italic; font-size: clamp(1.05rem, 1.6vw, 1.32rem); }
@media (max-width: 760px) { .contact-cards { grid-template-columns: 1fr; max-width: 420px; } }

/* ===================================================================
   Trio spine — one thin vertical thread connecting the 3 story sections
   =================================================================== */
.trio { position: relative; }
.trio__flourish { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.trio__curve { position: absolute; inset: 0; width: 100%; height: 100%; }
.trio__curve path {
  fill: none; stroke: rgba(138, 106, 63, 0.32);
  stroke-width: 1.4; vector-effect: non-scaling-stroke; stroke-linecap: round;
}
.trio__plume { position: absolute; width: clamp(78px, 8vw, 124px); opacity: 0.9; }
/* top plume sits at the curve's start (top-right) */
.trio__plume--top { top: -28px; right: 13%; transform: rotate(8deg); }
/* bottom plume at the curve's end (lower-left), mirrored */
.trio__plume--bottom { bottom: -16px; left: 30%; transform: rotate(-12deg) scaleX(-1); }
@media (max-width: 900px) { .trio__flourish { display: none; } }

/* ===================================================================
   MOBILE PASS — hamburger nav, overflow guard, decluttering
   =================================================================== */
.navtoggle { display: none; }

@media (max-width: 760px) {
  /* prevent any decorative element from causing sideways scroll */
  html, body, .site { overflow-x: hidden; }

  /* hamburger button */
  .navtoggle {
    display: flex; flex-direction: column; justify-content: center; gap: 5px;
    width: 40px; height: 40px; padding: 9px 7px;
    background: none; border: 0; cursor: pointer; color: var(--ivory, #f4eee3);
    position: relative; z-index: 90;
  }
  body.in-content .navtoggle { color: var(--ink, #2a221c); }
  .navtoggle span { display: block; height: 1.5px; width: 100%; background: currentColor; transition: transform .3s ease, opacity .3s ease; }
  .topbar.nav-open .navtoggle span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .topbar.nav-open .navtoggle span:nth-child(2) { opacity: 0; }
  .topbar.nav-open .navtoggle span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

  /* nav becomes a dropdown panel */
  .topbar { flex-wrap: wrap; }
  .topbar__nav {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--ivory, #f4eee3);
    box-shadow: 0 24px 44px rgba(42, 34, 28, 0.18);
    max-height: 0; overflow: hidden; opacity: 0; pointer-events: none;
    transition: max-height .38s ease, opacity .25s ease;
  }
  .topbar.nav-open .topbar__nav { max-height: 90vh; opacity: 1; pointer-events: auto; }
  .topbar__nav a:not(.topbar__cta) {
    display: block; padding: 1.05rem 1.5rem; opacity: 1;
    border-bottom: 1px solid rgba(138, 106, 63, 0.14);
    color: var(--gold-deep) !important; text-shadow: none;
    font-size: 0.8rem; letter-spacing: 0.22em;
  }
  .topbar__cta { display: block; margin: 1.1rem 1.5rem 1.3rem; text-align: center; }

  /* big script watermarks: hide on phones (they overflow / crowd) */
  .sec__wm { display: none; }

  /* a touch more breathing room / safe horizontal padding */
  .sec { padding-left: 1.3rem; padding-right: 1.3rem; }
}

@media (max-width: 460px) {
  .hero { font-size: clamp(2rem, 15vw, 3.2rem); }
  .manifest { font-size: clamp(1.9rem, 8.5vw, 2.6rem) !important; }
  .sec__title { font-size: clamp(2rem, 9vw, 2.8rem); }
}

/* (mobile uses the original animated world, same as desktop — cover-fit) */

/* ===================================================================
   HERO SCRIPT TITLE — "Promessa" calligraphy that writes itself on
   =================================================================== */
.hero-script {
  font-family: 'Pinyon Script', cursive;
  font-weight: 400;
  font-size: clamp(4rem, 13vw, 10rem);
  line-height: 0.95;
  color: var(--ivory, #f4eee3);
  text-shadow: 0 6px 34px rgba(0,0,0,0.42);
  margin: 0.08em 0 0.18em;
  white-space: nowrap;
}
/* writes on (left → right) once the world is ready */
body.intro-ready .beat--center .hero-script {
  animation: writeOn 2.6s cubic-bezier(0.65, 0.02, 0.3, 1) 0.35s both;
}
@keyframes writeOn {
  from { clip-path: inset(0 100% -28% 0); -webkit-clip-path: inset(0 100% -28% 0); }
  to   { clip-path: inset(0 -8% -28% 0);  -webkit-clip-path: inset(0 -8% -28% 0); }
}
@media (prefers-reduced-motion: reduce) {
  body.intro-ready .beat--center .hero-script { animation: none; }
}

/* mobile world poster = the 9:16 opening frame (matches the mobile canvas) */
@media (max-width: 760px) {
  .world { background-image: url('images/frames-mobile/m_0001.jpg?v=1'); }
}

/* ===================================================================
   MOBILE FIX — immersive "II · ALEXANDRA" beat: fit one screen cleanly
   (figure + trimmed copy; full bio still lives in the Over section)
   =================================================================== */
@media (max-width: 760px) {
  .beat--alex {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    padding: 8.5vh 1.3rem 8vh;
    gap: 0.4rem;
    align-content: center;
  }
  .alex-stage { height: 32vh; width: 100%; align-self: center; margin: 0; }
  .alex-figure--cut { object-position: center bottom; }
  .beat--alex .alex-copy {
    padding: 0.9rem 1.1rem;
    max-width: 100%;
    align-self: start;
  }
  .alex-copy .proto  { margin-bottom: 0.5rem; }
  .alex-copy .title  { font-size: clamp(1.6rem, 7.5vw, 2.3rem); margin-bottom: 0.5rem; }
  .alex-copy .body   { font-size: 0.9rem; line-height: 1.45; margin-bottom: 0.5rem; }
  .alex-copy .body + .body { display: none; }   /* hide the 2nd long paragraph on phones */
  .alex-copy .sig    { display: none; }
  .beat--alex .traits { margin-top: 0.8rem; gap: 0.3rem; }
  .beat--alex .traits li { padding-left: 20px; }
  .beat--alex .traits__k { font-size: 0.94rem; }
  .beat--alex .traits__v { font-size: 0.82rem; }
}

/* ===================================================================
   World pampas — elegant dune-grass framing both sides of the hero,
   gently swaying (symmetric, fades out with the world in content)
   =================================================================== */
.world-pampas {
  position: absolute;
  bottom: -2%;
  z-index: 2;
  width: clamp(160px, 23vw, 400px);
  height: auto;
  pointer-events: none;
  transform-origin: bottom center;
  filter: drop-shadow(0 12px 30px rgba(0,0,0,0.22));
  opacity: 0.95;
}
.world-pampas--l { left: -3%;  animation: pampasSwayL 7.5s ease-in-out infinite; }
.world-pampas--r { right: -3%; transform: scaleX(-1); animation: pampasSwayR 8.5s ease-in-out infinite; }
@keyframes pampasSwayL {
  0%, 100% { transform: rotate(-1.4deg); }
  50%      { transform: rotate(1.8deg); }
}
@keyframes pampasSwayR {
  0%, 100% { transform: scaleX(-1) rotate(-1.4deg); }
  50%      { transform: scaleX(-1) rotate(1.8deg); }
}
@media (max-width: 760px) {
  .world-pampas { width: clamp(110px, 36vw, 200px); opacity: 0.9; }
}
@media (prefers-reduced-motion: reduce) {
  .world-pampas--l, .world-pampas--r { animation: none; }
}

/* ===================================================================
   Hero readability — soft radial scrim behind the centre text + stronger
   shadows, so the title/tagline read cleanly over the bright beach
   =================================================================== */
.beat--center::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 62% 52% at 50% 46%,
      rgba(8,6,4,0.50) 0%,
      rgba(8,6,4,0.26) 40%,
      rgba(8,6,4,0) 72%);
  pointer-events: none;
}
.beat--center > * { position: relative; z-index: 1; }
.beat--center .tag {
  text-shadow: 0 2px 22px rgba(0,0,0,0.85), 0 1px 3px rgba(0,0,0,0.7);
}
.beat--center .rule,
.beat--center .proto {
  text-shadow: 0 2px 16px rgba(0,0,0,0.8), 0 1px 2px rgba(0,0,0,0.6);
}
.hero-script { text-shadow: 0 6px 34px rgba(0,0,0,0.55), 0 1px 4px rgba(0,0,0,0.5); }

/* ===================================================================
   MOBILE FIX — Alexandra cutout sits INSIDE the frosted frame
   (shrink figure so her head clears the frame top; frame hugs her)
   =================================================================== */
@media (max-width: 760px) {
  .alex-stage { height: 40vh; }
  .alex-figure--cut { height: 95%; bottom: 0; }      /* fills the frame, just a little headroom */
  .alex-glow { inset: 4% 8% 0 8%; }                  /* frame hugs her: top just above head, sides margin, bottom flush */
}
