/* ══════════════════════════════════════════════════════════════
   WOO Oriental Tea & Desserts. Brand experience page.
   Art-directed as a fixed sequence of dark and light acts, in the
   language of claypotking.com: cinematic arrival, pinned chapters,
   hairline dividers, chapter rail, Lenis + GSAP ScrollTrigger.

   Accent lock  : WOO pink. #FF52C4 on dark, #B80279 on light.
   Surface tints: mint, chartreuse, yellow. Hairlines and bars only.
   Radius system: pill for buttons, square plates. Quiet geometry.
   ══════════════════════════════════════════════════════════════ */

:root {
  /* dark act */
  --ink-900: #0E1315;
  --ink-800: #12181A;
  --ink-700: #1A2326;
  --cream:   #F2EBE0;

  /* light act */
  --paper:   #FBF8F3;
  --sand:    #F2EBE0;
  --sand-2:  #E7DECF;
  --ink:     #1E272B;
  --ink-soft:#526169;

  /* accent, one hue, two tunings */
  --pink:      #FD1EAF;   /* brand reference, logo only */
  --pink-dark: #FF52C4;   /* on the dark act */
  --pink-lite: #B80279;   /* on the light act */
  --mint:      #6ECFBE;
  --chart:     #B9CE2E;
  --yellow:    #F2E205;

  /* live tokens, swapped by the act */
  --bg:     var(--ink-800);
  --fg:     var(--cream);
  --fg-dim: rgba(242, 235, 224, .66);
  --accent: var(--pink-dark);
  --rule:   rgba(242, 235, 224, .16);

  --shell: 1240px;
  --gut:   clamp(22px, 5vw, 72px);
  --act:   clamp(96px, 13vw, 190px);

  --ease:  cubic-bezier(.2, .8, .2, 1);
  --expo:  cubic-bezier(.16, 1, .3, 1);
  --f-disp: "Outfit", "Anuphan", system-ui, sans-serif;
  --f-body: "Anuphan", "Outfit", system-ui, sans-serif;
  --f-han:  "Noto Serif SC", "Songti SC", serif;

  --nav-h: 84px;
}

/* the body class drives only what floats over the page: nav, chapter
   rail, drawer. Each section owns its own tokens so its colours never
   depend on where the act trigger happens to have fired. */
body.ui-light {
  --bg:     var(--paper);
  --fg:     var(--ink);
  --fg-dim: var(--ink-soft);
  --accent: var(--pink-lite);
  --rule:   rgba(30, 39, 43, .16);
}

.craft, .coll, .invite {
  --fg:     var(--ink);
  --fg-dim: var(--ink-soft);
  --accent: var(--pink-lite);
  --rule:   rgba(30, 39, 43, .16);
  color: var(--fg);
}
.arrival, .name, .house, .foot {
  --fg:     var(--cream);
  --fg-dim: rgba(242, 235, 224, .66);
  --accent: var(--pink-dark);
  --rule:   rgba(242, 235, 224, .16);
  color: var(--fg);
}

/* ── base ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-padding-top: 96px; background: #12181A; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }
html:not(.lenis) { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--f-body);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.82;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  transition: background-color .9s var(--ease), color .9s var(--ease);
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }

h1, h2, h3 {
  margin: 0;
  font-family: var(--f-disp);
  font-weight: 300;
  letter-spacing: -.018em;
  line-height: 1.24;
}
h2 { font-size: clamp(30px, 4.1vw, 58px); }
h3 { font-size: clamp(19px, 2vw, 25px); }
p { margin: 0 0 1.1em; max-width: 60ch; }
p:last-child { margin-bottom: 0; }

.shell { width: min(100% - var(--gut) * 2, var(--shell)); margin-inline: auto; }

.eyebrow {
  margin: 0 0 18px;
  font-family: var(--f-disp);
  font-size: 11.5px; font-weight: 400;
  letter-spacing: .3em; text-transform: uppercase;
  color: var(--accent);
}
.eyebrow:lang(th) { letter-spacing: .14em; }

.skip {
  position: fixed; left: -9999px; top: 0; z-index: 300;
  background: #B80279; color: #fff; padding: 14px 22px;
}
.skip:focus { left: 0; }

:where(a, button):focus-visible {
  outline: 2px solid var(--accent); outline-offset: 5px; border-radius: 3px;
}

/* hairline divider, drawn on scroll */
.divider { display: flex; align-items: center; gap: 16px; color: var(--accent); }
.divider .line {
  height: 1px; width: clamp(60px, 9vw, 120px);
  background: linear-gradient(90deg, transparent, currentColor);
  transform-origin: right;
}
.divider .line.r { background: linear-gradient(90deg, currentColor, transparent); transform-origin: left; }
.divider .dot { width: 4px; height: 4px; border-radius: 999px; background: currentColor; flex: none; }

