/* ============================================================
   Mobili-Tee Landing — Design tokens
   ============================================================ */
:root {
  --primary: #2f4f3e;
  --primary-dark: #243d30;
  --primary-deep: #1d3326;
  --secondary: #84b59f;
  --accent: #c9a961;
  --accent-soft: #d9bd7d;
  --accent-deep: #a48848;
  --cream: #f5f1e8;
  --cream-warm: #ede7d7;
  --paper: #faf7ee;
  --charcoal: #2c2c2c;
  --charcoal-soft: #3d3d3d;
  --muted: #6b7c70;       /* darkened from #7A8B7F for AA contrast on cream */
  --muted-light: rgba(245, 241, 232, 0.78);
  --muted-light-strong: rgba(245, 241, 232, 0.92);
  --white: #ffffff;
  --border: rgba(44, 44, 44, 0.1);
  --shadow-sm: 0 1px 2px rgba(36, 61, 48, 0.06);
  --shadow-md: 0 12px 32px rgba(36, 61, 48, 0.12);
  --shadow-lg: 0 24px 60px rgba(36, 61, 48, 0.18);
  --shadow-card-hover: 0 18px 40px rgba(36, 61, 48, 0.18);

  --font-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --container: 1180px;
  --container-narrow: 720px;
  --radius: 6px;
  --radius-lg: 14px;

  --nav-h: 64px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ============================================================
   Reset & base
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: var(--nav-h);
}
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--charcoal);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img,
svg,
picture {
  max-width: 100%;
  display: block;
}
p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul, ol { padding: 0; margin: 0; }

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
}
.skip-link:focus {
  position: fixed;
  left: 1rem;
  top: 1rem;
  padding: 0.75rem 1rem;
  background: var(--primary);
  color: var(--cream);
  z-index: 1000;
  border-radius: var(--radius);
}

/* Universal focus ring — gold, 2px */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ============================================================
   Layout primitives
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}
.container--narrow {
  max-width: var(--container-narrow);
  text-align: center;
}
.container--narrow-faq {
  max-width: 820px;
}

.section {
  padding: clamp(4rem, 9vw, 7rem) 0;
  position: relative;
}

.section__heading {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}

.section__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2rem, 4.4vw, 3.25rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--primary);
  margin: 0 0 1.25rem;
}
.section__title--light { color: var(--cream); }

.section__lede {
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto;
}
.section--why .section__lede,
.section--first-visit .section__lede,
.section--founder .section__lede {
  color: var(--muted-light);
}

.eyebrow {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 1rem;
}
.eyebrow--accent { color: var(--accent); }
.eyebrow--light { color: var(--accent-soft); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: 0;
  border-radius: 999px;
  padding: 0.95rem 1.85rem;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
  text-align: center;
  cursor: pointer;
}
.btn--primary {
  background: var(--accent);
  color: var(--primary-dark);
}
.btn--primary:hover {
  background: var(--accent-soft);
}
.btn--primary:active { transform: scale(0.98); }

/* ============================================================
   Wordmark
   ============================================================ */
.wordmark {
  display: inline-block;
  font-family: var(--font-serif);
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
}
.wordmark__primary { color: var(--cream); }
.wordmark__accent { color: var(--accent); }
.wordmark__nowrap { white-space: nowrap; }

.wordmark--hero {
  display: block;
  font-size: clamp(2.6rem, 9vw, 6.5rem);
  margin: 0 0 1.25rem;
  letter-spacing: 0.1em;
}
.wordmark--nav {
  font-size: 1.05rem;
  letter-spacing: 0.22em;
  white-space: nowrap;
}
.wordmark--nav .wordmark__primary { color: inherit; }
.wordmark--footer {
  font-size: 1.5rem;
  letter-spacing: 0.2em;
}

/* ============================================================
   Top nav (sticky)
   ============================================================ */
.topnav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  z-index: 50;
  color: var(--cream);
  background: transparent;
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease), backdrop-filter 0.3s var(--ease);
}
.topnav[data-scrolled="true"] {
  background: rgba(36, 61, 48, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 1px 0 rgba(201, 169, 97, 0.18);
}
.topnav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.topnav__links {
  display: none;
  gap: 1.85rem;
  align-items: center;
}
.topnav__links a {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream);
  font-weight: 500;
  transition: color 0.2s var(--ease);
  padding: 0.5rem 0;
}
.topnav__links a:hover { color: var(--accent); }

