:root {
  --navy: #142c4d;
  --navy-deep: #0d1f38;
  --navy-light: #1e4170;
  --silver: #c0c2c7;
  --silver-light: #dcdde0;
  --silver-deep: #6f7278;
  --silver-graphite: #4a4c52;
  --cream: #faf8f5;
  --paper: #f3f1ec;
  --ink: #1a1a1a;
  --charcoal: #3a3a3a;
  --muted: #6b6b6b;
  --border: #e2ddd4;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Source Sans 3", -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ===== NAV ===== */
.nav {
  position: sticky;
  top: 0;
  background: rgba(250, 248, 245, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
  padding: 0.9rem 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-left {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  flex-shrink: 1;
  min-width: 0;
}
.logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo-img {
  height: 48px;
  width: auto;
  display: block;
}
.nav-contact {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  border-left: 1px solid var(--border);
  padding-left: 1.4rem;
  line-height: 1.25;
}
.nav-contact a {
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s;
}
.nav-contact .phone {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.nav-contact .phone:hover { color: var(--silver-deep); }
.nav-contact .email {
  font-size: 0.78rem;
  color: var(--silver-deep);
  font-weight: 500;
}
.nav-contact .email:hover { color: var(--navy); }
.nav-links {
  display: flex;
  gap: 2.2rem;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.nav-links a {
  color: var(--charcoal);
  transition: color 0.2s;
  position: relative;
}
.nav-links a:hover,
.nav-links a.active { color: var(--navy); }
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--silver-deep);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-cta {
  background: var(--navy);
  color: var(--cream);
  padding: 0.75rem 1.4rem;
  border-radius: 2px;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  transition: background 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--navy);
  white-space: nowrap;
}
.nav-cta:hover { background: var(--navy-light); }

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
  transition: 0.3s;
}

/* ===== PHOTO BAND (HOME) ===== */
.photo-band {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: var(--navy-deep);
}
.photo-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.92) contrast(1.02);
}
.photo-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,31,56,0.2) 0%, rgba(13,31,56,0.05) 35%, rgba(13,31,56,0.05) 65%, rgba(250,248,245,0.7) 100%);
  pointer-events: none;
}
.photo-band-caption {
  position: absolute;
  bottom: 1.6rem;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 2;
  padding: 0 1.5rem;
}
.photo-band-caption span {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--cream);
  font-weight: 500;
  font-style: italic;
  background: rgba(13, 31, 56, 0.92);
  border: 1px solid rgba(192, 194, 199, 0.45);
  padding: 1rem 1.7rem;
  display: inline-block;
  position: relative;
  max-width: 720px;
  line-height: 1.35;
  letter-spacing: -0.005em;
  backdrop-filter: blur(6px);
  box-shadow: 0 8px 30px -8px rgba(0,0,0,0.5);
}
.photo-band-caption span::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(192, 194, 199, 0.25);
  pointer-events: none;
}

/* ===== PAGE HEADER (non-home pages) ===== */
.page-header {
  background: var(--navy);
  color: var(--cream);
  padding: 5rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(220, 221, 224, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(192, 194, 199, 0.06) 0%, transparent 50%);
  pointer-events: none;
}
.page-header-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
}
.page-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--silver);
  font-weight: 500;
  margin-bottom: 1.3rem;
}
.page-header h1 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.4rem;
}
.page-header h1 em {
  font-style: italic;
  color: var(--silver-light);
  font-weight: 500;
}
.page-header-sub {
  font-size: 1.2rem;
  line-height: 1.6;
  color: rgba(250, 248, 245, 0.85);
  max-width: 660px;
  font-weight: 300;
}

