/* ============================================================
   EFE GLOBAL STYLES
   Elite Fitness Evolution — Design System v1.0
   Depends on: tokens.css (load first)
   ============================================================ */

/* ============================================================
   RESET & BASE
   ============================================================ */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  font-size: 100%; /* 16px base */
}

body {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: 300;
  line-height: var(--leading-normal);
  color: var(--c-text-primary);
  background-color: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Prevent overflow when mobile nav is open */
body.nav-open {
  overflow: hidden;
}

img, video, svg {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

ul, ol {
  list-style: none;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* ============================================================
   ACCESSIBILITY
   ============================================================ */

/* Skip to main content */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--c-ivory);
  color: var(--c-text-inverse);
  padding: 0.625rem 1.25rem;
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.04em;
  z-index: 9999;
  border-radius: var(--r);
  text-decoration: none;
  transition: top var(--t-fast) var(--ease);
}
.skip-link:focus {
  top: 1rem;
  outline: 2px solid var(--c-bronze);
  outline-offset: 2px;
}

/* Visible focus for keyboard nav */
:focus-visible {
  outline: 2px solid var(--c-bronze);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}

/* Screen-reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */

.container {
  width: 100%;
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.container--narrow {
  max-width: var(--max-w-narrow);
}

.container--wide {
  max-width: var(--max-w-wide);
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
  color: var(--c-text-primary);
}

h1 {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 600;
}

h2 {
  font-family: var(--font-display);
  font-size: var(--text-section);
  font-weight: 600;
}

h3 {
  font-family: var(--font-body);
  font-size: var(--text-2xl);
  font-weight: 500;
  letter-spacing: -0.01em;
}

h4 {
  font-family: var(--font-body);
  font-size: var(--text-xl);
  font-weight: 500;
  letter-spacing: 0;
}

p {
  line-height: var(--leading-relaxed);
}

/* Eyebrow label — used above section headings */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--c-bronze);
}

/* Large editorial pull quote */
.pull-quote {
  font-family: var(--font-display);
  font-size: clamp(var(--text-2xl), 3.5vw, var(--text-4xl));
  font-weight: 500;
  font-style: italic;
  line-height: 1.3;
  color: var(--c-ivory);
}
.pull-quote-attr {
  display: block;
  margin-top: var(--sp-4);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-style: normal;
  font-weight: 500;
  color: var(--c-bronze);
  letter-spacing: var(--tracking-wider);
}

/* Body text on dark */
.body-copy {
  font-size: var(--text-lg);
  font-weight: 300;
  color: var(--c-text-secondary);
  line-height: var(--leading-relaxed);
}

/* ============================================================
   FINE DECORATIVE ELEMENTS
   ============================================================ */

/* Thin bronze rule — use before section headings */
.rule-bronze {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--c-bronze);
  margin-bottom: var(--sp-6);
}

/* Full-width subtle divider */
.rule-subtle {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--c-border-subtle);
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.875rem;
  min-height: 44px;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  border-radius: var(--r);
  transition:
    background var(--t-base) var(--ease),
    border-color var(--t-base) var(--ease),
    color var(--t-base) var(--ease),
    box-shadow var(--t-base) var(--ease),
    transform var(--t-fast) var(--ease);
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  touch-action: manipulation;
  position: relative;
  overflow: hidden;
}

/* Primary — Ivory fill, dark text */
.btn-primary {
  background: var(--c-ivory);
  color: var(--c-text-inverse);
  border-color: var(--c-ivory);
}
.btn-primary:hover {
  background: #fff;
  border-color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(168, 120, 53, 0.35), 0 4px 12px rgba(244, 241, 232, 0.08);
}
.btn-primary:active {
  transform: translateY(0);
  box-shadow: none;
}

/* Ghost — transparent, ivory outline */
.btn-ghost {
  background: transparent;
  color: var(--c-ivory);
  border-color: var(--c-border-mid);
}
.btn-ghost:hover {
  border-color: var(--c-border-strong);
  background: rgba(244, 241, 232, 0.05);
}