.topnav__toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 0;
  padding: 0;
  align-items: center;
}
.topnav__toggle-bar {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--cream);
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}
@media (min-width: 880px) {
  .topnav__links { display: flex; }
  .topnav__toggle { display: none; }
}

/* Mobile menu (full-screen overlay) */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: var(--primary-deep);
  color: var(--cream);
  display: none;
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.mobile-menu[data-open="true"] {
  display: block;
  opacity: 1;
}
.mobile-menu__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1rem clamp(1.25rem, 4vw, 2.5rem);
}
.mobile-menu__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--nav-h);
}
.mobile-menu__close {
  width: 44px;
  height: 44px;
  background: transparent;
  border: 0;
  color: var(--cream);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.mobile-menu__close svg {
  width: 28px;
  height: 28px;
}
.mobile-menu__links {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding-top: 2rem;
}
.mobile-menu__links a {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--cream);
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(201, 169, 97, 0.18);
}
.mobile-menu__links a:hover { color: var(--accent); }
@media (min-width: 880px) {
  .mobile-menu { display: none; }
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(132, 181, 159, 0.12), transparent 60%),
    radial-gradient(ellipse at 80% 90%, rgba(201, 169, 97, 0.08), transparent 55%),
    linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--cream);
  padding: calc(var(--nav-h) + 2rem) 0 5rem;
  text-align: center;
}
.hero__photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.25;
  pointer-events: none;
}
.hero__photo img { width: 100%; height: 100%; object-fit: cover; }
.hero__inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
}
.hero__divider {
  width: 64px;
  height: 1px;
  background: var(--accent);
  margin: 0 auto 1.25rem;
  opacity: 0.7;
}
.hero__badge {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(201, 169, 97, 0.08);
  border: 1px solid rgba(201, 169, 97, 0.4);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  margin: 0 0 2rem;
}
.hero__decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.hero__circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(245, 241, 232, 0.05);  /* reduced from 0.08 */
}
.hero__circle--one {
  width: 520px; height: 520px;
  top: -180px; left: -160px;
}
.hero__circle--two {
  width: 380px; height: 380px;
  bottom: -140px; right: -120px;
  border-color: rgba(201, 169, 97, 0.07);  /* reduced from 0.12 */
}
.hero__circle--three {
  width: 220px; height: 220px;
  top: 50%; left: 80%;
  border-color: rgba(132, 181, 159, 0.11);  /* reduced from 0.18 */
  transform: translate(-50%, -50%);
  display: none;
}
@media (min-width: 900px) {
  .hero__circle--three { display: block; }
}

.hero__tagline {
  font-family: var(--font-serif);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  color: var(--accent-soft);
  margin: 0 0 2rem;
  letter-spacing: 0.02em;
}
.hero__intro {
  font-size: clamp(1rem, 1.6vw, 1.125rem);
  color: var(--muted-light-strong);
  max-width: 560px;
  margin: 0 auto 2.5rem;
}
.hero__form-note {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: rgba(245, 241, 232, 0.7);
  letter-spacing: 0.02em;
}
.hero__scroll {
  position: absolute;
  bottom: 2.25rem;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 48px;
  display: block;
  z-index: 2;
}
.hero__scroll-line {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, var(--accent));
  animation: scrollPulse 2.4s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
}

/* ============================================================
   Email form
   ============================================================ */
.email-form {
  position: relative;
  display: flex;
  gap: 0.5rem;
  max-width: 480px;
  margin: 0 auto;
  background: rgba(245, 241, 232, 0.08);
  padding: 0.4rem;
  border-radius: 999px;
  border: 1px solid rgba(245, 241, 232, 0.22);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}
.email-form:focus-within {
  border-color: rgba(201, 169, 97, 0.6);
  background: rgba(245, 241, 232, 0.12);
}
.email-form__input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  color: var(--cream);
  padding: 0.85rem 1.25rem;
  font-family: inherit;
  font-size: 1rem;
  outline: none;
}
.email-form__input::placeholder {
  color: rgba(245, 241, 232, 0.65);
}
.email-form__honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.email-form__submit {
  flex-shrink: 0;
  border: 0;
  background: var(--accent);
  color: var(--primary-dark);
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 154px;
}
.email-form__submit:hover { background: var(--accent-soft); }
.email-form__submit:active { transform: scale(0.98); }
.email-form__submit:disabled {
  opacity: 0.7;
  cursor: progress;
}
.email-form__spinner {
  display: none;
  width: 14px;
  height: 14px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  margin-left: 0.5rem;
}
.email-form[data-loading="true"] .email-form__spinner { display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }

