/* ===========================================
   SNF Tax — Landing Page Styles
   Palette: Forest Green #0a370c · Gold #e29d30
   Theme: Green · Gold · Wood
   =========================================== */

:root {
  --green:        #0a370c;
  --green-mid:    #155218;
  --green-light:  #1e7022;
  --green-pale:   #e6f0e7;
  --gold:         #e29d30;
  --gold-light:   #f0b84a;
  --gold-dark:    #b87d20;
  --gold-pale:    #fdf4e3;
  --wood:         #8b5e20;
  --wood-dark:    #5c3611;
  --wood-mid:     #a07030;
  --wood-light:   #c9a96e;
  --wood-pale:    #f5edd8;
  --cream:        #faf6ed;
  --cream-dark:   #f0e6d0;
  --text:         #1a1208;
  --text-mid:     #3d2a14;
  --text-light:   #7a6040;
  --white:        #ffffff;
  --shadow-sm:    0 2px 8px rgba(10, 55, 12, 0.08);
  --shadow:       0 4px 24px rgba(10, 55, 12, 0.12);
  --shadow-gold:  0 4px 24px rgba(226, 157, 48, 0.22);
  --radius:       8px;
  --radius-lg:    14px;
  --ease:         0.22s ease;
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;
  --max-w:        1140px;
}

/* ─── 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(--text); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
details { }
summary { list-style: none; }
summary::-webkit-details-marker { display: none; }

/* ─── Container ──────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── Typography helpers ─────────────────── */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--green);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-title--light { color: var(--white); }

.section-sub {
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 660px;
  line-height: 1.75;
  margin-bottom: 48px;
}
.section-sub--light { color: rgba(255, 255, 255, 0.72); }

/* ─── Buttons ────────────────────────────── */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--ease), border-color var(--ease), transform var(--ease), box-shadow var(--ease);
}

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

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}
.btn--outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.07);
}

.btn--gold {
  background: var(--gold);
  color: var(--green);
  border-color: var(--gold);
}
.btn--gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn--outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}
.btn--outline-light:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

/* ═══════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════ */
.header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--green);
  border-bottom: 3px solid var(--gold);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.28);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 72px;
}

/* Logo */
.header__logo {
  display: flex;
  align-items: baseline;
  gap: 5px;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-mark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.55rem;
  color: var(--gold);
  letter-spacing: 0.04em;
}
.logo-text {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.55rem;
  color: var(--white);
}
.logo-tagline {
  display: none;
  font-size: 0.62rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--wood-light);
  margin-left: 10px;
}
@media (min-width: 960px) { .logo-tagline { display: inline; } }

/* Nav */
.header__nav {
  display: none;
  margin-left: auto;
}
@media (min-width: 860px) { .header__nav { display: block; } }

.header__nav ul {
  display: flex;
  gap: 28px;
}
.header__nav a {
  font-size: 0.825rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: rgba(255, 255, 255, 0.80);
  transition: color var(--ease);
}
.header__nav a:hover { color: var(--gold); }

/* CTA */
.header__cta {
  display: none;
  flex-direction: column;
  align-items: flex-end;
  background: var(--gold);
  color: var(--green);
  padding: 9px 18px;
  border-radius: var(--radius);
  flex-shrink: 0;
  transition: background var(--ease), transform var(--ease);
}
.header__cta:hover { background: var(--gold-light); transform: translateY(-1px); }
@media (min-width: 560px) { .header__cta { display: flex; } }

.cta-label {
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  line-height: 1;
}
.cta-number {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
}

/* Mobile hamburger */
.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: transform var(--ease), opacity var(--ease);
}
.mobile-menu-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-btn.open span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (min-width: 860px) { .mobile-menu-btn { display: none; } }

/* Mobile nav dropdown */
@media (max-width: 859px) {
  .header__nav {
    position: absolute;
    top: 75px;
    left: 0;
    right: 0;
    background: var(--green-mid);
    border-bottom: 3px solid var(--gold);
    padding: 8px 24px 16px;
    z-index: 199;
  }
  .header__nav.open { display: block; }
  .header__nav ul { flex-direction: column; gap: 0; }
  .header__nav li a {
    display: block;
    padding: 13px 0;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .header__nav li:last-child a { border-bottom: none; }
}

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
.hero {
  background: var(--green);
  padding: 88px 0 68px;
  position: relative;
  overflow: hidden;
}

/* Wood-grain stripe overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    97deg,
    transparent 0px, transparent 3px,
    rgba(226, 157, 48, 0.025) 3px, rgba(226, 157, 48, 0.025) 4px
  );
  pointer-events: none;
}

/* Gold/wood baseline */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--wood-dark) 0%, var(--gold) 45%, var(--wood-dark) 100%);
}