/* Green — forest green fill */
.btn-green {
  background: var(--c-green);
  color: var(--c-ivory);
  border-color: var(--c-green-light);
}
.btn-green:hover {
  background: var(--c-green-light);
  border-color: var(--c-green-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(28, 66, 51, 0.5);
}

/* Text link style */
.btn-text {
  background: transparent;
  color: var(--c-text-secondary);
  padding: 0;
  border: none;
  font-size: var(--text-sm);
  letter-spacing: 0.04em;
  text-transform: none;
}
.btn-text:hover {
  color: var(--c-ivory);
}
.btn-text::after {
  content: ' →';
  transition: transform var(--t-base) var(--ease);
  display: inline-block;
}
.btn-text:hover::after {
  transform: translateX(3px);
}

/* Loading state — hides label, shows spinner */
.btn--loading {
  pointer-events: none;
  color: transparent !important;
}
.btn--loading::before {
  content: '';
  position: absolute;
  inset: 0;
  margin: auto;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(0, 0, 0, 0.25);
  border-top-color: var(--c-bg);
  border-radius: 50%;
}
.btn-primary.btn--loading::before { border-top-color: var(--c-text-inverse); }
.btn-green.btn--loading::before   { border-top-color: var(--c-ivory); }

@media (prefers-reduced-motion: no-preference) {
  .btn--loading::before {
    animation: btn-spin 0.65s linear infinite;
  }
}
@keyframes btn-spin {
  to { transform: rotate(360deg); }
}

/* ============================================================
   GLOBAL HEADER
   ============================================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  transition:
    background var(--t-slow) var(--ease),
    border-color var(--t-slow) var(--ease),
    backdrop-filter var(--t-slow) var(--ease);
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(13, 15, 14, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--c-border-subtle);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* Logo */
.header-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  text-decoration: none;
  flex-shrink: 0;
}

.header-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: invert(1);
}

.header-logo-wordmark {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--c-ivory);
  line-height: 1;
}

/* Primary navigation */
.header-nav {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
}

.nav-link {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--c-text-muted);
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--r);
  transition: color var(--t-base) var(--ease);
  text-decoration: none;
}
.nav-link:hover, .nav-link[aria-current="page"] {
  color: var(--c-ivory);
}

/* Services dropdown */
.nav-has-dropdown {
  position: relative;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 216px;
  background: var(--c-bg-2);
  border: 1px solid var(--c-border-mid);
  border-radius: var(--r-md);
  padding: var(--sp-2);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity var(--t-base) var(--ease),
    transform var(--t-base) var(--ease),
    visibility var(--t-base) var(--ease);
  pointer-events: none;
}

.nav-has-dropdown:hover .nav-dropdown,
.nav-has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.nav-dropdown-item {
  display: block;
  padding: var(--sp-3) var(--sp-4);
  font-size: var(--text-sm);
  color: var(--c-text-secondary);
  border-radius: var(--r);
  transition: all var(--t-base) var(--ease);
  text-decoration: none;
}
.nav-dropdown-item:hover {
  color: var(--c-ivory);
  background: rgba(244, 241, 232, 0.05);
}

/* Header CTA */
.header-cta {
  margin-left: var(--sp-6);
}

/* Mobile hamburger toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  color: var(--c-ivory);
  border-radius: var(--r);
}
.mobile-toggle-bar {
  display: block;
  width: 22px;
  height: 1.5px;
  background: currentColor;
  transition: all var(--t-base) var(--ease);
  transform-origin: center;
}
.mobile-toggle[aria-expanded="true"] .mobile-toggle-bar:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.mobile-toggle[aria-expanded="true"] .mobile-toggle-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.mobile-toggle[aria-expanded="true"] .mobile-toggle-bar:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ============================================================
   MOBILE NAVIGATION OVERLAY
   ============================================================ */

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--c-bg);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform var(--t-slow) var(--ease-out);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-nav.is-open {
  transform: translateX(0);
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  padding: 0 var(--gutter-sm);
  border-bottom: 1px solid var(--c-border-subtle);
  flex-shrink: 0;
}

.mobile-nav-close {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-text-muted);
  font-size: 1.25rem;
  border-radius: var(--r);
  transition: color var(--t-base) var(--ease);
}
.mobile-nav-close:hover {
  color: var(--c-ivory);
}

.mobile-nav-body {
  flex: 1;
  padding: var(--sp-8) var(--gutter-sm);
  display: flex;
  flex-direction: column;
}

.mobile-nav-links {
  flex: 1;
}