.email-form__message {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 0.85rem);
  text-align: center;
  font-size: 0.92rem;
  color: var(--accent-soft);
  margin: 0;
  min-height: 1.2em;
  transition: color 0.2s var(--ease);
}
.email-form__message[data-state="error"] { color: #f1b9a3; }
.email-form__message[data-state="success"] { color: var(--accent-soft); }

/* Success state replaces the form */
.email-form[data-success="true"] {
  background: rgba(201, 169, 97, 0.1);
  border-color: rgba(201, 169, 97, 0.5);
  justify-content: center;
  padding: 1.1rem 1.5rem;
}
.email-form[data-success="true"] > *:not(.email-form__success) { display: none; }
.email-form__success {
  display: none;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--cream);
  margin: 0;
  text-align: center;
}
.email-form[data-success="true"] .email-form__success { display: block; }

/* Capture (light bg) variant */
.email-form--capture {
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.email-form--capture:focus-within {
  border-color: var(--accent);
}
.email-form--capture .email-form__input { color: var(--charcoal); }
.email-form--capture .email-form__input::placeholder {
  color: rgba(44, 44, 44, 0.55);
}
.email-form__submit--dark {
  background: var(--primary);
  color: var(--cream);
}
.email-form__submit--dark:hover { background: var(--primary-dark); }
.email-form--capture .email-form__message { color: var(--primary); }
.email-form--capture .email-form__message[data-state="error"] { color: #b3563f; }
.email-form--capture .email-form__success { color: var(--primary); }
.email-form--capture[data-success="true"] {
  background: rgba(201, 169, 97, 0.12);
  border-color: rgba(201, 169, 97, 0.5);
}

@media (max-width: 520px) {
  .email-form {
    flex-direction: column;
    border-radius: var(--radius-lg);
    padding: 0.75rem;
    gap: 0.6rem;
  }
  .email-form__input { text-align: center; }
  .email-form__submit { padding: 0.95rem 1.4rem; }
}

/* ============================================================
   Experience (existing What is Mobili-Tee)
   ============================================================ */
.section--experience { background: var(--cream); }

.experience__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 880px) {
  .experience__grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 4.5rem;
  }
}
.experience__copy h2 { margin-bottom: 1.5rem; }
.experience__copy p {
  font-size: 1.05rem;
  color: var(--charcoal);
}
.experience-card {
  background: var(--primary);
  color: var(--cream);
  padding: clamp(2rem, 4vw, 2.75rem);
  border-radius: var(--radius-lg);
  position: relative;
  box-shadow: var(--shadow-md);
}
.experience-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(201, 169, 97, 0.22);
  pointer-events: none;
}
.experience-card__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.25;
  margin: 0 0 1.5rem;
  color: var(--cream);
}
.experience-card__list {
  list-style: none;
  display: grid;
  gap: 0.95rem;
}
.experience-card__list li {
  position: relative;
  padding-left: 1.85rem;
  color: var(--muted-light-strong);
  line-height: 1.55;
}
.experience-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 12px;
  height: 1px;
  background: var(--accent);
}

/* ============================================================
   Why (existing Where members already are)
   ============================================================ */
.section--why {
  background:
    radial-gradient(ellipse at 80% 0%, rgba(132, 181, 159, 0.12), transparent 55%),
    var(--primary);
  color: var(--cream);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}
@media (min-width: 760px) {
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}
.why-card {
  background: rgba(245, 241, 232, 0.04);
  border: 1px solid rgba(245, 241, 232, 0.1);
  padding: 2.25rem 1.85rem;
  border-radius: var(--radius-lg);
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.why-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 169, 97, 0.3);
  background: rgba(245, 241, 232, 0.06);
  box-shadow: var(--shadow-md);
}
.why-card__mark {
  width: 44px;
  height: 44px;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.why-card__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.4rem;
  margin: 0 0 0.85rem;
  color: var(--cream);
  line-height: 1.25;
}
.why-card p {
  color: var(--muted-light);
  font-size: 1rem;
  line-height: 1.65;
}

