:root {

  --ink:        #08170D;
  --forest:     #0F2A18;
  --green:      #205030;
  --green-2:    #2C6A40;
  --green-line: #35563E;
  --gold:       #C8B860;
  --gold-lt:    #E4D89A;
  --gold-dim:   #8E8548;
  --leaf:       #70A840;
  --cream:      #F3EFE2;
  --paper:      #FBF9F2;
  --white:      #FFFFFF;

  --bg:            var(--ink);
  --text-on-dark:  #E8E9E2;
  --muted-on-dark: #9FAE9F;
  --text-on-light: #16281B;
  --muted-on-light:#5C6B5E;

  --display: "Archivo", "Arial Black", "Helvetica Neue", sans-serif;
  --body:    "Archivo", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --script:  "Fraunces", Georgia, "Times New Roman", serif;

  --shell:  1280px;
  --gutter: clamp(20px, 5vw, 64px);
  --sect-y: clamp(72px, 9vw, 132px);

  --r-sm: 6px;
  --r-md: 14px;
  --r-lg: 24px;
  --r-pill: 999px;

  --ease: cubic-bezier(.22, .61, .36, 1);
  --ease-out-back: cubic-bezier(.34, 1.4, .64, 1);

  --honeycomb: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='49' viewBox='0 0 28 49'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23C8B860'%3E%3Cpath d='M13.99 9.25l13 7.5v15l-13 7.5L1 31.75v-15l12.99-7.5zM3 17.9v12.7l10.99 6.34 11-6.35V17.9l-11-6.34L3 17.9zM0 15l12.98-7.5V0h-2v6.35L0 12.69v2.3zm0 18.5L12.98 41v8h-2v-6.85L0 35.81V33.5zM15 0v7.5L27.99 15H28v-2.31h-.01L17 6.35V0h-2zm0 49v-8l12.99-7.5H28v2.31h-.01L17 42.15V49h-2z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

*, *::before, *::after { box-sizing: border-box; }

[hidden] { display: none !important; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

[id] { scroll-margin-top: 96px; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text-on-dark);
  font-family: var(--body);
  font-variation-settings: "wdth" 100;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.is-locked { overflow: hidden; }

img, svg, video { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p, figure, blockquote { margin: 0; }
table { border-collapse: collapse; width: 100%; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 3px;
}

.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: absolute; top: -100px; left: 16px; z-index: 999;
  background: var(--gold); color: var(--ink);
  padding: 12px 20px; border-radius: var(--r-sm); font-weight: 700;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 16px; }

.display {
  font-family: var(--display);
  font-variation-settings: "wdth" 122, "wght" 800;
  text-transform: uppercase;
  line-height: .92;
  letter-spacing: -0.015em;
}

.t-hero  { font-size: clamp(2.9rem, 7.6vw, 6.6rem); }
.t-h2    { font-size: clamp(2.1rem, 4.6vw, 3.75rem); }
.t-h3    { font-size: clamp(1.35rem, 2.2vw, 1.85rem); }

.eyebrow {
  font-family: var(--body);
  font-variation-settings: "wdth" 100, "wght" 700;
  font-size: .72rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.lede {
  font-size: clamp(1.02rem, 1.5vw, 1.24rem);
  line-height: 1.68;
  color: var(--muted-on-dark);
  max-width: 60ch;
}
.section--paper .lede,
.section--cream .lede { color: var(--muted-on-light); }

.quote {
  font-family: var(--script);
  font-variation-settings: "opsz" 120, "wght" 400;
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  line-height: 1.34;
  color: var(--gold-lt);
}

.rule-gold {
  height: 1px; border: 0; margin: 0;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: .5;
}

.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.shell--wide { max-width: 1520px; }

.section { padding-block: var(--sect-y); position: relative; }
.section--tight { padding-block: clamp(48px, 6vw, 84px); }
.section--dark  { background: var(--ink); }
.section--forest{ background: var(--forest); }
.section--green { background: var(--green); }
.section--paper { background: var(--paper); color: var(--text-on-light); }
.section--cream { background: var(--cream); color: var(--text-on-light); }

.section--paper .eyebrow,
.section--cream .eyebrow { color: var(--green); }

.sect-head { max-width: 760px; margin-bottom: clamp(36px, 5vw, 64px); }
.sect-head > .eyebrow { margin-bottom: 18px; }
.sect-head > .t-h2 { margin-bottom: 20px; }

.sect-head--split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 72px);
  align-items: end;
}

.stack-sm > * + * { margin-top: 12px; }
.stack-md > * + * { margin-top: 22px; }
.stack-lg > * + * { margin-top: 36px; }

.hive-wash { position: relative; overflow: hidden; isolation: isolate; }
.hive-wash::before {
  content: "";
  position: absolute; inset: 0;
  background-image: var(--honeycomb);
  opacity: .05;
  z-index: -1;
  pointer-events: none;
}
.section--paper.hive-wash::before,
.section--cream.hive-wash::before { opacity: .09; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: var(--r-pill);
  font-family: var(--body);
  font-variation-settings: "wdth" 100, "wght" 700;
  font-size: .82rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: transform .28s var(--ease), background-color .28s var(--ease),
              color .28s var(--ease), border-color .28s var(--ease),
              box-shadow .28s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--gold {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 10px 30px -12px rgba(200, 184, 96, .6);
}
.btn--gold:hover { background: var(--gold-lt); box-shadow: 0 16px 34px -12px rgba(200, 184, 96, .7); }

.btn--ghost {
  border-color: rgba(232, 233, 226, .3);
  color: var(--text-on-dark);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }

.btn--dark {
  background: var(--green);
  color: var(--white);
}
.btn--dark:hover { background: var(--ink); }

.btn--wide { width: 100%; }
.btn--lg { padding: 19px 40px; font-size: .88rem; }
.btn[disabled] { opacity: .4; pointer-events: none; transform: none; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-variation-settings: "wght" 700;
  font-size: .8rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold);
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(200, 184, 96, .35);
  transition: gap .25s var(--ease), border-color .25s var(--ease);
}
.link-arrow:hover { gap: 15px; border-color: var(--gold); }

.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(120% 90% at 50% 44%, #16351F 0%, var(--ink) 60%, #040C07 100%);
}
.loader::after {
  content: "";
  position: absolute; inset: 0;
  background-image: var(--honeycomb);
  opacity: .05;
  pointer-events: none;
}
.loader.is-done {
  opacity: 0;
  visibility: hidden;
  transition: opacity .7s var(--ease), visibility 0s linear .7s;
}

.loader { animation: loaderSafetyExit .5s var(--ease) 6s forwards; }
.loader.is-done { animation: none; }
@keyframes loaderSafetyExit {
  to { opacity: 0; visibility: hidden; pointer-events: none; }
}

.loader__inner {
  position: relative;
  width: min(680px, 88vw);
  display: grid;
  justify-items: center;
  gap: 22px;
  text-align: center;
}

.loader__screen {
  position: relative;
  width: 100%;
  aspect-ratio: 848 / 462;
  border-radius: 16px;
  background: #24462B;
  border: 2px solid var(--gold);
  box-shadow:
    0 50px 110px -50px #000,
    0 0 140px -30px rgba(200, 184, 96, .38),
    0 0 0 7px rgba(8, 23, 13, .85),
    0 0 0 8px rgba(200, 184, 96, .22),
    inset 0 0 70px -18px rgba(0, 0, 0, .6);
  animation: screenIn .9s var(--ease-out-back) both;
}
@keyframes screenIn {
  from { opacity: 0; transform: translateY(14px) scale(.97); }
  to   { opacity: 1; transform: none; }
}

.loader__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 14px;
  transform: translateZ(0);
}

.loader__scan {
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: 14px;
  background:
    linear-gradient(105deg, rgba(255,255,255,.07) 0%, transparent 38%),
    radial-gradient(140% 100% at 50% 0%, transparent 55%, rgba(4,12,7,.4) 100%);
}

.loader__bar {
  width: 62%;
  max-width: 320px;
  height: 2px;
  border-radius: 2px;
  background: rgba(200, 184, 96, .16);
  overflow: hidden;
}

.loader__bar i {
  display: block;
  height: 100%;
  width: 100%;
  transform-origin: left center;
  transform: scaleX(0);
  background: linear-gradient(90deg, var(--gold-dim), var(--gold));
  animation: barFill 2.6s var(--ease) forwards;
  will-change: transform;
}
@keyframes barFill {
  0%   { transform: scaleX(0); }
  55%  { transform: scaleX(.68); }
  100% { transform: scaleX(1); }
}

.loader__type { animation: screenIn .9s var(--ease) .18s both; }
.loader__word {
  font-family: var(--display);
  font-variation-settings: "wdth" 122, "wght" 800;
  text-transform: uppercase;
  font-size: 1.3rem;
  letter-spacing: .2em;
  color: var(--white);
  line-height: 1;
}
.loader__sub {
  font-size: .64rem;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 9px;
}

@media (max-width: 620px) {
  .loader__inner { gap: 18px; }
  .loader__word { font-size: 1.05rem; }
}

