/* ============================================================
   STONEKING LABS — Main Stylesheet
   Colors: #0A192F (navy) | #D4AF37 (gold) | #FFFFFF (white)
   ============================================================ */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg:         #0A192F;
  --bg-alt:     #0D2137;
  --bg-card:    #112240;
  --gold:       #D4AF37;
  --gold-hover: #e8c84a;
  --white:      #FFFFFF;
  --text:       #CCD6F6;
  --muted:      #8892B0;
  --border:     rgba(212, 175, 55, 0.2);
  --max-w:      1180px;
  --radius:     8px;
  --tr:         0.22s ease;
}

html { scroll-behavior: smooth; }

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

img { display: block; max-width: 100%; }
a  { color: inherit; }

/* ─── UTILITIES ─────────────────────────────────────────── */

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}

.section       { padding: 96px 0; }
.section-alt   { background-color: var(--bg-alt); }

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 580px;
}

/* ─── BUTTONS ────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--radius);
  text-decoration: none;
  cursor: pointer;
  transition: var(--tr);
  white-space: nowrap;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-hover);
  border-color: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212,175,55,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.22);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* ─── NAVBAR ─────────────────────────────────────────────── */

.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(10, 25, 47, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.navbar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-logo img {
  height: 46px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  transition: color var(--tr);
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }

.nav-actions { display: flex; align-items: center; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--tr);
}

/* Mobile nav open */
.navbar.is-open .nav-links,
.navbar.is-open .nav-actions {
  display: flex;
}

/* ─── HERO ───────────────────────────────────────────────── */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 55%, rgba(212,175,55,0.06) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 15%, rgba(17,34,64,0.5) 0%, transparent 50%);
  pointer-events: none;
}

.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--gold);
}

.hero-title {
  font-size: clamp(38px, 5.5vw, 62px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
}
.hero-title .gold { color: var(--gold); }

.hero-body {
  font-size: 17px;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 38px;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Hero image */
.hero-media {
  position: relative;
}
.hero-media::before {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--gold) 0%, transparent 55%);
  opacity: 0.25;
  z-index: 0;
}
.hero-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 28px 72px rgba(0,0,0,0.45);
}

/* ─── STATS BAR ──────────────────────────────────────────── */

.stats-bar {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 52px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: center;
}

.stat-divider {
  border-right: 1px solid var(--border);
}
.stat-divider:last-child { border-right: none; }

.stat-number {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
  max-width: 160px;
  margin: 0 auto;
}

/* ─── SERVICES SECTION ───────────────────────────────────── */

.services-header {
  margin-bottom: 52px;
}
.services-header .section-subtitle {
  max-width: 520px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 36px 30px;
  transition: border-color var(--tr), transform var(--tr), box-shadow var(--tr);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.service-card:hover::after { transform: scaleX(1); }
.service-card:hover {
  border-color: rgba(212,175,55,0.45);
  transform: translateY(-5px);
  box-shadow: 0 20px 52px rgba(0,0,0,0.32);
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.service-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-title {
  font-size: 19px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.3;
}

.service-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 22px;
}

.service-tag {
  display: block;
  font-size: 12px;
  color: var(--gold);
  font-style: italic;
  font-weight: 500;
  padding-left: 12px;
  border-left: 2px solid var(--gold);
  line-height: 1.5;
}

.services-footer {
  margin-top: 52px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.services-footer p {
  font-size: 16px;
  color: var(--muted);
}
.services-footer .btn-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ─── WHY US ─────────────────────────────────────────────── */

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 56px;
}

.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 34px 32px;
  transition: border-color var(--tr);
}
.why-card:hover { border-color: rgba(212,175,55,0.45); }

.why-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold);
  opacity: 0.6;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.why-title {
  font-size: 19px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.3;
}

.why-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
}

/* ─── CTA BAND ───────────────────────────────────────────── */

.cta-band {
  background: linear-gradient(135deg, var(--bg-card) 0%, #0e1f3d 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 88px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 640px; height: 640px;
  background: radial-gradient(circle, rgba(212,175,55,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.cta-band .section-title { margin-bottom: 12px; }
.cta-band .section-subtitle {
  margin: 0 auto 32px;
  max-width: 500px;
}

/* ─── FOOTER ─────────────────────────────────────────────── */

.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 72px 0 32px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1.2fr;
  gap: 52px;
  padding-bottom: 52px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 28px;
}

.footer-logo {
  height: 50px;
  width: auto;
  object-fit: contain;
  margin-bottom: 18px;
}

.footer-tagline {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 280px;
}

.footer-heading {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: 14px;
  transition: color var(--tr);
}
.footer-nav a:hover { color: var(--white); }

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--muted);
}
.footer-contact-icon {
  font-size: 15px;
  line-height: 1.4;
  flex-shrink: 0;
}
.footer-contact-item a {
  text-decoration: none;
  color: var(--muted);
  transition: color var(--tr);
}
.footer-contact-item a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}
.footer-copy { font-size: 13px; color: var(--muted); }
.footer-social { display: flex; gap: 20px; }
.footer-social a {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  transition: color var(--tr);
}
.footer-social a:hover { color: var(--gold); }

/* ─── FOUNDER HERO (about page) ────────────────────────── */

.founder-hero {
  padding: 140px 0 80px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}

.founder-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 72px;
  align-items: center;
}

.founder-heading {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.founder-intro {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 540px;
  margin-bottom: 36px;
}

.founder-pillars {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.founder-pillar {}

.pillar-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.pillar-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: var(--gold);
  color: var(--bg);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
  line-height: 1;
}

.pillar-header strong {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
}

.pillar-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-left: 30px;
}