/* Light variant for For-Clubs cards on cream */
.why-grid--light .why-card {
  background: var(--white);
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.why-grid--light .why-card:hover {
  border-color: rgba(201, 169, 97, 0.4);
  box-shadow: var(--shadow-card-hover);
}
.why-grid--light .why-card__title { color: var(--primary); }
.why-grid--light .why-card p { color: var(--charcoal); }

/* ============================================================
   Story (About / Our Story)
   ============================================================ */
.section--story { background: var(--cream); }
.story__prose {
  max-width: 720px;
  margin: 0 auto 4rem;
  font-size: 1.05rem;
  color: var(--charcoal);
}
.story__prose p { margin-bottom: 1.2em; }

.pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}
@media (min-width: 900px) {
  .pillars { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
}
.pillar {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.85rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.pillar:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}
.pillar__eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-deep);
  font-weight: 600;
  margin: 0 0 0.65rem;
}
.pillar__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.35rem;
  line-height: 1.25;
  margin: 0 0 0.85rem;
  color: var(--primary);
}
.pillar p {
  color: var(--charcoal-soft);
  font-size: 0.98rem;
}

/* ============================================================
   First Visit (numbered steps)
   ============================================================ */
.section--first-visit {
  background:
    radial-gradient(ellipse at 50% 110%, rgba(132, 181, 159, 0.1), transparent 60%),
    var(--primary-dark);
  color: var(--cream);
}
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  list-style: none;
}
@media (min-width: 720px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .steps { grid-template-columns: repeat(4, 1fr); gap: 2rem; }
}
.step {
  background: rgba(245, 241, 232, 0.04);
  border: 1px solid rgba(245, 241, 232, 0.1);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.85rem;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), background 0.35s var(--ease);
}
.step:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 169, 97, 0.3);
  background: rgba(245, 241, 232, 0.06);
}
.step__num {
  display: block;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 3.2rem;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.step__rule {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--accent);
  margin: 0 0 1rem;
  opacity: 0.7;
}
.step__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.3rem;
  color: var(--cream);
  margin: 0 0 0.6rem;
  line-height: 1.25;
}
.step p {
  color: var(--muted-light);
  font-size: 0.98rem;
}

/* ============================================================
   Founder
   ============================================================ */
.section--founder {
  background:
    radial-gradient(ellipse at 20% 100%, rgba(132, 181, 159, 0.1), transparent 60%),
    var(--primary);
  color: var(--cream);
}
.founder__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}
@media (min-width: 880px) {
  .founder__grid {
    grid-template-columns: minmax(200px, 0.4fr) 0.6fr;
    gap: 4rem;
    align-items: center;
  }
}
.founder__portrait {
  margin: 0;
  display: flex;
  justify-content: center;
}
.founder__portrait img {
  width: 100%;
  max-width: 280px;
  height: auto;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(201, 169, 97, 0.25);
  box-shadow: var(--shadow-md);
  background: var(--cream-warm);
}
.founder__copy h2 { margin-bottom: 1.5rem; }
.founder__copy p {
  color: var(--muted-light-strong);
  font-size: 1.02rem;
}
.founder__rule {
  margin: 2rem 0 0.6rem;
  border: 0;
  height: 1px;
  background: linear-gradient(to right, var(--accent), transparent);
  width: 64px;
}
.founder__signature {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--accent-soft);
  margin: 0;
}

/* ============================================================
   For Clubs + Briefing form
   ============================================================ */
.section--for-clubs { background: var(--cream); }
.for-clubs__cta {
  display: flex;
  justify-content: center;
  margin: 3rem 0 0;
}
.briefing {
  margin-top: 4rem;
}
.briefing__inner {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 4vw, 2.75rem);
  max-width: 780px;
  margin: 0 auto;
  box-shadow: var(--shadow-sm);
}
.briefing__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.5rem, 2.5vw, 1.85rem);
  margin: 0 0 0.5rem;
  color: var(--primary);
}
.briefing__lede {
  color: var(--muted);
  margin-bottom: 1.85rem;
  font-size: 0.98rem;
}

.briefing-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  position: relative;
}
.briefing-form__row {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .briefing-form__row { grid-template-columns: 1fr 1fr; }
}
.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.field label {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--primary);
}
.field__optional {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--muted);
  font-size: 0.85rem;
}
.field input,
.field textarea {
  font-family: inherit;
  font-size: 1rem;
  color: var(--charcoal);
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem 0.9rem;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--white);
}
.field textarea { resize: vertical; min-height: 88px; }

