@font-face {
  font-family: "Cormorant Club";
  src: url("/assets/fonts/CormorantGaramond-Variable.ttf") format("truetype");
  font-display: swap;
  font-weight: 300 700;
}

@font-face {
  font-family: "Montserrat Club";
  src: url("/assets/fonts/Montserrat-Variable.ttf") format("truetype");
  font-display: swap;
  font-weight: 300 800;
}

:root {
  --paper: #f7efe3;
  --paper-light: #fffaf2;
  --paper-deep: #ebddc9;
  --ink: #16130f;
  --ink-soft: #4f473e;
  --gold: #9b630b;
  --gold-bright: #d59522;
  --gold-light: #f0c56f;
  --navy: #071d35;
  --line: rgba(118, 74, 8, 0.26);
  --surface: rgba(255, 250, 242, 0.78);
  --success: #23633a;
  --error: #a32a26;
  --shadow: 0 24px 80px rgba(73, 43, 8, 0.13);
  --container: min(1240px, calc(100vw - 48px));
  --header-height: 76px;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
  overflow-x: clip;
  background: var(--paper);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(229, 162, 63, 0.13), transparent 26rem),
    radial-gradient(circle at 91% 28%, rgba(255, 255, 255, 0.72), transparent 32rem),
    var(--paper);
  font-family: "Montserrat Club", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: 0.22;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

svg {
  display: block;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1200;
  transform: translateY(-150%);
  padding: 12px 16px;
  color: var(--paper-light);
  background: var(--ink);
  border: 2px solid var(--gold-light);
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--navy);
  outline-offset: 4px;
}

.cursor-aura {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(
    circle 280px at var(--pointer-x, 50%) var(--pointer-y, 40%),
    rgba(226, 164, 54, 0.23),
    rgba(226, 164, 54, 0.08) 30%,
    transparent 72%
  );
  transition: opacity 300ms ease;
  mix-blend-mode: multiply;
}

html.has-pointer .cursor-aura {
  opacity: 1;
}

.mobile-scroll-frame {
  display: none;
}

.club-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 max(24px, calc((100vw - 1440px) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(247, 239, 227, 0.88);
  backdrop-filter: blur(18px) saturate(1.2);
}

.club-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-decoration: none;
  white-space: nowrap;
}

.club-brand-seal {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--ink);
  font-family: "Cormorant Club", Georgia, serif;
  font-size: 25px;
  line-height: 1;
}

.club-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2.2vw, 32px);
}

.club-nav a,
.archive-link {
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-decoration: none;
}

.club-nav a::after,
.archive-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 6px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 240ms var(--ease);
}

.club-nav a:hover::after,
.archive-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.club-header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.gold-button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 23px;
  border: 1px solid var(--gold);
  color: #fffaf1;
  background:
    linear-gradient(100deg, #6f4305, #a66a0d 48%, #7b4b05);
  box-shadow:
    0 10px 30px rgba(136, 84, 8, 0.2),
    inset 0 1px rgba(255, 231, 181, 0.35);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.045em;
  text-decoration: none;
  cursor: pointer;
  touch-action: manipulation;
  transition:
    transform 220ms var(--ease),
    box-shadow 220ms var(--ease),
    filter 220ms var(--ease);
}

.gold-button:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
  box-shadow:
    0 16px 42px rgba(136, 84, 8, 0.26),
    0 0 0 5px rgba(213, 149, 34, 0.08);
}

.gold-button:active {
  transform: translateY(0) scale(0.98);
}

.gold-button svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.gold-button-small {
  min-height: 44px;
  padding: 9px 17px;
  font-size: 12px;
}

.section-shell {
  width: var(--container);
  margin-inline: auto;
  padding-block: clamp(80px, 10vw, 152px);
}

.club-hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100dvh - var(--header-height));
  width: min(1500px, 100%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  align-items: center;
  gap: clamp(36px, 6vw, 96px);
  padding: clamp(56px, 7vw, 108px) max(24px, calc((100vw - 1240px) / 2)) 88px;
  overflow: hidden;
}

.hero-paper {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(255, 251, 245, 0.45), transparent 50%),
    repeating-linear-gradient(0deg, transparent 0 63px, rgba(145, 93, 16, 0.035) 64px);
}

