/* ===========================
   MISE ADVISORY — Global Styles
   =========================== */

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

/* --- Skip Link --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--navy);
  color: var(--gold);
  padding: 0.5rem 1rem;
  z-index: 9999;
  font-size: 0.875rem;
  border-radius: 2px;
}

.skip-link:focus {
  top: 0.5rem;
}

/* --- Focus States --- */
a:focus-visible,
button:focus-visible,
.btn-primary:focus-visible,
.nav-cta:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

:root {
  --navy: #0D1B2A;
  --gold: #B8963E;
  --cream: #F5F0E8;
  --charcoal: #2C3E50;
  --muted: #8A9BB0;
  --white: #FFFFFF;
  --navy-mid: #1A2E42;
  --gold-light: #D4AF6A;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--charcoal);
  background-color: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  line-height: 1.2;
}

.hero h1,
.prep-method-title {
  font-family: 'Cormorant Garamond', serif;
}

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

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

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: var(--navy);
  padding: 0 2rem;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-wordmark-group {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  color: var(--white);
  white-space: nowrap;
}

.nav-firm-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-wordmark-img {
  height: 32px;
  width: auto;
  display: block;
}

.footer-wordmark-img {
  height: 28px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-links .active {
  color: var(--gold);
  padding-bottom: 4px;
  border-bottom: 2px solid var(--gold);
}

.nav-cta {
  background-color: var(--gold);
  color: var(--navy) !important;
  padding: 0.5rem 1.25rem;
  border-radius: 2px;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: background-color 0.2s;
}

.nav-cta:hover {
  background-color: var(--gold-light);
  color: var(--navy) !important;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}

/* Mobile nav */
@media (max-width: 768px) {
  .nav-hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    background-color: var(--navy);
    padding: 1.5rem 2rem;
    gap: 1.25rem;
    border-top: 1px solid rgba(255,255,255,0.1);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-cta {
    text-align: center;
  }

  .nav-firm-name {
    display: none;
  }
}

/* Hamburger active state */
.nav-hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* --- Layout --- */
.section {
  padding: 5rem 2rem;
}

.container {
  max-width: 800px;
  margin: 0 auto;
}

.container-wide {
  max-width: 1200px;
  margin: 0 auto;
}

/* --- Hero --- */
.hero {
  background-color: var(--navy);
  padding: 10rem 2rem 6rem;
  text-align: left;
}

.hero h1 {
  color: var(--white);
  font-size: 2.75rem;
  font-weight: 400;
  max-width: 720px;
  margin-bottom: 2rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.hero-ghost {
  color: var(--muted);
  font-size: 0.875rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(138,155,176,0.4);
  padding-bottom: 1px;
}

.hero-credential {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.credential-badge {
  background: rgba(184,150,62,0.12);
  border: 1px solid rgba(184,150,62,0.3);
  color: var(--gold);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 2px;
}

.credential-text {
  font-size: 0.8125rem;
  color: var(--muted);
}

/* --- Body Content --- */
.content-section {
  background-color: var(--cream);
  padding: 5rem 2rem;
}

.body-inner {
  border-left: 2px solid rgba(184, 150, 62, 0.45);
  padding-left: 1.5rem;
  max-width: 100%;
}

.content-section p {
  font-size: 1.125rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
  max-width: 680px;
  color: var(--charcoal);
}

.body-payoff {
  border-top: 1px solid rgba(184, 150, 62, 0.35);
  margin-top: 2rem;
  padding-top: 1.75rem;
  max-width: 680px;
}

.body-payoff p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.375rem;
  font-weight: 400;
  line-height: 1.55;
  color: var(--navy);
  margin-bottom: 0;
}

/* --- Home Two-Column Body (v2) --- */
.home-two-col {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 0 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.home-section-label {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.home-body-text {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 1.0625rem;
  color: var(--charcoal);
  line-height: 1.7;
}

.home-body-text + .home-body-text {
  margin-top: 1rem;
}

.home-prep-intro {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 1.0625rem;
  color: var(--charcoal);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* --- Positioning Quote (Home v2) --- */
.home-quote {
  background-color: var(--navy);
  padding: 4rem 2rem;
  border-top: 2px solid var(--gold);
}

.home-quote-pull {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 2rem;
  line-height: 1.35;
  color: var(--cream);
  margin: 0 auto 2rem;
  padding: 0;
  border: none;
  max-width: 820px;
  text-align: center;
}

.home-quote-lead {
  font-style: normal;
}

.home-quote-support {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--muted);
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

/* --- Gold Period --- */
.gold-period {
  color: var(--gold);
}

/* --- Body Link --- */
.body-link {
  color: inherit;
  border-bottom: 1px solid rgba(184, 150, 62, 0.4);
  transition: color 0.2s, border-color 0.2s;
}

.body-link:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* Prep grid on cream background */
.content-section .prep-col-name {
  color: var(--navy);
}

.content-section .prep-col-desc {
  color: var(--charcoal);
}

.content-section .prep-col-name--clarity {
  color: var(--gold);
  font-size: 1.05em;
}

@media (max-width: 768px) {
  .home-two-col {
    grid-template-columns: 1fr;
    gap: 3rem 0;
  }
}

/* --- CTA Block --- */
.cta-block {
  background-color: var(--cream);
  border-top: 2px solid var(--gold);
  padding: 4rem 2rem;
  text-align: left;
}

.cta-inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: nowrap;
}

.cta-block p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.875rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 0;
}

.btn-primary {
  display: inline-block;
  background-color: var(--gold);
  color: var(--navy);
  padding: 0.875rem 2rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.btn-primary:hover {
  background-color: var(--gold-light);
}

/* --- Prep Method (Home) --- */
.prep-method {
  background-color: var(--navy);
  padding: 5rem 2rem;
}

.prep-method-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 0.75rem;
}

.prep-gold-rule {
  width: 3px;
  height: 34px;
  background: var(--gold);
  flex-shrink: 0;
}

.prep-method-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.25rem;
  color: var(--cream);
  margin-bottom: 0;
}

.prep-method-subhead {
  font-size: 1.0625rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 3rem;
  max-width: 680px;
}

.prep-grid {
  display: table;
  width: 100%;
  border-collapse: collapse;
}

.prep-row {
  display: table-row;
}

.prep-row + .prep-row .prep-col-num,
.prep-row + .prep-row .prep-col-name,
.prep-row + .prep-row .prep-col-desc {
  border-top: 1px solid rgba(184, 150, 62, 0.15);
}

.prep-col-num,
.prep-col-name,
.prep-col-desc {
  display: table-cell;
  padding: 1.125rem 1rem 1.125rem 0;
  vertical-align: top;
}

.prep-col-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.05em;
  width: 3rem;
  padding-top: 0.9rem;
  line-height: 1;
}

.prep-col-name {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--cream);
  width: 7rem;
  padding-top: 1.2rem;
}