.pillar-list li {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  position: relative;
}
.pillar-list li::before {
  content: '–';
  position: absolute;
  left: -14px;
  color: var(--muted);
  opacity: 0.5;
}

/* Headshot */
.founder-photo-wrap {
  width: 300px;
  flex-shrink: 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.4);
  border: 1px solid var(--border);
}

.founder-photo {
  width: 100%;
  display: block;
  object-fit: cover;
}

@media (max-width: 900px) {
  .founder-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .founder-photo-wrap {
    width: 220px;
    margin: 0 auto;
  }
}

/* ─── PAGE BANNER (interior pages) ─────────────────────── */

.page-banner {
  padding: 140px 0 64px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}
.page-banner .section-subtitle { max-width: 640px; }

/* ─── ABOUT PAGE ─────────────────────────────────────────── */

.about-bio {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 72px;
  align-items: start;
}

.about-body p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 20px;
}
.about-body p:last-child { margin-bottom: 0; }

.about-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 96px;
}

.about-sidebar-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 26px;
}
.about-sidebar-card h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.about-sidebar-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.about-sidebar-card li {
  font-size: 13px;
  color: var(--muted);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}
.about-sidebar-card li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 10px;
  top: 2px;
}

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.cred-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
}
.cred-block h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.cred-block ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.cred-block li {
  font-size: 13px;
  color: var(--muted);
  padding-left: 16px;
  position: relative;
  line-height: 1.55;
}
.cred-block li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  opacity: 0.55;
  font-size: 10px;
  top: 4px;
}

/* ─── SERVICES PAGE ──────────────────────────────────────── */

.service-detail {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}
.service-detail:last-of-type { border-bottom: none; }

.service-detail-inner {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 72px;
  align-items: start;
}

.service-detail-meta { position: sticky; top: 96px; }

.service-detail-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.service-detail-title {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.service-detail-subtitle {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.service-fit {
  background: rgba(212,175,55,0.07);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 18px;
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
  line-height: 1.6;
}
.service-fit strong { color: var(--gold); font-style: normal; }

.service-detail-body p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 18px;
}

.service-detail-body h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  margin-top: 28px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.service-detail-body ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.service-detail-body li {
  font-size: 15px;
  color: var(--muted);
  padding-left: 20px;
  position: relative;
  line-height: 1.65;
}
.service-detail-body li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 11px;
  top: 3px;
}

.service-detail-body .result-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 18px;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 8px;
  padding-left: 18px;
}
.service-detail-body .result-item::before { display: none; }
.service-detail-body .result-item strong {
  color: var(--gold);
  display: block;
  font-size: 12px;
  margin-bottom: 3px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ─── CONTACT PAGE ───────────────────────────────────────── */

.contact-layout {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 72px;
  align-items: start;
  padding-top: 56px;
}

.contact-info-panel h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.contact-info-panel p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 36px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 40px;
}

.contact-detail-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.contact-detail-icon {
  width: 38px;
  height: 38px;
  background: rgba(212,175,55,0.08);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
}
.contact-detail-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-detail-text .label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 2px;
}
.contact-detail-text a,
.contact-detail-text span {
  font-size: 14px;
  color: var(--text);
  text-decoration: none;
  transition: color var(--tr);
}
.contact-detail-text a:hover { color: var(--gold); }

.contact-form-panel {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 44px;
}
.contact-form-panel h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.contact-form-panel .form-sub {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}
.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 12px 15px;
  font-size: 14px;
  color: var(--white);
  font-family: inherit;
  outline: none;
  transition: border-color var(--tr);
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted); }
.form-group select option { background: var(--bg-card); }
.form-group textarea { resize: vertical; min-height: 120px; }

.form-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}

/* ─── RESPONSIVE ─────────────────────────────────────────── */

@media (max-width: 960px) {
  .hero-inner              { grid-template-columns: 1fr; text-align: center; gap: 0; }
  .hero-media              { display: none; }
  .hero-eyebrow            { justify-content: center; }
  .hero-body               { margin: 0 auto 38px; }
  .hero-actions            { justify-content: center; }
  .stats-grid              { grid-template-columns: repeat(2, 1fr); }
  .services-grid           { grid-template-columns: 1fr; }
  .why-grid                { grid-template-columns: 1fr; }
  .footer-inner            { grid-template-columns: 1fr 1fr; }
  .footer-inner > :first-child { grid-column: 1 / -1; }
  .about-bio               { grid-template-columns: 1fr; }
  .about-sidebar           { position: static; }
  .service-detail-inner    { grid-template-columns: 1fr; gap: 40px; }
  .service-detail-meta     { position: static; }
  .contact-layout          { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .section          { padding: 64px 0; }
  .nav-links,
  .nav-actions      { display: none; }
  .nav-toggle       { display: flex; }

  /* Mobile open state */
  .navbar.is-open {
    flex-direction: column;
    height: auto;
    padding-bottom: 20px;
  }
  .navbar.is-open .navbar-inner {
    flex-wrap: wrap;
    height: auto;
  }
  .navbar.is-open .nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 20px;
    padding: 12px 0 4px;
  }
  .navbar.is-open .nav-actions {
    display: flex;
    width: 100%;
    justify-content: center;
  }

  .stats-grid         { grid-template-columns: 1fr 1fr; }
  .form-row           { grid-template-columns: 1fr; }
  .credentials-grid   { grid-template-columns: 1fr; }
  .contact-form-panel { padding: 28px 20px; }
  .footer-inner       { grid-template-columns: 1fr; }
  .page-banner        { padding: 120px 0 52px; }
  .stat-divider       { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-divider:last-child { border-bottom: none; }
}
