/* ==============================================================
   Practice Partner CPAs — Brand Identity v9 (matches mockup)
   Navy #0B1D2D + Teal #0BB6C1 · Montserrat + Open Sans · Pill CTAs
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700;800&family=Open+Sans:wght@400;500;600;700&display=swap');

:root {
  --navy: #0B1D2D;
  --navy-dark: #071420;
  --teal: #0BB6C1;
  --teal-dark: #099AA3;
  --slate: #64748B;
  --slate-soft: #94A3B8;
  --line: #E6ECF1;
  --line-soft: #F1F5F9;
  --bg: #FFFFFF;
  --bg-cream: #F8FAFB;
  --bg-soft: #F3F6F9;

  --sans: 'Open Sans', system-ui, sans-serif;
  --display: 'Montserrat', system-ui, sans-serif;
  --container: 1280px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); color: var(--navy); background: var(--bg); line-height: 1.6; font-size: 16px; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 32px; }
@media (max-width: 768px) { .container { padding: 0 20px; } }

/* ============= TYPOGRAPHY ============= */
h1, h2, h3, h4, h5 { font-family: var(--display); color: var(--navy); font-weight: 700; line-height: 1.15; letter-spacing: -0.01em; }
h1 { font-size: clamp(36px, 4.5vw, 56px); font-weight: 700; line-height: 1.1; }
h2 { font-size: clamp(28px, 3.2vw, 42px); }
h3 { font-size: 20px; }
p { color: var(--slate); line-height: 1.65; }
.lead { font-size: 17px; line-height: 1.65; color: var(--slate); max-width: 580px; }
.eyebrow { font-family: var(--display); font-size: 12px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--teal); display: inline-block; margin-bottom: 18px; }

/* ============= HEADER (matches mockup) ============= */
.site-header { background: var(--bg); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 100; }
.site-header .container { display: flex; align-items: center; justify-content: space-between; padding-top: 20px; padding-bottom: 20px; gap: 32px; }
.brand { display: flex; align-items: center; gap: 14px; }
.brand-logo { width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; }
.brand-logo svg { width: 100%; height: 100%; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: var(--display); font-weight: 700; font-size: 18px; color: var(--navy); letter-spacing: 0.02em; }
.brand-name span { color: var(--teal); }
.brand-tag { font-family: var(--sans); font-size: 9px; font-weight: 600; letter-spacing: 0.18em; color: var(--slate); text-transform: uppercase; margin-top: 4px; }
.nav-links { display: flex; align-items: center; gap: 36px; font-family: var(--display); font-size: 13px; font-weight: 600; letter-spacing: 0.06em; color: var(--navy); text-transform: uppercase; }
.nav-links a { transition: color 0.2s ease; }
.nav-links a:hover { color: var(--teal); }
.has-dd { position: relative; }
.has-dd::after { content: ''; position: absolute; top: 100%; left: 0; right: 0; height: 18px; background: transparent; z-index: 99; }
.dd { display: none; position: absolute; top: 100%; left: -16px; background: var(--bg); border: 1px solid var(--line); padding: 8px 0; min-width: 240px; box-shadow: 0 12px 32px rgba(11,29,45,0.08); margin-top: 14px; }
.has-dd:hover .dd { display: block; }
.dd a { display: block; padding: 10px 20px; font-family: var(--sans); font-weight: 500; font-size: 13px; letter-spacing: 0.02em; text-transform: none; color: var(--navy); }
.dd a:hover { background: var(--bg-cream); color: var(--teal); }
.nav-cta-btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 22px; background: var(--navy); color: var(--bg) !important; font-family: var(--display); font-weight: 600; font-size: 13px; letter-spacing: 0.04em; border-radius: 999px; transition: all 0.2s ease; }
.nav-cta-btn:hover { background: var(--teal); }
.hamburger { display: none; }
@media (max-width: 1024px) { .nav-links { display: none; } }

