/* ═══════════════════════════════════════════════════════════════
   Jennifer D. Ashford — brand stylesheet
   Palette: deep navy ink + warm ember accent on a cream ground
   ═══════════════════════════════════════════════════════════════ */

:root {
  /* ink */
  --ink-900: #0E1D33;
  --ink-800: #16294A;
  --ink-700: #1E3557;
  --ink-500: #46618A;
  --muted:   #5C6D85;
  --muted-2: #5F6D82;   /* 5.2:1 on white, 4.5:1 on sand */

  /* accent */
  --ember:     #C0742F;             /* decorative only — never behind small text */
  --ember-600: #9A5619;             /* text-safe: 5.4:1 on cream, 4.9:1 on sand */
  --ember-100: #F6E7D5;

  /* ground */
  --bg:      #FBFAF7;
  --sand:    #F3EFE7;
  --surface: #FFFFFF;
  --border:  #E7E1D5;
  --border-strong: #D6CDBC;

  /* type */
  --serif: "Fraunces", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* rhythm */
  --container: 1180px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --section-y: clamp(4.5rem, 9vw, 8rem);
  --radius: 14px;
  --radius-lg: 22px;

  --shadow-sm: 0 1px 2px rgba(14, 29, 51, .05), 0 2px 8px rgba(14, 29, 51, .04);
  --shadow-md: 0 4px 12px rgba(14, 29, 51, .06), 0 16px 40px rgba(14, 29, 51, .07);
  --shadow-lg: 0 8px 24px rgba(14, 29, 51, .08), 0 32px 64px rgba(14, 29, 51, .10);

  color-scheme: light;
}

/* ── reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg);
  color: var(--ink-800);
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, picture, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; }
button, input, select, textarea { font: inherit; color: inherit; }

:focus-visible {
  outline: 2.5px solid var(--ember);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; left: 50%; top: -100px;
  transform: translateX(-50%);
  z-index: 200;
  background: var(--ink-900); color: #fff;
  padding: .7rem 1.2rem; border-radius: 0 0 10px 10px;
  text-decoration: none; font-weight: 600; font-size: .9rem;
  transition: top .18s ease;
}
.skip-link:focus { top: 0; }

/* ── layout ────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--section-y); }
.section-alt { background: var(--sand); }

.section-head { max-width: 46rem; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head h2 { margin-top: .5rem; }
.section-lede {
  margin-top: 1.1rem;
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 38rem;
}

/* ── typography ────────────────────────────────────────────── */
h1, h2, h3 {
  font-family: var(--serif);
  font-variation-settings: "SOFT" 30, "WONK" 0, "opsz" 60;
  color: var(--ink-900);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.015em;
  text-wrap: balance;
}

h2 { font-size: clamp(1.9rem, 4vw, 2.85rem); }
h3 { font-size: 1.2rem; line-height: 1.3; letter-spacing: -0.01em; }

p { text-wrap: pretty; }