/* ── film grain ─────────────────────────────────────────────── */
.grain {
  position: fixed; inset: 0; z-index: 70; pointer-events: none;
  opacity: .03; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ── arrival curtain ────────────────────────────────────────── */
.intro {
  position: fixed; inset: 0; z-index: 200;
  display: grid; place-items: center;
  background: var(--ink-900);
  transition: opacity .8s var(--ease), visibility .8s;
}
.intro.is-done { opacity: 0; visibility: hidden; pointer-events: none; }
.intro__ring { position: absolute; width: 132px; height: 132px; transform: rotate(-90deg); }
.intro__ring circle {
  fill: none; stroke: var(--pink-dark); stroke-width: 1;
  stroke-dasharray: 352; stroke-dashoffset: 352;
}
.intro__mark { width: 54px; opacity: 0; }

/* ── progress bar ───────────────────────────────────────────── */
#progress {
  position: fixed; top: 0; left: 0; z-index: 80;
  height: 2px; width: 100%;
  transform: scaleX(0); transform-origin: left;
  background: linear-gradient(90deg, var(--mint), var(--chart), var(--pink-dark));
}

/* ── chapter rail ───────────────────────────────────────────── */
.chapters {
  position: fixed; top: 50%; z-index: 60;
  left: max(1.5rem, calc((100vw - var(--shell)) / 2 - 100px));
  width: 92px; transform: translateY(-50%); display: none;
}
@media (min-width: 1500px) { .chapters { display: block; } }
.chapters a {
  display: flex; align-items: center; gap: 12px;
  padding: 7px 0; text-decoration: none;
  font-size: 11.5px; letter-spacing: .1em;
  color: var(--fg); opacity: .72;
  transition: color .5s var(--ease), opacity .5s var(--ease);
}
.chapters a:hover { opacity: 1; }
.chapters .num { font-family: var(--f-disp); font-variant-numeric: tabular-nums; }
.chapters .tick { width: 16px; height: 1px; background: currentColor; transition: width .5s var(--ease); }
.chapters .lbl { white-space: nowrap; opacity: 0; transform: translateX(-6px); transition: opacity .5s var(--ease), transform .5s var(--ease); }
.chapters a:hover .lbl, .chapters a.active .lbl { opacity: 1; transform: none; }
.chapters a.active { opacity: 1; }
/* the rail floats over both acts, so its active state uses a deeper and a
   lighter tuning of the brand pink than the in-page accent does */
