/* ============================================================
   Panchamia CPA PC — Main Stylesheet
   Design: Navy (#1a2e4a) + Gold (#c9a84c) + White
   ============================================================ */

/* ── Custom Properties ────────────────────────────────────── */
:root {
  --navy:      #1a2e4a;
  --navy-dark: #111e30;
  --navy-mid:  #243e62;
  --gold:      #c9a84c;
  --gold-dark: #a8863a;
  --gold-light:#f0d98a;
  --text:      #2d2d2d;
  --text-muted:#6b7280;
  --bg:        #f8f9fa;
  --white:     #ffffff;
  --border:    #e5e7eb;
  --shadow:    0 2px 16px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 24px rgba(0,0,0,0.12);
  --radius:    8px;
  --radius-lg: 16px;
  --transition:0.25s ease;
}

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: var(--navy); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-dark); }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; }

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}
h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.1rem; }
p  { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ── Layout Utilities ─────────────────────────────────────── */
.container {
  width: min(1140px, 92%);
  margin-inline: auto;
}
.section {
  padding: 80px 0;
}
.section--bg {
  background: var(--bg);
}
.section--navy {
  background: var(--navy);
  color: var(--white);
}
.section--gold {
  background: var(--gold);
}
.section__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section--navy .section__label { color: var(--gold-light); }
.section__title {
  margin-bottom: 0.75rem;
}
.section__sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin-bottom: 2.5rem;
}
.section--navy .section__sub { color: rgba(255,255,255,0.75); }
.section--navy h2 { color: var(--white); }
.section--navy p  { color: rgba(255,255,255,0.85); }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  transition: background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn--primary {
  background: var(--gold);
  color: var(--navy);
}
.btn--primary:hover {
  background: var(--gold-dark);
  color: var(--navy);
  box-shadow: 0 6px 20px rgba(201,168,76,0.4);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.55);
}
.btn--outline:hover {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border-color: var(--white);
}
.btn--outline-navy {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn--outline-navy:hover {
  background: var(--navy);
  color: var(--white);
}
.btn--sm {
  padding: 0.5rem 1.1rem;
  font-size: 0.875rem;
}

/* ── Header / Nav ─────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--navy);
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: auto;
  padding: 12px 0;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  text-decoration: none;
  flex-shrink: 0;
}
/* Image logo */
.logo__img {
  width: 284px;
  height: 106px;
  display: block;
}
/* Footer logo image is slightly smaller */
.site-footer .logo__img { width: 227px; height: 85px; }
/* Text logo fallback (shown when no image) */
.logo__name {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}
.logo__badge {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  align-self: center;
  background: rgba(201,168,76,0.15);
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 4px;
}

/* Nav links */
.nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav__link {
  color: rgba(255,255,255,0.85);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}
.nav__link:hover,
.nav__link.active {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}
.nav__cta {
  margin-left: 0.5rem;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0.5rem 1.2rem;
  border-radius: 6px;
  transition: background var(--transition);
}
.nav__cta:hover {
  background: var(--gold-dark);
  color: var(--navy);
}

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  background: var(--navy);
  padding: 100px 0 90px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(201,168,76,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 10% 80%, rgba(201,168,76,0.05) 0%, transparent 50%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  right: -80px;
  top: -80px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(201,168,76,0.04);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.hero__eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
}
.hero h1 span { color: var(--gold); }
.hero__sub {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  margin-bottom: 2.25rem;
  max-width: 560px;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}
.hero__phone {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.hero__phone a {
  color: var(--gold-light);
  font-weight: 600;
}
.hero__phone a:hover { color: var(--gold); }

/* ── Service Cards ────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card__icon {
  width: 52px;
  height: 52px;
  background: rgba(26,46,74,0.07);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.4rem;
}
.service-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}
.service-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.service-card a.card-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.service-card a.card-link:hover { color: var(--gold-dark); }

/* ── About Teaser / Split Layout ──────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.split--reverse .split__content { order: 2; }
.split--reverse .split__visual  { order: 1; }
.split__visual {
  background: var(--bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.split__visual-inner {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2rem;
}
.visual-stat {
  text-align: center;
  color: var(--white);
}
.visual-stat__num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.visual-stat__label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.25rem;
}
.visual-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}

/* Blockquote */
.quote-block {
  border-left: 4px solid var(--gold);
  padding: 1.25rem 1.5rem;
  background: rgba(201,168,76,0.06);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 1.5rem 0;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--navy);
  line-height: 1.7;
}

/* ── Why Choose Us ────────────────────────────────────────── */
.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}
.pillar {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.pillar__icon {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}
.pillar h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}
.pillar p {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
}

