/* ===================================================================
   Classic Corporate Coaching
   Custom CSS  |  Charcoal + Brass  |  Light/Dark
   Fraunces (headings) + Inter (body)
   =================================================================== */

/* --- Custom Properties ------------------------------------------- */
:root {
  --bg: #fafaf8;
  --bg-alt: #f2f1ed;
  --bg-card: #ffffff;
  --text: #1c1f26;
  --text-muted: #5c6070;
  --primary: #1c1f26;
  --primary-light: #333742;
  --accent: #b08d57;
  --accent-light: #c9a76c;
  --accent-dark: #8e7245;
  --border: #dddcd8;
  --shadow: 0 1px 3px rgba(0,0,0,.05), 0 1px 2px rgba(0,0,0,.03);
  --shadow-md: 0 4px 14px rgba(0,0,0,.06), 0 2px 4px rgba(0,0,0,.03);
  --shadow-lg: 0 12px 36px rgba(0,0,0,.08), 0 4px 8px rgba(0,0,0,.03);
  --radius: 6px;
  --radius-lg: 10px;
  --transition: .25s ease;
  color-scheme: light;
}

[data-theme="dark"] {
  --bg: #111318;
  --bg-alt: #191c22;
  --bg-card: #1e2128;
  --text: #e4e5ea;
  --text-muted: #8d90a0;
  --primary: #e4e5ea;
  --primary-light: #cccdd4;
  --accent: #c9a76c;
  --accent-light: #dfc08a;
  --accent-dark: #b08d57;
  --border: #2a2d36;
  --shadow: 0 1px 3px rgba(0,0,0,.2), 0 1px 2px rgba(0,0,0,.14);
  --shadow-md: 0 4px 14px rgba(0,0,0,.24), 0 2px 4px rgba(0,0,0,.14);
  --shadow-lg: 0 12px 36px rgba(0,0,0,.3), 0 4px 8px rgba(0,0,0,.14);
  color-scheme: dark;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-bottom: 2.25rem;
}

body.no-fouc { opacity: 0; }
body.no-fouc.ready { opacity: 1; transition: opacity .15s ease; }

img { display: block; max-width: 100%; height: auto; }
a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-light); }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
  font-optical-sizing: auto;
}

h1 { font-size: clamp(2.25rem, 1.8rem + 2.25vw, 3.5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.75rem, 1.4rem + 1.75vw, 2.75rem); letter-spacing: -0.015em; }
h3 { font-size: clamp(1.25rem, 1.1rem + 0.75vw, 1.625rem); }
h4 { font-size: clamp(1.1rem, 1rem + 0.5vw, 1.375rem); }

p + p { margin-top: 1em; }

/* --- Layout ------------------------------------------------------ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.container-narrow {
  max-width: 800px;
}

.section {
  padding: clamp(3rem, 2rem + 5vw, 6rem) 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto clamp(2rem, 1.5rem + 2.5vw, 3.5rem);
}

.section-header p {
  margin-top: .75rem;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .5rem;
}

/* --- Grid Utilities ---------------------------------------------- */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 960px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

/* --- Buttons ----------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: .9375rem;
  padding: .75rem 1.5rem;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1.4;
}

.btn-primary {
  background: var(--primary);
  color: var(--bg);
}
.btn-primary:hover {
  background: var(--primary-light);
  color: var(--bg);
}
[data-theme="dark"] .btn-primary {
  background: var(--accent);
  color: #111318;
}
[data-theme="dark"] .btn-primary:hover {
  background: var(--accent-light);
  color: #111318;
}

.btn-accent {
  background: var(--accent);
  color: #fff;
}
.btn-accent:hover {
  background: var(--accent-light);
  color: #fff;
}

.btn-outline {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-ghost {
  background: transparent;
  color: var(--accent);
  padding: .5rem .75rem;
}
.btn-ghost:hover {
  background: var(--bg-alt);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

/* --- Card -------------------------------------------------------- */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 1.25rem + 1vw, 2rem);
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition), transform var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-alt);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  color: var(--accent);
}

[data-theme="dark"] .card-icon {
  background: rgba(201, 167, 108, .1);
}

.card-icon svg {
  width: 24px;
  height: 24px;
}

.card h3 {
  margin-bottom: .5rem;
}

.card p {
  color: var(--text-muted);
  font-size: .95rem;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  font-weight: 600;
  font-size: .875rem;
  margin-top: 1rem;
  color: var(--accent);
}

.card-link svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition);
}

.card-link:hover svg {
  transform: translateX(3px);
}