.eyebrow {
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--ember-600);
}
.eyebrow-light { color: #E9A961; }

/* ── buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .95rem 1.6rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .97rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color .18s ease, color .18s ease,
              border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.btn-primary {
  background: var(--ink-900);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background: var(--ink-700);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  background: transparent;
  color: var(--ink-900);
  border-color: var(--border-strong);
}
.btn-ghost:hover { border-color: var(--ink-900); background: rgba(14, 29, 51, .035); }

/* On the navy club panel: cream fill reads far cleaner than ember,
   which only manages 3.6:1 behind white text. */
.btn-on-dark { background: var(--bg); color: var(--ink-900); }
.btn-on-dark:hover { background: #fff; }

.btn-sm { padding: .62rem 1.15rem; font-size: .9rem; }
.btn-block { width: 100%; }
.btn-icon { width: 20px; height: 20px; flex: none; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-weight: 600;
  font-size: .95rem;
  color: var(--ember-600);
  text-decoration: none;
}
.link-arrow svg { width: 18px; height: 18px; transition: transform .18s ease; }
.link-arrow:hover svg { transform: translateX(4px); }
.link-arrow-light { color: #E9A961; }

/* ═══════════════ HEADER ═══════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 250, 247, .82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 1px 20px rgba(14, 29, 51, .05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 74px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  text-decoration: none;
  color: var(--ink-900);
}
.brand-mark { color: var(--ink-900); flex: none; }
.brand-mark svg { width: 34px; height: 34px; }

.brand-text { display: flex; align-items: baseline; gap: .45rem; }
.brand-name {
  font-family: var(--serif);
  font-variation-settings: "SOFT" 30, "opsz" 40;
  font-weight: 600;
  font-size: 1.08rem;
  letter-spacing: -0.015em;
  white-space: nowrap;
}
.brand-sub {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--ember-600);
}

.nav { display: flex; align-items: center; gap: 2rem; }
.nav > a {
  font-size: .95rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--ink-700);
  transition: color .16s ease;
}
.nav > a:not(.btn):hover { color: var(--ember-600); }
.nav .nav-cta { color: #fff; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  padding: 0 10px;
  background: none;
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  cursor: pointer;
}
.nav-toggle span {
  display: block; height: 2px; width: 100%;
  background: var(--ink-900); border-radius: 2px;
  transition: transform .22s ease, opacity .18s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════ HERO ═══════════════ */
.hero {
  position: relative;
  padding-block: clamp(3rem, 7vw, 6rem) clamp(4rem, 8vw, 7rem);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -30%; right: -10%;
  width: 60vw; height: 60vw;
  max-width: 760px; max-height: 760px;
  background: radial-gradient(circle, rgba(192, 116, 47, .09) 0%, rgba(192, 116, 47, 0) 62%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.hero-title {
  margin-top: 1.1rem;
  font-size: clamp(2.5rem, 6.2vw, 4.35rem);
  line-height: 1.04;
  letter-spacing: -0.028em;
}
.hero-title em {
  position: relative;
  font-style: italic;
  font-variation-settings: "SOFT" 60, "WONK" 1, "opsz" 90;
  color: var(--ember-600);
  white-space: nowrap;
}
.hero-title em::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: .04em;
  height: .085em;
  background: var(--ember);
  opacity: .28;
  border-radius: 999px;
}

.hero-lede {
  margin-top: 1.5rem;
  max-width: 33rem;
  font-size: clamp(1.05rem, 1.7vw, 1.2rem);
  line-height: 1.62;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 2.1rem;
}

.cred-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .55rem 1.3rem;
  margin-top: 2.6rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--border);
  list-style: none;
  padding-left: 0;
  font-size: .84rem;
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--ink-500);
}
.cred-strip li { display: flex; align-items: center; gap: 1.3rem; }
.cred-strip li:not(:last-child)::after {
  content: "";
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--ember);
  opacity: .5;
}

/* hero photo */
.hero-media { position: relative; justify-self: center; width: 100%; max-width: 430px; }

.hero-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  isolation: isolate;
}
.hero-photo::after {
  content: "";
  position: absolute; inset: 0;
  box-shadow: inset 0 0 0 1px rgba(14, 29, 51, .07);
  border-radius: inherit;
  pointer-events: none;
}
.hero-media::before {
  content: "";
  position: absolute;
  inset: 22px -22px -22px 22px;
  border: 1.5px solid var(--ember);
  opacity: .32;
  border-radius: var(--radius-lg);
  z-index: -1;
}

.hero-badge {
  position: absolute;
  left: -18px; bottom: 30px;
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .85rem 1.15rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
.hero-badge-num {
  font-family: var(--serif);
  font-variation-settings: "SOFT" 30, "opsz" 60;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
  color: var(--ember-600);
}
.hero-badge-label {
  font-size: .74rem;
  line-height: 1.32;
  font-weight: 500;
  color: var(--muted);
}

/* ═══════════════ AUDIENCES ═══════════════ */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(310px, 100%), 1fr));
  gap: 1.5rem;
}

