@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

:root {
  --navy: #0a2342;
  --navy-light: #1e3a5f;
  --navy-dark: #051525;
  --gold: #c99700;
  --gold-light: #e5b318;
  --gold-dark: #9a7600;
  --gold-muted: rgba(201, 151, 0, 0.12);
  --cream: #f7f5f0;
  --cream-dark: #ebe6dc;
  --white: #ffffff;
  --text: #1e293b;
  --text-muted: #64748b;
  --border: rgba(10, 35, 66, 0.08);
  --border-strong: rgba(10, 35, 66, 0.14);
  --shadow-sm: 0 1px 2px rgba(10, 35, 66, 0.06), 0 1px 3px rgba(10, 35, 66, 0.04);
  --shadow-md: 0 4px 12px rgba(10, 35, 66, 0.08), 0 2px 4px rgba(10, 35, 66, 0.04);
  --shadow-lg: 0 12px 32px rgba(10, 35, 66, 0.1), 0 4px 8px rgba(10, 35, 66, 0.06);
  --shadow-xl: 0 20px 48px rgba(10, 35, 66, 0.12), 0 8px 16px rgba(10, 35, 66, 0.06);
  --shadow-gold: 0 4px 20px rgba(201, 151, 0, 0.28);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --font: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --header-h: 76px;
  --topbar-h: 40px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--cream);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
main { min-height: 50vh; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.gold { color: var(--gold); }
.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 10px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--gold);
  color: var(--navy-dark);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  font-family: var(--font);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, color 0.2s, border-color 0.2s;
}
.btn:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.btn-sm { padding: 10px 18px; font-size: 0.75rem; }
.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.85);
  color: var(--white);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}
.btn-outline-dark {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}
.btn-outline-dark:hover {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.btn-outline-light {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
}
.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}
.surface .btn-outline,
.panel .btn-outline,
.contact-form .btn-outline {
  border-color: var(--navy);
  color: var(--navy);
}
.surface .btn-outline:hover,
.panel .btn-outline:hover,
.contact-form .btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.top-bar {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.78rem;
}
.top-bar-inner {
  min-height: var(--topbar-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 8px 0;
}
.top-bar-left, .top-bar-right { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; }
.top-link {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}
.top-link:hover { color: var(--gold-light); }
.top-link--muted { opacity: 0.72; }

.header-main {
  min-height: var(--header-h);
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 20px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--navy);
}
.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-text strong { font-size: 1.05rem; font-weight: 800; letter-spacing: -0.02em; }
.brand-text small {
  font-size: 0.68rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 2px;
}

.site-nav { justify-self: end; }
.nav-list {
  display: flex;
  list-style: none;
  gap: 2px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.nav-link {
  display: block;
  padding: 8px 11px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 600;
  transition: background 0.2s, color 0.2s;
}
.nav-link:hover,
.nav-link.active {
  background: var(--gold-muted);
  color: var(--navy);
}
.header-cta { white-space: nowrap; }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--navy);
  cursor: pointer;
  font-size: 1rem;
}
.menu-toggle.is-open {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

/* ── Hero (home) ── */
.hero {
  position: relative;
  color: var(--white);
  padding: 96px 0 88px;
  background:
    linear-gradient(125deg, rgba(5, 21, 37, 0.96) 0%, rgba(10, 35, 66, 0.92) 45%, rgba(30, 58, 95, 0.88) 100%),
    url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?auto=format&fit=crop&w=2000&q=80') center/cover;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}
.hero-copy h1 {
  font-size: clamp(2.1rem, 4.8vw, 3.4rem);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}
.hero-copy p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.88);
  max-width: 560px;
  margin-bottom: 28px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 22px;
}
.hero-badge i { color: var(--gold-light); }

.hero-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-xl);
  padding: 28px;
  backdrop-filter: blur(8px);
}
.hero-card-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 700;
  margin-bottom: 10px;
}
.hero-card h2 {
  font-size: 1.45rem;
  line-height: 1.35;
  margin-bottom: 18px;
  font-weight: 700;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 22px;
}
.hero-stat {
  text-align: center;
  padding: 14px 10px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.hero-stat strong {
  display: block;
  font-size: 1.15rem;
  color: var(--gold-light);
  margin-bottom: 4px;
}
.hero-stat span { font-size: 0.72rem; opacity: 0.82; line-height: 1.35; }

.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}
.trust-strip-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  justify-content: center;
  align-items: center;
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
}
.trust-item i { color: var(--gold); }