.briefing-form__submit {
  align-self: flex-start;
  margin-top: 0.5rem;
  min-width: 200px;
}
.briefing-form .email-form__message {
  position: static;
  margin-top: 0.5rem;
  text-align: left;
  color: var(--primary);
}
.briefing-form .email-form__message[data-state="error"] { color: #b3563f; }
.briefing-form[data-success="true"] > *:not(.briefing-form__success) { display: none; }
.briefing-form__success {
  display: none;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--primary);
  text-align: center;
  padding: 1.5rem 0;
}
.briefing-form[data-success="true"] .briefing-form__success { display: block; }

/* ============================================================
   FAQ (accordion)
   ============================================================ */
.section--faq { background: var(--cream); }
.faq {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.faq__item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 0;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.faq__item[open] {
  border-color: rgba(201, 169, 97, 0.4);
  box-shadow: var(--shadow-sm);
}
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.25rem 1.5rem;
  font-family: var(--font-serif);
  font-size: 1.18rem;
  font-weight: 500;
  color: var(--primary);
  position: relative;
  padding-right: 3rem;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "";
  position: absolute;
  right: 1.5rem;
  top: 50%;
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.25s var(--ease);
}
.faq__item[open] summary::after {
  transform: translateY(-30%) rotate(-135deg);
}
.faq__item summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.faq__body {
  padding: 0 1.5rem 1.4rem;
  color: var(--charcoal);
  font-size: 1rem;
}

/* ============================================================
   Member form (expanded hero signup) — dark hero variant
   ============================================================ */
.member-form {
  position: relative;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  background: rgba(245, 241, 232, 0.06);
  border: 1px solid rgba(245, 241, 232, 0.16);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.4rem 1.55rem;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  text-align: left;
}
.member-form__row {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .member-form__row { grid-template-columns: 1fr 1fr; }
}
.member-form__submit {
  align-self: stretch;
  margin-top: 0.4rem;
}
@media (min-width: 520px) {
  .member-form__submit { align-self: flex-start; min-width: 220px; }
}
.member-form .email-form__message {
  position: static;
  margin: 0.25rem 0 0;
  text-align: left;
  color: var(--accent-soft);
}
.member-form .email-form__message[data-state="error"] { color: #f1b9a3; }
.member-form[data-success="true"] > *:not(.member-form__success) { display: none; }
.member-form__success {
  display: none;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--cream);
  margin: 0;
  text-align: center;
  padding: 0.75rem 0;
}
.member-form[data-success="true"] .member-form__success { display: block; }

/* Field — dark variant for hero */
.field--dark label {
  color: var(--accent-soft);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  font-weight: 600;
  text-transform: uppercase;
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  flex-wrap: wrap;
}
.field--dark .field__optional {
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  font-size: 0.78rem;
  color: rgba(245, 241, 232, 0.6);
}
.field--dark input,
.field--dark select,
.field--dark textarea {
  font-family: inherit;
  font-size: 0.98rem;
  color: var(--cream);
  background: rgba(36, 61, 48, 0.45);
  border: 1px solid rgba(245, 241, 232, 0.18);
  border-radius: var(--radius);
  padding: 0.7rem 0.85rem;
  width: 100%;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.field--dark input::placeholder,
.field--dark textarea::placeholder {
  color: rgba(245, 241, 232, 0.5);
}
.field--dark input:focus,
.field--dark select:focus,
.field--dark textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(36, 61, 48, 0.7);
}
.field--dark select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'><path d='M2 4l4 4 4-4' stroke='%23c9a961' stroke-width='1.4' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  background-size: 12px;
  padding-right: 2rem;
}
.field--dark select option {
  background: var(--primary-deep);
  color: var(--cream);
}
.field--dark textarea { resize: vertical; min-height: 64px; line-height: 1.45; }

.field__req { color: var(--accent); font-weight: 600; }

/* ============================================================
   Careers page
   ============================================================ */
.topnav--solid {
  background: var(--primary-dark);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.careers-hero {
  position: relative;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(132, 181, 159, 0.12), transparent 60%),
    radial-gradient(ellipse at 80% 90%, rgba(201, 169, 97, 0.08), transparent 55%),
    linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--cream);
  padding: calc(var(--nav-h) + 4rem) 0 5rem;
  text-align: center;
  overflow: hidden;
}
.careers-hero__decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.careers-hero__inner { position: relative; z-index: 1; }
.careers-hero__title {
  max-width: 760px;
  margin: 0 auto 1.5rem;
}
.careers-hero__lede {
  max-width: 640px;
  margin: 0 auto 2rem;
  color: var(--muted-light-strong);
  font-size: clamp(1rem, 1.6vw, 1.125rem);
}
.careers-hero__cta { margin-top: 1rem; }