/* ============= BUTTONS (Pill style — matches mockup) ============= */
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 16px 30px; font-family: var(--display); font-weight: 600; font-size: 14px; letter-spacing: 0.04em; border-radius: 999px; transition: all 0.2s ease; white-space: nowrap; cursor: pointer; }
.btn-teal { background: var(--teal); color: var(--bg); }
.btn-teal:hover { background: var(--teal-dark); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(11,182,193,0.25); }
.btn-navy { background: var(--navy); color: var(--bg); }
.btn-navy:hover { background: var(--navy-dark); transform: translateY(-1px); }
.btn-outline { background: var(--bg); color: var(--navy); border: 1.5px solid var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--bg); }
.btn-outline-light { background: transparent; color: var(--bg); border: 1.5px solid rgba(255,255,255,0.5); }
.btn-outline-light:hover { background: rgba(255,255,255,0.1); border-color: var(--bg); }
.btn-white { background: var(--bg); color: var(--navy); }
.btn-white:hover { background: var(--bg-cream); }

/* ============= HERO (matches mockup exactly) ============= */
.hero {
  position: relative;
  padding: 80px 0 80px;
  background: var(--bg);
  overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 80px; align-items: center; }
.hero-text { max-width: 600px; }
.hero-eyebrow { font-family: var(--display); font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--teal); margin-bottom: 24px; }
.hero h1 { font-family: var(--display); font-weight: 800; font-size: clamp(40px, 5vw, 64px); line-height: 1.05; letter-spacing: -0.02em; color: var(--navy); margin-bottom: 28px; }
.hero h1 span.accent { color: var(--teal); display: block; }
.hero p.hero-body { font-family: var(--sans); font-size: 17px; line-height: 1.6; color: var(--slate); margin-bottom: 36px; max-width: 520px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero photo with diagonal teal accent (matches mockup) */
.hero-photo-wrap { position: relative; }
.hero-photo {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 5/4;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }

/* Diagonal teal arrow overlay (the mockup's signature) */
.hero-photo::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 60%; height: 40%;
  background: linear-gradient(135deg, transparent 0%, transparent 50%, rgba(11,182,193,0.85) 50%, rgba(11,182,193,0.85) 60%, transparent 60%);
  clip-path: polygon(100% 0, 100% 100%, 30% 0);
  pointer-events: none;
  z-index: 2;
}
.hero-photo::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 50%; height: 35%;
  background: linear-gradient(45deg, rgba(11,29,45,0.85) 50%, transparent 50%);
  clip-path: polygon(0 0, 0 100%, 100% 100%);
  pointer-events: none;
  z-index: 2;
}

@media (max-width: 900px) {
  .hero { padding: 56px 0; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
}

/* ============= TRUST PILLAR BAR (matches mockup — dark navy with 4 icons) ============= */
.trust-pillars {
  background: var(--navy);
  padding: 48px 0;
  color: var(--bg);
  border-top: 4px solid var(--teal);
}
.trust-pillars-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.trust-pillar { display: flex; align-items: center; gap: 18px; }
.trust-pillar-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(11,182,193,0.12);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal);
  flex-shrink: 0;
}
.trust-pillar-icon svg { width: 24px; height: 24px; }
.trust-pillar-text { display: flex; flex-direction: column; gap: 2px; }
.trust-pillar-title { font-family: var(--display); font-size: 14px; font-weight: 700; color: var(--bg); letter-spacing: 0.01em; line-height: 1.2; }
.trust-pillar-sub { font-family: var(--sans); font-size: 12px; color: rgba(255,255,255,0.6); }
@media (max-width: 900px) { .trust-pillars-grid { grid-template-columns: 1fr 1fr; gap: 24px; } }
@media (max-width: 500px) { .trust-pillars-grid { grid-template-columns: 1fr; } }

/* ============= SECTION FOUNDATIONS ============= */
section { padding: 96px 0; }
.section-bg-soft { background: var(--bg-soft); }
.section-bg-cream { background: var(--bg-cream); }
.section-bg-navy { background: var(--navy); color: var(--bg); }
.section-bg-navy h1, .section-bg-navy h2, .section-bg-navy h3 { color: var(--bg); }
.section-bg-navy p { color: rgba(255,255,255,0.75); }
.section-bg-navy .eyebrow { color: var(--teal); }
@media (max-width: 768px) { section { padding: 64px 0; } }

.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-head h2 { margin-bottom: 16px; }
.section-head .lead { margin: 0 auto; }
.section-head .eyebrow { margin-bottom: 16px; }

