/* ============================================================
   ABRIA ADVISORY — Main Stylesheet
   Palette: Slate Blue + Copper/Bronze (modern boutique)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Jost:wght@300;400;500;600&display=swap');

:root {
  /* Core Palette */
  --navy:        #1C2B3A;
  --slate:       #2D4A6B;
  --slate-mid:   #3A5F85;
  --slate-light: #5C7FA3;
  --copper:      #B87333;
  --copper-light:#D4924A;
  --bronze:      #8B5E2F;
  --cream:       #F5F1EB;
  --cream-dark:  #EDE8DF;
  --white:       #FFFFFF;
  --text-dark:   #1A1A1A;
  --text-body:   #222222;
  --text-muted:  #4B5563;
  --border:      rgba(44, 74, 107, 0.12);
  --border-copper: rgba(184, 115, 51, 0.25);

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', system-ui, sans-serif;

  /* Spacing */
  --container: 1200px;
  --section-pad: 96px;
}

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

html, body {
  overflow-x: hidden;
  max-width: 100%;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text-body);
  background: var(--white);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

/* ── CONTAINERS ── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 768px) { .container { padding: 0 20px; } }

/* ── NAVIGATION ── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(28, 43, 58, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(184,115,51,0.2);
  transition: box-shadow 0.3s ease;
}
#nav.scrolled {
  box-shadow: 0 4px 32px rgba(0,0,0,0.25);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
  box-sizing: border-box;
}

.nav-logo {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-logo .wordmark {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav-logo .tagline-small { font-size: 10px !important; 
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--copper-light);
  margin-top: 3px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 20px;
  align-items: center;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
  padding-bottom: 3px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--copper-light);
  transition: width 0.25s ease;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
  background: var(--copper) !important;
  color: var(--white) !important;
  padding: 7px 16px !important;
  border-radius: 2px;
  font-size: 10px !important;
  letter-spacing: 0.14em !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--copper-light) !important; }
.nav-cta::after { display: none !important; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}


.nav-toggle span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--navy);
    flex-direction: column;
    gap: 0;
    padding: 0;
    border-top: 1px solid var(--border-copper);
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 16px 40px;
    font-size: 17px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .nav-links a::after { display: none; }
  .nav-cta { margin: 12px 40px 20px; display: inline-block; text-align: center; }
  .nav-inner { padding: 0 20px; }
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: var(--navy);
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% center;
  display: block;
  max-width: 100%;
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to right,
    rgba(28,43,58,0.97) 0%,
    rgba(28,43,58,0.97) 45%,
    rgba(28,43,58,0.7) 58%,
    rgba(28,43,58,0.0) 72%);
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 640px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(28,43,58,0.97) 0%, rgba(45,74,107,0.88) 50%, rgba(28,43,58,0.95) 100%);
  z-index: 1;
}
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 70% 30%, rgba(184,115,51,0.12) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(45,74,107,0.4) 0%, transparent 40%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 4;
  max-width: var(--container);
  margin: 0 auto;
  padding: 120px 40px 80px;
  width: 100%;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s ease forwards;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px; height: 1px;
  background: var(--copper);
}
.hero-eyebrow span {
  font-size: 18px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--copper-light);
  font-weight: 500;
}

.hero h1 { 
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.01em;
  max-width: 780px;
  opacity: 0;
  animation: fadeUp 0.9s 0.5s ease forwards;
}
.hero h1 em {
  font-style: italic;
  color: var(--copper-light);
}

.hero-sub {
  margin-top: 28px;
  max-width: 520px;
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255,255,255,0.65);
  font-weight: 400;
  opacity: 0;
  animation: fadeUp 0.9s 0.7s ease forwards;
}

.hero-actions {
  display: flex;
  gap: 20px;
  margin-top: 48px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s 0.9s ease forwards;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--copper);
  color: var(--white);
  padding: 14px 36px;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.25s, transform 0.2s;
  border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--copper-light); transform: translateY(-1px); }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: rgba(255,255,255,0.85);
  padding: 14px 36px;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  border: 1px solid rgba(255,255,255,0.3);
  transition: border-color 0.2s, color 0.2s;
}
.btn-outline:hover { border-color: var(--copper-light); color: var(--white); }

.btn-primary-dark {
  display: inline-block;
  background: var(--slate);
  color: var(--white);
  padding: 14px 36px;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.25s;
  border: none; cursor: pointer;
}
.btn-primary-dark:hover { background: var(--slate-mid); }

/* ── SECTION TYPOGRAPHY ── */
.section-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  display: block;
  width: 32px; height: 1px;
  background: var(--copper);
}
.section-label span {
  font-size: 18px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--copper);
  font-weight: 500;
}

