/* ═══════════════════════════════════════════════
   CLUBSTANDARD — STYLES
   Production-ready CSS for ClubStandard landing page
═══════════════════════════════════════════════ */


/* ─────────────────────────────
   1. CSS CUSTOM PROPERTIES
───────────────────────────── */
:root {
  /* Brand colors */
  --color-charcoal:    #1A1D1B;
  --color-forest:      #1F3A2E;
  --color-offwhite:    #F7F5F0;
  --color-gold:        #B8935A;
  --color-gold-hover:  #A07D4A;
  --color-grey:        #5A5F5C;
  --color-white:       #FFFFFF;
  --color-light-rule:  rgba(26, 29, 27, 0.10);
  --color-dark-rule:   rgba(247, 245, 240, 0.12);

  /* Typography */
  --font-serif: 'Fraunces', 'Source Serif 4', Georgia, 'Times New Roman', serif;
  --font-sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;

  /* Spacing */
  --section-v:       clamp(5rem, 10vw, 8rem);
  --container-max:   1200px;
  --container-narrow: 800px;
  --container-px:    clamp(1.25rem, 5vw, 2.5rem);

  /* Nav */
  --nav-h: 72px;

  /* Radii */
  --r-sm:  4px;
  --r-md:  8px;
  --r-lg:  14px;

  /* Transitions */
  --ease: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  --ease-slow: 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}


/* ─────────────────────────────
   2. RESET & BASE
───────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-charcoal);
  background-color: var(--color-offwhite);
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; font-size: inherit; }
input, select, textarea { font-family: inherit; font-size: inherit; }
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.025em;
}
p { color: var(--color-grey); }
strong { font-weight: 600; color: var(--color-charcoal); }


/* ─────────────────────────────
   3. LAYOUT UTILITIES
───────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-px);
}
.container--narrow {
  max-width: var(--container-narrow);
}
.section {
  padding-block: var(--section-v);
}

/* Eyebrow / section label */
.eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1.25rem;
}
.eyebrow--light { color: rgba(184, 147, 90, 0.85); }
.eyebrow--gold  { color: var(--color-gold); }

/* Section headings */
.section-headline {
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  color: var(--color-charcoal);
  margin-bottom: 1.5rem;
}
.section-headline--light { color: var(--color-offwhite); }

/* Section body copy */
.section-body {
  font-size: 1.0625rem;
  line-height: 1.78;
  color: var(--color-grey);
  max-width: 640px;
}
.section-subhead {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--color-grey);
  margin-bottom: 3rem;
}
.section-subhead--muted { color: rgba(247, 245, 240, 0.62); }


/* ─────────────────────────────
   4. BUTTONS
───────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1;
  padding: 0.8125rem 1.625rem;
  border-radius: var(--r-sm);
  white-space: nowrap;
  transition:
    background-color var(--ease),
    color var(--ease),
    transform var(--ease),
    box-shadow var(--ease);
}
.btn-gold {
  background-color: var(--color-gold);
  color: var(--color-charcoal);
}
.btn-gold:hover,
.btn-gold:focus-visible {
  background-color: var(--color-gold-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(184, 147, 90, 0.30);
}
.btn-gold:active {
  transform: translateY(0);
  box-shadow: none;
}
.btn-sm  { font-size: 0.8125rem; padding: 0.625rem 1.125rem; }
.btn-lg  { font-size: 0.9375rem; padding: 0.9375rem 2rem; }

/* Text link button */
.btn-text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-charcoal);
  transition: gap var(--ease), color var(--ease);
  padding-block: 0.8125rem;
}
.btn-text-link svg {
  flex-shrink: 0;
  transition: transform var(--ease);
}
.btn-text-link:hover,
.btn-text-link:focus-visible {
  color: var(--color-forest);
  gap: 0.625rem;
}
.btn-text-link:hover svg { transform: translateX(2px); }

/* Focus ring */
.btn:focus-visible,
.btn-text-link:focus-visible,
a:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 3px;
}


/* ─────────────────────────────
   5. NAVIGATION
───────────────────────────── */
.nav-header {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  height: var(--nav-h);
  z-index: 200;
  transition: background-color var(--ease-slow), box-shadow var(--ease-slow);
}
.nav-header.nav-scrolled {
  background-color: rgba(247, 245, 240, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--color-light-rule);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-px);
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  color: var(--color-charcoal);
  transition: color var(--ease);
  white-space: nowrap;
}
.nav-logo:hover { color: var(--color-forest); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}
.nav-link {
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--color-charcoal);
  transition: color var(--ease);
}
.nav-link:hover { color: var(--color-forest); }

