/* === variables.css === */
:root {
  /* ============================================================
     BRAND TOKENS — single source of truth
     ============================================================ */
  --color-brand:          #0f2e2a;
  --color-brand-rgb:      15, 46, 42;
  --color-brand-strong:   #0f2e2a;

  /* Header system — mathematically derived from --color-brand */
  --color-header-bg:      #e2e6e5;
  --color-header-line:    rgba(var(--color-brand-rgb), 0.08);
  --color-header-line-scrolled: rgba(var(--color-brand-rgb), 0.14);
  --color-header-shadow:  rgba(var(--color-brand-rgb), 0.06);
  --color-header-ink:     var(--color-brand);

  /* Semantic colors */
  --color-ink-950: #121212;
  --color-ink-800: #2a2a2a;
  --color-ink-700: #414141;
  --color-ink-500: #666;
  --color-paper: rgba(241, 244, 247, 0);
  --color-surface: #fffdf8;
  --color-line: #d9d2c6;
  --color-accent: #bc9656;
  --color-accent-soft: #e8d8bc;
  --color-success: #1f7a3f;
  --color-danger: #a52828;

  --font-body: "Inter", "Segoe UI", sans-serif;
  --font-display: "Cormorant Garamond", Georgia, serif;

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.3rem;
  --text-2xl: 1.7rem;
  --text-3xl: clamp(2rem, 4.8vw, 3rem);
  --text-4xl: clamp(2.4rem, 6.5vw, 4.2rem);

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --space-9: 5rem;

  --radius-sm: 0.35rem;
  --radius-md: 0.6rem;
  --radius-lg: 1rem;

  --shadow-sm: 0 2px 8px rgba(18, 18, 18, 0.08);
  --shadow-md: 0 10px 28px rgba(18, 18, 18, 0.13);

  --container: 1200px;
  --container-narrow: 760px;

  --transition-fast: 160ms ease;
  --transition-base: 260ms ease;

  --z-nav: 1000;
  --z-modal: 2000;
}

/* === reset.css === */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

button,
input,
textarea,
select {
  font: inherit;
}

:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* === typography.css === */
body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--color-ink-800);
  background: var(--color-paper);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  line-height: 1.1;
  color: var(--color-brand);
  margin: 0 0 var(--space-4);
}

h1 { font-size: var(--text-4xl); }
h2 { font-size: var(--text-3xl); }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl); }

p {
  margin: 0 0 var(--space-4);
}

.rto_body {
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.75;
  color: var(--color-ink-700);
  font-weight: 400;
}

.rto_body + .rto_body {
  margin-top: var(--space-4);
}

.rto_body_medium,
.rto_med {
  margin: 0;
  font-size: 1.03rem;
  line-height: 1.75;
  color: var(--color-ink-700);
  font-weight: 400;
}

.rto_body_small,
.rto_body_samll {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--color-ink-700);
  font-weight: 400;
}

.rto_measure_60 {
  max-width: 60ch;
}

.list-styled {
  list-style: disc;
  padding-left: 1.2rem;
  margin: 0;
}

.list-styled li {
  margin-bottom: 0.45rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.975rem;
  color: #7a746c;
  font-weight: 600;
  margin: 0 0 1.25rem;
}

.lead {
  margin: 0;
  font-size: 1.03rem;
  line-height: 1.75;
  color: var(--color-ink-700);
  font-weight: 400;
}

/* === components.css === */
.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.container-narrow {
  width: min(100% - 2rem, var(--container-narrow));
  margin-inline: auto;
}

.section {
  padding: var(--space-8) 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  padding: 0.72rem 1.1rem;
  font-weight: 600;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background-color var(--transition-fast);
}

.btn-primary {
  background: var(--color-brand);
  color: #fff;
}

.btn-primary:hover {
  background: var(--color-brand-strong);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  border-color: var(--color-brand);
  color: var(--color-brand);
}

.btn-secondary:hover {
  background: var(--color-brand);
  color: #fff;
}

.btn-accent {
  background: var(--color-accent);
  color: #1f1a12;
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.card {
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-fast);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: #c9b9a0;
}

.grid {
  display: grid;
  gap: var(--space-5);
}

.form-grid {
  display: grid;
  gap: var(--space-4);
}