/* ── Sections ── */
.section { padding: 84px 0; }
.section--white { background: var(--white); }
.section--cream { background: var(--cream); }
.section--dark { background: var(--cream-dark); }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}
.section-head h2 {
  font-size: clamp(1.8rem, 3vw, 2.45rem);
  color: var(--navy);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.section-head p { color: var(--text-muted); font-size: 1.02rem; }
.section-head-left { text-align: left; margin-left: 0; margin-right: 0; }

/* ── Cards & grids ── */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }

.card,
.panel,
.surface {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.card:hover,
.panel:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(201, 151, 0, 0.22); }

.card-top {
  height: 4px;
  background: linear-gradient(90deg, var(--navy) 0%, var(--gold) 50%, var(--navy-light) 100%);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.card-icon-wrap {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, var(--navy-dark) 0%, var(--navy) 100%);
  color: var(--gold);
  font-size: 2rem;
}
.card-body { padding: 26px 24px 28px; }
.card-body h3 {
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 10px;
  font-weight: 700;
}
.card-body p { color: var(--text-muted); margin-bottom: 16px; line-height: 1.7; font-size: 0.96rem; }
.card-link {
  color: var(--gold-dark);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.card-link:hover { color: var(--gold); gap: 12px; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}
.split-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  min-height: 360px;
  background: var(--cream-dark);
}
.split-image img { width: 100%; height: 100%; object-fit: cover; min-height: 360px; }
.split-copy h2 {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  color: var(--navy);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.split-copy p { color: var(--text-muted); margin-bottom: 14px; line-height: 1.8; }

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 24px;
}
.stat-box {
  text-align: center;
  padding: 20px 14px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.stat-box strong {
  display: block;
  font-size: 1.5rem;
  color: var(--gold-dark);
  margin-bottom: 4px;
}
.stat-box span { font-size: 0.82rem; color: var(--text-muted); font-weight: 600; }

/* ── Team ── */
.team-card { overflow: hidden; }
.team-photo { height: 300px; overflow: hidden; background: var(--cream-dark); }
.team-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.team-body { padding: 24px; }
.team-body h3 { color: var(--navy); font-size: 1.2rem; margin-bottom: 4px; }
.team-role {
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.team-body p { color: var(--text-muted); font-size: 0.94rem; line-height: 1.75; margin-bottom: 10px; }

/* ── Testimonials ── */
.testimonial-card {
  padding: 28px;
  border-left: 4px solid var(--gold);
}
.testimonial-card .stars { color: var(--gold); margin-bottom: 12px; font-size: 0.85rem; }
.testimonial-card blockquote {
  font-style: italic;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 18px;
  font-size: 0.98rem;
}
.testimonial-meta strong { display: block; color: var(--navy); font-size: 0.95rem; }
.testimonial-meta span { color: var(--text-muted); font-size: 0.82rem; }

/* ── Page hero (inner) ── */
.page-hero {
  padding: 64px 0 56px;
  color: var(--white);
  background:
    linear-gradient(125deg, rgba(5, 21, 37, 0.96) 0%, rgba(10, 35, 66, 0.92) 100%),
    url('https://images.unsplash.com/photo-1589391886645-d51941baf7fb?auto=format&fit=crop&w=2000&q=80') center/cover;
}
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.page-hero p { opacity: 0.9; max-width: 640px; font-size: 1.05rem; }
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  font-size: 0.82rem;
  margin-bottom: 16px;
  opacity: 0.82;
}
.breadcrumb a { color: var(--white); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb span { opacity: 0.55; }

.page-body { padding: 72px 0 84px; }
.page-body--cream { background: var(--cream); }
.page-body--white { background: var(--white); }

.layout-sidebar {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(280px, 0.85fr);
  gap: 32px;
  align-items: start;
}

.panel { padding: 28px; margin-bottom: 20px; }
.panel h3 {
  color: var(--navy);
  font-size: 1.05rem;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold-muted);
}
.panel p, .panel li { color: var(--text-muted); line-height: 1.7; font-size: 0.94rem; }
.panel ul { list-style: none; }
.panel ul li { margin-bottom: 10px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.panel ul li:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.panel ul a { text-decoration: none; font-weight: 600; color: var(--navy); }
.panel ul a:hover { color: var(--gold-dark); }
.panel .btn { width: 100%; margin-top: 8px; }

/* ── Practice area cards ── */
.area-card { display: flex; flex-direction: column; overflow: hidden; }
.area-body { padding: 26px 24px 28px; flex: 1; display: flex; flex-direction: column; }
.area-body h3 {
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 10px;
  font-weight: 700;
}
.area-body p {
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.7;
  font-size: 0.96rem;
}
.area-body ul {
  list-style: none;
  margin-top: auto;
  padding-top: 8px;
}
.area-body ul li {
  color: var(--text-muted);
  font-size: 0.9rem;
  padding-left: 20px;
  position: relative;
  margin-bottom: 6px;
}
.area-body ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* ── FAQ accordion ── */
.faq-accordion { display: grid; gap: 12px; }
.faq-accordion-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
}
.faq-trigger h2 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
  color: inherit;
  flex: 1;
}
.faq-trigger i { color: var(--gold); transition: transform 0.2s; }
.faq-accordion-item.is-open .faq-trigger i { transform: rotate(180deg); }
.faq-panel {
  padding: 0 20px 18px;
  color: var(--text-muted);
  line-height: 1.8;
}
.faq-panel p + p { margin-top: 12px; }
.faq-intro {
  padding: 20px 22px;
  border-left: 4px solid var(--gold);
  background: var(--white);
  border-radius: var(--radius-md);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}
