/* Ackle — charcoal + amber. One stylesheet. No frameworks. */

:root {
  --charcoal: #1F2429;
  --charcoal-soft: #2A3036;
  --charcoal-line: rgba(245,242,236,0.08);
  --amber: #EF9F27;
  --amber-dark: #BA7517;
  --bone: #F5F2EC;
  --bone-soft: #FAF8F3;
  --stone: #6E665A;
  --stone-soft: #B8B1A4;
  --text: #1F2429;
  --text-muted: #5F5E5A;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bone-soft);
  -webkit-font-smoothing: antialiased;
}
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
img { max-width: 100%; height: auto; display: block; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* Header */
.site-header { background: var(--charcoal); border-bottom: 1px solid var(--charcoal-line); position: sticky; top: 0; z-index: 50; }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 18px 24px; }
.brand { display: inline-flex; align-items: baseline; text-decoration: none; }
.brand-word { color: var(--bone); font-size: 22px; font-weight: 500; letter-spacing: -0.02em; }
.brand-dot { color: var(--amber); font-size: 22px; font-weight: 500; margin-left: 1px; }
.site-nav { display: flex; gap: 28px; align-items: center; }
.site-nav a { color: rgba(245,242,236,0.7); text-decoration: none; font-size: 14px; font-weight: 400; transition: color 0.15s; }
.site-nav a:hover { color: var(--bone); }
.site-nav a.nav-cta { color: var(--amber); font-weight: 500; }
.site-nav a.nav-cta:hover { color: #FFB94A; }

/* Hero */
.hero { background: var(--charcoal); color: var(--bone); padding: 80px 0 96px; }
.hero-kicker { color: var(--amber); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 24px; font-weight: 500; }
.hero-title { font-size: clamp(36px, 6vw, 64px); font-weight: 500; line-height: 1.05; letter-spacing: -0.025em; margin: 0 0 24px; color: var(--bone); }
.hero-emphasis { color: var(--amber); }
.hero-lede { font-size: 18px; line-height: 1.6; color: rgba(245,242,236,0.7); max-width: 560px; margin: 0 0 36px; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* Buttons */
.btn { display: inline-block; padding: 14px 26px; border-radius: 6px; font-size: 14px; font-weight: 500; text-decoration: none; transition: all 0.15s; border: none; cursor: pointer; font-family: inherit; }
.btn-primary { background: var(--amber); color: var(--charcoal); }
.btn-primary:hover { background: #FFB94A; transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--bone); border: 1px solid rgba(245,242,236,0.25); }
.btn-ghost:hover { border-color: var(--bone); background: rgba(245,242,236,0.05); }

/* Trust strip */
.trust-strip { background: var(--charcoal-soft); color: var(--bone); padding: 32px 0; border-bottom: 1px solid var(--charcoal-line); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.trust-item { text-align: left; }
.trust-num { font-size: 28px; font-weight: 500; color: var(--amber); margin-bottom: 4px; letter-spacing: -0.02em; }
.trust-label { font-size: 13px; color: rgba(245,242,236,0.65); line-height: 1.4; }

/* Sections */
section.services, section.sectors, section.why, section.contact { padding: 96px 0; }
.section-head { max-width: 720px; margin-bottom: 56px; }
.section-kicker { color: var(--amber-dark); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 16px; font-weight: 500; }
.section-title { font-size: clamp(28px, 4vw, 42px); font-weight: 500; letter-spacing: -0.02em; margin: 0 0 16px; line-height: 1.15; }
.section-lede { font-size: 17px; line-height: 1.6; color: var(--text-muted); margin: 0; }
.section-head-light .section-kicker { color: var(--amber); }
.section-head-light .section-title, .section-head-light .section-lede { color: var(--bone); }

/* Services */
.services { background: var(--bone-soft); }
.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.service-card { background: #fff; padding: 36px 32px; border-radius: 10px; border: 1px solid rgba(31,36,41,0.08); transition: all 0.2s; }
.service-card:hover { transform: translateY(-2px); border-color: rgba(31,36,41,0.16); }
.service-icon { width: 44px; height: 44px; color: var(--amber-dark); margin-bottom: 20px; }
.service-icon svg { width: 100%; height: 100%; }
.service-card h3 { font-size: 22px; font-weight: 500; margin: 0 0 12px; letter-spacing: -0.01em; }
.service-card p { font-size: 15px; line-height: 1.65; color: var(--text-muted); margin: 0; }
.service-tag { display: inline-block; font-size: 11px; font-weight: 500; background: rgba(239,159,39,0.15); color: var(--amber-dark); padding: 3px 8px; border-radius: 4px; margin-left: 6px; vertical-align: middle; letter-spacing: 0.04em; text-transform: uppercase; }

/* Sectors */
.sectors { background: var(--bone); border-top: 1px solid rgba(31,36,41,0.06); border-bottom: 1px solid rgba(31,36,41,0.06); }
.sector-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.sector-card { padding: 28px 24px; border-left: 2px solid var(--amber); background: transparent; }
.sector-card h3 { font-size: 18px; font-weight: 500; margin: 0 0 10px; }
.sector-card p { font-size: 14px; line-height: 1.6; color: var(--text-muted); margin: 0; }

/* Why */
.why { background: var(--bone-soft); }
.why-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 64px; align-items: start; }
.why-text p { font-size: 16px; line-height: 1.7; color: var(--text-muted); margin: 0 0 18px; max-width: 580px; }
.why-list { list-style: none; padding: 0; margin: 28px 0 0; }
.why-list li { padding: 14px 0 14px 28px; border-bottom: 1px solid rgba(31,36,41,0.08); position: relative; font-size: 15px; line-height: 1.5; color: var(--text-muted); }
.why-list li:last-child { border-bottom: none; }
.why-list li::before { content: "—"; color: var(--amber); position: absolute; left: 0; font-weight: 500; }
.why-list li strong { color: var(--text); font-weight: 500; }
.why-aside-inner { background: var(--charcoal); color: var(--bone); padding: 32px 28px; border-radius: 10px; }
.why-aside-kicker { color: var(--amber); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 18px; font-weight: 500; }
.why-aside-line { margin: 0; padding: 8px 0; border-bottom: 1px solid var(--charcoal-line); font-size: 15px; color: rgba(245,242,236,0.85); }
.why-aside-line:last-of-type { border-bottom: none; }
.why-aside-foot { margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--charcoal-line); font-size: 13px; color: rgba(245,242,236,0.55); font-style: italic; }

/* Contact */
.contact { background: var(--charcoal); color: var(--bone); }
.contact-form { max-width: 760px; }
.honeypot { position: absolute; left: -9999px; }
.lane-picker { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; border: none; padding: 0; margin: 0 0 28px; }
.lane { display: block; padding: 20px 22px; background: var(--charcoal-soft); border: 1px solid rgba(245,242,236,0.1); border-radius: 8px; cursor: pointer; transition: all 0.15s; }
.lane:hover { border-color: rgba(245,242,236,0.25); }
.lane input { position: absolute; opacity: 0; }
.lane:has(input:checked) { border-color: var(--amber); background: rgba(239,159,39,0.08); }
.lane-title { display: block; font-weight: 500; font-size: 15px; color: var(--bone); margin-bottom: 4px; }
.lane-sub { display: block; font-size: 13px; color: rgba(245,242,236,0.6); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-row-single { display: block; margin-bottom: 16px; }
.contact-form label { display: block; }
.contact-form label span { display: block; font-size: 13px; color: rgba(245,242,236,0.7); margin-bottom: 6px; font-weight: 500; }
.contact-form label span em { color: rgba(245,242,236,0.4); font-style: normal; font-weight: 400; }
.contact-form input, .contact-form textarea { width: 100%; padding: 12px 14px; background: var(--charcoal-soft); border: 1px solid rgba(245,242,236,0.12); border-radius: 6px; color: var(--bone); font-family: inherit; font-size: 15px; transition: border-color 0.15s; }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--amber); }
.contact-form textarea { resize: vertical; min-height: 120px; }
.form-foot { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-top: 12px; flex-wrap: wrap; }
.form-foot-note { font-size: 13px; color: rgba(245,242,236,0.55); margin: 0; }
.form-foot-note a { color: var(--amber); text-decoration: none; }
.form-foot-note a:hover { text-decoration: underline; }
.form-success, .form-error { max-width: 760px; padding: 16px 20px; border-radius: 6px; margin-bottom: 24px; font-size: 15px; }
.form-success { background: rgba(96,196,89,0.12); border: 1px solid rgba(96,196,89,0.3); color: #B6E0B0; }
.form-error { background: rgba(226,75,74,0.12); border: 1px solid rgba(226,75,74,0.3); color: #F0A0A0; }
.form-error a { color: var(--amber); }

/* Footer */
.site-footer { background: #181C20; color: rgba(245,242,236,0.7); padding: 56px 0 24px; border-top: 1px solid var(--charcoal-line); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
.footer-brand .brand-footer { font-size: 24px; margin-bottom: 12px; }
.footer-tag { font-size: 14px; color: rgba(245,242,236,0.5); margin: 0; font-style: italic; }
.footer-col h4 { font-size: 13px; font-weight: 500; color: var(--bone); margin: 0 0 16px; letter-spacing: 0.04em; text-transform: uppercase; }
.footer-col a { display: block; color: rgba(245,242,236,0.6); text-decoration: none; font-size: 14px; padding: 4px 0; transition: color 0.15s; }
.footer-col a:hover { color: var(--amber); }
.footer-addr { font-size: 14px; color: rgba(245,242,236,0.5); margin: 8px 0 0; }
.footer-base { display: flex; justify-content: space-between; padding-top: 24px; border-top: 1px solid var(--charcoal-line); font-size: 13px; color: rgba(245,242,236,0.4); flex-wrap: wrap; gap: 12px; }
.footer-base p { margin: 0; }

/* Responsive */
@media (max-width: 900px) {
  .site-nav { gap: 18px; }
  .site-nav a:not(.nav-cta) { display: none; }
  .hero { padding: 56px 0 64px; }
  section.services, section.sectors, section.why, section.contact { padding: 64px 0; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .service-grid { grid-template-columns: 1fr; }
  .sector-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .lane-picker { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .container { padding: 0 20px; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .sector-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .btn { text-align: center; }
}

/* Active nav state */
.site-nav a.active { color: var(--amber); }
.site-nav a.active::after { content: ""; display: block; height: 2px; background: var(--amber); margin-top: 4px; }

/* Service cards as clickable links */
a.service-card { display: block; text-decoration: none; color: inherit; }
a.service-card .service-link {
  display: inline-block;
  margin-top: 14px;
  color: var(--amber-dark);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
}
a.service-card:hover .service-link { color: var(--amber); }

/* Page hero (smaller than homepage hero) */
.page-hero { background: var(--charcoal); color: var(--bone); padding: 64px 0 56px; }
.page-hero .hero-kicker { color: rgba(245,242,236,0.5); margin-bottom: 18px; }
.page-hero-title { font-size: clamp(30px, 4.5vw, 48px); font-weight: 500; letter-spacing: -0.025em; line-height: 1.15; margin: 0 0 20px; color: var(--bone); }
.page-hero-lede { font-size: 17px; line-height: 1.6; color: rgba(245,242,236,0.7); max-width: 600px; margin: 0 0 28px; }

/* Page sections */
.page-section { padding: 80px 0; }
.page-section-tinted { background: var(--bone); border-top: 1px solid rgba(31,36,41,0.06); border-bottom: 1px solid rgba(31,36,41,0.06); }
.page-section-dark { background: var(--charcoal); color: var(--bone); }
.section-kicker-light { color: var(--amber); }
.section-title-light { color: var(--bone); }
.content-narrow { max-width: 760px; }
.content-narrow p { font-size: 16px; line-height: 1.75; color: var(--text-muted); margin: 0 0 18px; }
.content-narrow p strong { color: var(--text); font-weight: 500; }
.content-narrow .section-title { margin-bottom: 28px; }

/* Checklist grid */
.checklist-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px 40px; margin-top: 8px; }
.checklist-item h3 { font-size: 17px; font-weight: 500; margin: 0 0 8px; color: var(--text); letter-spacing: -0.01em; position: relative; padding-left: 24px; }
.checklist-item h3::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--amber-dark); font-weight: 500; }
.checklist-item p { font-size: 15px; line-height: 1.65; color: var(--text-muted); margin: 0; }

/* Audience grid */
.audience-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 8px; }
.audience-card { padding: 24px 28px; background: var(--charcoal-soft); border-radius: 8px; border: 1px solid var(--charcoal-line); }
.audience-card h3 { font-size: 17px; font-weight: 500; margin: 0 0 8px; color: var(--bone); letter-spacing: -0.01em; }
.audience-card p { font-size: 14px; line-height: 1.6; color: rgba(245,242,236,0.65); margin: 0; }

/* FAQ */
.faq { margin-top: 8px; }
.faq-item { border-bottom: 1px solid rgba(31,36,41,0.1); padding: 4px 0; }
.faq-item:first-child { border-top: 1px solid rgba(31,36,41,0.1); }
.faq-item summary { padding: 20px 0; font-size: 16px; font-weight: 500; color: var(--text); cursor: pointer; list-style: none; position: relative; padding-right: 32px; transition: color 0.15s; }
.faq-item summary:hover { color: var(--amber-dark); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%); font-size: 24px; font-weight: 400; color: var(--amber-dark); transition: transform 0.2s; }
.faq-item[open] summary::after { content: "−"; }
.faq-item p { font-size: 15px; line-height: 1.7; color: var(--text-muted); margin: 0 0 20px; max-width: 660px; }

/* Related cards */
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 8px; }
.related-card { display: block; padding: 24px 28px; background: var(--bone); border: 1px solid rgba(31,36,41,0.08); border-radius: 8px; text-decoration: none; color: inherit; transition: all 0.2s; }
.related-card:hover { transform: translateY(-2px); border-color: rgba(31,36,41,0.16); }
.related-card h3 { font-size: 17px; font-weight: 500; margin: 0 0 8px; color: var(--text); letter-spacing: -0.01em; }
.related-card p { font-size: 14px; line-height: 1.6; color: var(--text-muted); margin: 0; }

/* Location page specifics */
.location-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 32px 0 0; }
.location-stat { padding: 20px 24px; background: var(--bone); border-left: 3px solid var(--amber); border-radius: 4px; }
.location-stat-num { font-size: 22px; font-weight: 500; color: var(--text); margin: 0 0 4px; letter-spacing: -0.02em; }
.location-stat-label { font-size: 13px; color: var(--text-muted); margin: 0; line-height: 1.4; }

/* Responsive — page sections */
@media (max-width: 900px) {
  .page-section { padding: 56px 0; }
  .checklist-grid { grid-template-columns: 1fr; gap: 24px; }
  .audience-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .location-stats { grid-template-columns: 1fr; }
}

/* Insights — article list */
.article-list { display: grid; gap: 24px; max-width: 860px; }
.article-card { display: block; padding: 32px 36px; background: #fff; border: 1px solid rgba(31,36,41,0.08); border-radius: 10px; text-decoration: none; color: inherit; transition: all 0.2s; }
.article-card:hover { transform: translateY(-2px); border-color: rgba(31,36,41,0.16); box-shadow: 0 4px 20px rgba(31,36,41,0.04); }
.article-card-meta { display: flex; gap: 14px; align-items: center; margin-bottom: 14px; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 500; }
.article-card-tag { color: var(--amber-dark); }
.article-card-date { color: var(--text-muted); }
.article-card-title { font-size: 22px; font-weight: 500; line-height: 1.25; letter-spacing: -0.015em; margin: 0 0 12px; color: var(--text); }
.article-card-lede { font-size: 15px; line-height: 1.65; color: var(--text-muted); margin: 0 0 16px; }
.article-card-link { display: inline-block; color: var(--amber-dark); font-size: 14px; font-weight: 500; }
.article-card:hover .article-card-link { color: var(--amber); }

/* Article page body */
.article-body { max-width: 720px; }
.article-body .article-meta { display: flex; gap: 14px; align-items: center; margin-bottom: 20px; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 500; color: var(--text-muted); }
.article-body .article-meta .article-tag { color: var(--amber-dark); }
.article-body .article-byline { font-size: 14px; color: var(--text-muted); margin: 0 0 40px; padding-bottom: 24px; border-bottom: 1px solid rgba(31,36,41,0.08); }
.article-body .article-byline strong { color: var(--text); font-weight: 500; }
.article-body h2 { font-size: 26px; font-weight: 500; letter-spacing: -0.015em; line-height: 1.2; margin: 48px 0 16px; color: var(--text); }
.article-body h3 { font-size: 19px; font-weight: 500; letter-spacing: -0.01em; margin: 36px 0 12px; color: var(--text); }
.article-body p { font-size: 16px; line-height: 1.75; color: var(--text-muted); margin: 0 0 18px; }
.article-body p strong { color: var(--text); font-weight: 500; }
.article-body ul, .article-body ol { padding-left: 20px; margin: 0 0 24px; }
.article-body li { font-size: 16px; line-height: 1.75; color: var(--text-muted); margin-bottom: 8px; }
.article-body li strong { color: var(--text); font-weight: 500; }
.article-body .article-callout { background: var(--bone); border-left: 3px solid var(--amber); padding: 20px 26px; border-radius: 4px; margin: 28px 0; }
.article-body .article-callout p { margin: 0; color: var(--text); font-size: 15px; }
.article-body .article-callout p strong { color: var(--text); }
.article-body .article-sources { margin-top: 56px; padding-top: 28px; border-top: 1px solid rgba(31,36,41,0.08); font-size: 14px; }
.article-body .article-sources h3 { font-size: 14px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin: 0 0 12px; }
.article-body .article-sources p { font-size: 13px; line-height: 1.6; margin: 0 0 8px; }
.article-body .article-sources a { color: var(--amber-dark); text-decoration: none; }
.article-body .article-sources a:hover { text-decoration: underline; }