label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  margin-bottom: var(--space-2);
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--color-line);
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 0.7rem 0.8rem;
  color: var(--color-ink-800);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--color-brand);
  box-shadow: 0 0 0 3px rgba(15, 47, 46, 0.14);
  outline: none;
}

.notice {
  padding: 0.8rem;
  border-left: 4px solid;
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
}

.notice-success {
  background: #e8f5ea;
  border-color: var(--color-success);
}

.notice-error {
  background: #fbeaea;
  border-color: var(--color-danger);
}

.site-footer {
  background: #111713;
  color: #dcd7cd;
}

.footer-grid {
  display: grid;
  gap: var(--space-5);
  grid-template-columns: 2fr 1fr 1fr;
}

.footer-bottom {
  border-top: 1px solid #2f3931;
  margin-top: var(--space-5);
  padding-top: var(--space-4);
  font-size: var(--text-sm);
  color: #bfb8aa;
}

.schedule-modal {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.62);
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--space-4);
  z-index: var(--z-modal);
}

.schedule-modal.is-open {
  display: flex;
}

.schedule-modal-dialog {
  background: #fff;
  border-radius: var(--radius-lg);
  width: min(940px, 100%);
  overflow: hidden;
}

.schedule-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-4);
  border-bottom: 1px solid var(--color-line);
}

.schedule-modal-close {
  border: 0;
  background: transparent;
  font-size: 1.5rem;
}

.schedule-modal-body {
  padding: var(--space-4);
}

.calendly-inline-widget {
  min-width: 320px;
  height: 700px;
}

/* Dropdown Navigation */
.main-nav-list { display: flex; gap: 2rem; align-items: center; list-style: none; margin: 0; padding: 0 0.5rem 0 0; }
.main-nav-list > li { position: relative; }
.has-dropdown { position: relative; }
.nav-dropdown-toggle {
  background: transparent; border: 0; font: inherit; color: inherit;
  cursor: pointer; padding: 0.5rem 0;
  display: inline-flex; align-items: center; gap: 0.4rem;
}
.nav-caret { font-size: 0.75em; transition: transform 180ms ease; display: inline-block; }
.has-dropdown.is-open .nav-caret { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute; top: 100%; left: 0; min-width: 260px;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 10px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.10);
  padding: 0.4rem 0; margin: 0.6rem 0 0;
  list-style: none;
  opacity: 0; visibility: hidden; transform: translateY(-4px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms;
  z-index: 50;
}
.has-dropdown:hover .nav-dropdown-menu,
.has-dropdown:focus-within .nav-dropdown-menu,
.has-dropdown.is-open .nav-dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-dropdown-menu a {
  display: block; padding: 0.6rem 1rem;
  color: #1f1d1a; text-decoration: none; white-space: nowrap;
  font-size: 0.95rem;
}
.nav-dropdown-menu a:hover { background: rgba(0,0,0,0.04); }

/* Logo */
.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: inherit;
}
.site-logo img {
  height: 32px;
  width: auto;
  display: block;
}
.site-logo__wordmark {
  /* Must match .main-nav-list a exactly */
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 400;
  letter-spacing: normal;
  color: var(--color-ink-700);
  line-height: 1.2;
  display: inline-block;
  text-transform: none;
}
.site-logo:hover { opacity: 0.85; }

/* Footer */
.fee-footer-dark {
  background: #0f2e2a;
  color: #d6dfdd;
  padding: 52px 0 28px;
  font-family: "Times New Roman", Times, serif;
}

.fee-footer-dark h3,
.fee-footer-dark p,
.fee-footer-dark li,
.fee-footer-dark a {
  font-family: "Times New Roman", Times, serif;
}

.site-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-top: 1rem;
}

.site-footer__contact a {
  display: inline-block;
  color: #d6dfdd;
  text-decoration: none;
  font-size: 0.98rem;
  line-height: 1.4;
  border-bottom: none !important;
  padding-bottom: 0;
  box-shadow: none !important;
}

.site-footer__contact a:hover {
  opacity: 0.78;
}

.site-footer__nav-group,
.site-footer__nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.site-footer__nav {
  gap: 0.45rem;
}

.site-footer__brand,
.site-footer__contact {
  align-items: flex-start;
  text-align: left;
}