.masthead {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  transition: background-color .4s var(--ease), box-shadow .4s var(--ease),
              padding .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
  padding-block: 18px;
}
.masthead.is-stuck {
  background: rgba(8, 23, 13, .9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: rgba(200, 184, 96, .18);
  padding-block: 10px;
  box-shadow: 0 18px 40px -30px #000;
}

.masthead__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.crest {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.crest__badge {
  width: 64px; height: 64px;
  flex-shrink: 0;
  filter: drop-shadow(0 8px 22px rgba(0, 0, 0, .55));
  transition: width .4s var(--ease), height .4s var(--ease);
}
.crest__badge img {
  width: 100%; height: 100%;
  object-fit: contain;

  image-rendering: auto;
}
.masthead.is-stuck .crest__badge { width: 50px; height: 50px; }

@media (max-width: 720px) {
  .crest__badge { width: 54px; height: 54px; }
  .masthead.is-stuck .crest__badge { width: 46px; height: 46px; }
}

.crest__type { display: grid; gap: 2px; }
.crest__name {
  font-family: var(--display);
  font-variation-settings: "wdth" 122, "wght" 800;
  text-transform: uppercase;
  font-size: 1.02rem;
  letter-spacing: .05em;
  line-height: 1;
  color: var(--white);
}
.crest__tag {
  font-size: .55rem;
  letter-spacing: .27em;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1;
}

.nav { display: flex; align-items: center; gap: 6px; }
.nav__link {
  position: relative;
  padding: 9px 14px;
  font-size: .78rem;
  font-variation-settings: "wght" 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-on-dark);
  border-radius: var(--r-pill);
  transition: color .25s var(--ease);
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 3px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav__link:hover { color: var(--gold); }
.nav__link:hover::after { transform: scaleX(1); }
.nav__link.is-current { color: var(--gold); }
.nav__link.is-current::after { transform: scaleX(1); }

.nav__link[data-soon]::before {
  content: "";
  position: absolute;
  top: 6px; right: 6px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--leaf);
  opacity: .85;
}

.masthead__cta { display: flex; align-items: center; gap: 12px; }

.burger {
  display: none;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(232, 233, 226, .25);
  place-content: center;
  place-items: center;
}
.burger span {
  display: block;
  width: 18px; height: 1.5px;
  background: var(--text-on-dark);
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.burger span + span { margin-top: 5px; }
.burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.drawer {
  position: fixed;
  inset: 0;
  z-index: 890;
  background: var(--ink);
  padding: 108px var(--gutter) 40px;
  display: grid;
  align-content: start;
  gap: 4px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity .35s var(--ease), transform .35s var(--ease), visibility 0s linear .35s;
}
.drawer.is-open { opacity: 1; visibility: visible; transform: none; transition-delay: 0s; }
.drawer::before {
  content: "";
  position: absolute; inset: 0;
  background-image: var(--honeycomb);
  opacity: .05;
  pointer-events: none;
}
.drawer__link {
  position: relative;
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-family: var(--display);
  font-variation-settings: "wdth" 112, "wght" 800;
  text-transform: uppercase;
  font-size: clamp(1.5rem, 7.2vw, 2.4rem);
  line-height: 1.2;
  padding-block: 10px;
  border-bottom: 1px solid rgba(200, 184, 96, .14);
  color: var(--text-on-dark);
}
.drawer__link.is-current { color: var(--gold); }
.drawer__note {
  flex-shrink: 0;
  font-family: var(--body);
  font-variation-settings: "wdth" 100, "wght" 600;
  font-size: .55rem;
  letter-spacing: .2em;
  color: var(--leaf);
}
.drawer__foot { margin-top: 28px; display: grid; gap: 14px; }

.hero {
  position: relative;
  min-height: min(94vh, 900px);
  display: flex;
  align-items: flex-end;
  padding-top: 150px;
  padding-bottom: clamp(56px, 8vw, 100px);
  overflow: hidden;
  isolation: isolate;
}
.hero--short { min-height: min(52vh, 520px); align-items: center; padding-bottom: clamp(40px, 5vw, 68px); }

.hero--short + .section { padding-top: clamp(40px, 4.5vw, 68px); }

.hero__scene { position: absolute; inset: 0; z-index: -2; }
.hero__scene svg { width: 100%; height: 100%; object-fit: cover; }

.hero__veil {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg, rgba(8,23,13,.86) 0%, rgba(8,23,13,.34) 52%, rgba(8,23,13,.05) 100%),
    linear-gradient(180deg, rgba(8,23,13,.8) 0%, rgba(8,23,13,.22) 32%, rgba(8,23,13,.72) 74%, var(--ink) 100%);
}
.hero__grain {
  position: absolute; inset: 0; z-index: -1; opacity: .022; pointer-events: none;
  background-image: var(--honeycomb);
}

.hero__content { position: relative; max-width: 900px; }
.hero__content > .eyebrow { margin-bottom: 22px; }
.hero__title { margin-bottom: 26px; }
.hero__title .amp { color: var(--gold); }
.hero__lede { margin-bottom: 38px; color: #C6D2C6; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

.hero__scroll {
  position: absolute;
  right: var(--gutter);
  bottom: clamp(56px, 8vw, 100px);
  display: grid;
  gap: 12px;
  justify-items: center;
  font-size: .6rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--muted-on-dark);
  writing-mode: vertical-rl;
}
.hero__scroll i {
  display: block;
  width: 1px; height: 54px;
  background: linear-gradient(180deg, var(--gold), transparent);
}

.strip {
  background: var(--gold);
  color: var(--ink);
  padding-block: 14px;
  overflow: hidden;
  border-block: 1px solid rgba(8,23,13,.15);
}
.strip__track {
  display: flex;
  gap: 46px;
  width: max-content;
  animation: marquee 38s linear infinite;
}
.strip__item {
  display: inline-flex;
  align-items: center;
  gap: 46px;
  font-variation-settings: "wght" 700;
  font-size: .74rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  white-space: nowrap;
}
.strip__item::after {
  content: "";
  width: 6px; height: 6px;
  background: var(--ink);
  transform: rotate(45deg);
  opacity: .5;
}
@keyframes marquee { to { transform: translateX(-50%); } }
.strip:hover .strip__track { animation-play-state: paused; }

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--green-line);
}
.stat {
  padding: clamp(26px, 3.4vw, 44px) clamp(18px, 2.4vw, 32px);
  border-right: 1px solid var(--green-line);
  border-bottom: 1px solid var(--green-line);
}
.stat:last-child { border-right: 0; }
.stat__num {
  font-family: var(--display);
  font-variation-settings: "wdth" 122, "wght" 800;
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
  line-height: 1;
  color: var(--white);
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.stat__num sup {
  font-size: .34em;
  color: var(--gold);
  font-variation-settings: "wght" 700;
  top: -.9em;
}
.stat__label {
  margin-top: 12px;
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted-on-dark);
}

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 26px); }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(20px, 3vw, 46px); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(14px, 1.8vw, 22px); }

.card {
  position: relative;
  padding: clamp(26px, 3vw, 38px);
  border-radius: var(--r-md);
  background: linear-gradient(160deg, rgba(32,80,48,.42), rgba(15,42,24,.55));
  border: 1px solid var(--green-line);
  overflow: hidden;
  transition: transform .4s var(--ease), border-color .4s var(--ease), background-color .4s var(--ease);
}
.card:hover { transform: translateY(-5px); border-color: rgba(200,184,96,.45); }
.card__icon {
  width: 46px; height: 46px;
  margin-bottom: 22px;
  color: var(--gold);
}
.card__title {
  font-family: var(--display);
  font-variation-settings: "wdth" 116, "wght" 800;
  text-transform: uppercase;
  font-size: 1.16rem;
  letter-spacing: .01em;
  color: var(--white);
  margin-bottom: 12px;
}
.card__text { font-size: .95rem; color: var(--muted-on-dark); line-height: 1.62; }
.card__link { margin-top: 20px; display: inline-block; }

.board {
  background:
    linear-gradient(178deg, rgba(255,255,255,.05), transparent 24%),
    linear-gradient(155deg, #21472C 0%, #14301C 55%, #0C2113 100%);
  border: 1px solid rgba(200,184,96,.32);
  border-radius: var(--r-md);
  padding: clamp(24px, 3.4vw, 46px);
  box-shadow: 0 40px 90px -50px #000, inset 0 1px 0 rgba(255,255,255,.06);
  position: relative;
  overflow: hidden;
}
.board::before {
  content: "";
  position: absolute; inset: 10px;
  border: 1px solid rgba(200,184,96,.18);
  border-radius: 6px;
  pointer-events: none;
}

.board__head {
  text-align: center;
  padding-bottom: 22px;
  margin-bottom: 6px;
  border-bottom: 1px solid rgba(200,184,96,.28);
}
.board__title {
  font-family: var(--display);
  font-variation-settings: "wdth" 122, "wght" 800;
  text-transform: uppercase;
  font-size: clamp(1.15rem, 2.2vw, 1.7rem);
  letter-spacing: .16em;
  color: var(--gold);
}
.board__sub {
  margin-top: 8px;
  font-size: .68rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--muted-on-dark);
}

.board__list { display: grid; }
.bay-row {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) auto auto;
  align-items: center;
  gap: clamp(12px, 2vw, 26px);
  padding: clamp(15px, 1.9vw, 22px) clamp(4px, 1vw, 14px);
  border-bottom: 1px solid rgba(200,184,96,.14);
  transition: background-color .3s var(--ease), padding-left .3s var(--ease);
}
.bay-row:last-child { border-bottom: 0; }
.bay-row:hover { background: rgba(200,184,96,.06); }

.bay-row__no {
  font-family: var(--script);
  font-variation-settings: "opsz" 144, "wght" 300;
  font-size: 1.5rem;
  color: var(--gold-dim);
  line-height: 1;
}
.bay-row__name {
  display: block;
  font-family: var(--display);
  font-variation-settings: "wdth" 120, "wght" 800;
  text-transform: uppercase;
  font-size: clamp(1.15rem, 2.6vw, 1.9rem);
  letter-spacing: .02em;
  color: var(--white);
  line-height: 1;
}
.bay-row__first {
  display: block;
  font-family: var(--body);
  font-variation-settings: "wdth" 100, "wght" 500;
  text-transform: none;
  letter-spacing: .02em;
  font-size: .76rem;
  color: var(--muted-on-dark);
  margin-top: 7px;
}
.bay-row__year {
  font-family: var(--script);
  font-variation-settings: "opsz" 144, "wght" 400;
  font-size: clamp(1.1rem, 2.2vw, 1.6rem);
  color: var(--gold);
  letter-spacing: .04em;
}
.bay-row__flag {
  font-size: .58rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--leaf);
  border: 1px solid rgba(112,168,64,.4);
  border-radius: var(--r-pill);
  padding: 5px 11px;
  white-space: nowrap;
}
.bay-row__flag--empty { visibility: hidden; }

