/* =========================================================
   e-Guests — site styles
   Layout language adapted from kairohealth.fit, re-skinned
   in the e-Guests brand: navy, teal, gold, rose and ivory.
   ========================================================= */

:root {
  /* Brand (sampled from the logo) */
  --navy: #062B40;
  --teal: #194A53;
  --gold: #D9AB6F;
  --gold-hi: #F0CC90;
  --gold-lo: #B4783C;
  --gold-ink: #8A5E26;
  --rose: #D4877B;
  --rose-hi: #E8A49C;
  --rose-lo: #B96A5E;
  --cream: #FCF8F0;

  /* Surfaces */
  --night: #061A2B;
  --night-2: #0A2437;
  --night-3: #0F2F47;
  --bone: #F8F2E7;
  --bone-2: #EFE5D3;
  --paper: #FFFDF8;
  --ivory: #F8F2E7;
  --teal-glow: #6FB8B1;
  --sky: #8FB8DE;
  --live: #6FD3A0;

  /* Text */
  --ink: #062B40;
  --ink-soft: #4A6275;
  --mist: #AEBBC6;

  /* Lines */
  --line-dark: rgba(248, 242, 231, .12);
  --line-dark-2: rgba(248, 242, 231, .22);
  --line-light: #E3D7C3;

  --grad-gold: linear-gradient(100deg, #B4783C 0%, #E2B877 32%, #F3D59C 52%, #D9AB6F 74%, #B4783C 100%);
  --grad-gold-btn: linear-gradient(110deg, #B98043 0%, #E2BA7B 22%, #F8E0AE 40%, #DDB174 58%, #C08A4C 78%, #E9C98E 100%);

  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --pill: 999px;

  --container: 1320px;
  --gutter: clamp(20px, 4vw, 40px);
  --header-h: 76px;
  --sec-bg: var(--night);

  --ease-out: cubic-bezier(.25, 1, .5, 1);
  --ease-inout: cubic-bezier(.83, 0, .17, 1);
  --shadow-pop: 0 24px 60px rgba(0, 0, 0, .45);

  --f-display: "Cormorant Garamond", "Cormorant", Georgia, "Times New Roman", serif;
  --f-sans: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --f-script: "Great Vibes", "Snell Roundhand", "Segoe Script", cursive;
  --f-light: var(--f-display); /* the same serif, used at weight 300 for the biggest moments */
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--night);
  color: var(--ivory);
  font-family: var(--f-sans);
  font-size: 1rem;
  line-height: 1.65;
  font-variant-numeric: lining-nums;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }
h1, h2, h3, h4, p, figure, blockquote { margin: 0; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 6px; }
::selection { background: var(--gold); color: var(--navy); }

.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.ic {
  width: 1.25em; height: 1.25em; flex: none;
  fill: none; stroke: currentColor; stroke-width: 1.8;
  stroke-linecap: round; stroke-linejoin: round;
}
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; top: 12px; left: 12px; z-index: 100;
  padding: 10px 16px; border-radius: var(--pill);
  background: var(--gold); color: var(--navy); font-weight: 600;
  transform: translateY(-160%); transition: transform .2s;
}
.skip-link:focus { transform: none; }

.container {
  width: 100%;
  max-width: calc(var(--container) + var(--gutter) * 2);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ---------- Type ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .9em;
  margin-bottom: 1.25rem;
  font: 600 .72rem/1.35 var(--f-sans);
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold);
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: currentColor; opacity: .85; }
.on-bone .eyebrow { color: var(--gold-ink); }

.h2 {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(2.45rem, 1.5rem + 3.1vw, 4.1rem);
  line-height: 1.04;
  letter-spacing: -.012em;
  margin-bottom: 1.1rem;
  text-wrap: balance;
  font-variant-numeric: lining-nums;
}
/* light headline, key words in semibold (the Zola way) */
.h2 b { font-weight: 600; }
.lead {
  font-size: clamp(1rem, .96rem + .22vw, 1.125rem);
  color: var(--mist);
  max-width: 34rem;
  margin-bottom: 1.9rem;
  text-wrap: pretty;
}
.on-bone .lead { color: var(--ink-soft); }

.section-head { max-width: 46rem; margin-bottom: clamp(40px, 5vw, 60px); }
.section-head .h2:last-child { margin-bottom: 0; }
.section-head .lead { margin-bottom: 0; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-head--center .lead { margin-inline: auto; }

/* A section head with an action beside it */
.split-head { display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 24px 48px; margin-bottom: clamp(40px, 5vw, 60px); }
.split-head .section-head { margin-bottom: 0; }

/* ---------- Sections ---------- */
.section { padding-block: clamp(72px, 9vw, 128px); border-top: 1px solid var(--line-dark); }
.on-bone { --sec-bg: var(--bone); background: var(--bone); color: var(--ink); border-top: 0; }

/* =========================================================
   BUTTONS — gold leaf, hairline borders and a soft sheen
   ========================================================= */
.btn {
  --h: 54px;
  position: relative; isolation: isolate; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center; gap: .85em;
  height: var(--h); padding: 0 34px;
  border-radius: var(--pill); border: 1px solid transparent; background: transparent;
  font: 600 .74rem/1 var(--f-sans); letter-spacing: .2em; text-transform: uppercase; white-space: nowrap;
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out), color .35s, border-color .35s, background-position .9s var(--ease-out);
}
.btn .ic { width: 1.6em; height: 1.6em; margin-left: -.2em; }
/* sheen that sweeps across on hover */
.btn::after {
  content: ""; position: absolute; top: 0; bottom: 0; left: 0; z-index: 2; width: 45%; pointer-events: none;
  background: linear-gradient(105deg, transparent 20%, rgba(255, 255, 255, .5) 50%, transparent 80%);
  transform: translateX(-130%) skewX(-18deg);
}
.btn:hover::after { transform: translateX(260%) skewX(-18deg); transition: transform .9s var(--ease-out); }
.btn[disabled] { opacity: .55; pointer-events: none; }

.btn--gold {
  color: var(--navy);
  background: var(--grad-gold-btn) 0 0 / 200% 100%;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .55), inset 0 -1px 0 rgba(120, 74, 28, .3), 0 16px 34px -14px rgba(217, 171, 111, .7);
}
.btn--gold::before { /* engraved inner hairline */
  content: ""; position: absolute; inset: 3px; z-index: 1; border-radius: inherit; pointer-events: none;
  border: 1px solid rgba(255, 250, 240, .5);
}
.btn--gold:hover {
  background-position: 100% 0; transform: translateY(-2px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .55), inset 0 -1px 0 rgba(120, 74, 28, .3), 0 22px 40px -14px rgba(217, 171, 111, .85);
}

.btn--ghost {
  color: var(--ivory);
  border-color: rgba(217, 171, 111, .6);
  background: rgba(6, 26, 43, .28);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
}
.btn--ghost::before { /* gold fill that wipes in */
  content: ""; position: absolute; inset: 0; z-index: -1; border-radius: inherit;
  background: linear-gradient(110deg, #C8914F, #F0D29B 50%, #D4A462);
  clip-path: inset(0 100% 0 0 round 999px);
  transition: clip-path .6s var(--ease-out);
}
.btn--ghost:hover { color: var(--navy); border-color: transparent; transform: translateY(-2px); }
.btn--ghost:hover::before { clip-path: inset(0 0 0 0 round 999px); }
.on-bone .btn--ghost { color: var(--navy); border-color: rgba(6, 43, 64, .32); background: transparent; -webkit-backdrop-filter: none; backdrop-filter: none; }
.on-bone .btn--ghost::before { background: linear-gradient(110deg, #0E3D5A, var(--navy)); }
.on-bone .btn--ghost:hover { color: var(--ivory); border-color: var(--navy); }

.btn--navy {
  color: var(--ivory);
  background: linear-gradient(180deg, #11425F, var(--navy));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .14), 0 16px 32px -16px rgba(6, 43, 64, .7);
}
.btn--navy::before {
  content: ""; position: absolute; inset: 3px; z-index: 1; border-radius: inherit; pointer-events: none;
  border: 1px solid rgba(217, 171, 111, .5);
}
.btn--navy:hover { transform: translateY(-2px); box-shadow: inset 0 1px 0 rgba(255, 255, 255, .14), 0 22px 40px -16px rgba(6, 43, 64, .8); }
.btn--navy .ic { color: var(--gold-hi); }

.btn--sm { --h: 44px; padding: 0 24px; font-size: .68rem; }

.btn-link {
  background: none; border: 0; padding: 4px 0;
  font-weight: 600; font-size: .92rem; color: var(--ink-soft);
  text-decoration: underline; text-underline-offset: 4px; text-decoration-color: rgba(6, 43, 64, .3);
}
.btn-link:hover { color: var(--navy); text-decoration-color: var(--gold); }

/* ---------- Small shared bits ---------- */
.dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); flex: none; }
.dot--live { background: var(--live); box-shadow: 0 0 0 0 rgba(111, 211, 160, .6); animation: pulse 2s infinite; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(111, 211, 160, .55); }
  70% { box-shadow: 0 0 0 9px rgba(111, 211, 160, 0); }
  100% { box-shadow: 0 0 0 0 rgba(111, 211, 160, 0); }
}
.bar { display: block; height: 6px; border-radius: var(--pill); background: rgba(248, 242, 231, .14); overflow: hidden; }
.bar i {
  display: block; height: 100%; width: calc(var(--p, .5) * 100%);
  border-radius: inherit; background: linear-gradient(90deg, var(--gold-lo), var(--gold-hi));
  transform-origin: left; transform: scaleX(0); transition: transform 1.4s var(--ease-out) .35s, width .5s var(--ease-out);
}
.bar--lg { height: 8px; }
.is-in .bar i, html:not(.js) .bar i { transform: scaleX(1); }
.on-bone .bar { background: rgba(6, 43, 64, .1); }

.float-chip {
  position: absolute; top: 26px; right: 4%; z-index: 2;
  display: inline-flex; align-items: center; gap: 10px; padding: 11px 16px; border-radius: var(--pill);
  background: rgba(6, 26, 43, .78); color: var(--ivory); border: 1px solid rgba(248, 242, 231, .14);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  font-size: .82rem; font-weight: 600; box-shadow: var(--shadow-pop);
  animation: float 6s ease-in-out infinite;
}
.float-chip .ic { width: 17px; height: 17px; color: var(--gold); }
.on-bone .float-chip { background: rgba(255, 253, 248, .94); color: var(--navy); border-color: var(--line-light); box-shadow: 0 20px 40px -18px rgba(6, 43, 64, .35); }
.on-bone .float-chip .ic { color: var(--gold-ink); }
@keyframes float { 50% { transform: translateY(-10px); } }

/* Icon chips (feature lists) */
.feats { list-style: none; margin: 28px 0 0; padding: 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.feats li {
  display: inline-flex; align-items: center; gap: 9px; padding: 11px 17px; border-radius: var(--pill);
  background: var(--paper); border: 1px solid var(--line-light);
  font-size: .86rem; font-weight: 600; color: var(--navy);
}
.feats .ic { width: 17px; height: 17px; color: var(--gold-ink); }
.feats--dark li { background: rgba(248, 242, 231, .05); border-color: var(--line-dark); color: var(--ivory); }
.feats--dark .ic { color: var(--gold); }

/* Segmented control */
.seg { position: relative; }
.seg input { position: absolute; inset: 0; margin: 0; opacity: 0; cursor: pointer; }
.seg span { display: inline-flex; align-items: center; height: 38px; padding: 0 18px; border-radius: var(--pill); font: 600 .8rem/1 var(--f-sans); color: var(--ink-soft); white-space: nowrap; transition: background-color .2s, color .2s; }
.seg input:checked + span { background: var(--navy); color: var(--ivory); }
.seg input:focus-visible + span { outline: 2px solid var(--gold); outline-offset: 2px; }

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: fixed; inset: 0 0 auto; z-index: 70;
  height: var(--header-h);
  border-bottom: 1px solid transparent;
  transition: transform .4s var(--ease-out), background-color .3s, border-color .3s, -webkit-backdrop-filter .3s, backdrop-filter .3s;
}
.site-header.is-solid {
  background: rgba(6, 26, 43, .88);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line-dark);
}
.site-header.is-hidden { transform: translateY(-100%); }
.header__inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.brand { display: inline-flex; align-items: center; gap: 12px; flex: none; }
.brand__mark { width: 42px; height: 42px; border-radius: 11px; background: #fff; box-shadow: 0 6px 16px rgba(0, 0, 0, .28); }
.brand__word { width: auto; height: 30px; }
.brand--lg .brand__mark { width: 52px; height: 52px; border-radius: 13px; }
.brand--lg .brand__word { height: 38px; }

.nav { display: flex; gap: clamp(18px, 2.2vw, 32px); }
.nav a { position: relative; padding: 6px 0; font-size: .9rem; font-weight: 500; color: rgba(248, 242, 231, .84); transition: color .2s; }
.nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease-out);
}
.nav a:hover { color: var(--ivory); }
.nav a:hover::after, .nav a.is-active::after { transform: scaleX(1); }
.nav a.is-active { color: var(--ivory); }

.header__actions { display: flex; align-items: center; gap: 10px; }