.hero__inner {
  position: relative;
  z-index: 1;
}

.hero__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 24px;
}

.hero__subhead {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.78);
  max-width: 600px;
  line-height: 1.75;
  margin-bottom: 40px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 56px;
}

.hero__trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(226, 157, 48, 0.22);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: rgba(255, 255, 255, 0.65);
}
.trust-item svg { flex-shrink: 0; }

/* ═══════════════════════════════════════════
   PROBLEM
   ═══════════════════════════════════════════ */
.problem {
  background: var(--green);
  padding: 80px 0;
  position: relative;
}

/* Subtle vertical wood-grain lines */
.problem::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    93deg,
    transparent 0, transparent 60px,
    rgba(226, 157, 48, 0.035) 60px, rgba(226, 157, 48, 0.035) 61px
  );
  pointer-events: none;
}
.problem > .container { position: relative; z-index: 1; }

/* Warm gold strip separating hero from problem */
.problem::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(226, 157, 48, 0.18);
}

.problem__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.problem-card {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(226, 157, 48, 0.22);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 32px 26px;
  transition: background var(--ease);
}
.problem-card:hover { background: rgba(255, 255, 255, 0.09); }

.problem-card__icon {
  margin-bottom: 16px;
  display: block;
}
.problem-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 10px;
}
.problem-card p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.70);
  line-height: 1.68;
}

/* ═══════════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════════ */
.services {
  background: var(--cream);
  padding: 88px 0;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  gap: 18px;
}

.service-card {
  background: var(--white);
  border: 1px solid rgba(10, 55, 12, 0.09);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: box-shadow var(--ease), transform var(--ease), border-left-color var(--ease);
}
.service-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
  border-left-color: var(--green);
}

.service-card__label {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: var(--gold-pale);
  padding: 3px 8px;
  border-radius: 3px;
  margin-bottom: 10px;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 10px;
  line-height: 1.3;
}

.service-card p {
  font-size: 0.855rem;
  color: var(--text-mid);
  line-height: 1.67;
  margin-bottom: 16px;
}

.service-card__fee {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--wood);
  border-top: 1px solid var(--cream-dark);
  padding-top: 12px;
  display: block;
}

/* ═══════════════════════════════════════════
   PROCESS  (wood-panel section)
   ═══════════════════════════════════════════ */
.process {
  padding: 88px 0;
  position: relative;
  /* Layered wood-grain background */
  background:
    repeating-linear-gradient(
      90deg,
      transparent 0, transparent 80px,
      rgba(255, 255, 255, 0.012) 80px, rgba(255, 255, 255, 0.012) 82px
    ),
    linear-gradient(
      160deg,
      var(--wood-dark) 0%,
      #7a4e18 35%,
      var(--wood) 55%,
      #7a4e18 75%,
      var(--wood-dark) 100%
    );
}

/* Top/bottom gold inlay lines */
.process::before,
.process::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold) 30%, var(--gold-dark) 70%, transparent);
}
.process::before { top: 0; }
.process::after  { bottom: 0; }

.process__steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  max-width: 760px;
}

/* Vertical connector line */
.process__steps::before {
  content: '';
  position: absolute;
  left: 27px;
  top: 28px;
  bottom: 28px;
  width: 2px;
  background: rgba(226, 157, 48, 0.28);
  border-radius: 2px;
}
@media (min-width: 560px) { .process__steps::before { left: 27px; } }

.process-step {
  display: flex;
  align-items: flex-start;
  gap: 26px;
  padding: 30px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  position: relative;
}
.process-step:last-child { border-bottom: none; }

.process-step__num {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--green);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  border: 3px solid var(--wood-dark);
  box-shadow: 0 0 0 2px rgba(226, 157, 48, 0.22);
}

.process-step__body { padding-top: 8px; }

.process-step__body h3 {
  font-family: var(--font-display);
  font-size: 1.18rem;
  color: var(--white);
  margin-bottom: 8px;
}
.process-step__body p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.73);
  line-height: 1.68;
  max-width: 580px;
}

/* ═══════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════ */
.about {
  background: var(--white);
  padding: 88px 0;
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}
@media (min-width: 760px) {
  .about__inner { grid-template-columns: 1fr auto; }
}

.about__eyebrow {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 20px;
  line-height: 1.2;
}

