/* ============================================================
   NJOKI MBURU ADVOCATES — style.css
   Single CSS entry point
   ============================================================ */

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

/* ---------- CSS Variables ---------- */
:root {
  --navy:      #0D1B2A;
  --navy-mid:  #162236;
  --navy-soft: #1E3050;
  --gold:      #C9A84C;
  --gold-light:#E2C97E;
  --gold-pale: #F5EDDA;
  --white:     #FFFFFF;
  --off-white: #F8F6F1;
  --text:      #2C2C2C;
  --text-muted:#6B6B6B;
  --border:    #DDD5C4;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Jost', sans-serif;

  --container: 1180px;
  --radius:    4px;
  --transition: 0.3s ease;
  --shadow:    0 4px 30px rgba(13,27,42,0.10);
  --shadow-lg: 0 12px 60px rgba(13,27,42,0.18);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

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

img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

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

section { padding: 96px 0; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy);
}

h1 { font-size: clamp(2.8rem, 5vw, 4.8rem); font-weight: 400; letter-spacing: -0.5px; }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 500; }
h3 { font-size: 1.5rem; font-weight: 500; }
h4 { font-size: 1.2rem; font-weight: 600; }

p { font-size: 1rem; line-height: 1.8; color: var(--text-muted); }

.section-label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: block;
}

.section-title { margin-bottom: 18px; }
.section-intro  { font-size: 1.05rem; max-width: 580px; margin-bottom: 52px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 34px;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-dark:hover {
  background: var(--navy);
  color: var(--white);
}

/* ---------- Gold Divider ---------- */
.gold-line {
  width: 56px;
  height: 2px;
  background: var(--gold);
  margin: 22px 0 32px;
}
.gold-line.centered { margin-left: auto; margin-right: auto; }

/* ============================================================
   HEADER / TOPBAR
   ============================================================ */
.topbar {
  background: var(--navy);
  padding: 10px 0;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.topbar a { color: rgba(255,255,255,0.65); transition: color var(--transition); }
.topbar a:hover { color: var(--gold); }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 24px; }
.topbar span { display: flex; align-items: center; gap: 6px; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-header {
  background: var(--white);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 20px rgba(13,27,42,0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-name {
  font-family: var(--font-serif);
  font-size: 1.38rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.3px;
}
.logo-sub {
  font-family: var(--font-sans);
  font-size: 0.66rem;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.6px;
  color: var(--navy);
  padding: 6px 14px;
  border-radius: var(--radius);
  transition: all var(--transition);
  position: relative;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  background: var(--gold-pale);
}

.nav-cta {
  background: var(--navy) !important;
  color: var(--white) !important;
  padding: 9px 20px !important;
}
.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--navy) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  transition: all var(--transition);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(13,27,42,0.97) 0%, rgba(22,34,54,0.88) 60%, rgba(30,48,80,0.75) 100%),
    url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?w=1600&q=80') center/cover no-repeat;
}

/* Decorative gold accent */
.hero-bg::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(to left, rgba(201,168,76,0.06) 0%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.35);
  padding: 7px 18px;
  border-radius: 2px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 32px;
}
.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 10px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.1;
}
.hero h1 strong {
  font-style: normal;
  font-weight: 600;
  display: block;
}

.hero-tagline {
  font-size: 1.12rem;
  color: rgba(255,255,255,0.7);
  margin: 24px 0 42px;
  max-width: 520px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 0.68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 2;
  animation: scrollBob 2s ease-in-out infinite;
}
.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(201,168,76,0.6), transparent);
}

@keyframes scrollBob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* Hero Stats Bar */
.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--gold);
  z-index: 3;
}
.hero-stats .container {
  display: flex;
  justify-content: space-around;
}
.stat-item {
  padding: 22px 20px;
  text-align: center;
  color: var(--navy);
  border-right: 1px solid rgba(13,27,42,0.15);
  flex: 1;
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  display: block;
  line-height: 1;
}
.stat-label {
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 4px;
  opacity: 0.75;
  display: block;
}

/* ============================================================
   PRACTICE AREAS
   ============================================================ */
.practice-areas {
  background: var(--off-white);
}
.practice-areas .section-intro { color: var(--text-muted); }

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px;
}