.board__foot {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(200,184,96,.28);
  text-align: center;
  font-size: .78rem;
  color: var(--muted-on-dark);
}

.price-card {
  position: relative;
  background: var(--white);
  border: 1px solid rgba(22,40,27,.12);
  border-radius: var(--r-md);
  padding: clamp(24px, 2.6vw, 34px);
  display: flex;
  flex-direction: column;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.price-card:hover {
  transform: translateY(-6px);
  border-color: var(--green);
  box-shadow: 0 30px 60px -40px rgba(22,40,27,.5);
}
.price-card--flag { border-color: var(--gold); box-shadow: 0 24px 50px -38px rgba(22,40,27,.45); }
.price-card__tag {
  position: absolute;
  top: -11px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--ink);
  font-size: .6rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-variation-settings: "wght" 700;
  padding: 5px 14px;
  border-radius: var(--r-pill);
  white-space: nowrap;
}
.price-card__who {
  font-family: var(--display);
  font-variation-settings: "wdth" 118, "wght" 800;
  text-transform: uppercase;
  font-size: 1.1rem;
  color: var(--green);
  letter-spacing: .04em;
}
.price-card__amt {
  display: flex; align-items: baseline; gap: 3px;
  margin-top: 16px;
  font-family: var(--display);
  font-variation-settings: "wdth" 122, "wght" 800;
  font-size: clamp(2.3rem, 4vw, 3rem);
  line-height: 1;
  color: var(--text-on-light);
}
.price-card__cur { font-size: .42em; color: var(--muted-on-light); }
.price-card__per { font-size: .26em; color: var(--muted-on-light); letter-spacing: .1em; text-transform: uppercase; margin-left: 4px; }
.price-card__note {
  margin-top: 14px;
  font-size: .82rem;
  color: var(--muted-on-light);
  line-height: 1.55;
  padding-top: 14px;
  border-top: 1px solid rgba(22,40,27,.1);
  flex: 1;
}
.price-card__cta { margin-top: 22px; }

.offers { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(16px, 2vw, 24px); }
.offer {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: clamp(22px, 2.4vw, 30px);
  border-radius: var(--r-md);
  background: linear-gradient(150deg, rgba(112,168,64,.14), rgba(32,80,48,.1));
  border: 1px dashed rgba(112,168,64,.45);
}
.offer__day {
  font-family: var(--display);
  font-variation-settings: "wdth" 122, "wght" 800;
  font-size: 2.1rem;
  line-height: .85;
  color: var(--leaf);
  text-align: center;
  flex-shrink: 0;
  min-width: 62px;
}
.offer__day small { display: block; font-size: .3em; letter-spacing: .18em; margin-top: 8px; color: var(--muted-on-dark); }
.offer__title {
  font-variation-settings: "wght" 700;
  color: var(--white);
  font-size: 1.02rem;
  margin-bottom: 6px;
}
.offer__text { font-size: .88rem; color: var(--muted-on-dark); line-height: 1.55; }

.data-table { font-size: .95rem; }
.data-table caption {
  text-align: left;
  padding-bottom: 16px;
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted-on-light);
}
.data-table th, .data-table td {
  text-align: left;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(22,40,27,.12);
}
.data-table th {
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--green);
  font-variation-settings: "wght" 700;
  border-bottom-color: var(--green);
}
.data-table td:last-child {
  font-variation-settings: "wght" 700;
  color: var(--text-on-light);
}
.data-table tbody tr:hover { background: rgba(32,80,48,.05); }

.faq { border-top: 1px solid rgba(200,184,96,.2); }
.faq__item { border-bottom: 1px solid rgba(200,184,96,.2); }
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  text-align: left;
  padding: 26px 4px;
  font-family: var(--display);
  font-variation-settings: "wdth" 112, "wght" 700;
  text-transform: uppercase;
  font-size: clamp(.95rem, 1.6vw, 1.15rem);
  letter-spacing: .03em;
  color: var(--text-on-dark);
  transition: color .25s var(--ease);
}
.faq__q:hover { color: var(--gold); }
.faq__sign {
  position: relative;
  flex-shrink: 0;
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(200,184,96,.4);
}
.faq__sign::before, .faq__sign::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  background: var(--gold);
  transform: translate(-50%, -50%);
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.faq__sign::before { width: 11px; height: 1.5px; }
.faq__sign::after  { width: 1.5px; height: 11px; }
.faq__item.is-open .faq__sign::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }

.faq__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .4s var(--ease);
}
.faq__item.is-open .faq__a { grid-template-rows: 1fr; }
.faq__a > div { overflow: hidden; }
.faq__a p {
  padding: 0 60px 28px 4px;
  color: var(--muted-on-dark);
  font-size: .96rem;
  line-height: 1.68;
  max-width: 72ch;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 80px);
  align-items: center;
}
.split--flip .split__media { order: -1; }
.split__media {
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--green-line);
  background: var(--forest);
  aspect-ratio: 4 / 3;
}
.split__media svg { width: 100%; height: 100%; }

.split__video { width: 100%; height: 100%; object-fit: cover; display: block; }

.tick-list { display: grid; gap: 14px; }
.tick-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: .97rem;
  color: var(--muted-on-dark);
}
.tick-list svg { flex-shrink: 0; width: 19px; height: 19px; color: var(--leaf); margin-top: 3px; }
.section--paper .tick-list li,
.section--cream .tick-list li { color: var(--muted-on-light); }

.filterbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: clamp(28px, 3.5vw, 44px);
}
.filterbar__btn {
  padding: 11px 22px;
  border-radius: var(--r-pill);
  border: 1px solid var(--green-line);
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-variation-settings: "wght" 600;
  color: var(--muted-on-dark);
  transition: all .28s var(--ease);
}
.filterbar__btn:hover { border-color: var(--gold); color: var(--gold); }
.filterbar__btn.is-active { background: var(--gold); border-color: var(--gold); color: var(--ink); }

.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(12px, 1.4vw, 18px);
}
.shot {
  position: relative;
  grid-column: span 4;
  aspect-ratio: 4 / 3;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--green-line);
  background: var(--forest);
  cursor: zoom-in;
  transition: transform .45s var(--ease), border-color .45s var(--ease), opacity .35s var(--ease);
}
.shot--wide { grid-column: span 8; aspect-ratio: 16 / 9; }
.shot--tall { grid-column: span 4; aspect-ratio: 3 / 4; }
.shot:hover { transform: translateY(-4px); border-color: rgba(200,184,96,.5); }
.shot svg { width: 100%; height: 100%; }
.shot.is-hidden { display: none; }

.shot__cap {
  position: absolute;
  inset: auto 0 0 0;
  padding: 44px 20px 18px;
  background: linear-gradient(180deg, transparent, rgba(8,23,13,.92));
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}

.shot--locked { cursor: default; }
.shot--locked:hover { transform: none; border-color: var(--green-line); }
.shot--locked > svg {
  filter: blur(6px);
  opacity: .62;
  transform: scale(1.1);
}
.shot__seal {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 12px;
  text-align: center;
  padding: 20px;
  background: radial-gradient(62% 62% at 50% 50%, rgba(8,23,13,.58), rgba(8,23,13,.88));
}
.shot__seal > svg { width: 30px; height: 30px; color: var(--gold); }

.shot__seal-soon {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 13px;
  border-radius: var(--r-pill);
  background: rgba(200, 184, 96, .14);
  border: 1px solid rgba(200, 184, 96, .4);
  color: var(--gold);
  font-size: .58rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-variation-settings: "wght" 700;
}
.shot__seal-word {
  font-family: var(--display);
  font-variation-settings: "wdth" 116, "wght" 800;
  text-transform: uppercase;
  font-size: .95rem;
  letter-spacing: .1em;
  color: var(--white);
  line-height: 1.2;
}
.shot__seal-tag {
  font-size: .58rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
}
.shot__title {
  font-variation-settings: "wght" 700;
  font-size: .92rem;
  color: var(--white);
}
.shot__tag {
  font-size: .58rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 950;
  background: rgba(4, 12, 7, .95);
  display: grid;
  place-items: center;
  padding: clamp(16px, 5vw, 60px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s var(--ease), visibility 0s linear .35s;
}
.lightbox.is-open { opacity: 1; visibility: visible; transition-delay: 0s; }
.lightbox__frame {
  width: min(1000px, 100%);
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid rgba(200,184,96,.3);
  background: var(--forest);
  transform: scale(.96);
  transition: transform .4s var(--ease-out-back);
}
.lightbox.is-open .lightbox__frame { transform: scale(1); }
.lightbox__cap {
  padding: 18px 24px;
  border-top: 1px solid var(--green-line);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}
.lightbox__close {
  position: absolute;
  top: 22px; right: 22px;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(232,233,226,.28);
  display: grid;
  place-items: center;
  color: var(--text-on-dark);
  transition: all .25s var(--ease);
}
.lightbox__close:hover { border-color: var(--gold); color: var(--gold); transform: rotate(90deg); }

.soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 9px 20px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(112,168,64,.5);
  background: rgba(112,168,64,.1);
  font-size: .68rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  font-variation-settings: "wght" 700;
  color: var(--leaf);
}
.soon-badge i {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--leaf);
  animation: pulse 2.2s var(--ease) infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(112,168,64,.6); }
  60%      { opacity: .55; box-shadow: 0 0 0 9px rgba(112,168,64,0); }
}

.locked {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--green-line);
  background: linear-gradient(160deg, rgba(32,80,48,.35), rgba(15,42,24,.6));
}
.locked__inner { padding: clamp(22px, 3vw, 36px); filter: blur(5px); opacity: .5; user-select: none; pointer-events: none; }
.locked__seal {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  gap: 16px;
  text-align: center;
  padding: 24px;
  background: radial-gradient(60% 60% at 50% 50%, rgba(8,23,13,.7), rgba(8,23,13,.92));
}
.locked__seal svg { width: 40px; height: 40px; color: var(--gold); }
.locked__word {
  font-family: var(--display);
  font-variation-settings: "wdth" 118, "wght" 800;
  text-transform: uppercase;
  font-size: 1.05rem;
  letter-spacing: .14em;
  color: var(--white);
}