h2.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
h2.section-title em { font-style: italic; color: var(--slate-mid); }

h2.section-title-light {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
}
h2.section-title-light em { font-style: italic; color: var(--copper-light); }

p.section-intro {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 600px;
  margin-top: 20px;
}

/* ── WHY ABRIA STRIP ── */
.why-strip {
  background: var(--cream);
  padding: 80px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 48px 40px;
  margin-top: 56px;
}
.why-item { text-align: left; }
.why-number {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 400;
  color: var(--copper);
  letter-spacing: 0.15em;
  margin-bottom: 12px;
}
.why-item h3 {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 10px;
}
.why-item p {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ── SERVICES GRID ── */
.services-section {
  padding: var(--section-pad) 0;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2px;
  margin-top: 60px;
  background: var(--border);
}
.service-card {
  background: var(--white);
  padding: 48px 40px;
  text-decoration: none;
  display: block;
  transition: background 0.25s;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--copper);
  transition: width 0.35s ease;
}
.service-card:hover { background: var(--cream); }
.service-card:hover::after { width: 100%; }

.service-icon {
  width: 44px; height: 44px;
  background: var(--cream-dark);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  transition: background 0.25s;
}
.service-card:hover .service-icon { background: rgba(184,115,51,0.12); }
.service-icon svg {
  width: 20px; height: 20px;
  stroke: var(--slate);
  transition: stroke 0.25s;
}
.service-card:hover .service-icon svg { stroke: var(--copper); }

.service-card h3 {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 14px;
}
.service-card p {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.75;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 17px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper);
  font-weight: 500;
  transition: gap 0.2s;
}
.service-card:hover .service-link { gap: 14px; }

/* ── DARK BAND ── */
.dark-band {
  background: var(--navy);
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}
.dark-band::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(circle at 85% 50%, rgba(184,115,51,0.08) 0%, transparent 55%);
  pointer-events: none;
}

/* ── STATS STRIP ── */
.stats-strip {
  background: var(--slate);
  padding: 64px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px;
  text-align: center;
}
.stat-item {}
.stat-number {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 400;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-number span { color: var(--copper-light); font-size: 38px; vertical-align: super; }
.stat-label {
  font-size: 18px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 10px;
  font-weight: 500;
}

/* ── INSIGHTS ── */
.insights-section {
  padding: var(--section-pad) 0;
  background: var(--cream);
}
.insights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 56px;
}
.insight-card {
  background: var(--white);
  text-decoration: none;
  display: block;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid var(--border);
}
.insight-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(28,43,58,0.1); }
.insight-thumb {
  height: 200px;
  background: var(--slate);
  position: relative;
  overflow: hidden;
}
.insight-thumb-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.insight-category {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--copper);
  color: var(--white);
  font-size: 17px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 4px 12px;
  font-weight: 500;
}
.insight-body { padding: 28px 28px 32px; }
.insight-date {
  font-size: 17px;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
.insight-card h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 12px;
}
.insight-card p {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.75;
}
.insight-read {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-size: 18px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper);
  font-weight: 500;
}

/* ── CTA BAND ── */
.cta-band {
  background: var(--copper);
  padding: 80px 0;
  text-align: center;
}
.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 16px;
}
.cta-band p {
  color: rgba(255,255,255,0.8);
  font-size: 17px;
  max-width: 500px;
  margin: 0 auto 36px;
}
.btn-white {
  display: inline-block;
  background: var(--white);
  color: var(--copper);
  padding: 14px 40px;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s;
}
.btn-white:hover { background: var(--navy); color: var(--white); }

/* ── FOOTER ── */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.6);
  padding: 72px 0 32px;
  border-top: 1px solid rgba(184,115,51,0.2);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer-brand .wordmark {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.footer-brand .tagline-small {
  font-size: 17px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--copper-light);
  margin-top: 4px;
  display: block;
}
.footer-brand p {
  font-size: 17px;
  line-height: 1.75;
  margin-top: 16px;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 18px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 17px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--copper-light); }
.footer-col address { font-style: normal; font-size: 17px; line-height: 1.9; }
.footer-col address a { color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.2s; }
.footer-col address a:hover { color: var(--copper-light); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  font-size: 17px;
  color: rgba(255,255,255,0.3);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: rgba(255,255,255,0.3); text-decoration: none; transition: color 0.2s; }