.area-card {
  background: var(--white);
  padding: 42px 36px;
  position: relative;
  transition: all var(--transition);
  border-bottom: 3px solid transparent;
  overflow: hidden;
}
.area-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--navy);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s ease;
  z-index: 0;
}
.area-card:hover::before { transform: scaleY(1); }
.area-card:hover { border-bottom-color: var(--gold); }

.area-card > * { position: relative; z-index: 1; }

.area-icon {
  width: 54px;
  height: 54px;
  background: var(--gold-pale);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all var(--transition);
}
.area-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}
.area-card:hover .area-icon {
  background: rgba(201,168,76,0.2);
}

.area-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  transition: color var(--transition);
}
.area-card:hover h3 { color: var(--white); }

.area-card p {
  font-size: 0.9rem;
  line-height: 1.7;
  transition: color var(--transition);
}
.area-card:hover p { color: rgba(255,255,255,0.65); }

.area-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 22px;
  transition: gap var(--transition);
}
.area-card:hover .area-link { color: var(--gold-light); gap: 10px; }

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
}
.about-img-wrap {
  position: relative;
  z-index: 1;
}
.about-img-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius);
}

.about-badge {
  position: absolute;
  bottom: -28px;
  right: -28px;
  background: var(--gold);
  color: var(--navy);
  padding: 26px 30px;
  border-radius: var(--radius);
  text-align: center;
  z-index: 2;
}
.about-badge .num {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 700;
  display: block;
  line-height: 1;
}
.about-badge .lbl {
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 6px;
  opacity: 0.8;
}

.about-accent {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 120px;
  height: 120px;
  border: 2px solid var(--gold-pale);
  border-radius: var(--radius);
  z-index: 0;
}

.about-content { }
.about-content .section-intro { max-width: 100%; }

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 36px 0;
}
.value-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.value-dot {
  width: 8px;
  height: 8px;
  min-width: 8px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 7px;
}
.value-item h4 {
  font-size: 1rem;
  margin-bottom: 2px;
  color: var(--navy);
}
.value-item p {
  font-size: 0.85rem;
  line-height: 1.5;
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-us {
  background: var(--navy);
  padding: 96px 0;
}

.why-us .section-label { color: var(--gold); }
.why-us .section-title { color: var(--white); }
.why-us .section-intro { color: rgba(255,255,255,0.6); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 52px;
}

.why-card {
  padding: 44px 36px;
  background: rgba(255,255,255,0.04);
  border-top: 1px solid rgba(255,255,255,0.07);
  transition: background var(--transition);
}
.why-card:hover { background: rgba(201,168,76,0.07); }

.why-num {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(201,168,76,0.18);
  line-height: 1;
  margin-bottom: 20px;
}
.why-card h3 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 12px;
}
.why-card p {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  line-height: 1.75;
}

/* ============================================================
   TEAM PREVIEW
   ============================================================ */
.team { background: var(--off-white); }

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  margin-bottom: 48px;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.team-photo {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: top;
}