.prep-col-name--clarity {
  color: var(--gold);
}

.prep-col-desc {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.65;
}

.prep-combined {
  display: grid;
  grid-template-columns: 0.75fr 2px 2fr;
  align-items: start;
}

.prep-quote-col {
  padding-right: 2.25rem;
}

.prep-quote-col blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1.65;
  color: var(--cream);
  margin: 0;
  padding: 0;
  border: none;
}

.prep-col-rule {
  background: var(--gold);
  width: 2px;
  align-self: stretch;
}

.prep-content-col {
  padding-left: 2.25rem;
}

/* --- Footer --- */
.footer {
  background-color: var(--navy);
  border-top: 2px solid var(--gold);
  padding: 3rem 2rem;
  color: var(--muted);
  font-size: 0.875rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-brand-line {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}

.footer-firm-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0;
}

.footer-left .footer-tagline span {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
}

.footer-left .footer-tagline {
  color: var(--muted);
  margin-bottom: 1rem;
}

.footer-left .footer-copyright {
  color: var(--muted);
}

.footer-right {
  text-align: right;
}

.footer-right a {
  color: var(--muted);
  transition: color 0.2s;
}

.footer-right a:hover {
  color: var(--gold);
}

.footer-right p {
  margin-bottom: 0.375rem;
}

@media (max-width: 600px) {
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-right {
    text-align: center;
  }

  .cta-inner {
    flex-wrap: wrap;
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-block p {
    font-size: 1.5rem;
  }
}

/* --- Services Page --- */
.page-header {
  background-color: var(--navy);
  padding: 8rem 2rem 4rem;
}

.page-header h1 {
  color: var(--white);
  font-size: 2.5rem;
}

.page-header p {
  color: var(--muted);
  font-size: 1.125rem;
  margin-top: 1rem;
  max-width: 680px;
}

/* Pricing tiers */
.pricing {
  background-color: var(--cream);
  padding: 5rem 2rem 3rem;
}

.pricing h2 {
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
  text-align: center;
}

.pricing > .container > p,
.pricing > .container-wide > p {
  text-align: center;
  color: var(--muted);
  margin-bottom: 3rem;
}

.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 820px;
  margin: 0 auto;
}

.tier-card {
  background-color: var(--white);
  padding: 2rem;
  border-top: 3px solid var(--gold);
}

.tier-card h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.tier-card .tier-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.tier-card p {
  font-size: 0.9375rem;
  color: var(--charcoal);
  line-height: 1.6;
}

.tier-custom {
  text-align: center;
  color: var(--gold) !important;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 1.75rem;
  margin-bottom: 0;
}

