/* =====================================================================
   NELSON LEGACY GROUP LLC — Classic & Professional Consulting
   Palette: deep navy + gold + cream paper
   ===================================================================== */

:root {
  --navy-900: #0A1024;
  --navy-800: #0C1530;
  --navy-700: #131D45;
  --navy-600: #1B2858;
  --navy-500: #2A3870;
  --gold-700: #A78436;
  --gold-600: #C8A24A;
  --gold-500: #D8B25A;
  --gold-400: #E8C870;
  --gold-100: #F4E5BC;
  --cream-50: #FBF8F0;
  --cream-100: #F8F3E8;
  --cream-200: #EFE6D2;
  --paper:    #FAF6EC;
  --ink-900:  #0A1024;
  --ink-700:  #2A3145;
  --ink-500:  #5B617A;
  --ink-400:  #8A8F9F;
  --ink-300:  #B6BAC6;
  --white:    #FFFFFF;
  --line:     rgba(10,16,36,0.10);
  --line-strong: rgba(10,16,36,0.18);
  --shadow-sm: 0 1px 2px rgba(10,16,36,0.04), 0 1px 1px rgba(10,16,36,0.04);
  --shadow-md: 0 8px 32px -8px rgba(10,16,36,0.18), 0 2px 8px rgba(10,16,36,0.08);
  --shadow-lg: 0 30px 80px -30px rgba(10,16,36,0.4), 0 16px 40px -16px rgba(10,16,36,0.2);
  --shadow-gold: 0 12px 40px -12px rgba(200,162,74,0.35);
  --serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, monospace;
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 16px;
}

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

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

body {
  font-family: var(--sans);
  color: var(--ink-900);
  background: var(--cream-50);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "kern", "liga", "ss01";
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s ease; }
button { font: inherit; cursor: pointer; border: 0; background: none; }

::selection { background: var(--gold-400); color: var(--navy-900); }

/* ---------- Typography ---------- */

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink-900);
}
.serif-italic { font-family: var(--serif); font-style: italic; font-weight: 400; }
.gold { color: var(--gold-600); }
.gold-grad {
  background: linear-gradient(120deg, var(--gold-700) 0%, var(--gold-400) 50%, var(--gold-600) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-700);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--gold-600);
  display: inline-block;
}
.eyebrow.center::before, .eyebrow.center::after {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--gold-600);
}
.eyebrow.on-dark { color: var(--gold-400); }
.eyebrow.on-dark::before, .eyebrow.on-dark::after { background: var(--gold-500); }

/* ---------- Layout ---------- */

.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.container-narrow { max-width: 920px; margin: 0 auto; padding: 0 32px; }
section { padding: 100px 0; position: relative; }
section.tight { padding: 64px 0; }

.section-head { text-align: center; max-width: 760px; margin: 0 auto 64px; }
.section-head h2 {
  font-size: clamp(40px, 5vw, 64px);
  margin-top: 20px;
}
.section-head p {
  font-size: 18px;
  color: var(--ink-500);
  margin-top: 22px;
  line-height: 1.6;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

/* Decorative rule */
.rule-gold {
  width: 64px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-600), transparent);
  margin: 28px auto;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 17px 32px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all .25s cubic-bezier(.2,.7,.2,1);
  cursor: pointer;
  white-space: nowrap;
  position: relative;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold-700) 0%, var(--gold-500) 100%);
  color: var(--navy-900);
  box-shadow: var(--shadow-gold);
  border: 1px solid var(--gold-700);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 20px 50px -16px rgba(200,162,74,0.55); }
.btn-outline {
  background: transparent;
  color: var(--cream-100);
  border: 1px solid rgba(232,200,112,0.45);
}
.btn-outline:hover { background: rgba(232,200,112,0.10); border-color: var(--gold-400); }
.btn-outline.dark { color: var(--navy-900); border-color: var(--navy-800); }
.btn-outline.dark:hover { background: var(--navy-900); color: var(--cream-100); }
.btn .arr { transition: transform .25s ease; }
.btn:hover .arr { transform: translateX(4px); }

