/* ============================================================
   BLACK DIAMOND — Styles
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: var(--t-body);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
em { font-style: italic; }
::selection { background: var(--gold); color: var(--void); }

/* ---- Layout primitives ---- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }

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

/* ---- Typography helpers ---- */
.eyebrow, .kicker, .footer__label, .form__eyebrow, .hq__tag, .field label.label--static {
  font-size: var(--t-mono);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  font-weight: 400;
  color: var(--ink-dim);
}
.kicker { color: var(--gold); display: inline-block; margin-bottom: var(--space-3); }
.kicker--dark { color: var(--gold-deep); }

.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--t-h2);
  line-height: 1.02;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.section-title em { color: var(--gold); }
.section-title--dark { color: var(--ink-on-light); }
.section-title--dark em { color: var(--gold-deep); }

.section-head { margin-bottom: var(--space-5); max-width: 100%; }
.section-head--center { margin-inline: auto; text-align: center; max-width: min(90%, 52rem); }
.section-lede {
  font-size: var(--t-lead); font-weight: 300; color: var(--ink-dim);
  max-width: var(--maxw-text); margin-top: var(--space-3); line-height: 1.5;
}

/* ============ BUTTONS ============ */
.btn {
  --btn-fg: var(--ink);
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6em;
  font-family: var(--font-sans); font-size: var(--t-sm); font-weight: 400;
  letter-spacing: var(--tracking-wide); text-transform: uppercase;
  padding: 1.05em 2.1em; border: 1px solid transparent; border-radius: 2px;
  cursor: pointer; position: relative; color: var(--btn-fg);
  transition: transform var(--dur-fast) var(--ease-out),
              background-color var(--dur-mid) var(--ease-out),
              color var(--dur-mid) var(--ease-out),
              border-color var(--dur-mid) var(--ease-out);
  will-change: transform;
}
.btn:active { transform: scale(0.97); }

.btn--solid { background: var(--gold); color: var(--void); border-color: var(--gold); }
.btn--solid:hover { background: var(--gold-bright); border-color: var(--gold-bright); }

.btn--ghost { background: transparent; border-color: var(--line-strong); color: var(--ink); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }

.btn--text {
  padding: 1.05em 0.2em; text-transform: uppercase; color: var(--ink-dim);
  background: none; border: none;
}
.btn--text::after {
  content: ""; position: absolute; left: 0.2em; right: 0.2em; bottom: 0.7em; height: 1px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform var(--dur-mid) var(--ease-out);
}
.btn--text:hover { color: var(--ink); }
.btn--text:hover::after { transform: scaleX(1); }

/* ============ MONOGRAM ============ */
.monogram {
  font-family: var(--font-display); font-size: clamp(1.9rem, 1.5rem + 1vw, 2.5rem); font-weight: 500;
  letter-spacing: -0.06em; color: var(--ink); display: inline-block; line-height: 1;
}
.monogram span { color: var(--gold); }
.monogram--lg { font-size: clamp(3rem, 2.4rem + 2vw, 4.2rem); }