.menu-toggle {
  display: none; width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid var(--line-dark-2); background: transparent; position: relative;
}
.menu-toggle span {
  position: absolute; left: 12px; right: 12px; height: 1.5px; background: var(--ivory); border-radius: 2px;
  transition: transform .3s var(--ease-out), top .3s var(--ease-out);
}
.menu-toggle span:first-child { top: 16px; }
.menu-toggle span:last-child { top: 24px; }
.menu-toggle[aria-expanded="true"] span:first-child { top: 20px; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { top: 20px; transform: rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 65;
  display: flex; flex-direction: column; justify-content: space-between; gap: 32px;
  padding: calc(var(--header-h) + 20px) var(--gutter) max(28px, env(safe-area-inset-bottom));
  background: radial-gradient(120% 60% at 100% 0%, rgba(25, 74, 83, .5), transparent 60%), var(--night);
  opacity: 0; visibility: hidden; transform: translateY(-10px);
  transition: opacity .3s, transform .35s var(--ease-out), visibility 0s .35s;
  overflow-y: auto;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; transform: none; transition: opacity .3s, transform .35s var(--ease-out); }
.mobile-menu nav a {
  display: block; padding: 13px 0; border-bottom: 1px solid var(--line-dark);
  font: 500 clamp(1.71rem, 6.38vw, 2.39rem)/1.2 var(--f-display);
}
.mobile-menu__foot { display: grid; gap: 12px; }
.mobile-menu__foot .btn { width: 100%; }
body.menu-open { overflow: hidden; }

/* =========================================================
   HERO — video, minimal copy, and a withjoy-style scroll scene
   On wide screens the section is taller than the viewport: the stage
   pins, the video settles into a framed card and product moments
   float in around it. main.js drives the progress.
   ========================================================= */
.hero { position: relative; background: var(--night); }
.hero__stage {
  position: relative; overflow: hidden;
  height: 100svh; min-height: 600px;
  display: grid; place-items: center;
}
.hero--scene { height: calc(100svh + 120svh); }
.hero--scene .hero__stage { position: sticky; top: 0; }
.hero__media { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero__video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  background: var(--night) url("../img/hero-poster.jpg") center / cover no-repeat;
}
.hero__scrim {
  position: absolute; inset: 0;
  background:
    radial-gradient(80% 75% at 50% 50%, rgba(6, 26, 43, .38), rgba(6, 26, 43, .78)),
    linear-gradient(180deg, rgba(6, 26, 43, .55) 0%, rgba(6, 26, 43, 0) 24%);
}
.hero__inner {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding-top: calc(var(--header-h) * .6);
}
.hero__title {
  max-width: 14ch; margin-bottom: 22px;
  font: 300 clamp(2.9rem, 1.4rem + 5vw, 6rem)/1 var(--f-light);
  letter-spacing: -.012em; color: var(--ivory); text-wrap: balance;
  font-variant-numeric: lining-nums;
}
.hero__title em { font-style: italic; font-weight: 300; color: var(--gold-hi); }
.hero__lead { max-width: 30rem; margin-bottom: 36px; font: 400 clamp(.95rem, .9rem + .2vw, 1.06rem)/1.6 var(--f-sans); letter-spacing: .01em; color: rgba(248, 242, 231, .82); }
.hero__ctas { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 16px 30px; }
.hero__link {
  padding-bottom: 5px; border-bottom: 1px solid rgba(248, 242, 231, .45);
  font: 500 .86rem/1 var(--f-sans); letter-spacing: .02em; color: var(--ivory);
  transition: color .2s, border-color .2s;
}
.hero__link:hover { color: var(--gold-hi); border-color: var(--gold); }
.hero__inner > * { animation: hero-rise 1.1s var(--ease-out) both; }
.hero__inner > :nth-child(1) { animation-delay: .15s; }
.hero__inner > :nth-child(2) { animation-delay: .35s; }
.hero__inner > :nth-child(3) { animation-delay: .5s; }
@keyframes hero-rise { from { opacity: 0; transform: translateY(24px); } }

/* Product moments that float in as the video settles into its frame */
.hero__collage, .hero__after { display: none; }
.hero--scene .hero__collage { display: block; position: absolute; inset: 0; z-index: 3; pointer-events: none; }
.snip {
  --cp: 0;
  position: absolute; display: flex; align-items: center; gap: 12px; width: 230px; padding: 14px 16px;
  border-radius: 16px; background: rgba(255, 253, 248, .97); color: var(--navy);
  box-shadow: 0 30px 60px -22px rgba(0, 0, 0, .6);
  opacity: var(--cp);
  transform: translate3d(calc(var(--dx, 0px) * (1 - var(--cp))), calc(var(--dy, 30px) * (1 - var(--cp))), 0);
}
.snip b { display: block; font-size: .86rem; font-weight: 600; line-height: 1.3; }
.snip div span { display: block; font-size: .74rem; color: var(--ink-soft); }
.snip__avatar, .snip__icon {
  width: 38px; height: 38px; flex: none; display: grid; place-items: center; border-radius: 50%;
  background: var(--grad-gold-btn); color: var(--navy); font: 700 .7rem/1 var(--f-sans);
}
.snip__icon { background: rgba(6, 43, 64, .08); color: var(--gold-ink); }
.snip__icon .ic { width: 18px; height: 18px; }
.snip--save, .snip--count { display: block; text-align: center; }
.snip__script { font: 400 1.5rem/1 var(--f-script); color: var(--gold-lo); }
.snip__names { margin-top: 6px; font: 400 1.25rem/1.1 var(--f-light); }
.snip__date { margin-top: 6px; font: 600 .62rem/1 var(--f-sans); letter-spacing: .22em; color: var(--ink-soft); }
.snip__kicker { font: 600 .6rem/1 var(--f-sans); letter-spacing: .2em; text-transform: uppercase; color: var(--gold-ink); }
.snip__big { margin: 6px 0 10px; font: 400 2.2rem/1 var(--f-light); font-variant-numeric: lining-nums; }
.snip__big span { margin-left: 6px; font: 500 .74rem/1 var(--f-sans); color: var(--ink-soft); }
.snip__bar { display: block; height: 5px; border-radius: 5px; background: rgba(6, 43, 64, .1); overflow: hidden; }
.snip__bar i { display: block; width: 79%; height: 100%; border-radius: inherit; background: var(--grad-gold-btn); }
.hero--scene .hero__after {
  --ap: 0;
  display: block; position: absolute; left: 0; right: 0; bottom: 13%; z-index: 3;
  padding-inline: var(--gutter); text-align: center;
  font: 300 clamp(1.4rem, 1rem + 1.1vw, 2.1rem)/1.3 var(--f-light); color: var(--ivory);
  opacity: var(--ap); transform: translateY(calc(18px * (1 - var(--ap))));
}

/* =========================================================
   OCCASIONS · photo tiles
   ========================================================= */
.bento {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: clamp(210px, 19vw, 280px); gap: 16px;
}
.tile {
  position: relative; isolation: isolate; overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end; align-items: flex-start;
  padding: clamp(18px, 2vw, 28px);
  border-radius: var(--radius-lg); background: var(--night-2); color: var(--ivory);
}
.tile--xl { grid-column: span 2; grid-row: span 2; }
.tile--wide { grid-column: span 2; }
.tile > img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease-out); }
.tile::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(6, 26, 43, 0) 30%, rgba(6, 26, 43, .4) 58%, rgba(6, 26, 43, .92) 100%);
}
.tile:hover > img, .tile:focus-visible > img { transform: scale(1.06); }
.tile__kicker { margin-bottom: 8px; font: 600 .66rem/1.3 var(--f-sans); letter-spacing: .22em; text-transform: uppercase; color: var(--gold-hi); }
.tile h3 { max-width: 20ch; font: 500 clamp(1.42rem, 1.14rem + 0.912vw, 1.99rem)/1.15 var(--f-display); text-wrap: balance; }
.tile--xl h3 { max-width: 16ch; font-size: clamp(1.7rem, 1.2rem + 1.6vw, 2.6rem); }
.tile__more { overflow: hidden; }
.tile__tags { display: flex; flex-wrap: wrap; gap: 6px; padding-top: 14px; }
.tile__tags span {
  padding: 6px 11px; border-radius: var(--pill);
  background: rgba(248, 242, 231, .14); border: 1px solid rgba(248, 242, 231, .2);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  font-size: .7rem; font-weight: 600;
}
.tile__cta {
  position: absolute; top: clamp(14px, 1.6vw, 22px); right: clamp(14px, 1.6vw, 22px);
  padding: 9px 14px; border-radius: var(--pill);
  background: rgba(6, 26, 43, .55); border: 1px solid rgba(217, 171, 111, .55);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  font: 600 .6rem/1 var(--f-sans); letter-spacing: .18em; text-transform: uppercase; color: var(--gold-hi);
  transition: opacity .35s, transform .35s var(--ease-out);
}
@media (hover: hover) {
  .tile__more { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .45s var(--ease-out); }
  .tile__more > * { min-height: 0; opacity: 0; transition: opacity .35s; }
  .tile:hover .tile__more, .tile:focus-visible .tile__more { grid-template-rows: 1fr; }
  .tile:hover .tile__more > *, .tile:focus-visible .tile__more > * { opacity: 1; }
  .tile__cta { opacity: 0; transform: translateY(-6px); }
  .tile:hover .tile__cta, .tile:focus-visible .tile__cta { opacity: 1; transform: none; }
}

/* =========================================================
   CORPORATE (bone)
   ========================================================= */
.corp-mosaic { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); grid-auto-rows: clamp(180px, 16vw, 240px); gap: 14px; }
.ctile { position: relative; isolation: isolate; overflow: hidden; border-radius: var(--radius-lg); background: var(--bone-2); }
.ctile--xl { grid-column: span 2; grid-row: span 2; }
.ctile--wide { grid-column: span 2; }
.ctile img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease-out); }
.ctile:hover img { transform: scale(1.06); }
.ctile::after { content: ""; position: absolute; inset: 38% 0 0; background: linear-gradient(transparent, rgba(6, 26, 43, .84)); pointer-events: none; }
.ctile figcaption { position: absolute; left: 18px; right: 18px; bottom: 16px; z-index: 1; display: grid; gap: 5px; color: var(--ivory); }
.ctile figcaption b { font: 500 clamp(1.2rem, 1.05rem + 0.513vw, 1.54rem)/1.2 var(--f-display); }
.ctile--xl figcaption { left: 26px; bottom: 24px; }
.ctile--xl figcaption b { font-size: clamp(1.5rem, 1.1rem + 1.2vw, 2.2rem); }
.ctile figcaption span { font: 600 .62rem/1.4 var(--f-sans); letter-spacing: .16em; text-transform: uppercase; color: var(--gold-hi); }
@media (hover: hover) {
  .ctile figcaption span { opacity: 0; transform: translateY(6px); transition: opacity .35s, transform .35s var(--ease-out); }
  .ctile:hover figcaption span { opacity: 1; transform: none; }
  .ctile--xl figcaption span { opacity: 1; transform: none; }
}

/* Badge studio */
.studio {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  margin-top: 20px; overflow: hidden;
  border-radius: var(--radius-xl); background: var(--paper); border: 1px solid var(--line-light);
  box-shadow: 0 40px 80px -50px rgba(6, 43, 64, .45);
}
.studio__panel { display: flex; flex-direction: column; gap: 20px; min-width: 0; padding: clamp(24px, 3.4vw, 44px); }
.studio__kicker { display: inline-flex; align-items: center; gap: 10px; font: 600 .68rem/1 var(--f-sans); letter-spacing: .2em; text-transform: uppercase; color: var(--gold-ink); }
.studio__title { font: 500 clamp(1.82rem, 1.37rem + 1.37vw, 2.62rem)/1.1 var(--f-display); color: var(--navy); text-wrap: balance; }
.studio__fields { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.sfield { display: grid; gap: 8px; min-width: 0; }
.sfield span { font: 600 .66rem/1 var(--f-sans); letter-spacing: .16em; text-transform: uppercase; color: var(--ink-soft); }
.sfield input {
  width: 100%; height: 50px; padding: 0 16px; border-radius: 12px;
  border: 1px solid var(--line-light); background: #fff; color: var(--ink);
  font: 500 1rem var(--f-sans); transition: border-color .2s, box-shadow .2s;
}
.sfield input:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 4px rgba(217, 171, 111, .22); }
.studio__set { min-width: 0; margin: 0; padding: 0; border: 0; }
.studio__set legend { padding: 0; margin-bottom: 10px; font: 600 .66rem/1 var(--f-sans); letter-spacing: .16em; text-transform: uppercase; color: var(--ink-soft); }
.pick { display: flex; flex-wrap: wrap; gap: 8px; }
.pick label { position: relative; }
.pick input { position: absolute; inset: 0; margin: 0; opacity: 0; cursor: pointer; }
.pick span {
  display: inline-flex; align-items: center; height: 38px; padding: 0 16px; border-radius: var(--pill);
  border: 1px solid rgba(6, 43, 64, .2); font-size: .84rem; font-weight: 500; color: var(--navy);
  transition: background-color .2s, color .2s, border-color .2s;
}
.pick label:hover span { border-color: var(--navy); }
.pick input:checked + span { background: var(--navy); border-color: var(--navy); color: var(--ivory); font-weight: 600; }
.pick input:focus-visible + span { outline: 2px solid var(--gold); outline-offset: 3px; }
.studio__foot { display: flex; align-items: center; flex-wrap: wrap; gap: 18px 24px; margin-top: auto; padding-top: 22px; border-top: 1px solid var(--line-light); }
.studio__stats { flex: 1 1 170px; }
.studio__stats p { margin-bottom: 8px; font-size: .86rem; color: var(--ink-soft); }
.studio__stats b { margin-right: 2px; font: 500 1.71rem/1 var(--f-display); color: var(--navy); font-variant-numeric: lining-nums; }

