/* =========================================================
   Summit Legal Partners — Global Stylesheet
   Clear Strategy. Higher Ground.
   ========================================================= */

:root {
  --summit-navy: #0B1F33;
  --slate-charcoal: #1F2933;
  --courtroom-gold: #C9A75D;
  --courtroom-gold-dark: #A88841;
  --clean-white: #FFFFFF;
  --soft-stone: #F4F1EA;
  --soft-stone-2: #ECE6D8;
  --steel-gray: #667085;
  --deep-evergreen: #1F4D3A;
  --hairline: rgba(11, 31, 51, 0.08);
  --hairline-strong: rgba(11, 31, 51, 0.16);
  --shadow-sm: 0 1px 2px rgba(11, 31, 51, 0.06);
  --shadow-md: 0 10px 30px rgba(11, 31, 51, 0.08);
  --shadow-lg: 0 24px 60px rgba(11, 31, 51, 0.14);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --container: 1200px;
  --container-narrow: 960px;
  --font-display: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', 'Source Sans Pro', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--slate-charcoal);
  background: var(--clean-white);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--summit-navy); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--courtroom-gold-dark); }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--summit-navy);
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 .6em;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.2rem, 4.6vw, 3.6rem); }
h2 { font-size: clamp(1.75rem, 3.2vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); }
h4 { font-size: 1.1rem; }

p { margin: 0 0 1em; }

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

.container-narrow { max-width: var(--container-narrow); }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--courtroom-gold-dark);
  font-weight: 600;
  margin-bottom: 14px;
}

.eyebrow.on-dark { color: var(--courtroom-gold); }

.section { padding: 96px 0; }
.section-tight { padding: 72px 0; }
.section-stone { background: var(--soft-stone); }
.section-navy { background: var(--summit-navy); color: rgba(255,255,255,0.85); }
.section-navy h1, .section-navy h2, .section-navy h3, .section-navy h4 { color: var(--clean-white); }
.section-charcoal { background: var(--slate-charcoal); color: rgba(255,255,255,0.85); }
.section-charcoal h1, .section-charcoal h2, .section-charcoal h3 { color: var(--clean-white); }