.audience-card {
  display: flex;
  flex-direction: column;
  gap: .9rem;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .22s ease;
}
.audience-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.audience-icon {
  display: grid;
  place-items: center;
  width: 50px; height: 50px;
  border-radius: 13px;
  background: var(--ember-100);
  color: var(--ember-600);
  margin-bottom: .3rem;
}
.audience-icon svg { width: 26px; height: 26px; }

.audience-card p { color: var(--muted); font-size: .98rem; }
.audience-fix {
  padding-top: .9rem;
  border-top: 1px solid var(--border);
}
.audience-fix strong { color: var(--ink-900); font-weight: 600; }
.audience-card .link-arrow { margin-top: auto; padding-top: .5rem; }

/* ═══════════════ SERVICES ═══════════════ */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: 1.5rem;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(1.75rem, 3vw, 2.4rem);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-strong);
}
.service-card-accent { border-color: rgba(192, 116, 47, .4); }
.service-card-accent::before {
  content: "";
  position: absolute; inset: -1px -1px auto -1px;
  height: 4px;
  background: linear-gradient(90deg, var(--ember), #E2A45E);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.service-index {
  font-family: var(--serif);
  font-variation-settings: "SOFT" 30, "opsz" 40;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--ember);
  opacity: .8;
}
.service-card h3 { margin-top: .55rem; font-size: 1.32rem; }
.service-blurb { margin-top: .7rem; color: var(--muted); font-size: .97rem; }

.check-list {
  list-style: none;
  padding: 1.35rem 0 0;
  margin: 1.35rem 0 0;
  border-top: 1px solid var(--border);
  display: grid;
  gap: .62rem;
  font-size: .94rem;
}
.check-list li {
  position: relative;
  padding-left: 1.6rem;
  color: var(--ink-700);
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: .48em;
  width: 8px; height: 8px;
  border-radius: 50%;
  border: 2px solid var(--ember);
  opacity: .75;
}

.service-fit {
  margin-top: auto;
  padding-top: 1.35rem;
  font-size: .87rem;
  color: var(--muted-2);
}
.service-fit strong { color: var(--ink-700); font-weight: 600; }

/* ═══════════════ CLUBS ═══════════════ */
.clubs {
  position: relative;
  background:
    radial-gradient(1000px 460px at 82% -8%, rgba(192, 116, 47, .17), transparent 62%),
    linear-gradient(168deg, #142743 0%, var(--ink-900) 58%, #0A1729 100%);
  color: #DCE4EF;
  overflow: hidden;
}
/* faint pitch-line motif */
.clubs::before {
  content: "";
  position: absolute;
  left: 50%; top: 0; bottom: 0;
  width: 1px;
  background: rgba(255, 255, 255, .05);
}
.clubs::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 260px; height: 260px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, .05);
  border-radius: 50%;
  pointer-events: none;
}

.clubs > .container { position: relative; z-index: 1; }
.clubs h2, .clubs h3 { color: #fff; }
.clubs-head { max-width: 50rem; margin-bottom: clamp(2.5rem, 5vw, 3.75rem); }
.clubs-head h2 { margin-top: .6rem; }
.clubs-lede {
  margin-top: 1.25rem;
  max-width: 40rem;
  font-size: 1.1rem;
  color: rgba(220, 228, 239, .82);
}
.clubs-lede strong { color: #fff; font-weight: 600; }

.clubs-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(1.75rem, 4vw, 3.5rem);
  align-items: start;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  gap: 1.35rem;
}
.feature-list li {
  position: relative;
  padding-left: 2.2rem;
  font-size: .97rem;
  color: rgba(220, 228, 239, .74);
}
.feature-list li::before {
  content: "";
  position: absolute;
  left: 0; top: .18em;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(192, 116, 47, .22);
  border: 1px solid rgba(226, 164, 94, .45);
}
.feature-list li::after {
  content: "";
  position: absolute;
  left: 7px; top: .62em;
  width: 8px; height: 4px;
  border-left: 1.8px solid #E9A961;
  border-bottom: 1.8px solid #E9A961;
  transform: rotate(-45deg);
}
.feature-list strong { display: block; color: #fff; font-weight: 600; margin-bottom: .12rem; }

.clubs-aside {
  padding: clamp(1.75rem, 3vw, 2.4rem);
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(6px);
}
.clubs-aside > p { margin-top: .8rem; color: rgba(220, 228, 239, .74); font-size: .97rem; }

.mini-steps {
  list-style: none;
  padding: 0;
  margin: 1.6rem 0 0;
  display: grid;
  gap: .95rem;
  font-size: .94rem;
  color: rgba(220, 228, 239, .82);
}
.mini-steps li { display: flex; align-items: flex-start; gap: .8rem; }
.mini-steps span {
  flex: none;
  display: grid;
  place-items: center;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--ember);
  color: #fff;
  font-size: .74rem;
  font-weight: 700;
  margin-top: .1rem;
}

.clubs-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.1rem;
  margin-top: 1.9rem;
}