/* ---------- Nav ---------- */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  background: linear-gradient(to bottom, rgba(10,16,36,0.5), transparent);
  transition: all .3s ease;
}
.nav.scrolled {
  background: rgba(251,248,240,0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
  box-shadow: 0 1px 0 var(--line);
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-brand img { height: 56px; width: auto; transition: filter .25s ease; }
.nav.scrolled .nav-brand img { height: 48px; }
.nav-brand-text {
  display: none;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 0.01em;
  color: var(--cream-100);
}
.nav.scrolled .nav-brand-text { color: var(--navy-900); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--cream-100);
  transition: color .2s ease;
  position: relative;
}
.nav.scrolled .nav-links a { color: var(--ink-700); }
.nav-links a:hover { color: var(--gold-400); }
.nav.scrolled .nav-links a:hover { color: var(--gold-700); }
.nav-links a.active { color: var(--gold-400); }
.nav.scrolled .nav-links a.active { color: var(--gold-700); }
.nav-cta {
  background: var(--gold-500);
  color: var(--navy-900) !important;
  padding: 11px 20px;
  border-radius: 2px;
  font-weight: 600 !important;
  letter-spacing: 0.05em !important;
  font-size: 13px !important;
  text-transform: uppercase;
  transition: all .25s ease;
}
.nav-cta:hover { background: var(--gold-400) !important; color: var(--navy-900) !important; transform: translateY(-1px); }

.nav-toggle { display: none; }

/* ---------- Hero (Editorial Cinematic) ---------- */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 0 90px;
  overflow: hidden;
  background: var(--navy-900);
  color: var(--cream-100);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/hero-financial.jpg') center/cover;
  filter: blur(14px) brightness(0.5) saturate(0.85);
  transform: scale(1.1);
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(10,16,36,0.55) 0%, rgba(10,16,36,0.92) 100%),
    linear-gradient(180deg, rgba(10,16,36,0.7) 0%, rgba(10,16,36,0.95) 100%);
  z-index: 1;
}
.hero-dotgrid {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(200,162,74,0.10) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  z-index: 2;
  opacity: 0.5;
}
.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 980px;
  padding: 0 32px;
  margin: 0 auto;
}
.hero-crest {
  margin: 0 auto 36px;
  max-width: 340px;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.5));
  animation: crestIn 1.2s cubic-bezier(.2,.7,.2,1) both;
}
@keyframes crestIn {
  from { opacity: 0; transform: translateY(-20px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.hero h1 {
  font-size: clamp(44px, 6vw, 76px);
  font-weight: 500;
  line-height: 1.05;
  color: var(--cream-100);
  margin: 0 auto;
  max-width: 880px;
  letter-spacing: -0.015em;
  animation: heroIn 1.4s cubic-bezier(.2,.7,.2,1) 0.15s both;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-400);
  font-weight: 400;
}
.hero-sub {
  font-size: 19px;
  color: rgba(248,243,232,0.78);
  margin: 28px auto 0;
  max-width: 620px;
  line-height: 1.6;
  animation: heroIn 1.4s cubic-bezier(.2,.7,.2,1) 0.3s both;
}
@keyframes heroIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-actions {
  display: flex;
  gap: 18px;
  justify-content: center;
  margin-top: 44px;
  flex-wrap: wrap;
  animation: heroIn 1.4s cubic-bezier(.2,.7,.2,1) 0.45s both;
}
.hero-trust {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  animation: heroIn 1.4s cubic-bezier(.2,.7,.2,1) 0.6s both;
}
.hero-stars {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(248,243,232,0.75);
}
.stars-svg { color: var(--gold-400); display: inline-flex; gap: 2px; }
.hero-tagline {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: rgba(232,200,112,0.55);
  text-transform: uppercase;
}

/* Hero side ornaments */
.hero-ornament {
  position: absolute;
  z-index: 2;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold-600), transparent);
  height: 80px;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.6;
  animation: line 2.5s ease-in-out infinite;
}
@keyframes line { 0%,100% { transform: translateX(-50%) scaleY(1); opacity: 0.6; } 50% { transform: translateX(-50%) scaleY(0.4); opacity: 0.9; } }

/* ---------- Trust band ---------- */

.trust-band {
  background: var(--paper);
  padding: 56px 0;
  border-bottom: 1px solid var(--line);
}
.trust-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-400);
  white-space: nowrap;
}
.trust-list {
  display: flex;
  align-items: center;
  gap: 56px;
  flex-wrap: wrap;
}
.trust-item {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--navy-700);
  letter-spacing: -0.01em;
}

/* ---------- Stats Band (navy w/ gold accents) ---------- */

.stats {
  background: var(--navy-800);
  color: var(--cream-100);
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-600), transparent);
}
.stats::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-600), transparent);
}
.stats-head {
  text-align: center;
  margin-bottom: 64px;
}
.stats-head h2 {
  color: var(--cream-100);
  font-size: clamp(32px, 4vw, 48px);
  margin-top: 18px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(232,200,112,0.18);
  border-bottom: 1px solid rgba(232,200,112,0.18);
}
.stat {
  padding: 48px 32px;
  text-align: center;
  border-right: 1px solid rgba(232,200,112,0.18);
  position: relative;
}
.stat:last-child { border-right: none; }
.stat-num {
  font-family: var(--serif);
  font-size: clamp(56px, 7vw, 84px);
  font-weight: 400;
  line-height: 1;
  background: linear-gradient(180deg, var(--gold-400), var(--gold-600));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
}
.stat-suf {
  font-family: var(--serif);
  font-size: 36px;
  color: var(--gold-500);
  margin-left: 2px;
}
.stat-lbl {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(248,243,232,0.6);
  margin-top: 16px;
}
.stat-desc {
  font-size: 14px;
  color: rgba(248,243,232,0.78);
  margin-top: 10px;
  line-height: 1.5;
}

