/* =====================================================
   THE MOMENTUM COLLECTIVE CO. — GLOBAL STYLESHEET
   Brand: Trustworthy Corporate | Earth Tones + Botanical
   Colors: #344b33 (forest) | #b78d6a (clay) | #c5ae96 (sand)
   ===================================================== */

/* --- CSS Custom Properties --- */
:root {
  --forest:       #344b33;
  --forest-dark:  #253621;
  --forest-mid:   #3e5a3c;
  --clay:         #b78d6a;
  --clay-light:   #c9a882;
  --sand:         #c5ae96;
  --sand-light:   #e8ddd2;
  --sand-pale:    #f5f0ea;
  --white:        #ffffff;
  --ink:          #1c2419;
  --ink-mid:      #3d4a3b;
  --muted:        #7a8c78;
  --border:       #d9cfc4;

  --font-head:    'Playfair Display', Georgia, serif;
  --font-body:    'Inter', 'Segoe UI', Arial, sans-serif;

  --radius-sm:    4px;
  --radius-md:    8px;
  --radius-lg:    16px;

  --shadow-sm:    0 2px 8px rgba(52,75,51,.10);
  --shadow-md:    0 6px 24px rgba(52,75,51,.14);
  --shadow-lg:    0 16px 48px rgba(52,75,51,.18);

  --transition:   0.28s cubic-bezier(0.4,0,0.2,1);
  --max-w:        1240px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, textarea, select { font-family: inherit; }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  line-height: 1.2;
  color: var(--forest-dark);
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.75rem); font-weight: 700; }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.65rem); font-weight: 600; }
h4 { font-size: 1.2rem; font-weight: 600; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clay);
  display: block;
  margin-bottom: 0.6rem;
}

/* --- Layout Utilities --- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 3rem);
}

.section-pad { padding: clamp(4rem, 8vw, 7rem) 0; }
.section-pad-sm { padding: clamp(2.5rem, 5vw, 4.5rem) 0; }

.text-center { text-align: center; }
.text-left   { text-align: left; }

/* --- Botanical SVG Motif (reusable) --- */
.botanical-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.botanical-bg svg { opacity: 0.06; }

/* =====================================================
   NAVIGATION
   ===================================================== */
#site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
  padding: 1.2rem 0;
  background: transparent;
}

#site-nav.scrolled {
  background: rgba(28,36,25,0.97);
  box-shadow: var(--shadow-md);
  padding: 0.75rem 0;
  backdrop-filter: blur(12px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.nav-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
  transition: height var(--transition);
  filter: brightness(0) invert(1);
}

#site-nav.scrolled .nav-logo img { height: 38px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.88);
  text-transform: uppercase;
  position: relative;
  padding-bottom: 2px;
  transition: color var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--clay);
  transition: width var(--transition);
}

.nav-links a:hover { color: var(--sand); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--sand); }

.nav-cta {
  background: var(--clay);
  color: var(--white) !important;
  padding: 0.55rem 1.4rem !important;
  border-radius: var(--radius-sm);
  transition: background var(--transition), transform var(--transition) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--clay-light) !important; transform: translateY(-1px) !important; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  width: 36px; height: 36px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =====================================================
   HERO SECTION
   ===================================================== */
#hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--forest-dark);
  overflow: hidden;
}

.hero-parallax-bg {
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(183,141,106,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(52,75,51,0.6) 0%, transparent 70%),
    linear-gradient(160deg, #1c2419 0%, #253621 45%, #344b33 100%);
  will-change: transform;
}

.hero-leaf-1,
.hero-leaf-2,
.hero-leaf-3 {
  position: absolute;
  pointer-events: none;
}

.hero-leaf-1 {
  top: -5%; right: -5%;
  width: clamp(300px, 45vw, 640px);
  opacity: 0.07;
}
.hero-leaf-2 {
  bottom: -8%; left: -4%;
  width: clamp(220px, 30vw, 420px);
  opacity: 0.05;
  transform: scaleX(-1) rotate(20deg);
}
.hero-leaf-3 {
  top: 30%; left: 50%;
  width: clamp(160px, 18vw, 260px);
  opacity: 0.04;
  transform: rotate(-30deg);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 120px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(183,141,106,0.18);
  border: 1px solid rgba(183,141,106,0.35);
  border-radius: 100px;
  padding: 0.4rem 1rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clay-light);
  margin-bottom: 1.5rem;
}