.site-footer__brand p {
  max-width: 52ch;
  padding-right: 1.4rem;
  text-wrap: balance;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
  color: #d6dfdd;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 0.8fr 0.8fr;
  gap: 2rem;
  padding-bottom: 1.6rem;
  border-bottom: 1px solid rgba(214, 223, 221, 0.25);
}

.footer-col {
  text-align: left;
}

.footer-col h3 {
  font-family: "Times New Roman", Times, serif;
  margin: 0 0 0.8rem;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.footer-col p,
.footer-col li,
.footer-legal,
.footer-copy {
  font-size: 0.95rem;
  line-height: 1.65;
  color: #d6dfdd;
  margin: 0;
}

.footer-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.5rem;
}

.footer-col li:empty {
  display: none;
}

.footer-col a {
  color: #e7efed;
  text-decoration: none;
  border-bottom: none;
  padding-bottom: 0;
}

.footer-col a:hover {
  opacity: 0.78;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.footer-legal a {
  color: #e7efed;
  text-decoration: none;
  border-bottom: 1px solid rgba(231, 239, 237, 0.25);
  padding-bottom: 0.08rem;
}

.footer-legal a:hover {
  opacity: 0.78;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.9rem;
  margin-top: 0;
  border-top: 0;
  padding-top: 1rem;
}

/* ============================================================
   SERVICE PAGE SYSTEM
   Shared structure/tone for service detail pages.
   ============================================================ */

body.service-page {
  background: var(--color-paper);
  color: var(--color-ink-800);
}

body.service-page .page-hero {
  background: #0f2e2a;
  color: #f6f1e7;
  padding: clamp(3rem, 8vw, 6rem) 0 clamp(3rem, 8vw, 5rem);
}

body.service-page .page-hero .eyebrow {
  color: #c9b9a0;
}

body.service-page .page-hero .display-xl {
  font-family: var(--font-display, "Cormorant Garamond", Georgia, serif);
  font-weight: 500;
  font-size: clamp(2.4rem, 5.2vw, 4.2rem);
  line-height: 1.02;
  margin: 0.6rem 0 1rem;
  max-width: 22ch;
  color: #f6f1e7;
}

body.service-page .page-hero .lede {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  max-width: 58ch;
  color: #f2ece1;
  opacity: 0.92;
}

body.service-page .section--cream {
  background: var(--color-paper);
  color: var(--color-ink-800, #1f1d1a);
}

body.service-page .section--surface {
  background: var(--color-surface);
  color: var(--color-ink-800, #1f1d1a);
}

body.service-page .section--dark {
  background: #0f2e2a;
  color: #f2ece1;
}

body.service-page .section--dark .eyebrow {
  color: #c9b9a0;
}

body.service-page .section--dark .display-lg,
body.service-page .section--dark .light,
body.service-page .section--dark h2,
body.service-page .section--dark h3 {
  color: #f6f1e7;
}

body.service-page .eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-ink-500, #6b6459);
  margin: 0 0 0.9rem;
}

body.service-page .eyebrow--light {
  color: #c9b9a0;
}

body.service-page .display-lg {
  font-family: var(--font-display, "Cormorant Garamond", Georgia, serif);
  font-size: var(--text-3xl);
  line-height: 1.1;
  margin: 0;
  max-width: 22ch;
}

body.service-page .body-lg {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 68ch;
  color: var(--color-ink-700);
}

body.service-page .rto_body + .rto_body {
  margin-top: var(--space-4);
}

body.service-page .lede {
  margin: 0 0 2.4rem;
  font-size: 1.08rem;
  line-height: 1.6;
  max-width: 70ch;
}

body.service-page .container--narrow {
  width: min(100% - 2rem, 760px);
  margin-inline: auto;
}

body.service-page .card-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  margin-top: 2rem;
}

body.service-page .card-grid--2x2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.service-page .card-title {
  font-family: var(--font-display, "Cormorant Garamond", Georgia, serif);
  font-weight: 500;
  font-size: 1.55rem;
  line-height: 1.15;
  margin: 0.25rem 0 0.8rem;
  color: var(--color-brand-strong, #0f2e2a);
}

body.service-page .card-list,
body.service-page .phase-list,
body.service-page .check-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--color-ink-700, #3a362f);
}

body.service-page .card-list li {
  padding-left: 1rem;
  position: relative;
}

body.service-page .card-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #8a7a60;
}

body.service-page .check-list li {
  padding-left: 1.25rem;
  position: relative;
}