.lb-preview { display: grid; gap: 2px; }
.lb-preview__row {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 13px 6px;
  border-bottom: 1px solid rgba(200,184,96,.12);
}
.lb-preview__pos { font-family: var(--script); font-size: 1.15rem; color: var(--gold-dim); }
.lb-preview__name { font-variation-settings: "wght" 600; color: var(--white); }
.lb-preview__val { font-family: var(--script); font-size: 1.1rem; color: var(--gold); }

.notify {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  max-width: 540px;
}
.notify input {
  flex: 1;
  min-width: 220px;
  padding: 15px 20px;
  border-radius: var(--r-pill);
  border: 1px solid var(--green-line);
  background: rgba(8,23,13,.6);
  color: var(--text-on-dark);
}
.notify input::placeholder { color: #6E7E70; }
.notify input:focus { border-color: var(--gold); outline: none; }

.timeline { display: grid; gap: 0; }
.tl-item {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  gap: clamp(16px, 3vw, 40px);
  padding-block: clamp(22px, 2.6vw, 32px);
  border-bottom: 1px solid rgba(200,184,96,.16);
}
.tl-item:first-child { border-top: 1px solid rgba(200,184,96,.16); }
.tl-when {
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  padding-top: 6px;
}
.tl-title {
  font-family: var(--display);
  font-variation-settings: "wdth" 116, "wght" 800;
  text-transform: uppercase;
  font-size: clamp(1.05rem, 2vw, 1.4rem);
  color: var(--white);
  margin-bottom: 9px;
}
.tl-text { font-size: .94rem; color: var(--muted-on-dark); max-width: 62ch; }

.field { display: grid; gap: 9px; }
.field__label {
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-variation-settings: "wght" 700;
  color: var(--green);
}
.section--dark .field__label,
.section--forest .field__label { color: var(--gold); }

.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field input[type="date"],
.field input[type="number"],
.field select,
.field textarea {
  width: 100%;
  padding: 14px 17px;
  border-radius: var(--r-sm);
  border: 1px solid rgba(22,40,27,.2);
  background: var(--white);
  color: var(--text-on-light);
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(32,80,48,.14);
}
.field__hint { font-size: .78rem; color: var(--muted-on-light); }

.check {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  cursor: pointer;
  font-size: .9rem;
  line-height: 1.55;
}
.check input { margin-top: 3px; width: 17px; height: 17px; accent-color: var(--green); flex-shrink: 0; }

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: start;
}
.info-list { display: grid; gap: 2px; }
.info-row {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 18px;
  padding-block: 20px;
  border-bottom: 1px solid rgba(200,184,96,.16);
}
.info-row:first-child { border-top: 1px solid rgba(200,184,96,.16); }
.info-row svg { width: 22px; height: 22px; color: var(--gold); margin-top: 3px; }
.info-row__label {
  font-size: .64rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted-on-dark);
  margin-bottom: 6px;
}
.info-row__value { font-size: 1rem; color: var(--white); font-variation-settings: "wght" 600; }
.info-row__value a:hover { color: var(--gold); }
.info-row__value span { display: block; font-variation-settings: "wght" 400; color: var(--muted-on-dark); font-size: .9rem; }

.to-map { display: block; }
.to-map__cue {
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  font-size: .64rem !important;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold) !important;
  font-variation-settings: "wght" 700 !important;
}
.to-map__cue svg { width: 13px; height: 13px; transition: transform .25s var(--ease); }
.to-map:hover .to-map__cue svg { transform: translateY(3px); }
.to-map:hover span:first-of-type { color: var(--gold-lt); }

.map {
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--green-line);
  aspect-ratio: 16 / 10;
  position: relative;
  background: var(--forest);
}
.map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.4) contrast(1.05); }
.map__fallback {
  position: absolute;
  inset: auto 0 0 0;
  display: grid;
  justify-items: center;
  gap: 10px;
  text-align: center;
  padding: 70px 24px 22px;
  color: var(--muted-on-dark);
  background: linear-gradient(180deg, transparent, rgba(8,23,13,.94) 55%);
}
.map__fallback p { margin: 0; }

.hours { display: grid; gap: 1px; }
.hours__row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(200,184,96,.12);
  font-size: .93rem;
}
.hours__row.is-today { color: var(--gold); font-variation-settings: "wght" 700; }
.hours__day { color: var(--muted-on-dark); }
.hours__row.is-today .hours__day { color: var(--gold); }

.hours__val {
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
  color: var(--text-on-dark);
  font-variation-settings: "wght" 500;
}
.hours__row.is-today .hours__val { color: var(--gold); }

.socials { display: flex; gap: 12px; }
.socials a {
  width: 46px; height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--green-line);
  color: var(--text-on-dark);
  transition: all .28s var(--ease);
}
.socials a:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }
.socials svg { width: 19px; height: 19px; }

.placeholder-flag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .62rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #D8B23C;
  border: 1px dashed rgba(216,178,60,.5);
  border-radius: var(--r-pill);
  padding: 5px 12px;
  margin-left: 8px;
  vertical-align: middle;
}

.soon-tag,
.info-row__value .soon-tag {
  display: inline-flex;
  align-items: center;
  font-size: .62rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-variation-settings: "wght" 600;
  color: #D8B23C;
  border: 1px dashed rgba(216,178,60,.5);
  border-radius: var(--r-pill);
  padding: 4px 11px;
  margin-bottom: 8px;
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 372px;
  gap: clamp(24px, 3.4vw, 52px);
  align-items: start;
}

.steps {
  display: flex;
  gap: 6px;
  margin-bottom: clamp(26px, 3vw, 40px);
  flex-wrap: wrap;
}
.step-chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 16px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(22,40,27,.16);
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-variation-settings: "wght" 600;
  color: var(--muted-on-light);
  transition: all .3s var(--ease);
}
.step-chip i {
  width: 20px; height: 20px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(22,40,27,.1);
  font-style: normal;
  font-size: .64rem;
  font-variation-settings: "wght" 700;
}
.step-chip.is-active { background: var(--green); border-color: var(--green); color: var(--white); }
.step-chip.is-active i { background: var(--gold); color: var(--ink); }
.step-chip.is-done { border-color: var(--leaf); color: var(--green); }
.step-chip.is-done i { background: var(--leaf); color: var(--white); }

.step-panel { display: none; }
.step-panel.is-active { display: block; animation: panelIn .45s var(--ease) both; }
@keyframes panelIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

.step-panel__head { margin-bottom: 26px; }
.step-panel__no {
  font-family: var(--script);
  font-variation-settings: "opsz" 144, "wght" 300;
  font-size: 1rem;
  color: var(--gold-dim);
  letter-spacing: .1em;
}
.step-panel__title {
  font-family: var(--display);
  font-variation-settings: "wdth" 120, "wght" 800;
  text-transform: uppercase;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--text-on-light);
  margin-block: 8px 10px;
  line-height: 1;
}
.step-panel__hint { font-size: .93rem; color: var(--muted-on-light); max-width: 60ch; }

.opt-grid { display: grid; gap: 14px; }
.opt-grid--3 { grid-template-columns: repeat(3, 1fr); }
.opt-grid--4 { grid-template-columns: repeat(4, 1fr); }
.opt-grid--2 { grid-template-columns: repeat(2, 1fr); }

.opt {
  position: relative;
  display: block;
  cursor: pointer;
}
.opt input { position: absolute; opacity: 0; width: 0; height: 0; }
.opt__face {
  height: 100%;
  padding: 20px;
  border-radius: var(--r-md);
  border: 1.5px solid rgba(22,40,27,.15);
  background: var(--white);
  transition: all .28s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.opt:hover .opt__face { border-color: var(--green-2); transform: translateY(-3px); }
.opt input:checked + .opt__face {
  border-color: var(--green);
  background: linear-gradient(160deg, rgba(32,80,48,.08), rgba(200,184,96,.1));
  box-shadow: 0 0 0 3px rgba(32,80,48,.12);
}
.opt input:focus-visible + .opt__face { outline: 2px solid var(--gold); outline-offset: 2px; }
.opt input:disabled + .opt__face { opacity: .38; cursor: not-allowed; }
.opt:has(input:disabled) { cursor: not-allowed; }

.opt__icon { width: 30px; height: 30px; color: var(--green); margin-bottom: 4px; }
.opt__name {
  font-family: var(--display);
  font-variation-settings: "wdth" 116, "wght" 800;
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: .02em;
  color: var(--text-on-light);
  line-height: 1.1;
}
.opt__meta { font-size: .8rem; color: var(--muted-on-light); line-height: 1.45; }
.opt__price {
  margin-top: auto;
  padding-top: 10px;
  font-variation-settings: "wght" 700;
  color: var(--green);
  font-size: .92rem;
}
.opt__pill {
  align-self: flex-start;
  order: -1;
  margin-bottom: 2px;
  font-size: .55rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  background: rgba(112,168,64,.15);
  color: #3F7A21;
  font-variation-settings: "wght" 700;
  white-space: nowrap;
}
.opt__pill--busy { background: rgba(180,60,50,.12); color: #A63B31; }

.course-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.course {
  position: relative;
  cursor: pointer;
  display: block;
  border-radius: var(--r-md);
  overflow: hidden;
}
.course input { position: absolute; opacity: 0; width: 0; height: 0; }
.course__face {
  display: block;
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1.5px solid rgba(22,40,27,.15);
  transition: all .28s var(--ease);
  background: var(--forest);
}

.course, .course__face { height: 100%; }
.course__face { display: flex; flex-direction: column; }
.course__art { display: block; aspect-ratio: 16 / 10; flex: none; }
.course__art svg { width: 100%; height: 100%; }
.course__label {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1 1 auto;
  padding: 13px 15px;
  background: var(--white);
  border-top: 1px solid rgba(22,40,27,.1);
}
.course__name {
  display: block;
  font-variation-settings: "wght" 700;
  font-size: .88rem;
  color: var(--text-on-light);
  line-height: 1.25;
}
.course__loc { display: block; font-size: .72rem; color: var(--muted-on-light); margin-top: 3px; }
.course:hover .course__face { border-color: var(--green-2); }
.course input:checked + .course__face {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(32,80,48,.14);
}
.course input:checked + .course__face .course__label { background: var(--green); }
.course input:checked + .course__face .course__name { color: var(--white); }
.course input:checked + .course__face .course__loc { color: rgba(255,255,255,.68); }
.course input:focus-visible + .course__face { outline: 2px solid var(--gold); outline-offset: 2px; }

.datebar { display: flex; gap: 10px; overflow-x: auto; padding-bottom: 8px; scrollbar-width: thin; }
.dchip { flex-shrink: 0; cursor: pointer; }
.dchip input { position: absolute; opacity: 0; width: 0; height: 0; }
.dchip__face {
  display: block;
  width: 78px;
  padding: 13px 8px;
  text-align: center;
  border-radius: var(--r-md);
  border: 1.5px solid rgba(22,40,27,.15);
  background: var(--white);
  transition: all .25s var(--ease);
}
.dchip__dow { display: block; font-size: .6rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted-on-light); }
.dchip__day {
  display: block;
  font-family: var(--display);
  font-variation-settings: "wdth" 120, "wght" 800;
  font-size: 1.5rem;
  line-height: 1.1;
  color: var(--text-on-light);
}
.dchip__mon { display: block; font-size: .6rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-on-light); }
.dchip:hover .dchip__face { border-color: var(--green-2); }
.dchip input:checked + .dchip__face { background: var(--green); border-color: var(--green); }
.dchip input:checked + .dchip__face .dchip__day { color: var(--white); }
.dchip input:checked + .dchip__face .dchip__dow,
.dchip input:checked + .dchip__face .dchip__mon { color: var(--gold); }
.dchip input:focus-visible + .dchip__face { outline: 2px solid var(--gold); outline-offset: 2px; }