/* ============ NAV ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: clamp(1rem, 2vw, 1.6rem) var(--gutter);
  transition: transform var(--dur-mid) var(--ease-out),
              background-color var(--dur-slow) var(--ease-out),
              backdrop-filter var(--dur-slow) var(--ease-out),
              border-color var(--dur-slow) var(--ease-out),
              padding var(--dur-slow) var(--ease-out);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: oklch(13% 0.006 60 / 0.72); backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line); padding-top: 0.85rem; padding-bottom: 0.85rem;
}
.nav.is-hidden { transform: translateY(-102%); }

.nav__links { display: flex; gap: clamp(1.2rem, 2.5vw, 2.6rem); }
.nav__links a {
  font-size: var(--t-sm); letter-spacing: 0.08em; color: var(--ink-dim);
  position: relative; padding: 0.4em 0; transition: color var(--dur-mid) var(--ease-out);
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: var(--gold); transform: scaleX(0); transform-origin: center;
  transition: transform var(--dur-mid) var(--ease-out);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { transform: scaleX(1); }
.nav__cta { padding: 0.75em 1.4em; }

@media (max-width: 880px) {
  .nav__links { display: none; }
}

/* ============ HERO ============ */
.hero {
  position: relative; min-height: 100svh; display: flex; flex-direction: column;
  justify-content: center; padding: 0 var(--gutter);
  padding-top: 16vh; padding-bottom: 12vh; overflow: hidden;
}
/* Fallback atmospheres so missing AI images still read as intentional dark luxury */
.hero__media { position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(110% 90% at 72% 18%, oklch(26% 0.02 70 / 0.9), transparent 55%), linear-gradient(135deg, oklch(17% 0.008 60), var(--void) 70%); }
.sector { background: linear-gradient(150deg, oklch(22% 0.012 70), var(--void)); }
.club__media { background: linear-gradient(120deg, oklch(20% 0.012 70), var(--void)); }
.founder__portrait { background: linear-gradient(160deg, oklch(24% 0.012 70), var(--void)); }
img[data-broken] { display: none; }

.hero__img {
  width: 100%; height: 116%; object-fit: cover; object-position: center 30%;
  filter: saturate(0.9) contrast(1.05) brightness(0.62);
}
.hero__veil {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 80% at 70% 20%, transparent 0%, oklch(13% 0.006 60 / 0.55) 70%),
    linear-gradient(180deg, oklch(13% 0.006 60 / 0.55) 0%, transparent 28%, transparent 55%, var(--void) 96%),
    linear-gradient(90deg, var(--void) 0%, oklch(13% 0.006 60 / 0.35) 45%, transparent 75%);
}
.hero__inner { position: relative; max-width: min(50vw, 640px); }
@media (max-width: 880px) { .hero__inner { max-width: 100%; } }
.eyebrow { display: block; color: var(--gold); margin-bottom: var(--space-4); max-width: 30ch; }
.hero__eyebrow { width: max-content; max-width: 70vw; }
.hero__eyebrow span { display: block; white-space: nowrap; }
.hero__title {
  font-family: var(--font-display); font-weight: 300;
  font-size: var(--t-hero); line-height: 0.96; letter-spacing: -0.02em;
}
.hero__title .line { display: block; }
.hero__title em { color: var(--gold); font-style: italic; }
.hero__sub {
  font-size: var(--t-lead); color: var(--ink-dim); font-weight: 300;
  margin-top: var(--space-3); max-width: 26ch;
}
.hero__actions { display: flex; flex-wrap: wrap; align-items: center; gap: var(--space-2); margin-top: var(--space-4); }

.hero__wordmark {
  position: absolute; right: var(--gutter); bottom: 11vh; text-align: right;
  font-family: var(--font-display); line-height: 1;
}
.hero__wordmark span { display: block; font-size: clamp(1.1rem, 1.6vw, 1.7rem); letter-spacing: 0.34em; color: var(--ink); }
.hero__wordmark small { display: block; font-family: var(--font-sans); font-size: var(--t-mono); letter-spacing: var(--tracking-wide); color: var(--ink-faint); margin-top: 0.7em; }
@media (max-width: 880px) { .hero__wordmark { display: none; } }

.scrollcue {
  position: absolute; left: 50%; bottom: 3.5vh; transform: translateX(-50%);
  width: 26px; height: 42px; border: 1px solid var(--line-strong); border-radius: 20px;
  display: grid; place-items: start center; padding-top: 8px;
}
.scrollcue span { width: 3px; height: 8px; background: var(--gold); border-radius: 2px; animation: scrollcue 1.8s var(--ease-in-out) infinite; }
@keyframes scrollcue { 0% { opacity: 0; transform: translateY(0); } 30% { opacity: 1; } 100% { opacity: 0; transform: translateY(12px); } }