.hero-badge-dot {
  width: 6px; height: 6px;
  background: var(--clay);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.hero-headline {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero-headline em {
  font-style: normal;
  color: var(--clay);
}

.hero-subtext {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(197,174,150,0.85);
  max-width: 520px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-visual {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hero-card-stack {
  position: relative;
  width: 100%;
  max-width: 420px;
}

.hero-stat-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(197,174,150,0.2);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  backdrop-filter: blur(16px);
  margin-bottom: 1rem;
}

.hero-stat-card:last-child { margin-bottom: 0; }

.hero-stat-num {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--clay);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.hero-stat-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(197,174,150,0.75);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero-stat-card.accent {
  background: linear-gradient(135deg, rgba(183,141,106,0.25) 0%, rgba(52,75,51,0.3) 100%);
  border-color: rgba(183,141,106,0.4);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(197,174,150,0.55);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: fade-up-down 2.5s ease-in-out infinite;
}

.scroll-line {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, rgba(183,141,106,0.5), transparent);
}

@keyframes fade-up-down {
  0%, 100% { opacity: 0.5; transform: translateX(-50%) translateY(0); }
  50% { opacity: 1; transform: translateX(-50%) translateY(6px); }
}

/* =====================================================
   THREE-COLUMN SUMMARY SECTION
   ===================================================== */
#summary {
  background: var(--sand-pale);
  position: relative;
  overflow: hidden;
}

.summary-pretitle {
  text-align: center;
  margin-bottom: 3.5rem;
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.summary-col {
  background: var(--white);
  padding: clamp(2rem, 3.5vw, 3rem);
  position: relative;
  transition: background var(--transition), transform var(--transition);
}

.summary-col:hover { background: var(--sand-pale); }

.summary-col-num {
  font-family: var(--font-head);
  font-size: 4rem;
  font-weight: 700;
  color: var(--sand);
  line-height: 1;
  margin-bottom: 1rem;
  display: block;
}

.summary-col h3 {
  color: var(--forest);
  margin-bottom: 0.75rem;
  font-size: 1.3rem;
}

.summary-col p {
  color: var(--ink-mid);
  font-size: 0.95rem;
  line-height: 1.7;
}

.summary-col-icon {
  width: 44px; height: 44px;
  background: var(--forest);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.summary-col-icon svg {
  width: 22px; height: 22px;
  stroke: var(--sand-light);
  fill: none;
  stroke-width: 2;
}

/* =====================================================
   TWO-COLUMN STORY SECTION
   ===================================================== */
#story {
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.story-visual {
  position: relative;
}

.story-img-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.story-img-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(52,75,51,0.7) 100%);
  z-index: 1;
}

.story-img-frame img {
  aspect-ratio: 4/5;
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

.story-accent-card {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--clay);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-lg);
  max-width: 220px;
  z-index: 2;
}

.story-accent-card strong {
  display: block;
  font-family: var(--font-head);
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.story-accent-card span {
  font-size: 0.8rem;
  opacity: 0.85;
  font-weight: 500;
}

.story-body .eyebrow { margin-bottom: 1rem; }
.story-body h2 { margin-bottom: 1.5rem; }

.story-body p {
  color: var(--ink-mid);
  margin-bottom: 1.25rem;
  font-size: 1.025rem;
  line-height: 1.8;
}

.story-values {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.value-bullet {
  flex-shrink: 0;
  width: 8px; height: 8px;
  background: var(--clay);
  border-radius: 50%;
  margin-top: 0.55rem;
}

.value-item strong {
  color: var(--forest);
  font-weight: 600;
}

.value-item p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--ink-mid);
}

/* =====================================================
   THREE-COLUMN SERVICES SECTION
   ===================================================== */
#services {
  background: var(--forest-dark);
  position: relative;
  overflow: hidden;
}