body.ui-dark  .chapters a.active { color: #FF7ED4; }
body.ui-light .chapters a.active { color: #9E0266; }
.chapters a.active .tick { width: 32px; }

/* ── nav ────────────────────────────────────────────────────── */
.nav { position: fixed; inset-inline: 0; top: 0; z-index: 90; }
.nav__bg {
  position: absolute; inset: 0;
  background: transparent; border-bottom: 1px solid transparent;
  backdrop-filter: blur(14px) saturate(150%);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  transition: background-color .7s var(--ease), border-color .7s var(--ease);
}
.nav__in {
  position: relative;
  width: min(100% - var(--gut) * 2, var(--shell));
  margin-inline: auto; height: var(--nav-h);
  display: flex; align-items: center; gap: 34px;
}
.nav__logo { position: relative; display: block; width: 112px; flex: none; }
.nav__logo img { width: 100%; transition: opacity .7s var(--ease); }
.nav__logo--light { position: absolute; inset: 0; opacity: 0; }
body.ui-light .nav__logo--dark  { opacity: 0; }
body.ui-light .nav__logo--light { opacity: 1; }

.nav__links { display: flex; gap: 30px; margin-inline: auto; }
.nav__links a {
  position: relative; text-decoration: none;
  font-size: 15px; color: var(--fg-dim);
  transition: color .5s var(--ease);
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  width: 100%; height: 1px; background: var(--accent);
  transform: scaleX(0); transform-origin: right;
  transition: transform .5s var(--expo);
}
.nav__links a:hover { color: var(--fg); }
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav__right { display: flex; align-items: center; gap: 16px; flex: none; }
.nav__cta {
  font-size: 13px; letter-spacing: .14em; text-transform: uppercase;
  text-decoration: none; color: var(--fg);
  padding: 11px 22px; border: 1px solid var(--rule); border-radius: 999px;
  transition: border-color .5s var(--ease), color .5s var(--ease);
}
.nav__cta:hover { border-color: var(--accent); color: var(--accent); }

.burger {
  display: none; width: 40px; height: 40px; padding: 0;
  background: none; border: 1px solid var(--rule); border-radius: 999px;
  cursor: pointer; place-items: center; gap: 5px;
}
.burger span { display: block; width: 15px; height: 1px; background: var(--fg); transition: transform .4s var(--ease); }
.nav.is-open .burger span:first-child { transform: translateY(3px) rotate(45deg); }
.nav.is-open .burger span:last-child  { transform: translateY(-3px) rotate(-45deg); }

.drawer[hidden] { display: none; }
.drawer {
  position: fixed; inset: var(--nav-h) 0 auto 0; z-index: 88;
  display: flex; flex-direction: column;
  padding: 10px var(--gut) 28px;
  background: var(--bg);
  border-bottom: 1px solid var(--rule);
}
.drawer a {
  padding: 15px 0; text-decoration: none; font-size: 19px;
  border-bottom: 1px solid var(--rule);
}
.drawer a:last-child { border-bottom: 0; color: var(--accent); }

/* ── shared button ──────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  white-space: nowrap; text-decoration: none;
  font-family: var(--f-body); font-size: 14px; font-weight: 400;
  letter-spacing: .14em; text-transform: uppercase;
  padding: 16px 34px; border-radius: 999px;
  background: var(--cream); color: #12181A;
  transition: background-color .45s var(--ease), color .45s var(--ease), transform .2s var(--ease);
}
.btn:hover { background: #B80279; color: #fff; }
.btn:active { transform: translateY(1px) scale(.99); }

/* ══════════ 01 ARRIVAL ══════════ */
.stage { background: var(--ink-800); }
.arrival { position: relative; isolation: isolate; overflow: hidden; }
.arrival__media { position: absolute; inset: 0; z-index: 0; background: var(--ink-900); }
.arrival__media img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: 62% 50%;
  filter: saturate(1.03) contrast(1.03) brightness(.82);
  opacity: 0; transform: scale(1.0);
  transition: opacity 2400ms cubic-bezier(.4, 0, .2, 1), transform 8200ms linear;
  will-change: opacity, transform;
}
.arrival__media img.is-active { opacity: 1; transform: scale(1.09); }
.arrival__scrim {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(95deg, rgba(10,14,15,.93) 0%, rgba(10,14,15,.8) 30%, rgba(10,14,15,.3) 58%, rgba(10,14,15,.1) 78%),
    linear-gradient(0deg, rgba(10,14,15,.8) 0%, rgba(10,14,15,.1) 34%, transparent 62%, rgba(10,14,15,.42) 100%);
}
.arrival__body {
  position: relative; z-index: 2;
  min-height: 100svh;
  padding-top: calc(var(--nav-h) + 24px); padding-bottom: clamp(56px, 8vw, 104px);
  display: flex; align-items: center;
}
.arrival__mark { width: clamp(168px, 18vw, 252px); margin-bottom: 30px; }
.arrival__h1 {
  font-family: var(--f-disp);
  font-size: clamp(40px, 7vw, 104px);
  font-weight: 200;
  letter-spacing: -.028em;
  line-height: 1.04; color: #fff;
  margin: 10px 0 28px;
  text-shadow: 0 2px 40px rgba(0, 0, 0, .5);
}
.lines .line { display: block; overflow: hidden; padding: .16em 0; margin: -.16em 0; }
.lines .line > span { display: block; will-change: transform; }
.arrival__sub {
  font-size: clamp(17px, 1.55vw, 23px);
  font-weight: 300;
  color: rgba(255, 255, 255, .86);
  max-width: 33ch; margin: 0 0 42px;
}
.arrival__foot { display: flex; align-items: center; gap: 34px; flex-wrap: wrap; }
.ticks { display: flex; align-items: center; gap: 10px; }
.ticks .tick {
  display: block; width: 24px; height: 1px;
  background: rgba(255, 255, 255, .3);
  transition: background-color .8s var(--ease), width .8s var(--ease);
}
.ticks .tick.on { background: var(--pink-dark); width: 40px; }

/* ══════════ 02 THE NAME ══════════ */
.name { position: relative; z-index: 2; background: var(--ink-800); }
.name__stage { position: relative; height: 100svh; overflow: hidden; }
.chap {
  position: relative; height: 100%;
  display: grid; place-items: center;
  overflow: hidden; isolation: isolate;
}
.chap > img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: -2;
  filter: brightness(.5) saturate(1.02);
  will-change: transform;
}
.chap::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(120% 90% at 50% 58%, rgba(10,14,15,.18), rgba(10,14,15,.78) 78%),
    linear-gradient(0deg, rgba(10,14,15,.7), rgba(10,14,15,.1) 55%);
}
.chap__copy {
  position: relative; text-align: center;
  width: min(100% - var(--gut) * 2, 680px);
  color: #fff;
}
.chap__copy h2 { margin-bottom: .55em; text-wrap: balance; }
.chap__copy p { margin-inline: auto; color: rgba(255, 255, 255, .84); max-width: 46ch; }
.chap__char {
  display: block; font-family: var(--f-han); font-weight: 300;
  font-size: clamp(70px, 10vw, 132px); line-height: 1;
  color: var(--pink-dark); opacity: .55; margin-bottom: 10px;
}
.chap__dots {
  position: absolute; right: max(1.6rem, 3vw); top: 50%; z-index: 6;
  transform: translateY(-50%);
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 14px;
}
.chap__dots li {
  display: flex; align-items: center; justify-content: flex-end; gap: 10px;
  font-family: var(--f-disp); font-size: 10.5px; letter-spacing: .14em;
  color: rgba(255, 255, 255, .36); transition: color .5s var(--ease);
}
.chap__dots li .bar { width: 16px; height: 1px; background: currentColor; transition: width .5s var(--ease); }
.chap__dots li.on { color: var(--pink-dark); }
.chap__dots li.on .bar { width: 34px; }
@media (max-width: 767px) { .chap__dots { display: none; } }