.tier-note {
  text-align: center;
  color: var(--muted);
  font-size: 0.875rem;
  margin-top: 1.5rem;
  font-style: italic;
}

@media (max-width: 900px) {
  .tiers {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .tiers {
    grid-template-columns: 1fr;
  }
}

/* --- Contact Page --- */
.contact-section {
  background-color: var(--cream);
  padding: 7.5rem 2rem 7.5rem;
}

.contact-centered {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
}

.contact-lead {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 2.75rem;
  line-height: 1.15;
  color: var(--navy);
  text-align: center;
  margin-bottom: 2.75rem;
}

.contact-expect-row {
  display: flex;
  align-items: center;
  gap: 2rem;
  max-width: 680px;
  margin: 0 auto 1.5rem;
  text-align: left;
}

.btn-square {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--gold);
  color: var(--navy);
  padding: 1.25rem 1.5rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background-color 0.2s;
  flex-shrink: 0;
  line-height: 1.3;
  text-align: center;
}

.btn-square:hover {
  background-color: var(--gold-light);
}

.contact-expect {
  display: flex;
  align-items: stretch;
  gap: 1.25rem;
  flex: 1;
  text-align: left;
}

.contact-expect-rule {
  width: 2px;
  background: var(--gold);
  flex-shrink: 0;
}

.contact-expect-body {
  flex: 1;
}

.contact-expect-body p.contact-expect-label {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  line-height: 1.2;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.contact-expect-body p {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--navy);
  margin-bottom: 1rem;
}

.contact-expect-body p:last-child {
  margin-bottom: 0;
}

.contact-divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 1.5rem;
}

.contact-methods {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 0;
  flex-wrap: wrap;
}

.contact-methods a {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 1.0625rem;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: 0.01em;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: border-color 0.2s, color 0.2s;
}

.contact-methods a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.contact-methods-divider {
  color: var(--gold);
  font-size: 0.875rem;
}

.contact-form-section {
  background-color: var(--navy);
  padding: 5rem 2rem;
}

.contact-form-embed {
  width: 100%;
  height: 500px;
  border: none;
}

.contact-process-headline {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 2rem;
  line-height: 1.25;
  color: var(--navy);
  text-align: center;
  margin-bottom: 2rem;
}

.contact-process-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

.contact-process-step {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  padding: 1.125rem 0;
  border-bottom: 1px solid rgba(184, 150, 62, 0.2);
}

.contact-process-step:last-child { border-bottom: none; }

.contact-process-step.is-active {
  padding-left: 1.25rem;
  margin-left: -1.25rem;
  border-left: 2px solid var(--gold);
}

.contact-process-step.is-active .contact-process-text {
  color: var(--white);
  font-weight: 400;
}

.contact-process-marker {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.125rem;
  color: var(--gold);
  min-width: 28px;
  flex-shrink: 0;
}

.contact-process-text {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 1.0625rem;
  line-height: 1.5;
  color: var(--charcoal);
}

.clarity-term {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-style: italic;
  color: var(--gold);
  font-size: 1.15em;
}

.clarity-term--large { font-size: 1.35em; }

@media (max-width: 768px) {
  .contact-lead { font-size: 2.375rem; }
  .contact-expect-row {
    flex-direction: column;
    align-items: center;
  }
  .contact-process-headline { font-size: 1.625rem; }
  .contact-process-step { gap: 1rem; }
}

.page-eyebrow {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.125rem;
  color: var(--gold);
  margin-bottom: 1rem;
  letter-spacing: 0;
}

.page-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.125rem;
  color: var(--muted);
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}

/* --- About Page (Full) --- */
.about-bio {
  background-color: var(--cream);
  padding: 2rem 2rem 2rem;
}

.about-bio-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--navy);
  max-width: 720px;
}

.about-positioning {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--charcoal);
  max-width: 720px;
  margin-top: 1.75rem;
}

.about-bio-text strong em,
.about-bio-text em strong {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-style: italic;
}

.about-methodology {
  background-color: var(--navy);
  padding: 5rem 2rem;
}

.about-methodology-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--cream);
  margin-bottom: 2.5rem;
}

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

.methodology-block {
  border-top: 1px solid rgba(184, 150, 62, 0.15);
  padding-top: 1.5rem;
}

.methodology-label {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.methodology-body {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--muted);
}

.methodology-grid--three {
  grid-template-columns: repeat(3, 1fr);
}

.about-partners {
  background-color: var(--cream);
  padding: 5rem 2rem;
  border-top: 1px solid rgba(184, 150, 62, 0.25);
}

.about-partners-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 1.5rem;
}

.about-partners p {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--charcoal);
  margin-bottom: 1.25rem;
  max-width: 720px;
}

.about-partners-contact {
  margin-top: 1.75rem;
  font-size: 1rem;
}