/* ===== HERO (home only) ===== */
.hero {
  background: var(--navy);
  color: var(--cream);
  padding: 3.5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(220, 221, 224, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(192, 194, 199, 0.06) 0%, transparent 50%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--silver);
  font-weight: 500;
  margin-bottom: 1.1rem;
}
.hero h1 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.2rem;
}
.hero h1 em {
  font-style: italic;
  color: var(--silver-light);
  font-weight: 500;
}
.hero-sub {
  font-size: 1.05rem;
  line-height: 1.55;
  color: rgba(250, 248, 245, 0.85);
  max-width: 660px;
  margin-bottom: 1.6rem;
  font-weight: 300;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  align-items: center;
}

/* ===== HERO SERVICES PILLS ===== */
.hero-services-label {
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--silver);
  font-weight: 600;
  margin-bottom: 0.7rem;
}
.hero-services {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.8rem;
  max-width: 760px;
}
.hero-service-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.95rem;
  border: 1px solid rgba(192, 194, 199, 0.32);
  border-radius: 100px;
  background: rgba(192, 194, 199, 0.07);
  color: var(--cream);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.005em;
  transition: all 0.2s;
  white-space: nowrap;
}
.hero-service-pill:hover {
  border-color: var(--silver);
  background: rgba(192, 194, 199, 0.18);
  transform: translateY(-1px);
  color: var(--silver-light);
}

/* ===== SLIM STATS BAR (between hero and services preview) ===== */
.stats-bar {
  background: var(--navy-deep);
  padding: 1.6rem 0;
  border-top: 1px solid rgba(192, 194, 199, 0.15);
}
.stats-bar-inner {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
  align-items: center;
}
.stats-bar .stat {
  flex-direction: row;
  align-items: center;
  gap: 0.8rem;
}
.stats-bar .stat-num {
  font-size: 1.6rem;
  margin-bottom: 0;
  color: var(--silver-light);
}
.stats-bar .stat-label {
  font-size: 0.75rem;
  color: rgba(250, 248, 245, 0.7);
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: linear-gradient(145deg, var(--silver-light), var(--silver));
  color: var(--navy-deep);
  padding: 1.15rem 2rem;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  border-radius: 2px;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid var(--silver-light);
  text-transform: uppercase;
  box-shadow: 0 4px 20px -5px rgba(0,0,0,0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px -5px rgba(0,0,0,0.4);
}
.btn-primary .arrow { display: inline-block; transition: transform 0.2s; }
.btn-primary:hover .arrow { transform: translateX(4px); }

.btn-ghost {
  color: var(--cream);
  font-weight: 500;
  font-size: 1rem;
  border-bottom: 1px solid var(--silver);
  padding-bottom: 4px;
  transition: color 0.2s;
}
.btn-ghost:hover { color: var(--silver-light); }

.btn-link-dark {
  color: var(--navy);
  font-weight: 600;
  font-size: 1rem;
  border-bottom: 1px solid var(--silver-deep);
  padding-bottom: 3px;
  transition: color 0.2s;
  display: inline-block;
}
.btn-link-dark:hover { color: var(--silver-deep); }

/* ===== STATS ===== */
.hero-stats {
  display: flex;
  gap: 3.5rem;
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(192, 194, 199, 0.25);
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--serif);
  font-size: 2.3rem;
  color: var(--silver-light);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-label {
  font-size: 0.82rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(250, 248, 245, 0.7);
  font-weight: 500;
}

/* ===== SECTIONS ===== */
section { padding: 6rem 0; }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--silver-deep);
  font-weight: 600;
  margin-bottom: 1.2rem;
}
.section-title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(2rem, 3.8vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--navy);
  margin-bottom: 1rem;
}
.section-title em {
  font-style: italic;
  color: var(--silver-deep);
  font-weight: 500;
}
.section-intro {
  font-size: 1.15rem;
  color: var(--charcoal);
  max-width: 680px;
  line-height: 1.65;
  margin-bottom: 3.5rem;
}