.about__text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.8vw, 2.3rem);
  color: var(--green);
  margin-bottom: 20px;
  line-height: 1.22;
}

.about__text p {
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 16px;
  font-size: 0.97rem;
}
.about__ownership {
  font-size: 0.8rem !important;
  color: var(--text-light) !important;
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--cream-dark);
}

.about__creds {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.about__creds li {
  font-size: 0.875rem;
  color: var(--text);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}
.cred-check {
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Headshot photo */
.about__photo-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-shrink: 0;
}

.about__photo {
  width: 260px;
  height: 300px;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius-lg);
  border: 4px solid var(--gold);
  box-shadow: 8px 8px 0 var(--wood-light);
}

@media (max-width: 759px) {
  .about__photo { width: 100%; height: 280px; box-shadow: 4px 4px 0 var(--wood-light); }
}

/* EA Badge */
.about__badge-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ea-badge__outer {
  width: 168px;
  height: 168px;
  border-radius: 50%;
  /* Conic gold ring */
  background: conic-gradient(
    var(--gold-light) 0deg, var(--gold-dark) 60deg,
    var(--gold) 120deg, var(--gold-dark) 180deg,
    var(--gold-light) 240deg, var(--gold-dark) 300deg,
    var(--gold) 360deg
  );
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 36px rgba(226, 157, 48, 0.32), 0 2px 8px rgba(0,0,0,0.18);
}

.ea-badge__inner {
  width: 136px;
  height: 136px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1px;
}

.ea-badge__enrolled {
  font-size: 0.57rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--wood-light);
}
.ea-badge__ea {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.ea-badge__agent {
  font-size: 0.57rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--wood-light);
}
.ea-badge__dept {
  font-size: 0.47rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.42);
  margin-top: 5px;
}

/* ═══════════════════════════════════════════
   TESTIMONIAL
   ═══════════════════════════════════════════ */
.testimonial {
  background: var(--cream-dark);
  border-top: 4px solid var(--wood-light);
  border-bottom: 4px solid var(--wood-light);
  padding: 72px 0;
}

.testimonial__quote {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.testimonial__quote p {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.2vw, 1.45rem);
  font-style: italic;
  color: var(--green);
  line-height: 1.65;
  margin-bottom: 24px;
}
.testimonial__quote p::before { content: '\201C'; color: var(--gold); font-size: 1.6em; line-height: 0; vertical-align: -0.42em; margin-right: 3px; }
.testimonial__quote p::after  { content: '\201D'; color: var(--gold); font-size: 1.6em; line-height: 0; vertical-align: -0.42em; margin-left:  3px; }

.testimonial__quote cite {
  font-style: normal;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--text-light);
}

/* ═══════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════ */
.faq {
  background: var(--white);
  padding: 48px 0 88px;
}

.faq__list {
  max-width: 780px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.faq-item {
  border: 1px solid rgba(10, 55, 12, 0.11);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--ease);
}
.faq-item[open] { border-color: var(--green); }

.faq-item__q {
  padding: 18px 22px;
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--green);
  background: var(--cream);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  user-select: none;
  transition: background var(--ease), color var(--ease);
}
.faq-item__q::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--gold-dark);
  flex-shrink: 0;
  line-height: 1;
  transition: transform var(--ease), color var(--ease);
}
.faq-item[open] .faq-item__q {
  background: var(--green);
  color: var(--white);
}
.faq-item[open] .faq-item__q::after {
  transform: rotate(45deg);
  color: var(--gold);
}

.faq-item__a {
  padding: 22px 22px;
  background: var(--white);
  border-top: 1px solid rgba(10, 55, 12, 0.07);
}
.faq-item__a p {
  font-size: 0.885rem;
  color: var(--text-mid);
  line-height: 1.73;
}

/* ═══════════════════════════════════════════
   CTA BANNER
   ═══════════════════════════════════════════ */
.cta-banner {
  padding: 80px 0;
  border-top: 4px solid var(--gold);
  background:
    repeating-linear-gradient(
      88deg,
      transparent 0, transparent 100px,
      rgba(255, 255, 255, 0.018) 100px, rgba(255, 255, 255, 0.018) 101px
    ),
    linear-gradient(135deg, var(--green) 0%, var(--green-mid) 100%);
}