.slots { display: grid; grid-template-columns: repeat(auto-fill, minmax(96px, 1fr)); gap: 9px; }
.slot { cursor: pointer; }
.slot input { position: absolute; opacity: 0; width: 0; height: 0; }
.slot__face {
  display: block;
  padding: 13px 8px;
  text-align: center;
  border-radius: var(--r-sm);
  border: 1.5px solid rgba(22,40,27,.15);
  background: var(--white);
  font-variation-settings: "wght" 600;
  font-size: .92rem;
  color: var(--text-on-light);
  transition: all .22s var(--ease);
}
.slot:hover .slot__face { border-color: var(--green-2); }
.slot input:checked + .slot__face { background: var(--green); border-color: var(--green); color: var(--white); }
.slot input:disabled + .slot__face {
  opacity: .4;
  background: rgba(22,40,27,.05);
  text-decoration: line-through;
  cursor: not-allowed;
}
.slot input:focus-visible + .slot__face { outline: 2px solid var(--gold); outline-offset: 2px; }

.legend { display: flex; gap: 20px; flex-wrap: wrap; font-size: .74rem; color: var(--muted-on-light); }
.legend span { display: inline-flex; align-items: center; gap: 8px; }
.legend i { width: 11px; height: 11px; border-radius: 3px; display: block; }
.legend i.free { background: var(--white); border: 1.5px solid rgba(22,40,27,.2); }
.legend i.sel  { background: var(--green); }
.legend i.gone { background: rgba(22,40,27,.14); }