body.service-page .check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-brand-strong, #0f2e2a);
  font-weight: 700;
}

body.service-page .phase-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2rem;
}

body.service-page .phase-card,
body.service-page .comparison-card {
  background: #fff;
  border: 1px solid var(--color-line, #e6ddcc);
  border-radius: var(--radius-lg, 16px);
  padding: 1.75rem;
}

body.service-page .phase-marker {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #8a7a60;
  font-weight: 600;
  margin: 0 0 0.5rem;
}

body.service-page .phase-title {
  font-family: var(--font-display, "Cormorant Garamond", Georgia, serif);
  font-weight: 500;
  font-size: 1.45rem;
  line-height: 1.2;
  color: var(--color-brand-strong, #0f2e2a);
  margin: 0 0 0.9rem;
}

body.service-page .three-up {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2rem;
}

body.service-page .three-up h3 {
  font-family: var(--font-display, "Cormorant Garamond", Georgia, serif);
  font-weight: 500;
  font-size: 1.3rem;
  margin: 0 0 0.4rem;
}

body.service-page .three-up p {
  font-size: 0.98rem;
  line-height: 1.6;
  margin: 0;
}

body.service-page .comparison-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 2rem;
}

body.service-page .comparison-grid--3up {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.service-page .faq-wrap {
  max-width: 880px;
}

body.service-page .faq {
  border-top: 1px solid var(--color-line, #e0d6c3);
  padding: 1.1rem 0;
}

body.service-page .faq:last-of-type {
  border-bottom: 1px solid var(--color-line, #e0d6c3);
}

body.service-page .faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 500;
  color: var(--color-ink-900, #1f1d1a);
}

body.service-page .faq summary::-webkit-details-marker {
  display: none;
}

body.service-page .faq summary::after {
  content: "+";
  font-size: 1.25rem;
  color: #8a7a60;
}

body.service-page .faq[open] summary::after {
  content: "-";
}

body.service-page .faq p {
  margin: 0.8rem 0 0;
  line-height: 1.65;
  color: var(--color-ink-700, #3a362f);
  max-width: 72ch;
}

body.service-page .section--cta {
  background: #0f2e2a;
  color: #f6f1e7;
  text-align: center;
  padding: clamp(3rem, 6vw, 5rem) 0;
}

body.service-page .section--cta .display-lg {
  margin-inline: auto;
}

body.service-page .section--cta .btn-accent,
body.service-page .section--cta .btn-primary {
  margin-top: 1.2rem;
}

@media (max-width: 960px) {
  body.service-page .card-grid--2x2,
  body.service-page .phase-grid,
  body.service-page .comparison-grid--3up {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  body.service-page .three-up {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  body.service-page .card-grid--2x2 {
    grid-template-columns: 1fr;
  }
}

/* Light layout variant mirrors Why RTO hero rhythm using two-white surfaces. */
body.service-page--light {
  background: var(--color-paper);
  color: var(--color-ink-800);
}

body.service-page--light .site-header {
  background: var(--color-header-bg);
  border-bottom: 1px solid var(--color-header-line);
  box-shadow: none;
}

body.service-page--light .site-header.is-scrolled {
  box-shadow: 0 6px 18px var(--color-header-shadow);
  border-bottom-color: var(--color-header-line-scrolled);
}

body.service-page--light .site-logo__wordmark,
body.service-page--light .main-nav-list a,
body.service-page--light .nav-dropdown-toggle {
  color: var(--color-header-ink);
}

body.service-page--light .main-nav-list a.active,
body.service-page--light .main-nav-list a:hover {
  background: rgba(var(--color-brand-rgb), 0.08);
}

body.service-page--light .eyebrow,
body.service-page--light .eyebrow--light {
  font-family: var(--font-body);
  font-size: 0.975rem;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #7a746c;
  margin: 0 0 1rem;
}

body.service-page--light .hero {
  padding: 60px 0 40px;
  background: var(--color-paper);
}

body.service-page--light .section--cream {
  background: var(--color-paper);
}

body.service-page--light .section--surface,
body.service-page--light .section--dark,
body.service-page--light .section--cta {
  background: var(--color-paper);
}

body.service-page--light .hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(391px, 476px);
  gap: 2rem;
  align-items: center;
}

body.service-page--light .hero-copy {
  max-width: 62ch;
}

body.service-page--light .hero h1 {
  font-size: clamp(2.65rem, 5vw, 4.8rem);
  line-height: 0.96;
  letter-spacing: -0.03em;
  max-width: 14ch;
  margin: 0 0 0.9rem;
}

body.service-page--light .hero h1 .hero-title-line {
  display: block;
  white-space: normal;
}

body.service-page--light .hero h1 .hero-title-line + .hero-title-line {
  margin-top: 0.12em;
}

body.service-page--light .hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 476px;
  height: 459px;
  margin: 0 auto;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  overflow: hidden;
}

body.service-page--light .hero-visual__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: transparent;
  border-radius: 0;
}

body.service-page--light .value-opt-intro-grid {
  display: grid;
  grid-template-columns: minmax(391px, 476px) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}

body.service-page--light .value-opt-intro-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 476px;
  height: 459px;
  margin: 0 auto;
  overflow: hidden;
}

body.service-page--light .value-opt-intro-visual__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: transparent;
}

body.service-page--light .value-opt-intro-copy {
  max-width: 62ch;
}

body.service-page--light .value-opportunity-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 1rem;
  align-items: stretch;
  margin-top: 2rem;
}

body.service-page--light .value-opportunity-right .card-grid {
  margin-top: 0;
}

body.service-page--light .framework-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 1rem;
  align-items: stretch;
  margin-top: 2rem;
}