.mobile-nav-link {
  display: block;
  padding: var(--sp-5) 0;
  font-size: var(--text-3xl);
  font-weight: 300;
  color: var(--c-text-primary);
  border-bottom: 1px solid var(--c-border-subtle);
  text-decoration: none;
  transition: color var(--t-base) var(--ease);
  line-height: 1.2;
}
.mobile-nav-link:hover {
  color: var(--c-bronze);
}
.mobile-nav-link:first-child {
  border-top: 1px solid var(--c-border-subtle);
}

/* Sub-links (Online, In-Person) */
.mobile-nav-sub {
  display: block;
  padding: var(--sp-3) 0 var(--sp-3) var(--sp-6);
  font-size: var(--text-lg);
  font-weight: 300;
  color: var(--c-text-secondary);
  border-bottom: 1px solid var(--c-border-subtle);
  text-decoration: none;
  transition: color var(--t-base) var(--ease);
}
.mobile-nav-sub:hover {
  color: var(--c-ivory);
}

.mobile-nav-cta {
  padding-top: var(--sp-8);
}
.mobile-nav-cta .btn {
  width: 100%;
  padding: 1rem 1.875rem;
  font-size: var(--text-sm);
}

/* ============================================================
   GLOBAL FOOTER
   ============================================================ */

.site-footer {
  background: var(--c-bg-footer);
  border-top: 1px solid var(--c-border-subtle);
  padding-top: var(--sp-16);
  padding-bottom: var(--sp-8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: var(--sp-12);
  margin-bottom: var(--sp-12);
}

/* Brand column */
.footer-brand {}

.footer-logo {
  display: block;
  margin-bottom: var(--sp-5);
}
.footer-logo-img {
  height: 110px;
  width: auto;
  object-fit: contain;
  filter: invert(1);
}

.footer-tagline {
  font-size: var(--text-sm);
  font-weight: 300;
  color: var(--c-text-muted);
  line-height: var(--leading-relaxed);
  max-width: 230px;
  margin-bottom: var(--sp-6);
}

.footer-values {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--c-bronze);
}

/* Link columns */
.footer-col {}

.footer-col-heading {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--c-text-muted);
  margin-bottom: var(--sp-5);
}

.footer-col-links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.footer-col-link {
  font-size: var(--text-sm);
  font-weight: 300;
  color: var(--c-text-secondary);
  text-decoration: none;
  transition: color var(--t-base) var(--ease);
}
.footer-col-link:hover {
  color: var(--c-ivory);
}

/* CTA band above bottom bar */
.footer-cta-band {
  background: var(--c-green-dark);
  border: 1px solid var(--c-border-green);
  border-radius: var(--r-md);
  padding: var(--sp-8) var(--sp-10);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-8);
  margin-bottom: var(--sp-12);
}
.footer-cta-text {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 500;
  color: var(--c-ivory);
}
.footer-cta-text span {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 300;
  color: var(--c-text-secondary);
  margin-top: var(--sp-2);
}

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid var(--c-border-subtle);
  padding-top: var(--sp-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-6);
  flex-wrap: wrap;
}

.footer-copyright {
  font-size: var(--text-xs);
  color: var(--c-text-muted);
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
}
.footer-legal-links a {
  font-size: var(--text-xs);
  color: var(--c-text-muted);
  text-decoration: none;
  transition: color var(--t-base) var(--ease);
}
.footer-legal-links a:hover {
  color: var(--c-text-primary);
}

/* ============================================================
   SECTION BASE
   ============================================================ */

.section {
  padding-top: var(--section-py);
  padding-bottom: var(--section-py);
}

.section--sm {
  padding-top: var(--section-py-sm);
  padding-bottom: var(--section-py-sm);
}

.section--dark    { background: var(--c-bg); }
.section--charcoal{ background: var(--c-bg-2); }
.section--green   { background: var(--c-green-dark); }
.section--light   { background: var(--c-ivory); color: var(--c-text-inverse); }

/* Section header block */
.section-label {
  margin-bottom: var(--sp-5);
}
.section-label .eyebrow {
  margin-bottom: var(--sp-4);
}

/* ============================================================
   FORM ELEMENTS (base — full form styles in forms.css)
   ============================================================ */

.field-group {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.field-label {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--c-text-muted);
}

