@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ── Variables ── */
:root {
  --navy:        #0a1f44;
  --navy-dark:   #071530;
  --navy-deep:   #050f1e;
  --navy-light:  #1a3460;
  --gold:        #c9a84c;
  --gold-dark:   #b8932f;
  --gold-light:  #dfc17a;
  --white:       #ffffff;
  --off-white:   #f8f9fb;
  --border:      #e0e4ec;
  --text-dark:   #1a1a2e;
  --text-mid:    #444c60;
  --text-light:  #6b7280;
  --shadow:      0 4px 24px rgba(0,0,0,.09);
  --shadow-lg:   0 16px 56px rgba(0,0,0,.18);
  --radius:      6px;
  --t:           .3s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; font-size: 16px; line-height: 1.6; color: var(--text-dark); background: var(--white); }
a { text-decoration: none; color: inherit; transition: color var(--t); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; }

/* ── Layout ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.section    { padding: 100px 0; }

/* ── Parallax & Overlay ── */
.parallax-bg {
  position: absolute;
  top: -30%; left: 0; right: 0; bottom: -30%;
  background-size: cover;
  background-position: center center;
  will-change: transform;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* ── Fade-up animation ── */
.fade-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .75s ease, transform .75s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* Card stagger delays */
.services-grid-3   .service-card:nth-child(2),
.services-full-grid .service-full-card:nth-child(2),
.values-grid       .value-card:nth-child(2),
.team-grid         .team-card:nth-child(2)    { transition-delay: .1s; }
.services-grid-3   .service-card:nth-child(3),
.services-full-grid .service-full-card:nth-child(3),
.values-grid       .value-card:nth-child(3),
.team-grid         .team-card:nth-child(3)    { transition-delay: .2s; }
.services-full-grid .service-full-card:nth-child(4) { transition-delay: .08s; }
.services-full-grid .service-full-card:nth-child(5) { transition-delay: .16s; }
.services-full-grid .service-full-card:nth-child(6) { transition-delay: .24s; }
.values-grid       .value-card:nth-child(4)   { transition-delay: .3s; }

/* ── Typography ── */
.section-label {
  display: block;
  font-size: 11px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 14px;
}
.section-title {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700; line-height: 1.15;
  color: var(--navy);
  position: relative; padding-bottom: 22px; margin-bottom: 22px;
}
.section-title::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 44px; height: 3px;
  background: var(--gold); border-radius: 2px;
}
/* Center accent line for centered contexts */
.section-header .section-title::after,
.services-page-cta .section-title::after {
  left: 50%; transform: translateX(-50%);
}
.section-subtitle { font-size: 17px; color: var(--text-mid); max-width: 600px; line-height: 1.78; }
.section-header   { text-align: center; margin-bottom: 64px; }
.section-header .section-subtitle { margin: 0 auto; }

/* ── Buttons ── */
.btn {
  display: inline-block; padding: 15px 36px;
  font-size: 13px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase;
  border-radius: var(--radius); cursor: pointer; border: 2px solid transparent;
  transition: all var(--t); font-family: inherit;
}
.btn-gold  { background: var(--gold);  color: var(--navy); border-color: var(--gold); }
.btn-gold:hover  { background: var(--gold-dark); border-color: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(201,168,76,.4); }
.btn-navy  { background: var(--navy);  color: var(--white); border-color: var(--navy); }
.btn-navy:hover  { background: var(--navy-light); border-color: var(--navy-light); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(10,31,68,.3); }
.btn-outline{ background: transparent; color: var(--white); border-color: rgba(255,255,255,.55); }
.btn-outline:hover { background: var(--white); color: var(--navy); }

/* ── Navigation ── */
.navbar {
  background: var(--navy-deep);
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: box-shadow .4s ease;
}
.navbar.scrolled { box-shadow: 0 4px 40px rgba(0,0,0,.5); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; padding: 0 32px; max-width: 1200px; margin: 0 auto;
}
.nav-logo { color: var(--white); font-size: 19px; font-weight: 700; letter-spacing: -.2px; }
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  color: rgba(255,255,255,.72); font-size: 13px; font-weight: 500;
  padding: 8px 13px; border-radius: 4px; transition: all var(--t); letter-spacing: .2px;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); background: rgba(255,255,255,.08); }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; background: none; border: none;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all var(--t); }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero Main (home) ── */