/* --- Navigation -------------------------------------------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}

.nav.scrolled {
  box-shadow: var(--shadow-md);
}

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

.nav-logo {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--text);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: -0.01em;
}
.nav-logo:hover { color: var(--text); }

.nav-logo .logo-mark {
  color: var(--accent);
}

.nav-links {
  display: none;
  list-style: none;
  gap: .25rem;
}

.nav-links li { list-style: none; }

.nav-links a {
  display: block;
  padding: .5rem .75rem;
  font-size: .9375rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  background: var(--bg-alt);
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: .25rem;
  cursor: pointer;
}

.nav-dropdown-trigger svg {
  width: 14px;
  height: 14px;
  transition: transform var(--transition);
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + .5rem);
  left: 0;
  min-width: 220px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: .5rem;
  z-index: 110;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  display: block;
}

.nav-dropdown:hover .nav-dropdown-trigger svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu a {
  padding: .625rem .875rem;
  font-size: .875rem;
  border-radius: var(--radius);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: .5rem;
}

.nav-phone {
  display: none;
  font-weight: 600;
  font-size: .875rem;
  color: var(--text);
  white-space: nowrap;
}

.nav-phone svg {
  width: 16px;
  height: 16px;
  margin-right: .25rem;
  vertical-align: middle;
}

.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition);
}

.theme-toggle:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.theme-toggle svg { width: 20px; height: 20px; }
.theme-toggle .icon-moon { display: block; }
.theme-toggle .icon-sun { display: none; }
[data-theme="dark"] .theme-toggle .icon-moon { display: none; }
[data-theme="dark"] .theme-toggle .icon-sun { display: block; }

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition);
}

.hamburger:hover {
  border-color: var(--accent);
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: all var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 72px 0 0 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 1.5rem;
  z-index: 99;
  overflow-y: auto;
}

.mobile-menu.open {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: .875rem 0;
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  text-align: left;
}

.mobile-menu a:last-child {
  border-bottom: none;
}

.mobile-menu-phone {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-top: 1.5rem;
  padding: .875rem 1.25rem;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius);
  font-weight: 600;
  justify-content: center;
}

.mobile-menu-phone:hover { color: #fff; }

.mobile-menu .mobile-sub-label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 1.25rem 0 .25rem;
  border-bottom: none;
}

@media (min-width: 768px) {
  .nav-links { display: flex; }
  .nav-phone { display: inline-flex; align-items: center; }
  .hamburger { display: none; }
}

/* --- Hero -------------------------------------------------------- */
.hero {
  padding: clamp(4rem, 3rem + 6vw, 8rem) 0 clamp(3rem, 2rem + 5vw, 6rem);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 1.5rem + 3vw, 4rem);
  align-items: center;
}

.hero-content {
  max-width: 580px;
}

.hero h1 {
  margin-bottom: 1.25rem;
}

.hero h1 .accent {
  color: var(--accent);
}

.hero-lead {
  font-size: clamp(1.05rem, 1rem + .25vw, 1.2rem);
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8125rem;
  font-weight: 500;
  color: var(--text-muted);
}

.hero-trust-item svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
  flex-shrink: 0;
}

.hero-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(176, 141, 87, .15);
  border-radius: var(--radius-lg);
  pointer-events: none;
}

@media (min-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* --- Pull Quote Band (Signature Moment) -------------------------- */
.pull-quote-band {
  background: var(--primary);
  color: var(--bg);
  padding: clamp(2.5rem, 2rem + 3vw, 4rem) 0;
  text-align: center;
}

[data-theme="dark"] .pull-quote-band {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.pull-quote-band blockquote {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.25rem, 1.1rem + 0.75vw, 1.75rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.5;
  max-width: 720px;
  margin: 0 auto;
  color: inherit;
}

[data-theme="dark"] .pull-quote-band blockquote {
  color: var(--text);
}

.pull-quote-band .quote-line {
  width: 48px;
  height: 3px;
  background: var(--accent);
  margin: 0 auto 1.5rem;
  border-radius: 2px;
}

.pull-quote-band cite {
  display: block;
  margin-top: 1.25rem;
  font-style: normal;
  font-family: 'Inter', sans-serif;
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--accent);
}

[data-theme="dark"] .pull-quote-band cite {
  color: var(--accent);
}

/* --- Process / Methodology --------------------------------------- */
.process-grid {
  counter-reset: step;
  max-width: 640px;
}

.process-step {
  position: relative;
  padding-left: 4rem;
  padding-bottom: 2.5rem;
}

.process-step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.125rem;
  border-radius: 50%;
}