/* Mobile hamburger toggle */
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  padding: 7px;
  border-radius: var(--r-sm);
  color: var(--color-charcoal);
  transition: color var(--ease), background-color var(--ease);
}
.nav-toggle:hover { background-color: rgba(26,29,27,0.06); }
.nav-toggle svg { width: 22px; height: 22px; }
.icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-hamburger { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close     { display: block; }


/* ─────────────────────────────
   6. HERO
───────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  background-color: var(--color-offwhite);
  overflow: hidden;
}

/* Topographic contour texture — two clusters of concentric ellipses */
.hero-texture {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1440' height='900' viewBox='0 0 1440 900'%3E%3Cg fill='none' stroke='%231F3A2E'%3E%3Cellipse cx='1120' cy='380' rx='560' ry='360' stroke-width='1.3' opacity='0.042'/%3E%3Cellipse cx='1120' cy='380' rx='468' ry='295' stroke-width='1.3' opacity='0.042'/%3E%3Cellipse cx='1120' cy='380' rx='376' ry='230' stroke-width='1.3' opacity='0.042'/%3E%3Cellipse cx='1120' cy='380' rx='284' ry='165' stroke-width='1.3' opacity='0.042'/%3E%3Cellipse cx='1120' cy='380' rx='192' ry='100' stroke-width='1.3' opacity='0.042'/%3E%3Cellipse cx='1120' cy='380' rx='100' ry='52' stroke-width='1.3' opacity='0.042'/%3E%3Cellipse cx='230' cy='730' rx='330' ry='210' stroke-width='1.3' opacity='0.032'/%3E%3Cellipse cx='230' cy='730' rx='248' ry='158' stroke-width='1.3' opacity='0.032'/%3E%3Cellipse cx='230' cy='730' rx='166' ry='106' stroke-width='1.3' opacity='0.032'/%3E%3Cellipse cx='230' cy='730' rx='84' ry='54' stroke-width='1.3' opacity='0.032'/%3E%3C/g%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: calc(var(--nav-h) + clamp(4.5rem, 9vw, 7rem));
  padding-bottom: clamp(4rem, 8vw, 6rem);
}

.hero-text {
  max-width: 660px;
}

.hero-headline {
  font-size: clamp(3.25rem, 7.5vw, 5.5rem);
  letter-spacing: -0.035em;
  color: var(--color-charcoal);
  line-height: 1.03;
  margin-bottom: 1.75rem;
}

.hero-subhead {
  font-size: clamp(1.0625rem, 2.1vw, 1.25rem);
  line-height: 1.68;
  color: var(--color-grey);
  margin-bottom: 2.75rem;
  max-width: 540px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}


/* ─────────────────────────────
   7. THE PROBLEM SECTION
───────────────────────────── */
.section-problem {
  background-color: var(--color-white);
}
.section-problem .section-body {
  margin-bottom: 0;
}

/* Contrast grid — asymmetric information table */
.contrast-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 3.5rem;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--color-light-rule);
  gap: 1px;
  background-color: var(--color-light-rule);
}

.contrast-col {
  padding: 2.25rem 2.5rem 2.5rem;
}
.contrast-vendor {
  background-color: var(--color-charcoal);
}
.contrast-club {
  background-color: #EEEBe4;
}

.contrast-header {
  display: flex;
  align-items: center;
  gap: 0.5625rem;
  margin-bottom: 1.625rem;
}
.contrast-vendor .contrast-header { color: rgba(247, 245, 240, 0.45); }
.contrast-club   .contrast-header { color: var(--color-grey); }

.contrast-label {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contrast-list {
  display: flex;
  flex-direction: column;
  gap: 0.9375rem;
}
.contrast-list li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.62;
}
.contrast-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
}
.contrast-vendor .contrast-list li        { color: rgba(247, 245, 240, 0.82); }
.contrast-vendor .contrast-list li::before { background-color: var(--color-gold); }
.contrast-club   .contrast-list li        { color: var(--color-grey); }
.contrast-club   .contrast-list li::before {
  background-color: transparent;
  border: 1.5px solid #999;
}


/* ─────────────────────────────
   8. HOW IT WORKS SECTION
───────────────────────────── */
.section-how {
  background-color: var(--color-offwhite);
}
.section-how .eyebrow {
  margin-bottom: 3rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0 2rem;
  position: relative;
}

/* Horizontal connector line through circle centers */
.steps-grid::before {
  content: '';
  position: absolute;
  top: 1.875rem; /* center of 3.75rem circle */
  left: 1.875rem;
  right: 1.875rem;
  height: 1px;
  background: var(--color-light-rule);
  z-index: 0;
}