.hero-main {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 140px 32px 100px;
  position: relative; overflow: hidden;
  background: var(--navy-deep); /* fallback */
}
.hero-main > .container { position: relative; z-index: 2; max-width: 900px; }
.hero-main .hero-overlay {
  background: linear-gradient(
    180deg,
    rgba(5,15,30,.45) 0%,
    rgba(5,15,30,.62) 50%,
    rgba(5,15,30,.78) 100%
  );
}
.hero-main h1 {
  font-size: clamp(38px, 5.5vw, 68px);
  font-weight: 800; color: var(--white); line-height: 1.08;
  letter-spacing: -1.5px; margin-bottom: 26px;
  text-shadow: 0 2px 24px rgba(0,0,0,.35);
}
.hero-main h1 span { color: var(--gold); }
.hero-main .hero-sub {
  font-size: 19px; font-weight: 400;
  color: rgba(255,255,255,.82); margin-bottom: 48px;
  line-height: 1.78; max-width: 660px;
  margin-left: auto; margin-right: auto;
  text-shadow: 0 1px 8px rgba(0,0,0,.2);
}
.hero-main .section-label { color: var(--gold-light); letter-spacing: 4px; }

/* ── Page Heroes ── */
.hero-page {
  padding: 168px 32px 96px;
  text-align: center;
  position: relative; overflow: hidden;
  background: var(--navy-deep);
}
.hero-page > .container { position: relative; z-index: 2; }
.hero-page .hero-overlay {
  background: linear-gradient(
    180deg,
    rgba(5,15,30,.55) 0%,
    rgba(5,15,30,.75) 100%
  );
}
.hero-page .section-label { color: var(--gold-light); letter-spacing: 4px; }
.hero-page h1 {
  font-size: clamp(30px, 4.5vw, 56px);
  font-weight: 800; color: var(--white);
  letter-spacing: -.8px; margin-bottom: 18px;
  text-shadow: 0 2px 20px rgba(0,0,0,.35);
}
.hero-page p {
  font-size: 18px; color: rgba(255,255,255,.76);
  max-width: 560px; margin: 0 auto; line-height: 1.78;
}