.section-head { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.section-head p { color: var(--steel-gray); font-size: 1.08rem; }
.section-head.left { text-align: left; margin-left: 0; }

/* =====================================================
   Buttons
   ===================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.97rem;
  letter-spacing: 0.01em;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all .25s ease;
  white-space: nowrap;
  font-family: var(--font-body);
}

.btn-primary {
  background: var(--courtroom-gold);
  color: var(--summit-navy);
  border-color: var(--courtroom-gold);
}
.btn-primary:hover {
  background: var(--courtroom-gold-dark);
  border-color: var(--courtroom-gold-dark);
  color: var(--summit-navy);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: transparent;
  color: var(--clean-white);
  border-color: rgba(255,255,255,0.4);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--clean-white);
  color: var(--clean-white);
}

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

.btn-ghost {
  background: transparent;
  color: var(--summit-navy);
  padding: 10px 0;
  border: none;
}
.btn-ghost::after {
  content: "→";
  margin-left: 6px;
  transition: transform .25s ease;
}
.btn-ghost:hover { color: var(--courtroom-gold-dark); }
.btn-ghost:hover::after { transform: translateX(4px); }

.btn-block { width: 100%; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* =====================================================
   Header
   ===================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--hairline);
}
.site-header .container { max-width: 1240px; }

.header-top {
  background: var(--summit-navy);
  color: rgba(255,255,255,0.78);
  font-size: 0.84rem;
  padding: 8px 0;
}
.header-top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.header-top a { color: rgba(255,255,255,0.85); }
.header-top a:hover { color: var(--courtroom-gold); }
.header-top .tagline { letter-spacing: 0.14em; text-transform: uppercase; font-size: 0.74rem; color: var(--courtroom-gold); }

.header-main .container {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-top: 18px;
  padding-bottom: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand-mark {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--summit-navy) 0%, #14304D 100%);
  display: grid;
  place-items: center;
  color: var(--courtroom-gold);
  box-shadow: var(--shadow-sm);
}
.brand-mark svg { width: 24px; height: 24px; }
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.18rem;
  color: var(--summit-navy);
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.brand-tag {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--courtroom-gold-dark);
  font-weight: 600;
  white-space: nowrap;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  margin: 0 auto;
}
.primary-nav a {
  color: var(--slate-charcoal);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 8px 0;
  position: relative;
  white-space: nowrap;
}
.header-main .brand-tag { display: none; }
.brand { flex-shrink: 0; }

/* Dropdown menu */
.nav-item { position: relative; display: inline-flex; align-items: center; }
.nav-item.has-dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.nav-item.has-dropdown > a .chev {
  width: 7px; height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  opacity: 0.55;
  transition: transform .25s ease, opacity .2s ease;
  display: inline-block;
}
.nav-item.has-dropdown:hover > a .chev,
.nav-item.has-dropdown:focus-within > a .chev {
  transform: rotate(225deg) translateY(-2px);
  opacity: 1;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 300px;
  background: var(--clean-white);
  border: 1px solid var(--hairline);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  padding: 10px;
  display: grid;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s ease, transform .25s ease, visibility .2s ease;
  z-index: 50;
}
.dropdown-menu::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px; height: 12px;
  background: var(--clean-white);
  border-left: 1px solid var(--hairline);
  border-top: 1px solid var(--hairline);
}
.nav-item.has-dropdown:hover .dropdown-menu,
.nav-item.has-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.92rem;
  color: var(--slate-charcoal);
  font-weight: 500;
  white-space: nowrap;
}
.dropdown-menu a::after { display: none; }
.dropdown-menu a:hover {
  background: var(--soft-stone);
  color: var(--summit-navy);
}
.dropdown-feature {
  background: linear-gradient(135deg, rgba(11,31,51,0.04), rgba(201,167,93,0.08));
  padding: 14px 16px !important;
  margin-bottom: 4px !important;
  border: 1px solid rgba(201,167,93,0.15);
}
.dropdown-feature:hover { background: linear-gradient(135deg, rgba(11,31,51,0.06), rgba(201,167,93,0.14)) !important; }
.dropdown-feature strong {
  display: block;
  color: var(--summit-navy);
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 2px;
  font-weight: 600;
}
.dropdown-feature span {
  display: block;
  font-size: 0.82rem;
  color: var(--steel-gray);
  font-weight: 400;
  white-space: normal;
}
.dropdown-divider {
  height: 1px;
  background: var(--hairline);
  margin: 6px 8px;
}
.dropdown-label {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel-gray);
  padding: 8px 14px 4px;
  font-weight: 600;
}
.primary-nav a.active,
.primary-nav a:hover { color: var(--summit-navy); }
.primary-nav a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--courtroom-gold);
  border-radius: 2px;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.header-cta .btn {
  padding: 12px 20px;
  font-size: 0.9rem;
}
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--summit-navy);
  font-size: 0.95rem;
  white-space: nowrap;
}
.header-cta .btn-primary { white-space: nowrap; }
.header-main .container { flex-wrap: nowrap; }
.header-phone svg { width: 16px; height: 16px; color: var(--courtroom-gold-dark); }

.nav-toggle {
  display: none;
  background: transparent;
  border: 1.5px solid var(--hairline-strong);
  border-radius: var(--radius-sm);
  width: 44px;
  height: 44px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  color: var(--summit-navy);
  padding: 0;
}
.nav-toggle svg { width: 22px; height: 22px; }

/* =====================================================
   Mobile Nav
   ===================================================== */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--summit-navy);
  color: var(--clean-white);
  z-index: 200;
  transform: translateX(100%);
  transition: transform .35s ease;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mobile-nav-close {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--clean-white);
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: grid; place-items: center;
}
.mobile-nav-close svg { width: 20px; height: 20px; }
.mobile-nav ul {
  list-style: none;
  padding: 12px 24px;
  margin: 0;
}
.mobile-nav li { border-bottom: 1px solid rgba(255,255,255,0.08); }
.mobile-nav a {
  display: block;
  padding: 18px 0;
  color: rgba(255,255,255,0.9);
  font-size: 1.05rem;
  font-weight: 500;
}
.mobile-nav a:hover { color: var(--courtroom-gold); }
.mobile-nav-cta {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
}

