/* =========================================================
   ROCKSIDE HOMES — Brand Design System
   Palette: #0F3B2E (deep green), #C9A24E (gold), #F6F6F4 (off-white)
   Fonts: Playfair Display (headings) + DM Sans (body)
========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,600&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,300&display=swap');

/* ── CSS Variables ───────────────────────────────────────── */
:root {
  --green:      #0F3B2E;
  --green-mid:  #1A5240;
  --green-lt:   #2D6A4F;
  --gold:       #C9A24E;
  --gold-light: #E8C97A;
  --gold-pale:  #F5E8C0;
  --off-white:  #F6F6F4;
  --white:      #FFFFFF;
  --slate:      #4B5563;
  --slate-lt:   #9CA3AF;
  --red:        #8B2318;
  --dark:       #071A12;

  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  --radius: 4px;
  --radius-lg: 10px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow: 0 4px 24px rgba(7,26,18,0.12);
  --shadow-lg: 0 12px 48px rgba(7,26,18,0.18);
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--slate);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Typography ─────────────────────────────────────────── */
h1,h2,h3,h4,h5 {
  font-family: var(--font-head);
  color: var(--green);
  line-height: 1.15;
  font-weight: 700;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1.1rem; }
p  { max-width: 68ch; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── Layout Utilities ───────────────────────────────────── */
.container {
  width: min(1200px, 92%);
  margin-inline: auto;
}
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.flex    { display: flex; align-items: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,162,78,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}
.btn-outline-green {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn-outline-green:hover {
  background: var(--green);
  color: var(--white);
}
.btn-lg { padding: 1.1rem 2.6rem; font-size: 1.05rem; }

/* ── Cards ──────────────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(15,59,46,0.07);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.card-green {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.card-green h3, .card-green h4 { color: var(--gold); }

/* ── Gold accent left border ────────────────────────────── */
.border-gold { border-left: 4px solid var(--gold); padding-left: 1.5rem; }

/* ── Section Headings ───────────────────────────────────── */
.section-head { margin-bottom: 3.5rem; }
.section-head .eyebrow { margin-bottom: 0.75rem; display: block; }
.section-head h2 { margin-bottom: 1rem; }
.section-head p { color: var(--slate); font-size: 1.1rem; }

/* ── Gold divider ───────────────────────────────────────── */
.divider-gold {
  width: 56px;
  height: 3px;
  background: var(--gold);
  margin: 1.2rem 0 0;
  border-radius: 2px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   NAVIGATION
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
.navbar.scrolled {
  background: rgba(7,26,18,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.2);
  padding: 0.85rem 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.nav-logo-name {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}
.nav-logo-tag {
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}
.nav-links a {
  color: rgba(255,255,255,0.82);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { margin-left: 0.8rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   HERO
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.hero {
  min-height: 100vh;
  background: var(--green);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 75% 50%, rgba(26,82,64,0.6) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(201,162,78,0.08) 0%, transparent 60%);
}
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,162,78,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,162,78,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
/* Decorative large circles */
.hero-circle-1 {
  position: absolute;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  border: 1px solid rgba(201,162,78,0.12);
  right: -180px;
  top: -100px;
  pointer-events: none;
}
.hero-circle-2 {
  position: absolute;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  border: 1px solid rgba(201,162,78,0.08);
  right: -40px;
  top: 60px;
  pointer-events: none;
}
.hero-accent-bar {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: var(--gold);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 0 80px;
  max-width: 680px;
}
.hero-content .eyebrow { margin-bottom: 1.2rem; display: block; }
.hero-content h1 {
  color: var(--white);
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  line-height: 1.08;
  margin-bottom: 0.5rem;
}
.hero-content h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero-content .hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255,255,255,0.78);
  margin: 1.4rem 0 2.4rem;
  max-width: 54ch;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Hero stats strip */
.hero-stats {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(201,162,78,0.2);
  border-top: 1px solid rgba(201,162,78,0.2);
  margin-top: auto;
}
.hero-stat {
  padding: 1.8rem 2rem;
  background: rgba(7,26,18,0.6);
  backdrop-filter: blur(8px);
}
.hero-stat-val {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.hero-stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  margin-top: 0.35rem;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   TRUST BAR
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.trust-bar {
  background: var(--dark);
  padding: 1.4rem 0;
  overflow: hidden;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  white-space: nowrap;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
}
.trust-item svg, .trust-item .trust-icon { color: var(--gold); font-size: 1rem; }
.trust-sep { color: rgba(201,162,78,0.3); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   WHO WE ARE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.about-section { background: var(--off-white); }
.about-image-wrap {
  position: relative;
}
.about-image-block {
  background: var(--green);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.about-founder-visual {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  text-align: center;
  gap: 1.5rem;
}
.founder-avatar {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  flex-shrink: 0;
}
.founder-name {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
}
.founder-title {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}
.founder-exp {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
}
.exp-tag {
  background: rgba(201,162,78,0.15);
  border: 1px solid rgba(201,162,78,0.3);
  border-radius: 3px;
  padding: 0.5rem 0.8rem;
  font-size: 0.82rem;
  color: var(--gold-light);
  text-align: left;
}
/* Floating badge on image */
.about-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--gold);
  color: var(--dark);
  border-radius: var(--radius-lg);
  padding: 1.2rem 1.5rem;
  box-shadow: var(--shadow-lg);
  text-align: center;
  min-width: 150px;
}
.about-badge-val {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  display: block;
  line-height: 1;
}
.about-badge-label {
  font-size: 0.75rem;
  font-weight: 600;
  margin-top: 0.3rem;
  display: block;
}
.about-text { padding-left: 1rem; }
.about-text h2 { margin-bottom: 1.2rem; }
.about-text p { margin-bottom: 1rem; }
.about-bullets { margin: 1.8rem 0; display: flex; flex-direction: column; gap: 0.85rem; }
.about-bullet {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
}
.about-bullet-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.about-bullet-dot::after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--dark);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   HOW IT WORKS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.how-section { background: var(--white); }
.how-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; margin-top: 3.5rem; }
.how-card {
  background: var(--white);
  border: 1px solid rgba(15,59,46,0.1);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  position: relative;
  transition: all var(--transition);
  overflow: hidden;
}
.how-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.how-card:hover::before { transform: scaleX(1); }
.how-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.how-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green);
  color: var(--gold);
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
}
.how-card h3 { margin-bottom: 0.75rem; font-size: 1.15rem; }
.how-card p { font-size: 0.95rem; }
.how-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.8rem;
  position: relative;
  top: 2rem;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   LANDLORDS PAGE SECTION
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.landlord-section { background: var(--off-white); }
.benefits-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
.benefit-card {
  display: flex;
  gap: 1.1rem;
  padding: 1.6rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(15,59,46,0.08);
  align-items: flex-start;
  transition: all var(--transition);
}
.benefit-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
}
.benefit-icon svg { color: var(--gold); }
.benefit-body h4 { color: var(--green); margin-bottom: 0.3rem; font-size: 1rem; }
.benefit-body p { font-size: 0.9rem; margin: 0; max-width: none; }