/* ══════════ 03 THE CRAFT ══════════ */
.craft { position: relative; z-index: 2; background: var(--paper); padding-block: var(--act); }
.craft__head h2 { max-width: 15em; text-wrap: balance; margin-bottom: 34px; }
.craft__head .divider { margin-top: 2px; }

.craft__grid {
  display: grid; gap: clamp(36px, 4.5vw, 64px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(52px, 7vw, 96px);
  align-items: start;
}
.pillar:nth-child(2) { margin-top: clamp(26px, 5vw, 76px); }
.pillar:nth-child(3) { margin-top: clamp(10px, 2vw, 30px); }
.plate { margin: 0 0 28px; overflow: hidden; background: var(--sand-2); }
.plate img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; will-change: transform; }
.pillar__no {
  font-family: var(--f-disp); font-size: 12px; letter-spacing: .22em;
  color: var(--pink-lite); margin: 0 0 8px;
}
.pillar h3 { margin-bottom: 10px; }
.pillar p { color: var(--ink-soft); font-size: 15.5px; }

.craft__band { position: relative; margin: clamp(64px, 9vw, 128px) 0 0; overflow: hidden; }
.craft__band img { width: 100%; aspect-ratio: 21 / 8; object-fit: cover; }
.craft__band figcaption {
  margin-top: 16px; padding-inline: var(--gut);
  font-size: 14px; color: var(--ink-soft);
}