/* ===== SERVICES PREVIEW (home page compact grid) ===== */
.services-preview {
  background: var(--cream);
  padding: 5rem 0 4rem;
  border-bottom: 1px solid var(--border);
}
.services-preview-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}
.services-preview-header .section-eyebrow { justify-content: center; }
.services-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-bottom: 2.5rem;
}
.preview-card {
  background: var(--paper);
  border: 1px solid var(--border);
  padding: 1.6rem 1.5rem;
  position: relative;
  transition: transform 0.2s, border-color 0.2s, background 0.2s;
}
.preview-card:hover {
  transform: translateY(-3px);
  border-color: var(--silver-deep);
  background: #fff;
  box-shadow: 0 12px 28px -12px rgba(20, 44, 77, 0.18);
}
.preview-card-num {
  font-family: var(--serif);
  font-size: 0.78rem;
  color: var(--silver-deep);
  font-weight: 600;
  letter-spacing: 0.12em;
  margin-bottom: 0.5rem;
}
.preview-card h3 {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.25;
}
.preview-card p {
  color: var(--charcoal);
  font-size: 0.92rem;
  line-height: 1.5;
}
.services-preview-footer {
  text-align: center;
}

/* ===== CONTACT HERO (prominent contact info) ===== */
.contact-hero {
  background: var(--navy);
  color: var(--cream);
  padding: 4rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(220, 221, 224, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(192, 194, 199, 0.06) 0%, transparent 50%);
  pointer-events: none;
}
.contact-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.contact-hero h1 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 1.2rem;
}
.contact-hero h1 em {
  font-style: italic;
  color: var(--silver-light);
  font-weight: 500;
}
.contact-hero-sub {
  font-size: 1.15rem;
  line-height: 1.6;
  color: rgba(250, 248, 245, 0.85);
  max-width: 620px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
}
.contact-hero .contact-card {
  margin-top: 0;
  margin-bottom: 2rem;
}
.contact-hero .btn-cta-big { margin-top: 0.5rem; }
.contact-hero .cta-sub-text {
  font-size: 0.85rem;
  color: rgba(250, 248, 245, 0.6);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  margin-top: 1.2rem;
}

/* ===== HOME OVERVIEW ===== */
.home-overview { background: var(--cream); }
.home-overview .section-intro { margin-bottom: 2rem; }
.overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.overview-card {
  background: var(--paper);
  border: 1px solid var(--border);
  padding: 2.2rem 1.8rem;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.overview-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -15px rgba(20, 44, 77, 0.15);
  border-color: var(--silver-deep);
  background: #fff;
}
.overview-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--navy);
}
.overview-card h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 0.8rem;
}
.overview-card p {
  color: var(--charcoal);
  font-size: 0.97rem;
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

/* ===== WHO WE ARE ===== */
.who { background: var(--cream); }
.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.who-lead {
  font-family: var(--serif);
  font-size: 1.7rem;
  line-height: 1.4;
  color: var(--navy);
  font-weight: 500;
}
.who-lead em { color: var(--silver-deep); font-style: italic; }
.who-body p {
  margin-bottom: 1.3rem;
  color: var(--charcoal);
  font-size: 1.05rem;
}
.who-body p:last-child { margin-bottom: 0; }

/* ===== PRACTICE AREAS ===== */
.practices {
  background: var(--paper);
  text-align: center;
  padding: 4.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.practices-label {
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--silver-deep);
  font-weight: 600;
  margin-bottom: 1.8rem;
}
.practices-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem 2.5rem;
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--navy);
  font-weight: 500;
  font-style: italic;
}
.practices-list span { white-space: nowrap; }
.practices-list span.dot {
  color: var(--silver);
  font-style: normal;
  font-weight: 300;
}