.faq-intro p { color: var(--text-muted); margin: 0; }

.faq-compact .faq-compact-item { margin-bottom: 18px; padding-bottom: 18px; border-bottom: 1px solid var(--border); }
.faq-compact .faq-compact-item:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.faq-compact h4 { color: var(--navy); font-size: 0.92rem; margin-bottom: 6px; }
.faq-compact p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }

/* ── Forms ── */
.contact-form { padding: 32px; }
.contact-form h2 {
  color: var(--navy);
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.form-lead { color: var(--text-muted); margin-bottom: 22px; line-height: 1.7; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 0.95rem;
  background: var(--white);
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-muted);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.checkbox-row { display: flex; gap: 10px; align-items: flex-start; }
.checkbox-row input { width: auto; margin-top: 4px; accent-color: var(--gold); }
.checkbox-row label { margin: 0; font-weight: 500; line-height: 1.5; }

.info-list p {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 12px;
  color: var(--text-muted);
  line-height: 1.65;
}
.info-list i { color: var(--gold); margin-top: 4px; min-width: 16px; }
.info-list a { color: var(--gold-dark); font-weight: 600; text-decoration: none; }

/* ── CTA band ── */
.cta-band {
  background:
    linear-gradient(125deg, var(--navy-dark) 0%, var(--navy) 55%, var(--navy-light) 100%);
  color: var(--white);
  padding: 56px 0;
}
.cta-band-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.cta-band-copy h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.cta-band-copy p { opacity: 0.88; max-width: 560px; line-height: 1.7; }
.cta-band-actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* ── Footer ── */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.82);
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 36px;
  margin-bottom: 36px;
}
.footer-brand .brand-text strong { color: var(--white); }
.footer-tagline { margin: 16px 0; line-height: 1.75; font-size: 0.92rem; opacity: 0.78; }
.footer-address { font-size: 0.92rem; line-height: 1.7; opacity: 0.78; }
.footer-address i { color: var(--gold); margin-right: 8px; }
.footer-col h4 {
  color: var(--white);
  font-size: 0.92rem;
  margin-bottom: 16px;
  position: relative;
  padding-bottom: 10px;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 36px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 9px; }
.footer-col a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold-light); }
.footer-contact span { font-size: 0.9rem; opacity: 0.72; }
.footer-contact i { color: var(--gold); width: 18px; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 22px;
  text-align: center;
  font-size: 0.82rem;
  opacity: 0.62;
  line-height: 1.7;
}
.footer-disclaimer { max-width: 760px; margin: 8px auto 0; }

/* ── Enriched sections ── */
.section--navy {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  color: var(--white);
}
.section--pattern {
  background-color: var(--cream);
  background-image:
    radial-gradient(rgba(10, 35, 66, 0.04) 1px, transparent 1px);
  background-size: 22px 22px;
}