/* ══════════ 04 THE COLLECTION ══════════ */
.coll { position: relative; z-index: 2; background: var(--sand); padding-block: var(--act); }
.coll__head { max-width: 46ch; margin-bottom: clamp(40px, 5vw, 68px); }
.coll__head h2 { margin-bottom: .4em; }
.coll__note { color: var(--ink-soft); }

.gallery {
  overflow-x: auto; overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}
.gallery::-webkit-scrollbar { display: none; }
.gallery.is-pinned { overflow: hidden; scroll-snap-type: none; }
.gallery__track {
  display: flex; gap: clamp(18px, 2vw, 30px);
  padding-inline: var(--gut);
  width: max-content;
}
.plate-card { flex: 0 0 auto; width: clamp(240px, 26vw, 320px); scroll-snap-align: start; }
.gallery.is-pinned .plate-card { scroll-snap-align: none; }
.plate-card figure { margin: 0 0 22px; overflow: hidden; background: var(--sand-2); }
.plate-card img {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.plate-card:hover img { transform: scale(1.05); }
.plate-card__kind {
  font-family: var(--f-disp); font-size: 11px; letter-spacing: .22em;
  text-transform: uppercase; color: var(--pink-lite); margin: 0 0 8px;
}
.plate-card h3 { font-size: clamp(19px, 1.6vw, 23px); margin-bottom: 6px; }
.plate-card p { font-size: 14.5px; color: var(--ink-soft); }
.plate-card--more {
  display: flex; flex-direction: column; justify-content: center;
  border-left: 1px solid var(--rule); padding-left: clamp(22px, 2.4vw, 38px);
}
.plate-card--more h3 { font-size: clamp(16px, 1.4vw, 19px); line-height: 2.1; color: var(--ink); }

/* ══════════ 05 THE HOUSE ══════════ */
.house { position: relative; z-index: 2; background: var(--ink-800); padding-bottom: var(--act); }
.house__hero { margin: 0; overflow: hidden; }
.house__hero img {
  width: 100%; aspect-ratio: 21 / 9; object-fit: cover;
  filter: brightness(.86) saturate(1.02);
}
.house__head { margin-top: clamp(56px, 7vw, 100px); }
.house__head h2 { max-width: 15em; text-wrap: balance; margin-bottom: .5em; }
.house__head p { max-width: 62ch; color: var(--fg-dim); }

.formats {
  display: grid; gap: clamp(30px, 3.4vw, 52px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(52px, 6vw, 88px);
}
.fmt { padding-top: 26px; border-top: 1px solid var(--rule); }
.fmt__size {
  font-family: var(--f-disp); font-weight: 200;
  font-size: clamp(30px, 3.4vw, 44px); line-height: 1.24;
  letter-spacing: -.02em; color: var(--pink-dark);
  margin: 0 0 12px; font-variant-numeric: tabular-nums;
}
.fmt__size em { font-style: normal; font-size: .36em; letter-spacing: .04em; color: var(--fg-dim); }
.fmt h3 { margin-bottom: 10px; }
.fmt p { color: var(--fg-dim); font-size: 15.5px; }

.house__pair {
  display: grid; gap: clamp(18px, 2vw, 28px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: clamp(52px, 6vw, 88px);
}
.house__pair figure { margin: 0; overflow: hidden; }
.house__pair img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
  filter: brightness(.9);
  transition: transform 1.3s var(--ease), filter .8s var(--ease);
}
.house__pair figure:hover img { transform: scale(1.04); filter: brightness(1); }

/* ══════════ 06 INVITATION ══════════ */
.invite { position: relative; z-index: 2; background: var(--sand); padding-block: clamp(110px, 15vw, 210px) clamp(60px, 8vw, 110px); }
.invite__in { display: flex; flex-direction: column; align-items: center; text-align: center; }
.invite .divider { margin-bottom: 34px; }
.invite h2 { font-size: clamp(34px, 5.2vw, 68px); line-height: 1.3; margin-bottom: 46px; }
.invite__mail {
  font-family: var(--f-disp); font-weight: 300;
  font-size: clamp(20px, 3vw, 40px); letter-spacing: -.01em;
  text-decoration: none; color: var(--pink-lite);
  padding-bottom: 8px; border-bottom: 1px solid currentColor;
  transition: color .5s var(--ease), letter-spacing .6s var(--ease);
}
.invite__mail:hover { color: var(--ink); letter-spacing: .012em; }
.invite__object { margin: clamp(56px, 8vw, 110px) 0 0; width: clamp(200px, 26vw, 330px); }
.invite__object img { width: 100%; }

/* ══════════ footer ══════════ */
.foot { position: relative; z-index: 2; background: var(--ink-900); color: var(--cream); padding-block: clamp(48px, 6vw, 80px); }
.foot__in { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 0; }
.foot__in img { width: 104px; }
.foot__tag { font-family: var(--f-disp); font-size: 12.5px; letter-spacing: .2em; text-transform: uppercase; opacity: .62; margin: 14px 0 0; }
.foot__meta { font-size: 13px; opacity: .48; margin: 16px 0 0; }

/* ── motion primitives ──────────────────────────────────────── */
.reveal, .hero-el { will-change: transform, opacity; }

@media (prefers-reduced-motion: reduce) {
  .arrival__media img { transition: opacity .6s linear; transform: none !important; }
  .intro { display: none; }
}

/* ── responsive ─────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .craft__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pillar:nth-child(3) { margin-top: 0; }
  .formats { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 900px) {
  :root { --nav-h: 68px; }
  .nav__links { display: none; }
  .nav__right { margin-left: auto; }
  .nav__cta { display: none; }
  .burger { display: grid; }
  .house__pair { grid-template-columns: 1fr; }
  .chap__copy h2 { font-size: clamp(26px, 6vw, 38px); }
}

@media (max-width: 720px) {
  body { font-size: 16.5px; }
  .craft__grid { grid-template-columns: 1fr; gap: 44px; }
  .pillar:nth-child(2), .pillar:nth-child(3) { margin-top: 0; }
  .arrival__body { min-height: 92svh; }
  .arrival__h1 { font-size: clamp(38px, 11.5vw, 56px); line-height: 1.06; }
  .arrival__mark { width: 158px; margin-bottom: 22px; }
  .arrival__sub { max-width: none; margin-bottom: 30px; }
  .arrival__foot { gap: 22px; }
  .craft__band img { aspect-ratio: 16 / 10; }
  .house__hero img { aspect-ratio: 16 / 10; }
  .plate-card--more { border-left: 0; border-top: 1px solid var(--rule); padding: 26px 0 0; }
  .invite__mail { font-size: clamp(17px, 5.2vw, 26px); }
}

@media (prefers-reduced-transparency: reduce) {
  .nav__bg { backdrop-filter: none; }
}