/* ===== SERVICES ===== */
.services { background: var(--cream); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service {
  background: var(--paper);
  border: 1px solid var(--border);
  padding: 2.2rem 2rem;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.service:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -15px rgba(20, 44, 77, 0.15);
  border-color: var(--silver-deep);
  background: #fff;
}
.service::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--navy);
}
.service:hover::before {
  background: linear-gradient(90deg, var(--silver-deep), var(--silver));
}
.service-num {
  font-family: var(--serif);
  font-size: 0.9rem;
  color: var(--silver-deep);
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.service h3 {
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--navy);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 0.9rem;
}
.service p {
  color: var(--charcoal);
  font-size: 0.97rem;
  line-height: 1.6;
}
.service ul { list-style: none; margin-top: 0.8rem; }
.service ul li {
  color: var(--charcoal);
  font-size: 0.95rem;
  padding-left: 1.1rem;
  position: relative;
  margin-bottom: 0.4rem;
}
.service ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 6px;
  height: 1px;
  background: var(--silver-deep);
}

/* ===== BUILT AROUND YOUR FIRM ===== */
.built {
  background: var(--paper);
  border-top: 1px solid var(--border);
}
.built-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: center;
}
.built-visual {
  background: var(--navy);
  padding: 3rem 2.5rem;
  color: var(--cream);
  position: relative;
  border: 1px solid rgba(192, 194, 199, 0.25);
}
.built-visual::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(192, 194, 199, 0.2);
  pointer-events: none;
}
.built-visual h4 {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--silver);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.built-list { list-style: none; }
.built-list li {
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(192, 194, 199, 0.15);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.built-list li:last-child { border-bottom: none; }
.built-list .checkmark {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border: 1px solid var(--silver);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--silver-light);
  font-size: 0.7rem;
  margin-top: 2px;
}
.built-list strong {
  display: block;
  color: var(--cream);
  font-weight: 600;
  margin-bottom: 0.2rem;
  font-family: var(--serif);
  font-size: 1.05rem;
}
.built-list span {
  color: rgba(250, 248, 245, 0.75);
  font-size: 0.95rem;
}
.built-body p {
  font-size: 1.1rem;
  color: var(--charcoal);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}
.built-body p:last-child { margin-bottom: 0; }
.built-body em { font-style: italic; color: var(--silver-deep); }

/* ===== BENEFITS ===== */
.benefits {
  background: var(--navy);
  color: var(--cream);
  position: relative;
}
.benefits::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--silver), transparent);
}
.benefits .section-eyebrow { color: var(--silver); }
.benefits .section-title { color: var(--cream); }
.benefits .section-title em { color: var(--silver-light); }
.benefits .section-intro { color: rgba(250, 248, 245, 0.8); }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 2rem;
}
.benefit {
  padding-top: 2rem;
  border-top: 1px solid rgba(192, 194, 199, 0.35);
}
.benefit-num {
  font-family: var(--serif);
  font-size: 3rem;
  color: var(--silver-light);
  font-weight: 500;
  line-height: 1;
  font-style: italic;
  margin-bottom: 1rem;
}
.benefit h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--cream);
}
.benefit p {
  color: rgba(250, 248, 245, 0.8);
  font-size: 1rem;
  line-height: 1.65;
}

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--paper); }
.testimonials-header { text-align: center; max-width: 720px; margin: 0 auto 4rem; }
.testimonials-header .section-eyebrow { justify-content: center; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}
.testimonials-grid.testimonials-grid-2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 1000px;
  margin: 0 auto;
}
.testimonial {
  background: var(--cream);
  border: 1px solid var(--border);
  padding: 2.5rem 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
}
.testimonial::before {
  content: "\201C";
  font-family: var(--serif);
  font-size: 5rem;
  color: var(--silver);
  position: absolute;
  top: 0.2rem;
  left: 1.3rem;
  line-height: 1;
  font-style: italic;
}
.testimonial-body {
  position: relative;
  z-index: 2;
  color: var(--charcoal);
  font-size: 1rem;
  line-height: 1.7;
  margin-top: 2rem;
  margin-bottom: 1.8rem;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  flex-grow: 1;
}
.testimonial-attribution {
  border-top: 1px solid var(--border);
  padding-top: 1.2rem;
  font-size: 0.92rem;
  color: var(--silver-deep);
  font-weight: 600;
  letter-spacing: 0.04em;
}
.testimonial-role {
  display: block;
  font-family: var(--serif);
  font-style: normal;
  color: var(--navy);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

/* Featured single testimonial (home page) */
.testimonial-featured {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  background: transparent;
  border: none;
  padding: 0;
}
.testimonial-featured::before { display: none; }
.testimonial-featured .testimonial-body {
  font-size: 1.4rem;
  line-height: 1.5;
  color: var(--navy);
  margin-top: 0;
}
.testimonial-featured .testimonial-attribution {
  border-top: none;
  text-align: center;
  padding-top: 0;
}
.testimonial-featured-mark {
  font-family: var(--serif);
  font-size: 4rem;
  color: var(--silver);
  line-height: 1;
  margin-bottom: 1rem;
  font-style: italic;
}

/* ===== HOW IT WORKS ===== */
.process { background: var(--cream); }
.process-header { text-align: center; max-width: 720px; margin: 0 auto 4rem; }
.process-header .section-eyebrow { justify-content: center; }
.process-header .section-intro { margin: 0 auto; }

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}
.step {
  background: var(--paper);
  padding: 2.5rem 2rem;
  border: 1px solid var(--border);
  text-align: center;
  position: relative;
}
.step-number {
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--silver);
  line-height: 1;
  margin-bottom: 1.2rem;
  font-style: italic;
}
.step h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 0.8rem;
}
.step p {
  color: var(--charcoal);
  font-size: 0.98rem;
  line-height: 1.6;
}
.step-arrow {
  position: absolute;
  right: -1.5rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--silver);
  font-size: 1.5rem;
  z-index: 2;
}
.step:last-child .step-arrow { display: none; }