/* ============= VALUE PROP (Why us — 2 column) ============= */
.value-section { background: var(--bg); padding: 96px 0; }
.value-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 64px; align-items: start; }
.value-section h2 { margin-bottom: 20px; }
.value-section h2 span.accent { color: var(--teal); }
.value-text { font-family: var(--sans); font-size: 17px; line-height: 1.7; color: var(--slate); }
.value-text p + p { margin-top: 16px; }
.value-text strong { color: var(--navy); font-weight: 600; }
.value-list { list-style: none; padding: 0; margin: 24px 0 0; }
.value-list li { padding: 12px 0 12px 32px; position: relative; font-family: var(--sans); font-size: 15px; color: var(--navy); border-top: 1px solid var(--line); }
.value-list li:first-child { border-top: none; }
.value-list li::before {
  content: ''; position: absolute; left: 0; top: 16px;
  width: 18px; height: 18px;
  background: var(--teal);
  border-radius: 4px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 12px; background-position: center; background-repeat: no-repeat;
}
@media (max-width: 900px) { .value-grid { grid-template-columns: 1fr; gap: 32px; } }

/* ============= COMPARISON ============= */
.comparison-section { background: var(--bg-soft); padding: 96px 0; }
.comparison-table { background: var(--bg); border-radius: 8px; overflow: hidden; box-shadow: 0 4px 16px rgba(11,29,45,0.06); margin-top: 48px; }
.comparison-row { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; }
.comparison-row.head { background: var(--navy); color: var(--bg); }
.comparison-row.head > div { padding: 28px 24px; border-right: 1px solid rgba(255,255,255,0.08); }
.comparison-row.head > div:last-child { border-right: none; }
.comparison-row.head .col-tag { font-family: var(--display); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-bottom: 6px; }
.comparison-row.head .col-name { font-family: var(--display); font-size: 17px; font-weight: 700; color: var(--bg); }
.comparison-row.head .col-featured .col-tag, .comparison-row.head .col-featured .col-name { color: var(--teal); }
.comparison-row.body { border-bottom: 1px solid var(--line); }
.comparison-row.body > div { padding: 20px 24px; border-right: 1px solid var(--line); font-family: var(--sans); font-size: 14px; color: var(--slate); display: flex; align-items: center; }
.comparison-row.body > div:last-child { border-right: none; }
.comparison-row.body .row-label { font-family: var(--display); font-weight: 600; color: var(--navy); font-size: 14px; background: var(--bg-cream); }
.comparison-cell { justify-content: center; text-align: center; }
.cell-yes { color: var(--teal); font-weight: 700; }
.cell-no { color: var(--slate-soft); }
.cell-bullet { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); display: inline-block; margin-right: 8px; }
.col-featured { background: rgba(11,182,193,0.03); }
@media (max-width: 900px) {
  .comparison-row { grid-template-columns: 1fr; }
  .comparison-row.body > div { border-right: none; border-bottom: 1px solid var(--line); }
  .comparison-cell { justify-content: flex-start; text-align: left; }
}

/* ============= SERVICES / PILLARS GRID (4 across with icons) ============= */
.services-section { background: var(--bg); }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 56px; }
.service-card { padding: 32px 28px; background: var(--bg-cream); border-radius: 8px; transition: all 0.25s ease; }
.service-card:hover { background: var(--bg); box-shadow: 0 12px 32px rgba(11,29,45,0.08); transform: translateY(-4px); }
.service-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(11,182,193,0.12);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal);
  margin-bottom: 20px;
}
.service-icon svg { width: 26px; height: 26px; }
.service-card h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.service-card p { font-size: 14px; line-height: 1.6; color: var(--slate); }
@media (max-width: 1024px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .services-grid { grid-template-columns: 1fr; } }