.services-header {
  text-align: center;
  margin-bottom: clamp(3rem, 5vw, 4.5rem);
}

.services-header h2 { color: var(--white); }
.services-header p {
  color: rgba(197,174,150,0.75);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 1rem auto 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(197,174,150,0.15);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--clay) 0%, transparent 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(183,141,106,0.4);
  transform: translateY(-4px);
}

.service-card:hover::before { transform: scaleX(1); }

.service-card.featured {
  background: rgba(183,141,106,0.12);
  border-color: rgba(183,141,106,0.35);
}

.service-card.featured::before { transform: scaleX(1); }

.service-icon {
  width: 56px; height: 56px;
  background: rgba(183,141,106,0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  flex-shrink: 0;
}

.service-icon svg {
  width: 26px; height: 26px;
  stroke: var(--clay-light);
  fill: none;
  stroke-width: 2;
}

.service-card h3 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.service-card p {
  color: rgba(197,174,150,0.7);
  font-size: 0.925rem;
  line-height: 1.75;
  flex: 1;
}

.service-card-footer {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(197,174,150,0.1);
}

.service-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clay-light);
  background: rgba(183,141,106,0.12);
  border-radius: 100px;
  padding: 0.25rem 0.8rem;
}

/* =====================================================
   STAT STRIP
   ===================================================== */
#stat-strip {
  background: var(--clay);
  padding: clamp(2.5rem, 4vw, 4rem) 0;
  position: relative;
  overflow: hidden;
}

.stat-strip-bg {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stat-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 1;
  text-align: center;
}

.stat-item {
  padding: 1rem;
  border-right: 1px solid rgba(255,255,255,0.2);
}
.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-desc {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* =====================================================
   LEADERSHIP ROW
   ===================================================== */
#leadership {
  background: var(--sand-pale);
  position: relative;
  overflow: hidden;
}

.leadership-header {
  text-align: center;
  margin-bottom: clamp(3rem, 5vw, 4.5rem);
}

.leadership-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.leader-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
}

.leader-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.leader-img {
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
}

.leader-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.5s ease;
}

.leader-card:hover .leader-img img {
  transform: scale(1.04);
}

.leader-img-badge {
  position: absolute;
  bottom: 1rem; left: 1rem;
  background: var(--clay);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
}

.leader-body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.leader-name {
  font-family: var(--font-head);
  font-size: 1.2rem;
  color: var(--forest-dark);
  margin-bottom: 0.2rem;
}

.leader-title {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 0.85rem;
}

.leader-body p {
  font-size: 0.9rem;
  color: var(--ink-mid);
  line-height: 1.65;
}

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}

.btn:focus-visible {
  outline: 3px solid var(--clay);
  outline-offset: 2px;
}

.btn-primary {
  background: var(--clay);
  color: var(--white);
  border-color: var(--clay);
}
.btn-primary:hover {
  background: var(--clay-light);
  border-color: var(--clay-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}

.btn-outline-forest {
  background: transparent;
  color: var(--forest);
  border-color: var(--forest);
}
.btn-outline-forest:hover {
  background: var(--forest);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.55rem 1.3rem;
  font-size: 0.8rem;
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1rem;
}

.btn svg {
  width: 18px; height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  flex-shrink: 0;
  transition: transform var(--transition);
}
.btn:hover svg { transform: translateX(3px); }

/* =====================================================
   CALL TO ACTION BAND
   ===================================================== */
#cta-band {
  background: linear-gradient(135deg, var(--forest-dark) 0%, var(--forest) 100%);
  padding: clamp(4rem, 7vw, 6rem) 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-band-inner { position: relative; z-index: 1; }

#cta-band h2 {
  color: var(--white);
  margin-bottom: 1rem;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

#cta-band p {
  color: rgba(197,174,150,0.8);
  font-size: 1.1rem;
  max-width: 540px;
  margin: 0 auto 2.5rem;
}

.cta-band-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* =====================================================
   FOOTER
   ===================================================== */
#site-footer {
  background: var(--ink);
  color: rgba(197,174,150,0.7);
  padding: clamp(4rem, 7vw, 6rem) 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(197,174,150,0.1);
  margin-bottom: 2rem;
}