/* ===== FAQ ===== */
.faq { background: var(--paper); }
.faq-list { max-width: 900px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.8rem 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--navy);
  font-weight: 600;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--silver-deep); }
.faq-toggle {
  width: 32px;
  height: 32px;
  border: 1px solid var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s;
  position: relative;
}
.faq-toggle::before, .faq-toggle::after {
  content: "";
  position: absolute;
  background: var(--navy);
  transition: all 0.3s;
}
.faq-toggle::before { width: 12px; height: 1.5px; }
.faq-toggle::after { width: 1.5px; height: 12px; }
.faq-item.open .faq-toggle {
  background: var(--navy);
  border-color: var(--navy);
}
.faq-item.open .faq-toggle::before { background: var(--silver-light); }
.faq-item.open .faq-toggle::after { opacity: 0; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  color: var(--charcoal);
  font-size: 1.05rem;
  line-height: 1.7;
}
.faq-item.open .faq-a {
  max-height: 600px;
  padding: 0 0 1.8rem 0;
}

/* ===== CTA SECTION (used on multiple pages) ===== */
.cta-final {
  background: var(--navy-deep);
  color: var(--cream);
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(192, 194, 199, 0.1) 0%, transparent 60%);
  pointer-events: none;
}
.cta-final-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.cta-final .section-eyebrow {
  color: var(--silver);
  justify-content: center;
}
.cta-final h2 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}
.cta-final h2 em {
  font-style: italic;
  color: var(--silver-light);
  font-weight: 500;
}
.cta-final-sub {
  font-size: 1.2rem;
  color: rgba(250, 248, 245, 0.8);
  margin-bottom: 3rem;
  font-weight: 300;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.contact-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 780px;
  margin: 0 auto 2.5rem;
  border: 1px solid rgba(192, 194, 199, 0.3);
  background: rgba(20, 44, 77, 0.4);
}
.contact-method {
  padding: 2.2rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.2s;
}
.contact-method:hover { background: rgba(192, 194, 199, 0.08); }
.contact-method + .contact-method { border-left: 1px solid rgba(192, 194, 199, 0.2); }
.contact-label {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--silver);
  font-weight: 600;
  margin-bottom: 0.3rem;
}
.contact-value {
  font-family: var(--serif);
  font-size: 1.55rem;
  color: var(--cream);
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: color 0.2s;
  word-break: break-word;
}
.contact-method:hover .contact-value { color: var(--silver-light); }