/* ---------- Services (Editorial Cards) ---------- */

.services {
  background: var(--cream-50);
  padding: 104px 0;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 24px;
}
.svc {
  background: var(--paper);
  padding: 56px 40px;
  transition: all .35s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}
.svc:hover { background: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-md); z-index: 2; }
.svc-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gold-700);
  text-transform: uppercase;
  margin-bottom: 28px;
}
.svc-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy-800);
  color: var(--gold-400);
  border-radius: 2px;
  box-shadow: 0 6px 16px -6px rgba(10,16,36,0.4);
}
.svc h3 {
  font-size: 28px;
  margin-bottom: 18px;
  color: var(--navy-900);
}
.svc-desc {
  color: var(--ink-500);
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 24px;
  flex-grow: 1;
}
.svc-features {
  list-style: none;
  border-top: 1px solid var(--line);
  padding-top: 20px;
  margin-top: auto;
}
.svc-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--ink-700);
  padding: 6px 0;
}
.svc-features li::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold-600);
  flex-shrink: 0;
}

/* ---------- Process / Method (Editorial Timeline) ---------- */

.method {
  background: var(--paper);
  padding: 104px 0;
}
.method-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}
.method-side h2 {
  font-size: clamp(40px, 5vw, 58px);
  margin-top: 18px;
  margin-bottom: 24px;
}
.method-side p {
  color: var(--ink-500);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 28px;
}
.method-quote {
  border-left: 2px solid var(--gold-600);
  padding-left: 22px;
  margin-top: 36px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  color: var(--navy-700);
  line-height: 1.5;
}
.method-quote-author {
  font-family: var(--mono);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-400);
  margin-top: 12px;
  display: block;
}
.steps { list-style: none; counter-reset: stepc; }
.step {
  position: relative;
  padding: 32px 0 32px 80px;
  border-bottom: 1px solid var(--line);
  counter-increment: stepc;
}
.step:last-child { border-bottom: none; padding-bottom: 0; }
.step::before {
  content: counter(stepc, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 36px;
  font-family: var(--serif);
  font-size: 40px;
  font-style: italic;
  color: var(--gold-600);
  line-height: 1;
}
.step h4 {
  font-size: 22px;
  color: var(--navy-900);
  margin-bottom: 8px;
}
.step p { color: var(--ink-500); font-size: 15px; line-height: 1.6; }

/* ---------- Featured Engagement (Magazine Case Study) ---------- */

.engagement {
  background: var(--navy-800);
  color: var(--cream-100);
  padding: 104px 0;
  position: relative;
  overflow: hidden;
}
.engagement-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.engagement-photo {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border: 1px solid rgba(232,200,112,0.25);
}
.engagement-photo img { width: 100%; height: 100%; object-fit: cover; }
.engagement-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 50%, rgba(10,16,36,0.4) 100%);
}
.engagement-label {
  position: absolute;
  top: 24px;
  left: 24px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-400);
  background: rgba(10,16,36,0.7);
  padding: 8px 14px;
  border: 1px solid rgba(232,200,112,0.3);
}
.engagement-meta {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream-100);
}
.engagement-body h2 {
  color: var(--cream-100);
  font-size: clamp(34px, 4.4vw, 56px);
  margin-top: 22px;
  margin-bottom: 28px;
}
.engagement-body p {
  color: rgba(248,243,232,0.75);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 22px;
}
.engagement-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 40px;
  border-top: 1px solid rgba(232,200,112,0.18);
  border-bottom: 1px solid rgba(232,200,112,0.18);
}
.eng-result {
  padding: 28px 16px 28px 0;
  border-right: 1px solid rgba(232,200,112,0.18);
}
.eng-result:last-child { border-right: none; padding-right: 0; padding-left: 24px; }
.eng-result:nth-child(2) { padding-left: 24px; }
.eng-result-num {
  font-family: var(--serif);
  font-size: 36px;
  background: linear-gradient(180deg, var(--gold-400), var(--gold-600));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
.eng-result-lbl {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(248,243,232,0.55);
  margin-top: 10px;
}
.engagement-spec {
  list-style: none;
  margin-top: 36px;
  border-top: 1px solid rgba(232,200,112,0.18);
}
.engagement-spec li {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(232,200,112,0.12);
  font-size: 14px;
}
.engagement-spec li span:first-child {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(248,243,232,0.55);
}
.engagement-spec li span:last-child {
  color: var(--cream-100);
  font-weight: 500;
}

/* ---------- Gallery (Inside the Firm magazine grid) ---------- */

.gallery {
  background: var(--paper);
  padding: 96px 0;
}
.gallery-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 56px;
}
.gallery-head h2 {
  font-size: clamp(36px, 4.6vw, 56px);
  margin-top: 14px;
}
.gallery-head p {
  font-size: 16px;
  color: var(--ink-500);
  line-height: 1.7;
  max-width: 500px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 320px 240px;
  gap: 16px;
}
.gtile {
  position: relative;
  overflow: hidden;
  background: var(--navy-800);
}
.gtile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.2,.7,.2,1);
}
.gtile:hover img { transform: scale(1.05); }
.gtile::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,16,36,0.55) 100%);
}
.gtile-cap {
  position: absolute;
  left: 20px; bottom: 18px;
  color: var(--cream-100);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
}
.gtile-cap::before {
  content: "";
  width: 18px; height: 1px;
  background: var(--gold-500);
}
.gtile.t1 { grid-column: 1; grid-row: 1 / span 2; }
.gtile.t2 { grid-column: 2; grid-row: 1; }
.gtile.t3 { grid-column: 3; grid-row: 1; }
.gtile.t4 { grid-column: 2 / span 2; grid-row: 2; }

