/* ============================================
   Leonine Strategy — Premium Brand Stylesheet
   ============================================ */

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

:root {
  --navy-deep: #15285B;
  --navy-mid: #1D3972;
  --navy-light: #2A4A8A;
  --gold-dark: #7B6232;
  --gold-mid: #917B48;
  --gold-warm: #BEA970;
  --gold-muted: #968D71;
  --gold-light: #D4C69A;
  --charcoal: #4E4F4F;
  --white: #FFFFFF;
  --off-white: #F8F7F4;
  --light-gray: #EDECEA;
  --text-dark: #1A1A2E;
  --text-mid: #555555;
  --text-light: #888888;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text-dark);
  line-height: 1.7;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body > section, body > .hero-immersive, body > .fullbleed-statement { flex-shrink: 0; }
body > .footer { margin-top: auto; }

img, svg { max-width: 100%; height: auto; }

a { color: var(--navy-mid); text-decoration: none; transition: color 0.3s ease; }
a:hover { color: var(--gold-mid); }

/* Typography */
h1, h2, h3, h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy-deep);
}
h1 { font-size: 3.5rem; letter-spacing: -0.03em; }
h2 { font-size: 2.25rem; letter-spacing: -0.02em; }
h3 { font-size: 1.4rem; letter-spacing: -0.01em; }
h4 { font-size: 1.1rem; font-weight: 600; }
p { margin-bottom: 1.25rem; color: var(--text-dark); }

/* Layout */
.container { max-width: 1140px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 6rem 0; position: relative; }
.section--alt { background: var(--off-white); }
.section--fill { flex: 1; display: flex; align-items: center; }
.section--navy { background: var(--navy-deep); color: var(--white); }
.section--navy h2, .section--navy h3, .section--navy h4 { color: var(--white); }
.section--navy p { color: rgba(255, 255, 255, 0.8); }