body.service-page--light .framework-left {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

body.service-page--light .framework-stack {
  display: grid;
  gap: var(--space-4);
}

body.service-page--light .framework-visual {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  margin: 0;
}

body.service-page--light .framework-visual__lead {
  margin: 0 0 var(--space-5);
  max-width: 56ch;
}

body.service-page--light .framework-visual__image {
  flex: 1 1 auto;
  width: 100%;
  min-height: 0;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 16px;
  border: 1px solid rgba(31, 29, 26, 0.14);
  background: #efe8dd;
}

body.service-page--light .engagement-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 1rem;
  align-items: stretch;
  margin-top: 2rem;
}

body.service-page--light .engagement-visual {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  margin: 0;
}

body.service-page--light .engagement-visual__lead {
  margin: 0 0 var(--space-5);
  max-width: 56ch;
}

body.service-page--light .engagement-visual__image {
  flex: 1 1 auto;
  width: 100%;
  min-height: 0;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 16px;
  border: 1px solid rgba(31, 29, 26, 0.14);
  background: #efe8dd;
}

body.service-page--light .engagement-right {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

body.service-page--light .engagement-stack {
  display: grid;
  gap: var(--space-4);
}

body.service-page--light .value-opportunity-visual {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  margin: 0;
}

body.service-page--light .value-opportunity-visual__lead {
  margin: 0 0 var(--space-5);
  max-width: 56ch;
}

body.service-page--light .value-opportunity-visual__image {
  flex: 1 1 auto;
  width: 100%;
  min-height: 0;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 16px;
  border: 1px solid rgba(31, 29, 26, 0.14);
  background: #efe8dd;
}

body.service-page--light .section--dark,
body.service-page--light .section--cta {
  color: var(--color-ink-800);
  text-align: left;
}

body.service-page--light .section--dark .eyebrow,
body.service-page--light .section--dark .eyebrow--light {
  color: #7a746c;
}

body.service-page--light .section--dark .display-lg,
body.service-page--light .section--dark .light,
body.service-page--light .section--dark h2,
body.service-page--light .section--dark h3,
body.service-page--light .section--dark p {
  color: var(--color-ink-800);
}

body.service-page--light .phase-card,
body.service-page--light .comparison-card,
body.service-page--light .card {
  background: var(--color-paper);
}

@media (max-width: 1100px) {
  body.service-page--light .hero-grid {
    grid-template-columns: 1fr;
  }

  body.service-page--light .value-opt-intro-grid {
    grid-template-columns: 1fr;
  }

  body.service-page--light .value-opportunity-layout {
    grid-template-columns: 1fr;
  }

  body.service-page--light .framework-layout {
    grid-template-columns: 1fr;
  }

  body.service-page--light .engagement-layout {
    grid-template-columns: 1fr;
  }

  body.service-page--light .hero-visual {
    width: 100%;
    max-width: 100%;
    min-height: 459px;
    margin-top: 1.5rem;
  }

  body.service-page--light .value-opt-intro-visual {
    width: 100%;
    max-width: 100%;
    min-height: 459px;
    margin-top: 1.5rem;
  }

  body.service-page--light .value-opportunity-visual {
    width: 100%;
    max-width: 100%;
    margin-top: 1.5rem;
  }

  body.service-page--light .framework-visual {
    width: 100%;
    max-width: 100%;
    min-height: 459px;
  }

  body.service-page--light .engagement-visual {
    width: 100%;
    max-width: 100%;
    min-height: 459px;
  }
}

/* === layout.css === */
.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-nav);
  background: var(--color-header-bg);
  border-bottom: 1px solid var(--color-header-line);
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 6px 18px var(--color-header-shadow);
  border-bottom-color: var(--color-header-line-scrolled);
}