.field-input,
.field-select,
.field-textarea {
  width: 100%;
  background: var(--c-bg-2);
  border: 1px solid var(--c-border-mid);
  border-radius: var(--r);
  padding: 0.875rem 1.125rem;
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 300;
  color: var(--c-text-primary);
  transition: border-color var(--t-base) var(--ease);
  appearance: none;
  -webkit-appearance: none;
}

.field-input::placeholder,
.field-textarea::placeholder {
  color: var(--c-text-muted);
}

.field-input:focus,
.field-select:focus,
.field-textarea:focus {
  outline: none;
  border-color: var(--c-green-light);
}

.field-input[aria-invalid="true"],
.field-select[aria-invalid="true"],
.field-textarea[aria-invalid="true"] {
  border-color: #c0392b;
}

.field-error {
  font-size: var(--text-xs);
  color: #e05c4a;
  margin-top: var(--sp-1);
}

.field-textarea {
  resize: vertical;
  min-height: 120px;
}

/* ============================================================
   PLACEHOLDER LABEL (development aid)
   ============================================================ */

.placeholder-block {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(28, 66, 51, 0.12);
  border: 1px dashed rgba(28, 66, 51, 0.4);
  border-radius: var(--r);
  padding: var(--sp-12);
}
.placeholder-block p {
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--c-text-muted);
  text-align: center;
}

/* ============================================================
   SCROLL-REVEAL
   Used by js/main.js — add data-reveal to any element
   ============================================================ */

[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.55s var(--ease-out),
    transform 0.55s var(--ease-out);
}

[data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal-delay="1"] { transition-delay: 0.1s; }
[data-reveal-delay="2"] { transition-delay: 0.2s; }
[data-reveal-delay="3"] { transition-delay: 0.3s; }
[data-reveal-delay="4"] { transition-delay: 0.4s; }

/* ============================================================
   SCROLL-REVEAL (shared across all pages)
   ============================================================ */

[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.55s var(--ease-out),
    transform 0.55s var(--ease-out);
}
[data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal-delay="1"] { transition-delay: 0.1s; }
[data-reveal-delay="2"] { transition-delay: 0.2s; }
[data-reveal-delay="3"] { transition-delay: 0.3s; }
[data-reveal-delay="4"] { transition-delay: 0.4s; }

/* ============================================================
   INNER PAGE HERO (used by all secondary pages)
   ============================================================ */

.page-hero {
  position: relative;
  padding-top: calc(var(--header-h) + var(--section-py));
  padding-bottom: var(--section-py);
  background: var(--c-bg);
  overflow: hidden;
}

.page-hero--charcoal {
  background: var(--c-bg-2);
}

/* Subtle green gradient on right */
.page-hero::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(23, 60, 45, 0.2) 100%);
  pointer-events: none;
  z-index: 0;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero-eyebrow {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  margin-bottom: var(--sp-6);
}
.page-hero-line {
  flex: 0 0 36px;
  height: 1px;
  background: var(--c-bronze);
  opacity: 0.6;
}

.page-hero h1 {
  max-width: 700px;
  margin-bottom: var(--sp-6);
  font-size: clamp(2.5rem, 5vw, var(--text-7xl));
}

.page-hero-sub {
  font-size: var(--text-lg);
  font-weight: 300;
  color: var(--c-text-secondary);
  max-width: 580px;
  line-height: var(--leading-relaxed);
  margin-bottom: var(--sp-10);
}

.page-hero-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-top: 1px solid var(--c-border-subtle);
}
.faq-item:last-child {
  border-bottom: 1px solid var(--c-border-subtle);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-6);
  padding: var(--sp-6) 0;
  text-align: left;
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: 400;
  color: var(--c-text-secondary);
  transition: color var(--t-base) var(--ease);
  background: transparent;
  border: none;
  cursor: pointer;
}
.faq-trigger:hover {
  color: var(--c-ivory);
}
.faq-trigger[aria-expanded="true"] {
  color: var(--c-ivory);
}

.faq-trigger-text {
  flex: 1;
}

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border: 1px solid var(--c-border-mid);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-base);
  color: var(--c-bronze);
  transition: transform var(--t-base) var(--ease), border-color var(--t-base) var(--ease);
  line-height: 1;
}
.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
  border-color: var(--c-bronze);
}