/* Numbers comparison */
.numbers-panel {
  background: var(--green);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  color: var(--white);
}
.numbers-panel h3 { color: var(--gold); margin-bottom: 2rem; font-size: 1.3rem; }
.number-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.number-row:last-child { border-bottom: none; padding-bottom: 0; }
.number-row.highlight { background: rgba(201,162,78,0.1); border-radius: 6px; padding: 0.9rem 0.75rem; margin: 0.5rem -0.75rem; border-bottom: none; }
.number-label { font-size: 0.9rem; color: rgba(255,255,255,0.75); }
.number-val { font-family: var(--font-head); font-size: 1.5rem; font-weight: 700; color: var(--gold); }
.number-row.highlight .number-val { font-size: 1.8rem; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   COUNCILS SECTION
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.councils-section { background: var(--green); }
.councils-section .eyebrow { color: var(--gold-light); }
.councils-section h2 { color: var(--white); }
.councils-section .section-head p { color: rgba(255,255,255,0.72); }
.councils-section .divider-gold { background: var(--gold); }
.offering-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 3rem; }
.offering-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,162,78,0.2);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
}
.offering-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
  border-color: rgba(201,162,78,0.5);
}
.offering-icon {
  font-size: 2rem;
  margin-bottom: 1.2rem;
}
.offering-card h3 { color: var(--gold); margin-bottom: 0.6rem; font-size: 1.05rem; }
.offering-card p { color: rgba(255,255,255,0.7); font-size: 0.92rem; max-width: none; }