/* ============ MANIFESTO ============ */
.manifesto { padding-block: var(--section-y); }
.manifesto .wrap { display: grid; grid-template-columns: 1fr; gap: var(--space-5); }
.manifesto__lede p {
  font-family: var(--font-display); font-size: var(--t-h3); line-height: 1.1;
  font-weight: 300; color: var(--ink); letter-spacing: -0.01em;
}
.manifesto__lede p + p { color: var(--ink-dim); }
.manifesto__body { max-width: var(--maxw-text); display: grid; gap: var(--space-3); }
.manifesto__body p { color: var(--ink-dim); }
.manifesto__pull { margin-top: var(--space-2); }
.manifesto__pull span {
  font-family: var(--font-display); font-style: italic; font-size: var(--t-h4);
  color: var(--gold); position: relative; padding-left: 3.4rem;
}
.manifesto__pull span::before { content: ""; position: absolute; left: 0; top: 50%; width: 2.6rem; height: 1px; background: var(--gold); }
@media (min-width: 900px) { .manifesto .wrap { grid-template-columns: 1.05fr 1fr; align-items: end; } }

/* ============ VISION ============ */
.vision { padding-block: var(--section-y); border-top: 1px solid var(--line); }
.vision__intro { font-size: var(--t-lead); font-weight: 300; color: var(--ink-dim); max-width: 52ch; margin-bottom: var(--space-5); }
.vision__intro strong { color: var(--ink); font-weight: 400; }
.hq { display: grid; gap: var(--space-3); grid-template-columns: 1fr; }
@media (min-width: 760px) { .hq { grid-template-columns: 1fr 1fr; gap: var(--space-4); } }
.hq__card {
  background: var(--bg-raised); border: 1px solid var(--line);
  padding: clamp(2rem, 3vw, 3.2rem); border-radius: 3px;
  transition: transform var(--dur-slow) var(--ease-out), border-color var(--dur-slow) var(--ease-out), box-shadow var(--dur-slow) var(--ease-out);
}
.hq__card:hover { border-color: var(--line-strong); box-shadow: var(--shadow-soft); }
.hq__tag { display: block; margin-bottom: var(--space-3); color: var(--gold); }
.hq__card h3 { font-family: var(--font-display); font-weight: 400; font-size: var(--t-h4); margin-bottom: 0.3em; }
.hq__loc { color: var(--gold); font-size: var(--t-sm); letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: var(--space-2); }
.hq__card p { color: var(--ink-dim); font-size: var(--t-sm); line-height: 1.65; }

/* ============ PHILOSOPHY (light) ============ */
.philosophy {
  background: var(--bg-light); color: var(--ink-on-light);
  padding-block: var(--section-y); position: relative; z-index: 2;
}
.philo-grid { display: grid; gap: var(--space-4); grid-template-columns: 1fr; max-width: 64rem; margin-inline: auto; }
@media (min-width: 820px) { .philo-grid { grid-template-columns: repeat(3, 1fr); } }
.philo-grid p { color: var(--ink-on-light-dim); font-size: var(--t-body); line-height: 1.7; }
.philo-grid__quote {
  font-family: var(--font-display) !important; font-style: italic;
  font-size: var(--t-h4) !important; line-height: 1.25; color: var(--ink-on-light) !important;
}