.faq-panel {
  padding-bottom: var(--sp-6);
}
.faq-panel p {
  font-size: var(--text-base);
  font-weight: 300;
  color: var(--c-text-secondary);
  line-height: var(--leading-relaxed);
}
.faq-panel p + p {
  margin-top: var(--sp-4);
}

/* ============================================================
   FEATURE LIST (checklist-style content)
   ============================================================ */

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  font-size: var(--text-base);
  font-weight: 300;
  color: var(--c-text-secondary);
  line-height: var(--leading-relaxed);
}

.feature-list li::before {
  content: '';
  flex-shrink: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--c-bronze);
  margin-top: 0.6em;
}

.feature-list--spaced {
  gap: var(--sp-6);
}

/* ============================================================
   STAT ROW
   ============================================================ */

.stat-row {
  display: flex;
  align-items: stretch;
  gap: 0;
  border: 1px solid var(--c-border-subtle);
  border-radius: var(--r-md);
  overflow: hidden;
}

.stat-item {
  flex: 1;
  padding: var(--sp-8) var(--sp-6);
  text-align: center;
  border-right: 1px solid var(--c-border-subtle);
}
.stat-item:last-child {
  border-right: none;
}

.stat-value {
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  font-weight: 600;
  color: var(--c-ivory);
  line-height: 1;
  display: block;
  margin-bottom: var(--sp-2);
}

.stat-label {
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--c-text-muted);
}

/* ============================================================
   COMPARISON TABLE (simple two-column, no horizontal scroll)
   ============================================================ */

.comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
  margin-top: var(--sp-10);
}

.comparison-col {
  background: var(--c-bg-2);
  border: 1px solid var(--c-border-mid);
  border-radius: var(--r-md);
  padding: var(--sp-8);
}

.comparison-col-heading {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--c-ivory);
  margin-bottom: var(--sp-6);
  padding-bottom: var(--sp-4);
  border-bottom: 1px solid var(--c-border-subtle);
}

.comparison-col-heading span {
  display: block;
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--c-bronze);
  margin-bottom: var(--sp-2);
}

/* ============================================================
   PROCESS STEPS (horizontal / vertical)
   ============================================================ */

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  counter-reset: step-counter;
}

.process-step {
  display: flex;
  gap: var(--sp-6);
  padding: var(--sp-6) 0;
  border-bottom: 1px solid var(--c-border-subtle);
  counter-increment: step-counter;
}
.process-step:last-child {
  border-bottom: none;
}

.process-step-num {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 300;
  color: var(--c-bronze-dim);
  line-height: 1;
  width: 2.5rem;
  text-align: center;
}

.process-step-content {}
.process-step-content h3 {
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--c-ivory);
  margin-bottom: var(--sp-2);
}
.process-step-content p {
  font-size: var(--text-sm);
  font-weight: 300;
  color: var(--c-text-secondary);
  line-height: var(--leading-relaxed);
}

/* ============================================================
   INLINE CTA BAND (reusable across pages)
   ============================================================ */

.cta-band {
  background: var(--c-green-dark);
  border-radius: var(--r-md);
  padding: var(--sp-12) var(--sp-10);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-8);
  border: 1px solid var(--c-border-green);
}

.cta-band-text h2 {
  font-size: clamp(var(--text-2xl), 3vw, var(--text-4xl));
  margin-bottom: var(--sp-3);
}

.cta-band-text p {
  font-size: var(--text-base);
  color: var(--c-text-secondary);
  line-height: var(--leading-relaxed);
  max-width: 500px;
}

/* ============================================================
   APPLICATION FORM
   ============================================================ */

.apply-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: flex-start;
}

.apply-sidebar {}

.apply-sidebar-heading {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 600;
  color: var(--c-ivory);
  margin-bottom: var(--sp-6);
  line-height: 1.2;
}

.apply-form-wrap {
  background: var(--c-bg-2);
  border: 1px solid var(--c-border-mid);
  border-radius: var(--r-lg);
  padding: var(--sp-10);
}

.apply-form {
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}

.form-section-label {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--c-bronze);
  padding-top: var(--sp-4);
  padding-bottom: var(--sp-2);
  border-top: 1px solid var(--c-border-subtle);
  margin-top: var(--sp-2);
}
.form-section-label:first-child {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}