/* =====================================================
   Hero
   ===================================================== */
.hero {
  position: relative;
  color: var(--clean-white);
  overflow: hidden;
  isolation: isolate;
}
.hero-media {
  position: absolute; inset: 0; z-index: -2;
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(110deg, rgba(11,31,51,0.92) 0%, rgba(11,31,51,0.78) 45%, rgba(11,31,51,0.45) 100%);
  z-index: 1;
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding: 130px 0 110px;
  max-width: 760px;
}
.hero h1 {
  color: var(--clean-white);
  margin-bottom: 22px;
}
.hero .lede {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.86);
  margin-bottom: 32px;
  max-width: 620px;
}
.hero .btn-row { margin-bottom: 38px; }

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.hero-trust li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.8);
}
.hero-trust li::before {
  content: "";
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--courtroom-gold);
  display: inline-block;
  box-shadow: 0 0 0 4px rgba(201,167,93,0.18);
}

.hero-compact .hero-inner { padding: 110px 0 90px; }
.hero-compact h1 { font-size: clamp(2rem, 4vw, 3.1rem); }

/* =====================================================
   Trust Bar
   ===================================================== */
.trust-bar {
  background: var(--soft-stone);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.trust-bar .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 18px 40px;
  padding-top: 22px;
  padding-bottom: 22px;
}
.trust-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--summit-navy);
  font-weight: 600;
  font-size: 0.94rem;
}
.trust-bar-item svg {
  width: 20px; height: 20px;
  color: var(--courtroom-gold-dark);
}

/* =====================================================
   Cards & Grids
   ===================================================== */
.grid {
  display: grid;
  gap: 28px;
}
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.card {
  background: var(--clean-white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201,167,93,0.4);
}
.card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.card-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.card:hover .card-media img { transform: scale(1.05); }
.card-body {
  padding: 26px 26px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.card-body h3 { margin-bottom: 10px; }
.card-body p { color: var(--steel-gray); margin-bottom: 18px; }
.card-body .btn-ghost { margin-top: auto; align-self: flex-start; }

.card-icon {
  background: var(--clean-white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  transition: all .3s ease;
}
.card-icon:hover {
  border-color: rgba(201,167,93,0.4);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.card-icon .icon {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  background: rgba(201,167,93,0.14);
  color: var(--courtroom-gold-dark);
  border-radius: 12px;
  margin-bottom: 18px;
}
.card-icon .icon svg { width: 22px; height: 22px; }
.card-icon h3 { font-size: 1.2rem; margin-bottom: 8px; }
.card-icon p { color: var(--steel-gray); margin: 0; font-size: 0.96rem; }

.chip-list {
  display: flex; flex-wrap: wrap; gap: 10px;
  padding: 0; margin: 14px 0 0; list-style: none;
}
.chip-list li {
  background: var(--soft-stone);
  color: var(--summit-navy);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
}

/* =====================================================
   Split Sections
   ===================================================== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.split-image {
  position: relative;
  aspect-ratio: 5 / 4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.split-image img { width: 100%; height: 100%; object-fit: cover; }
.split-image::after {
  content: "";
  position: absolute;
  inset: auto -20px -20px auto;
  width: 90px; height: 90px;
  border: 3px solid var(--courtroom-gold);
  border-radius: 16px;
  z-index: -1;
}
.split-content h2 { margin-bottom: 18px; }
.split-content p { color: var(--steel-gray); font-size: 1.04rem; }

.bullet-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}
.bullet-list li {
  padding: 12px 0 12px 36px;
  position: relative;
  border-bottom: 1px solid var(--hairline);
  color: var(--slate-charcoal);
  font-weight: 500;
}
.bullet-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 17px;
  width: 22px; height: 22px;
  background: rgba(201,167,93,0.15);
  border-radius: 50%;
}
.bullet-list li::after {
  content: "";
  position: absolute;
  left: 7px; top: 23px;
  width: 8px; height: 4px;
  border-left: 2px solid var(--courtroom-gold-dark);
  border-bottom: 2px solid var(--courtroom-gold-dark);
  transform: rotate(-45deg);
}
.bullet-list li:last-child { border-bottom: none; }

/* =====================================================
   Process Steps
   ===================================================== */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}
.process-step {
  background: var(--clean-white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: 32px 26px 28px;
  position: relative;
}
.process-step::before {
  counter-increment: step;
  content: "0" counter(step);
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--courtroom-gold);
  font-weight: 600;
  display: block;
  margin-bottom: 14px;
  line-height: 1;
}
.process-step h3 { font-size: 1.15rem; margin-bottom: 8px; }
.process-step p { color: var(--steel-gray); font-size: 0.95rem; margin: 0; }

/* =====================================================
   Testimonials
   ===================================================== */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.testimonial {
  background: var(--clean-white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
}
.testimonial::before {
  content: "“";
  position: absolute;
  top: 8px; left: 22px;
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--courtroom-gold);
  opacity: 0.4;
  line-height: 1;
}
.testimonial p {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--summit-navy);
  font-style: italic;
  margin: 0 0 20px;
  position: relative;
}
.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--hairline);
  padding-top: 16px;
}
.testimonial-meta .avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--soft-stone-2);
  display: grid; place-items: center;
  color: var(--summit-navy);
  font-weight: 700;
}
.testimonial-meta .who { font-weight: 600; color: var(--summit-navy); font-size: 0.92rem; }
.testimonial-meta .what { color: var(--steel-gray); font-size: 0.82rem; }