/* ── Stats Bar ── */
.stats-bar {
  background: var(--navy-dark);
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.stats-grid--two { grid-template-columns: repeat(2,1fr); max-width: 640px; margin: 0 auto; }
.stat-item {
  padding: 56px 24px; text-align: center;
  border-right: 1px solid rgba(255,255,255,.07);
  transition: background .25s ease;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(255,255,255,.03); }
.stat-number {
  font-size: 58px; font-weight: 800;
  color: var(--white); line-height: 1;
  letter-spacing: -2px; margin-bottom: 10px;
}
.stat-label {
  font-size: 11px; font-weight: 700;
  color: var(--gold); text-transform: uppercase; letter-spacing: 2.5px;
}

/* ── Who We Are ── */
.who-we-are {
  background-color: #0b1823;
  background-image:
    linear-gradient(rgba(201,168,76,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,.035) 1px, transparent 1px);
  background-size: 80px 80px;
}
.who-we-are .content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.who-we-are .section-title { color: var(--white); }
.who-we-are p { font-size: 16px; color: rgba(255,255,255,.68); line-height: 1.88; margin-bottom: 18px; }
.learn-more {
  font-size: 12px; font-weight: 700; color: var(--gold);
  letter-spacing: 1.8px; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 10px;
  border-bottom: 1px solid rgba(201,168,76,.3); padding-bottom: 5px;
  transition: gap var(--t), border-color var(--t); margin-top: 14px;
}
.learn-more:hover { gap: 16px; border-color: var(--gold); }

/* Placeholders */
.graphic-placeholder {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 4px; aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 12px;
  color: rgba(255,255,255,.2); font-size: 13px; text-align: center;
}
.team-photo {
  height: 220px;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 12px;
  color: rgba(255,255,255,.2); font-size: 13px; text-align: center;
}
.approach-image {
  aspect-ratio: 4/3;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 12px;
  color: rgba(255,255,255,.2); font-size: 13px; text-align: center;
}

/* ── Services Preview ── */
.services-preview { background: var(--white); }
.services-grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 44px 36px;
  transition: box-shadow .35s ease, transform .35s ease, border-color .35s ease;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--gold); transform: scaleY(0); transform-origin: bottom;
  transition: transform .35s ease;
}
.service-card:hover { box-shadow: 0 24px 64px rgba(0,0,0,.12); transform: translateY(-7px); border-color: transparent; }
.service-card:hover::before { transform: scaleY(1); }
.service-icon {
  width: 56px; height: 56px; background: rgba(10,31,68,.06);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 26px; transition: background var(--t);
}
.service-card:hover .service-icon,
.service-full-card:hover .service-icon  { background: rgba(201,168,76,.1); }
.service-icon svg { width: 26px; height: 26px; stroke: var(--navy); transition: stroke var(--t); }
.service-card:hover .service-icon svg,
.service-full-card:hover .service-icon svg { stroke: var(--gold-dark); }
.service-card h3      { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.service-card p       { font-size: 15px; color: var(--text-mid); line-height: 1.78; }
.services-cta-row     { text-align: center; margin-top: 60px; }

/* ── Approach Section ── */
.approach-section {
  position: relative; overflow: hidden;
  background: var(--navy-deep);
}
.approach-section > .container { position: relative; z-index: 2; }
.approach-section .hero-overlay {
  background: linear-gradient(
    135deg,
    rgba(5,15,30,.84) 0%,
    rgba(5,15,30,.76) 100%
  );
}
.approach-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.approach-content .section-title { color: var(--white); }
.approach-content p { color: rgba(255,255,255,.72); line-height: 1.86; margin-bottom: 18px; font-size: 16px; }
.approach-list { margin-top: 36px; display: flex; flex-direction: column; gap: 18px; }
.approach-item { display: flex; align-items: flex-start; gap: 16px; color: rgba(255,255,255,.84); font-size: 15px; }
.approach-item-icon {
  width: 26px; height: 26px; background: var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px;
}

/* ── Services Full Page ── */
.services-full { background: var(--off-white); }
.services-full-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.service-full-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 8px; padding: 40px 32px;
  transition: box-shadow .35s ease, transform .35s ease, border-color .35s ease;
  position: relative; overflow: hidden;
}
.service-full-card::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--gold); transform: scaleY(0); transform-origin: bottom;
  transition: transform .35s ease;
}
.service-full-card:hover { box-shadow: 0 20px 56px rgba(0,0,0,.1); transform: translateY(-5px); border-color: transparent; }
.service-full-card:hover::before { transform: scaleY(1); }
.service-full-card h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.service-full-card p  { font-size: 15px; color: var(--text-mid); line-height: 1.78; }
.services-page-cta { background: var(--navy); text-align: center; position: relative; }
.services-page-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,.05) 0%, transparent 60%);
}
.services-page-cta > .container { position: relative; z-index: 1; }
.services-page-cta .section-title { color: var(--white); }
.services-page-cta p { color: rgba(255,255,255,.7); font-size: 17px; margin-bottom: 36px; max-width: 480px; margin-left: auto; margin-right: auto; }