.clubs-note {
  margin-top: 1.5rem;
  padding-top: 1.3rem;
  border-top: 1px solid rgba(255, 255, 255, .11);
  font-size: .85rem;
  line-height: 1.55;
  /* .72 not .6 — this block sits under the ember glow, the lightest part
     of the panel, where .6 drops to 4.2:1 */
  color: rgba(220, 228, 239, .72);
}
.clubs-note strong { color: rgba(255, 255, 255, .92); font-weight: 600; }
.clubs-note a { color: #E9A961; text-underline-offset: 3px; }

/* ═══════════════ PROCESS ═══════════════ */
.process {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(270px, 100%), 1fr));
  gap: clamp(1.75rem, 4vw, 3rem);
  counter-reset: step;
}

.process-step { position: relative; padding-top: 2rem; border-top: 2px solid var(--border-strong); }
.process-step::before {
  content: "";
  position: absolute;
  top: -2px; left: 0;
  width: 46px; height: 2px;
  background: var(--ember);
}
.process-num {
  font-family: var(--serif);
  font-variation-settings: "SOFT" 30, "opsz" 60;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ember-600);
  letter-spacing: .05em;
}
.process-step h3 { margin-top: .55rem; font-size: 1.28rem; }
.process-step p { margin-top: .75rem; color: var(--muted); font-size: .98rem; }

/* ═══════════════ ABOUT ═══════════════ */
.about-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
.about-media { position: sticky; top: 110px; }

.about-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.about-photo::after {
  content: "";
  position: absolute; inset: 0;
  box-shadow: inset 0 0 0 1px rgba(14, 29, 51, .07);
  border-radius: inherit;
}

.about-copy h2 { margin-top: .5rem; margin-bottom: 1.4rem; }
.about-copy p { margin-bottom: 1.1rem; color: var(--muted); }
.about-copy p strong { color: var(--ink-900); font-weight: 600; }

.fact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(190px, 100%), 1fr));
  gap: 1.4rem 1.75rem;
  margin-top: 2.2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.fact-grid dt {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: var(--ember-600);
  margin-bottom: .32rem;
}
.fact-grid dd {
  margin: 0;
  font-size: .96rem;
  font-weight: 500;
  color: var(--ink-800);
}