.about-partners-contact a {
  color: var(--gold);
  border-bottom: 1px solid rgba(184, 150, 62, 0.4);
}

@media (max-width: 768px) {
  .methodology-grid,
  .methodology-grid--three {
    grid-template-columns: 1fr;
  }
}

/* --- Services Page (Full) --- */
.service-model {
  background-color: var(--cream);
  padding: 5rem 2rem;
}

.service-model-headline {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 2rem;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 1.5rem;
}

.service-capabilities-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0 2rem;
  margin: 2rem 0 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(184, 150, 62, 0.3);
}

.service-capabilities-col {
}

.service-capabilities-label {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.service-capabilities {
  list-style: disc;
  padding: 0 0 0 1rem;
  margin: 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  line-height: 1.35;
}

.service-capabilities li {
  padding: 0.3rem 0;
  color: var(--charcoal);
}

.service-model-body {
  font-size: 1.125rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
  max-width: 680px;
  color: var(--charcoal);
}

.service-model-body:last-child {
  margin-bottom: 0;
}

.service-model-scope {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.7;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(184, 150, 62, 0.2);
  max-width: 680px;
}

.services-prep {
  background-color: var(--navy);
  padding: 5rem 2rem;
}

.services-stages {
  margin-top: 0;
}

.services-stage {
  padding: 1.75rem 0;
  border-top: 1px solid rgba(184, 150, 62, 0.15);
}

.services-stage:first-child {
  border-top: none;
  padding-top: 0;
}

.services-stage-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 0.25rem;
}

.services-stage-name {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: var(--cream);
  margin-bottom: 0.75rem;
}

.services-stage-body {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--muted);
}

.services-prep-note {
  color: var(--muted);
  font-size: 0.9375rem;
  margin-top: 1.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(184, 150, 62, 0.15);
  font-style: italic;
}

.services-process {
  background-color: var(--navy);
  padding: 5rem 2rem;
}

.services-process .contact-process-headline {
  color: var(--white);
}

.services-process .contact-process-text {
  color: var(--muted);
}

.services-process .contact-process-step {
  border-bottom: 1px solid rgba(184, 150, 62, 0.15);
}

.services-process .contact-process-step.is-active .contact-process-text {
  color: var(--white);
}

.services-process .clarity-delivered {
  color: var(--white);
}

.services-stage--clarity .services-stage-name {
  color: var(--gold);
}

.services-stage-header {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.services-stage-header .services-stage-name {
  margin-bottom: 0;
  font-size: 1rem;
}

.services-stage-header .services-stage-num {
  margin-bottom: 0;
}

.tier-card h4 {
  font-size: 0.7875rem;
  margin-bottom: 0.75rem;
}

.tier-card .tier-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--navy);
  margin-top: 1rem;
  margin-bottom: 0;
  white-space: nowrap;
}

.tier-card p {
  font-size: 0.985rem;
  margin-bottom: 0.25rem;
}

.pricing-subhead {
  color: var(--muted);
  font-size: 0.9375rem;
  margin-bottom: 2rem;
  text-align: center;
}

.pricing-custom-note {
  text-align: center;
  color: var(--muted);
  font-size: 0.9375rem;
  margin-top: 2rem;
  margin-bottom: 0;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

/* --- Responsive Typography --- */
@media (max-width: 768px) {
  .hero {
    padding: 7rem 1.5rem 4rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .home-quote-pull {
    font-size: 1.5rem;
  }

  .section {
    padding: 3.5rem 1.5rem;
  }

  .content-section {
    padding: 3.5rem 1.5rem;
  }

  .page-header {
    padding: 7rem 1.5rem 3rem;
  }

  .page-header h1 {
    font-size: 2rem;
  }

  .prep-method-title {
    font-size: 1.875rem;
  }

  .service-capabilities-wrap {
    grid-template-columns: 1fr;
    gap: 1.5rem 0;
  }

  .prep-grid {
    display: block;
  }
  .prep-row {
    display: block;
    padding: 0.75rem 0;
    border-top: 1px solid rgba(184, 150, 62, 0.15);
  }
  .prep-row:first-child {
    border-top: none;
  }
  .prep-col-num,
  .prep-col-name,
  .prep-col-desc {
    display: inline;
    padding: 0;
  }
  .prep-col-num {
    font-size: 1.25rem;
    margin-right: 0.5rem;
  }
  .prep-col-name {
    margin-right: 0.75rem;
  }
  .prep-col-desc {
    display: block;
    margin-top: 0.35rem;
  }

  .prep-combined {
    grid-template-columns: 1fr;
  }

  .prep-col-rule {
    display: none;
  }

  .prep-quote-col {
    padding-right: 0;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(184, 150, 62, 0.3);
  }

  .prep-content-col {
    padding-left: 0;
  }
}