/* ── About Page ── */
.about-narrative { background: var(--white); }
.about-narrative .content-grid { display: grid; grid-template-columns: 3fr 2fr; gap: 80px; align-items: center; }
.about-narrative p { font-size: 16px; color: var(--text-mid); line-height: 1.88; margin-bottom: 18px; }
.team-section { background: var(--off-white); }
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.team-card { background: var(--white); border-radius: 8px; overflow: hidden; box-shadow: var(--shadow); transition: all .35s ease; }
.team-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-7px); }
.team-info { padding: 28px; }
.team-info h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.team-info .title { font-size: 11px; color: var(--gold); font-weight: 700; text-transform: uppercase; letter-spacing: 1.8px; margin-bottom: 12px; display: block; }
.team-info p { font-size: 14px; color: var(--text-mid); line-height: 1.72; }
.values-section {
  background: var(--navy-deep);
  position: relative;
}
.values-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(rgba(201,168,76,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,.03) 1px, transparent 1px);
  background-size: 80px 80px;
}
.values-section > .container { position: relative; z-index: 1; }
.values-section .section-title { color: var(--white); }
.values-section .section-title::after { left: 50%; transform: translateX(-50%); }
.values-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.value-card {
  text-align: center; padding: 36px 20px;
  border: 1px solid rgba(255,255,255,.08); border-radius: 8px; transition: all var(--t);
}
.value-card:hover { background: rgba(255,255,255,.04); border-color: rgba(201,168,76,.4); }
.value-icon { width: 56px; height: 56px; background: rgba(201,168,76,.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; }
.value-icon svg { width: 24px; height: 24px; stroke: var(--gold); }
.value-card h3 { font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.value-card p  { font-size: 14px; color: rgba(255,255,255,.52); line-height: 1.68; }

/* ── Contact Page ── */
.contact-section { background: #f2f4f8; }
.contact-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 56px; }
.contact-form-wrap { background: var(--white); border-radius: 8px; padding: 52px; box-shadow: 0 8px 48px rgba(0,0,0,.09); }
.contact-form-wrap h2 { font-size: 24px; font-weight: 700; color: var(--navy); margin-bottom: 36px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 22px; }
.form-group label { display: block; font-size: 11px; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; letter-spacing: 1px; text-transform: uppercase; }
.form-group input, .form-group textarea {
  width: 100%; padding: 13px 16px; border: 1px solid var(--border); border-radius: var(--radius);
  font-size: 15px; font-family: inherit; color: var(--text-dark); background: var(--white);
  transition: border-color var(--t), box-shadow var(--t); appearance: none;
}
.form-group input:focus, .form-group textarea:focus {
  outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(10,31,68,.08);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.sms-opt-in {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 20px 22px; background: rgba(10,31,68,.03);
  border: 1px solid var(--border); border-radius: 8px; margin-bottom: 28px;
}
.sms-opt-in input[type="checkbox"] { width: 18px; height: 18px; min-width: 18px; cursor: pointer; margin-top: 2px; accent-color: var(--navy); }
.sms-opt-in label { font-size: 13px; color: var(--text-mid); line-height: 1.65; cursor: pointer; }
.sms-opt-in label a { color: var(--navy); font-weight: 600; text-decoration: underline; }
.form-success { display: none; text-align: center; padding: 64px 20px; }
.form-success .success-icon { width: 68px; height: 68px; background: #22c55e; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; }
.form-success h3 { font-size: 24px; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.form-success p { color: var(--text-mid); font-size: 16px; }
.contact-sidebar h2 { font-size: 22px; font-weight: 700; color: var(--navy); margin-bottom: 16px; }
.contact-sidebar p { font-size: 15px; color: var(--text-mid); line-height: 1.78; margin-bottom: 32px; }
.contact-detail { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 22px; }
.contact-detail-icon { width: 42px; height: 42px; background: rgba(10,31,68,.06); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-detail-icon svg { width: 18px; height: 18px; stroke: var(--navy); }
.contact-detail-text strong { display: block; font-size: 11px; font-weight: 700; color: var(--navy); margin-bottom: 2px; text-transform: uppercase; letter-spacing: .8px; }
.contact-detail-text span { font-size: 14px; color: var(--text-mid); }

/* ── Policy Pages ── */
.policy-content { background: var(--white); padding: 80px 0; }
.policy-content .container { max-width: 800px; }
.policy-content h2 { font-size: 22px; font-weight: 700; color: var(--navy); margin: 52px 0 16px; }
.policy-content h2:first-child { margin-top: 0; }
.policy-content h3 { font-size: 17px; font-weight: 600; color: var(--navy); margin: 32px 0 12px; }
.policy-content p  { font-size: 15px; color: var(--text-mid); line-height: 1.88; margin-bottom: 16px; }
.policy-content ul { list-style: disc; padding-left: 24px; margin-bottom: 16px; }
.policy-content ul li { font-size: 15px; color: var(--text-mid); line-height: 1.88; margin-bottom: 8px; }
.policy-content .highlight-box { background: rgba(10,31,68,.04); border-left: 4px solid var(--gold); border-radius: 0 8px 8px 0; padding: 22px 26px; margin: 28px 0; }
.policy-content .highlight-box p { margin: 0; font-weight: 600; color: var(--text-dark); }
.sms-sample { background: var(--off-white); border: 1px solid var(--border); border-radius: 8px; padding: 22px 26px; margin-bottom: 16px; }
.sms-sample strong { display: block; font-size: 11px; font-weight: 700; color: var(--navy); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 1px; }
.sms-sample p { margin: 0; font-size: 14px; font-style: italic; color: var(--text-mid); }

/* ── Footer ── */
.footer { background: var(--navy-deep); color: var(--white); padding: 72px 0 0; border-top: 1px solid rgba(255,255,255,.04); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 56px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,.06); }
.footer-brand h3 { font-size: 20px; font-weight: 700; margin-bottom: 14px; }
.footer-brand h3 span { color: var(--gold); }
.footer-brand > p { font-size: 14px; color: rgba(255,255,255,.42); line-height: 1.82; max-width: 280px; }
.footer-address { margin-top: 20px; font-style: normal; border-top: 1px solid rgba(255,255,255,.06); padding-top: 16px; }
.footer-address p { font-size: 13px; color: rgba(255,255,255,.36); line-height: 1.72; margin-bottom: 4px; max-width: none; }
.footer-col h4 { font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 22px; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,.5); transition: color var(--t); }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom { padding: 24px 0; display: flex; align-items: center; justify-content: space-between; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,.3); }
.footer-bottom-links { display: flex; gap: 28px; }
.footer-bottom-links a { font-size: 13px; color: rgba(255,255,255,.3); transition: color var(--t); }
.footer-bottom-links a:hover { color: rgba(255,255,255,.75); }

/* ── Responsive: 1024px ── */
@media (max-width: 1024px) {
  .stats-grid:not(.stats-grid--two) { grid-template-columns: repeat(2,1fr); }
  .stats-grid:not(.stats-grid--two) .stat-item:nth-child(2) { border-right: none; }
  .stats-grid:not(.stats-grid--two) .stat-item:nth-child(3) { border-right: 1px solid rgba(255,255,255,.07); border-top: 1px solid rgba(255,255,255,.07); }
  .stats-grid:not(.stats-grid--two) .stat-item:nth-child(4) { border-right: none; border-top: 1px solid rgba(255,255,255,.07); }
  .services-grid-3, .services-full-grid { grid-template-columns: repeat(2,1fr); }
  .values-grid { grid-template-columns: repeat(2,1fr); }
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

/* ── Responsive: 768px ── */
@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .container { padding: 0 20px; }
  .section-title { font-size: 26px; }
  .hamburger { display: flex; }
  .nav-links {
    position: absolute; top: 72px; left: 0; right: 0;
    background: var(--navy-deep); flex-direction: column; align-items: stretch;
    padding: 16px; gap: 4px; border-top: 1px solid rgba(255,255,255,.07);
    transform: translateY(-110%); opacity: 0;
    transition: transform var(--t), opacity var(--t);
    pointer-events: none; box-shadow: 0 16px 40px rgba(0,0,0,.5);
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: all; }
  .nav-links a { padding: 12px 16px; border-radius: 6px; font-size: 15px; }
  .who-we-are .content-grid, .approach-grid, .about-narrative .content-grid, .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .services-grid-3, .services-full-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .team-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .approach-image { display: none; }
  .contact-form-wrap { padding: 28px 22px; }
  .stat-number { font-size: 46px; }
  .parallax-bg { will-change: auto; top: 0; bottom: 0; } /* disable parallax on mobile */
  .hero-main { padding: 130px 20px 80px; }
  .hero-page { padding: 140px 20px 80px; }
}

/* ── Responsive: 480px ── */
@media (max-width: 480px) {
  .values-grid { grid-template-columns: 1fr; }
  .stats-grid--two { grid-template-columns: 1fr; }
  .stats-grid--two .stat-item { border-right: none; border-top: 1px solid rgba(255,255,255,.07); }
  .stats-grid--two .stat-item:first-child { border-top: none; }
  .stats-grid:not(.stats-grid--two) { grid-template-columns: 1fr; }
  .stats-grid:not(.stats-grid--two) .stat-item { border-right: none !important; border-top: 1px solid rgba(255,255,255,.07); }
  .stats-grid:not(.stats-grid--two) .stat-item:first-child { border-top: none; }
  .stat-number { font-size: 40px; }
}