/* ============= SPECIALTIES ============= */
.specialties-section { background: var(--bg-cream); }
.specialties-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.specialty-card {
  padding: 32px 28px;
  background: var(--bg);
  border-radius: 8px;
  border: 1px solid var(--line);
  transition: all 0.25s ease;
  display: block;
  position: relative;
  overflow: hidden;
}
.specialty-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.specialty-card:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(11,29,45,0.08); }
.specialty-card:hover::before { transform: scaleX(1); }
.specialty-tag { font-family: var(--display); font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--teal); margin-bottom: 8px; }
.specialty-name { font-family: var(--display); font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.specialty-sub { font-family: var(--sans); font-size: 13.5px; color: var(--slate); line-height: 1.5; }
@media (max-width: 900px) { .specialties-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .specialties-grid { grid-template-columns: 1fr; } }

/* ============= OUTCOMES BAND ============= */
.outcomes-section { background: var(--navy); color: var(--bg); padding: 96px 0; }
.outcomes-section h2 { color: var(--bg); margin-bottom: 16px; }
.outcomes-section .lead { color: rgba(255,255,255,0.78); margin: 0 auto 56px; text-align: center; }
.outcomes-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
.outcome-item { text-align: center; padding: 0 8px; }
.outcome-num { font-family: var(--display); font-size: 52px; font-weight: 800; color: var(--teal); line-height: 1; margin-bottom: 12px; letter-spacing: -0.02em; }
.outcome-label { font-family: var(--sans); font-size: 14px; line-height: 1.5; color: rgba(255,255,255,0.78); }
@media (max-width: 900px) { .outcomes-grid { grid-template-columns: 1fr 1fr; gap: 48px; } .outcome-num { font-size: 42px; } }

/* ============= PRICING TIERS ============= */
.pricing-section { background: var(--bg); }
.tiers-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 48px; }
.tier-card { background: var(--bg); border: 1px solid var(--line); border-radius: 8px; padding: 32px 28px; display: flex; flex-direction: column; position: relative; transition: all 0.25s ease; }
.tier-card:hover { box-shadow: 0 12px 32px rgba(11,29,45,0.08); transform: translateY(-3px); }
.tier-card.featured { border: 2px solid var(--teal); background: linear-gradient(180deg, var(--bg) 0%, rgba(11,182,193,0.02) 100%); }
.tier-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--teal); color: var(--bg); font-family: var(--display); font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; padding: 6px 16px; border-radius: 999px; white-space: nowrap; }
.tier-name { font-family: var(--display); font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--slate); margin-bottom: 16px; }
.tier-card.featured .tier-name { color: var(--teal); }
.tier-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 8px; }
.tier-price strong { font-family: var(--display); font-size: 36px; font-weight: 800; color: var(--navy); line-height: 1; letter-spacing: -0.01em; }
.tier-price span { font-family: var(--sans); font-size: 14px; color: var(--slate); font-weight: 500; }
.tier-best { font-family: var(--sans); font-size: 13px; color: var(--slate); margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--line); line-height: 1.5; }
.tier-features { list-style: none; margin: 0 0 24px; padding: 0; flex: 1; }
.tier-features li { font-family: var(--sans); font-size: 14px; color: var(--slate); padding: 8px 0 8px 24px; position: relative; line-height: 1.5; }
.tier-features li::before {
  content: ''; position: absolute; left: 0; top: 13px;
  width: 14px; height: 14px;
  background: var(--teal);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 10px; background-position: center; background-repeat: no-repeat;
}
.tier-cta { font-family: var(--display); font-size: 13px; font-weight: 600; color: var(--teal); padding-top: 12px; border-top: 1px solid var(--line); text-transform: uppercase; letter-spacing: 0.06em; }
.tier-cta::after { content: ' \2192'; }
@media (max-width: 1024px) { .tiers-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .tiers-grid { grid-template-columns: 1fr; } }

/* ============= ABOUT BRIEF (Founder spotlight) ============= */
.about-brief { background: var(--bg-cream); }
.about-brief-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 64px; align-items: center; }
.about-brief-photo { aspect-ratio: 4/5; background: var(--bg); border-radius: 8px; overflow: hidden; position: relative; }
.about-brief-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-brief-photo::after {
  content: ''; position: absolute; bottom: 0; right: 0;
  width: 50%; height: 30%;
  background: linear-gradient(135deg, transparent 50%, var(--teal) 50%);
  opacity: 0.85;
}
.about-brief-text h2 { margin-bottom: 24px; }
.about-brief-text h2 span.accent { color: var(--teal); }
.about-brief-text p { font-family: var(--sans); font-size: 17px; line-height: 1.7; color: var(--slate); margin-bottom: 18px; }
.about-brief-credit { margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--line); font-family: var(--sans); font-size: 14px; color: var(--slate); }
.about-brief-credit strong { color: var(--navy); font-weight: 700; font-family: var(--display); }
.about-brief-actions { margin-top: 28px; display: flex; gap: 14px; flex-wrap: wrap; }
@media (max-width: 900px) { .about-brief-grid { grid-template-columns: 1fr; gap: 40px; } }