.review-disclaimer {
  text-align: center;
  margin-top: 28px;
  color: var(--steel-gray);
  font-size: 0.84rem;
  font-style: italic;
}

/* =====================================================
   FAQ
   ===================================================== */
.faq {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--hairline);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 50px 22px 0;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--summit-navy);
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 6px; top: 50%;
  transform: translateY(-50%);
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(201,167,93,0.15);
  color: var(--courtroom-gold-dark);
  display: grid; place-items: center;
  font-size: 1.3rem; font-weight: 400;
  transition: transform .25s ease, background .25s ease;
}
.faq-item[open] summary::after { content: "−"; transform: translateY(-50%) rotate(0deg); background: var(--courtroom-gold); color: var(--summit-navy); }
.faq-item p {
  padding: 0 0 22px;
  color: var(--steel-gray);
  margin: 0;
}

/* =====================================================
   CTA Band
   ===================================================== */
.cta-band {
  background: linear-gradient(135deg, var(--summit-navy) 0%, #14304D 60%, #0E2742 100%);
  color: var(--clean-white);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  right: -100px; top: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201,167,93,0.18), transparent 70%);
  border-radius: 50%;
}
.cta-band .container {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  align-items: center;
  gap: 40px;
  position: relative;
}
.cta-band h2 { color: var(--clean-white); margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,0.78); margin-bottom: 0; }
.cta-band .btn-row { justify-content: flex-end; }

.cta-band-center { text-align: center; }
.cta-band-center .container {
  grid-template-columns: 1fr;
  text-align: center;
}
.cta-band-center .btn-row { justify-content: center; margin-top: 28px; }

/* =====================================================
   Practice Area Section (long-form)
   ===================================================== */
.pa-section {
  padding: 80px 0;
  border-top: 1px solid var(--hairline);
}
.pa-section:first-of-type { border-top: none; }
.pa-section .split { gap: 64px; }
.pa-section.flip .split { direction: rtl; }
.pa-section.flip .split > * { direction: ltr; }

.examples-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 24px;
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}
.examples-grid li {
  padding: 8px 0 8px 26px;
  position: relative;
  color: var(--slate-charcoal);
  font-size: 0.96rem;
}
.examples-grid li::before {
  content: "";
  position: absolute;
  left: 0; top: 18px;
  width: 12px; height: 2px;
  background: var(--courtroom-gold);
}