/* ============================================
   Scroll Animations
   ============================================ */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0; transform: translateX(-60px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0; transform: translateX(60px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

.reveal-scale {
  opacity: 0; transform: scale(0.92);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

.stagger > *:nth-child(1) { transition-delay: 0s; }
.stagger > *:nth-child(2) { transition-delay: 0.12s; }
.stagger > *:nth-child(3) { transition-delay: 0.12s; }
.stagger > *:nth-child(4) { transition-delay: 0.24s; }

/* ============================================
   Navigation
   ============================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: all 0.4s ease;
}
.nav--scrolled {
  border-bottom-color: var(--light-gray);
  box-shadow: 0 4px 30px rgba(21,40,91,0.06);
}
.nav__inner {
  max-width: 1140px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between; height: 76px;
}
.nav__logo { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; }
.nav__logo img { height: 44px; width: auto; }
.nav__logo-text {
  font-family: 'Space Grotesk', sans-serif; font-size: 1.1rem; font-weight: 700;
  color: var(--navy-deep); letter-spacing: 0.04em; text-transform: uppercase;
}
.nav__links { display: flex; align-items: center; gap: 2.25rem; list-style: none; }
.nav__links a {
  font-size: 0.88rem; font-weight: 500; color: var(--charcoal);
  text-decoration: none; letter-spacing: 0.01em; transition: color 0.3s ease; position: relative;
}
.nav__links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px;
  background: var(--gold-warm); transition: width 0.3s ease;
}
.nav__links a:hover::after, .nav__links a.active::after { width: 100%; }
.nav__links a:hover, .nav__links a.active { color: var(--navy-deep); }
.nav__cta {
  background: var(--navy-deep) !important; color: var(--white) !important;
  padding: 0.6rem 1.4rem !important; border-radius: 6px;
  font-size: 0.85rem !important; font-weight: 600 !important;
  transition: all 0.3s ease !important;
}
.nav__cta::after { display: none !important; }
.nav__cta:hover {
  background: var(--navy-mid) !important;
  transform: translateY(-1px); box-shadow: 0 4px 12px rgba(21,40,91,0.25);
}
.nav__hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.nav__hamburger span { display: block; width: 24px; height: 2px; background: var(--navy-deep); transition: all 0.3s ease; }

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-block; padding: 0.9rem 2.2rem; border-radius: 6px;
  font-size: 0.95rem; font-weight: 600; font-family: 'Space Grotesk', sans-serif;
  text-decoration: none; transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer; border: none;
}
.btn--primary { background: var(--gold-warm); color: var(--navy-deep); }
.btn--primary:hover {
  background: var(--gold-light); color: var(--navy-deep);
  transform: translateY(-2px); box-shadow: 0 8px 25px rgba(190,169,112,0.35);
}
.btn--secondary { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.35); }
.btn--secondary:hover { border-color: var(--white); color: var(--white); transform: translateY(-2px); background: rgba(255,255,255,0.08); }
.btn--dark { background: var(--navy-deep); color: var(--white); }
.btn--dark:hover { background: var(--navy-mid); color: var(--white); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(21,40,91,0.3); }

/* ============================================
   Hero — Full viewport with animated mesh
   ============================================ */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  background: var(--navy-deep); color: var(--white);
  position: relative; overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg canvas { width: 100%; height: 100%; }
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(21,40,91,0.88) 0%, rgba(29,57,114,0.8) 50%, rgba(21,40,91,0.92) 100%);
  z-index: 1;
}
.hero__content {
  position: relative; z-index: 2;
  max-width: 1140px; margin: 0 auto; padding: 8rem 2rem 6rem;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 4rem; align-items: center;
}
.hero__text h1 {
  color: var(--white); font-size: 3.25rem; margin-bottom: 1.5rem; line-height: 1.1;
}
.hero__text h1 .gold { color: var(--gold-warm); }
.hero__text p {
  font-size: 1.15rem; color: rgba(255,255,255,0.75);
  max-width: 540px; margin-bottom: 2.5rem; line-height: 1.75;
}
.hero__ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero__visual { display: flex; align-items: center; justify-content: center; }
.hero__visual svg { width: 100%; max-width: 420px; height: auto; }

/* ============================================
   Section Transitions
   ============================================ */
.divider-angle { position: relative; height: 80px; overflow: hidden; }
.divider-angle--white { background: var(--navy-deep); }
.divider-angle--white::after {
  content: ''; position: absolute; bottom: 0; left: -5%; width: 110%; height: 100%;
  background: var(--white); transform-origin: bottom right; transform: skewY(-2deg);
}
.divider-angle--navy { background: var(--white); }
.divider-angle--navy::after {
  content: ''; position: absolute; bottom: 0; left: -5%; width: 110%; height: 100%;
  background: var(--navy-deep); transform-origin: bottom left; transform: skewY(2deg);
}
.divider-angle--alt { background: var(--white); }
.divider-angle--alt::after {
  content: ''; position: absolute; bottom: 0; left: -5%; width: 110%; height: 100%;
  background: var(--off-white); transform-origin: bottom right; transform: skewY(-1.5deg);
}
.divider-angle--alt-rev { background: var(--off-white); }
.divider-angle--alt-rev::after {
  content: ''; position: absolute; bottom: 0; left: -5%; width: 110%; height: 100%;
  background: var(--white); transform-origin: bottom left; transform: skewY(1.5deg);
}

.gradient-line { height: 3px; background: linear-gradient(90deg, var(--navy-deep) 0%, var(--gold-warm) 50%, var(--navy-deep) 100%); opacity: 0.4; }

/* ============================================
   Value Props — Hover Cards
   ============================================ */
.value-props { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.value-card {
  background: var(--white); border-radius: 16px; padding: 2.5rem 2rem;
  border: 1px solid var(--light-gray); transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative; overflow: hidden;
}
.value-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--navy-deep), var(--gold-warm)); opacity: 0; transition: opacity 0.4s ease;
}
.value-card:hover { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(21,40,91,0.1); border-color: transparent; }
.value-card:hover::before { opacity: 1; }
.value-card__icon {
  width: 56px; height: 56px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--navy-deep), var(--navy-mid));
  box-shadow: 0 4px 15px rgba(21,40,91,0.2);
}
.value-card__icon svg { width: 28px; height: 28px; }
.value-card h3 { margin-bottom: 0.75rem; font-size: 1.15rem; }
.value-card p { font-size: 0.95rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 0; }

/* ============================================
   Positioning — Cinematic Split
   ============================================ */
.statement-section {
  position: relative; padding: 7rem 0;
  background: linear-gradient(160deg, #0D1B3E 0%, var(--navy-deep) 40%, var(--navy-mid) 100%);
  overflow: hidden;
}
.statement-section::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(190,169,112,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(29,57,114,0.3) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 80%, rgba(190,169,112,0.05) 0%, transparent 40%);
  pointer-events: none;
}
.statement-section .container { position: relative; z-index: 1; }
.statement-text h2 { color: var(--white); font-size: 2rem; margin-bottom: 1.5rem; }
.statement-text p { color: rgba(255,255,255,0.75); font-size: 1.05rem; line-height: 1.85; }
.statement-text .highlight { color: var(--gold-warm); font-weight: 600; }