.bay-pick { display: grid; gap: 10px; }
.bay-opt { cursor: pointer; display: block; }
.bay-opt input { position: absolute; opacity: 0; width: 0; height: 0; }
.bay-opt__face {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 16px 20px;
  border-radius: var(--r-md);
  border: 1.5px solid rgba(22,40,27,.15);
  background: var(--white);
  transition: all .28s var(--ease);
}
.bay-opt:hover .bay-opt__face { border-color: var(--green-2); transform: translateX(3px); }
.bay-opt input:checked + .bay-opt__face {
  background: linear-gradient(140deg, #21472C, #14301C);
  border-color: var(--gold);
}
.bay-opt input:focus-visible + .bay-opt__face { outline: 2px solid var(--gold); outline-offset: 2px; }
.bay-opt input:disabled + .bay-opt__face { opacity: .45; cursor: not-allowed; }

.bay-opt__no {
  display: block;
  font-family: var(--script);
  font-variation-settings: "opsz" 144, "wght" 300;
  font-size: 1.45rem;
  color: var(--gold-dim);
  line-height: 1;
}
.bay-opt__name {
  display: block;
  font-family: var(--display);
  font-variation-settings: "wdth" 120, "wght" 800;
  text-transform: uppercase;
  font-size: 1.24rem;
  letter-spacing: .02em;
  color: var(--text-on-light);
  line-height: 1;
}
.bay-opt__meta { display: block; font-size: .76rem; color: var(--muted-on-light); margin-top: 6px; }
.bay-opt__state {
  display: block;
  font-size: .6rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-variation-settings: "wght" 700;
  color: #3F7A21;
  white-space: nowrap;
}
.bay-opt__state--busy { color: #A63B31; }
.bay-opt input:checked + .bay-opt__face .bay-opt__name { color: var(--white); }
.bay-opt input:checked + .bay-opt__face .bay-opt__meta { color: var(--gold-lt); }
.bay-opt input:checked + .bay-opt__face .bay-opt__no { color: var(--gold); }
.bay-opt input:checked + .bay-opt__face .bay-opt__state { color: var(--leaf); }

.pre-open {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: clamp(24px, 3vw, 38px);
  padding: 18px 22px;
  border-radius: var(--r-md);
  background: linear-gradient(140deg, #21472C, #10281A);
  border: 1px solid rgba(200,184,96,.34);
  color: var(--text-on-dark);
  font-size: .92rem;
  line-height: 1.6;
}
.pre-open strong { color: var(--white); }
.pre-open__flag {
  flex: none;
  font-size: .58rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-variation-settings: "wght" 800;
  color: var(--ink);
  background: var(--gold);
  border-radius: var(--r-pill);
  padding: 5px 12px;
  margin-top: 2px;
}

.bay-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 9px; }
.bay-tag {
  display: inline-flex;
  align-items: center;
  font-size: .56rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-variation-settings: "wght" 700;
  border-radius: var(--r-pill);
  padding: 3px 9px;
  line-height: 1.5;
  white-space: nowrap;
}
.bay-tag--in   { background: rgba(63,122,33,.12);  color: #3F7A21; }
.bay-tag--out  { background: rgba(200,184,96,.22); color: #7A6712; }
.bay-tag--note { border: 1px solid rgba(20,40,24,.18); color: var(--muted-on-light); }

.bay-opt input:checked + .bay-opt__face .bay-tag--in   { background: rgba(112,168,64,.22); color: var(--leaf); }
.bay-opt input:checked + .bay-opt__face .bay-tag--out  { background: rgba(200,184,96,.24); color: var(--gold-lt); }
.bay-opt input:checked + .bay-opt__face .bay-tag--note { border-color: rgba(228,216,154,.36); color: var(--gold-lt); }

.extra-row {
  display: grid;
  gap: 16px;
  padding: 20px;
  border-radius: var(--r-md);
  border: 1px solid rgba(22,40,27,.13);
  background: var(--white);
}
.extra-row + .extra-row { margin-top: 10px; }
.extra-row__name { font-variation-settings: "wght" 700; color: var(--text-on-light); }
.extra-row__meta { font-size: .82rem; color: var(--muted-on-light); margin-top: 4px; }

.pickrow { display: flex; flex-wrap: wrap; gap: 7px; }
.pick { cursor: pointer; }
.pick input { position: absolute; opacity: 0; width: 0; height: 0; }
.pick span {
  display: block;
  padding: 10px 16px;
  border-radius: var(--r-pill);
  border: 1.5px solid rgba(22,40,27,.16);
  background: var(--white);
  font-size: .8rem;
  font-variation-settings: "wght" 600;
  color: var(--text-on-light);
  white-space: nowrap;
  transition: all .22s var(--ease);
}
.pick:hover span { border-color: var(--green-2); }
.pick input:checked + span { background: var(--green); border-color: var(--green); color: var(--white); }
.pick input:focus-visible + span { outline: 2px solid var(--gold); outline-offset: 2px; }

.promo-row { display: flex; gap: 10px; flex-wrap: wrap; }
.promo-row input { flex: 1; min-width: 180px; }
.promo-msg { font-size: .82rem; margin-top: 10px; }
.promo-msg.is-good { color: #3F7A21; }
.promo-msg.is-bad { color: #A63B31; }

.wizard-nav {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-top: clamp(28px, 3vw, 40px);
  padding-top: 26px;
  border-top: 1px solid rgba(22,40,27,.12);
}

.rail {
  position: sticky;
  top: 96px;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  border-radius: var(--r-md);
  background: linear-gradient(160deg, #21472C 0%, #10281A 100%);
  border: 1px solid rgba(200,184,96,.3);
  box-shadow: 0 40px 80px -50px #000;
  scrollbar-width: thin;
  scrollbar-color: rgba(200,184,96,.4) transparent;
}
@media (max-width: 1180px) { .rail { max-height: none; overflow: visible; } }
.rail__head {
  padding: 22px 24px 18px;
  border-bottom: 1px solid rgba(200,184,96,.22);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.rail__title {
  font-family: var(--display);
  font-variation-settings: "wdth" 120, "wght" 800;
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: .12em;
  color: var(--gold);
}
.rail__body { padding: 8px 24px 4px; }
.rail__row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(200,184,96,.13);
  font-size: .88rem;
}
.rail__row:last-child { border-bottom: 0; }
.rail__k { color: var(--muted-on-dark); }
.rail__v { color: var(--white); font-variation-settings: "wght" 600; text-align: right; }
.rail__v.is-empty { color: #5E6F60; font-variation-settings: "wght" 400; font-style: italic; }
.rail__v.is-discount { color: var(--leaf); }

.rail__total {
  padding: 20px 24px;
  margin-bottom: 4px;
  background: rgba(8,23,13,.45);
  border-top: 1px solid rgba(200,184,96,.22);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}
.rail__total-k { font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted-on-dark); }
.rail__total-v {
  font-family: var(--display);
  font-variation-settings: "wdth" 122, "wght" 800;
  font-size: 2rem;
  line-height: 1;
  color: var(--white);
}

.rail__foot { padding: 28px 24px 26px; display: grid; gap: 14px; }

.payfast {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted-on-dark);
}
.payfast svg { width: 15px; height: 15px; color: var(--leaf); }

.rail__note {
  font-size: .74rem;
  color: var(--muted-on-dark);
  line-height: 1.5;
  text-align: center;
}

.rule-note {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  padding: 16px 18px;
  border-radius: var(--r-sm);
  background: rgba(200,184,96,.12);
  border: 1px solid rgba(200,184,96,.4);
  font-size: .86rem;
  color: var(--text-on-light);
  line-height: 1.55;
}
.rule-note svg { flex-shrink: 0; width: 19px; height: 19px; color: var(--gold-dim); margin-top: 2px; }
.rule-note b { font-variation-settings: "wght" 700; }

.done-card {
  text-align: center;
  padding: clamp(34px, 5vw, 62px);
  border-radius: var(--r-md);
  background: var(--white);
  border: 1px solid rgba(200,184,96,.5);
}
.done-card__mark {
  width: 72px; height: 72px;
  margin: 0 auto 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(112,168,64,.14);
  color: var(--leaf);
}
.done-card__mark svg { width: 32px; height: 32px; }

.done-card__mark--soon { background: rgba(200,184,96,.18); color: var(--gold); }

.cta-band {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(140deg, var(--green) 0%, var(--ink) 72%);
  text-align: center;
}
.cta-band::before {
  content: "";
  position: absolute; inset: 0;
  background-image: var(--honeycomb);
  opacity: .09;
  z-index: -1;
}
.cta-band__inner { display: grid; gap: 26px; justify-items: center; }
.cta-band .lede { text-align: center; color: #C5D2C6; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

.footer {
  background: #050F08;
  border-top: 1px solid rgba(200,184,96,.16);
  padding-top: clamp(52px, 6vw, 80px);
}
.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.4fr;
  gap: clamp(26px, 3.4vw, 56px);
  padding-bottom: clamp(38px, 4vw, 56px);
}
.footer__blurb { font-size: .92rem; color: var(--muted-on-dark); line-height: 1.65; margin-top: 20px; max-width: 34ch; }
.footer__h {
  font-size: .66rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  font-variation-settings: "wght" 700;
}
.footer__list { display: grid; gap: 11px; }
.footer__list a, .footer__list li { font-size: .9rem; color: var(--muted-on-dark); transition: color .22s var(--ease); }
.footer__list a:hover { color: var(--gold); }
.footer__list a { overflow-wrap: anywhere; }

.footer__addr { display: inline-block; }
.footer__addr::after {
  content: "See it on the map";
  display: block;
  margin-top: 5px;
  font-size: .6rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: .75;
  transition: opacity .22s var(--ease);
}
.footer__addr:hover::after { opacity: 1; }

.footer__bottom {
  border-top: 1px solid rgba(200,184,96,.14);
  padding-block: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
  font-size: .78rem;
  color: #6B7C6D;
}
.footer__bottom a:hover { color: var(--gold); }
.footer__by { display: inline-flex; align-items: center; gap: 8px; }
.footer__by b { color: var(--gold); font-variation-settings: "wght" 700; }

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  top: auto;
  width: 1px; height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.field input.is-invalid,
.field select.is-invalid,
.field textarea.is-invalid,
input.is-invalid, select.is-invalid, textarea.is-invalid {
  border-color: #C9634A !important;
  box-shadow: 0 0 0 3px rgba(201, 99, 74, .16);
}
.field__error {
  color: #E88B76;
  font-size: .78rem;
  margin-top: 6px;
}
.section--paper .field__error,
.section--cream .field__error { color: #B4462F; }

.field.is-hint-swapped .field__error { margin-top: 0; }

.soon-page {
  position: relative;
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 22px;
  padding: clamp(48px, 7vw, 92px) clamp(24px, 5vw, 56px);
  border-radius: var(--r-lg);
  border: 1px solid var(--green-line);
  background:
    radial-gradient(120% 100% at 50% 0%, rgba(32, 80, 48, .5), transparent 62%),
    var(--forest);
  overflow: hidden;
}
.soon-page::after {
  content: "";
  position: absolute; inset: 0;
  background-image: var(--honeycomb);
  opacity: .05;
  pointer-events: none;
}
.soon-page > * { position: relative; }

.soon-page__crest {
  width: clamp(84px, 12vw, 128px);
  height: auto;
  filter: drop-shadow(0 14px 30px rgba(0, 0, 0, .55));
}
.soon-page__title {
  font-family: var(--display);
  font-variation-settings: "wdth" 118, "wght" 800;
  text-transform: uppercase;
  font-size: clamp(1.6rem, 4.4vw, 2.6rem);
  letter-spacing: .04em;
  line-height: 1.05;
  color: var(--white);
}
.soon-page__lede {
  max-width: 54ch;
  color: var(--muted-on-dark);
  font-size: 1.02rem;
}
.soon-page__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 6px;
}

.soon-tile { position: relative; overflow: hidden; }
.soon-tile > svg,
.soon-tile > img {
  filter: blur(7px) saturate(.8);
  opacity: .55;
  transform: scale(1.12);
  pointer-events: none;
}
.soon-tile__seal {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 10px;
  text-align: center;
  padding: 20px;
  background: radial-gradient(62% 62% at 50% 50%, rgba(8, 23, 13, .58), rgba(8, 23, 13, .9));
}
.soon-tile__seal svg { width: 28px; height: 28px; color: var(--gold); }
.soon-tile__word {
  font-family: var(--display);
  font-variation-settings: "wdth" 116, "wght" 800;
  text-transform: uppercase;
  font-size: .92rem;
  letter-spacing: .1em;
  color: var(--white);
  line-height: 1.25;
}
.soon-tile__tag {
  font-size: .56rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
}

.offer-dialog {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(4, 12, 7, .78);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.offer-dialog.is-on { opacity: 1; }
.offer-dialog[hidden] { display: none; }

.offer-dialog__box {
  width: min(460px, 100%);
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  padding: clamp(26px, 4vw, 38px);
  border-radius: var(--r-lg);
  border: 1px solid rgba(200, 184, 96, .3);
  background: var(--forest);
  box-shadow: 0 50px 110px -50px #000;
  text-align: center;
  transform: translateY(14px) scale(.97);
  transition: transform .32s var(--ease-out-back);
}
.offer-dialog.is-on .offer-dialog__box { transform: none; }

.offer-dialog__flag {
  display: inline-block;
  margin-bottom: 18px;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(200, 184, 96, .4);
  color: var(--gold);
  font-size: .64rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-variation-settings: "wght" 700;
}

.offer-dialog__box h2 {
  font-size: clamp(1.7rem, 5vw, 2.3rem);
  line-height: 1.04;
  color: var(--white);
  margin-bottom: 16px;
}

.offer-dialog__lede {
  color: var(--muted-on-dark);
  font-size: .92rem;
  line-height: 1.62;
  margin-bottom: 20px;
}

.offer-dialog__saving {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 12px;
  padding: 14px 18px;
  margin-bottom: 20px;
  border-radius: var(--r-md);
  background: rgba(8, 23, 13, .5);
  border: 1px solid rgba(200, 184, 96, .16);
}
.offer-dialog__saving span { font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted-on-dark); }
.offer-dialog__saving b {
  font-family: var(--display);
  font-variation-settings: "wdth" 122, "wght" 800;
  font-size: 1.7rem;
  color: var(--leaf);
}

.offer-dialog__check {
  text-align: left;
  margin-bottom: 22px;
  font-size: .84rem;
  line-height: 1.55;
  color: var(--text-on-dark);
}

.offer-dialog__acts { display: grid; gap: 10px; }

.offer-dialog__fine {
  margin-top: 18px;
  font-size: .74rem;
  line-height: 1.55;
  color: var(--muted-on-dark);
  opacity: .85;
}

@media (max-width: 480px) {
  .offer-dialog__saving { flex-direction: column; gap: 4px; padding: 16px; }
  .offer-dialog__saving b { font-size: 2rem; }
}

@media (prefers-reduced-motion: reduce) {
  .offer-dialog, .offer-dialog__box { transition: none; }
  .offer-dialog__box { transform: none; }
}

.page-exit {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: var(--ink);
  opacity: 0;
  pointer-events: none;
  will-change: opacity;
  transition: opacity .19s linear;
}
.page-exit.is-on { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  .page-exit { display: none; }
}

.reveal { opacity: 0; transform: translateY(24px); }
.reveal.is-in {
  opacity: 1;
  transform: none;
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal[data-d="1"].is-in { transition-delay: .09s; }
.reveal[data-d="2"].is-in { transition-delay: .18s; }
.reveal[data-d="3"].is-in { transition-delay: .27s; }
.reveal[data-d="4"].is-in { transition-delay: .36s; }
.reveal[data-d="5"].is-in { transition-delay: .45s; }

@media (max-width: 1020px) {
  .reveal,
  .reveal.is-in {
    opacity: 1;
    transform: none;
    transition: none;
    transition-delay: 0s;
  }
}

@media (max-width: 1180px) {
  .booking-layout { grid-template-columns: minmax(0, 1fr); }
  .rail { position: static; }
  .footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1020px) {
  .nav { display: none; }
  .burger { display: grid; }
  .masthead__cta .btn { display: none; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2n) { border-right: 0; }
  .course-grid { grid-template-columns: repeat(2, 1fr); }
  .sect-head--split { grid-template-columns: 1fr; align-items: start; }
  .contact-grid { grid-template-columns: 1fr; }
  .hero__scroll { display: none; }
}

@media (max-width: 860px) {
  .shot, .shot--wide, .shot--tall { grid-column: span 6; aspect-ratio: 4 / 3; }
  .split { grid-template-columns: 1fr; }
  .split--flip .split__media { order: 0; }
  .offers { grid-template-columns: 1fr; }
  .opt-grid--3, .opt-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid-2 { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .shot, .shot--wide, .shot--tall { grid-column: span 12; }
  .course-grid { grid-template-columns: 1fr; }
  .opt-grid--3, .opt-grid--4, .opt-grid--2 { grid-template-columns: 1fr; }
  .bay-row { grid-template-columns: 34px minmax(0, 1fr) auto; }
  .bay-row__flag { display: none; }
  .tl-item { grid-template-columns: 1fr; gap: 10px; }
  .footer__top { grid-template-columns: 1fr; }
  .hero { padding-top: 130px; }
  .faq__a p { padding-right: 10px; }
  .crest__type { display: none; }
  .stats { grid-template-columns: 1fr; }
  .stat { border-right: 0; }
  .bay-opt__face { grid-template-columns: 34px minmax(0, 1fr); gap: 12px; }
  .bay-opt__state { grid-column: 2; }
  .wizard-nav { flex-direction: column-reverse; }
  .wizard-nav .btn { width: 100%; }

  .hero__scroll { display: none; }

  .steps {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
  }
  .steps::-webkit-scrollbar { display: none; }
  .step-chip { flex: 0 0 auto; }

  .loader__inner { gap: 16px; }
  .loader__screen { box-shadow: 0 0 0 4px rgba(8, 23, 13, .85), 0 0 0 5px rgba(200, 184, 96, .22); }
  .loader__screen::before { box-shadow: 0 30px 60px -40px #000, 0 0 80px -30px rgba(200, 184, 96, .34); }
}

@media (max-width: 380px) {
  .shell { padding-inline: 16px; }
  .btn { padding-inline: 18px; }
  .masthead__bar .btn { padding-inline: 14px; font-size: .72rem; }
  .rail__total-v { font-size: 1.65rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .strip__track { animation: none; }
}

.shell--narrow { max-width: 760px; }

.h-xl { font-size: clamp(2rem, 5vw, 3.1rem); line-height: 1.04; letter-spacing: -.02em; }
.h-lg { font-size: clamp(1.6rem, 3.6vw, 2.3rem); line-height: 1.1; letter-spacing: -.015em; }
.h-md { font-size: clamp(1.2rem, 2.2vw, 1.5rem); line-height: 1.2; margin-top: 34px; }
.h-sm { font-size: 1.02rem; line-height: 1.3; margin-top: 22px; }

.section--tight .h-md,
.section--tight .h-sm { color: var(--text-on-light); font-family: var(--display); font-weight: 800; }

.btn--sm { padding: 9px 18px; font-size: .82rem; }

.chip {
  padding: 11px 26px;
  border-radius: var(--r-pill);
  border: 1px solid var(--green-line);
  background: var(--white);
  color: var(--text-on-light);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: border-color .18s var(--ease), background .18s var(--ease), color .18s var(--ease);
}
.chip:hover { border-color: var(--green-2); }
.chip.is-on { background: var(--green); border-color: var(--green); color: var(--white); }

.note {
  margin: 26px 0;
  padding: 18px 20px;
  border-radius: var(--r-md);
  border-left: 4px solid var(--green-2);
  background: rgba(32, 80, 48, .06);
}
.note p { margin: 0; }
.note--gold { border-left-color: var(--gold); background: rgba(200, 184, 96, .12); }

.table { width: 100%; border-collapse: collapse; margin: 18px 0 26px; font-size: .92rem; }
.table th,
.table td { text-align: left; padding: 10px 12px 10px 0; border-bottom: 1px solid rgba(53, 86, 62, .22); }
.table th { font-weight: 800; color: var(--text-on-light); }

.list { margin: 0 0 20px; padding-left: 22px; }
.list li { margin-bottom: 8px; }

.field__hint.is-good { color: #3F7A21; }
.field__hint.is-bad  { color: #A63B31; }
.field.is-bad input  { border-color: #A63B31; }

.dob { display: flex; align-items: flex-start; gap: 10px; }
.dob__cell { display: grid; gap: 5px; justify-items: center; }
.dob__box {
  width: 62px;
  text-align: center;
  font-variation-settings: "wght" 600;
  letter-spacing: .04em;
}
.dob__cell:last-child .dob__box { width: 88px; }
.dob__cap {
  font-size: .58rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted-on-light);
}
.field--dob.is-bad .dob__box { border-color: #A63B31; }

.ind__actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 26px 0 30px; }

.ind__doc {
  max-height: 380px;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 22px 24px;
  border: 1px solid var(--green-line);
  border-radius: var(--r-md);
  background: var(--white);

  color: var(--ink);
  font-size: .92rem;
  line-height: 1.62;
}

.ind__doc--full { max-height: none; overflow: visible; }

.ind__doc:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

.ind__doc h2 { font-family: var(--display); font-size: 1.15rem; font-weight: 800; margin: 0 0 4px; }
.ind__doc h3 { font-family: var(--display); font-size: .96rem; font-weight: 800; margin: 20px 0 5px; }
.ind__doc p  { margin: 0 0 11px; }
.ind__doc ul { margin: 0 0 14px; padding-left: 20px; }
.ind__doc li { margin-bottom: 6px; }

.ind__doc .ind__entity { font-size: .84rem; color: var(--muted-on-light); margin-bottom: 14px; }

.ind__doc .ind__lede   { font-weight: 600; color: var(--ink); }

.ind__dochead { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; }
.ind__pdf { font-size: .82rem; font-weight: 700; white-space: nowrap; }

.ind__version { font-size: .8rem; color: var(--muted-on-light); margin-top: 10px; }

.ind__foot    { font-size: .84rem; color: var(--muted-on-light); margin-top: 26px; }
.ind__loading { color: var(--muted-on-light); }

.section:not(.section--paper) .ind__version,
.section:not(.section--paper) .ind__foot,
.section:not(.section--paper) .ind__loading { color: var(--muted-on-dark); }

.ind__block {
  margin: 0 0 30px;
  padding: 0 0 26px;
  border-bottom: 1px solid rgba(53, 86, 62, .18);
}
.ind__block:last-child { border-bottom: 0; }

.ind__confirms {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.ind__confirms li {
  position: relative;
  padding-left: 26px;
  font-size: .9rem;
  line-height: 1.55;
  color: var(--muted-on-light);
}
.ind__confirms li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: .62em;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold-dim);
}
.ind__block.is-bad .ind__confirms li { color: #A63B31; }
.ind__block.is-bad .ind__confirms li::before { background: #A63B31; }

.ind__h {
  font-family: var(--display);
  font-size: 1.06rem;
  font-weight: 800;
  margin: 0 0 12px;
  color: var(--text-on-light);
}
.ind__lede { font-size: .88rem; color: var(--muted-on-light); margin: -6px 0 14px; }

.ind__choice { display: flex; gap: 12px; }

.ind__block.is-bad .check span { color: #A63B31; }

.ind__agree {
  padding: 18px 20px;
  border: 1px solid var(--gold);
  border-radius: var(--r-md);
  background: rgba(200, 184, 96, .1);
}
.ind__agree .check span { font-weight: 700; }

.ind__pad {
  position: relative;
  border: 1px dashed var(--green-line);
  border-radius: var(--r-md);
  background: var(--white);

  aspect-ratio: 5 / 2;
  max-height: 190px;
  overflow: hidden;
}
.ind__canvas { display: block; width: 100%; height: 100%; touch-action: none; cursor: crosshair; }

.ind__padfoot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 8px;
}
.ind__clear {
  border: 0;
  background: none;
  padding: 4px 2px;
  font: inherit;
  font-size: .82rem;
  font-weight: 700;
  color: var(--green-2);
  cursor: pointer;
  text-decoration: underline;
}

.ind__guardian {

  margin-top: 22px;
  padding: 22px 22px 26px;
  border: 1px solid var(--green-2);
  border-radius: var(--r-md);
  background: rgba(32, 80, 48, .05);
}

.ind__addchild {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 6px 0 4px;
  padding: 12px 22px;
  border-radius: var(--r-pill);
  border: 1.5px dashed var(--green-2);
  background: var(--white);
  color: var(--green);
  font-size: .86rem;
  font-variation-settings: "wght" 700;
  cursor: pointer;
  transition: background .22s var(--ease), color .22s var(--ease), border-color .22s var(--ease);
}
.ind__addchild::before {
  content: "+";
  font-size: 1.15rem;
  line-height: 1;
  margin-top: -2px;
}
.ind__addchild:hover {
  background: var(--green);
  border-color: var(--green);
  border-style: solid;
  color: var(--white);
}
.ind__addchild:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

.ind__popia {
  font-size: .84rem;
  line-height: 1.55;
  color: var(--muted-on-light);
  margin: -4px 0 18px;
  padding-left: 12px;
  border-left: 3px solid var(--gold);
}
.ind__declare {
  font-size: .88rem;
  line-height: 1.6;
  margin: 18px 0 14px;
  padding: 14px 16px;
  border-radius: var(--r-sm);
  background: var(--white);
  border: 1px solid var(--green-line);
}

.ind__minor {
  position: relative;
  padding: 16px 16px 4px;
  margin-bottom: 14px;
  border-radius: var(--r-sm);
  background: var(--white);
  border: 1px solid var(--green-line);
}
.ind__remove {
  position: absolute;
  top: 12px;
  right: 14px;
  border: 0;
  background: none;
  font: inherit;
  font-size: .76rem;
  font-weight: 700;
  color: #A63B31;
  cursor: pointer;
  text-decoration: underline;
}

.ind__known {
  margin: 0 0 26px;
  padding: 18px 20px;
  border-radius: var(--r-md);
  border: 1px solid var(--leaf);
  background: rgba(112, 168, 64, .1);
}
.ind__known p { margin: 0 0 12px; }

.ind__done { text-align: center; padding: 30px 0; }
.ind__done .btn { margin-top: 18px; }

.ind__failed {
  padding: 20px;
  border-radius: var(--r-md);
  border: 1px solid #A63B31;
  background: rgba(166, 59, 49, .07);
}

@media (max-width: 560px) {
  .ind__dochead { flex-direction: column; gap: 6px; }
  .ind__choice .chip { flex: 1; }
  .ind__pad { aspect-ratio: 2 / 1; }
}

.footer__legal { font-size: .8rem; }
.footer__legal a { color: var(--muted-on-dark); }
.footer__legal a:hover { color: var(--gold); }

.footer__fine {
  border-top: 1px solid rgba(200,184,96,.14);
  padding-block: 22px;
  font-size: .74rem;
  line-height: 1.65;
  color: #6B7C6D;
  display: grid;
  gap: 9px;

}
.footer__fine p { margin: 0; }

.offers-empty {
  display: grid;
  justify-items: center;
  gap: 6px;
  text-align: center;
  padding: 34px 24px;
  border: 1.5px dashed rgba(200,184,96,.3);
  border-radius: var(--r-md);
  background: rgba(200,184,96,.04);
}
.offers-empty__mark {
  display: grid;
  place-items: center;
  width: 52px; height: 52px;
  margin-bottom: 6px;
  border-radius: 50%;
  background: rgba(200,184,96,.12);
  color: var(--gold);
}
.offers-empty__mark svg { width: 24px; height: 24px; }
.offers-empty__title {
  margin: 0;
  font-family: var(--display);
  font-variation-settings: "wdth" 110, "wght" 700;
  font-size: 1.02rem;
  color: var(--white);
}
.offers-empty__sub {
  margin: 0;
  font-size: .78rem;
  color: var(--muted-on-dark);
}
.section--paper .offers-empty__title,
.section--cream .offers-empty__title { color: var(--text-on-light); }
.section--paper .offers-empty__sub,
.section--cream .offers-empty__sub { color: var(--muted-on-light); }
.footer__fine b { color: var(--muted-on-dark); font-variation-settings: "wght" 700; }

.paymarks {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.paymarks--center { justify-content: center; }
.paymarks__label {
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted-on-dark);
}
.paymarks__row {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.paymarks__row li {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  border-radius: 6px;
  padding: 6px 9px;
  min-height: 30px;
  box-shadow: 0 1px 2px rgba(8,23,13,.18);
}
.paymarks__row img { display: block; height: 17px; width: auto; }
.paymarks--light .paymarks__label { color: var(--muted-on-light); }
.paymarks--light .paymarks__row li { border: 1px solid rgba(53,86,62,.18); box-shadow: none; }

@media (max-width: 560px) {
  .paymarks { gap: 10px; }
  .paymarks__row { gap: 7px; }
  .paymarks__row img { height: 15px; }
}

.rail__terms {
  font-size: .72rem;
  line-height: 1.55;
  color: var(--muted-on-dark);
  text-align: center;
  padding-top: 12px;
  border-top: 1px solid rgba(200,184,96,.14);
}
.rail__terms a { color: var(--gold); text-decoration: underline; text-underline-offset: 2px; }
.rail__terms a:hover { color: var(--white); }

.policy-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;

  margin: 30px 0 34px;
  padding: 0;
  list-style: none;
}
.policy-nav li { margin: 0; }
.policy-nav a {
  display: inline-block;
  font-size: .78rem;
  letter-spacing: .04em;
  padding: 6px 13px;
  border-radius: 999px;
  border: 1px solid rgba(53,86,62,.24);
  color: var(--text-on-light);
  text-decoration: none;
}
.policy-nav a:hover { border-color: var(--gold-dim); color: var(--leaf); }
.policy-nav a[aria-current="page"] {
  background: var(--leaf);
  border-color: var(--leaf);
  color: var(--white);
}

@media (max-width: 700px) {
  .footer__fine { font-size: .72rem; }
}

.pay-strip {
  margin-top: 40px;
  padding-top: 26px;
  border-top: 1px solid rgba(53, 86, 62, .18);
  display: flex;
  flex-wrap: wrap;
  gap: 18px 30px;
  align-items: center;
  justify-content: space-between;
}
.pay-strip a { color: var(--leaf); text-decoration: underline; text-underline-offset: 2px; }
.pay-strip b { font-variation-settings: "wght" 700; }

@media (max-width: 640px) {
  .pay-strip { flex-direction: column; align-items: flex-start; gap: 16px; }
}

.list { list-style: disc; }

.section--paper .shell--narrow p a,
.section--paper .shell--narrow li a,
.section--paper .shell--narrow td a {
  color: var(--green-2);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.section--paper .shell--narrow p a:hover,
.section--paper .shell--narrow li a:hover,
.section--paper .shell--narrow td a:hover { color: var(--leaf); }

.masthead--solid {
  background: rgba(8, 23, 13, .94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: rgba(200, 184, 96, .18);
}

.section--doc { padding-top: clamp(124px, 14vw, 168px); }

.section--paper .shell--narrow .policy-nav a { text-decoration: none; }

.clubgrid { display: grid; gap: 10px; }

.clubrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 14px 16px;
  border-radius: var(--r-md);
  border: 1px solid rgba(22, 40, 27, .14);
  background: var(--white);
}
.clubrow--out { opacity: .55; }

.clubrow__name {
  display: block;
  font-variation-settings: "wght" 700;
  font-size: .95rem;
  color: var(--text-on-light);
}
.clubrow__meta {
  display: block;
  margin-top: 3px;
  font-size: .76rem;
  color: var(--muted-on-light);
}

.clubrow__pick { display: flex; align-items: center; gap: 4px; }

.clubrow__btn {
  width: 38px; height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(22, 40, 27, .2);
  background: var(--white);
  color: var(--green);
  font-size: 1.15rem;
  line-height: 1;
  cursor: pointer;
  transition: background .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
}
.clubrow__btn:hover:not(:disabled) { background: var(--green); border-color: var(--green); color: var(--white); }
.clubrow__btn:disabled { opacity: .35; cursor: not-allowed; }
.clubrow__btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

.clubrow__count {
  min-width: 34px;
  text-align: center;
  font-variation-settings: "wght" 700;
  font-size: 1.02rem;
  color: var(--text-on-light);
}

@media (max-width: 560px) {
  .clubrow { flex-direction: column; align-items: flex-start; }
  .clubrow__pick { align-self: flex-end; }
}

.paymarks-set {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 28px;
}
.paymarks-set--center { justify-content: center; }

@media (max-width: 560px) {
  .paymarks-set { gap: 10px 18px; }
}

.paymarks__row--tall img { height: 26px; }

@media (max-width: 560px) {
  .paymarks__row--tall img { height: 22px; }
}

.map iframe { pointer-events: none; }

.map__open {
  position: absolute;
  inset: 0;
  width: 100%;
  border: 0;
  padding: 14px;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
.map__open:focus-visible { outline: 2px solid var(--gold); outline-offset: -4px; }

.map__chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(8, 23, 13, .88);
  color: var(--paper);
  border: 1px solid rgba(200, 184, 96, .5);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .02em;
  box-shadow: 0 8px 20px -8px rgba(0, 0, 0, .6);
  transition: background .18s ease, border-color .18s ease;
}
.map__chip svg { width: 15px; height: 15px; }
.map__open:hover .map__chip { background: var(--ink); border-color: var(--gold); }

.mapsheet {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(4, 12, 7, .72);
  opacity: 0;
  transition: opacity .18s ease;
}
.mapsheet.is-open { opacity: 1; }

.mapsheet__panel {
  width: 100%;
  max-width: 340px;
  background: var(--paper);
  color: var(--ink);
  border-radius: var(--r-md);
  padding: 24px 22px 18px;
  box-shadow: 0 30px 70px -20px rgba(0, 0, 0, .7);
  transform: translateY(8px);
  transition: transform .18s ease;
}
.mapsheet.is-open .mapsheet__panel { transform: none; }

.mapsheet__title {
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 800;
  margin: 0 0 4px;
}
.mapsheet__addr {
  font-size: .84rem;
  color: var(--muted-on-light);
  margin: 0 0 18px;
  line-height: 1.5;
}
.mapsheet__panel .btn { margin-bottom: 10px; }

.mapsheet__panel .btn--ghost {
  border-color: rgba(8, 23, 13, .22);
  color: var(--ink);
}
.mapsheet__panel .btn--ghost:hover {
  border-color: var(--green-2);
  color: var(--green-2);
  background: rgba(32, 80, 48, .05);
}

.mapsheet__cancel {
  width: 100%;
  border: 0;
  background: none;
  padding: 8px 2px 2px;
  font: inherit;
  font-size: .82rem;
  font-weight: 700;
  color: var(--muted-on-light);
  cursor: pointer;
}
.mapsheet__cancel:hover { color: var(--ink); }

@media (prefers-reduced-motion: reduce) {
  .mapsheet, .mapsheet__panel { transition: none; }
}

.step-warn {
  margin: 0 0 4px;
  padding: 12px 14px;
  border-radius: var(--r-sm, 10px);
  border: 1px solid rgba(180, 70, 47, .28);
  background: rgba(180, 70, 47, .06);
  color: #8E3423;
  font-size: .86rem;
  line-height: 1.5;
}