.site-header .site-logo__wordmark,
.site-header .main-nav-list a,
.site-header .nav-dropdown-toggle {
  color: var(--color-header-ink);
}

.site-header .nav-dropdown-menu {
  background: #ffffff;
}

.header-inner {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

.site-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-weight: 700;
  color: var(--color-header-ink);
}

.site-logo img {
  height: 34px;
}

.main-nav-list {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.main-nav-list a {
  padding: 0.55rem 0.7rem;
  border-radius: var(--radius-sm);
  color: var(--color-header-ink);
}

.main-nav-list a.active,
.main-nav-list a:hover {
  background: rgba(var(--color-brand-rgb), 0.08);
  color: var(--color-header-ink);
}

.mobile-toggle {
  display: none;
}

.hero {
  padding: var(--space-9) 0 var(--space-3);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--space-6);
  align-items: center;
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 560px;
  height: 540px;
  margin: 0 auto;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  overflow: hidden;
}

.hero-visual__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: transparent;
  border-radius: 0;
}

.process-strip {
  margin-top: var(--space-6);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-3);
}

.process-step {
  background: #efe7da;
  border: 1px solid #dfd3bf;
  border-radius: var(--radius-md);
  padding: var(--space-3);
  font-size: var(--text-sm);
  color: #3f372b;
}

.page-hero {
  padding: var(--space-8) 0 var(--space-7);
  background: var(--color-paper);
  color: var(--color-ink-800);
}

.page-hero h1,
.page-hero p {
  color: inherit;
}

.two-col {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-6);
}

.container {
  width: min(1200px, calc(100% - 32px));
  margin-left: auto;
  margin-right: auto;
}

.container-narrow {
  width: min(760px, calc(100% - 32px));
  margin-left: auto;
  margin-right: auto;
}

/* === responsive.css === */
@media (max-width: 1024px) {
  .main-nav-list {
    gap: var(--space-2);
  }

  .hero-grid,
  .two-col {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    max-width: 100%;
    min-height: 0;
    height: auto;
  }

  .hero-visual__image {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .home-page .challenge-section > .container > .challenge-grid {
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 2rem;
  }

  .home-page .challenge-col--odds {
    justify-content: flex-start;
    padding: 0.5rem 0 0;
  }

  .home-page .wondering-section > .container > .wondering-grid {
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 2rem;
  }

  .home-page .wondering-col--questions {
    justify-content: flex-start;
    padding: 0.5rem 0 0;
  }

  .home-page main > .section > .container > .challenges-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .home-page main > .section > .container > .challenges-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .challenge-tile--cta {
    grid-column: auto;
  }
}

@media (max-width: 760px) {
  .mobile-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    padding: 0.5rem 1rem;
    height: 42px;
    border: none;
    border-radius: 0;
    background: transparent;
    color: var(--color-header-ink);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
  }

  .mobile-toggle::before {
    content: '☰';
    font-size: 1.4rem;
    margin-right: 0.5rem;
    line-height: 1;
  }

  .main-nav {
    display: none;
    position: absolute;
    inset: 74px 1rem auto 1rem;
    background: #fff;
    border: 1px solid var(--color-line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    padding: var(--space-3);
    max-height: calc(100vh - 200px);
    overflow-y: auto;
    overflow-x: hidden;
  }

  .main-nav.is-open {
    display: block;
  }

  .main-nav-list {
    flex-direction: column;
    align-items: stretch;
  }

  .process-strip {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .home-page main > .section > .container > .challenges-grid {
    grid-template-columns: 1fr;
  }
}