/* ============ STRATEGIC AREAS ============ */
.areas { padding-block: var(--section-y); position: relative; }
.areas::before {
  content: ""; position: absolute; inset: 0; z-index: -1; opacity: 0.5;
  background: radial-gradient(80% 60% at 50% 0%, oklch(20% 0.01 70 / 0.6), transparent 70%);
}
.sectors { list-style: none; padding: 0; display: grid; gap: var(--space-2); grid-template-columns: 1fr; }
@media (min-width: 720px) { .sectors { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1080px) { .sectors { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 17rem; } }

.sector {
  position: relative; overflow: hidden; border: 1px solid var(--line); border-radius: 3px;
  min-height: 17rem; display: flex; align-items: flex-end; isolation: isolate;
  transition: border-color var(--dur-slow) var(--ease-out);
}
@media (min-width: 1080px) {
  .sector:nth-child(1) { grid-column: span 3; }
  .sector:nth-child(2) { grid-column: span 3; }
  .sector:nth-child(3) { grid-column: span 2; }
  .sector:nth-child(4) { grid-column: span 2; }
  .sector:nth-child(5) { grid-column: span 2; }
}
.sector__bg {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2;
  filter: saturate(0.85) brightness(0.55); transform: scale(1.02);
  transition: transform var(--dur-reveal) var(--ease-out), filter var(--dur-reveal) var(--ease-out);
}
.sector__veil { position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, oklch(13% 0.006 60 / 0.1) 0%, oklch(13% 0.006 60 / 0.55) 55%, oklch(13% 0.006 60 / 0.92) 100%); }
.sector__content { padding: clamp(1.4rem, 2.4vw, 2.2rem); position: relative; }
.sector__no { font-family: var(--font-display); font-size: var(--t-sm); color: var(--gold); letter-spacing: 0.2em; }
.sector h3 { font-family: var(--font-display); font-weight: 400; font-size: var(--t-h4); margin: 0.2em 0 0.4em; }
.sector p {
  color: var(--ink-dim); font-size: var(--t-sm); line-height: 1.6; max-width: 40ch;
  max-height: 0; opacity: 0; overflow: hidden;
  transition: max-height var(--dur-slow) var(--ease-out), opacity var(--dur-slow) var(--ease-out), margin-top var(--dur-slow) var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .sector:hover { border-color: var(--gold); }
  .sector:hover .sector__bg { transform: scale(1.08); filter: saturate(1) brightness(0.65); }
  .sector:hover p { max-height: 12rem; opacity: 1; }
}
@media (hover: none) { .sector p { max-height: 12rem; opacity: 1; } }

/* ============ INVESTMENT CLUB ============ */
.club { position: relative; padding-block: clamp(7rem, 12vw, 14rem); overflow: hidden; }
.club__media { position: absolute; inset: 0; z-index: -1; }
.club__media img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.4) saturate(0.85); }
.club__veil { position: absolute; inset: 0; background: linear-gradient(90deg, var(--void) 0%, oklch(13% 0.006 60 / 0.82) 42%, oklch(13% 0.006 60 / 0.45) 100%); }
.club__inner { max-width: min(90%, 44rem); display: grid; gap: var(--space-3); }
.club__inner .section-title { font-size: var(--t-h2); }
.club__lead { font-family: var(--font-display); font-size: var(--t-h4); font-weight: 300; color: var(--ink); line-height: 1.25; }
.club__lead em { color: var(--gold); }
.club__inner p { color: var(--ink-dim); }
.club__access { list-style: none; padding: 0; display: grid; gap: 0.7rem; margin-block: var(--space-2); }
.club__access li { position: relative; padding-left: 1.8rem; color: var(--ink); font-size: var(--t-body); }
.club__access li::before { content: "◆"; position: absolute; left: 0; color: var(--gold); font-size: 0.7em; top: 0.35em; }
.club__close { font-family: var(--font-display); font-style: italic; font-size: var(--t-lead); color: var(--ink) !important; }