/* ---------- Industries ---------- */

.industries { background: var(--cream-50); padding: 104px 0; }
.ind-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 16px;
}
.ind {
  background: var(--paper);
  padding: 36px 32px;
  border: 1px solid var(--line);
  position: relative;
  transition: all .3s ease;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ind:hover { border-color: var(--gold-600); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.ind-marker {
  width: 36px;
  height: 36px;
  border-radius: 2px;
  background: var(--navy-800);
  color: var(--gold-400);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 19px;
  font-style: italic;
}
.ind h4 {
  font-size: 22px;
  color: var(--navy-900);
}
.ind p { font-size: 14px; color: var(--ink-500); line-height: 1.55; }
.ind-tag {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-700);
}

/* ---------- Pull Quote ---------- */

.pullquote {
  background: var(--paper);
  padding: 104px 0;
  text-align: center;
}
.pullquote-mark {
  font-family: var(--serif);
  font-size: 120px;
  line-height: 0.6;
  color: var(--gold-500);
  display: block;
  margin-bottom: 8px;
}
.pullquote blockquote {
  font-family: var(--serif);
  font-size: clamp(28px, 3.6vw, 44px);
  font-style: italic;
  font-weight: 400;
  color: var(--navy-900);
  line-height: 1.32;
  max-width: 900px;
  margin: 0 auto;
  letter-spacing: -0.01em;
}
.pullquote blockquote em { color: var(--gold-700); font-style: italic; }
.pullquote-author {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.pullquote-name {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--navy-900);
  letter-spacing: 0.02em;
}
.pullquote-role {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-400);
}

/* ---------- Why Nelson (Credentials) ---------- */

.why { background: var(--cream-50); padding: 104px 0; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 56px;
  align-items: start;
}
.why-photo {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.why-photo img { width: 100%; height: 100%; object-fit: cover; }
.why-photo-badge {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(10,16,36,0.92);
  color: var(--cream-100);
  padding: 24px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--gold-500);
}
.why-photo-badge-l {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-400);
}
.why-photo-badge-r {
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  color: var(--cream-100);
}
.why-side h2 {
  font-size: clamp(36px, 4.6vw, 56px);
  margin-top: 18px;
  margin-bottom: 24px;
}
.why-side > p {
  color: var(--ink-500);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 32px;
}
.why-creds {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.cred {
  background: var(--paper);
  padding: 28px 24px;
}
.cred-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 40px;
  color: var(--gold-600);
  line-height: 1;
}
.cred-lbl {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-400);
  margin-top: 10px;
}
.cred-desc {
  font-size: 14px;
  color: var(--ink-700);
  margin-top: 8px;
  line-height: 1.5;
}

/* ---------- FAQ ---------- */

.faq { background: var(--paper); padding: 104px 0; }
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 24px;
  color: var(--navy-900);
  font-weight: 500;
  letter-spacing: -0.01em;
  user-select: none;
  line-height: 1.3;
}
.faq-q .ico {
  width: 30px; height: 30px;
  flex-shrink: 0;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  color: var(--gold-700);
  transition: transform .3s ease;
}
.faq-item.open .faq-q .ico { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  color: var(--ink-500);
  font-size: 15px;
  line-height: 1.7;
}
.faq-item.open .faq-a { max-height: 400px; padding-top: 18px; }

/* ---------- Service Areas ---------- */

.areas { background: var(--cream-50); padding: 96px 0; }
.area-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 16px;
}
.area {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: all .25s ease;
}
.area:hover { background: var(--navy-800); border-color: var(--navy-800); color: var(--cream-100); }
.area:hover .area-name { color: var(--cream-100); }
.area:hover .area-meta { color: var(--gold-400); }
.area-name {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--navy-900);
  transition: color .25s ease;
}
.area-meta {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-700);
  transition: color .25s ease;
}