/* ============================================
   Services Strip (Home)
   ============================================ */
.services-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.service-card {
  background: var(--white); border-radius: 16px; padding: 2.5rem 1.75rem; text-align: center;
  border: 1px solid var(--light-gray); transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative; overflow: hidden;
}
.service-card::after {
  content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 0; height: 3px; background: var(--gold-warm); transition: width 0.4s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(21,40,91,0.1); border-color: transparent; }
.service-card:hover::after { width: 60%; }
.service-card__icon {
  width: 64px; height: 64px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  background: linear-gradient(135deg, rgba(21,40,91,0.06), rgba(190,169,112,0.1));
  transition: all 0.4s ease;
}
.service-card:hover .service-card__icon {
  background: linear-gradient(135deg, var(--navy-deep), var(--navy-mid));
  box-shadow: 0 4px 15px rgba(21,40,91,0.2);
}
.service-card__icon svg { width: 28px; height: 28px; transition: all 0.4s ease; }
.service-card:hover .service-card__icon svg path,
.service-card:hover .service-card__icon svg circle,
.service-card:hover .service-card__icon svg polyline,
.service-card:hover .service-card__icon svg polygon,
.service-card:hover .service-card__icon svg line,
.service-card:hover .service-card__icon svg rect {
  stroke: var(--gold-warm);
}
.service-card h4 {
  font-family: 'Space Grotesk', sans-serif; font-size: 1.05rem;
  color: var(--navy-deep); margin-bottom: 0.75rem; letter-spacing: 0.02em; text-transform: uppercase;
}
.service-card p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.65; margin-bottom: 0; }

/* ============================================
   Trust Strip
   ============================================ */
.trust-section { background: var(--off-white); text-align: center; padding: 5rem 0; }
.trust-section p { font-size: 1.15rem; color: var(--text-mid); max-width: 700px; margin: 0 auto; line-height: 1.8; }
.trust-section .gold-line { width: 60px; height: 3px; background: var(--gold-warm); margin: 0 auto 2rem; border-radius: 2px; }

/* ============================================
   Page Header (interior pages)
   ============================================ */
.page-header {
  padding: 10rem 0 4rem;
  background: linear-gradient(160deg, #0D1B3E 0%, var(--navy-deep) 50%, var(--navy-mid) 100%);
  color: var(--white); position: relative; overflow: hidden;
}
.page-header::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(190,169,112,0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(29,57,114,0.2) 0%, transparent 50%);
  pointer-events: none;
}
.page-header .container { position: relative; z-index: 1; }
.page-header h1 { color: var(--white); font-size: 3rem; margin-bottom: 0.75rem; }
.page-header p { font-size: 1.15rem; color: rgba(255,255,255,0.65); max-width: 600px; line-height: 1.75; }
.page-header .gold-line { width: 60px; height: 3px; background: var(--gold-warm); margin-bottom: 1.5rem; border-radius: 2px; }

/* ============================================
   About Page
   ============================================ */
.about-intro { max-width: 800px; }
.about-intro p { font-size: 1.08rem; line-height: 1.85; }
.about-intro p:first-child { font-size: 1.25rem; font-weight: 500; color: var(--navy-deep); }

.philosophy-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
.philosophy-card {
  padding: 2.5rem 2rem; background: var(--white); border-radius: 16px;
  border: 1px solid var(--light-gray); transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.philosophy-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(21,40,91,0.08); border-color: transparent; }
.philosophy-card__icon {
  width: 48px; height: 48px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem;
  background: linear-gradient(135deg, rgba(21,40,91,0.06), rgba(190,169,112,0.1));
}
.philosophy-card__icon svg { width: 24px; height: 24px; }
.philosophy-card h4 { margin-bottom: 0.75rem; color: var(--navy-deep); font-size: 1.05rem; }
.philosophy-card p { font-size: 0.95rem; color: var(--text-mid); margin-bottom: 0; line-height: 1.7; }

/* ============================================
   Services Page — Alternating Split
   ============================================ */