.credentials-bar { padding: 28px 0; }
.credentials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.credential-item {
  text-align: center;
  padding: 18px 14px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.credential-item i {
  display: block;
  font-size: 1.35rem;
  color: var(--gold-light);
  margin-bottom: 10px;
}
.credential-item strong {
  display: block;
  font-size: 0.82rem;
  line-height: 1.45;
  margin-bottom: 4px;
}
.credential-item span {
  font-size: 0.72rem;
  opacity: 0.72;
  line-height: 1.4;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  counter-reset: step;
}
.process-step {
  position: relative;
  padding: 28px 24px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.process-step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold-muted);
  color: var(--gold-dark);
  font-weight: 800;
  font-size: 0.82rem;
  margin-bottom: 14px;
}
.process-step i {
  display: block;
  color: var(--gold);
  font-size: 1.25rem;
  margin-bottom: 10px;
}
.process-step h3 {
  color: var(--navy);
  font-size: 1.05rem;
  margin-bottom: 8px;
  font-weight: 700;
}
.process-step p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

.featured-quote {
  padding: 56px 0;
  background:
    linear-gradient(125deg, rgba(5, 21, 37, 0.97) 0%, rgba(10, 35, 66, 0.94) 100%),
    url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?auto=format&fit=crop&w=1600&q=80') center/cover;
  color: var(--white);
}
.featured-quote-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.featured-quote .stars { color: var(--gold-light); margin-bottom: 16px; }
.featured-quote blockquote {
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 18px;
}
.featured-quote cite {
  display: block;
  font-style: normal;
  font-weight: 700;
  color: var(--gold-light);
}
.featured-quote span { opacity: 0.75; font-size: 0.88rem; }

.faq-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.faq-preview-card {
  padding: 24px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.faq-preview-card h3 {
  color: var(--navy);
  font-size: 1rem;
  margin-bottom: 10px;
  font-weight: 700;
  line-height: 1.4;
}
.faq-preview-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
  flex: 1;
  margin-bottom: 16px;
}

.office-section .split-image {
  min-height: 320px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.map-embed {
  width: 100%;
  min-height: 320px;
  border: 0;
  display: block;
}
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.service-tag {
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--gold-muted);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 600;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.value-card {
  padding: 24px;
  text-align: center;
}
.value-card i {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 12px;
}
.value-card h3 {
  color: var(--navy);
  font-size: 1rem;
  margin-bottom: 8px;
}
.value-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.timeline-compact {
  margin-top: 36px;
  padding-left: 24px;
  border-left: 3px solid var(--gold);
}
.timeline-compact-item {
  position: relative;
  margin-bottom: 24px;
  padding-left: 8px;
}
.timeline-compact-item::before {
  content: '';
  position: absolute;
  left: -31px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px var(--gold-muted);
}
.timeline-compact-item strong {
  display: block;
  color: var(--navy);
  margin-bottom: 4px;
}
.timeline-compact-item p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.callout-banner {
  padding: 22px 26px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  color: var(--white);
  margin-bottom: 36px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.callout-banner p { opacity: 0.9; max-width: 640px; line-height: 1.65; margin: 0; }
.callout-banner strong { color: var(--gold-light); }

.form-alert {
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  margin-bottom: 18px;
  font-size: 0.92rem;
  font-weight: 500;
}
.form-alert--success {
  background: rgba(5, 150, 105, 0.1);
  border: 1px solid rgba(5, 150, 105, 0.25);
  color: #047857;
}
.form-alert--error {
  background: rgba(220, 38, 38, 0.08);
  border: 1px solid rgba(220, 38, 38, 0.22);
  color: #b91c1c;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-grid, .split, .layout-sidebar, .footer-grid { grid-template-columns: 1fr; }
  .header-main {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
  }
  .brand { flex: 1; min-width: 0; }
  .header-cta { display: none; }
  .menu-toggle { display: inline-flex; align-items: center; justify-content: center; margin-left: auto; }
  .site-nav {
    order: 3;
    flex: 1 1 100%;
    width: 100%;
  }
  .nav-list {
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 8px 0 4px;
    border-top: 1px solid var(--border);
  }
  .nav-list.is-open { display: flex; }
  .nav-link { padding: 12px 10px; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .grid-3, .stat-grid, .hero-stats, .form-row,
  .credentials-grid, .process-grid, .faq-preview-grid, .values-grid { grid-template-columns: 1fr; }
  .hero { padding: 72px 0 64px; }
  .btn-row .btn { width: 100%; }
  .cta-band-actions, .cta-band-actions .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 520px) {
  .container { padding: 0 18px; }
  .footer-grid { grid-template-columns: 1fr; }
  .top-bar-inner { justify-content: center; text-align: center; }
  .top-bar-left, .top-bar-right { justify-content: center; }
}