/* ---------- Final CTA ---------- */

.cta {
  position: relative;
  padding: 160px 0;
  text-align: center;
  color: var(--cream-100);
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background: url('../images/handshake.jpg') center/cover;
  filter: brightness(0.4) saturate(0.85);
  z-index: 0;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(10,16,36,0.92) 0%, rgba(10,16,36,0.75) 100%);
  z-index: 1;
}
.cta-content { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; padding: 0 32px; }
.cta h2 {
  font-size: clamp(40px, 5.4vw, 68px);
  color: var(--cream-100);
  margin-top: 20px;
}
.cta h2 em { color: var(--gold-400); font-style: italic; font-weight: 400; }
.cta p {
  color: rgba(248,243,232,0.78);
  font-size: 18px;
  margin: 26px auto 0;
  max-width: 600px;
  line-height: 1.6;
}
.cta-actions {
  margin-top: 44px;
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Footer ---------- */

.footer {
  background: var(--navy-900);
  color: var(--cream-100);
  padding: 80px 0 32px;
  position: relative;
  border-top: 1px solid rgba(232,200,112,0.18);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 56px;
}
.footer-brand img { height: 88px; margin-bottom: 20px; }
.footer-brand p {
  color: rgba(248,243,232,0.6);
  font-size: 14px;
  line-height: 1.6;
  max-width: 320px;
}
.footer-col h5 {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a {
  color: rgba(248,243,232,0.7);
  font-size: 14px;
  transition: color .2s ease;
}
.footer-col a:hover { color: var(--gold-400); }
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(232,200,112,0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 13px;
  color: rgba(248,243,232,0.5);
}
.footer-mark {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* ---------- Page Header (Sub Pages) ---------- */

.page-hero {
  position: relative;
  padding: 220px 0 100px;
  background: var(--navy-800);
  color: var(--cream-100);
  text-align: center;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background: url('../images/hero-financial.jpg') center/cover;
  filter: blur(10px) brightness(0.4);
  transform: scale(1.1);
  z-index: 0;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(10,16,36,0.65), rgba(10,16,36,0.92));
  z-index: 1;
}
.page-hero-content { position: relative; z-index: 2; max-width: 820px; margin: 0 auto; padding: 0 32px; }
.page-hero h1 {
  font-size: clamp(40px, 5.4vw, 72px);
  color: var(--cream-100);
  margin-top: 22px;
  letter-spacing: -0.015em;
}
.page-hero h1 em { color: var(--gold-400); font-style: italic; font-weight: 400; }
.page-hero p {
  color: rgba(248,243,232,0.78);
  font-size: 18px;
  margin: 22px auto 0;
  max-width: 640px;
  line-height: 1.6;
}

.crumbs {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(232,200,112,0.55);
  margin-bottom: 8px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.crumbs a { color: rgba(232,200,112,0.55); }
.crumbs a:hover { color: var(--gold-400); }

/* ---------- About / Founder Section ---------- */

.founder { background: var(--cream-50); padding: 104px 0; }
.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: center;
}
.founder-photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
}
.founder-photo img { width: 100%; height: 100%; object-fit: cover; }
.founder-photo-mark {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(10,16,36,0.92);
  color: var(--cream-100);
  padding: 20px 24px;
  border-left: 2px solid var(--gold-500);
}
.founder-photo-mark .nm { font-family: var(--serif); font-size: 22px; }
.founder-photo-mark .ttl {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-top: 4px;
}
.founder h2 {
  font-size: clamp(36px, 4.6vw, 56px);
  margin-top: 18px;
  margin-bottom: 24px;
}
.founder p {
  color: var(--ink-500);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 18px;
}
.founder-sig {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 16px;
}
.founder-sig-name {
  font-family: var(--serif);
  font-size: 28px;
  font-style: italic;
  color: var(--navy-900);
}
.founder-sig-role {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-400);
}

/* ---------- Values ---------- */

.values { background: var(--paper); padding: 104px 0; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 24px;
}
.val {
  text-align: left;
  position: relative;
  padding-top: 32px;
}
.val::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 48px;
  height: 1px;
  background: var(--gold-600);
}
.val-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-700);
}
.val h4 {
  font-size: 28px;
  margin: 14px 0 14px;
  color: var(--navy-900);
}
.val p {
  color: var(--ink-500);
  font-size: 15px;
  line-height: 1.7;
}

/* ---------- Contact ---------- */