.footer-brand img {
  height: 44px;
  width: auto;
  object-fit: contain;
  margin-bottom: 1.25rem;
  filter: brightness(0) invert(0.7);
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 1.25rem;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 1.25rem;
}

.footer-col a {
  display: block;
  font-size: 0.9rem;
  color: rgba(197,174,150,0.65);
  margin-bottom: 0.65rem;
  transition: color var(--transition);
}

.footer-col a:hover { color: var(--sand); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

.footer-contact-item svg {
  flex-shrink: 0;
  width: 16px; height: 16px;
  stroke: var(--clay);
  fill: none;
  stroke-width: 2;
  margin-top: 2px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.825rem;
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  font-size: 0.825rem;
  color: rgba(197,174,150,0.55);
  transition: color var(--transition);
}

.footer-bottom-links a:hover { color: var(--sand); }

/* =====================================================
   FORM STYLES (Apply Page)
   ===================================================== */
.form-page-hero {
  background: linear-gradient(160deg, var(--forest-dark) 0%, var(--forest) 100%);
  padding: clamp(6rem, 10vw, 9rem) 0 clamp(3rem, 5vw, 5rem);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.form-page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.form-page-hero p {
  color: rgba(197,174,150,0.8);
  font-size: 1.1rem;
  max-width: 580px;
  margin: 0 auto;
}

.form-section {
  background: var(--sand-pale);
  padding: clamp(3rem, 6vw, 6rem) 0;
}

.form-wrapper {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}

.form-sidebar {
  background: var(--forest);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  color: var(--white);
  position: sticky;
  top: 100px;
}

.form-sidebar h3 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: 1.35rem;
}

.sidebar-point {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.sidebar-point-icon {
  flex-shrink: 0;
  width: 32px; height: 32px;
  background: rgba(183,141,106,0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.sidebar-point-icon svg {
  width: 16px; height: 16px;
  stroke: var(--clay-light);
  fill: none;
  stroke-width: 2;
}

.sidebar-point p {
  font-size: 0.9rem;
  color: rgba(197,174,150,0.8);
  margin: 0;
}

.form-sidebar .sidebar-contact {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(197,174,150,0.15);
  font-size: 0.875rem;
  color: rgba(197,174,150,0.65);
}

.form-sidebar .sidebar-contact a {
  color: var(--clay-light);
  transition: color var(--transition);
}

.form-sidebar .sidebar-contact a:hover { color: var(--white); }

.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3.5rem);
  box-shadow: var(--shadow-sm);
}

.form-section-title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--forest);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--sand-light);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-section-title span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  background: var(--forest);
  color: var(--white);
  border-radius: 50%;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.form-group:last-child { margin-bottom: 0; }

label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-mid);
  letter-spacing: 0.03em;
}

label .required {
  color: var(--clay);
  margin-left: 2px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
select,
textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(52,75,51,0.1);
}

input::placeholder,
textarea::placeholder { color: rgba(100,120,98,0.5); }

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

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23344b33' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}

.checkbox-group input[type="checkbox"] {
  width: 18px; height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
  accent-color: var(--forest);
  cursor: pointer;
}

.checkbox-group label {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--ink-mid);
  cursor: pointer;
  line-height: 1.6;
}

.checkbox-group label a {
  color: var(--forest);
  text-decoration: underline;
}

.form-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 2rem 0;
}

.form-submit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.form-note {
  font-size: 0.8rem;
  color: var(--muted);
}