.cta-banner__inner {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
@media (min-width: 760px) {
  .cta-banner__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.cta-banner__text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  color: var(--white);
  margin-bottom: 12px;
}
.cta-banner__text p {
  font-size: 0.94rem;
  color: rgba(255, 255, 255, 0.73);
  line-height: 1.68;
  max-width: 540px;
}

.cta-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   FOOTER  (dark wood panel)
   ═══════════════════════════════════════════ */
.footer {
  /* Horizontal wood-grain stripes on a dark walnut base */
  background-color: var(--wood-dark);
  background-image:
    repeating-linear-gradient(
      180deg,
      transparent 0, transparent 18px,
      rgba(255, 255, 255, 0.012) 18px, rgba(255, 255, 255, 0.012) 20px
    ),
    repeating-linear-gradient(
      93deg,
      transparent 0, transparent 40px,
      rgba(0, 0, 0, 0.04) 40px, rgba(0, 0, 0, 0.04) 42px
    );
  color: rgba(255, 255, 255, 0.78);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  padding-top: 60px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}
@media (min-width: 560px) { .footer__inner { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .footer__inner { grid-template-columns: repeat(3, 1fr); } }

.footer__logo {
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin-bottom: 10px;
}
.footer__brand p {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.50);
  line-height: 1.65;
}

.footer__col h4 {
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.17em;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 7px; }
.footer__col li a {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.60);
  transition: color var(--ease);
}
.footer__col li a:hover { color: var(--gold-light); }
.footer__col p {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.7;
  margin-bottom: 3px;
}

.footer__bottom {
  padding: 22px 0;
}
.footer__bottom .container {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.footer__bottom p {
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.5;
}
.footer__bottom a {
  color: rgba(255, 255, 255, 0.58);
  text-decoration: underline;
}
.footer__disclaimer {
  font-size: 0.68rem !important;
  color: rgba(255, 255, 255, 0.30) !important;
  line-height: 1.65 !important;
}

/* ═══════════════════════════════════════════
   RESPONSIVE — mobile & tablet
   ═══════════════════════════════════════════ */

/* Tablet (max 768px) */
@media (max-width: 768px) {
  section { padding: 56px 0; }
  .faq { padding: 40px 0 56px; }

  .services__grid { grid-template-columns: 1fr; }
  .problem__grid  { grid-template-columns: 1fr; }

  .about__inner { grid-template-columns: 1fr; }
  .about__photo-wrap { order: -1; }
  .about__photo { width: 100%; height: 260px; }

  .cta-banner__inner { flex-direction: column; gap: 28px; }
  .cta-banner__actions { flex-direction: column; width: 100%; }
  .cta-banner__actions .btn { text-align: center; width: 100%; }

  .process__steps::before { display: none; }
  .process-step__num { width: 44px; height: 44px; font-size: 0.9rem; }
}

/* Mobile (max 480px) */
@media (max-width: 480px) {
  section { padding: 44px 0; }
  .container { padding: 0 16px; }

  .hero { padding: 48px 0 40px; }
  .hero__headline { font-size: 2rem; }
  .hero__subhead { font-size: 0.95rem; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { text-align: center; width: 100%; }

  .section-title { font-size: 1.6rem; }
  .section-sub { font-size: 0.9rem; margin-bottom: 28px; }

  /* Services as simple list on mobile */
  .services__grid { grid-template-columns: 1fr; gap: 0; border: 1px solid rgba(10,55,12,0.10); border-radius: var(--radius); overflow: hidden; }
  .service-card { border-left: none; border-radius: 0; border: none; border-bottom: 1px solid rgba(10,55,12,0.08); padding: 14px 16px; display: flex; align-items: center; gap: 12px; }
  .service-card:last-child { border-bottom: none; }
  .service-card__desc { display: none; }
  .service-card__label { margin-bottom: 0; flex-shrink: 0; }
  .service-card h3 { font-size: 0.95rem; margin-bottom: 0; }

  .process-step { gap: 16px; }
  .process-step__body h3 { font-size: 1rem; }
  .process-step__body p { font-size: 0.85rem; }

  .about__eyebrow { font-size: 1.4rem; }
  .about__text p { font-size: 0.9rem; }

  .faq__list { gap: 4px; }
  .faq-item__q { font-size: 0.875rem; padding: 16px 16px; }
  .faq-item__a { padding: 18px 16px; }

  .footer__inner { grid-template-columns: 1fr; gap: 28px; padding-top: 40px; }
  .footer__col h4 { margin-bottom: 10px; }

  .header__cta { padding: 7px 14px; }
  .cta-number { font-size: 0.875rem; }

  .btn { padding: 13px 22px; font-size: 0.875rem; }
}