/* ── CTA Banner ───────────────────────────────────────────── */
.cta-banner {
  background: var(--gold);
  padding: 56px 0;
  text-align: center;
}
.cta-banner h2 { color: var(--navy); margin-bottom: 0.5rem; }
.cta-banner p  { color: var(--navy-dark); opacity: 0.8; margin-bottom: 1.5rem; }
.cta-banner .btn--primary {
  background: var(--navy);
  color: var(--white);
}
.cta-banner .btn--primary:hover {
  background: var(--navy-dark);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(26,46,74,0.35);
}

/* ── Contact Info Blocks ──────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  text-align: center;
}
.contact-card__icon {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}
.contact-card h4 {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}
.contact-card__value {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
}
.contact-card__value a { color: var(--navy); }
.contact-card__value a:hover { color: var(--gold-dark); }

/* ── Contact Form ─────────────────────────────────────────── */
.contact-form-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(26,46,74,0.08);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
}

/* ── Services Page ────────────────────────────────────────── */
.services-group {
  margin-bottom: 3.5rem;
}
.services-group__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--border);
}
.services-group__icon {
  width: 44px;
  height: 44px;
  background: rgba(26,46,74,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.services-group h2 {
  font-size: 1.4rem;
  margin-bottom: 0;
}
.services-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 0.6rem;
}
.services-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--text);
  padding: 0.5rem 0;
}
.services-list li::before {
  content: '✓';
  color: var(--gold-dark);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── Page Hero (inner pages) ──────────────────────────────── */
.page-hero {
  background: var(--navy);
  padding: 60px 0 50px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(201,168,76,0.07) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.page-hero h1 {
  color: var(--white);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: 0.75rem;
}
.page-hero p {
  color: rgba(255,255,255,0.72);
  font-size: 1.05rem;
  max-width: 580px;
  margin: 0;
}

/* ── Resources ────────────────────────────────────────────── */
.resource-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  margin-bottom: 1.25rem;
  transition: box-shadow var(--transition);
}
.resource-card:hover { box-shadow: var(--shadow); }
.resource-card__meta {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.4rem;
}
.resource-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}
.resource-card h3 a { color: var(--navy); }
.resource-card h3 a:hover { color: var(--gold-dark); }
.resource-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}
.resources-cols {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: start;
}
.sidebar-box {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  position: sticky;
  top: 90px;
}
.sidebar-box h3 {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.sidebar-links li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.sidebar-links li:last-child { border-bottom: none; }
.sidebar-links a {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color var(--transition);
}
.sidebar-links a:hover { color: var(--gold-light); }
.sidebar-links .link-arrow { color: var(--gold); }

/* ── Tools Page ───────────────────────────────────────────── */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.tool-category {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.tool-category:hover { box-shadow: var(--shadow); }
.tool-category__header {
  background: var(--navy);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.tool-category__header h3 {
  color: var(--white);
  font-size: 0.95rem;
  margin: 0;
}
.tool-category__header .tc-icon { font-size: 1.1rem; }
.tool-category__list {
  padding: 0.75rem 1.25rem;
}
.tool-category__list li a {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}
.tool-category__list li:last-child a { border-bottom: none; }
.tool-category__list li a:hover { color: var(--navy); }
.tool-category__list li a::before {
  content: '↗';
  font-size: 0.7rem;
  color: var(--gold-dark);
  flex-shrink: 0;
}

/* ── Footer ───────────────────────────────────────────────── */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.7);
  padding: 56px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer-brand .logo { margin-bottom: 1rem; }
.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0;
}
.footer-col h4 {
  color: var(--white);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-links li {
  padding: 0.3rem 0;
}
.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold-light); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 0.75rem;
}
.footer-contact-item a { color: rgba(255,255,255,0.65); }
.footer-contact-item a:hover { color: var(--gold-light); }
.footer-contact-icon { flex-shrink: 0; font-size: 1rem; line-height: 1.65; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  margin: 0;
}
.footer-bottom a {
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
}
.footer-bottom a:hover { color: var(--gold-light); }