/* ============ COMMUNITY ============ */
.community { padding-block: var(--section-y); border-top: 1px solid var(--line); }
.experiences { list-style: none; padding: 0; display: grid; grid-template-columns: 1fr; border-top: 1px solid var(--line); }
@media (min-width: 680px) { .experiences { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .experiences { grid-template-columns: repeat(3, 1fr); } }
.experiences li {
  font-family: var(--font-display); font-size: var(--t-h4); font-weight: 400; color: var(--ink);
  padding: var(--space-3) 0; border-bottom: 1px solid var(--line); position: relative;
  padding-left: 2.4rem; transition: color var(--dur-mid) var(--ease-out), padding-left var(--dur-mid) var(--ease-out);
}
.experiences li::before {
  content: "→"; position: absolute; left: 0; color: var(--gold); opacity: 0;
  transform: translateX(-6px); transition: opacity var(--dur-mid) var(--ease-out), transform var(--dur-mid) var(--ease-out);
}
@media (hover: hover) {
  .experiences li:hover { color: var(--gold); padding-left: 3rem; }
  .experiences li:hover::before { opacity: 1; transform: translateX(0); }
}
.community__pull { font-family: var(--font-display); font-size: var(--t-h3); font-weight: 300; line-height: 1.2; max-width: min(90%, 34rem); margin-top: var(--space-5); color: var(--ink-dim); }
.community__pull em { color: var(--gold); }

/* ============ METHOD ============ */
.method { padding-block: var(--section-y); }
.steps { list-style: none; padding: 0; display: grid; grid-template-columns: 1fr; gap: 0; counter-reset: step; }
@media (min-width: 720px) { .steps { grid-template-columns: repeat(2, 1fr); column-gap: var(--space-4); } }
.step {
  display: flex; align-items: baseline; gap: var(--space-3);
  padding: var(--space-3) 0; border-bottom: 1px solid var(--line);
  transition: border-color var(--dur-mid) var(--ease-out);
}
.step__no { font-family: var(--font-display); font-size: var(--t-lead); color: var(--gold); min-width: 2.5rem; letter-spacing: 0.1em; }
.step h3 { font-family: var(--font-display); font-weight: 400; font-size: var(--t-h4); color: var(--ink); }
@media (hover: hover) { .step:hover { border-color: var(--gold); } }
.method__pull { font-family: var(--font-display); font-size: var(--t-h3); font-weight: 300; margin-top: var(--space-5); color: var(--ink-dim); }
.method__pull em { color: var(--gold); }

/* ============ FOUNDER ============ */
.founder { padding-block: var(--section-y); border-top: 1px solid var(--line); }
.founder__grid { display: grid; gap: var(--space-5); grid-template-columns: 1fr; align-items: center; }
@media (min-width: 860px) { .founder__grid { grid-template-columns: 0.85fr 1fr; gap: var(--space-6); } }
.founder__portrait {
  position: relative; overflow: hidden; border-radius: 3px; border: 1px solid var(--line);
  aspect-ratio: 4 / 5; transition: border-color var(--dur-slow) var(--ease-out);
}
.founder__portrait img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.2) brightness(0.85) contrast(1.05); transition: transform var(--dur-reveal) var(--ease-out); }
.founder__portrait::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, oklch(13% 0.006 60 / 0.55)); }
@media (hover: hover) { .founder__portrait:hover img { transform: scale(1.04); } .founder__portrait:hover { border-color: var(--gold); } }
.founder__bio { display: grid; gap: var(--space-2); }
.founder__role { color: var(--gold); font-size: var(--t-sm); letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: var(--space-1); }
.founder__bio p:not(.founder__role) { color: var(--ink-dim); max-width: 52ch; }

/* ============ AMBITION ============ */
.ambition { padding-block: var(--section-y); text-align: center; }
.ambition .wrap { max-width: 50rem; }
.ambition__statement { font-family: var(--font-display); font-size: var(--t-h3); font-weight: 300; line-height: 1.18; letter-spacing: -0.01em; color: var(--ink-dim); }
.ambition__statement em { color: var(--ink); display: inline; }
.ambition__chain { font-size: var(--t-lead); color: var(--gold); font-family: var(--font-display); font-style: italic; margin-top: var(--space-3); }