/* ═══════════════ CONTACT ═══════════════ */
.contact { background: var(--sand); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
.contact-copy h2 { margin-top: .5rem; }
.contact-lede { margin-top: 1.15rem; color: var(--muted); font-size: 1.05rem; max-width: 30rem; }

.contact-list {
  list-style: none;
  padding: 0;
  margin: 2.2rem 0 0;
  display: grid;
  gap: 1.05rem;
}
.contact-list li { display: flex; align-items: center; gap: .85rem; font-size: 1rem; }
.contact-list svg { width: 22px; height: 22px; flex: none; color: var(--ember-600); }
.contact-list a {
  color: var(--ink-900);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid var(--border-strong);
  padding-bottom: 1px;
  transition: border-color .16s ease, color .16s ease;
}
.contact-list a:hover { color: var(--ember-600); border-color: var(--ember); }
.contact-list span { color: var(--muted); }

.socials { display: flex; gap: .7rem; margin-top: 2rem; }
.socials a {
  display: grid;
  place-items: center;
  width: 42px; height: 42px;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  color: var(--ink-700);
  transition: background-color .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}
.socials a:hover {
  background: var(--ink-900);
  border-color: var(--ink-900);
  color: #fff;
  transform: translateY(-2px);
}
.socials svg { width: 20px; height: 20px; }

.contact-form {
  display: grid;
  gap: 1.05rem;
  padding: clamp(1.75rem, 3.5vw, 2.5rem);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.field { display: grid; gap: .42rem; }
.field label {
  font-size: .84rem;
  font-weight: 600;
  color: var(--ink-700);
  letter-spacing: .01em;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: .78rem .95rem;
  background: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  font-size: .97rem;
  transition: border-color .16s ease, box-shadow .16s ease, background-color .16s ease;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  background: var(--surface);
  border-color: var(--ember);
  box-shadow: 0 0 0 3px rgba(192, 116, 47, .15);
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }

.contact-form .btn { margin-top: .35rem; }
.form-note { font-size: .84rem; color: var(--muted-2); text-align: center; }
.form-note a { color: var(--ember-600); font-weight: 500; }

/* ═══════════════ FOOTER ═══════════════ */
.site-footer {
  background: var(--ink-900);
  color: rgba(220, 228, 239, .62);
  padding-block: clamp(2.75rem, 5vw, 4rem);
  font-size: .9rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
.footer-brand { display: flex; align-items: center; gap: .85rem; }
.footer-brand .brand-mark { color: rgba(255, 255, 255, .1); }
.footer-brand .brand-mark svg { width: 42px; height: 42px; }
.footer-name {
  font-family: var(--serif);
  font-variation-settings: "SOFT" 30, "opsz" 40;
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
}
.footer-tag { margin-top: .2rem; font-size: .82rem; }

.footer-nav { display: grid; gap: .6rem; }
.footer-nav a {
  text-decoration: none;
  color: rgba(220, 228, 239, .62);
  transition: color .16s ease;
}
.footer-nav a:hover { color: #E9A961; }

.footer-meta { display: grid; gap: .6rem; font-size: .82rem; justify-items: start; }
.footer-meta a { color: rgba(220, 228, 239, .62); text-underline-offset: 3px; }
.footer-meta a:hover { color: #E9A961; }

/* ═══════════════ REVEAL ANIMATION ═══════════════ */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s cubic-bezier(.22, .61, .36, 1),
              transform .6s cubic-bezier(.22, .61, .36, 1);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ═══════════════ RESPONSIVE ═══════════════ */
@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { order: -1; max-width: 330px; justify-self: start; }
  .hero-badge { left: auto; right: -14px; bottom: 22px; }
  .clubs-grid,
  .about-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .about-media { position: static; max-width: 340px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  html { scroll-padding-top: 80px; }
  .nav-toggle { display: flex; }

  .nav {
    position: fixed;
    inset: 74px 0 auto 0;   /* matches .header-inner min-height */
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem var(--gutter) 1.75rem;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 16px 32px rgba(14, 29, 51, .1);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
  }
  .nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .nav > a {
    padding: .95rem .25rem;
    border-bottom: 1px solid var(--border);
    font-size: 1.02rem;
  }
  .nav .nav-cta {
    margin-top: 1.1rem;
    border-bottom: none;
    padding: .9rem 1.2rem;
    justify-content: center;
  }

  .brand-sub { display: none; }
  .hero-media { max-width: 290px; }
  .hero-badge { right: -8px; padding: .7rem .95rem; }
  .hero-badge-num { font-size: 1.5rem; }
  .cred-strip { gap: .4rem 1rem; font-size: .8rem; }
  .cred-strip li { gap: 1rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

@media print {
  .site-header, .nav-toggle, .hero-actions, .contact-form-wrap, .reveal { display: revert; }
  .site-header { position: static; }
  .reveal { opacity: 1; transform: none; }
}