.studio__stage {
  position: relative; isolation: isolate; overflow: hidden;
  display: flex; flex-direction: column; align-items: center;
  min-height: 580px; padding: 0 24px 48px; background: var(--night);
}
.studio__stage > img {
  position: absolute; top: -12px; left: -12px; z-index: -2;
  width: calc(100% + 24px); height: calc(100% + 24px); max-width: none; object-fit: cover;
  filter: blur(6px) saturate(1.1);
}
.studio__stage::after { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(70% 60% at 50% 50%, rgba(6, 26, 43, .35), rgba(6, 26, 43, .84)); }
.lanyard { position: relative; flex: none; width: 120px; height: 112px; }
.lanyard span {
  position: absolute; top: -12px; width: 15px; height: 134px; border-radius: 3px;
  background: repeating-linear-gradient(180deg, #D9AB6F 0 9px, #B98043 9px 11px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, .45);
}
.lanyard span:first-child { left: 20px; transform: rotate(-15deg); transform-origin: top center; }
.lanyard span:last-child { right: 20px; transform: rotate(15deg); transform-origin: top center; }
.lanyard::after {
  content: ""; position: absolute; left: 50%; bottom: -10px; z-index: 2; width: 22px; height: 28px; margin-left: -11px;
  border-radius: 7px; background: linear-gradient(180deg, #F1F4F6, #A8B4BE); box-shadow: 0 4px 10px rgba(0, 0, 0, .45);
}

.pass {
  --p1: #0B2A40; --p2: #1D5270; --pa: #E7C286;
  --r-bg: rgba(6, 43, 64, .08); --r-ink: var(--navy);
  position: relative; z-index: 1; width: min(300px, 100%);
  border-radius: 20px; overflow: hidden; background: #FFFDF8; color: var(--navy);
  box-shadow: 0 50px 90px -30px rgba(0, 0, 0, .8);
  transform-origin: 50% -40px; animation: sway 7s ease-in-out infinite;
}
@keyframes sway { 0%, 100% { rotate: -1.4deg; } 50% { rotate: 1.4deg; } }
.pass[data-theme="gala"] { --p1: #0E1116; --p2: #30343C; --pa: #D9AB6F; }
.pass[data-theme="launch"] { --p1: #123B43; --p2: #2B7A83; --pa: #F3D6A0; }
.pass[data-theme="seminar"] { --p1: #7A3C33; --p2: #C27A6C; --pa: #FFE9DA; }
.pass[data-role="Speaker"] { --r-bg: #F6DDD4; --r-ink: #9C4F43; }
.pass[data-role="VIP"] { --r-bg: linear-gradient(110deg, #C8914F, #F0D29B 50%, #D4A462); --r-ink: var(--navy); }
.pass[data-role="Press"] { --r-bg: #D5ECE9; --r-ink: #174852; }
.pass__slot { position: absolute; top: 11px; left: 50%; z-index: 2; width: 44px; height: 8px; margin-left: -22px; border-radius: 5px; background: rgba(0, 0, 0, .38); box-shadow: inset 0 1px 2px rgba(0, 0, 0, .5); }
.pass__head {
  position: relative; padding: 36px 22px 20px; color: #fff;
  background: radial-gradient(120% 90% at 100% 0%, rgba(255, 255, 255, .16), transparent 60%), linear-gradient(135deg, var(--p2), var(--p1));
}
.pass__mark {
  position: absolute; top: 30px; right: 20px; width: 40px; height: 40px; display: grid; place-items: center;
  border-radius: 12px; border: 1px solid rgba(255, 255, 255, .35);
  font: italic 600 1.03rem/1 var(--f-display); color: var(--pa);
}
.pass__event { max-width: 11em; font: 600 1.46rem/1.15 var(--f-display); }
.pass__meta { margin-top: 10px; font: 600 .6rem/1.3 var(--f-sans); letter-spacing: .18em; text-transform: uppercase; color: var(--pa); }
.pass__body { padding: 22px 22px 18px; }
.pass__name { font: 500 2.11rem/1.05 var(--f-display); overflow-wrap: anywhere; }
.pass__org { margin-top: 6px; font-size: .86rem; font-weight: 500; color: var(--ink-soft); overflow-wrap: anywhere; }
.pass__role {
  display: inline-block; margin-top: 14px; padding: 7px 14px; border-radius: var(--pill);
  background: var(--r-bg); color: var(--r-ink);
  font: 700 .6rem/1 var(--f-sans); letter-spacing: .2em; text-transform: uppercase;
}
.pass__foot { display: flex; align-items: center; gap: 16px; padding: 16px 22px 22px; border-top: 1px dashed #E3D7C3; }
.pass__qr { position: relative; width: 84px; height: 84px; flex: none; color: var(--navy); }
.pass__qr svg { width: 100%; height: 100%; }
.pass__qr::after {
  content: ""; position: absolute; left: -4px; right: -4px; top: 0; height: 3px; border-radius: 3px;
  background: var(--live); box-shadow: 0 0 14px 2px rgba(111, 211, 160, .85); opacity: 0;
}
.pass.is-scanning .pass__qr::after { animation: scan .9s ease-in-out 1; }
@keyframes scan { 0% { transform: translateY(0); opacity: 1; } 50% { transform: translateY(81px); opacity: 1; } 100% { transform: translateY(0); opacity: 0; } }
.pass__gate b { display: block; font: 500 1.42rem/1 var(--f-display); }
.pass__gate span { font-size: .74rem; color: var(--ink-soft); }
.pass__stamp {
  position: absolute; right: 14px; top: 47%; z-index: 3; padding: 8px 12px;
  border: 2px solid #2E9E6A; border-radius: 10px; background: rgba(255, 253, 248, .92); color: #2E9E6A;
  text-align: center; font: 700 .6rem/1.35 var(--f-sans); letter-spacing: .16em; text-transform: uppercase;
  opacity: 0; transform: rotate(-10deg) scale(1.5); pointer-events: none;
  transition: opacity .25s, transform .45s var(--ease-out);
}
.pass__stamp span { font: 500 1.14rem/1.2 var(--f-display); letter-spacing: 0; }
.pass.is-checked .pass__stamp { opacity: 1; transform: rotate(-10deg) scale(1); }

/* =========================================================
   WEDDINGS
   ========================================================= */
.weddings { background: radial-gradient(55% 45% at 100% 0%, rgba(212, 135, 123, .12), transparent 70%), var(--night); }
.weddings .ctile { background: var(--night-2); }

/* Wedding timeline: pick a date, see when everything goes out */
.tl {
  display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  margin-top: 20px; overflow: hidden;
  border-radius: var(--radius-xl); background: var(--paper); color: var(--navy);
  box-shadow: 0 40px 90px -50px rgba(0, 0, 0, .8);
}
.tl__panel { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; min-width: 0; padding: clamp(24px, 3.4vw, 44px); }
.tl__panel .sfield { width: min(100%, 320px); }
.tl__count { display: flex; align-items: baseline; gap: 12px; margin-top: 6px; }
.tl__count b {
  padding-right: .06em;
  font: 500 clamp(3.88rem, 2.96rem + 3.42vw, 5.7rem)/.9 var(--f-display); font-variant-numeric: lining-nums;
  background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.tl__count span { font: 600 .7rem/1.2 var(--f-sans); letter-spacing: .2em; text-transform: uppercase; color: var(--ink-soft); }
.tl__when { margin-top: -8px; font: italic 500 1.31rem/1.3 var(--f-display); color: var(--navy); }
.tl__panel .btn { margin-top: auto; }
.tl__steps { list-style: none; margin: 0; padding: clamp(18px, 2.6vw, 32px) clamp(20px, 3vw, 40px); background: linear-gradient(160deg, #F4EBDC, #EADCC4); }
.tl__steps li { position: relative; display: grid; grid-template-columns: 40px minmax(0, 1fr) auto; align-items: center; gap: 14px; padding: 9px 0; }
.tl__steps li::before { content: ""; position: absolute; left: 19.5px; top: 0; bottom: 0; width: 1px; background: rgba(138, 94, 38, .28); }
.tl__steps li:first-child::before { top: 50%; }
.tl__steps li:last-child::before { bottom: 50%; }
.tl__icon {
  position: relative; z-index: 1; width: 40px; height: 40px; display: grid; place-items: center; border-radius: 50%;
  background: var(--paper); border: 1px solid rgba(138, 94, 38, .32); color: var(--gold-ink);
  transition: background-color .3s, color .3s, box-shadow .3s;
}
.tl__icon .ic { width: 18px; height: 18px; }
.tl__steps b { display: block; font-size: .92rem; font-weight: 600; line-height: 1.3; }
.tl__steps time { display: block; font-size: .78rem; color: var(--ink-soft); font-variant-numeric: lining-nums; }
.tl__steps em { font: 600 .6rem/1.2 var(--f-sans); font-style: normal; letter-spacing: .16em; text-transform: uppercase; text-align: right; white-space: nowrap; color: var(--gold-ink); }
.tl__steps li.is-day .tl__icon { background: var(--navy); border-color: var(--navy); color: var(--gold-hi); }
.tl__steps li.is-next .tl__icon { background: var(--grad-gold-btn); border-color: transparent; color: var(--navy); box-shadow: 0 0 0 5px rgba(217, 171, 111, .22); }
.tl__steps li.is-now em { color: var(--rose-lo); }
.tl__steps li.is-now .tl__icon { border-style: dashed; }

/* =========================================================
   SEMINARS
   ========================================================= */
.seminars { background: radial-gradient(60% 50% at 0% 100%, rgba(25, 74, 83, .35), transparent 70%), var(--night); }
.seminars__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(36px, 5vw, 80px); align-items: center; }
.sem-collage { position: relative; display: grid; grid-template-columns: 1.25fr 1fr; grid-template-rows: 1fr 1fr; gap: 14px; height: clamp(460px, 48vw, 660px); }
.sem-collage figure { overflow: hidden; border-radius: var(--radius-lg); background: var(--night-2); }
.sem-collage__main { grid-row: span 2; }
.sem-collage img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease-out); }
.sem-collage figure:hover img { transform: scale(1.05); }
.float-chip.sem-collage__chip { top: auto; right: auto; left: 16px; bottom: 18px; }
.seminars__copy .section-head { margin-bottom: 28px; }

.agenda {
  overflow: hidden; border-radius: var(--radius-lg);
  background: var(--night-2); border: 1px solid var(--line-dark);
  box-shadow: 0 40px 80px -50px rgba(0, 0, 0, .8);
}
.agenda__head { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 22px; border-bottom: 1px solid var(--line-dark); background: rgba(248, 242, 231, .03); }
.agenda__kicker { margin-bottom: 7px; font: 600 .64rem/1 var(--f-sans); letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }
.agenda__title { font: 500 1.37rem/1.2 var(--f-display); }
.agenda__mine {
  flex: none; display: grid; justify-items: center; min-width: 76px; padding: 10px 12px; border-radius: 14px;
  background: rgba(217, 171, 111, .12); font: 600 .58rem/1 var(--f-sans); letter-spacing: .18em; text-transform: uppercase; color: var(--gold-hi);
}
.agenda__mine b { margin-bottom: 6px; font: 500 1.82rem/1 var(--f-display); letter-spacing: 0; color: var(--ivory); font-variant-numeric: lining-nums; }
.agenda__mine.is-bump b { animation: bump .5s var(--ease-out); }
@keyframes bump { 40% { scale: 1.3; } }
.agenda__list { list-style: none; margin: 0; padding: 4px 0; }
.session {
  display: grid; grid-template-columns: 50px minmax(0, 1fr) auto; align-items: center; gap: 14px;
  padding: 14px 22px; border-bottom: 1px solid var(--line-dark); transition: background-color .3s;
}
.session:last-child { border-bottom: 0; }
.session time { font: 500 1.12rem/1 var(--f-display); color: var(--gold-hi); font-variant-numeric: lining-nums tabular-nums; }
.session__info { display: grid; gap: 6px; min-width: 0; }
.session__info b { font-size: .92rem; font-weight: 600; line-height: 1.3; }
.session__info [data-ag-status] { font-size: .76rem; color: var(--mist); }
.session__bar { display: block; height: 4px; border-radius: 4px; background: rgba(248, 242, 231, .1); overflow: hidden; }
.session__bar i { display: block; height: 100%; width: calc(var(--p, .5) * 100%); border-radius: inherit; background: linear-gradient(90deg, var(--teal-glow), var(--live)); transition: width .5s var(--ease-out); }
.session.is-full .session__bar i { background: linear-gradient(90deg, var(--rose-lo), var(--rose-hi)); }
.session.is-mine { background: rgba(217, 171, 111, .07); }
.session__btn {
  height: 38px; padding: 0 16px; border-radius: var(--pill);
  border: 1px solid rgba(217, 171, 111, .55); background: transparent; color: var(--gold-hi);
  font: 600 .64rem/1 var(--f-sans); letter-spacing: .14em; text-transform: uppercase; white-space: nowrap;
  transition: background-color .25s, color .25s, border-color .25s;
}
.session__btn:hover { border-color: var(--gold); background: rgba(217, 171, 111, .12); }
.session__btn[aria-pressed="true"] { background: var(--grad-gold); border-color: transparent; color: var(--navy); }
.session.is-waiting .session__btn[aria-pressed="true"] { background: rgba(212, 135, 123, .2); border-color: var(--rose); color: var(--rose-hi); }
.agenda__foot { display: flex; align-items: center; gap: 10px; padding: 16px 22px; border-top: 1px solid var(--line-dark); font-size: .82rem; color: var(--mist); }
.agenda__foot .ic { width: 18px; height: 18px; color: var(--gold); }
.seminars__cta { margin-top: 34px; text-align: center; }

/* =========================================================
   PHONE FRAME (event-website demo)
   ========================================================= */
.phone {
  position: relative; z-index: 1;
  width: var(--pw, 27em); aspect-ratio: 9 / 18.6; padding: .9em;
  border-radius: 4.6em;
  background: linear-gradient(145deg, #1D4661 0%, #08202F 55%, #0C2C42 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, .1),
    inset 0 0 0 .35em rgba(0, 0, 0, .25),
    0 50px 90px -30px rgba(2, 12, 20, .75),
    0 24px 40px -24px rgba(2, 12, 20, .6);
}
.phone::before { /* side button */
  content: ""; position: absolute; right: -.3em; top: 22%; width: .3em; height: 8%;
  border-radius: 0 .3em .3em 0; background: #0B2A40;
}
.phone__screen {
  position: relative; height: 100%; overflow: hidden;
  border-radius: 3.8em; background: #0B2A40;
  container-type: inline-size;
}
.phone__island {
  position: absolute; top: 1.1em; left: 50%; z-index: 5;
  width: 8.6em; height: 2.5em; border-radius: 2em; background: #03101A; transform: translateX(-50%);
}

@keyframes twinkle { 0%, 100% { transform: scale(1) rotate(0); opacity: 1; } 50% { transform: scale(.72) rotate(18deg); opacity: .7; } }

/* =========================================================
   WHAT GUESTS GET (bone, with dark cards)
   ========================================================= */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.fcard {
  display: flex; flex-direction: column;
  padding: 28px; border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #0C2C42, #081F31);
  border: 1px solid rgba(6, 43, 64, .2); color: var(--ivory);
  box-shadow: 0 30px 60px -40px rgba(6, 43, 64, .6);
  transition: border-color .3s, transform .4s var(--ease-out);
}
.fcard:hover { transform: translateY(-4px); }
.fcard h3 { font: 500 1.6rem/1.25 var(--f-display); margin-bottom: 20px; }
.fcard__viz {
  position: relative; height: 220px; margin-bottom: 20px; overflow: hidden;
  display: grid; place-items: center;
  border-radius: 14px; border: 1px solid var(--line-dark);
  background: radial-gradient(100% 80% at 50% 0%, rgba(111, 184, 177, .08), transparent 70%), rgba(6, 26, 43, .55);
}
.fcard__viz--flush { place-items: stretch; }
.fcard__label { font: 600 .68rem/1.4 var(--f-sans); letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }

/* Envelope */
.env { position: relative; width: 190px; height: 122px; margin-top: 72px; perspective: 700px; }
.env__back { position: absolute; inset: 0; border-radius: 8px; background: #103640; }
.env__letter {
  position: absolute; left: 12px; right: 12px; bottom: 8px; height: 108px; z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 14px 12px;
  border-radius: 6px; background: var(--cream);
  box-shadow: inset 0 0 0 1px rgba(180, 120, 60, .35), inset 0 0 0 5px var(--cream), inset 0 0 0 6px rgba(180, 120, 60, .25);
  animation: env-letter 6.5s var(--ease-inout) infinite;
}
.env__script { font: 400 1.65rem/1 var(--f-script); color: var(--gold-lo); margin-top: 4px; }
.env__rule { width: 66%; height: 2px; border-radius: 2px; background: rgba(180, 120, 60, .3); }
.env__rule--s { width: 42%; }
.env__pocket {
  position: absolute; inset: 0; z-index: 2; border-radius: 8px;
  background: linear-gradient(165deg, #22616B, #194A53 60%, #15414A);
  clip-path: polygon(0 36%, 50% 70%, 100% 36%, 100% 100%, 0 100%);
}
.env__flap {
  position: absolute; left: 0; right: 0; top: 0; height: 72%; z-index: 3;
  background: linear-gradient(180deg, #286C77, #1C535D);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  transform-origin: 50% 0;
  animation: env-flap 6.5s var(--ease-inout) infinite;
}
.env__seal {
  position: absolute; left: 50%; top: 72%; z-index: 4;
  width: 30px; height: 30px; margin: -17px 0 0 -15px; border-radius: 50%;
  display: grid; place-items: center; color: #FFF3EE;
  background: radial-gradient(circle at 35% 30%, var(--rose-hi), var(--rose-lo));
  box-shadow: 0 3px 8px rgba(0, 0, 0, .3);
  animation: env-seal 6.5s var(--ease-inout) infinite;
}
.env__seal .ic { width: 14px; height: 14px; }
@keyframes env-flap {
  0%, 12% { transform: rotateX(0); z-index: 3; }
  24%, 78% { transform: rotateX(180deg); z-index: 0; }
  90%, 100% { transform: rotateX(0); z-index: 3; }
}
@keyframes env-letter {
  0%, 22% { transform: translateY(0); }
  38%, 68% { transform: translateY(-64px); }
  82%, 100% { transform: translateY(0); }
}
@keyframes env-seal {
  0%, 9% { opacity: 1; transform: scale(1); }
  15%, 86% { opacity: 0; transform: scale(.5); }
  94%, 100% { opacity: 1; transform: scale(1); }
}

/* RSVP widget (interactive) */
.w-rsvp { width: min(290px, 88%); display: grid; gap: 10px; }
.w-rsvp button { padding: 0; font-family: inherit; cursor: pointer; }
.w-rsvp__q { font: italic 500 1.31rem/1.2 var(--f-display); text-align: center; margin-bottom: 2px; }
.w-rsvp__opts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
.w-rsvp__opts button {
  display: flex; align-items: center; justify-content: center; height: 38px; border-radius: 10px;
  border: 1px solid var(--line-dark-2); background: transparent; font-size: .72rem; font-weight: 600; color: var(--mist);
  transition: background-color .2s, border-color .2s, color .2s;
}
.w-rsvp__opts button:hover { border-color: var(--gold); color: var(--ivory); }
.w-rsvp__opts .is-on, .w-rsvp__opts .is-on:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.w-rsvp__row { display: flex; align-items: center; justify-content: space-between; height: 40px; padding: 0 12px; border-radius: 10px; background: rgba(248, 242, 231, .05); font-size: .76rem; font-weight: 600; transition: opacity .3s; }
.w-rsvp__row em { font-style: normal; font-weight: 500; color: var(--mist); }
.w-rsvp.is-declined .w-rsvp__row { opacity: .35; pointer-events: none; }
.stepper { display: flex; align-items: center; gap: 12px; }
.stepper button {
  width: 24px; height: 24px; display: grid; place-items: center; border-radius: 50%;
  border: 1px solid var(--line-dark-2); background: transparent; color: var(--mist); font-size: .9rem; line-height: 1;
  transition: border-color .2s, color .2s;
}
.stepper button:hover { border-color: var(--gold); color: var(--gold-hi); }
.stepper button:disabled { opacity: .35; cursor: default; }
.stepper b { min-width: .8em; text-align: center; font: 600 1.08rem/1 var(--f-display); }
.pills { display: flex; gap: 5px; }
.pills button { font-size: .66rem; padding: 5px 8px; border-radius: 99px; border: 1px solid var(--line-dark-2); background: transparent; color: var(--mist); transition: background-color .2s, border-color .2s, color .2s; }
.pills button:hover { border-color: var(--rose); }
.pills .is-on { background: rgba(212, 135, 123, .22); border-color: var(--rose); color: var(--rose-hi); }

/* Countdown widget */
.w-count { text-align: center; }
.w-count__kicker { font: 400 1.9rem/1 var(--f-script); color: var(--gold-hi); margin-bottom: 14px; }
.w-count__grid { display: grid; grid-template-columns: repeat(4, 56px); gap: 8px; justify-content: center; }
.w-count__grid div { padding: 10px 0 8px; border-radius: 10px; background: rgba(248, 242, 231, .06); border: 1px solid var(--line-dark); }
.w-count__grid b { display: block; font: 500 1.65rem/1 var(--f-display); }
.w-count__grid span { display: block; margin-top: 6px; font-size: .55rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--mist); }
.w-count__date { margin-top: 14px; font-size: .68rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--mist); }

/* Map widget */
.w-map { position: relative; width: 100%; height: 100%; }
.w-map svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.w-map__route { animation: route 1.6s linear infinite; }
@keyframes route { to { stroke-dashoffset: -28; } }
.w-map__pin {
  position: absolute; left: 60%; top: 40%; width: 34px; height: 34px; margin: -34px 0 0 -17px;
  display: grid; place-items: center; color: var(--navy);
  background: var(--gold); border-radius: 50% 50% 50% 0; transform: rotate(-45deg);
  box-shadow: 0 6px 16px rgba(0, 0, 0, .4);
}
.w-map__pin .ic { width: 15px; height: 15px; transform: rotate(45deg); }
.w-map__pin::after {
  content: ""; position: absolute; left: -8px; bottom: -8px; width: 16px; height: 16px; border-radius: 50%;
  background: rgba(217, 171, 111, .45); animation: ping 2s ease-out infinite;
}
@keyframes ping { from { transform: scale(.4); opacity: 1; } to { transform: scale(2.4); opacity: 0; } }
.w-map__card {
  position: absolute; left: 12px; right: 12px; bottom: 12px;
  display: grid; grid-template-columns: 1fr auto; align-items: center; column-gap: 12px;
  padding: 10px 12px; border-radius: 12px;
  background: rgba(6, 26, 43, .82); border: 1px solid var(--line-dark);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
}
.w-map__card b { font-size: .78rem; font-weight: 600; }
.w-map__card span { grid-column: 1; font-size: .68rem; color: var(--mist); }
.w-map__card em { grid-row: 1 / span 2; grid-column: 2; font-style: normal; font-size: .7rem; font-weight: 700; padding: 8px 12px; border-radius: 99px; background: var(--gold); color: var(--navy); }

/* Programme widget */
.w-prog { list-style: none; margin: 0; padding: 0 0 0 4px; width: min(280px, 86%); position: relative; }
.w-prog::before { content: ""; position: absolute; left: 62px; top: 14px; bottom: 14px; width: 1px; background: var(--line-dark-2); }
.w-prog li { position: relative; display: flex; align-items: center; gap: 30px; padding: 9px 0; font-size: .82rem; color: var(--mist); }
.w-prog li::before { content: ""; position: absolute; left: 54px; width: 9px; height: 9px; border-radius: 50%; background: var(--night-3); border: 1px solid var(--line-dark-2); }
.w-prog time { width: 40px; font: 500 0.935rem/1 var(--f-display); color: var(--ivory); }
.w-prog .is-now { color: var(--ivory); font-weight: 600; }
.w-prog .is-now::before { background: var(--gold); border-color: var(--gold); box-shadow: 0 0 0 5px rgba(217, 171, 111, .2); }
.w-prog em { margin-left: auto; font-style: normal; font-size: .6rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; padding: 4px 8px; border-radius: 99px; background: rgba(217, 171, 111, .18); color: var(--gold-hi); }

/* Gift widget */
.w-gift { width: min(290px, 88%); }
.w-gift__head { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.w-gift__icon { width: 42px; height: 42px; flex: none; display: grid; place-items: center; border-radius: 12px; background: rgba(212, 135, 123, .18); color: var(--rose-hi); }
.w-gift__head b { display: block; font: 500 1.2rem/1.2 var(--f-display); }
.w-gift__head span { font-size: .72rem; color: var(--mist); }
.w-gift__meta { display: flex; justify-content: space-between; margin: 8px 0 16px; font-size: .7rem; font-weight: 600; color: var(--mist); }
.w-gift__pay { display: flex; flex-wrap: wrap; gap: 6px; }
.w-gift__pay em { font-style: normal; font-size: .68rem; font-weight: 700; padding: 7px 11px; border-radius: 99px; border: 1px solid var(--line-dark-2); color: var(--mist); }
.w-gift__pay em:first-child { background: var(--gold); border-color: var(--gold); color: var(--navy); }

/* =========================================================
   EVENT WEBSITES (bone)
   ========================================================= */
.websites__head { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(32px, 5vw, 72px); align-items: end; margin-bottom: clamp(44px, 6vw, 72px); }
.websites__head .section-head { margin-bottom: 0; }
.linkmaker {
  padding: 24px; border-radius: 22px;
  background: var(--paper); border: 1px solid var(--line-light);
  box-shadow: 0 30px 60px -40px rgba(6, 43, 64, .45);
}
.linkmaker__label { display: block; margin-bottom: 10px; font: 600 .68rem/1 var(--f-sans); letter-spacing: .16em; text-transform: uppercase; color: var(--ink-soft); }
.linkmaker__input {
  width: 100%; height: 56px; padding: 0 18px; border-radius: 14px;
  border: 1px solid var(--line-light); background: #fff; color: var(--ink);
  font: 500 1.42rem var(--f-display); transition: border-color .2s, box-shadow .2s;
}
.linkmaker__input:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 4px rgba(217, 171, 111, .22); }
.linkmaker__types { display: inline-flex; flex-wrap: wrap; gap: 4px; margin: 14px 0; padding: 4px; border: 0; border-radius: var(--pill); background: var(--bone-2); }
.linkmaker__url {
  display: flex; align-items: center; gap: 10px; padding: 14px 16px; border-radius: 14px;
  background: var(--navy); color: var(--ivory); font: 600 .95rem/1.35 var(--f-sans); overflow-wrap: anywhere;
}
.linkmaker__url .ic { width: 16px; height: 16px; flex: none; color: var(--live); }

.site-demo { display: grid; grid-template-columns: auto 120px minmax(0, 1fr); align-items: center; max-width: 1200px; margin-inline: auto; }
.demo-step__label {
  display: flex; align-items: center; gap: 10px; margin-bottom: 16px;
  font: 600 .7rem/1 var(--f-sans); letter-spacing: .18em; text-transform: uppercase; color: var(--ink-soft);
}
.demo-step__label span { width: 24px; height: 24px; flex: none; display: grid; place-items: center; border-radius: 50%; background: var(--navy); color: var(--gold-hi); font-size: .7rem; letter-spacing: 0; }
.demo-step--invite .demo-step__label { justify-content: center; }
/* "One tap" connector: a gold dot travels from the chat to the website */
.demo-link { display: flex; flex-direction: column; align-items: center; gap: 14px; padding-top: 30px; }
.demo-link__pill { padding: 8px 13px; border-radius: var(--pill); background: var(--navy); color: var(--gold-hi); font: 700 .62rem/1 var(--f-sans); letter-spacing: .16em; text-transform: uppercase; white-space: nowrap; }
.demo-link__line { position: relative; width: 84px; height: 2px; background: repeating-linear-gradient(90deg, rgba(180, 120, 60, .55) 0 5px, transparent 5px 10px); }
.demo-link__line i {
  position: absolute; top: 50%; left: 0; width: 10px; height: 10px; margin: -5px 0 0 -5px; border-radius: 50%;
  background: var(--gold); box-shadow: 0 0 0 4px rgba(217, 171, 111, .25);
  animation: travel-x 2.4s var(--ease-inout) infinite;
}
@keyframes travel-x { 0% { left: 0; opacity: 0; } 15%, 85% { opacity: 1; } 100% { left: 100%; opacity: 0; } }
@keyframes travel-y { 0% { top: 0; opacity: 0; } 15%, 85% { opacity: 1; } 100% { top: 100%; opacity: 0; } }

/* Invitation arriving in a chat */
.phone--wa { --pw: 25em; font-size: 10px; }
.wchat { display: flex; flex-direction: column; height: 100%; background: #0A2233; font-family: var(--f-sans); color: #EAF0F3; }
.wchat__head { display: flex; align-items: center; gap: 1em; padding: 4.6em 1.4em 1.1em; background: #0E2D42; border-bottom: 1px solid rgba(255, 255, 255, .06); }
.wchat__avatar {
  width: 3.6em; height: 3.6em; flex: none; display: grid; place-items: center; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-hi), var(--gold-lo)); color: var(--navy);
  font: italic 600 1.08em/1 var(--f-display); white-space: nowrap;
}
.wchat__name { font-size: 1.3em; font-weight: 600; line-height: 1.2; }
.wchat__status { font-size: 1em; line-height: 1.3; color: var(--live); }
.wchat__body {
  flex: 1; display: flex; flex-direction: column; gap: 1em; padding: 1.4em 1.2em;
  background: radial-gradient(80% 50% at 0% 0%, rgba(25, 74, 83, .35), transparent), #0A2233;
}
.wchat__day { align-self: center; padding: .45em 1em; border-radius: 99em; background: rgba(255, 255, 255, .06); font-size: .92em; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: #9FB4C2; }
.wbubble { position: relative; max-width: 94%; padding: .5em .5em .55em; border-radius: 1.3em 1.3em 1.3em .35em; background: #15384F; font-size: 1.15em; line-height: 1.45; }
.wbubble > p, .wbubble > time { padding: 0 .5em; }
.wbubble > p { margin-top: .55em; }
.wpreview { border-radius: .9em; overflow: hidden; background: #0E2D42; }
.wpreview img { width: 100%; height: 8.6em; object-fit: cover; }
.wpreview__meta { display: grid; gap: .2em; padding: .7em .8em .8em; }
.wpreview__meta b { font-size: .92em; font-weight: 600; line-height: 1.3; }
.wpreview__meta span { font-size: .8em; color: #9FB4C2; line-height: 1.35; }
.wpreview__meta em { font-style: normal; font-size: .76em; color: #9FB4C2; }
.wbubble__link { position: relative; color: var(--gold-hi); text-decoration: underline; text-underline-offset: .15em; overflow-wrap: anywhere; }
.wbubble time { display: block; text-align: right; font-size: .72em; opacity: .55; }
.wtap {
  position: absolute; left: 62%; top: 50%; width: 3em; height: 3em; border-radius: 50%;
  background: rgba(240, 204, 144, .4); pointer-events: none;
  animation: tap 2.4s ease-out infinite;
}
@keyframes tap {
  0% { transform: translate(-50%, -50%) scale(.4); opacity: 0; }
  15% { opacity: 1; }
  55%, 100% { transform: translate(-50%, -50%) scale(1.5); opacity: 0; }
}

/* The event website in a laptop browser */
.browser {
  position: relative; overflow: hidden; border-radius: 14px; background: #fff;
  box-shadow: 0 50px 100px -40px rgba(6, 43, 64, .55), 0 0 0 1px rgba(6, 43, 64, .08);
}
.browser__bar { display: flex; align-items: center; gap: 12px; height: 42px; padding: 0 14px; background: #F1ECE3; border-bottom: 1px solid #E3D9C8; }
.browser__dots { display: flex; gap: 6px; flex: none; }
.browser__dots i { width: 10px; height: 10px; border-radius: 50%; background: #DCD2C1; }
.browser__url {
  flex: 1; min-width: 0; max-width: 480px; height: 28px; margin-inline: auto; padding: 0 12px;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  border-radius: var(--pill); background: #fff; color: var(--ink);
  font: 600 .78rem/1 var(--f-sans); white-space: nowrap;
}
.browser__url span { overflow: hidden; text-overflow: ellipsis; }
.browser__url .ic { width: 13px; height: 13px; flex: none; color: #2E9E6A; }
.browser__shot { display: block; width: 100%; height: auto; }
/* The same website on a phone (small screens) */
.phone--site { display: none; --pw: 25em; font-size: 10px; margin-inline: auto; }
.phone__shot { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.site-demo__live { margin-top: 34px; text-align: center; }

/* =========================================================
   LIVE DEMO · SCROLL WALKTHROUGH
   The frame pins while you scroll; scroll distance steps through the screens.
   ========================================================= */
.tour-section .section-head { margin-bottom: clamp(8px, 2vw, 24px); }
.walk { position: relative; --steps: 10; --per-step: 48svh; }
.js .walk { height: calc(var(--steps) * var(--per-step) + 100svh); }
.walk__frame { display: flex; align-items: center; padding: calc(var(--header-h) + 20px) 0 28px; }
.js .walk__frame { position: sticky; top: 0; height: 100svh; }
.walk__inner { display: grid; grid-template-columns: 250px minmax(0, 1fr); align-items: center; gap: clamp(28px, 4vw, 64px); }
.walk__group { margin: 20px 0 10px; font: 600 .66rem/1 var(--f-sans); letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }
.walk__group:first-child { margin-top: 0; }
.walk__steps { list-style: none; margin: 0; padding: 0 0 0 18px; border-left: 1px solid var(--line-dark-2); }
.walk__steps li {
  position: relative; display: flex; align-items: baseline; gap: 12px; padding: 7px 0;
  font: 500 1.14rem/1.25 var(--f-display); color: rgba(248, 242, 231, .4);
  transition: color .35s;
}
.walk__steps li span { flex: none; min-width: 1.6em; font: 600 .62rem/1 var(--f-sans); letter-spacing: .1em; color: rgba(217, 171, 111, .45); transition: color .35s; }
.walk__steps li::before {
  content: ""; position: absolute; left: -19px; top: 5px; bottom: 5px; width: 3px; border-radius: 3px;
  background: var(--grad-gold); transform: scaleY(0); transition: transform .35s var(--ease-out);
}
.walk__steps li.is-done { color: rgba(248, 242, 231, .68); }
.walk__steps li.is-active { color: var(--ivory); }
.walk__steps li.is-active span { color: var(--gold); }
.walk__steps li.is-active::before { transform: scaleY(1); }
.walk__stage {
  display: flex; flex-direction: column; align-items: center; gap: 16px; min-width: 0;
  padding: clamp(18px, 2.4vw, 30px); border-radius: var(--radius-xl); border: 1px solid var(--line-dark);
  background: radial-gradient(70% 60% at 50% 35%, rgba(217, 171, 111, .13), transparent 70%), var(--night-2);
}
.walk__figure { width: 100%; height: min(52svh, 560px); display: flex; align-items: center; justify-content: center; } /* flex (not grid) so the image's max-height resolves against this height */
.walk__figure img {
  width: auto; height: auto; max-width: 100%; max-height: 100%; object-fit: contain;
  filter: drop-shadow(0 30px 40px rgba(0, 0, 0, .35));
  transition: opacity .3s, transform .45s var(--ease-out);
}
.walk__figure img.is-swapping { opacity: 0; transform: translateY(10px) scale(.985); }
.walk__caption { max-width: 40rem; min-height: 5.6em; text-align: center; }
.walk__kicker { margin-bottom: 8px; font: 600 .66rem/1 var(--f-sans); letter-spacing: .2em; text-transform: uppercase; color: var(--gold); font-variant-numeric: lining-nums tabular-nums; }
.walk__caption h3 { margin-bottom: 6px; font: 500 1.71rem/1.2 var(--f-display); }
.walk__caption p:last-child { color: var(--mist); }
.walk__progress { display: block; width: min(320px, 70%); height: 3px; border-radius: 3px; overflow: hidden; background: rgba(248, 242, 231, .12); }
.walk__progress i { display: block; height: 100%; background: var(--grad-gold); transform-origin: left; transform: scaleX(var(--p, 0)); }
.walk__after { margin-top: clamp(20px, 3vw, 36px); text-align: center; }
@media (max-height: 720px) and (min-width: 901px) {
  .walk__figure { height: 46svh; }
  .walk__steps li { padding: 5px 0; font-size: .92rem; }
}

/* =========================================================
   TABLE MANAGEMENT
   ========================================================= */
.tables { background: var(--night-2); }
.presets { display: inline-flex; flex-wrap: wrap; gap: 4px; margin: 0; padding: 4px; border: 1px solid var(--line-dark); border-radius: var(--pill); background: rgba(248, 242, 231, .05); }
.presets .seg span { color: var(--mist); }
.presets .seg input:checked + span { background: var(--grad-gold); color: var(--navy); }
.planner {
  display: grid; grid-template-columns: 310px minmax(0, 1fr); overflow: hidden;
  border-radius: var(--radius-xl); border: 1px solid var(--line-dark); background: var(--night);
  box-shadow: 0 40px 90px -50px rgba(0, 0, 0, .8);
}
.planner__side { display: flex; flex-direction: column; gap: 16px; min-width: 0; padding: 24px; border-right: 1px solid var(--line-dark); background: rgba(10, 36, 55, .7); }
.planner__stat p { margin-bottom: 10px; font-size: .9rem; color: var(--mist); }
.planner__stat b { margin-right: 2px; font: 500 2.05rem/1 var(--f-display); font-variant-numeric: lining-nums; color: var(--ivory); }
.planner__search {
  display: flex; align-items: center; gap: 10px; height: 46px; padding: 0 14px; border-radius: 12px;
  border: 1px solid var(--line-dark-2); background: rgba(248, 242, 231, .04); transition: border-color .2s;
}
.planner__search:focus-within { border-color: var(--gold); }
.planner__search .ic { width: 17px; height: 17px; color: var(--mist); }
.planner__search input { flex: 1; min-width: 0; border: 0; outline: 0; background: transparent; color: var(--ivory); font: 500 .92rem var(--f-sans); }
.planner__search input::placeholder { color: rgba(174, 187, 198, .75); }
.planner__result { margin-top: -6px; font-size: .84rem; line-height: 1.45; color: var(--gold-hi); }
.planner__result:empty { display: none; }
.planner__legend { display: flex; flex-wrap: wrap; gap: 6px 14px; font-size: .74rem; color: var(--mist); }
.planner__legend span { display: inline-flex; align-items: center; gap: 6px; }
.planner__legend i { width: 10px; height: 10px; border-radius: 50%; background: var(--gc); }
.g-family, .g-board { --gc: var(--gold); }
.g-friends, .g-sponsor { --gc: var(--rose); }
.g-work, .g-staff { --gc: var(--teal-glow); }
.g-party, .g-vip { --gc: var(--ivory); }
.g-partner { --gc: var(--sky); }
.planner__label { margin-bottom: 10px; font: 600 .68rem/1 var(--f-sans); letter-spacing: .18em; text-transform: uppercase; color: var(--gold); }
.planner__guests {
  list-style: none; margin: 0; padding: 3px; min-height: 46px; max-height: 232px; overflow-y: auto;
  display: flex; flex-wrap: wrap; align-content: flex-start; gap: 6px;
  border-radius: 12px; outline: 1px dashed transparent; outline-offset: 3px;
  transition: background-color .2s, outline-color .2s;
}
.planner__guests.is-drop { outline-color: var(--gold); background: rgba(217, 171, 111, .07); }
.planner__guests:empty::before { content: "Everyone has a seat 🎉"; padding: 12px 4px; font-size: .85rem; color: var(--mist); }
.gchip {
  display: inline-flex; align-items: center; gap: 7px; height: 34px; padding: 0 12px 0 5px;
  border-radius: var(--pill); border: 1px solid var(--line-dark-2); background: rgba(248, 242, 231, .04);
  color: var(--ivory); font: 500 .8rem/1 var(--f-sans); cursor: grab; white-space: nowrap;
  transition: background-color .2s, border-color .2s, color .2s, transform .2s, box-shadow .2s;
}
.gchip:hover { border-color: var(--gold); }
.gchip i { width: 24px; height: 24px; flex: none; display: grid; place-items: center; border-radius: 50%; background: var(--gc); color: var(--navy); font: 700 .58rem/1 var(--f-sans); font-style: normal; }
.gchip[aria-pressed="true"] { background: var(--gold); border-color: var(--gold); color: var(--navy); transform: translateY(-1px); box-shadow: 0 8px 20px -8px rgba(217, 171, 111, .7); }
.gchip[aria-pressed="true"] i { box-shadow: 0 0 0 2px var(--navy); }
.gchip[hidden] { display: none; }
.is-dragging { opacity: .35; }
.planner__hint { font-size: .8rem; line-height: 1.5; color: var(--mist); }
.planner.is-picking .planner__hint { color: var(--gold-hi); }
.planner__actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; }
.planner__actions .btn { --h: 42px; padding: 0 20px; font-size: .64rem; }

.planner__floor {
  position: relative; display: flex; flex-direction: column; gap: 22px; min-width: 0; padding: 26px 26px 22px;
  background:
    radial-gradient(rgba(248, 242, 231, .06) 1px, transparent 1.4px) 0 0 / 22px 22px,
    radial-gradient(70% 50% at 50% 0%, rgba(217, 171, 111, .08), transparent 70%),
    var(--night);
}
.floor__tables { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 6px 10px; justify-items: center; }
.tbl { position: relative; --seat: 32px; }
.tbl--round { --size: 176px; --r: 68px; width: var(--size); height: var(--size); }
.tbl__surface {
  position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px;
  padding: 6px; border: 0; background: radial-gradient(circle at 35% 30%, #FFFDF8, #EDE3D1); color: var(--navy); text-align: center;
  box-shadow: 0 12px 26px rgba(0, 0, 0, .4), inset 0 0 0 1px rgba(180, 120, 60, .3);
  transition: transform .25s var(--ease-out), box-shadow .25s, opacity .25s;
}
.tbl--round .tbl__surface { position: absolute; left: 50%; top: 50%; width: 92px; height: 92px; margin: -46px 0 0 -46px; border-radius: 50%; }
.tbl__surface b { font: 500 1.54rem/1 var(--f-display); font-variant-numeric: lining-nums; }
.tbl__surface em { max-width: 78px; font-style: normal; font-size: .54rem; font-weight: 700; line-height: 1.2; letter-spacing: .05em; text-transform: uppercase; color: var(--ink-soft); }
.tbl__count { font-size: .62rem; font-weight: 700; font-variant-numeric: lining-nums; color: var(--gold-ink); }
.tbl.is-full .tbl__count { color: var(--rose-lo); }
.tbl__surface:hover { transform: scale(1.04); }
.planner.is-picking .tbl:not(.is-full) .tbl__surface { box-shadow: 0 12px 26px rgba(0, 0, 0, .4), 0 0 0 3px rgba(217, 171, 111, .6), 0 0 26px rgba(217, 171, 111, .35); }
.planner.is-picking .tbl.is-full .tbl__surface { opacity: .5; }
.tbl.is-drop .tbl__surface { transform: scale(1.08); box-shadow: 0 0 0 3px var(--gold), 0 0 30px rgba(217, 171, 111, .5); }
.tbl.is-active .tbl__surface { box-shadow: 0 12px 26px rgba(0, 0, 0, .4), 0 0 0 2px var(--gold); }
.tbl.is-flash .tbl__surface { animation: tbl-flash .7s var(--ease-out); }
.tbl.is-shake { animation: tbl-shake .45s; }
@keyframes tbl-flash { 40% { scale: 1.1; box-shadow: 0 0 0 6px rgba(217, 171, 111, .35), 0 0 40px rgba(217, 171, 111, .6); } }
@keyframes tbl-shake { 20%, 60% { translate: -5px 0; } 40%, 80% { translate: 5px 0; } }
.seat {
  position: absolute; left: 50%; top: 50%; width: var(--seat); height: var(--seat);
  margin: calc(var(--seat) / -2) 0 0 calc(var(--seat) / -2); padding: 0;
  display: grid; place-items: center; border-radius: 50%;
  border: 1.5px dashed rgba(248, 242, 231, .22); background: rgba(6, 26, 43, .7);
  color: var(--navy); font: 700 .6rem/1 var(--f-sans);
  transform: rotate(calc(var(--i) * 360deg / var(--n))) translateY(calc(var(--r) * -1)) rotate(calc(var(--i) * -360deg / var(--n)));
  transition: background-color .25s, border-color .25s, box-shadow .25s;
}
.seat.is-taken { border: 0; background: var(--gc); box-shadow: 0 4px 10px rgba(0, 0, 0, .4); cursor: grab; }
.seat.is-taken:hover, .seat.is-taken:focus-visible { box-shadow: 0 0 0 2px var(--ivory), 0 4px 10px rgba(0, 0, 0, .4); }
.seat.is-selected { box-shadow: 0 0 0 3px var(--gold), 0 0 18px rgba(217, 171, 111, .75); }
.planner.is-picking .seat:not(.is-taken) { border-color: rgba(217, 171, 111, .65); cursor: pointer; }
.planner__unseat { padding: 0; border: 0; background: none; font: inherit; color: var(--gold-hi); text-decoration: underline; text-underline-offset: 2px; cursor: pointer; }
.seat.is-new { animation: seat-pop .5s var(--ease-out); }
.seat.is-found { box-shadow: 0 0 0 3px var(--ivory), 0 0 18px rgba(248, 242, 231, .7); animation: seat-found 1.1s ease-in-out 3; }
@keyframes seat-pop { from { scale: .2; } }
@keyframes seat-found { 50% { scale: 1.25; } }
.tbl--head { display: flex; flex-direction: column; align-items: center; gap: 12px; width: min(460px, 100%); margin-inline: auto; }
.tbl--head .tbl__surface { flex-direction: row; gap: 12px; width: 100%; height: 54px; border-radius: 14px; }
.tbl--head .tbl__surface b { color: var(--rose-lo); font-size: 1.1rem; }
.tbl--head .tbl__surface em { max-width: none; font-size: .64rem; }
.tbl--head .tbl__seats { display: flex; justify-content: center; gap: 10px; }
.tbl--head .seat { position: relative; left: auto; top: auto; margin: 0; transform: none; }
.floor__dance {
  height: 48px; display: grid; place-items: center; border-radius: 12px;
  border: 1px dashed rgba(217, 171, 111, .3);
  background: repeating-linear-gradient(45deg, rgba(217, 171, 111, .05) 0 10px, transparent 10px 20px);
  font: 600 .62rem/1 var(--f-sans); letter-spacing: .26em; text-transform: uppercase; color: rgba(217, 171, 111, .75);
}
.floor__detail { min-height: 3.2em; padding: 12px 16px; border-radius: 12px; border: 1px solid var(--line-dark); background: rgba(248, 242, 231, .05); font-size: .86rem; line-height: 1.5; color: var(--mist); }
.floor__detail b { font-weight: 600; color: var(--ivory); }

/* =========================================================
   ON THE DAY & AFTER (bone)
   ========================================================= */
.day__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.day-card {
  display: flex; flex-direction: column; padding: clamp(22px, 3vw, 36px);
  border-radius: var(--radius-xl); background: var(--paper); border: 1px solid var(--line-light);
  box-shadow: 0 30px 60px -44px rgba(6, 43, 64, .4);
}
.day-card h3 { margin-bottom: 6px; font: 500 clamp(1.6rem, 1.25rem + 1.03vw, 2.11rem)/1.15 var(--f-display); color: var(--navy); }
.day-card > p { color: var(--ink-soft); }
/* Screens sit on a warm backdrop so the white app UI stands out from the card */
.duo {
  position: relative; margin: 0 0 26px; padding: 6% 5% 14%; border-radius: 18px; overflow: hidden;
  background: radial-gradient(80% 70% at 30% 20%, rgba(255, 255, 255, .55), transparent 70%), linear-gradient(160deg, #EFE2CC, #E0CBA9);
}
.duo__back { width: 88%; height: auto; filter: drop-shadow(0 24px 30px rgba(6, 43, 64, .28)); }
.duo__front { position: absolute; right: 5%; bottom: 6%; width: 32%; height: auto; filter: drop-shadow(0 22px 30px rgba(6, 43, 64, .4)); }
.float-chip.duo__chip { top: auto; right: auto; bottom: 9%; left: 5%; }
.duo--money { padding: 6% 5% 20%; }
.duo--money .duo__back { width: 100%; }
.money-card {
  position: absolute; left: 5%; bottom: 6%; width: min(250px, 52%); padding: 16px 18px;
  border-radius: 18px; border: 1px solid rgba(248, 242, 231, .16); background: rgba(8, 30, 46, .92);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); box-shadow: 0 24px 50px -20px rgba(6, 43, 64, .6); color: var(--ivory);
}
.money-card__label { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; font: 600 .64rem/1 var(--f-sans); letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }
.money-card__label .ic { width: 15px; height: 15px; }
.money-card ul { list-style: none; margin: 0 0 12px; padding: 0; display: grid; gap: 8px; }
.money-card li { display: flex; align-items: baseline; justify-content: space-between; padding-bottom: 8px; border-bottom: 1px solid var(--line-dark); }
.money-card li span { font-size: .72rem; font-weight: 700; letter-spacing: .12em; color: var(--mist); }
.money-card li b { font: 500 1.6rem/1 var(--f-display); }
.money-card__pay { font-size: .72rem; color: var(--mist); }

/* =========================================================
   GALLERY · MARQUEE
   ========================================================= */
.gallery { background: var(--night-2); overflow: hidden; }
.marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.marquee__track { display: flex; gap: 16px; width: max-content; animation: marquee var(--dur, 80s) linear infinite; }
.marquee:hover .marquee__track, .marquee:focus-within .marquee__track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(calc(-50% - 8px)); } }
.gal { position: relative; flex: none; height: clamp(260px, 28vw, 380px); border-radius: var(--radius-md); overflow: hidden; background: var(--night-3); }
.gal--t { aspect-ratio: 3 / 4; }
.gal--w { aspect-ratio: 4 / 3; }
.gal--s { aspect-ratio: 1; }
.gal img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease-out); }
.gal:hover img { transform: scale(1.05); }
.gal::after { content: ""; position: absolute; inset: 55% 0 0; background: linear-gradient(transparent, rgba(6, 26, 43, .75)); }
.gal figcaption {
  position: absolute; left: 16px; bottom: 16px; z-index: 1;
  font: 600 .68rem/1 var(--f-sans); letter-spacing: .22em; text-transform: uppercase; color: var(--ivory);
}

/* =========================================================
   HOW IT WORKS
   ========================================================= */
.steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 16px; }
.step {
  padding: 26px 22px 24px; border-radius: var(--radius-lg);
  background: var(--night-2); border: 1px solid var(--line-dark);
  transition: border-color .3s, transform .4s var(--ease-out);
}
.step:hover { border-color: rgba(217, 171, 111, .4); transform: translateY(-4px); }
.step__num {
  display: block; margin-bottom: 18px; padding-right: .1em;
  font: italic 500 2.74rem/1 var(--f-display);
  background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.step h3 { margin-bottom: 6px; font: 500 1.54rem/1.2 var(--f-display); }
.step p { font-size: .88rem; line-height: 1.5; color: var(--mist); }

/* =========================================================
   PACKAGES (bone)
   ========================================================= */
.plans { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; align-items: stretch; max-width: 900px; margin-inline: auto; }
.plan {
  position: relative; display: flex; flex-direction: column;
  padding: 36px 32px; border-radius: 24px;
  background: var(--paper); border: 1px solid var(--line-light);
  box-shadow: 0 30px 60px -40px rgba(6, 43, 64, .3);
}
.plan__name { font: 500 2.17rem/1.1 var(--f-display); margin-bottom: 6px; }
.plan__for { font: 600 .7rem/1.4 var(--f-sans); letter-spacing: .2em; text-transform: uppercase; color: var(--gold-ink); margin-bottom: 22px; }
.plan__price { font: 500 3.31rem/1 var(--f-display); margin-bottom: 14px; }
.plan__price span { font: 600 .72rem/1 var(--f-sans); letter-spacing: .14em; text-transform: uppercase; color: var(--ink-soft); vertical-align: middle; margin-right: 4px; }
.plan__desc { color: var(--ink-soft); margin-bottom: 8px; padding-bottom: 18px; border-bottom: 1px solid var(--line-light); }
.plan__list { list-style: none; margin: 0 0 30px; padding: 0; }
.plan__list li { padding: 11px 0; border-bottom: 1px solid var(--line-light); font-size: .94rem; font-weight: 500; }
.plan .btn { margin-top: auto; width: 100%; }
.plan--featured {
  background: radial-gradient(90% 60% at 100% 0%, rgba(217, 171, 111, .2), transparent 60%), var(--navy);
  color: var(--ivory); border-color: rgba(217, 171, 111, .5);
  box-shadow: 0 40px 80px -30px rgba(6, 43, 64, .6);
  translate: 0 -14px;
}
.plan--featured .plan__for { color: var(--gold); }
.plan--featured .plan__price span, .plan--featured .plan__desc { color: var(--mist); }
.plan--featured .plan__desc, .plan--featured .plan__list li { border-bottom-color: var(--line-dark); }
.plan__badge {
  position: absolute; top: -13px; left: 32px; padding: 7px 14px; border-radius: var(--pill);
  background: var(--grad-gold-btn); color: var(--navy);
  font: 700 .6rem/1 var(--f-sans); letter-spacing: .18em; text-transform: uppercase;
}
.addons { max-width: 900px; margin: 44px auto 0; padding: 28px 30px; border-radius: 22px; background: var(--paper); border: 1px solid var(--line-light); }
.addons__title { margin-bottom: 14px; font: 500 1.6rem/1.2 var(--f-display); }
.addons__list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; column-gap: 40px; }
.addons__list li { display: flex; justify-content: space-between; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--line-light); font-size: .92rem; }
.addons__list b { flex: none; font-weight: 600; white-space: nowrap; color: var(--gold-ink); }
.plans__note { margin-top: 36px; text-align: center; font-size: .9rem; color: var(--ink-soft); }

/* =========================================================
   FAQ
   ========================================================= */
.faq { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(40px, 6vw, 96px); align-items: start; }
.faq__intro { position: sticky; top: 110px; }
.faq__intro .h2 { margin-bottom: 1.8rem; }
.faq__list { border-top: 1px solid var(--line-dark); }
.faq__item { border-bottom: 1px solid var(--line-dark); }
.faq__item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 24px 0; cursor: pointer; list-style: none;
  font: 500 clamp(1.23rem, 1.14rem + 0.399vw, 1.48rem)/1.35 var(--f-display);
  transition: color .2s;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--gold-hi); }
.faq__icon {
  flex: none; width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%;
  border: 1px solid var(--line-dark-2); color: var(--ivory);
  transition: transform .35s var(--ease-out), background-color .25s, border-color .25s, color .25s;
}
.faq__icon .ic { width: 16px; height: 16px; }
.faq__item[open]:not(.is-closing) .faq__icon { transform: rotate(45deg); background: var(--gold); border-color: var(--gold); color: var(--navy); }
.faq__body { overflow: hidden; }
.faq__body p { padding-bottom: 26px; max-width: 40rem; color: var(--mist); }

/* =========================================================
   CTA BANNER
   ========================================================= */
.cta-banner {
  position: relative; isolation: isolate; overflow: hidden;
  display: grid; place-items: center; text-align: center;
  min-height: clamp(440px, 50vw, 600px); padding: 80px 0;
}
.cta-banner > img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; }
.cta-banner::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(60% 70% at 50% 50%, rgba(6, 26, 43, .35), rgba(6, 26, 43, .85)),
    linear-gradient(180deg, var(--night) 0%, rgba(6, 26, 43, .2) 25%, rgba(6, 26, 43, .2) 75%, rgba(6, 26, 43, .9) 100%);
}
.cta-banner__inner { display: flex; flex-direction: column; align-items: center; }
.cta-banner__spark { width: 34px; height: 34px; color: var(--gold-hi); margin-bottom: 22px; animation: twinkle 3.4s ease-in-out infinite; }
.cta-banner h2 {
  max-width: 18ch; margin-bottom: 36px;
  font: 300 clamp(2.5rem, 1.2rem + 4.2vw, 5.2rem)/1.02 var(--f-light);
  letter-spacing: -.01em; text-wrap: balance;
}
.cta-banner h2 em { display: block; margin-top: .1em; font-style: italic; font-weight: 300; color: var(--gold-hi); }

/* =========================================================
   CONTACT (bone)
   ========================================================= */
.contact { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(40px, 6vw, 96px); align-items: start; }
.contact__options { display: grid; gap: 12px; max-width: 28rem; }
.contact__opt {
  display: flex; align-items: center; gap: 16px; padding: 16px 18px; border-radius: 18px;
  background: var(--paper); border: 1px solid var(--line-light);
  transition: border-color .2s, transform .3s var(--ease-out), box-shadow .3s;
}
.contact__opt:hover { border-color: var(--gold); transform: translateY(-2px); box-shadow: 0 20px 40px -24px rgba(6, 43, 64, .35); }
button.contact__opt { width: 100%; text-align: left; font: inherit; color: inherit; cursor: pointer; }
.contact__opt-icon { width: 46px; height: 46px; flex: none; display: grid; place-items: center; border-radius: 50%; background: var(--navy); color: var(--ivory); }
.contact__opt-icon--wa { background: #25D366; color: #fff; }
.contact__opt-icon--fb { background: #1877F2; color: #fff; }
.contact__opt-icon--gold { background: var(--grad-gold-btn); color: var(--navy); }
.contact__opt-icon .ic { width: 21px; height: 21px; }
.contact__opt b { display: block; font-weight: 600; color: var(--navy); }
.contact__opt em { font-style: normal; font-size: .86rem; color: var(--ink-soft); }

.form {
  padding: clamp(24px, 4vw, 44px); border-radius: var(--radius-xl);
  background: var(--paper); border: 1px solid var(--line-light);
  box-shadow: 0 40px 80px -50px rgba(6, 43, 64, .45);
}
.form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 8px; min-width: 0; }
.field--full { grid-column: 1 / -1; }
.field label { font: 600 .68rem/1 var(--f-sans); letter-spacing: .16em; text-transform: uppercase; color: var(--ink-soft); }
.field input, .field select, .field textarea {
  width: 100%; height: 52px; padding: 0 16px; border-radius: 12px;
  border: 1px solid var(--line-light); background: #fff; color: var(--ink);
  font: 500 .98rem var(--f-sans);
  transition: border-color .2s, box-shadow .2s;
  -webkit-appearance: none; appearance: none;
}
.field select {
  padding-right: 42px;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6' fill='none' stroke='%234A6275' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") right 14px center / 18px no-repeat;
}
.field textarea { height: auto; min-height: 100px; padding: 14px 16px; resize: vertical; line-height: 1.5; }
.field ::placeholder { color: #9AA8B3; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 4px rgba(217, 171, 111, .22); }
.field.is-invalid input, .field.is-invalid select { border-color: var(--rose-lo); box-shadow: 0 0 0 4px rgba(185, 106, 94, .14); }
.form__error { min-height: 1.4em; margin: 14px 0 0; font-size: .88rem; font-weight: 600; color: var(--rose-lo); }
.form__actions { display: flex; align-items: center; flex-wrap: wrap; gap: 14px 20px; margin-top: 8px; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { padding: clamp(80px, 9vw, 128px) 0 32px; border-top: 1px solid var(--line-dark); background: radial-gradient(80% 60% at 0% 0%, rgba(25, 74, 83, .28), transparent 60%), var(--night); }
.footer__top { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr) minmax(0, 1.1fr); gap: clamp(36px, 5vw, 80px); align-items: start; }
.footer__brand { display: flex; flex-direction: column; align-items: flex-start; gap: 22px; }
.footer__blurb { max-width: 20rem; font-size: .92rem; line-height: 1.6; color: var(--mist); }
.footer__big { display: grid; gap: 4px; }
.footer__big a {
  justify-self: start;
  font: 300 clamp(2rem, 1.3rem + 1.9vw, 3.1rem)/1.12 var(--f-display);
  letter-spacing: -.01em; color: rgba(248, 242, 231, .88);
  transition: color .25s, transform .35s var(--ease-out);
}
.footer__big a:hover { color: var(--gold-hi); transform: translateX(6px); }
.footer__cols { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px; }
.footer h4 { margin-bottom: 18px; font: 600 .68rem/1.45 var(--f-sans); letter-spacing: .22em; text-transform: uppercase; color: var(--gold); }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.footer ul a { font-size: .92rem; color: rgba(248, 242, 231, .76); transition: color .2s; }
.footer ul a:hover { color: var(--gold-hi); }
.footer__social a { display: inline-flex; align-items: center; gap: 10px; }
.footer__social .ic { width: 17px; height: 17px; color: var(--gold); }
.footer__chat {
  display: inline-flex; align-items: center; gap: 10px; padding: 0; border: 0; background: none;
  font-size: .92rem; color: rgba(248, 242, 231, .76); transition: color .2s;
}
.footer__chat:hover { color: var(--gold-hi); }
.footer__chat .ic { width: 17px; height: 17px; color: var(--gold); }
.footer__signoff {
  margin-top: clamp(64px, 8vw, 110px); padding-top: clamp(28px, 3vw, 40px); border-top: 1px solid var(--line-dark);
  font: 300 clamp(2.6rem, 1.2rem + 5.2vw, 6.4rem)/1 var(--f-display); letter-spacing: -.015em; color: rgba(248, 242, 231, .9);
}
.footer__signoff em { font-style: italic; color: var(--gold-hi); }
.footer__bottom { margin-top: 28px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: .8rem; color: var(--mist); }
.footer__bottom a { text-decoration: underline; text-underline-offset: 3px; }

/* =========================================================
   CHAT WIDGET
   ========================================================= */
.chatw {
  position: fixed; right: 22px; bottom: max(22px, env(safe-area-inset-bottom)); z-index: 75;
  opacity: 0; visibility: hidden; transform: translateY(16px);
  transition: opacity .5s, transform .6s var(--ease-out), visibility 0s .6s;
}
.chatw.is-ready { opacity: 1; visibility: visible; transform: none; transition: opacity .5s, transform .6s var(--ease-out); }
body.menu-open .chatw { opacity: 0; visibility: hidden; }
.chatw__launcher {
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: 58px; padding: 0 26px 0 20px; border: 0; border-radius: var(--pill);
  background: var(--grad-gold-btn) 0 0 / 200% 100%; color: var(--navy);
  font: 600 .72rem/1 var(--f-sans); letter-spacing: .18em; text-transform: uppercase;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .4), inset 0 1px 0 rgba(255, 255, 255, .5);
  transition: transform .3s var(--ease-out), box-shadow .3s, opacity .3s, background-position .9s var(--ease-out);
}
.chatw__launcher::before { content: ""; position: absolute; inset: 3px; border-radius: inherit; border: 1px solid rgba(255, 250, 240, .5); pointer-events: none; }
.chatw__launcher:hover { transform: translateY(-2px); background-position: 100% 0; box-shadow: 0 22px 44px rgba(0, 0, 0, .45), inset 0 1px 0 rgba(255, 255, 255, .5); }
.chatw__launcher .ic { width: 22px; height: 22px; }
.chatw__icon-close { display: none; }
.chatw.is-open .chatw__icon-open, .chatw.is-open .chatw__label { display: none; }
.chatw.is-open .chatw__icon-close { display: block; }
.chatw.is-open .chatw__launcher { width: 58px; padding: 0; }
.chatw__badge { position: absolute; top: 9px; right: 14px; width: 10px; height: 10px; border-radius: 50%; background: var(--rose-lo); box-shadow: 0 0 0 2px #E6BF86; }
.chatw.is-seen .chatw__badge { display: none; }

.chatw__panel {
  position: absolute; right: 0; bottom: calc(100% + 14px);
  width: min(380px, calc(100vw - 44px)); height: min(600px, calc(100svh - 130px));
  display: flex; flex-direction: column; overflow: hidden;
  border-radius: 22px; background: var(--paper); color: var(--ink);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .5), 0 0 0 1px rgba(6, 43, 64, .08);
  transform-origin: 100% 100%;
  opacity: 0; visibility: hidden; transform: translateY(12px) scale(.96);
  transition: opacity .25s, transform .35s var(--ease-out), visibility 0s .35s;
}
.chatw.is-open .chatw__panel { opacity: 1; visibility: visible; transform: none; transition: opacity .25s, transform .35s var(--ease-out); }
.chatw__head { display: flex; align-items: center; gap: 12px; padding: 16px 14px 16px 18px; background: linear-gradient(135deg, #123B57, var(--navy)); color: var(--ivory); }
.chatw__head img { width: 40px; height: 40px; flex: none; border-radius: 12px; background: #fff; }
.chatw__title { font: 600 1rem/1.25 var(--f-sans); }
.chatw__sub { display: flex; align-items: center; gap: 7px; margin-top: 3px; font-size: .74rem; color: var(--mist); }
.chatw__sub .dot { width: 7px; height: 7px; }
.chatw__close {
  margin-left: auto; width: 36px; height: 36px; flex: none; display: grid; place-items: center;
  border-radius: 50%; border: 1px solid var(--line-dark-2); background: transparent; color: var(--ivory);
}
.chatw__close .ic { width: 16px; height: 16px; }
.chatw__log {
  flex: 1; min-height: 0; overflow-y: auto; overscroll-behavior: contain;
  display: flex; flex-direction: column; gap: 10px; padding: 18px 16px 10px;
  background: radial-gradient(90% 40% at 100% 0%, rgba(217, 171, 111, .12), transparent 70%), var(--bone);
}
.cmsg {
  max-width: 88%; padding: 10px 14px; border-radius: 16px 16px 16px 4px;
  background: #fff; border: 1px solid var(--line-light);
  font-size: .9rem; line-height: 1.5; color: var(--ink);
  animation: cmsg-in .35s var(--ease-out) both;
}
.cmsg--me { align-self: flex-end; border-radius: 16px 16px 4px 16px; background: var(--navy); border-color: var(--navy); color: var(--ivory); }
@keyframes cmsg-in { from { opacity: 0; transform: translateY(8px); } }
.cmsg__actions { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.cbtn {
  display: inline-flex; align-items: center; gap: 6px; height: 34px; padding: 0 14px;
  border-radius: var(--pill); border: 1px solid rgba(6, 43, 64, .2); background: var(--paper);
  color: var(--navy); font: 600 .78rem/1 var(--f-sans); cursor: pointer; transition: border-color .2s, background-color .2s;
}
.cbtn:hover { border-color: var(--navy); }
.cbtn .ic { width: 15px; height: 15px; }
.cbtn--wa { background: #25D366; border-color: #25D366; color: #fff; }
.cbtn--wa:hover { background: #1DB954; border-color: #1DB954; }
.cmsg--typing { display: inline-flex; align-items: center; gap: 4px; padding: 14px; }
.cmsg--typing span { width: 7px; height: 7px; border-radius: 50%; background: #9AA8B3; animation: typing 1s ease-in-out infinite; }
.cmsg--typing span:nth-child(2) { animation-delay: .15s; }
.cmsg--typing span:nth-child(3) { animation-delay: .3s; }
@keyframes typing { 0%, 60%, 100% { transform: translateY(0); opacity: .5; } 30% { transform: translateY(-4px); opacity: 1; } }
.chatw__quick { display: flex; flex-wrap: wrap; gap: 6px; padding: 4px 16px 12px; background: var(--bone); }
.chatw__quick:empty { display: none; }
.qr {
  height: 32px; padding: 0 12px; border-radius: var(--pill);
  border: 1px solid rgba(138, 94, 38, .4); background: rgba(217, 171, 111, .14);
  color: var(--gold-ink); font: 600 .76rem/1 var(--f-sans); cursor: pointer;
  transition: background-color .2s, border-color .2s, color .2s;
}
.qr:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.chatw__form { display: flex; gap: 8px; padding: 12px 12px 8px; background: #fff; border-top: 1px solid var(--line-light); }
.chatw__form input {
  flex: 1; min-width: 0; height: 44px; padding: 0 16px; border-radius: var(--pill);
  border: 1px solid var(--line-light); background: var(--paper); color: var(--ink); font: 500 .9rem var(--f-sans);
}
.chatw__form input:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(217, 171, 111, .22); }
.chatw__form button { width: 44px; height: 44px; flex: none; display: grid; place-items: center; border: 0; border-radius: 50%; background: var(--navy); color: var(--ivory); }
.chatw__form button .ic { width: 18px; height: 18px; }
.chatw__foot { padding: 2px 12px 12px; background: #fff; text-align: center; font-size: .72rem; color: var(--ink-soft); }
.chatw__foot a { font-weight: 600; color: var(--navy); text-decoration: underline; text-underline-offset: 2px; }
.toast {
  position: fixed; left: 50%; bottom: 24px; z-index: 90;
  max-width: calc(100% - 40px); padding: 14px 20px; border-radius: 14px;
  background: var(--ivory); color: var(--navy); font-weight: 600; font-size: .92rem;
  box-shadow: var(--shadow-pop);
  visibility: hidden;
  transform: translate(-50%, 180%); transition: transform .45s var(--ease-out), visibility 0s .45s;
}
.toast.is-visible { visibility: visible; transform: translate(-50%, 0); transition: transform .45s var(--ease-out); }

/* Lining figures for every display-serif number (the font shorthand resets font-variant) */
.plan__price, .stepper b, .w-gift__head b, .step__num, .addons b, .money-card b, .pass__gate b, .pass__stamp span,
.planner__stat b, .studio__stats b, .agenda__mine b, .tbl__surface b, .tl__count b, .snip__big, .tile h3,
.ctile figcaption b, .day-card h3, .plan__name, .faq__item summary, .walk__steps li, .footer__big a { font-variant-numeric: lining-nums; }
.w-count__grid b, .w-prog time, .session time { font-variant-numeric: lining-nums tabular-nums; }

/* ---------- Scroll reveal ---------- */
.js .reveal { opacity: 0; transform: translateY(30px); transition: opacity 1s var(--ease-out), transform 1s var(--ease-out); transition-delay: var(--d, 0s); }
.js .reveal.is-in { opacity: 1; transform: none; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1180px) {
  .nav { display: none; }
  .menu-toggle { display: block; }
  .footer__top { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .footer__cols { grid-column: 1 / -1; max-width: 560px; }
  .site-demo { grid-template-columns: auto 92px minmax(0, 1fr); }
  .phone--wa { font-size: 9px; }
  .demo-link__line { width: 60px; }
  .planner { grid-template-columns: 280px minmax(0, 1fr); }
  .tbl--round { --size: 156px; --r: 60px; --seat: 29px; }
  .tbl--round .tbl__surface { width: 82px; height: 82px; margin: -41px 0 0 -41px; }
  .steps { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 1024px) {
  .websites__head { grid-template-columns: 1fr; align-items: start; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .faq { grid-template-columns: 1fr; }
  .faq__intro { position: static; }
  .contact { grid-template-columns: 1fr; }
  .studio, .tl { grid-template-columns: 1fr; }
  .studio__stage { min-height: 540px; }
  .seminars__grid { grid-template-columns: 1fr; }
  .sem-collage { height: clamp(380px, 62vw, 560px); }
  .bento, .corp-mosaic { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .bento { grid-auto-rows: clamp(220px, 34vw, 300px); }
  .bento .tile--xl { grid-row: span 1; }
  .corp-mosaic { grid-auto-rows: clamp(190px, 30vw, 260px); }
}

@media (max-width: 900px) {
  .day__grid { grid-template-columns: 1fr; }
  .walk { --per-step: 40svh; }
  .walk__inner { grid-template-columns: 1fr; }
  .walk__nav { display: none; }
  .walk__frame { padding: calc(var(--header-h) + 12px) 0 20px; }
  .walk__figure { height: 48svh; }
  /* event website demo: invitation → phone website, stacked */
  .site-demo { grid-template-columns: 1fr; justify-items: center; gap: 22px; }
  .demo-step__label { justify-content: center; }
  .demo-link { padding-top: 0; }
  .demo-link__line { width: 2px; height: 52px; background: repeating-linear-gradient(180deg, rgba(180, 120, 60, .55) 0 5px, transparent 5px 10px); }
  .demo-link__line i { left: 50%; top: 0; margin: -5px 0 0 -5px; animation-name: travel-y; }
  .browser { display: none; }
  .phone--site { display: block; }
  .phone--wa, .phone--site { font-size: 9.4px; }
  /* seating planner: controls above the floor */
  .planner { grid-template-columns: 1fr; }
  .planner__side { border-right: 0; border-bottom: 1px solid var(--line-dark); }
  .planner__guests { max-height: 156px; }
}

@media (max-width: 760px) {
  .plans { grid-template-columns: 1fr; max-width: 520px; }
  .plan--featured { translate: none; }
  .addons__list { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  :root { --header-h: 68px; }
  .brand__mark { width: 38px; height: 38px; border-radius: 10px; }
  .brand__word { height: 26px; }
  .header__actions { gap: 8px; }
  .menu-toggle { width: 40px; height: 40px; }
  .menu-toggle span:first-child { top: 15px; }
  .menu-toggle span:last-child { top: 23px; }
  .menu-toggle[aria-expanded="true"] span:first-child, .menu-toggle[aria-expanded="true"] span:last-child { top: 19px; }
  .header__cta { display: none; }
  .btn { --h: 52px; padding: 0 26px; }
  .hero__ctas { flex-direction: column; gap: 18px; }
  .duo { padding-bottom: 18%; }
  .float-chip.duo__chip { bottom: 4%; }
  .duo--money { padding-bottom: 5%; }
  .money-card { position: relative; left: auto; bottom: auto; width: 100%; margin-top: 16px; }
  .addons { padding: 22px 20px; }
  .feature-grid { grid-template-columns: 1fr; }
  .fcard { padding: 22px; }
  .float-chip { top: 16px; font-size: .74rem; padding: 9px 13px; }
  .form__grid { grid-template-columns: 1fr; }
  .form__actions .btn { width: 100%; }
  .footer__top { grid-template-columns: 1fr; gap: 44px; }
  .footer__cols { grid-template-columns: 1fr 1fr; gap: 28px 20px; }
  .footer__bottom { flex-direction: column; }
  .linkmaker { padding: 18px; }
  .phone--wa, .phone--site { font-size: 8.6px; }
  .planner { border-radius: var(--radius-lg); }
  .planner__side { padding: 18px; }
  .planner__floor { padding: 18px 12px 16px; gap: 16px; }
  .floor__tables { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 4px 6px; }
  .tbl { --seat: 26px; }
  .tbl--round { --size: 144px; --r: 55px; }
  .tbl--round .tbl__surface { width: 74px; height: 74px; margin: -37px 0 0 -37px; }
  .tbl__surface b { font-size: 1.15rem; }
  .tbl__surface em { max-width: 64px; font-size: .5rem; }
  .tbl--head .tbl__seats { gap: 7px; }
  .presets { width: 100%; }
  .presets .seg { flex: 1 1 0; }
  .presets .seg span { width: 100%; justify-content: center; padding: 0 12px; }
  .bento, .corp-mosaic { gap: 10px; }
  .bento { grid-auto-rows: 200px; }
  .bento .tile--xl { grid-row: span 2; }
  .tile { padding: 16px; }
  .tile h3 { font-size: 1.12rem; }
  .tile--xl h3 { font-size: 1.6rem; }
  .tile__cta { display: none; }
  .tile__tags span { font-size: .64rem; padding: 5px 9px; }
  .tile:not(.tile--xl):not(.tile--wide) .tile__more { display: none; }
  .corp-mosaic { grid-auto-rows: 170px; }
  .ctile figcaption { left: 14px; right: 14px; bottom: 12px; }
  .ctile figcaption b { font-size: 1rem; }
  .ctile figcaption span { font-size: .56rem; }
  .studio__fields { grid-template-columns: 1fr; }
  .walk__stage { padding: 16px 14px 18px; gap: 12px; border-radius: var(--radius-lg); }
  .walk__figure { height: 46svh; }
  .walk__caption { min-height: 6.4em; }
  .walk__caption h3 { font-size: 1.25rem; }
  .walk__caption p:last-child { font-size: .92rem; }
  .tl__steps li { grid-template-columns: 36px minmax(0, 1fr); column-gap: 12px; }
  .tl__steps li::before { left: 17.5px; }
  .tl__icon { width: 36px; height: 36px; }
  .tl__steps em { grid-column: 2; text-align: left; }
  .tl__panel .btn { width: 100%; }
  .studio__stage { min-height: 520px; padding-bottom: 36px; }
  .studio__foot .btn { width: 100%; }
  .sem-collage { height: 380px; gap: 10px; }
  .agenda__head { padding: 16px 18px; }
  .session { grid-template-columns: 44px minmax(0, 1fr); gap: 8px 12px; padding: 14px 18px; }
  .session__btn { grid-column: 2; justify-self: start; height: 34px; }
  .agenda__foot { padding: 14px 18px; }
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .step { padding: 20px 18px; }
  .step__num { font-size: 2rem; margin-bottom: 12px; }
  .step h3 { font-size: 1.2rem; }
  .feats { justify-content: flex-start; }
  .feats li { padding: 9px 14px; font-size: .8rem; }
  /* chat: round launcher, panel becomes a bottom sheet */
  .chatw { right: 16px; bottom: max(16px, env(safe-area-inset-bottom)); }
  .chatw__launcher { width: 56px; height: 56px; padding: 0; }
  .chatw__label {
    position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0;
    overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
  }
  .chatw__badge { top: 6px; right: 6px; }
  .chatw__panel {
    position: fixed; left: 0; right: 0; bottom: 0; width: auto; height: min(86svh, 640px);
    border-radius: 22px 22px 0 0; transform-origin: 50% 100%;
  }
  .chatw.is-open .chatw__launcher { opacity: 0; pointer-events: none; }
}

@media (max-width: 380px) {
  .w-count__grid { grid-template-columns: repeat(4, 50px); }
  .btn { padding: 0 20px; letter-spacing: .16em; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; transition-delay: 0s !important; }
  .js .reveal { opacity: 1; transform: none; }
  .marquee { overflow-x: auto; }
  .marquee__track { animation: none; }
}