.hero-paper::before,
.hero-paper::after {
  content: "";
  position: absolute;
  width: min(38vw, 570px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(190, 124, 22, 0.13);
}

.hero-paper::before {
  top: -28%;
  right: -14%;
  box-shadow: inset 0 0 80px rgba(223, 157, 54, 0.06);
}

.hero-paper::after {
  left: -26%;
  bottom: -43%;
}

.neural-field {
  position: absolute;
  right: -4%;
  top: 8%;
  z-index: -1;
  width: min(58vw, 840px);
  height: auto;
  opacity: 0.27;
  overflow: visible;
}

.neural-lines {
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.1;
}

.neural-nodes {
  fill: var(--paper-light);
  stroke: var(--gold);
  stroke-width: 1.4;
}

.signal {
  fill: var(--gold-bright);
  filter: drop-shadow(0 0 9px rgba(213, 149, 34, 0.9));
}

.hero-copy {
  position: relative;
  z-index: 4;
  padding-top: 16px;
}

.micro-label,
.section-index,
.section-kicker {
  margin: 0 0 22px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.club-hero h1,
.kinetic-heading {
  margin: 0;
  color: var(--ink);
  font-family: "Cormorant Club", Georgia, serif;
  font-weight: 480;
  letter-spacing: -0.045em;
  line-height: 0.92;
}

.club-hero h1 {
  max-width: 800px;
  font-size: clamp(58px, 7.5vw, 116px);
}

.kinetic-heading {
  font-size: clamp(48px, 6vw, 86px);
}

.kinetic-heading span {
  color: var(--gold);
  font-style: italic;
  font-weight: 430;
}

[data-kinetic] .kinetic-word {
  display: inline-block;
  white-space: nowrap;
}

[data-kinetic] .kinetic-letter {
  display: inline-block;
  transition:
    color 200ms ease,
    transform 280ms var(--ease),
    text-shadow 250ms ease;
}

[data-kinetic] .kinetic-letter:hover,
[data-kinetic] .kinetic-letter.is-near {
  color: var(--gold);
  transform: translateY(-0.07em);
  text-shadow: 0 0 22px rgba(213, 149, 34, 0.34);
}

.hero-lead {
  max-width: 660px;
  margin: 32px 0 0;
  color: var(--ink-soft);
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 38px;
}

.line-link {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
  border-bottom: 1px solid var(--line);
}

.line-link span {
  color: var(--gold);
  transition: transform 180ms ease;
}

.line-link:hover span {
  transform: translateY(4px);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 650px;
  margin-top: 52px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.hero-facts div {
  min-width: 0;
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding-right: 18px;
}

.hero-facts div + div {
  padding-left: 18px;
  border-left: 1px solid var(--line);
}

.hero-facts strong {
  color: var(--gold);
  font-family: "Cormorant Club", Georgia, serif;
  font-size: clamp(28px, 3vw, 44px);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.hero-facts span {
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.07em;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero-emblem {
  position: relative;
  z-index: 3;
  min-height: 650px;
  display: grid;
  place-items: center;
  transform-style: preserve-3d;
  perspective: 900px;
}

.hero-emblem > img {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(520px, 92%);
  height: auto;
  transform: translateX(-50%);
  mix-blend-mode: multiply;
  filter: contrast(1.02) drop-shadow(0 26px 60px rgba(92, 52, 5, 0.11));
}

.emblem-halo {
  position: absolute;
  top: 7%;
  width: 76%;
  aspect-ratio: 1;
  border: 1px solid rgba(170, 105, 12, 0.22);
  border-radius: 50%;
  animation: halo-pulse 4s ease-in-out infinite;
}

.emblem-halo::before,
.emblem-halo::after {
  content: "";
  position: absolute;
  inset: 8%;
  border: 1px dashed rgba(170, 105, 12, 0.18);
  border-radius: inherit;
  animation: orbit-spin 30s linear infinite;
}

.emblem-halo::after {
  inset: 21%;
  border-style: solid;
  animation-direction: reverse;
  animation-duration: 22s;
}

.gold-pass {
  position: absolute;
  right: 2%;
  bottom: 7%;
  width: min(420px, 88%);
  min-height: 226px;
  padding: 26px 30px;
  overflow: hidden;
  color: #201406;
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.58), transparent 24% 70%, rgba(255, 255, 255, 0.45)),
    linear-gradient(135deg, #b87510, #f2d28d 36%, #c68a25 64%, #8c5709);
  border: 1px solid rgba(90, 50, 1, 0.5);
  box-shadow:
    0 30px 65px rgba(93, 53, 7, 0.28),
    inset 0 1px rgba(255, 249, 225, 0.75);
  transform: rotate(-5deg) translateZ(50px);
  transition: transform 260ms var(--ease);
}

.gold-pass::before {
  content: "";
  position: absolute;
  inset: 9px;
  border: 1px solid rgba(63, 37, 3, 0.4);
  pointer-events: none;
}

.gold-pass::after {
  content: "";
  position: absolute;
  width: 120%;
  height: 50px;
  left: -110%;
  top: 34%;
  background: linear-gradient(90deg, transparent, rgba(255, 250, 228, 0.58), transparent);
  transform: rotate(-25deg);
  animation: ticket-shine 5.5s ease-in-out infinite;
}

.pass-top,
.pass-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.18em;
}

.pass-top {
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(60, 35, 4, 0.3);
}

.gold-pass > strong {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 15px;
  font-family: "Cormorant Club", Georgia, serif;
  font-size: 66px;
  font-weight: 520;
  letter-spacing: -0.04em;
  line-height: 0.9;
}

.gold-pass > p {
  position: relative;
  z-index: 1;
  margin: 8px 0 18px;
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-status {
  position: absolute;
  right: max(24px, calc((100vw - 1240px) / 2));
  bottom: 32px;
  z-index: 4;
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 7px;
  color: var(--ink);
  font-size: 12px;
  letter-spacing: 0.06em;
}

.hero-status small {
  grid-column: 1 / -1;
  color: var(--ink-soft);
  font-size: 10px;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 5px rgba(35, 99, 58, 0.12);
}

.after-event {
  position: relative;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-kicker {
  position: absolute;
  top: 28px;
  left: 0;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.after-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(52px, 8vw, 120px);
  align-items: end;
}

.after-copy {
  padding-left: 30px;
  border-left: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 18px;
}

.after-copy p {
  margin: 0;
}

.after-copy p + p {
  margin-top: 24px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: clamp(40px, 7vw, 100px);
  align-items: end;
  margin-bottom: clamp(48px, 7vw, 90px);
}

.section-heading .section-index {
  grid-column: 1 / -1;
  margin-bottom: -16px;
}

.section-heading > p:last-child {
  max-width: 520px;
  margin: 0 0 6px;
  color: var(--ink-soft);
  font-size: 17px;
}

.meeting-ribbon {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 34px;
  border-block: 1px solid var(--line);
}

.meeting-ribbon > div {
  padding: 24px;
}

.meeting-ribbon > div + div {
  border-left: 1px solid var(--line);
}

.meeting-ribbon span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.18em;
}

.meeting-ribbon strong {
  font-family: "Cormorant Club", Georgia, serif;
  font-size: 30px;
  font-weight: 520;
}

.agenda-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.agenda-card {
  min-height: 360px;
  padding: clamp(28px, 4vw, 50px);
  background: rgba(255, 250, 242, 0.62);
  transition:
    background 250ms ease,
    transform 250ms var(--ease);
}

.agenda-card + .agenda-card {
  border-left: 1px solid var(--line);
}

.agenda-card:hover {
  position: relative;
  z-index: 1;
  background: var(--paper-light);
  transform: translateY(-8px);
}

.agenda-card svg {
  width: 48px;
  height: 48px;
  margin-bottom: 54px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.4;
}

.agenda-card > span,
.product-label {
  color: var(--gold);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.agenda-card h3 {
  margin: 12px 0 18px;
  font-family: "Cormorant Club", Georgia, serif;
  font-size: 34px;
  font-weight: 520;
  line-height: 1.05;
}

.agenda-card p {
  margin: 0;
  color: var(--ink-soft);
}

.path {
  position: relative;
}

.path::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 13% -20vw 8%;
  background:
    linear-gradient(90deg, rgba(255, 250, 242, 0.1), rgba(255, 250, 242, 0.76), rgba(255, 250, 242, 0.1));
}

.path-heading {
  margin-bottom: 52px;
}

.journey {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.journey::before {
  content: "";
  position: absolute;
  top: -3px;
  left: 0;
  width: var(--journey-progress, 0%);
  height: 5px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  box-shadow: 0 0 20px rgba(213, 149, 34, 0.42);
  transition: width 100ms linear;
}

.journey-step {
  min-height: 330px;
  padding: 38px 28px;
}

.journey-step + .journey-step {
  border-left: 1px solid var(--line);
}

.journey-step > span {
  color: var(--gold);
  font-family: "Cormorant Club", Georgia, serif;
  font-size: 36px;
}

.journey-step strong {
  display: block;
  min-height: 70px;
  margin-top: 54px;
  font-family: "Cormorant Club", Georgia, serif;
  font-size: 28px;
  font-weight: 560;
  line-height: 1.05;
}

.journey-step p {
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.products {
  border-top: 1px solid var(--line);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.product-card {
  position: relative;
  min-height: 490px;
  padding: clamp(32px, 5vw, 60px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 250, 242, 0.36);
  transition: background 250ms ease;
}

.product-card:hover {
  background: rgba(255, 250, 242, 0.82);
}

.product-card-featured {
  color: var(--paper-light);
  background:
    radial-gradient(circle at 80% 20%, rgba(213, 149, 34, 0.18), transparent 40%),
    var(--ink);
}

.product-card-featured:hover {
  background:
    radial-gradient(circle at 80% 20%, rgba(213, 149, 34, 0.25), transparent 44%),
    #211c16;
}

.product-card-featured .product-label,
.product-card-featured .product-price {
  color: var(--gold-light);
}

.product-card-featured li,
.product-card-featured .product-action {
  color: rgba(255, 250, 242, 0.8);
}

.product-card h3 {
  max-width: 530px;
  margin: 16px 0 6px;
  font-family: "Cormorant Club", Georgia, serif;
  font-size: clamp(40px, 5vw, 62px);
  font-weight: 500;
  line-height: 1;
}

.product-price {
  margin: 20px 0 28px;
  color: var(--gold);
  font-family: "Cormorant Club", Georgia, serif;
  font-size: 46px;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.product-price small {
  font-family: "Montserrat Club", Arial, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-card ul {
  display: grid;
  gap: 10px;
  margin: 0 0 40px;
  padding: 0;
  color: var(--ink-soft);
  list-style: none;
}

.product-card li {
  position: relative;
  padding-left: 22px;
}

.product-card li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 8px;
  height: 1px;
  background: var(--gold);
}

.product-action {
  position: absolute;
  right: clamp(32px, 5vw, 60px);
  bottom: 40px;
  left: clamp(32px, 5vw, 60px);
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 15px;
  border-top: 1px solid currentColor;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.product-action span {
  color: var(--gold);
  font-size: 20px;
  transition: transform 180ms ease;
}

.product-action:hover span {
  transform: translate(4px, -4px);
}

.event-card {
  grid-column: 1 / -1;
  min-height: 340px;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 50px;
  align-items: center;
}

.event-card .product-action {
  left: 350px;
}

.event-date {
  display: grid;
  place-items: center;
  min-height: 220px;
  border-right: 1px solid var(--line);
}

.event-date strong {
  color: var(--gold);
  font-family: "Cormorant Club", Georgia, serif;
  font-size: 120px;
  font-weight: 500;
  line-height: 0.72;
}

.event-date span {
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.24em;
}

.event-card h3 {
  margin-top: 6px;
}

.event-card p:not(.product-price) {
  max-width: 600px;
  margin: 12px 0;
  color: var(--ink-soft);
}

.registration {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.78fr);
  gap: clamp(56px, 9vw, 140px);
  align-items: start;
}

.registration-copy {
  position: sticky;
  top: calc(var(--header-height) + 40px);
}

.registration-copy > p:not(.section-index) {
  max-width: 650px;
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
}

.capacity-meter {
  margin-top: 52px;
  padding: 24px 0;
  border-block: 1px solid var(--line);
}

.capacity-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 14px;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.06em;
}

.capacity-top strong {
  color: var(--gold);
  font-variant-numeric: tabular-nums;
}

.capacity-track {
  height: 5px;
  overflow: hidden;
  background: rgba(116, 72, 9, 0.13);
}

.capacity-track span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transition: width 500ms var(--ease);
}

.capacity-meter p {
  margin: 13px 0 0;
  color: var(--ink-soft);
  font-size: 12px;
}

.registration-panel {
  min-height: 660px;
  padding: clamp(28px, 4vw, 48px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 249, 238, 0.45)),
    var(--paper-light);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.registration-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 34px;
  border: 1px solid var(--line);
}

.registration-options > div {
  padding: 18px;
}

.registration-options > div + div {
  border-left: 1px solid var(--line);
}

.registration-options span {
  display: block;
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.06em;
}

.registration-options strong {
  display: block;
  margin-top: 5px;
  color: var(--gold);
  font-family: "Cormorant Club", Georgia, serif;
  font-size: 26px;
}

.form-field {
  position: relative;
  margin-bottom: 22px;
}

.form-field label {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.form-field input {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(104, 67, 10, 0.3);
  border-radius: 0;
  font-size: 16px;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.form-field input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(155, 99, 11, 0.1);
}

.form-field input[aria-invalid="true"] {
  border-color: var(--error);
}

.field-hint {
  display: block;
  margin-top: 7px;
  color: var(--ink-soft);
  font-size: 11px;
}

.field-error {
  display: block;
  min-height: 18px;
  margin-top: 5px;
  color: var(--error);
  font-size: 12px;
}

.honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.consent-row {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 11px;
  align-items: start;
  color: var(--ink-soft);
  font-size: 12px;
  cursor: pointer;
}

.consent-row input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--gold);
}

.consent-row a {
  text-decoration-color: var(--gold);
}

.form-submit {
  width: 100%;
  margin-top: 18px;
  border-radius: 0;
}

.form-submit[disabled] {
  cursor: wait;
  filter: grayscale(0.5);
  opacity: 0.65;
  transform: none;
}

.form-status {
  min-height: 24px;
  margin: 12px 0 0;
  color: var(--error);
  font-size: 13px;
}

.registration-success {
  min-height: 520px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.registration-success[hidden] {
  display: none;
}

.success-mark {
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  margin-bottom: 34px;
  color: var(--paper-light);
  background: var(--gold);
  font-family: "Cormorant Club", Georgia, serif;
  font-size: 48px;
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
  box-shadow: 0 14px 40px rgba(155, 99, 11, 0.24);
}

.registration-success h3 {
  margin: 5px 0 16px;
  font-family: "Cormorant Club", Georgia, serif;
  font-size: 48px;
  font-weight: 520;
  line-height: 1;
}

.registration-success > p:not(.micro-label, .success-note) {
  margin: 0 0 30px;
  color: var(--ink-soft);
}

.success-note {
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 11px;
}

.faq {
  border-top: 1px solid var(--line);
}

.faq .section-heading {
  grid-template-columns: 1fr;
  margin-bottom: 36px;
}

.faq .section-heading h2 {
  margin: 0;
  font-family: "Cormorant Club", Georgia, serif;
  font-size: clamp(50px, 6vw, 78px);
  font-weight: 500;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 0;
  font-family: "Cormorant Club", Georgia, serif;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 520;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  color: var(--gold);
  font-family: "Montserrat Club", Arial, sans-serif;
  font-size: 25px;
  font-weight: 400;
  transition: transform 200ms ease;
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 780px;
  margin: -4px 0 28px;
  color: var(--ink-soft);
}

.club-footer {
  position: relative;
  width: var(--container);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 48px;
  align-items: end;
  padding-block: 70px 46px;
  border-top: 1px solid var(--line);
}

.club-footer > div:first-child p {
  max-width: 420px;
  margin: 15px 0 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.social-links {
  display: flex;
  gap: 14px;
}

.social-links a {
  position: relative;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  color: var(--gold);
  transform: rotate(45deg);
  transition:
    color 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease,
    transform 220ms var(--ease);
}

.social-links a::before {
  content: "";
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(155, 99, 11, 0.18);
  transition: transform 300ms var(--ease);
}

.social-links a:hover {
  color: var(--paper-light);
  background: var(--gold);
  box-shadow: 0 0 32px rgba(213, 149, 34, 0.42);
  transform: rotate(45deg) translateY(-3px);
}

.social-links a:hover::before {
  transform: rotate(30deg);
}

.social-links svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  transform: rotate(-45deg);
}

.social-links a:first-child svg {
  fill: currentColor;
  stroke: none;
}

.footer-meta {
  justify-self: end;
  display: grid;
  gap: 8px;
  text-align: right;
  color: var(--ink-soft);
  font-size: 11px;
}

.footer-meta a {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
}

.mobile-cta {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 700ms var(--ease),
    transform 700ms var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes halo-pulse {
  0%,
  100% { transform: scale(0.98); opacity: 0.45; }
  50% { transform: scale(1.03); opacity: 0.9; }
}

@keyframes orbit-spin {
  to { transform: rotate(360deg); }
}

@keyframes ticket-shine {
  0%,
  58% { left: -120%; }
  78%,
  100% { left: 120%; }
}

@media (max-width: 1180px) {
  .club-nav {
    display: none;
  }

  .club-hero {
    grid-template-columns: 1fr 0.8fr;
  }

  .hero-emblem {
    min-height: 590px;
  }

  .journey {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .journey-step:nth-child(4) {
    border-left: 0;
  }

  .journey-step:nth-child(n + 4) {
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 900px) {
  :root {
    --container: min(100% - 32px, 720px);
  }

  .archive-link {
    display: none;
  }

  .club-hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 72px;
  }

  .hero-emblem {
    min-height: 590px;
    order: 2;
  }

  .hero-emblem > img {
    width: min(520px, 78vw);
  }

  .gold-pass {
    right: 8%;
  }

  .hero-status {
    position: static;
    order: 3;
    margin-top: -50px;
  }

  .after-grid,
  .section-heading,
  .registration {
    grid-template-columns: 1fr;
  }

  .after-copy {
    padding-left: 0;
    border-left: 0;
  }

  .section-heading .section-index {
    margin-bottom: -12px;
  }

  .meeting-ribbon {
    grid-template-columns: 1fr 1fr;
  }

  .meeting-ribbon > div:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .meeting-ribbon > div:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .agenda-grid {
    grid-template-columns: 1fr;
  }

  .agenda-card {
    min-height: 0;
  }

  .agenda-card + .agenda-card {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .agenda-card svg {
    margin-bottom: 30px;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .event-card {
    grid-column: auto;
    grid-template-columns: 180px 1fr;
  }

  .event-card .product-action {
    left: 270px;
  }

  .registration-copy {
    position: static;
  }

  .club-footer {
    grid-template-columns: 1fr auto;
  }

  .footer-meta {
    grid-column: 1 / -1;
    justify-self: start;
    text-align: left;
  }

  .footer-meta a {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  :root {
    --container: calc(100% - 32px);
    --header-height: 64px;
  }

  body {
    padding-bottom: calc(72px + env(safe-area-inset-bottom));
  }

  .cursor-aura {
    display: none;
  }

  .mobile-scroll-frame {
    --scroll-angle: 0deg;
    position: fixed;
    inset: 4px;
    z-index: 1100;
    display: block;
    pointer-events: none;
    padding: 2px;
    background: conic-gradient(
      from -90deg,
      var(--gold-bright) 0deg var(--scroll-angle),
      rgba(155, 99, 11, 0.08) var(--scroll-angle) 360deg
    );
    -webkit-mask:
      linear-gradient(#000 0 0) content-box,
      linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    filter: drop-shadow(0 0 5px rgba(213, 149, 34, var(--scroll-glow, 0.08)));
  }

  .club-header {
    padding-inline: 16px;
  }

  .club-brand {
    font-size: 10px;
    letter-spacing: 0.12em;
  }

  .club-brand-seal {
    width: 32px;
    height: 32px;
    font-size: 21px;
  }

  .club-header .gold-button {
    min-height: 42px;
    padding: 8px 12px;
    font-size: 10px;
  }

  .club-hero {
    min-height: calc(100dvh - var(--header-height));
    padding: 52px 16px 70px;
  }

  .club-hero h1 {
    font-size: clamp(49px, 16vw, 72px);
    line-height: 0.9;
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
  }

  .hero-actions .gold-button,
  .line-link {
    width: 100%;
  }

  .line-link {
    justify-content: center;
  }

  .hero-facts {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hero-facts div {
    justify-content: space-between;
    padding: 15px 0;
  }

  .hero-facts div + div {
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .hero-facts span {
    text-align: right;
  }

  .hero-emblem {
    min-height: 470px;
    margin-inline: -16px;
  }

  .hero-emblem > img {
    width: min(460px, 104vw);
  }

  .gold-pass {
    right: 5%;
    bottom: 6%;
    width: 90%;
    min-height: 190px;
    padding: 22px;
  }

  .gold-pass > strong {
    font-size: 54px;
  }

  .hero-status {
    margin-top: -16px;
    padding-inline: 6px;
  }

  .section-shell {
    padding-block: 78px;
  }

  .section-kicker {
    display: none;
  }

  .kinetic-heading {
    font-size: clamp(44px, 13vw, 62px);
  }

  .after-grid,
  .section-heading {
    gap: 30px;
  }

  .after-copy,
  .section-heading > p:last-child,
  .registration-copy > p:not(.section-index) {
    font-size: 16px;
  }

  .meeting-ribbon > div {
    padding: 17px 13px;
  }

  .meeting-ribbon strong {
    font-size: 23px;
  }

  .agenda-card {
    padding: 32px 26px;
  }

  .journey {
    grid-template-columns: 1fr;
  }

  .journey-step {
    min-height: 0;
    display: grid;
    grid-template-columns: 54px 1fr;
    column-gap: 16px;
    padding: 26px 0;
  }

  .journey-step + .journey-step,
  .journey-step:nth-child(4) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .journey-step strong {
    min-height: 0;
    margin-top: 5px;
  }

  .journey-step p {
    grid-column: 2;
    margin-top: 8px;
  }

  .product-card {
    min-height: 520px;
    padding: 34px 25px;
  }

  .product-card h3 {
    font-size: 46px;
  }

  .product-price {
    font-size: 39px;
  }

  .product-action {
    right: 25px;
    left: 25px;
  }

  .event-card {
    min-height: 650px;
    display: block;
  }

  .event-date {
    min-height: 180px;
    margin-bottom: 34px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .event-date strong {
    font-size: 100px;
  }

  .event-card .product-action {
    left: 25px;
  }

  .registration-panel {
    min-height: 0;
    padding: 26px 20px;
  }

  .registration-options {
    grid-template-columns: 1fr;
  }

  .registration-options > div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .registration-success {
    min-height: 520px;
  }

  .club-footer {
    grid-template-columns: 1fr;
    align-items: start;
    padding-bottom: 34px;
  }

  .social-links {
    margin: 18px 0;
  }

  .mobile-cta {
    position: fixed;
    right: 12px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    left: 12px;
    z-index: 1050;
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--paper-light);
    background: var(--ink);
    border: 1px solid var(--gold);
    box-shadow: 0 12px 40px rgba(22, 19, 15, 0.35);
    font-size: 12px;
    font-weight: 750;
    letter-spacing: 0.06em;
    text-decoration: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* 2026-07-24: compact cinematic revision */
body {
  overflow-x: clip;
}

.gold-shavings {
  position: fixed;
  inset: 0;
  z-index: 120;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.scroll-film {
  position: relative;
  height: 360svh;
  min-height: 2300px;
  background: #d8c2ad;
}

.scroll-film-sticky {
  --film-progress: 0;
  position: sticky;
  top: var(--header-height);
  height: calc(100svh - var(--header-height));
  min-height: 520px;
  overflow: hidden;
  isolation: isolate;
  background: #d8c2ad;
}

.scroll-film-video,
.scroll-film-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.scroll-film-video {
  z-index: -3;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.92) contrast(1.02);
}

.scroll-film-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(252, 246, 237, 0.9) 0%, rgba(252, 246, 237, 0.48) 34%, rgba(252, 246, 237, 0.04) 64%),
    linear-gradient(0deg, rgba(29, 21, 13, 0.18), transparent 36%),
    radial-gradient(circle at 50% 50%, transparent 34%, rgba(80, 48, 18, 0.1) 100%);
}

.film-topline {
  position: absolute;
  top: calc(var(--header-height) + 24px);
  left: max(32px, calc((100vw - 1240px) / 2));
  right: max(32px, calc((100vw - 1240px) / 2));
  display: flex;
  justify-content: space-between;
  color: rgba(22, 19, 15, 0.72);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.film-copy {
  position: absolute;
  left: max(32px, calc((100vw - 1240px) / 2));
  bottom: 84px;
  width: min(480px, calc(100vw - 64px));
  transform: translate3d(0, 0, 0);
  transition: opacity 90ms linear;
}

.film-copy .micro-label {
  margin: 0 0 16px;
  color: #875408;
}

.film-copy h1 {
  margin: 0;
  max-width: 8ch;
  font-family: "Cormorant Club", Georgia, serif;
  font-size: clamp(68px, 7.2vw, 118px);
  font-weight: 400;
  line-height: 0.75;
  letter-spacing: -0.055em;
}

.film-copy h1 em {
  color: var(--gold);
  font-weight: 400;
}

.film-copy > p:not(.micro-label) {
  max-width: 43ch;
  margin: 26px 0 24px;
  color: #342a20;
  font-size: 15px;
  line-height: 1.6;
}

.film-copy .gold-button {
  min-width: 218px;
}

.film-facts {
  position: absolute;
  right: max(32px, calc((100vw - 1240px) / 2));
  bottom: 82px;
  display: grid;
  grid-template-columns: repeat(3, minmax(96px, 1fr));
  border-top: 1px solid rgba(118, 74, 8, 0.34);
  border-bottom: 1px solid rgba(118, 74, 8, 0.34);
  background: rgba(255, 250, 242, 0.52);
  backdrop-filter: blur(12px);
  transition: opacity 90ms linear;
}

.film-facts > div {
  display: grid;
  gap: 3px;
  padding: 15px 18px;
}

.film-facts > div + div {
  border-left: 1px solid rgba(118, 74, 8, 0.26);
}

.film-facts strong {
  color: #7c4e08;
  font-family: "Cormorant Club", Georgia, serif;
  font-size: 31px;
  font-weight: 600;
  line-height: 1;
}

.film-facts span {
  color: #483d32;
  font-size: 9px;
  font-weight: 650;
  line-height: 1.35;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.film-scroll-cue {
  position: absolute;
  right: 28px;
  top: 50%;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(22, 19, 15, 0.68);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transform: rotate(90deg) translateX(50%);
  transform-origin: right center;
}

.film-scroll-cue i {
  display: block;
  width: 54px;
  height: 1px;
  overflow: hidden;
  background: rgba(118, 74, 8, 0.22);
}

.film-scroll-cue i::after {
  content: "";
  display: block;
  width: 50%;
  height: 100%;
  background: var(--gold);
  animation: scroll-cue 1.8s var(--ease) infinite;
}

.film-progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.22);
}

.film-progress span {
  display: block;
  width: calc(var(--film-progress) * 100%);
  height: 100%;
  background: linear-gradient(90deg, #875408, #e4b34d);
  box-shadow: 0 0 16px rgba(222, 167, 55, 0.72);
}

.film-story {
  position: absolute;
  top: 50%;
  left: max(32px, calc((100vw - 1240px) / 2));
  right: max(32px, calc((100vw - 1240px) / 2));
  z-index: 2;
  max-height: calc(100% - 96px);
  padding: 38px 42px;
  overflow: hidden;
  border: 1px solid rgba(118, 74, 8, 0.28);
  background: rgba(255, 250, 242, 0.88);
  box-shadow: 0 26px 90px rgba(60, 34, 7, 0.14);
  backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, calc(-50% + 34px), 0);
  transition: opacity 90ms linear, transform 90ms linear;
}

.film-story h2 {
  margin: 0;
  font-family: "Cormorant Club", Georgia, serif;
  font-size: clamp(48px, 5vw, 76px);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.04em;
}

.film-story h2 em {
  color: var(--gold);
  font-weight: 400;
}

.film-story .section-index {
  margin: 0 0 24px;
}

.film-story-grid,
.film-meeting-head {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  align-items: end;
  gap: clamp(40px, 7vw, 112px);
}

.film-story-copy {
  padding-bottom: 4px;
}

.film-story-copy p,
.film-meeting-head > p {
  margin: 0;
  color: #40362c;
  font-size: 14px;
  line-height: 1.72;
}

.film-story-copy p + p {
  margin-top: 16px;
}

.film-meeting-ribbon {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 28px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.film-meeting-ribbon > div {
  display: grid;
  gap: 4px;
  padding: 12px 16px;
}

.film-meeting-ribbon > div + div {
  border-left: 1px solid var(--line);
}

.film-meeting-ribbon span,
.film-agenda span {
  color: var(--gold);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.14em;
}

.film-meeting-ribbon strong {
  font-family: "Cormorant Club", Georgia, serif;
  font-size: 22px;
  font-weight: 550;
}

.film-agenda {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.28);
}

.film-agenda > div {
  min-width: 0;
  padding: 20px;
}

.film-agenda > div + div {
  border-left: 1px solid var(--line);
}

.film-agenda h3 {
  margin: 7px 0 8px;
  font-family: "Cormorant Club", Georgia, serif;
  font-size: clamp(25px, 2.2vw, 34px);
  font-weight: 450;
  line-height: 1;
}

.film-agenda p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.55;
}

.film-anchor {
  position: absolute;
  left: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.film-anchor-meeting {
  top: 48%;
}

.film-anchor-inside {
  top: 57%;
}

@keyframes scroll-cue {
  0% { transform: translateX(-110%); }
  60%, 100% { transform: translateX(210%); }
}

.products {
  padding-bottom: 88px;
}

.product-grid-main {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.product-grid-main .product-card {
  min-height: 550px;
}

.product-grid-main .product-card h3 {
  max-width: 100%;
  font-size: clamp(36px, 3.2vw, 50px);
  line-height: 0.98;
  overflow-wrap: normal;
  hyphens: auto;
}

.product-grid-main .product-card:nth-child(3) h3 {
  font-size: clamp(34px, 3vw, 47px);
  letter-spacing: -0.035em;
}

.club-tariffs {
  display: grid;
  gap: 7px;
  margin: 27px 0 24px;
}

.club-tariffs a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 46px;
  padding: 9px 12px;
  border: 1px solid rgba(235, 193, 111, 0.26);
  color: inherit;
  text-decoration: none;
  transition: 180ms ease;
}

.club-tariffs a:hover,
.club-tariffs a:focus-visible {
  border-color: var(--gold-light);
  background: rgba(232, 186, 88, 0.1);
}

.club-tariffs span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.club-tariffs strong {
  color: var(--gold-light);
  font-family: "Cormorant Club", Georgia, serif;
  font-size: 25px;
  font-weight: 500;
}

.masked-price {
  position: relative;
  display: grid;
  width: 100%;
  min-height: 92px;
  margin: 22px 0 14px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(155, 99, 11, 0.2);
  color: var(--ink);
  background: rgba(250, 240, 221, 0.48);
  cursor: pointer;
  place-items: center;
}

.masked-price-value {
  font-family: "Cormorant Club", Georgia, serif;
  font-size: 38px;
  line-height: 1;
}

.masked-price small {
  position: absolute;
  bottom: 6px;
  z-index: 3;
  padding: 2px 7px;
  color: rgba(64, 45, 19, 0.8);
  background: rgba(255, 250, 242, 0.78);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: opacity 180ms ease;
}

.masked-price-dust {
  position: absolute;
  inset: -18px;
  z-index: 2;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 38% 48%, rgba(121, 72, 4, 0.96) 0 5%, rgba(169, 105, 10, 0.92) 22%, rgba(218, 157, 44, 0.72) 42%, transparent 68%),
    radial-gradient(ellipse at 70% 52%, rgba(99, 57, 2, 0.86) 0 4%, rgba(203, 137, 24, 0.78) 28%, transparent 66%);
  filter: blur(1.5px) saturate(1.12);
  opacity: 1;
  transition: opacity 420ms var(--ease), transform 420ms var(--ease), filter 420ms var(--ease);
}

.masked-price-dust i {
  position: absolute;
  width: var(--dust-w);
  height: var(--dust-h);
  left: var(--dust-x);
  top: var(--dust-y);
  border-radius: 50%;
  background: var(--dust-color);
  box-shadow: 0 0 7px var(--dust-color);
  transform: rotate(var(--dust-r));
}

.masked-price:hover .masked-price-dust,
.masked-price:focus-visible .masked-price-dust,
.masked-price.is-revealed .masked-price-dust {
  opacity: 0;
  filter: blur(9px);
  transform: scale(1.18);
}

.masked-price:hover small,
.masked-price:focus-visible small,
.masked-price.is-revealed small {
  opacity: 0;
}

.event-card-wide {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) auto;
  align-items: center;
  gap: 36px;
  margin-top: 16px;
  padding: 30px 34px;
  border: 1px solid var(--line);
  background: rgba(255, 250, 242, 0.52);
}

.event-card-wide h3 {
  margin: 3px 0 7px;
  font-family: "Cormorant Club", Georgia, serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 1;
}

.event-card-wide p {
  margin: 0;
  color: var(--ink-soft);
}

.event-card-action {
  min-width: 220px;
  text-align: right;
}

.event-card-action .product-price {
  margin: 0 0 8px;
}

@media (max-width: 980px) {
  .film-copy {
    bottom: 158px;
  }

  .film-facts {
    left: 24px;
    right: auto;
    bottom: 36px;
  }

  .film-scroll-cue {
    display: none;
  }

  .product-grid-main {
    grid-template-columns: 1fr;
  }

  .product-grid-main .product-card {
    min-height: 0;
  }

  .event-card-wide {
    grid-template-columns: 120px minmax(0, 1fr);
  }

  .event-card-action {
    grid-column: 2;
    text-align: left;
  }

  .film-story {
    left: 24px;
    right: 24px;
    padding: 30px;
  }

  .film-story-grid,
  .film-meeting-head {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .film-story-copy {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
  }

  .film-story-copy p + p {
    margin-top: 0;
  }
}

@media (max-width: 680px) {
  .gold-shavings {
    display: none;
  }

  .scroll-film {
    height: 300svh;
    min-height: 1900px;
  }

  .scroll-film-sticky {
    min-height: 600px;
  }

  .scroll-film-video {
    object-position: 50% 50%;
  }

  .scroll-film-shade {
    background:
      linear-gradient(0deg, rgba(252, 246, 237, 0.98) 0%, rgba(252, 246, 237, 0.8) 31%, transparent 60%),
      linear-gradient(180deg, rgba(252, 246, 237, 0.66), transparent 22%);
  }

  .film-topline {
    top: calc(var(--header-height) + 14px);
    left: 16px;
    right: 16px;
  }

  .film-topline span:last-child {
    display: none;
  }

  .film-copy {
    left: 18px;
    bottom: 250px;
    width: calc(100vw - 36px);
  }

  .film-copy h1 {
    max-width: none;
    font-size: clamp(54px, 17vw, 74px);
    line-height: 0.78;
  }

  .film-copy > p:not(.micro-label) {
    max-width: 34ch;
    margin: 16px 0 18px;
    font-size: 13px;
  }

  .film-copy .gold-button {
    width: 100%;
  }

  .film-facts {
    left: 14px;
    right: 14px;
    bottom: 84px;
    grid-template-columns: repeat(3, 1fr);
  }

  .film-facts > div {
    padding: 11px 10px;
  }

  .film-facts strong {
    font-size: 24px;
  }

  .film-facts span {
    font-size: 7px;
  }

  .event-card-wide {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px;
  }

  .event-card-action {
    grid-column: auto;
    min-width: 0;
  }

  .mobile-cta span {
    margin-left: 0.25em;
    margin-right: 0.25em;
  }

  .film-story {
    top: 50%;
    left: 14px;
    right: 14px;
    max-height: calc(100% - 118px);
    padding: 24px 20px;
  }

  .film-story .section-index {
    margin-bottom: 12px;
  }

  .film-story h2 {
    font-size: clamp(38px, 11vw, 48px);
    line-height: 0.9;
  }

  .film-story-grid,
  .film-meeting-head {
    gap: 18px;
  }

  .film-story-copy {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .film-story-copy p,
  .film-meeting-head > p {
    font-size: 12px;
    line-height: 1.5;
  }

  .film-meeting-ribbon {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 16px;
  }

  .film-meeting-ribbon > div {
    padding: 8px 10px;
  }

  .film-meeting-ribbon > div:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .film-meeting-ribbon > div:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .film-meeting-ribbon strong {
    font-size: 18px;
  }

  .film-agenda {
    grid-template-columns: 1fr;
    margin-top: 14px;
  }

  .film-agenda > div {
    display: grid;
    grid-template-columns: 84px minmax(0, 1fr);
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
  }

  .film-agenda > div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .film-agenda h3 {
    margin: 0;
    font-size: 23px;
  }

  .film-agenda p {
    display: none;
  }

  .film-agenda span {
    font-size: 7px;
  }

  .product-grid-main .product-card h3,
  .product-grid-main .product-card:nth-child(3) h3 {
    font-size: clamp(38px, 12vw, 50px);
    overflow-wrap: anywhere;
  }
}

@media (max-width: 360px) {
  .film-story {
    padding: 18px 14px;
  }

  .film-story h2 {
    font-size: 34px;
  }

  .film-story-meeting .film-meeting-head > p {
    display: none;
  }

  .film-meeting-ribbon {
    margin-top: 12px;
  }

  .film-meeting-ribbon > div {
    padding: 6px 8px;
  }

  .film-meeting-ribbon strong {
    font-size: 16px;
  }

  .film-agenda {
    margin-top: 10px;
  }

  .film-agenda > div {
    padding: 7px 9px;
  }

  .film-agenda h3 {
    font-size: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-film {
    height: auto;
    min-height: 0;
  }

  .scroll-film-sticky {
    position: relative;
    top: 0;
    height: auto;
    min-height: 0;
    padding: 48px 0;
    overflow: visible;
  }

  .scroll-film-video {
    display: none;
  }

  .film-scroll-cue {
    display: none;
  }

  .film-topline,
  .film-copy,
  .film-facts {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    opacity: 1 !important;
    transform: none !important;
  }

  .film-topline {
    margin: 0 20px 46px;
  }

  .film-copy {
    width: min(620px, calc(100% - 40px));
    margin: 0 auto;
  }

  .film-facts {
    width: min(620px, calc(100% - 40px));
    margin: 28px auto;
  }

  .film-story {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    max-height: none;
    margin: 20px;
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: none !important;
  }

  .film-progress {
    display: none;
  }

  .masked-price-dust {
    transition: none;
  }
}