.footer-bottom a:hover { color: var(--copper-light); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--navy);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 75% 50%, rgba(184,115,51,0.1) 0%, transparent 55%);
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
  max-width: 700px;
}
.page-hero h1 em { font-style: italic; color: var(--copper-light); }
.page-hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.6);
  max-width: 540px;
  margin-top: 20px;
  line-height: 1.75;
}

/* ── ABOUT ── */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: var(--section-pad) 0;
}
@media (max-width: 800px) {
  .about-split { grid-template-columns: 1fr; gap: 48px; }
}
.about-visual {
  position: relative;
}
.about-visual-box {
  aspect-ratio: 4/5;
  background: var(--slate);
  position: relative;
  overflow: hidden;
}
.about-visual-box-inner {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--slate) 0%, var(--navy) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-accent {
  position: absolute;
  bottom: -24px; right: -24px;
  width: 60%;
  aspect-ratio: 1;
  border: 1px solid var(--copper);
  z-index: -1;
}
.about-text h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 24px;
}
.about-text h2 em { font-style: italic; color: var(--slate-mid); }
.about-text p {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 18px;
}
.about-pillars {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pillar {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.pillar-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--copper);
  flex-shrink: 0;
  margin-top: 8px;
}
.pillar strong {
  display: block;
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.pillar p { font-size: 17px; color: var(--text-muted); line-height: 1.65; }

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  padding: var(--section-pad) 0;
}
@media (max-width: 800px) {
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
}
.contact-info h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.5vw, 46px);
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.15;
}
.contact-info h2 em { font-style: italic; }
.contact-info p { font-size: 17px; color: var(--text-muted); line-height: 1.8; margin-bottom: 36px; }
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-detail-icon {
  width: 40px; height: 40px;
  background: var(--cream);
  border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg { width: 18px; height: 18px; stroke: var(--slate); }
.contact-detail-text strong { display: block; font-size: 17px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--navy); font-weight: 600; margin-bottom: 4px; }
.contact-detail-text a, .contact-detail-text span {
  font-size: 18px; color: var(--text-muted); text-decoration: none; transition: color 0.2s;
}
.contact-detail-text a:hover { color: var(--copper); }

/* Contact Form */
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 18px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 600;
}
.form-group input,
.form-group select,
.form-group textarea {
  border: 1px solid var(--border);
  background: var(--white);
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.2s;
  border-radius: 2px;
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--copper);
}
.form-group textarea { min-height: 130px; }

/* Breadcrumb */
.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 17px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}
.breadcrumb a { color: rgba(255,255,255,0.4); text-decoration: none; }
.breadcrumb a:hover { color: var(--copper-light); }
.breadcrumb span { color: var(--copper-light); }

/* Service detail page */
.service-detail {
  padding: var(--section-pad) 0;
}
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
}
@media (max-width: 800px) { .service-detail-grid { grid-template-columns: 1fr; gap: 40px; } }
.service-sidebar {}
.service-nav {
  position: sticky;
  top: 100px;
}
.service-nav h4 {
  font-size: 18px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 600;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 16px;
}
.service-nav ul { list-style: none; }
.service-nav ul li { border-bottom: 1px solid var(--border); }
.service-nav ul li a {
  display: block;
  padding: 12px 0;
  font-size: 17px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s, padding-left 0.2s;
}
.service-nav ul li a:hover,
.service-nav ul li a.active {
  color: var(--copper);
  padding-left: 8px;
}
.service-content h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 20px;
}
.service-content p { font-size: 17px; color: var(--text-muted); line-height: 1.8; margin-bottom: 18px; }
.service-content ul {
  list-style: none;
  margin: 20px 0 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-content ul li {
  display: flex;
  gap: 12px;
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.65;
}
.service-content ul li::before {
  content: '—';
  color: var(--copper);
  flex-shrink: 0;
  font-weight: 400;
}

/* Blog listing */
.insights-listing {
  padding: var(--section-pad) 0;
}
.insights-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 56px;
  border-top: 1px solid var(--border);
}
.insight-row {
  display: grid;
  grid-template-columns: 160px 1fr auto;
  gap: 40px;
  align-items: start;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  transition: background 0.2s;
}
@media (max-width: 700px) {
  .insight-row { grid-template-columns: 1fr; gap: 12px; }
}
.insight-row:hover { background: var(--cream); }
.insight-row-date {
  font-size: 17px;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  padding-top: 6px;
}
.insight-row-cat {
  display: inline-block;
  background: rgba(184,115,51,0.1);
  color: var(--copper);
  font-size: 17px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 3px 10px;
  margin-bottom: 10px;
}
.insight-row h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 10px;
}
.insight-row p { font-size: 17px; color: var(--text-muted); line-height: 1.7; }
.insight-row-arrow {
  color: var(--copper);
  font-size: 20px;
  padding-top: 8px;
  transition: transform 0.2s;
}
.insight-row:hover .insight-row-arrow { transform: translateX(4px); }