/* =====================================================
   Contact Page
   ===================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
}

.form-card {
  background: var(--clean-white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.form-card h2 { margin-bottom: 8px; }
.form-card .help { color: var(--steel-gray); margin-bottom: 28px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
}
.field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--summit-navy);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.field input,
.field select,
.field textarea {
  padding: 13px 14px;
  border: 1.5px solid var(--hairline-strong);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.96rem;
  color: var(--slate-charcoal);
  background: var(--clean-white);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--courtroom-gold);
  box-shadow: 0 0 0 3px rgba(201,167,93,0.2);
}
.field-row-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }

.checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 8px 0 22px;
  font-size: 0.9rem;
  color: var(--steel-gray);
  line-height: 1.5;
}
.checkbox-field input { margin-top: 3px; }

.form-success {
  display: none;
  padding: 18px;
  background: rgba(31,77,58,0.08);
  border: 1px solid rgba(31,77,58,0.2);
  color: var(--deep-evergreen);
  border-radius: var(--radius-sm);
  margin-bottom: 18px;
  font-weight: 500;
}
.form-success.show { display: block; }

.contact-aside {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.contact-aside .info-card {
  background: var(--summit-navy);
  color: rgba(255,255,255,0.86);
  padding: 32px;
  border-radius: var(--radius-lg);
}
.contact-aside .info-card h3 { color: var(--clean-white); margin-bottom: 16px; }
.contact-aside .info-card a { color: var(--courtroom-gold); }
.contact-aside .info-row {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.contact-aside .info-row:last-child { border-bottom: none; }
.contact-aside .info-row svg {
  width: 18px; height: 18px;
  color: var(--courtroom-gold);
  flex: 0 0 18px;
  margin-top: 3px;
}
.contact-aside .info-row .label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255,255,255,0.6); display: block; margin-bottom: 2px; }
.contact-aside .info-row .value { color: var(--clean-white); font-weight: 500; }

.hours-card {
  background: var(--soft-stone);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.hours-card h3 { margin-bottom: 14px; }
.hours-list { list-style: none; padding: 0; margin: 0; }
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--hairline);
  color: var(--slate-charcoal);
  font-size: 0.95rem;
}
.hours-list li:last-child { border-bottom: none; }
.hours-list strong { color: var(--summit-navy); font-weight: 600; }

.emergency-note {
  background: rgba(201,167,93,0.12);
  border-left: 3px solid var(--courtroom-gold);
  padding: 16px 18px;
  border-radius: 6px;
  color: var(--slate-charcoal);
  font-size: 0.92rem;
}

.map-card {
  position: relative;
  margin-top: 60px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--soft-stone);
  min-height: 320px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.map-card .map-image {
  background-image:
    radial-gradient(circle at 30% 40%, rgba(201,167,93,0.18) 0%, transparent 40%),
    radial-gradient(circle at 70% 60%, rgba(31,77,58,0.18) 0%, transparent 40%),
    linear-gradient(135deg, #DCE3EA 0%, #C7D2DC 100%);
  position: relative;
  min-height: 280px;
}
.map-card .map-pin {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -100%);
  background: var(--summit-navy);
  color: var(--courtroom-gold);
  padding: 10px 12px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.84rem;
  font-weight: 600;
  box-shadow: var(--shadow-md);
}
.map-card .map-pin::after {
  content: "";
  position: absolute;
  bottom: -8px; left: 50%;
  transform: translateX(-50%);
  border: 8px solid transparent;
  border-top-color: var(--summit-navy);
}
.map-card .map-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(11,31,51,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11,31,51,0.08) 1px, transparent 1px);
  background-size: 40px 40px;
}
.map-card .map-roads {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, transparent 48%, rgba(255,255,255,0.7) 48%, rgba(255,255,255,0.7) 52%, transparent 52%),
    linear-gradient(45deg, transparent 48%, rgba(255,255,255,0.5) 48%, rgba(255,255,255,0.5) 52%, transparent 52%);
}
.map-card .map-info {
  padding: 36px;
  background: var(--clean-white);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.map-card .map-info h3 { margin-bottom: 8px; }
.map-card .map-info p { color: var(--steel-gray); margin: 0 0 18px; }

/* =====================================================
   About — Team
   ===================================================== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.team-card {
  background: var(--clean-white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.team-card .photo {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.team-card .photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card .info { padding: 22px 24px 26px; }
.team-card .name { font-family: var(--font-display); font-size: 1.3rem; color: var(--summit-navy); margin: 0 0 4px; }
.team-card .role { color: var(--courtroom-gold-dark); font-size: 0.84rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 12px; }
.team-card .bio { color: var(--steel-gray); font-size: 0.94rem; margin: 0; }
.placeholder-note {
  text-align: center;
  color: var(--steel-gray);
  font-size: 0.85rem;
  font-style: italic;
  margin-top: 30px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

/* =====================================================
   Footer
   ===================================================== */