/* ============ ACCESS / FORM ============ */
.access {
  padding-block: var(--section-y);
  background:
    radial-gradient(90% 70% at 15% 30%, oklch(20% 0.018 72 / 0.5), transparent 60%),
    var(--void-soft);
  border-top: 1px solid var(--line);
}
.access__grid { display: grid; gap: var(--space-5); grid-template-columns: 1fr; align-items: start; }
@media (min-width: 920px) { .access__grid { grid-template-columns: 1fr 1fr; gap: var(--space-6); } }
.access__title { font-family: var(--font-display); font-weight: 300; font-size: var(--t-h2); line-height: 0.98; letter-spacing: -0.02em; margin-bottom: var(--space-3); }
.access__title em { color: var(--gold); }
.access__intro p { color: var(--ink-dim); max-width: 44ch; margin-bottom: var(--space-2); }
.access__welcome { color: var(--ink) !important; font-family: var(--font-display); font-size: var(--t-lead); font-style: italic; }
.access__welcome span { display: block; font-style: normal; font-family: var(--font-sans); font-size: var(--t-sm); letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-top: 0.6em; }

.form {
  background: oklch(15% 0.006 60 / 0.6); border: 1px solid var(--line);
  padding: clamp(1.6rem, 3vw, 2.8rem); border-radius: 4px; backdrop-filter: blur(6px);
  display: grid; gap: var(--space-3);
}
.form__eyebrow { color: var(--gold); margin-bottom: var(--space-1); }

.field { position: relative; }
.field input, .field select, .field textarea {
  width: 100%; background: transparent; border: none; border-bottom: 1px solid var(--line-strong);
  color: var(--ink); font-family: var(--font-sans); font-size: var(--t-body); font-weight: 300;
  padding: 1.5rem 0 0.6rem; outline: none; border-radius: 0;
  transition: border-color var(--dur-mid) var(--ease-out);
}
.field textarea { resize: vertical; min-height: 2.5rem; }
.field select { appearance: none; cursor: pointer; color: var(--ink); }
.field select option { background: var(--void-soft); color: var(--ink); }
.field label {
  position: absolute; left: 0; top: 1.5rem; color: var(--ink-faint); font-size: var(--t-body);
  pointer-events: none; transform-origin: left;
  transition: transform var(--dur-mid) var(--ease-out), color var(--dur-mid) var(--ease-out);
}
.field input:focus + label, .field textarea:focus + label,
.field input:not(:placeholder-shown) + label, .field textarea:not(:placeholder-shown) + label,
.field label.label--static {
  transform: translateY(-1.45rem) scale(0.72); color: var(--gold);
}
.field__line {
  position: absolute; left: 0; bottom: 0; height: 1px; width: 100%; background: var(--gold);
  transform: scaleX(0); transform-origin: left; transition: transform var(--dur-mid) var(--ease-out);
}
.field input:focus ~ .field__line, .field select:focus ~ .field__line, .field textarea:focus ~ .field__line { transform: scaleX(1); }
.field.is-invalid input, .field.is-invalid select { border-bottom-color: oklch(58% 0.14 25); }

.form__submit { width: 100%; margin-top: var(--space-2); overflow: hidden; }
.form__submit-label { transition: opacity var(--dur-mid) var(--ease-out), filter var(--dur-mid) var(--ease-out); }
.form.is-sending .form__submit-label { opacity: 0.5; filter: blur(2px); }
.form__note { font-size: var(--t-sm); color: var(--ink-faint); text-align: center; }
.form__error {
  display: none; font-size: var(--t-sm); color: oklch(72% 0.13 30); text-align: center;
  margin-top: -0.4rem;
}
.form.has-error .form__error { display: block; }