/* ── ANCHOR OFFSET (fixes nav covering section headings) ── */
[id] {
  scroll-margin-top: 106px;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── UTILITIES ── */
.text-copper { color: var(--copper); }
.mt-0 { margin-top: 0 !important; }
.divider {
  width: 48px; height: 1px;
  background: var(--copper);
  margin: 24px 0;
}

/* ============================================================
   MOBILE STYLES — max-width: 768px
   These rules ONLY apply on mobile and do not affect desktop
   ============================================================ */
@media (max-width: 768px) {

  /* NAV — cleaner mobile menu */
  .nav-inner { padding: 0 20px; height: 72px; }
  .nav-logo .wordmark { font-size: 18px; }
  .nav-logo .tagline-small { display: none; }

  /* HERO — tighter, more focused */
  .hero-content {
    padding: 100px 24px 60px !important;
  }
  .hero h1 {
    font-size: 48px !important;
    line-height: 1.05;
  }
  .hero-sub {
    font-size: 15px !important;
    margin-top: 16px;
  }
  .hero-actions {
    flex-direction: column;
    gap: 12px;
    margin-top: 32px;
  }
  .btn-primary, .btn-outline {
    width: 100%;
    text-align: center;
    padding: 14px 20px;
  }
  .hero-eyebrow { margin-bottom: 20px; }

  /* SECTIONS — reduce padding on mobile */
  :root { --section-pad: 56px; }
  .why-strip, .services-section, .dark-band,
  .stats-strip, .insights-section, .cta-band { padding: 56px 0; }

  /* WHY GRID — single column */
  .why-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 36px;
  }

  /* SECTION TITLES — smaller on mobile */
  h2.section-title, h2.section-title-light {
    font-size: 36px !important;
  }
  p.section-intro { font-size: 15px; }

  /* SERVICES GRID — single column */
  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 32px 24px; }

  /* WHO WE SERVE — single column */
  .dark-band > .container > div[style*="grid"] {
    display: flex !important;
    flex-direction: column !important;
    gap: 24px !important;
  }

  /* STATS — 2 columns */
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stat-number { font-size: 44px; }

  /* INSIGHTS — single column */
  .insights-grid { grid-template-columns: 1fr; gap: 24px; }

  /* CTA BAND */
  .cta-band h2 { font-size: 32px; }
  .cta-band p { font-size: 14px; }
  .btn-white { width: 100%; }

  /* FOOTER — single column, tidier */
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 32px;
  }
  .footer-brand p { max-width: 100%; }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  /* PAGE HEROES — inner pages */
  .page-hero { padding: 100px 0 48px; }
  .page-hero h1 { font-size: 38px !important; }
  .page-hero p { font-size: 15px; }

  /* ABOUT PAGE */
  .about-split { gap: 36px; }
  .about-visual { display: none; }
  .about-text h2 { font-size: 32px !important; }

  /* CONTACT PAGE */
  .contact-grid { gap: 36px; }
  .contact-info h2 { font-size: 28px !important; }

  /* SERVICES PAGE — hide sidebar on mobile, show inline */
  .service-detail-grid { grid-template-columns: 1fr !important; }
  .service-nav { display: none; }
  .service-content h2 { font-size: 28px !important; }

  /* INSIGHTS PAGE */
  .insight-row {
    grid-template-columns: 1fr !important;
    gap: 8px;
    padding: 24px 0;
  }
  .insight-row-arrow { display: none; }

  /* SUBSCRIBE FORM */
  #subscribeForm { flex-direction: column; }
  #subscribeForm input { min-width: unset; width: 100%; }
  #subscribeForm button { width: 100%; }
}

/* ── LOGO IMAGE ── */
.nav-logo-img {
  height: 52px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}
.footer-logo-img {
  height: 40px;
  width: auto;
  display: block;
  margin-bottom: 8px;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}
@media (max-width: 768px) {
  .nav-logo-img { height: 38px; }
}

/* ── MOBILE FIXES — eyebrow, breadcrumb, section labels ── */
@media (max-width: 768px) {

  /* Eyebrow label in hero */
  .hero-eyebrow span {
    font-size: 10px !important;
    letter-spacing: 0.2em !important;
  }
  .hero-eyebrow::before { width: 20px; }

  /* Section labels (OUR PRACTICE AREAS etc) */
  .section-label span {
    font-size: 10px !important;
    letter-spacing: 0.18em !important;
  }
  .section-label::before { width: 20px; }

  /* Breadcrumb */
  .breadcrumb {
    font-size: 12px !important;
    letter-spacing: 0.05em !important;
  }

  /* Page hero label */
  .page-hero .section-label span {
    font-size: 10px !important;
  }
}