.contact { background: var(--cream-50); padding: 104px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-side h2 {
  font-size: clamp(36px, 4.6vw, 56px);
  margin-top: 18px;
  margin-bottom: 22px;
}
.contact-side > p {
  color: var(--ink-500);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 36px;
}
.contact-list { list-style: none; margin-top: 32px; }
.contact-item {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.contact-ico {
  width: 44px; height: 44px;
  flex-shrink: 0;
  background: var(--navy-800);
  color: var(--gold-400);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
}
.contact-info-lbl {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-400);
  margin-bottom: 4px;
}
.contact-info-val {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--navy-900);
  line-height: 1.3;
}
.contact-info-val a:hover { color: var(--gold-700); }

.form {
  background: var(--paper);
  padding: 48px;
  border: 1px solid var(--line);
}
.form-label {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-400);
  margin-bottom: 8px;
}
.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid var(--line);
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink-900);
  border-radius: 2px;
  transition: border .2s ease;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none;
  border-color: var(--gold-600);
}
.form-textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 22px; }
.form-row.single { grid-template-columns: 1fr; }
.form button {
  width: 100%;
  padding: 17px;
  margin-top: 8px;
  background: linear-gradient(135deg, var(--gold-700), var(--gold-500));
  color: var(--navy-900);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  box-shadow: var(--shadow-gold);
  transition: all .25s ease;
}
.form button:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -12px rgba(200,162,74,0.55); }

/* ---------- Service Detail Sections ---------- */

.svc-detail { background: var(--cream-50); padding: 96px 0; }
.svc-detail + .svc-detail { background: var(--paper); }
.svc-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.svc-detail-grid.reverse { grid-template-columns: 1.2fr 1fr; }
.svc-detail-grid.reverse .svc-detail-photo { order: 2; }
.svc-detail-photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
}
.svc-detail-photo img { width: 100%; height: 100%; object-fit: cover; }
.svc-detail-body h3 {
  font-size: clamp(32px, 4vw, 48px);
  margin-top: 16px;
  margin-bottom: 22px;
}
.svc-detail-body > p {
  color: var(--ink-500);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 22px;
}
.svc-detail-list {
  margin-top: 28px;
  list-style: none;
  border-top: 1px solid var(--line);
}
.svc-detail-list li {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  color: var(--ink-700);
  line-height: 1.55;
}
.svc-detail-list li::before {
  content: "";
  width: 6px; height: 6px;
  margin-top: 9px;
  border-radius: 50%;
  background: var(--gold-600);
  flex-shrink: 0;
}

/* ---------- Mobile ---------- */