.service-detail {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  align-items: center; padding: 4rem 0;
}
.service-detail--reverse { direction: rtl; }
.service-detail--reverse > * { direction: ltr; }
.service-detail__visual {
  display: flex; align-items: center; justify-content: center;
  padding: 3rem; border-radius: 20px; position: relative; overflow: hidden; min-height: 320px;
}
.service-detail__visual--advise { background: linear-gradient(145deg, var(--navy-deep), var(--navy-mid)); }
.service-detail__visual--produce { background: linear-gradient(145deg, #1a3366, #2a5090); }
.service-detail__visual--appear { background: linear-gradient(145deg, var(--navy-mid), var(--navy-light)); }
.service-detail__visual--validate { background: linear-gradient(145deg, #0D1B3E, var(--navy-deep)); }
.service-detail__visual svg { width: 140px; height: 140px; position: relative; z-index: 1; }
.service-detail__visual::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 40%, rgba(190,169,112,0.12) 0%, transparent 60%);
}
.service-detail__visual::after {
  content: ''; position: absolute; bottom: -20%; right: -20%; width: 60%; height: 60%;
  border: 1px solid rgba(190,169,112,0.08); border-radius: 50%;
}
.service-detail__content h3 { font-size: 1.75rem; margin-bottom: 1rem; }
.service-detail__content p { font-size: 1.02rem; line-height: 1.8; color: var(--text-mid); }
.service-detail__list { font-size: 0.9rem; color: var(--text-light); margin-top: 0.5rem; }
.service-detail__list strong { color: var(--charcoal); }

.service-divider { width: 60px; height: 2px; background: linear-gradient(90deg, var(--gold-warm), transparent); margin: 0 auto; }

.who-section { max-width: 800px; margin: 0 auto; text-align: center; }
.who-section h2 { margin-bottom: 1.5rem; }
.who-section p { font-size: 1.05rem; line-height: 1.8; color: var(--text-mid); }

/* ============================================
   Expertise Page
   ============================================ */
.expertise-intro { max-width: 800px; margin-bottom: 4rem; }
.expertise-intro p { font-size: 1.1rem; line-height: 1.85; }

.expertise-card {
  display: grid; grid-template-columns: 100px 1fr; gap: 2.5rem;
  padding: 3.5rem 0; border-bottom: 1px solid var(--light-gray); align-items: start;
}
.expertise-card:last-of-type { border-bottom: none; }
.expertise-card__number {
  font-family: 'Space Grotesk', sans-serif; font-size: 4rem; font-weight: 700;
  color: rgba(190,169,112,0.2); line-height: 1; text-align: center; padding-top: 0.25rem;
}
.expertise-card__content h3 { font-size: 1.5rem; margin-bottom: 1.25rem; }
.expertise-card__content p { font-size: 1.02rem; line-height: 1.8; max-width: 750px; }

.expertise-split {
  display: grid; grid-template-columns: 1fr 4px 1fr; gap: 3rem; align-items: start;
  border-top: 1px solid rgba(190, 169, 112, 0.20); padding: 3.5rem 0;
}
.expertise-split__divider {
  width: 4px; height: 100%;
  background: linear-gradient(to bottom, var(--gold-warm), rgba(190, 169, 112, 0.10));
  border-radius: 2px;
}
.expertise-split__tag {
  font-family: 'Space Grotesk', sans-serif; font-size: 0.7rem; text-transform: uppercase;
  letter-spacing: 0.12em; color: rgba(190,169,112,0.50);
  border: 1px solid rgba(190,169,112,0.15); padding: 0.3rem 0.75rem; border-radius: 20px;
}

/* ============================================
   Insights
   ============================================ */
.insights-content { text-align: center; max-width: 550px; margin: 0 auto; padding: 4rem 0; }
.insights-content h2 { margin-bottom: 1.5rem; }
.insights-content p { font-size: 1.1rem; color: var(--text-mid); margin-bottom: 1.5rem; line-height: 1.8; }
.insights-content .notify-text { font-size: 1rem; font-weight: 600; color: var(--navy-deep); margin-bottom: 1.75rem; }
.email-capture { display: flex; gap: 0.75rem; max-width: 420px; margin: 0 auto; }
.email-capture input {
  flex: 1; padding: 0.9rem 1.25rem; border: 2px solid var(--light-gray); border-radius: 8px;
  font-size: 0.95rem; font-family: inherit; outline: none; transition: border-color 0.3s ease;
}
.email-capture input:focus { border-color: var(--navy-mid); }
.email-capture button {
  padding: 0.9rem 1.5rem; background: var(--navy-deep); color: var(--white); border: none;
  border-radius: 8px; font-size: 0.9rem; font-weight: 600; font-family: 'Space Grotesk', sans-serif;
  cursor: pointer; transition: all 0.3s ease; white-space: nowrap;
}
.email-capture button:hover { background: var(--navy-mid); transform: translateY(-1px); }

/* ============================================
   Contact
   ============================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.contact-text h2 { margin-bottom: 1.25rem; }
.contact-text p { font-size: 1.05rem; color: var(--text-mid); line-height: 1.8; }
.contact-email {
  display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 2rem;
  padding: 1rem 1.5rem; background: var(--off-white); border-radius: 10px;
  font-size: 1rem; font-weight: 600; color: var(--navy-deep); transition: all 0.3s ease;
}
.contact-email:hover { background: var(--light-gray); }
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-form input, .contact-form textarea {
  padding: 1rem 1.25rem; border: 2px solid var(--light-gray); border-radius: 10px;
  font-size: 0.95rem; font-family: inherit; outline: none; transition: all 0.3s ease; background: var(--white);
}
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--navy-mid); box-shadow: 0 0 0 4px rgba(29,57,114,0.08); }
.contact-form textarea { min-height: 160px; resize: vertical; }
.contact-form button { align-self: flex-start; }

/* ============================================
   Footer
   ============================================ */
.footer { background: var(--white); border-top: 1px solid var(--light-gray); padding: 1.5rem 0; }
.footer__inner { display: flex; align-items: center; justify-content: space-between; }
.footer__logo { display: flex; align-items: center; gap: 0.75rem; }
.footer__logo img { height: 36px; width: auto; }
.footer__logo-text {
  font-family: 'Space Grotesk', sans-serif; font-size: 0.9rem; font-weight: 700;
  color: var(--navy-deep); text-transform: uppercase; letter-spacing: 0.03em;
}
.footer__links { display: flex; gap: 2rem; list-style: none; }
.footer__links a { color: var(--charcoal); font-size: 0.85rem; transition: color 0.3s ease; }
.footer__links a:hover { color: var(--gold-mid); }
.footer__copy { display: block; font-size: 0.8rem; color: var(--gold-muted); text-align: center; margin-top: 1rem; }

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 900px) {
  .nav__links {
    display: none; position: absolute; top: 76px; left: 0; right: 0;
    background: var(--white); flex-direction: column; padding: 1.5rem 2rem; gap: 1rem;
    border-bottom: 1px solid var(--light-gray); box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  }
  .nav__links.open { display: flex; }
  .nav__hamburger { display: flex; }
  .hero__content { grid-template-columns: 1fr; padding: 8rem 2rem 4rem; }
  .hero__visual { display: none; }
  .hero__text h1 { font-size: 2.5rem; }
  .value-props { grid-template-columns: 1fr; gap: 1.5rem; }
  .services-strip { grid-template-columns: repeat(2, 1fr); }
  .service-detail, .service-detail--reverse { grid-template-columns: 1fr; gap: 2rem; direction: ltr; }
  .service-detail__visual { min-height: 200px; }
  .philosophy-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .expertise-card { grid-template-columns: 60px 1fr; gap: 1.5rem; }
  .expertise-card__number { font-size: 2.5rem; }
  .expertise-split { grid-template-columns: 1fr; gap: 2rem; }
  .expertise-split__divider { display: none; }
  .expertise-split h3 { font-size: 1.5rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer__inner { flex-direction: column; gap: 1.5rem; text-align: center; }
  .footer__links { justify-content: center; gap: 1rem; }
  .footer__links a { font-size: 0.75rem; }
  .footer__copy { font-size: 0.7rem; }
  .footer__sep { display: none; }
  .footer__copy a[href="terms.html"] { display: block; margin-top: 0.25rem; }
  .about-logo-bg { width: 1000px !important; height: 1000px !important; opacity: 0.08 !important; }
  .hwt-wrapper { top: 200px !important; opacity: 0.35; }
  h1 { font-size: 2.5rem; }
  h2 { font-size: 1.75rem; }
  .page-header { padding: 8rem 0 3rem; }
  .page-header h1 { font-size: 2.25rem; }
}
@media (max-width: 600px) {
  .hero__text h1 { font-size: 2rem; }
  .hero__ctas { flex-direction: column; }
  .btn { text-align: center; }
  .email-capture { flex-direction: column; }
  .section { padding: 4rem 0; }
  .services-strip { grid-template-columns: 1fr; }
}