.consent-field {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
}
.consent-field input[type="checkbox"] {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--c-green);
  cursor: pointer;
}
.consent-label {
  font-size: var(--text-sm);
  font-weight: 300;
  color: var(--c-text-secondary);
  line-height: var(--leading-relaxed);
  cursor: pointer;
}

.form-submit-note {
  font-size: var(--text-xs);
  color: var(--c-text-muted);
  text-align: center;
  margin-top: var(--sp-2);
}

/* Form confirmation state */
.form-confirmation {
  display: none;
  text-align: center;
  padding: var(--sp-12) var(--sp-8);
}
.form-confirmation.is-visible {
  display: block;
}
.form-confirmation-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid var(--c-bronze);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-6);
  font-size: var(--text-2xl);
  color: var(--c-bronze);
}
.form-confirmation h3 {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 600;
  color: var(--c-ivory);
  margin-bottom: var(--sp-4);
}
.form-confirmation p {
  font-size: var(--text-base);
  color: var(--c-text-secondary);
  max-width: 440px;
  margin: 0 auto var(--sp-8);
}

.calendly-placeholder {
  background: rgba(28, 66, 51, 0.15);
  border: 1px dashed var(--c-border-green);
  border-radius: var(--r-md);
  padding: var(--sp-12);
  text-align: center;
  margin-top: var(--sp-8);
}
.calendly-placeholder p {
  font-size: var(--text-sm);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--c-text-muted);
  margin-bottom: var(--sp-4);
}
.calendly-placeholder a {
  color: var(--c-bronze);
  text-decoration: underline;
}

/* ============================================================
   RESPONSIVE OVERRIDES
   ============================================================ */

@media (max-width: 1024px) {
  :root {
    --gutter: 2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-10);
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
  .footer-tagline {
    max-width: none;
  }
}

@media (max-width: 1024px) {
  /* CTA band */
  .cta-band {
    flex-direction: column;
    align-items: flex-start;
  }

  /* Apply layout */
  .apply-layout {
    grid-template-columns: 1fr;
    gap: var(--sp-12);
  }
}

@media (max-width: 768px) {
  :root {
    --gutter: var(--gutter-sm);
    --section-py: var(--section-py-mobile);
  }

  /* Page hero */
  .page-hero {
    padding-top: calc(var(--header-h) + var(--section-py-mobile));
    padding-bottom: var(--section-py-mobile);
  }
  .page-hero::after { display: none; }

  .page-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .page-hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  /* Stat row */
  .stat-row {
    flex-wrap: wrap;
  }
  .stat-item {
    flex: 0 0 50%;
    border-bottom: 1px solid var(--c-border-subtle);
  }
  .stat-item:nth-child(odd) { border-right: 1px solid var(--c-border-subtle); }
  .stat-item:nth-last-child(-n+2) { border-bottom: none; }

  /* Comparison */
  .comparison { grid-template-columns: 1fr; }

  /* CTA band */
  .cta-band {
    flex-direction: column;
    align-items: flex-start;
    padding: var(--sp-8);
  }
  .cta-band .btn {
    width: 100%;
    justify-content: center;
  }

  /* Apply form */
  .apply-layout {
    grid-template-columns: 1fr;
    gap: var(--sp-10);
  }
  .apply-form-wrap {
    padding: var(--sp-6);
  }
  .form-row { grid-template-columns: 1fr; }

  /* Header: hide desktop nav, show hamburger */
  .header-nav,
  .header-cta {
    display: none;
  }
  .mobile-toggle {
    display: flex;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-8);
  }
  .footer-cta-band {
    flex-direction: column;
    align-items: flex-start;
    padding: var(--sp-6);
  }
  .footer-cta-band .btn {
    width: 100%;
    justify-content: center;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-legal-links {
    flex-wrap: wrap;
    gap: var(--sp-4);
  }
}

/* ============================================================
   GOOGLE REVIEWS CALLOUT (results page, reusable)
   ============================================================ */

.google-reviews-callout {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-4);
  text-align: center;
  padding: var(--sp-6) 0;
}

.google-reviews-callout-stars {
  font-size: 2rem;
  color: var(--c-bronze);
  letter-spacing: 0.1em;
  line-height: 1;
}

.google-reviews-callout-text {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-style: italic;
  color: var(--c-text-secondary);
  margin: 0;
}

@media (max-width: 480px) {
  :root {
    --gutter-sm: 1rem;
  }
}