.form.is-sent { place-items: center; text-align: center; gap: var(--space-2); padding-block: clamp(2.4rem, 5vw, 4rem); }
.form__success { display: none; }
.form.is-sent .form__success { display: grid; gap: var(--space-2); place-items: center; animation: fade-up var(--dur-slow) var(--ease-out) both; }
.form.is-sent > *:not(.form__success) { display: none; }
.form__success-mark { width: 3.4rem; height: 3.4rem; border: 1px solid var(--gold); border-radius: 50%; display: grid; place-items: center; color: var(--gold); font-size: 1.4rem; }
.form__success h3 { font-family: var(--font-display); font-weight: 400; font-size: var(--t-h4); color: var(--ink); }
.form__success p { color: var(--ink-dim); font-size: var(--t-sm); max-width: 32ch; }
@keyframes fade-up { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* ============ FOOTER ============ */
.footer { border-top: 1px solid var(--line); padding-top: var(--space-6); padding-bottom: var(--space-4); }
.footer__grid { display: grid; gap: var(--space-4); grid-template-columns: 1fr; }
@media (min-width: 720px) { .footer__grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: var(--space-3); } }
.footer__name { font-family: var(--font-display); font-size: var(--t-h4); line-height: 1; margin-top: var(--space-2); letter-spacing: 0.06em; }
.footer__name small { display: block; font-family: var(--font-sans); font-size: var(--t-mono); letter-spacing: var(--tracking-wide); color: var(--ink-faint); margin-top: 0.5em; text-transform: uppercase; }
.footer__tag { color: var(--gold); font-size: var(--t-sm); letter-spacing: 0.12em; margin-top: var(--space-2); text-transform: uppercase; }
.footer__label { display: block; margin-bottom: var(--space-1); color: var(--gold); }
.footer__col p { color: var(--ink-dim); font-size: var(--t-sm); line-height: 1.7; }
.footer__base {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: var(--space-2);
  margin-top: var(--space-5); padding-top: var(--space-3); border-top: 1px solid var(--line);
}
.footer__base p { color: var(--ink-faint); font-size: var(--t-sm); letter-spacing: 0.04em; }
.footer__base p:first-child { color: var(--ink-dim); font-style: italic; font-family: var(--font-display); letter-spacing: 0.08em; }

/* ============ REVEAL ANIMATIONS ============ */
.reveal { opacity: 0; transform: translateY(22px) scale(0.985); filter: blur(6px); transition: opacity var(--dur-reveal) var(--ease-out), transform var(--dur-reveal) var(--ease-out), filter var(--dur-reveal) var(--ease-out); }
.reveal.is-in { opacity: 1; transform: none; filter: none; }
.reveal[data-delay="1"] { transition-delay: 80ms; }
.reveal[data-delay="2"] { transition-delay: 160ms; }
.reveal[data-delay="3"] { transition-delay: 240ms; }

/* ---- Section dividers: gold hairline that draws in above section kickers ---- */
.divider {
  display: block; width: 0; height: 1px; background: var(--gold);
  margin-bottom: var(--space-3); transition: width 900ms var(--ease-expo);
}
.divider.is-in { width: 3.5rem; }
.section-head--center .divider { margin-inline: auto; }

/* ---- Ken Burns: slow one-time drift on hero + club background imagery ---- */
@keyframes kenburns { from { transform: scale(1); } to { transform: scale(1.07); } }
.hero__img, .club__media img {
  animation: kenburns 26s var(--ease-out) forwards;
}

/* ---- Cursor spotlight: soft bronze glow following the pointer on dark surfaces ---- */
.spotlight {
  position: fixed; inset: 0; z-index: 2; pointer-events: none;
  opacity: 0; transition: opacity var(--dur-slow) var(--ease-out);
  background: radial-gradient(480px circle at var(--spot-x, 50%) var(--spot-y, 50%),
    oklch(67% 0.072 75 / 0.07), transparent 72%);
  mix-blend-mode: screen;
}
.spotlight.is-active { opacity: 1; }

/* ============ REDUCED MOTION ============ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; filter: none; }
  .scrollcue span { animation: none; }
}