/* Practice area button on dark sidebar */
.btn-practice {
  display: inline-block;
  margin-top: 16px;
  background: var(--copper);
  color: var(--white);
  padding: 10px 20px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s;
}
.btn-practice:hover { background: var(--copper-light); }


/* ── PRACTICE LIST (two-column bullet lists in services) ── */
.practice-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
}

@media (max-width: 768px) {
  .practice-list {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
/* ============================================================
   MOBILE OPTIMIZATION — Full Pass
   All fixes below only affect screens 768px and under
   ============================================================ */

/* ── PRACTICE ROW (services page 260px grids) ── */
.practice-row {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 64px;
  align-items: start;
}

@media (max-width: 768px) {

  /* PRACTICE ROW — stack on mobile */
  .practice-row {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  /* NAV — close menu when tapping outside */
  .nav-logo-img { height: 32px; }

  /* HERO — heavier overlay on mobile for text legibility */
  .hero-image-overlay {
    background: linear-gradient(to right,
      rgba(28,43,58,0.98) 0%,
      rgba(28,43,58,0.95) 55%,
      rgba(28,43,58,0.7) 75%,
      rgba(28,43,58,0.4) 100%) !important;
  }

  /* SERVICES PAGE — practice section sidebar text */
  .practice-row > div:first-child {
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
  }
  .practice-row > div:first-child h2 {
    font-size: 28px !important;
  }
  .btn-practice {
    margin-top: 12px;
  }

  /* ABOUT PAGE — approach grid single column */
  .about-approach-grid {
    grid-template-columns: 1fr !important;
  }

  /* PRICING PAGE — fee rows stack on mobile */
  .fee-row {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  .fee-row > div:first-child {
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
  }

  /* CONTACT PAGE — process steps single column */
  .contact-steps {
    grid-template-columns: 1fr 1fr !important;
  }

  /* INSIGHTS PAGE — filter bar scrollable but visible */
  #filterBar {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    flex-wrap: nowrap;
  }
  #filterBar::-webkit-scrollbar { display: none; }

  /* ARTICLE PAGES — bullet lists single column */
  .service-content ul,
  article ul {
    grid-template-columns: 1fr !important;
  }

  /* ALL PAGES — tap target minimum size */
  .btn-primary, .btn-outline, .btn-primary-dark,
  .btn-white, .btn-practice, .nav-cta {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  /* BREADCRUMBS — prevent overflow */
  .breadcrumb {
    flex-wrap: wrap;
    gap: 4px;
  }

  /* SECTION HEADINGS on practice pages */
  .page-hero h1 {
    font-size: 32px !important;
  }

  /* STATS — replace CA with text that works */
  .stat-number {
    font-size: 40px !important;
  }

  /* FOOTER LOGO */
  .footer-logo-img {
    height: 32px;
  }

  /* SERVICES PAGE — two-column bullet lists in practice rows */
  .practice-row ul[style*="grid-template-columns:1fr 1fr"],
  .practice-row ul[style*="grid-template-columns: 1fr 1fr"] {
    display: flex !important;
    flex-direction: column !important;
  }

  /* ABOUT PAGE — values grid single column on small phones */
  .about-values-grid {
    grid-template-columns: 1fr !important;
  }

  /* WORKING WITH US — fee description rows */
  div[style*="grid-template-columns:280px 1fr"],
  div[style*="grid-template-columns: 280px 1fr"] {
    display: block !important;
  }
  div[style*="grid-template-columns:280px 1fr"] > div:first-child,
  div[style*="grid-template-columns: 280px 1fr"] > div:first-child {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
  }

  /* SPECIALTY PAGE — cards full width */
  div[style*="grid-template-columns:1fr 1fr"] {
    display: flex !important;
    flex-direction: column !important;
  }

  /* PAGE HERO — tighter on very small screens */
  .page-hero {
    padding: 88px 0 40px;
  }

  /* HERO CONTENT position fix */
  .hero-content {
    padding: 88px 24px 56px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  /* DARK BAND — approach steps single column */
  div[style*="border:1px solid rgba(255,255,255,0.08)"] {
    display: flex !important;
    flex-direction: column !important;
  }
  div[style*="border:1px solid rgba(255,255,255,0.08)"] > div {
    border-right: none !important;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
}

/* Close nav on outside click — handled via JS below */