/* Success Message */
.success-message {
  display: none;
  background: linear-gradient(135deg, #e8f5e9 0%, #f1f8f1 100%);
  border: 1.5px solid #a5d6a7;
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  text-align: center;
  margin-top: 1.5rem;
}

.success-message.visible { display: block; }

.success-icon {
  width: 72px; height: 72px;
  background: var(--forest);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.success-icon svg {
  width: 34px; height: 34px;
  stroke: var(--white);
  fill: none;
  stroke-width: 2.5;
}

.success-message h3 {
  color: var(--forest);
  margin-bottom: 0.75rem;
  font-size: 1.6rem;
}

.success-message p { color: var(--ink-mid); max-width: 460px; margin: 0 auto 1.5rem; }

/* =====================================================
   LEGAL PAGES (Terms & Privacy)
   ===================================================== */
.legal-hero {
  background: linear-gradient(160deg, var(--forest-dark) 0%, var(--forest) 100%);
  padding: clamp(6rem, 10vw, 9rem) 0 clamp(3rem, 5vw, 5rem);
  text-align: center;
}

.legal-hero h1 { color: var(--white); margin-bottom: 0.75rem; }
.legal-hero p { color: rgba(197,174,150,0.75); font-size: 0.95rem; }

.legal-body {
  background: var(--white);
  padding: clamp(3rem, 6vw, 6rem) 0;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 1.5rem;
  color: var(--forest-dark);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.legal-content h2:first-child { border-top: none; margin-top: 0; padding-top: 0; }

.legal-content h3 {
  font-size: 1.15rem;
  color: var(--forest);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.legal-content p {
  color: var(--ink-mid);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.legal-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-content ul li {
  color: var(--ink-mid);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

.legal-content ul li strong { color: var(--ink); }

.legal-toc {
  background: var(--sand-pale);
  border-radius: var(--radius-md);
  padding: 1.75rem 2rem;
  margin-bottom: 3rem;
  border-left: 3px solid var(--clay);
}

.legal-toc h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 1rem;
}

.legal-toc ul {
  list-style: none !important;
  padding-left: 0 !important;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 2rem;
}

.legal-toc ul li {
  margin: 0 !important;
}

.legal-toc ul li a {
  font-size: 0.875rem;
  color: var(--forest);
  text-decoration: underline;
  transition: color var(--transition);
}

.legal-toc ul li a:hover { color: var(--clay); }

/* =====================================================
   ALERT / NOTIFICATION
   ===================================================== */
.alert {
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  display: none;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
}

.alert.show { display: flex; }
.alert-error { background: #fef2f2; border: 1px solid #f87171; color: #991b1b; }
.alert-success { background: #f0fdf4; border: 1px solid #86efac; color: #166534; }

/* =====================================================
   ANIMATIONS
   ===================================================== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.fade-in-up {
  animation: fadeInUp 0.7s cubic-bezier(0.4,0,0.2,1) both;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { justify-content: flex-start; }
  .hero-card-stack { max-width: 100%; display: grid; grid-template-columns: 1fr 1fr; }
  .hero-stat-card { margin-bottom: 0; }

  .story-grid { grid-template-columns: 1fr; gap: 3rem; }
  .story-visual { order: -1; }
  .story-accent-card { right: 1rem; }

  .services-grid { grid-template-columns: 1fr 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; position: fixed; inset: 0; top: 0; background: var(--ink); flex-direction: column; justify-content: center; align-items: center; gap: 2rem; z-index: 999; }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.1rem; color: var(--white); }
  .nav-toggle { display: flex; position: relative; z-index: 1001; }

  .summary-grid { grid-template-columns: 1fr; background: none; border: none; gap: 1rem; }
  .summary-col { border-radius: var(--radius-md); border: 1px solid var(--border); }

  .services-grid { grid-template-columns: 1fr; }

  .stat-strip-grid { grid-template-columns: 1fr 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.15); }
  .stat-item:last-child, .stat-item:nth-last-child(2):nth-child(odd) { border-bottom: none; }

  .leadership-row { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }

  .form-wrapper { grid-template-columns: 1fr; }
  .form-sidebar { position: static; }
  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-links { justify-content: center; }
}

@media (max-width: 480px) {
  .hero-card-stack { grid-template-columns: 1fr; }
  .stat-strip-grid { grid-template-columns: 1fr; }
  .stat-item { border-right: none !important; }
}

/* =====================================================
   PRINT
   ===================================================== */
@media print {
  #site-nav, #cta-band, .hero-scroll-hint { display: none; }
  body { font-size: 12pt; }
  h1, h2, h3 { page-break-after: avoid; }
  .legal-content { max-width: 100%; }
}