.step {
  position: relative;
  z-index: 1;
  padding-right: 1rem;
}
.step:last-child { padding-right: 0; }

.step-number {
  font-family: var(--font-serif);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--color-charcoal);
  background-color: var(--color-offwhite);
  border: 1.5px solid var(--color-light-rule);
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.875rem;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  transition: border-color var(--ease), background-color var(--ease);
}
.step:hover .step-number {
  border-color: var(--color-gold);
  background-color: rgba(184, 147, 90, 0.06);
}

.step-title {
  font-family: var(--font-serif);
  font-size: 1.1875rem;
  font-weight: 400;
  color: var(--color-charcoal);
  letter-spacing: -0.015em;
  line-height: 1.28;
  margin-bottom: 0.75rem;
}

.step-body {
  font-size: 0.9375rem;
  line-height: 1.72;
  color: var(--color-grey);
}


/* ─────────────────────────────
   9. VENDOR COVERAGE SECTION
───────────────────────────── */
.section-coverage {
  background-color: var(--color-charcoal);
}

.section-coverage .section-headline {
  max-width: 480px;
  margin-bottom: 0;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background-color: rgba(247, 245, 240, 0.07);
  border: 1px solid rgba(247, 245, 240, 0.07);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-top: 3rem;
}

.category-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.75rem 1.875rem;
  background-color: var(--color-charcoal);
  transition: background-color var(--ease);
  cursor: default;
}
.category-card:hover {
  background-color: var(--color-forest);
}

.category-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  opacity: 0.82;
  transition: opacity var(--ease);
}
.category-icon svg   { width: 21px; height: 21px; }
.category-card:hover .category-icon { opacity: 1; }

.category-label {
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.005em;
  line-height: 1.38;
  color: rgba(247, 245, 240, 0.76);
  transition: color var(--ease);
}
.category-card:hover .category-label { color: rgba(247, 245, 240, 0.95); }


/* ─────────────────────────────
   10. CREDIBILITY / ABOUT
───────────────────────────── */
.section-credibility {
  background-color: var(--color-offwhite);
}
.section-credibility .section-body {
  margin-bottom: 3.25rem;
}

.trust-marks {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--color-light-rule);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.trust-mark {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.625rem 1.875rem;
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-light-rule);
  transition: background-color var(--ease);
}
.trust-mark:last-child { border-bottom: none; }
.trust-mark:hover { background-color: #F0EDE6; }

.trust-icon {
  flex-shrink: 0;
  margin-top: 1px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  background-color: rgba(184, 147, 90, 0.08);
  border-radius: var(--r-sm);
}
.trust-icon svg { width: 18px; height: 18px; }

.trust-title {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-charcoal);
  margin-bottom: 0.3125rem;
  font-family: var(--font-sans);
  letter-spacing: 0;
}
.trust-body {
  font-size: 0.875rem;
  line-height: 1.62;
  color: var(--color-grey);
}


/* ─────────────────────────────
   11. DEMO FORM SECTION
───────────────────────────── */
.section-demo {
  background-color: var(--color-forest);
}

.demo-form {
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.125rem;
}
.form-row--full {
  grid-template-columns: 1fr;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4375rem;
}

.form-group label {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.015em;
  color: rgba(247, 245, 240, 0.65);
}
.required-mark { color: var(--color-gold); }

/* Text inputs */
.form-group input {
  width: 100%;
  padding: 0.8125rem 1rem;
  background-color: rgba(247, 245, 240, 0.08);
  border: 1px solid rgba(247, 245, 240, 0.18);
  border-radius: var(--r-sm);
  color: var(--color-offwhite);
  font-size: 0.9375rem;
  transition: border-color var(--ease), background-color var(--ease);
  -webkit-appearance: none;
  appearance: none;
}
.form-group input::placeholder { color: rgba(247, 245, 240, 0.32); }
.form-group input:focus {
  outline: none;
  border-color: var(--color-gold);
  background-color: rgba(247, 245, 240, 0.12);
}
.form-group input.field-invalid {
  border-color: #D97070;
}