.site-footer {
  background: var(--summit-navy);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .brand-name { color: var(--clean-white); font-size: 1.3rem; }
.footer-brand .brand-tag { color: var(--courtroom-gold); }
.footer-brand p {
  color: rgba(255,255,255,0.65);
  font-size: 0.94rem;
  margin: 18px 0 22px;
  max-width: 340px;
}
.footer-cta { margin-top: 4px; }
.footer-col h4 {
  color: var(--clean-white);
  font-family: var(--font-body);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 18px;
  font-weight: 600;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: rgba(255,255,255,0.7); font-size: 0.94rem; }
.footer-col a:hover { color: var(--courtroom-gold); }

.footer-contact .info-line {
  display: flex; align-items: flex-start; gap: 10px;
  margin-bottom: 12px;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.78);
}
.footer-contact svg { width: 16px; height: 16px; color: var(--courtroom-gold); margin-top: 4px; flex: 0 0 16px; }

.footer-social {
  display: flex; gap: 10px;
  margin-top: 18px;
}
.footer-social a {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  color: rgba(255,255,255,0.75);
  transition: all .25s ease;
}
.footer-social a:hover {
  border-color: var(--courtroom-gold);
  color: var(--courtroom-gold);
  background: rgba(201,167,93,0.1);
}
.footer-social svg { width: 16px; height: 16px; }

.footer-bottom {
  padding: 26px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
}
.footer-bottom a { color: rgba(255,255,255,0.75); }

.legal-disclaimer {
  background: rgba(0,0,0,0.18);
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

/* =====================================================
   Sticky Mobile CTA Bar
   ===================================================== */
.mobile-cta-bar {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: var(--summit-navy);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 10px 12px;
  z-index: 90;
  box-shadow: 0 -8px 24px rgba(0,0,0,0.18);
}
.mobile-cta-bar .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.mobile-cta-bar .btn {
  padding: 12px 14px;
  font-size: 0.88rem;
  border-radius: 8px;
}
.mobile-cta-bar .btn-call {
  background: rgba(255,255,255,0.08);
  color: var(--clean-white);
  border-color: rgba(255,255,255,0.15);
}
.mobile-cta-bar .btn-call:hover {
  background: rgba(255,255,255,0.16);
}

/* =====================================================
   Page intro/breadcrumbs
   ===================================================== */
.breadcrumbs {
  display: flex; gap: 10px; align-items: center;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 22px;
}
.breadcrumbs a { color: rgba(255,255,255,0.85); }
.breadcrumbs .sep { color: rgba(255,255,255,0.4); }

/* =====================================================
   Stats Row
   ===================================================== */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  text-align: center;
}
.stat .number {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--courtroom-gold);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}
.stat .label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
  font-weight: 600;
}

/* =====================================================
   Award / Recognition Strip
   ===================================================== */
