:root {
  --bg: #f7f4ec;
  --bg-elev: #fff;
  --text: #1a1a1a;
  --text-mute: #555;
  --ink-blue: #1a4d8c;
  --acid-mint: #a8e000;
  --border: #d4cdb8;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Inter', -apple-system, sans-serif;
  --max: 1140px;
  --pad-x: clamp(20px, 4vw, 56px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { background: var(--bg); color: var(--text); font-family: var(--sans); font-size: 17px; line-height: 1.65; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: var(--ink-blue); text-decoration: none; border-bottom: 2px solid var(--acid-mint); padding-bottom: 1px; transition: background 0.2s; }
a:hover { background: rgba(168,224,0,0.2); }
.container { max-width: var(--max); margin: 0 auto; padding-inline: var(--pad-x); }
.eyebrow { font-family: var(--sans); font-size: 11px; letter-spacing: 4px; font-weight: 800; color: var(--ink-blue); text-transform: uppercase; }
.btn { display: inline-block; padding: 14px 28px; font-family: var(--sans); font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; }
.btn-primary { background: var(--text); color: var(--bg); border: none; }
.btn-primary:hover { background: var(--ink-blue); }
a.btn { border-bottom: none; }

/* Header / Masthead */
.site-header { background: var(--bg); border-bottom: 1px solid var(--text); position: sticky; top: 0; z-index: 50; }
.masthead { padding-block: 18px; }
.masthead-row { display: flex; align-items: center; justify-content: space-between; padding-bottom: 14px; border-bottom: 1px solid var(--border); }
.brand { display: flex; align-items: center; gap: 12px; color: var(--text); border-bottom: none; }
.brand:hover { background: transparent; }
.brand-name { font-family: var(--serif); font-size: 28px; font-weight: 900; letter-spacing: -1px; font-style: italic; }
.issue { font-family: var(--sans); font-size: 11px; letter-spacing: 3px; color: var(--text-mute); text-transform: uppercase; font-weight: 700; }
.nav-main { display: flex; gap: 28px; padding-top: 12px; }
.nav-main a { font-family: var(--sans); font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--text); border-bottom: none; }
.nav-main a:hover { color: var(--ink-blue); background: transparent; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--text); margin: 4px 0; }
@media (max-width: 768px) {
  .issue { display: none; }
  .nav-toggle { display: block; }
  .nav-main { display: none; flex-direction: column; gap: 0; padding-top: 0; background: var(--bg); }
  .nav-main.open { display: flex; }
  .nav-main a { padding: 14px 0; border-bottom: 1px solid var(--border); }
}

/* Hero */
.hero { padding-block: clamp(60px, 8vw, 100px); border-bottom: 1px solid var(--border); }
.hero-title { font-family: var(--serif); font-weight: 400; font-size: clamp(36px, 5.5vw, 68px); line-height: 1.05; letter-spacing: -1px; margin-block: 20px 48px; max-width: 20ch; }
.hero-title em { font-style: italic; color: var(--ink-blue); }
.hero-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 48px; padding-top: 32px; border-top: 1px solid var(--text); }
.hero-lead p { font-size: 17px; margin-bottom: 16px; }
.dropcap { font-family: var(--serif); font-weight: 900; font-size: 64px; line-height: 0.85; float: left; margin-right: 8px; margin-top: 6px; color: var(--ink-blue); }
.hero-cta { display: inline-block; margin-top: 16px; font-family: var(--sans); font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.hero-aside { padding-left: 32px; border-left: 1px solid var(--border); display: flex; flex-direction: column; gap: 32px; }
.aside-stat .aside-num { font-family: var(--serif); font-size: 56px; font-weight: 400; line-height: 1; color: var(--ink-blue); }
.aside-stat .aside-num small { font-size: 24px; color: var(--text); }
.aside-stat .aside-label { font-family: var(--sans); font-size: 11px; letter-spacing: 2px; font-weight: 700; text-transform: uppercase; color: var(--text-mute); margin-top: 4px; }
@media (max-width: 800px) {
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-aside { padding-left: 0; border-left: none; flex-direction: row; gap: 32px; padding-top: 24px; border-top: 1px solid var(--border); }
}

/* Services */
.services { padding-block: clamp(60px, 10vw, 100px); border-bottom: 1px solid var(--border); }
.section-title { font-family: var(--serif); font-weight: 400; font-size: clamp(36px, 5vw, 56px); line-height: 1.05; margin-block: 16px 48px; }
.services-list { list-style: none; }
.services-list li { display: grid; grid-template-columns: 80px 1fr; gap: 24px; padding-block: 32px; border-top: 1px solid var(--border); }
.services-list li:last-child { border-bottom: 1px solid var(--border); }
.svc-num { font-family: var(--serif); font-style: italic; font-size: 36px; color: var(--ink-blue); }
.services-list h3 { font-family: var(--serif); font-weight: 400; font-size: 28px; margin-bottom: 8px; }
.services-list p { color: var(--text-mute); font-size: 16px; max-width: 60ch; }
@media (max-width: 600px) { .services-list li { grid-template-columns: 1fr; gap: 12px; } }

/* Impact */
.impact { padding-block: clamp(60px, 10vw, 100px); border-bottom: 1px solid var(--border); }
.pullquote { font-family: var(--serif); font-style: italic; font-size: clamp(24px, 3.5vw, 38px); line-height: 1.3; color: var(--text); border-top: 4px solid var(--text); border-bottom: 1px solid var(--border); padding-block: 32px; margin-block: 32px 56px; max-width: 24ch; }
.data-spread { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid var(--border); }
.data-stat { padding: 32px; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--bg-elev); }
.data-stat:nth-child(3n) { border-right: none; }
.data-stat:nth-last-child(-n+3) { border-bottom: none; }
.d-num { font-family: var(--serif); font-weight: 400; font-size: clamp(48px, 6vw, 72px); line-height: 1; color: var(--ink-blue); margin-bottom: 8px; }
.d-num small, .d-num sub { font-size: 24px; color: var(--text); vertical-align: baseline; }
.d-label { font-family: var(--sans); font-size: 12px; letter-spacing: 2px; font-weight: 700; text-transform: uppercase; color: var(--text-mute); }
.d-label small { display: block; text-transform: none; letter-spacing: 0; font-weight: 400; font-size: 11px; margin-top: 2px; }
.data-stat-hl { background: var(--acid-mint); }
.data-stat-hl .d-num, .data-stat-hl .d-num small { color: var(--text); }
@media (max-width: 800px) {
  .data-spread { grid-template-columns: repeat(2, 1fr); }
  .data-stat:nth-child(3n) { border-right: 1px solid var(--border); }
  .data-stat:nth-child(2n) { border-right: none; }
  .data-stat:nth-last-child(-n+3) { border-bottom: 1px solid var(--border); }
  .data-stat:nth-last-child(-n+2) { border-bottom: none; }
}
@media (max-width: 480px) {
  .data-spread { grid-template-columns: 1fr; }
  .data-stat { border-right: none !important; border-bottom: 1px solid var(--border); }
  .data-stat:last-child { border-bottom: none; }
}