@media (max-width: 980px) {
  section { padding: 64px 0; }
  section.tight { padding: 52px 0; }
  .container, .container-narrow { padding: 0 20px; }
  .section-head { margin-bottom: 36px; }
  .section-head h2 { font-size: 32px; margin-top: 14px; }
  .section-head p { font-size: 15px; margin-top: 16px; }
  .rule-gold { margin: 18px auto; }

  .nav { padding: 14px 0; background: rgba(10,16,36,0.85); backdrop-filter: blur(8px); }
  .nav-toggle { display: flex; flex-direction: column; gap: 5px; padding: 8px; }
  .nav-toggle span { display: block; width: 22px; height: 1.5px; background: var(--cream-100); }
  .nav.scrolled .nav-toggle span { background: var(--navy-900); }
  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--cream-50);
    flex-direction: column;
    gap: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
    border-bottom: 1px solid var(--line);
  }
  .nav-links.open { max-height: 600px; }
  .nav-links a { padding: 16px 20px; width: 100%; border-bottom: 1px solid var(--line); color: var(--navy-900); }
  .nav-links a:last-child { border-bottom: none; }
  .nav-cta { margin: 12px 20px; text-align: center; }

  .hero { min-height: auto; padding: 90px 0 56px; }
  .hero-crest { max-width: 200px; margin-bottom: 22px; }
  .hero h1 { font-size: 32px; line-height: 1.1; }
  .hero-sub { font-size: 15px; margin-top: 18px; }
  .hero-actions { flex-direction: column; gap: 10px; width: 100%; padding: 0 8px; margin-top: 28px; }
  .hero-actions .btn { width: 100%; padding: 14px 20px; }
  .hero-trust { margin-top: 28px; }
  .hero-ornament { display: none; }

  .trust-band { padding: 32px 0; }
  .trust-row { flex-direction: column; gap: 14px; text-align: center; }
  .trust-list { gap: 12px 20px; justify-content: center; }
  .trust-item { font-size: 15px; }

  /* Stats: stay 2x2 always on mobile, tighter */
  .stats { padding: 60px 0; }
  .stats-head { margin-bottom: 28px; }
  .stats-head h2 { font-size: 26px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); border-bottom: none; }
  .stat { border-right: 1px solid rgba(232,200,112,0.18); border-bottom: 1px solid rgba(232,200,112,0.18); padding: 22px 10px; }
  .stat:nth-child(2n) { border-right: none; }
  .stat:nth-last-child(-n+2) { border-bottom: none; }
  .stat-num { font-size: 40px; }
  .stat-suf { font-size: 20px; }
  .stat-lbl { font-size: 10px; margin-top: 10px; letter-spacing: 0.16em; }
  .stat-desc { display: none; }

  /* Services: cleaner stacked rhythm */
  .services, .industries { padding: 64px 0; }
  .services-grid, .ind-grid, .values-grid, .area-grid { grid-template-columns: 1fr; gap: 1px; }
  .svc { padding: 32px 22px; }
  .svc h3 { font-size: 24px; margin-bottom: 12px; }
  .svc-desc { font-size: 14.5px; margin-bottom: 18px; }
  .svc-num { margin-bottom: 16px; }
  .svc-icon { margin-bottom: 18px; width: 44px; height: 44px; }
  .svc-features li { font-size: 12.5px; padding: 4px 0; }

  /* Gallery */
  .gallery { padding: 52px 0; }
  .gallery-head { grid-template-columns: 1fr; gap: 16px; margin-bottom: 22px; }
  .gallery-head p { font-size: 14.5px; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 140px 140px;
    gap: 8px;
  }
  .gtile.t1 { grid-column: 1 / span 2; grid-row: 1; }
  .gtile.t2 { grid-column: 1; grid-row: 2; }
  .gtile.t3 { grid-column: 2; grid-row: 2; }
  .gtile.t4 { grid-column: 1 / span 2; grid-row: 3; }
  .gtile-cap { left: 12px; bottom: 10px; font-size: 9px; }

  .method { padding: 64px 0; }
  .method-grid { grid-template-columns: 1fr; gap: 32px; }
  .method-side h2 { font-size: 28px; margin-bottom: 16px; }
  .method-side p { font-size: 15px; margin-bottom: 18px; }
  .method-quote { font-size: 16px; margin-top: 22px; }
  .step { padding: 20px 0 20px 52px; }
  .step::before { font-size: 28px; top: 24px; }
  .step h4 { font-size: 19px; }
  .step p { font-size: 14px; }

  .engagement { padding: 64px 0; }
  .engagement-grid { grid-template-columns: 1fr; gap: 28px; }
  .engagement-photo { aspect-ratio: 16/11; }
  .engagement-body h2 { font-size: 28px; margin-bottom: 16px; }
  .engagement-body p { font-size: 15px; margin-bottom: 14px; }
  .engagement-spec { margin-top: 24px; }
  .engagement-spec li { padding: 10px 0; font-size: 13px; }
  .engagement-results { grid-template-columns: repeat(3, 1fr); margin-top: 28px; }
  .eng-result { padding: 18px 6px; }
  .eng-result:nth-child(2) { padding-left: 6px; }
  .eng-result:last-child { padding-left: 6px; }
  .eng-result-num { font-size: 22px; }
  .eng-result-lbl { font-size: 8.5px; letter-spacing: 0.14em; margin-top: 6px; }

  /* Industries */
  .ind { padding: 24px 22px; gap: 10px; }
  .ind h4 { font-size: 19px; }
  .ind p { font-size: 13.5px; }

  /* Pull quote */
  .pullquote { padding: 64px 0; }
  .pullquote blockquote { font-size: 22px; line-height: 1.35; }
  .pullquote-mark { font-size: 64px; margin-bottom: 4px; }
  .pullquote-author { margin-top: 22px; }

  /* Why */
  .why { padding: 64px 0; }
  .why-grid, .founder-grid, .svc-detail-grid, .svc-detail-grid.reverse { grid-template-columns: 1fr; gap: 32px; }
  .why-photo, .founder-photo, .svc-detail-photo { aspect-ratio: 16/12; }
  .svc-detail-grid.reverse .svc-detail-photo { order: 0; }
  .why-side h2, .founder h2 { font-size: 28px; margin-bottom: 16px; }
  .why-side > p, .founder p { font-size: 15px; }
  .why-creds { grid-template-columns: 1fr 1fr; }
  .cred { padding: 20px 16px; }
  .cred-num { font-size: 28px; }
  .cred-desc { font-size: 12.5px; }

  /* FAQ */
  .faq { padding: 64px 0; }
  .faq-item { padding: 20px 0; }
  .faq-q { font-size: 18px; line-height: 1.3; }
  .faq-q .ico { width: 26px; height: 26px; font-size: 14px; }
  .faq-a { font-size: 14px; }

  /* Areas */
  .areas { padding: 56px 0; }
  .area-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .area { padding: 16px 14px; }
  .area-name { font-size: 17px; }
  .area-meta { font-size: 9px; letter-spacing: 0.14em; }

  /* CTA */
  .cta { padding: 80px 0; }
  .cta h2 { font-size: 32px; }
  .cta p { font-size: 15px; margin-top: 18px; }
  .cta-actions { margin-top: 28px; gap: 10px; flex-direction: column; width: 100%; padding: 0 8px; }
  .cta-actions .btn { width: 100%; }

  /* Founder */
  .founder { padding: 64px 0; }
  .founder-sig-name { font-size: 22px; }

  /* Values */
  .values { padding: 64px 0; }
  .values-grid { gap: 32px; }
  .val h4 { font-size: 22px; margin: 10px 0 10px; }
  .val p { font-size: 14px; }

  /* Contact */
  .contact { padding: 56px 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-side h2 { font-size: 28px; }
  .contact-list { margin-top: 20px; }
  .contact-item { padding: 16px 0; gap: 16px; }
  .contact-info-val { font-size: 18px; }
  .form { padding: 24px 20px; }
  .form-row { grid-template-columns: 1fr; gap: 18px; margin-bottom: 18px; }

  /* Page hero */
  .page-hero { padding: 110px 0 56px; }
  .page-hero h1 { font-size: 32px; }
  .page-hero p { font-size: 15px; margin-top: 16px; }

  /* Service detail */
  .svc-detail { padding: 60px 0; }
  .svc-detail-grid { gap: 28px; }
  .svc-detail-body h3 { font-size: 28px; margin-bottom: 14px; }
  .svc-detail-body > p { font-size: 15px; }
  .svc-detail-list li { font-size: 14px; padding: 12px 0; }

  /* Footer */
  .footer { padding: 52px 0 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; margin-bottom: 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-brand img { height: 58px; }
  .footer-bottom { flex-direction: column; text-align: center; padding-top: 24px; }
}

@media (max-width: 420px) {
  .hero h1 { font-size: 28px; }
  .hero-sub { font-size: 14.5px; }
  .stat-num { font-size: 34px; }
  .stat-suf { font-size: 18px; }
  .stat { padding: 18px 8px; }
  .area-grid { grid-template-columns: 1fr 1fr; }
  .engagement-results { grid-template-columns: 1fr; }
  .eng-result { border-right: none !important; border-bottom: 1px solid rgba(232,200,112,0.18); padding: 14px 0 !important; }
  .eng-result:last-child { border-bottom: none; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* === FORM STATUS MESSAGES (Formspree feedback) === */
.form-status {
  margin-top: 18px;
  padding: 0;
  font-family: var(--font-body, 'Inter'), sans-serif;
  font-size: 14px;
  line-height: 1.5;
  font-style: italic;
  letter-spacing: 0.005em;
  min-height: 1.1em;
  transition: color 0.2s;
}
.form-status.success {
  color: #2E7D5B;
  background: rgba(46, 125, 91, 0.08);
  border-left: 3px solid #2E7D5B;
  padding: 14px 18px;
  border-radius: 0 6px 6px 0;
  font-style: normal;
}
.form-status.error {
  color: #B33B3B;
  background: rgba(179, 59, 59, 0.08);
  border-left: 3px solid #B33B3B;
  padding: 14px 18px;
  border-radius: 0 6px 6px 0;
  font-style: normal;
}
.form button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

/* ───────── Photo placeholder slots (client to provide headshots) ───────── */
.photo-slot {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background:
    repeating-linear-gradient(
      45deg,
      rgba(10,16,36,0.04) 0,
      rgba(10,16,36,0.04) 14px,
      rgba(10,16,36,0.07) 14px,
      rgba(10,16,36,0.07) 28px
    ),
    var(--cream-100, #f6f1e7);
  border: 1px dashed rgba(10,16,36,0.28);
  color: rgba(10,16,36,0.42);
}
.photo-slot-portrait { aspect-ratio: 4/5; }
.photo-slot-square { aspect-ratio: 1/1; }
.photo-slot-icon {
  width: 56px;
  height: 56px;
  opacity: 0.62;
}
.photo-slot-label {
  font-family: var(--mono, ui-monospace, Menlo, monospace);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(10,16,36,0.46);
  padding: 4px 10px;
  border: 1px solid rgba(10,16,36,0.18);
  background: rgba(255,255,255,0.6);
}
.team-slot-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr;
  gap: 4px;
  width: 100%;
  height: 100%;
}
.team-slot-grid .photo-slot {
  aspect-ratio: auto;     /* let the grid row govern height, not the 1:1 child aspect */
  height: 100%;
  min-width: 0;
  min-height: 0;
}
.team-slot-grid .photo-slot-icon { width: 38px; height: 38px; }
.team-slot-grid .photo-slot-label { font-size: 9px; letter-spacing: 0.18em; padding: 3px 8px; }
@media (max-width: 720px) {
  .team-slot-grid .photo-slot-icon { width: 28px; height: 28px; }
  .team-slot-grid .photo-slot-label { display: none; }
}

/* Override: inside the team grid, let grid cells size each slot — don't force aspect-ratio */
.team-slot-grid .photo-slot,
.team-slot-grid .photo-slot-square {
  aspect-ratio: auto;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
}