.awards-strip {
  background: var(--clean-white);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: 56px 0;
}
.awards-strip .head {
  text-align: center;
  margin-bottom: 36px;
}
.awards-strip .head .eyebrow { margin-bottom: 6px; }
.awards-strip .head h3 {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  margin: 0;
  color: var(--summit-navy);
}
.awards-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  align-items: stretch;
}
.award-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 22px 16px;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-md);
  background: var(--soft-stone);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.award-badge:hover {
  transform: translateY(-3px);
  border-color: rgba(201,167,93,0.5);
  box-shadow: var(--shadow-md);
}
.award-badge .seal {
  width: 64px; height: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--summit-navy), #14304D);
  color: var(--courtroom-gold);
  margin-bottom: 12px;
  position: relative;
  box-shadow: 0 0 0 4px rgba(201,167,93,0.18);
}
.award-badge .seal svg { width: 30px; height: 30px; }
.award-badge .seal::before,
.award-badge .seal::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 18px;
  height: 28px;
  background: var(--courtroom-gold);
  z-index: -1;
  clip-path: polygon(50% 0, 100% 0, 100% 100%, 50% 80%, 0 100%, 0 0);
}
.award-badge .seal::before { left: -10px; transform: translateY(-50%) rotate(-12deg); }
.award-badge .seal::after { right: -10px; transform: translateY(-50%) rotate(12deg); }
.award-badge .name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--summit-navy);
  line-height: 1.3;
  margin-bottom: 4px;
}
.award-badge .year {
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--courtroom-gold-dark);
  font-weight: 600;
}

/* =====================================================
   Stats Band (light variant)
   ===================================================== */
.stats-band {
  background: linear-gradient(135deg, var(--summit-navy) 0%, #14304D 100%);
  color: var(--clean-white);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.stats-band::before {
  content: "";
  position: absolute;
  left: -120px; bottom: -120px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(201,167,93,0.22), transparent 70%);
  border-radius: 50%;
}
.stats-band .container { position: relative; }
.stats-band .stat .number {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.2vw, 3.4rem);
  color: var(--courtroom-gold);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 8px;
  display: block;
}
.stats-band .stat .label {
  font-size: 0.84rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  font-weight: 600;
}

/* =====================================================
   "As Featured In" Strip
   ===================================================== */
.media-strip {
  padding: 50px 0;
  background: var(--clean-white);
  border-top: 1px solid var(--hairline);
}
.media-strip .label {
  text-align: center;
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--steel-gray);
  font-weight: 700;
  margin-bottom: 28px;
}
.media-logos {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  gap: 18px 40px;
}
.media-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-sm);
  background: var(--soft-stone);
  font-family: var(--font-display);
  color: var(--summit-navy);
  font-weight: 600;
  font-size: 1.02rem;
  letter-spacing: 0.04em;
  opacity: 0.78;
  transition: opacity .25s ease, transform .25s ease;
}
.media-logo:hover { opacity: 1; transform: translateY(-2px); }
.media-logo .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--courtroom-gold);
  margin-right: 10px;
}

/* =====================================================
   Service Areas
   ===================================================== */
.service-area-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}
.service-area-map {
  position: relative;
  aspect-ratio: 5 / 4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 30%, rgba(201,167,93,0.18), transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(31,77,58,0.22), transparent 55%),
    linear-gradient(135deg, #DCE3EA 0%, #C7D2DC 100%);
  box-shadow: var(--shadow-lg);
}
.service-area-map::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(11,31,51,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11,31,51,0.06) 1px, transparent 1px);
  background-size: 50px 50px;
}
.service-area-map svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.service-pin {
  position: absolute;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--courtroom-gold);
  box-shadow: 0 0 0 6px rgba(201,167,93,0.25), 0 4px 10px rgba(11,31,51,0.3);
}
.service-pin.center {
  width: 22px; height: 22px;
  background: var(--summit-navy);
  box-shadow: 0 0 0 6px rgba(11,31,51,0.18), 0 0 0 14px rgba(201,167,93,0.16);
  z-index: 2;
}
.service-pin.center::after {
  content: "Summit Legal Partners";
  position: absolute;
  left: 50%; bottom: calc(100% + 8px);
  transform: translateX(-50%);
  background: var(--summit-navy);
  color: var(--courtroom-gold);
  font-size: 0.74rem;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 6px;
  white-space: nowrap;
  letter-spacing: 0.04em;
}
.cities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px 24px;
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
}
.cities-grid li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--hairline);
  color: var(--slate-charcoal);
  font-weight: 500;
}
.cities-grid li::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--courtroom-gold);
  flex: 0 0 6px;
}