.process-step::after {
  content: '';
  position: absolute;
  left: 1.4375rem;
  top: 3rem;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.process-step:last-child::after { display: none; }
.process-step:last-child { padding-bottom: 0; }

.process-step h3 { margin-bottom: .375rem; }
.process-step p { color: var(--text-muted); font-size: .95rem; }

/* --- Testimonials ------------------------------------------------ */
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 1.25rem + 1vw, 2rem);
  box-shadow: var(--shadow);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: .75rem;
  right: 1.25rem;
  font-family: 'Fraunces', serif;
  font-size: 3rem;
  line-height: 1;
  color: var(--accent);
  opacity: .2;
}

.testimonial-text {
  font-size: .95rem;
  color: var(--text);
  margin-bottom: 1rem;
  font-style: italic;
}

.testimonial-author {
  font-weight: 600;
  font-size: .875rem;
  color: var(--text);
}

.testimonial-role {
  font-size: .8125rem;
  color: var(--text-muted);
}

/* --- Stats Rail -------------------------------------------------- */
.stats-rail {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  text-align: center;
}

@media (min-width: 640px) {
  .stats-rail { grid-template-columns: repeat(4, 1fr); }
}

.stat-item {
  padding: 1.5rem 1rem;
}

.stat-number {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(2rem, 1.5rem + 2.5vw, 3rem);
  color: var(--accent);
  line-height: 1;
  margin-bottom: .375rem;
}

.stat-label {
  font-size: .8125rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* --- FAQ --------------------------------------------------------- */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: .75rem;
  background: var(--bg-card);
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 1.25rem;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
  gap: 1rem;
}

.faq-question:hover { color: var(--accent); }

.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--text-muted);
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}

.faq-item.open .faq-answer { max-height: 500px; }

.faq-answer-inner {
  padding: 0 1.25rem 1.25rem;
  color: var(--text-muted);
  font-size: .95rem;
  line-height: 1.7;
}

/* --- CTA Section ------------------------------------------------- */
.cta-section {
  background: var(--primary);
  color: #fff;
  text-align: center;
  padding: clamp(3rem, 2rem + 5vw, 5rem) 0;
}

[data-theme="dark"] .cta-section {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}

.cta-section h2 {
  color: #fff;
  margin-bottom: .75rem;
}

[data-theme="dark"] .cta-section h2 {
  color: var(--text);
}

.cta-section p {
  color: rgba(255,255,255,.8);
  max-width: 560px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
}

[data-theme="dark"] .cta-section p {
  color: var(--text-muted);
}

.cta-section .btn-accent {
  font-size: 1.0625rem;
  padding: 1rem 2rem;
}

.cta-phone {
  margin-top: 1rem;
  font-size: .9375rem;
  color: rgba(255,255,255,.7);
}

[data-theme="dark"] .cta-phone {
  color: var(--text-muted);
}

.cta-phone a {
  color: #fff;
  font-weight: 600;
}

[data-theme="dark"] .cta-phone a {
  color: var(--accent);
}

/* --- Contact Form ------------------------------------------------ */
.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: .875rem;
  margin-bottom: .375rem;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .75rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: .9375rem;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(176, 141, 87, .12);
}

[data-theme="dark"] .form-group input:focus,
[data-theme="dark"] .form-group select:focus,
[data-theme="dark"] .form-group textarea:focus {
  box-shadow: 0 0 0 3px rgba(201, 167, 108, .15);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

@media (min-width: 640px) {
  .form-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0 1.25rem;
  }
}

.form-status {
  padding: 1rem;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: .9375rem;
  margin-top: 1rem;
  display: none;
}

.form-status.success {
  display: block;
  background: rgba(176, 141, 87, .1);
  color: var(--accent-dark);
  border: 1px solid var(--accent);
}

[data-theme="dark"] .form-status.success {
  color: var(--accent-light);
}

.form-status.error {
  display: block;
  background: rgba(192, 57, 43, .08);
  color: #c0392b;
  border: 1px solid #c0392b;
}

/* --- Split Narrative --------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 1.5rem + 3vw, 4rem);
  align-items: center;
}

@media (min-width: 768px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split-reverse { direction: rtl; }
  .split-reverse > * { direction: ltr; }
}

.split-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.split-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.split-content .label {
  margin-bottom: .75rem;
}

.split-content h2 {
  margin-bottom: 1rem;
}

.split-content p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.split-content ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.5rem;
}

.split-content ul li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: .625rem;
  color: var(--text-muted);
}

.split-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .55em;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
}

/* --- Service Detail Layout --------------------------------------- */
.service-hero {
  padding: clamp(3rem, 2rem + 5vw, 5rem) 0;
  background: var(--bg-alt);
}