.section--why-work { background: var(--cream); }
.section--who {
  background:
    radial-gradient(ellipse at 80% 0%, rgba(132, 181, 159, 0.12), transparent 55%),
    var(--primary);
  color: var(--cream);
}
.who-list {
  list-style: none;
  display: grid;
  gap: 1rem;
  max-width: 720px;
  margin: 0 auto;
}
.who-list li {
  position: relative;
  padding-left: 2rem;
  color: var(--muted-light-strong);
  font-size: 1.02rem;
  line-height: 1.55;
}
.who-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 14px;
  height: 1px;
  background: var(--accent);
}

.section--apply { background: var(--cream); }
.careers-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  position: relative;
}
.careers-form select {
  font-family: inherit;
  font-size: 1rem;
  color: var(--charcoal);
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem 0.9rem;
  width: 100%;
  transition: border-color 0.2s var(--ease);
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'><path d='M2 4l4 4 4-4' stroke='%232f4f3e' stroke-width='1.4' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  background-size: 12px;
  padding-right: 2rem;
}
.careers-form select:focus {
  outline: none;
  border-color: var(--accent);
  background-color: var(--white);
}
.careers-form .briefing-form__submit { align-self: flex-start; min-width: 220px; }
.careers-form[data-success="true"] > *:not(.careers-form__success) { display: none; }
.careers-form__success {
  display: none;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--primary);
  text-align: center;
  padding: 1.5rem 0;
}
.careers-form[data-success="true"] .careers-form__success { display: block; }
.careers-form .email-form__message {
  position: static;
  margin: 0.25rem 0 0;
  text-align: left;
  color: var(--primary);
}
.careers-form .email-form__message[data-state="error"] { color: #b3563f; }

/* ============================================================
   HSA / FSA
   ============================================================ */
.section--hsa {
  background: linear-gradient(180deg, var(--cream-warm) 0%, var(--cream) 100%);
  text-align: center;
}
.section--hsa .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hsa__badge {
  display: inline-block;
  align-self: center;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-deep);
  background: rgba(201, 169, 97, 0.12);
  border: 1px solid rgba(201, 169, 97, 0.5);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  margin: 0 0 1.5rem;
}
.section--hsa .section__title { margin-bottom: 1.5rem; }
.section--hsa .section__lede {
  color: var(--charcoal);
  font-size: 1.05rem;
  max-width: 680px;
}

/* ============================================================
   Capture / signup
   ============================================================ */
.section--capture {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-warm) 100%);
}
.section--capture .section__lede { margin-bottom: 2.5rem; }
.capture__fineprint {
  margin-top: 3rem;
  font-size: 0.9rem;
  color: var(--muted);
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: var(--primary-dark);
  color: rgba(245, 241, 232, 0.78);
  padding: 4rem 0 2rem;
  font-size: 0.92rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
@media (min-width: 720px) {
  .footer__grid {
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 3rem;
  }
}
.footer__col--brand .wordmark--footer { display: inline-block; margin-bottom: 0.75rem; }
.footer__tagline {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--accent-soft);
  font-size: 1rem;
  max-width: 320px;
  margin: 0;
}
.footer__heading {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--accent-soft);
  margin: 0 0 1rem;
}
.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer__links a {
  color: rgba(245, 241, 232, 0.75);
  transition: color 0.2s var(--ease);
}
.footer__links a:hover { color: var(--accent); }

.footer__rule {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201, 169, 97, 0.5), transparent);
  margin: 0;
}
.footer__legal {
  padding-top: 1.5rem;
  font-size: 0.8rem;
  color: rgba(245, 241, 232, 0.6);
  text-align: center;
}
.footer__tm { color: var(--accent-soft); margin-left: 0.5em; }

/* ============================================================
   Reveal animation
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
  }
  .reveal.is-visible {
    opacity: 1;
    transform: none;
  }
  .reveal[data-stagger="1"] { transition-delay: 0.06s; }
  .reveal[data-stagger="2"] { transition-delay: 0.12s; }
  .reveal[data-stagger="3"] { transition-delay: 0.18s; }
  .reveal[data-stagger="4"] { transition-delay: 0.24s; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .hero__scroll-line { animation: none; }
}

/* ============================================================
   Print
   ============================================================ */
@media print {
  .topnav, .mobile-menu, .hero__scroll, .email-form { display: none !important; }
  body { background: white; color: black; }
}