/* =====================================================
   Promise / Differentiator Strip
   ===================================================== */
.promise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.promise-card {
  background: var(--clean-white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  position: relative;
  overflow: hidden;
}
.promise-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 60px; height: 3px;
  background: var(--courtroom-gold);
}
.promise-card .ico {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(201,167,93,0.15);
  color: var(--courtroom-gold-dark);
  display: grid; place-items: center;
  margin-bottom: 16px;
}
.promise-card .ico svg { width: 22px; height: 22px; }
.promise-card h3 { font-size: 1.18rem; margin-bottom: 8px; }
.promise-card p { color: var(--steel-gray); margin: 0; font-size: 0.96rem; }

/* =====================================================
   Attorney Spotlight (home page)
   ===================================================== */
.attorneys-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.attorney-mini {
  text-align: center;
  background: var(--clean-white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: 22px 18px 24px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.attorney-mini:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.attorney-mini .av {
  width: 110px; height: 110px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 14px;
  border: 3px solid var(--soft-stone);
  box-shadow: 0 0 0 4px rgba(201,167,93,0.15);
}
.attorney-mini .av img { width: 100%; height: 100%; object-fit: cover; }
.attorney-mini .nm { font-family: var(--font-display); font-size: 1.05rem; color: var(--summit-navy); margin: 0 0 4px; }
.attorney-mini .rl { font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--courtroom-gold-dark); font-weight: 600; }

/* =====================================================
   Responsive
   ===================================================== */
@media (max-width: 1100px) {
  .awards-row { grid-template-columns: repeat(3, 1fr); }
  .media-logos { grid-template-columns: repeat(3, 1fr); }
  .promise-grid { grid-template-columns: 1fr; }
  .attorneys-strip { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 960px) {
  .header-phone { display: none; }
}

@media (max-width: 860px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .process { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .primary-nav { display: none; }
  .nav-toggle { display: inline-flex; }
  .awards-row { grid-template-columns: repeat(2, 1fr); }
  .media-logos { grid-template-columns: repeat(2, 1fr); }
  .service-area-grid { grid-template-columns: 1fr; gap: 40px; }
  .cities-grid { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .primary-nav,
  .header-phone { display: none; }
  .nav-toggle { display: inline-flex; }
  .header-cta .btn-primary { display: none; }
  .section { padding: 64px 0; }
  .section-tight { padding: 48px 0; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .pa-section.flip .split { direction: ltr; }
  .examples-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .cta-band .container { grid-template-columns: 1fr; }
  .cta-band .btn-row { justify-content: flex-start; }
  .form-row,
  .field-row-3 { grid-template-columns: 1fr; }
  .map-card { grid-template-columns: 1fr; }
  .map-card .map-image { min-height: 220px; }
  .mobile-cta-bar { display: block; }
  body { padding-bottom: 80px; }
  .hero-inner { padding: 90px 0 80px; }
  .header-top .container { flex-direction: column; gap: 4px; padding-top: 4px; padding-bottom: 4px; font-size: 0.78rem; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
  .team-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .process { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .form-card { padding: 28px; }
}

@media (max-width: 480px) {
  .brand-tag { display: none; }
  .hero .btn-row .btn { width: 100%; }
  .btn-row { flex-direction: column; align-items: stretch; }
  .btn-row .btn { width: 100%; }
  .cta-band .btn-row { flex-direction: column; }
}

/* Subtle entrance for hero on load */
@media (prefers-reduced-motion: no-preference) {
  .hero h1, .hero .lede, .hero .btn-row, .hero-trust {
    animation: rise .8s ease both;
  }
  .hero .lede { animation-delay: .1s; }
  .hero .btn-row { animation-delay: .2s; }
  .hero-trust { animation-delay: .3s; }
}
@keyframes rise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