/* Problem stats */
.problem-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; margin: 3rem 0; }
.problem-stat {
  text-align: center;
  padding: 2rem 1.5rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,162,78,0.15);
  border-radius: var(--radius-lg);
}
.problem-stat-val {
  font-family: var(--font-head);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.problem-stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  margin-top: 0.5rem;
  line-height: 1.4;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   IMPACT / SOCIAL VALUE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.impact-section { background: var(--off-white); }
.impact-quote {
  background: var(--green);
  border-radius: var(--radius-lg);
  padding: 3rem;
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
}
.impact-quote::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 30px;
  font-family: var(--font-head);
  font-size: 12rem;
  color: rgba(201,162,78,0.1);
  line-height: 1;
  pointer-events: none;
}
.impact-quote p {
  font-family: var(--font-head);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--white);
  font-style: italic;
  position: relative;
  z-index: 1;
  max-width: 72ch;
}
.impact-quote-gold { color: var(--gold); }
.impact-cards { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.impact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid rgba(15,59,46,0.08);
  transition: all var(--transition);
}
.impact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.impact-card-icon { font-size: 2.2rem; margin-bottom: 1rem; }
.impact-card-val {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--green);
  display: block;
  line-height: 1;
}
.impact-card-label { font-size: 0.85rem; color: var(--slate); margin-top: 0.5rem; line-height: 1.4; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CONTACT SECTION
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.contact-section { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.45rem; }
.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green);
  letter-spacing: 0.03em;
}
.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid rgba(15,59,46,0.2);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--slate);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,162,78,0.15);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-submit { margin-top: 0.5rem; }
.form-success {
  display: none;
  background: var(--off-white);
  border: 1px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  color: var(--green);
  font-weight: 500;
}

/* Contact info */
.contact-info { display: flex; flex-direction: column; gap: 2rem; }
.contact-info-header h2 { margin-bottom: 0.75rem; }
.contact-info-header p { font-size: 1rem; }
.contact-items { display: flex; flex-direction: column; gap: 1.2rem; }
.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-item-icon {
  width: 44px;
  height: 44px;
  background: var(--green);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}
.contact-item-body h4 { color: var(--green); font-size: 0.9rem; margin-bottom: 0.2rem; }
.contact-item-body p, .contact-item-body a { font-size: 0.95rem; color: var(--slate); }
.contact-item-body a:hover { color: var(--gold); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CTA BAND
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.cta-band {
  background: var(--green);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 30% 50%, rgba(201,162,78,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 80% 50%, rgba(26,82,64,0.4) 0%, transparent 70%);
}
.cta-band-inner { position: relative; z-index: 1; }
.cta-band h2 { color: var(--white); margin-bottom: 1rem; }
.cta-band p { color: rgba(255,255,255,0.72); font-size: 1.1rem; margin: 0 auto 2.5rem; max-width: 56ch; }
.cta-band-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FOOTER
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.footer {
  background: var(--dark);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .footer-logo {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  max-width: 32ch;
}
.footer-col h4 {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: 1.2rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-contact p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.5rem;
  max-width: none;
}
.footer-contact a { color: rgba(255,255,255,0.55); }
.footer-contact a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-reg {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  margin-top: 0.5rem;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PAGE HEADERS (inner pages)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.page-header {
  background: var(--green);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-header-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 70% at 80% 50%, rgba(26,82,64,0.6) 0%, transparent 70%);
}
.page-header-bar {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: var(--gold);
}
.page-header-content { position: relative; z-index: 1; }
.page-header .eyebrow { margin-bottom: 0.75rem; display: block; }
.page-header h1 { color: var(--white); margin-bottom: 1rem; }
.page-header p { color: rgba(255,255,255,0.72); font-size: 1.15rem; max-width: 56ch; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   COMPLIANCE CHECKLIST
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.checklist { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1.5rem; }
.checklist-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
}
.check-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FAQ ACCORDION
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.faq-section { background: var(--off-white); }
.faq-list { display: flex; flex-direction: column; gap: 1rem; max-width: 820px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(15,59,46,0.1);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.4rem 1.6rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--green);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: background var(--transition);
}
.faq-question:hover { background: rgba(15,59,46,0.03); }
.faq-chevron {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition), background var(--transition);
  font-size: 0.75rem;
  color: var(--green);
}
.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  background: var(--green);
  color: var(--gold);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  padding: 0 1.6rem;
}
.faq-answer p { padding-bottom: 1.4rem; font-size: 0.95rem; }
.faq-item.open .faq-answer { max-height: 300px; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ANIMATIONS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }
.fade-up-delay-5 { transition-delay: 0.5s; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   MOBILE NAV
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(7,26,18,0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--white);
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RESPONSIVE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .impact-cards { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .grid-2, .grid-3, .how-grid, .offering-grid,
  .contact-grid, .problem-stats, .benefits-grid {
    grid-template-columns: 1fr;
  }
  .hero-stats { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .impact-cards { grid-template-columns: repeat(2,1fr); }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .about-image-wrap { display: none; }
  .about-badge { display: none; }
  .hero-circle-1, .hero-circle-2 { display: none; }
}

@media (max-width: 480px) {
  .impact-cards { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .cta-band-actions { flex-direction: column; align-items: center; }
}