/* Select wrapper */
.select-wrap {
  position: relative;
}
.select-wrap select {
  width: 100%;
  padding: 0.8125rem 2.625rem 0.8125rem 1rem;
  background-color: rgba(247, 245, 240, 0.08);
  border: 1px solid rgba(247, 245, 240, 0.18);
  border-radius: var(--r-sm);
  color: var(--color-offwhite);
  font-size: 0.9375rem;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  transition: border-color var(--ease), background-color var(--ease);
}
.select-wrap select:focus {
  outline: none;
  border-color: var(--color-gold);
  background-color: rgba(247, 245, 240, 0.12);
}
.select-wrap select.field-invalid {
  border-color: #D97070;
}
.select-wrap select option {
  background-color: #1F3A2E;
  color: var(--color-offwhite);
}
/* Custom dropdown arrow */
.select-arrow {
  position: absolute;
  right: 0.9375rem;
  top: 50%;
  transform: translateY(-50%);
  width: 11px;
  height: 7px;
  color: rgba(247, 245, 240, 0.45);
  pointer-events: none;
  flex-shrink: 0;
}

/* Inline field errors */
.field-error {
  display: block;
  font-size: 0.75rem;
  color: #E08080;
  min-height: 1.125rem;
  line-height: 1.5;
}

.form-submit-row {
  margin-top: 0.375rem;
}

/* Success message */
.form-success {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.375rem 1.625rem;
  background-color: rgba(247, 245, 240, 0.07);
  border: 1px solid rgba(184, 147, 90, 0.35);
  border-radius: var(--r-md);
  margin-top: 1.25rem;
}
.form-success[hidden] { display: none; }

.form-success-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(184, 147, 90, 0.15);
  border-radius: 50%;
  color: var(--color-gold);
}
.form-success-icon svg { width: 18px; height: 18px; }

.form-success p {
  font-size: 0.9375rem;
  color: rgba(247, 245, 240, 0.9);
  line-height: 1.55;
}


/* ─────────────────────────────
   12. FOOTER
───────────────────────────── */
.footer {
  background-color: var(--color-charcoal);
  padding-block: 3.75rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  color: var(--color-offwhite);
}
.footer-tagline {
  font-size: 0.875rem;
  color: rgba(247, 245, 240, 0.42);
  line-height: 1.5;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 2.25rem;
  border-top: 1px solid rgba(247, 245, 240, 0.09);
}
.footer-copy {
  font-size: 0.8125rem;
  color: rgba(247, 245, 240, 0.30);
}
.footer-nav {
  display: flex;
  gap: 2rem;
}
.footer-link {
  font-size: 0.8125rem;
  color: rgba(247, 245, 240, 0.42);
  transition: color var(--ease);
}
.footer-link:hover { color: var(--color-offwhite); }


/* ─────────────────────────────
   13. RESPONSIVE — TABLET  (≤ 960px)
───────────────────────────── */
@media (max-width: 960px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 2.5rem;
  }
  .steps-grid::before {
    display: none;
  }

  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contrast-grid {
    grid-template-columns: 1fr;
  }
  .contrast-col { padding: 1.875rem 2rem; }
}


/* ─────────────────────────────
   14. RESPONSIVE — MOBILE  (≤ 640px)
───────────────────────────── */
@media (max-width: 640px) {
  :root {
    --section-v: clamp(4rem, 14vw, 5.5rem);
    --nav-h: 64px;
  }

  /* Nav — mobile drawer */
  .nav-toggle {
    display: flex;
  }
  .nav-links {
    position: fixed;
    inset-block-start: var(--nav-h);
    inset-inline: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background-color: rgba(247, 245, 240, 0.98);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 0.75rem var(--container-px) 1.5rem;
    border-bottom: 1px solid var(--color-light-rule);
    box-shadow: 0 8px 32px rgba(26, 29, 27, 0.12);
    /* Hidden by default */
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity var(--ease-slow), transform var(--ease-slow);
  }
  .nav-links.nav-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .nav-link {
    display: block;
    padding: 0.9375rem 0;
    font-size: 1rem;
    border-bottom: 1px solid var(--color-light-rule);
  }
  .nav-links .btn {
    margin-top: 1rem;
    width: 100%;
    justify-content: center;
  }

  /* Hero */
  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-ctas .btn {
    text-align: center;
    justify-content: center;
  }
  .hero-ctas .btn-text-link {
    justify-content: center;
  }

  /* Steps */
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }
  .step { padding-right: 0; }

  /* Category cards */
  .category-grid {
    grid-template-columns: 1fr;
  }

  /* Problem contrast */
  .contrast-col { padding: 1.625rem 1.5rem; }

  /* Form */
  .form-row {
    grid-template-columns: 1fr;
    gap: 1.125rem;
  }

  /* Footer */
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}


/* ─────────────────────────────
   15. PRINT (basic override)
───────────────────────────── */
@media print {
  .nav-header,
  .nav-toggle { display: none; }
  .hero { min-height: auto; padding-top: 2rem; }
  .hero-texture { display: none; }
}