/* About */
.about { padding-block: clamp(60px, 10vw, 100px); border-bottom: 1px solid var(--border); }
.about-text { font-size: 17px; line-height: 1.7; margin-bottom: 16px; max-width: 60ch; }

/* Contact */
.contact { padding-block: clamp(60px, 10vw, 100px); }
.contact-dl { display: grid; grid-template-columns: 1fr; gap: 0; max-width: 600px; margin-top: 32px; }
.contact-dl dt { font-family: var(--sans); font-size: 11px; letter-spacing: 3px; font-weight: 800; text-transform: uppercase; color: var(--text-mute); padding-top: 16px; border-top: 1px solid var(--border); margin-top: 16px; }
.contact-dl dt:first-child { margin-top: 0; }
.contact-dl dd { font-family: var(--serif); font-size: 24px; padding-bottom: 4px; }

/* Footer */
.site-footer { padding-block: 24px; border-top: 1px solid var(--text); background: var(--bg-elev); }
.footer-row { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-meta { color: var(--text-mute); font-size: 12px; }

/* Service credential */
.svc-credential {
  display: block; margin-top: 12px;
  font-size: 10px; letter-spacing: 2px; font-weight: 800;
  text-transform: uppercase; color: var(--ink-blue);
  border-top: 1px solid var(--border); padding-top: 10px;
}

/* Testimonial */
.testimonial {
  margin-top: 28px; padding: 20px 24px;
  border-left: 3px solid var(--ink-blue); background: var(--bg-elev);
}
.testimonial blockquote { font-family: var(--serif); font-style: italic; font-size: 17px; line-height: 1.6; color: var(--text); margin-bottom: 10px; }
.testimonial cite { font-size: 11px; letter-spacing: 2px; color: var(--text-mute); text-transform: uppercase; font-style: normal; font-weight: 700; }

/* Compliance */
.compliance { padding-block: clamp(60px, 10vw, 100px); border-bottom: 1px solid var(--border); }
.compliance-dl { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; border: 1px solid var(--border); margin-top: 40px; }
.compliance-item { padding: 24px; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--bg-elev); }
.compliance-item:nth-child(2n) { border-right: none; }
.compliance-item:nth-last-child(-n+2) { border-bottom: none; }
.comp-label { font-family: var(--sans); font-size: 10px; letter-spacing: 3px; font-weight: 800; text-transform: uppercase; color: var(--ink-blue); margin-bottom: 6px; }
.comp-desc { font-size: 14px; color: var(--text-mute); line-height: 1.5; }
@media (max-width: 600px) {
  .compliance-dl { grid-template-columns: 1fr; }
  .compliance-item { border-right: none !important; }
  .compliance-item:nth-last-child(-n+2) { border-bottom: 1px solid var(--border); }
  .compliance-item:last-child { border-bottom: none; }
}

@media (max-width: 480px) {
  .masthead { padding-block: 12px; }
  .brand-name { font-size: 22px; }

  .hero { padding-block: 40px 48px; }
  .hero-title { font-size: 28px; letter-spacing: -0.5px; margin-block: 14px 28px; max-width: 100%; }
  .dropcap { font-size: 48px; }
  .hero-lead p { font-size: 16px; }
  .hero-aside { flex-direction: column; gap: 20px; }
  .aside-stat .aside-num { font-size: 40px; }

  .section-title { font-size: 28px; margin-block: 12px 32px; }
  .services-list li { grid-template-columns: 48px 1fr; gap: 16px; padding-block: 20px; }
  .svc-num { font-size: 26px; }
  .services-list h3 { font-size: 22px; }

  .pullquote { font-size: 20px; padding-block: 20px; margin-block: 20px 36px; }
  .d-num { font-size: 40px; }
  .data-stat { padding: 20px 16px; }

  .about-text { font-size: 16px; }

  .contact-dl dd { font-size: 18px; word-break: break-all; }
}