.service-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 960px) {
  .service-layout { grid-template-columns: 1fr 340px; }
}

.service-content { max-width: 760px; }
.service-content h2 { margin-top: 2.5rem; margin-bottom: .75rem; }
.service-content p { color: var(--text-muted); margin-bottom: 1rem; }

.service-content ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.5rem;
}

.service-content ul li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: .625rem;
  color: var(--text-muted);
}

.service-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .55em;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
}

.service-sidebar {
  position: sticky;
  top: 96px;
}

.service-sidebar .card {
  margin-bottom: 1.5rem;
}

/* --- Footer ------------------------------------------------------ */
.footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: clamp(2.5rem, 2rem + 3vw, 4rem) 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 640px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
}

.footer-brand { max-width: 320px; }

.footer-brand .nav-logo {
  display: inline-block;
  margin-bottom: .75rem;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: .9375rem;
}

.footer h4 {
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-family: 'Inter', sans-serif;
}

.footer-links {
  list-style: none;
}

.footer-links li { margin-bottom: .5rem; }

.footer-links a {
  color: var(--text-muted);
  font-size: .9375rem;
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.25rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: .75rem;
  font-size: .8125rem;
  color: var(--text-muted);
}

.footer-bottom a { color: var(--text-muted); }
.footer-bottom a:hover { color: var(--accent); }

.footer-credit {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-credit a {
  color: var(--accent);
  font-weight: 500;
}

/* --- Page Header ------------------------------------------------- */
.page-header {
  background: var(--bg-alt);
  padding: clamp(3rem, 2rem + 4vw, 5rem) 0;
  text-align: center;
}

.page-header p {
  margin-top: .75rem;
  color: var(--text-muted);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.05rem;
}

/* --- Breadcrumb -------------------------------------------------- */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: .375rem;
  font-size: .8125rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  justify-content: center;
}

.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--accent); }

/* --- Contact Info Cards ------------------------------------------ */
.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}

.contact-info-card:last-child { border-bottom: none; }

.contact-info-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-alt);
  border-radius: var(--radius);
  color: var(--accent);
  flex-shrink: 0;
}

.contact-info-icon svg { width: 20px; height: 20px; }

.contact-info-text h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: .9375rem;
  margin-bottom: .125rem;
}

.contact-info-text p,
.contact-info-text a {
  color: var(--text-muted);
  font-size: .9375rem;
}

/* --- Disclaimer Bar ---------------------------------------------- */
.disclaimer-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 101;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: .625rem 1rem;
  font-size: .75rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.5;
}

/* --- Skip Link --------------------------------------------------- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  padding: .5rem 1rem;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius);
  font-weight: 600;
  z-index: 200;
  transition: top .2s ease;
}

.skip-link:focus {
  top: .5rem;
  color: #fff;
}

/* --- Reveal Animation -------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- About Image ------------------------------------------------- */
.about-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* --- 404 --------------------------------------------------------- */
.four-oh-four {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.25rem;
}

.four-oh-four h1 {
  font-size: clamp(5rem, 4rem + 5vw, 8rem);
  color: var(--accent);
  opacity: .25;
  line-height: 1;
  margin-bottom: 1rem;
}

.four-oh-four h2 {
  margin-bottom: .75rem;
}

.four-oh-four p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

/* --- Whimsy ------------------------------------------------------ */
@media (prefers-reduced-motion: no-preference) {
  .hero-trust-item svg {
    animation: gentle-bounce 2.8s ease-in-out infinite;
  }
  .hero-trust-item:nth-child(2) svg { animation-delay: .35s; }
  .hero-trust-item:nth-child(3) svg { animation-delay: .7s; }

  @keyframes gentle-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-2px); }
  }

  .card {
    transition: box-shadow var(--transition), transform .3s ease;
  }

  .pull-quote-band .quote-line {
    animation: line-breathe 4s ease-in-out infinite;
  }

  @keyframes line-breathe {
    0%, 100% { width: 48px; }
    50% { width: 64px; }
  }
}

/* --- Misc -------------------------------------------------------- */
.text-center { text-align: center; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }

@media (max-width: 767px) {
  .hide-mobile { display: none; }
}

/* --- Print ------------------------------------------------------- */
@media print {
  .nav, .footer, .cta-section, .theme-toggle, .hamburger, .mobile-menu, .disclaimer-bar { display: none; }
  body { background: #fff; color: #000; padding-bottom: 0; }
  .section { padding: 1.5rem 0; }
}