.btn-cta-big {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: linear-gradient(145deg, var(--silver-light), var(--silver));
  color: var(--navy-deep);
  padding: 1.3rem 2.5rem;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid var(--silver-light);
  box-shadow: 0 4px 20px -5px rgba(0,0,0,0.3);
}
.btn-cta-big:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px -5px rgba(0,0,0,0.5);
}
.cta-sub-text {
  font-size: 0.9rem;
  color: rgba(250, 248, 245, 0.6);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  margin-top: 1.5rem;
}

/* ===== FOOTER ===== */
footer {
  background: var(--navy-deep);
  color: rgba(250, 248, 245, 0.7);
  padding: 2.5rem 0 2rem;
  border-top: 1px solid rgba(192, 194, 199, 0.2);
  font-size: 0.9rem;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-logo-img { height: 38px; width: auto; display: block; }
.footer-nav { display: flex; gap: 2rem; flex-wrap: wrap; }
.footer-nav a:hover { color: var(--silver-light); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .nav-contact { display: none; }
}
@media (max-width: 900px) {
  .nav-links { display: none; }
  .mobile-toggle { display: block; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    padding: 1.5rem 2rem;
    gap: 1.2rem;
    border-bottom: 1px solid var(--border);
  }
  .logo-img { height: 38px; }
  section { padding: 4rem 0; }
  .hero { padding: 4rem 0 5rem; }
  .page-header { padding: 3.5rem 0 4rem; }
  .hero-stats { gap: 2rem; }
  .stat-num { font-size: 1.9rem; }
  .photo-band { height: 240px; }
  .photo-band-caption { bottom: 1.2rem; }
  .photo-band-caption span { font-size: 0.95rem; padding: 0.8rem 1.2rem; }
  .who-grid, .built-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .services-grid, .benefits-grid, .process-steps, .testimonials-grid, .overview-grid, .services-preview-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .benefits-grid { gap: 2.5rem; }
  .container { padding: 0 1.3rem; }
  .step-arrow { display: none; }
  .faq-q { font-size: 1.1rem; padding: 1.4rem 0; }
  .contact-card { grid-template-columns: 1fr; max-width: 420px; }
  .contact-method + .contact-method {
    border-left: none;
    border-top: 1px solid rgba(192, 194, 199, 0.2);
  }
  .contact-value { font-size: 1.3rem; }
  .footer-inner { flex-direction: column; text-align: center; }
  .practices-list { font-size: 1.05rem; gap: 0.5rem 1.5rem; }
  .built-visual { padding: 2rem 1.5rem; }
  .testimonial-featured .testimonial-body { font-size: 1.15rem; }
  .services-preview { padding: 3.5rem 0 3rem; }
  .contact-hero { padding: 3rem 0 4rem; }
  .stats-bar-inner { gap: 1.5rem; flex-direction: column; align-items: flex-start; padding: 0 0.5rem; }
  .stats-bar .stat-num { font-size: 1.4rem; }
  .hero-services { gap: 0.5rem; margin-bottom: 2rem; }
  .hero-service-pill { font-size: 0.82rem; padding: 0.45rem 0.9rem; }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow, .page-eyebrow { animation: fadeUp 0.7s ease-out; }
.hero h1, .page-header h1 { animation: fadeUp 0.8s ease-out 0.1s backwards; }
.hero-sub, .page-header-sub { animation: fadeUp 0.8s ease-out 0.2s backwards; }
.hero-cta { animation: fadeUp 0.8s ease-out 0.3s backwards; }
.hero-stats { animation: fadeUp 0.8s ease-out 0.4s backwards; }

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