/* ============= FINAL CTA BAND ============= */
.final-cta { background: var(--navy); padding: 96px 0; text-align: center; color: var(--bg); }
.final-cta h2 { color: var(--bg); margin-bottom: 16px; }
.final-cta h2 span.accent { color: var(--teal); }
.final-cta p { color: rgba(255,255,255,0.78); margin: 0 auto 40px; max-width: 600px; }
.final-cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.final-cta-foot { margin-top: 28px; font-family: var(--sans); font-size: 13px; color: rgba(255,255,255,0.5); }

/* ============= FOOTER ============= */
.site-footer { background: var(--navy-dark); color: rgba(255,255,255,0.62); padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand-name { font-family: var(--display); font-weight: 700; color: var(--bg); font-size: 16px; letter-spacing: 0.02em; margin-bottom: 8px; }
.footer-brand-name span { color: var(--teal); }
.footer-brand-tag { font-family: var(--sans); font-size: 10px; font-weight: 600; letter-spacing: 0.18em; color: rgba(255,255,255,0.5); text-transform: uppercase; margin-bottom: 18px; }
.footer-brand p { font-size: 14px; line-height: 1.6; max-width: 320px; color: rgba(255,255,255,0.6); }
.footer-col h5 { font-family: var(--display); font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--bg); margin-bottom: 16px; }
.footer-col a { display: block; font-family: var(--sans); font-size: 14px; color: rgba(255,255,255,0.62); padding: 6px 0; transition: color 0.2s ease; }
.footer-col a:hover { color: var(--teal); }
.footer-bottom { padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.08); display: flex; justify-content: space-between; align-items: center; font-size: 13px; gap: 16px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } .footer-bottom { flex-direction: column; gap: 12px; text-align: center; } }

/* ============= SUBHERO (for non-home pages) ============= */
.subhero { padding: 80px 0; background: var(--bg-cream); border-bottom: 1px solid var(--line); }
.subhero-breadcrumb { font-family: var(--sans); font-size: 13px; color: var(--slate-soft); margin-bottom: 18px; letter-spacing: 0.04em; }
.subhero-breadcrumb a { color: var(--teal); }
.subhero-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 64px; align-items: center; }
.subhero h1 { font-family: var(--display); font-weight: 800; font-size: clamp(36px, 4.5vw, 56px); line-height: 1.08; color: var(--navy); margin-bottom: 24px; }
.subhero h1 span.accent { color: var(--teal); }
.subhero p { font-family: var(--sans); font-size: 17px; line-height: 1.6; color: var(--slate); max-width: 540px; }
.subhero-actions { margin-top: 32px; display: flex; gap: 14px; flex-wrap: wrap; }
.subhero-photo { position: relative; aspect-ratio: 5/4; border-radius: 8px; overflow: hidden; }
.subhero-photo img { width: 100%; height: 100%; object-fit: cover; }
.subhero-photo::before { content: ''; position: absolute; top: 0; right: 0; width: 50%; height: 35%; background: var(--teal); clip-path: polygon(100% 0, 100% 100%, 30% 0); opacity: 0.85; z-index: 2; }
@media (max-width: 900px) { .subhero-grid { grid-template-columns: 1fr; gap: 40px; } }

/* ============= FAQ ============= */
.faq-section { background: var(--bg-cream); padding: 96px 0; }
.faq-list { max-width: 820px; margin: 48px auto 0; }
.faq-item { background: var(--bg); border-radius: 8px; margin-bottom: 12px; border: 1px solid var(--line); }
.faq-item summary { padding: 20px 24px; cursor: pointer; font-family: var(--display); font-size: 15px; font-weight: 600; color: var(--navy); list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; color: var(--teal); font-weight: 400; font-size: 24px; transition: transform 0.2s; line-height: 1; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-body { padding: 0 24px 20px; font-family: var(--sans); font-size: 14.5px; line-height: 1.6; color: var(--slate); }

/* ============= NICHE SNAPSHOT ============= */
.snapshot { background: var(--bg); padding: 40px 0; border-bottom: 1px solid var(--line); }
.snapshot-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.snapshot-item { padding: 4px 0; }
.snapshot-item-label { font-family: var(--display); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--slate-soft); font-weight: 700; margin-bottom: 6px; }
.snapshot-item-val { font-family: var(--display); font-size: 18px; color: var(--navy); font-weight: 700; }
.snapshot-item-val.accent { color: var(--teal); }
@media (max-width: 768px) { .snapshot-grid { grid-template-columns: 1fr 1fr; gap: 24px; } }