.team-info {
  padding: 24px;
  border-top: 2px solid var(--gold-pale);
}
.team-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 4px;
}
.team-role {
  font-size: 0.78rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.team-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 10px;
  line-height: 1.6;
}
.team-center { text-align: center; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: var(--gold);
  padding: 90px 0;
}
.cta-section .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.cta-text h2 {
  font-size: 2.4rem;
  color: var(--navy);
  margin-bottom: 10px;
  max-width: 520px;
}
.cta-text p {
  color: rgba(13,27,42,0.7);
  max-width: 460px;
}
.cta-actions {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
}
.btn-cta-dark {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-cta-dark:hover {
  background: var(--navy-soft);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(13,27,42,0.3);
}
.btn-cta-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-cta-outline:hover {
  background: rgba(13,27,42,0.08);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
}

.footer-top {
  padding: 72px 0 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo-name { color: var(--white); font-size: 1.5rem; }
.footer-brand .logo-sub  { color: var(--gold); }
.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  margin-top: 18px;
  line-height: 1.75;
  max-width: 280px;
}
.footer-gold-line {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 20px 0;
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }

.footer-contact-list { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-item { display: flex; gap: 12px; align-items: flex-start; }
.footer-contact-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-contact-item span {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}

.footer-bottom {
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: rgba(255,255,255,0.35); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--gold); }
.footer-bottom-links { display: flex; gap: 24px; }

/* ============================================================
   INNER PAGE HERO
   ============================================================ */
.page-hero {
  background: var(--navy);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  width: 35%;
  height: 100%;
  background: linear-gradient(135deg, transparent, rgba(201,168,76,0.05));
}
.page-hero h1 {
  color: var(--white);
  font-size: 3rem;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.page-hero p {
  color: rgba(255,255,255,0.6);
  max-width: 520px;
  position: relative;
  z-index: 1;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.breadcrumb a { color: rgba(255,255,255,0.4); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: var(--gold); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.firm-story { background: var(--white); }
.firm-story-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 72px;
  align-items: start;
}
.firm-story h2 { margin-bottom: 16px; }
.firm-story p { margin-bottom: 18px; }

.firm-aside {
  background: var(--navy);
  padding: 40px 36px;
  border-radius: var(--radius);
  color: var(--white);
}
.firm-aside h3 {
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 24px;
}
.aside-list { display: flex; flex-direction: column; gap: 14px; }
.aside-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}
.aside-list li::before {
  content: '—';
  color: var(--gold);
  flex-shrink: 0;
}

/* ============================================================
   PRACTICE AREAS PAGE
   ============================================================ */
.areas-full-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.area-full-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 36px;
  transition: all var(--transition);
  background: var(--white);
}
.area-full-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.area-full-card .area-icon { margin-bottom: 22px; }
.area-full-card h3 { margin-bottom: 14px; color: var(--navy); }
.area-full-card p  { font-size: 0.9rem; line-height: 1.75; }
.area-bullets {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.area-bullets li {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.area-bullets li::before {
  content: '›';
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}

/* ============================================================
   TEAM PAGE
   ============================================================ */
.team-full .team-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin-bottom: 0;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section { background: var(--off-white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2 { margin-bottom: 14px; }
.contact-info .gold-line { margin-bottom: 28px; }
.contact-info p  { margin-bottom: 32px; }

.contact-detail-list { display: flex; flex-direction: column; gap: 20px; }
.contact-detail {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.cd-icon {
  width: 44px;
  height: 44px;
  background: var(--navy);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cd-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}
.cd-text strong {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 3px;
}
.cd-text span {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.contact-form-wrap {
  background: var(--white);
  padding: 48px 44px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.contact-form-wrap h3 {
  margin-bottom: 8px;
}
.contact-form-wrap > p {
  font-size: 0.9rem;
  margin-bottom: 32px;
  color: var(--text-muted);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: var(--text);
  background: var(--off-white);
  transition: border-color var(--transition), background var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 130px; }

.map-section { background: var(--navy); padding: 0; }
.map-section iframe {
  width: 100%;
  height: 420px;
  display: block;
  border: none;
  opacity: 0.85;
}

/* ============================================================
   INSIGHTS PAGE
   ============================================================ */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}
.insight-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}
.insight-card:hover { transform: translateY(-4px); }
.insight-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.insight-body { padding: 28px; }
.insight-meta {
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 10px;
}
.insight-body h3 { font-size: 1.2rem; color: var(--navy); margin-bottom: 10px; }
.insight-body p  { font-size: 0.88rem; line-height: 1.7; }
.insight-body .area-link { margin-top: 18px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .about-grid  { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { max-width: 560px; }
  .why-grid    { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .cta-section .container { flex-direction: column; align-items: flex-start; }
  .firm-story-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  section { padding: 64px 0; }
  .container { padding: 0 20px; }

  .topbar-left  { display: none; }

  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); padding: 20px; box-shadow: var(--shadow); gap: 4px; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .site-header { position: relative; }

  .hero { min-height: 80vh; }
  .hero-stats .container { flex-wrap: wrap; }
  .stat-item { flex: 1 0 45%; border-right: none; border-bottom: 1px solid rgba(13,27,42,0.15); }

  .areas-grid { grid-template-columns: 1fr; }
  .why-grid   { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .about-badge { position: static; margin-top: 20px; display: inline-block; }
  .cta-actions { flex-direction: column; }
  .team-grid  { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  h1 { font-size: 2.4rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .team-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 22px; }
}