/* ── Breadcrumb ───────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
}
.breadcrumb a { color: rgba(255,255,255,0.55); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb-sep { opacity: 0.4; }

/* ── Alert / Notice bar ───────────────────────────────────── */
.notice-bar {
  background: var(--gold);
  padding: 10px 0;
  text-align: center;
}
.notice-bar p {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
}
.notice-bar a { color: var(--navy); text-decoration: underline; }

/* ── About Page Values ────────────────────────────────────── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
}
.value-card__icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.value-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.value-card p  { font-size: 0.9rem; color: var(--text-muted); margin: 0; }

/* ── Success message ──────────────────────────────────────── */
.form-success {
  display: none;
  background: #ecfdf5;
  border: 1px solid #6ee7b7;
  color: #065f46;
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin-top: 1rem;
  font-size: 0.9rem;
  font-weight: 500;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav { display: none; flex-direction: column; gap: 0; }
  .nav.open {
    display: flex;
    position: absolute;
    top: 70px; left: 0; right: 0;
    background: var(--navy-dark);
    padding: 0.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    z-index: 999;
  }
  .nav__link, .nav__cta {
    padding: 0.75rem 1rem;
    border-radius: 6px;
    font-size: 0.95rem;
    width: 100%;
  }
  .nav__cta { margin: 0.5rem 0; text-align: center; }
  .nav-toggle { display: flex; }
  .site-header { position: relative; }
  .split { grid-template-columns: 1fr; gap: 2.5rem; }
  .split--reverse .split__content { order: 1; }
  .split--reverse .split__visual  { order: 2; }
  .split__visual { aspect-ratio: 16/7; }
  .contact-form-wrap { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .resources-cols { grid-template-columns: 1fr; }
  .sidebar-box { position: static; }
  .section { padding: 56px 0; }
}

@media (max-width: 560px) {
  .hero { padding: 64px 0 56px; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .services-list { grid-template-columns: 1fr; }
  .tools-grid { grid-template-columns: 1fr; }
}

/* ── Lucide Icons ─────────────────────────────────────────── */
[data-lucide] {
  display: block;
  stroke-width: 1.5;
}
.service-card__icon [data-lucide]  { width: 28px; height: 28px; stroke: var(--navy); }
.pillar__icon [data-lucide]        { width: 32px; height: 32px; stroke: var(--gold); }
.contact-card__icon [data-lucide]  { width: 28px; height: 28px; stroke: var(--navy); }
.value-card__icon [data-lucide]    { width: 36px; height: 36px; stroke: var(--navy); }
.footer-contact-icon [data-lucide] { width: 15px; height: 15px; stroke: rgba(255,255,255,0.6); flex-shrink: 0; margin-top: 3px; }
.services-group__icon [data-lucide]    { width: 22px; height: 22px; stroke: var(--navy); }
.tool-category__header [data-lucide]   { width: 20px; height: 20px; stroke: var(--gold); }
.sidebar-links [data-lucide]           { width: 14px; height: 14px; stroke: var(--gold); flex-shrink: 0; }
.contact-sidebar [data-lucide]         { width: 16px; height: 16px; stroke: rgba(255,255,255,0.7); }

/* ── Skip link (accessibility) ────────────────────────────── */
.skip-link {
  position: absolute;
  top: -50px;
  left: 1rem;
  background: var(--gold);
  color: var(--navy);
  padding: 0.5rem 1rem;
  border-radius: 0 0 6px 6px;
  font-weight: 700;
  font-size: 0.875rem;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }
