:root {
  --ink: #18211f;
  --muted: #5f6f68;
  --line: #dfe8e0;
  --paper: #fbfcf8;
  --soft: #edf4ed;
  --green: #214d3f;
  --green-2: #4d7b62;
  --blue: #1f4e68;
  --gold: #c79b46;
  --aqua: #497b83;
  --coral: #d76d4f;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(19, 40, 32, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans TC", "PingFang TC",
    "Microsoft JhengHei", sans-serif;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}

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

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

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 34px;
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(251, 252, 248, 0.94);
  color: var(--ink);
  box-shadow: 0 10px 28px rgba(18, 33, 31, 0.09);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 180px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.82rem;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.2;
}

.brand small {
  margin-top: 3px;
  color: currentColor;
  opacity: 0.72;
  font-size: 0.78rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.95rem;
}

.site-nav a {
  opacity: 0.86;
}

.site-nav a:hover {
  opacity: 1;
}

.nav-cta {
  padding: 8px 15px;
  border: 1px solid currentColor;
  border-radius: 999px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  color: inherit;
}

.nav-toggle span {
  display: block;
  width: 17px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("assets/hero-career-consultant.jpg");
  background-size: cover;
  background-position: 52% center;
  transform: scale(1.01);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 18, 19, 0.94) 0%, rgba(9, 28, 29, 0.78) 40%, rgba(18, 44, 49, 0.22) 74%),
    linear-gradient(0deg, rgba(8, 20, 21, 0.72) 0%, rgba(8, 20, 21, 0) 48%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 124px 0 40px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.5rem, 8vw, 3.72rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.18rem;
}

.hero-actions,
.footer-layout,
.cta-layout {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-actions {
  margin-top: 28px;
}

.hero-fit {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 720px;
  margin-top: 24px;
}

.hero-fit span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.hero-microcopy {
  max-width: 660px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.95rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 11px 20px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--gold);
  color: #171b15;
  box-shadow: 0 10px 24px rgba(199, 155, 70, 0.26);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: var(--white);
}

.button.large {
  min-width: 190px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(760px, 100%);
  margin: 36px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.hero-stats div {
  padding: 18px 20px 0 0;
}

.hero-stats dt {
  font-size: 1.45rem;
  font-weight: 900;
}

.hero-stats dd {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.92rem;
}

.intro-band {
  padding: 58px 0;
  background: var(--green);
  color: var(--white);
}

.intro-grid,
.two-column,
.about-layout,
.cta-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 64px;
}

.intro-band h2,
.section-heading h2,
.about-panel h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.18;
  letter-spacing: 0;
}

.intro-copy p,
.about-panel p,
.final-cta p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.82);
}

.intro-copy strong {
  color: var(--gold);
  font-weight: 900;
}

.section {
  padding: 92px 0;
}

.section.muted {
  background: var(--soft);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 36px;
}

.section-lead {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.section-heading h2,
.about-panel h2,
.final-cta h2 {
  color: var(--ink);
}

.scenario-grid,
.situation-grid,
.pricing-grid,
.duration-guide,
.guide-grid,
.simple-process,
.method-grid {
  display: grid;
  gap: 18px;
}

.scenario-grid,
.situation-grid,
.pricing-grid,
.duration-guide,
.simple-process,
.method-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.situation-grid,
.method-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.guide-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.scenario,
.situation-grid article,
.simple-process article,
.method-grid article,
.price-card,
.testimonial-card,
.principles article,
.faq-list details,
.guide-card,
.duration-guide article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 6px 22px rgba(18, 33, 31, 0.05);
}

.situation-grid article {
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: none;
}

.situation-grid span,
.method-grid span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
}

.situation-grid h3,
.simple-process h3,
.method-grid h3 {
  margin: 0 0 10px;
  font-size: 1.18rem;
  line-height: 1.36;
}

.situation-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.scenario {
  padding: 28px;
}

.card-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: #e7f0e7;
  color: var(--green);
  font-weight: 900;
}

.scenario h3,
.principles h3,
.process h3,
.price-card h3,
.guide-card h3,
.duration-guide h3 {
  margin: 0 0 10px;
  font-size: 1.23rem;
  line-height: 1.35;
}

.scenario p,
.principles p,
.process p,
.pathway-node p,
.pathway-start p,
.simple-process p,
.method-grid p,
.quadrant p,
.price-card p,
.guide-card p,
.duration-guide p,
.faq-list p,
.credentials span,
.note {
  margin: 0;
  color: var(--muted);
}

.simple-process {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.simple-process article,
.method-grid article {
  padding: 24px;
}

.simple-process article {
  background: var(--white);
}

.simple-process .referral-step {
  border-color: rgba(199, 155, 70, 0.62);
  background: #fffaf0;
}

.pathway-map {
  display: grid;
  gap: 22px;
}

.pathway-start,
.pathway-node {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 6px 22px rgba(18, 33, 31, 0.05);
}

.pathway-start {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  max-width: 680px;
  margin-inline: auto;
  padding: 24px;
}

.pathway-start::after,
.primary-node::after {
  content: "";
  position: absolute;
  bottom: -23px;
  left: 50%;
  width: 2px;
  height: 22px;
  background: var(--green-2);
  transform: translateX(-50%);
}

.primary-node {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  max-width: 760px;
  margin-inline: auto;
  padding: 26px;
  border-color: rgba(77, 123, 98, 0.5);
  background: #f8fbf7;
}

.pathway-branches {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
  padding-top: 44px;
}

.pathway-branches::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 32px;
  background: var(--green-2);
  transform: translateX(-50%);
}

.pathway-branches .pathway-node {
  padding: 24px;
}

.branch-label {
  grid-column: 1 / -1;
  width: fit-content;
  margin: 0 auto -4px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--green);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 900;
}

.branch-label.referral-label {
  margin-top: 10px;
  background: var(--gold);
  color: #171b15;
}

.pathway-branches .service-track {
  grid-column: span 2;
}

.pathway-branches .referral-track {
  grid-column: span 3;
}

.pathway-node.referral,
.pathway-node.referral-track {
  border-color: rgba(199, 155, 70, 0.62);
  background: #fffaf0;
}

.path-number {
  display: grid;
  place-items: center;
  width: fit-content;
  min-width: 42px;
  height: 42px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--green);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 900;
}

.referral-track .path-number,
.referral-step .path-number {
  background: var(--gold);
  color: #171b15;
}

.pathway-node h3,
.pathway-start h3,
.quadrant h3 {
  margin: 0 0 10px;
  font-size: 1.16rem;
  line-height: 1.35;
}

.path-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.path-pill-list span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 10px;
  border: 1px solid rgba(73, 123, 131, 0.36);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--green);
  font-size: 0.86rem;
  font-weight: 850;
  line-height: 1.35;
}

.path-duration,
.special-note {
  margin-top: 18px;
  padding: 16px;
  border-radius: 8px;
  background: #f2f6f6;
}

.path-duration strong,
.special-note strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
}

.path-duration span {
  display: block;
  color: var(--muted);
  font-size: 0.94rem;
}

.path-duration span + span {
  margin-top: 4px;
}

.special-note {
  border-left: 4px solid var(--coral);
  background: #fff8f4;
}

.special-note p {
  margin: 0;
  color: var(--muted);
}

.scope-layout {
  display: grid;
  grid-template-columns: 0.76fr 1.24fr;
  gap: 58px;
  align-items: start;
}

.quadrant-wrap {
  position: relative;
  padding: 26px 0 34px 36px;
}

.axis-label {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.y-axis {
  position: absolute;
  top: 50%;
  left: -44px;
  transform: translateY(-50%) rotate(-90deg);
}

.x-axis {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 36px;
  text-align: center;
}

.quadrant-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid rgba(73, 123, 131, 0.55);
  background:
    linear-gradient(90deg, transparent calc(50% - 1px), rgba(73, 123, 131, 0.45) calc(50% - 1px), rgba(73, 123, 131, 0.45) calc(50% + 1px), transparent calc(50% + 1px)),
    linear-gradient(0deg, transparent calc(50% - 1px), rgba(73, 123, 131, 0.45) calc(50% - 1px), rgba(73, 123, 131, 0.45) calc(50% + 1px), transparent calc(50% + 1px));
  box-shadow: var(--shadow);
}

.quadrant {
  min-height: 244px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.78);
}

.quadrant.service {
  border-top: 5px solid var(--coral);
  background: linear-gradient(180deg, #fff8f4 0%, #ffffff 100%);
}

.quadrant.referral {
  border-top: 5px solid rgba(73, 123, 131, 0.42);
  background: #f2f6f6;
  opacity: 0.78;
}

.quadrant span {
  display: block;
  margin-bottom: 10px;
  color: var(--aqua);
  font-size: 0.8rem;
  font-weight: 900;
}

.quadrant.service span,
.quadrant.service h3 {
  color: #9e402d;
}

.quadrant strong {
  display: inline-flex;
  margin-top: 18px;
  padding: 5px 10px;
  border-radius: 999px;
  background: #ffe4d9;
  color: #8c321f;
  font-size: 0.82rem;
}

.quadrant.referral strong {
  background: #dce8e8;
  color: #315d63;
}

.sticky-heading {
  position: sticky;
  top: 112px;
  align-self: start;
  margin-bottom: 0;
}

.principles {
  display: grid;
  gap: 14px;
}

.principles article {
  padding: 24px;
}

.guide-grid {
  margin-bottom: 6px;
}

.guide-card {
  padding: 26px;
  border-top: 5px solid var(--green-2);
}

.guide-card span,
.duration-guide span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--aqua);
  font-size: 0.82rem;
  font-weight: 900;
}

.guide-card.inner-weather {
  border-top-color: var(--gold);
}

.guide-card.inner-weather span {
  color: var(--gold);
}

.referral-principle {
  border-color: rgba(199, 155, 70, 0.5);
  background: #fffaf0;
}

.referral-options {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.referral-options span {
  display: block;
  padding-left: 12px;
  border-left: 3px solid rgba(199, 155, 70, 0.66);
  color: var(--muted);
  font-size: 0.95rem;
}

.duration-guide {
  margin-bottom: 24px;
}

.duration-guide article {
  padding: 24px;
  background: #f8fbf7;
}

.duration-guide article:nth-child(2) {
  background: #fffaf0;
}

.duration-guide article:nth-child(3) {
  background: #f2f6f6;
}

.duration-guide span {
  color: var(--gold);
  font-size: 0.95rem;
}

.note {
  margin-top: 20px;
  padding-left: 16px;
  border-left: 3px solid var(--gold);
}

.quote-band {
  padding: 82px 0;
  background: var(--green);
  color: var(--white);
}

.quote-band blockquote {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  padding: 0 0 0 42px;
  border-left: 5px solid var(--gold);
}

.quote-band blockquote::before {
  content: "“";
  position: absolute;
  top: -42px;
  left: 18px;
  color: rgba(255, 255, 255, 0.16);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 8rem;
  line-height: 1;
}

.quote-band p {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: clamp(1.45rem, 3vw, 2.45rem);
  font-weight: 900;
  line-height: 1.48;
  letter-spacing: 0;
}

.quote-band p + p {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.08rem, 2vw, 1.45rem);
  font-weight: 750;
}

.about-layout {
  align-items: start;
}

.about-panel {
  padding: 34px;
  border-radius: 8px;
  background: var(--green);
  color: var(--white);
  box-shadow: var(--shadow);
}

.about-panel h2 {
  color: var(--white);
}

.credentials {
  display: grid;
  gap: 16px;
}

.credentials div {
  padding: 26px 0 24px;
  border-bottom: 1px solid var(--line);
}

.credentials strong {
  display: block;
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 1.08rem;
}

.process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: item;
}

.process li {
  min-height: 238px;
  padding: 26px;
  border-top: 3px solid var(--green-2);
  background: rgba(255, 255, 255, 0.66);
}

.process span {
  display: block;
  margin-bottom: 32px;
  color: var(--gold);
  font-weight: 900;
}

.testimonials-section {
  background: var(--paper);
}

.testimonial-carousel {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  gap: 14px;
  align-items: center;
}

.testimonial-viewport {
  overflow: hidden;
}

.testimonial-track {
  --testimonial-columns: 3;
  --testimonial-gap: 18px;
  display: flex;
  gap: var(--testimonial-gap);
  transition: transform 220ms ease;
  will-change: transform;
}

.testimonial-card {
  flex: 0 0 calc((100% - (var(--testimonial-gap) * (var(--testimonial-columns) - 1))) / var(--testimonial-columns));
  display: grid;
  align-content: space-between;
  min-height: 270px;
  padding: 26px;
}

.carousel-button {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--green);
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
  box-shadow: 0 6px 22px rgba(18, 33, 31, 0.05);
  transition: opacity 160ms ease, transform 160ms ease;
}

.carousel-button:hover:not(:disabled) {
  transform: translateY(-1px);
}

.carousel-button:disabled {
  cursor: not-allowed;
  opacity: 0.36;
}

.carousel-status {
  margin: 18px 58px 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.testimonial-card h3 {
  margin: 0;
  font-size: 1.18rem;
}

.testimonial-issue {
  display: inline-flex;
  width: fit-content;
  margin: 14px 0 16px;
  padding: 5px 10px;
  border-radius: 999px;
  background: #e7f0e7;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 850;
}

.testimonial-content {
  display: -webkit-box;
  min-height: 5.2em;
  margin: 0;
  overflow: hidden;
  color: var(--muted);
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 22px;
}

.testimonial-date {
  color: var(--muted);
  font-size: 0.86rem;
}

.text-button {
  border: 0;
  border-bottom: 2px solid rgba(215, 109, 79, 0.55);
  background: transparent;
  color: #9e402d;
  cursor: pointer;
  font: inherit;
  font-weight: 850;
}

.testimonial-dialog {
  width: min(680px, calc(100% - 32px));
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
}

.testimonial-dialog::backdrop {
  background: rgba(9, 20, 18, 0.62);
  backdrop-filter: blur(4px);
}

.dialog-card {
  position: relative;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.dialog-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
}

.dialog-card h2 {
  margin: 0;
  padding-right: 42px;
  font-size: clamp(1.55rem, 4vw, 2.2rem);
  line-height: 1.25;
}

.dialog-meta,
.dialog-content {
  color: var(--muted);
}

.dialog-meta {
  margin: 10px 0 22px;
}

.dialog-content {
  margin: 0;
  white-space: pre-line;
}

.price-card {
  padding: 28px;
}

.price-card.featured {
  border-color: rgba(199, 155, 70, 0.58);
  box-shadow: var(--shadow);
}

.tag {
  display: inline-flex;
  margin: 0 0 18px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #e9f1ec;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 800;
}

.price {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.2;
}

.price span {
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 700;
}

.price-card ul {
  margin: 22px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.faq-section {
  padding-top: 24px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 20px 22px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 850;
}

.faq-list p {
  margin-top: 14px;
}

.final-cta {
  padding: 70px 0;
  background: var(--ink);
  color: var(--white);
}

.final-cta h2 {
  color: var(--white);
}

.final-cta p {
  max-width: 680px;
}

.cta-layout {
  align-items: center;
}

.cta-layout .button {
  justify-self: end;
}

.site-footer {
  padding: 26px 0;
  background: #101715;
  color: rgba(255, 255, 255, 0.72);
}

.footer-layout {
  justify-content: space-between;
}

.footer-layout p {
  margin: 0;
}

@media (max-width: 880px) {
  .site-header {
    padding: 14px 20px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 70px;
    right: 20px;
    left: 20px;
    display: none;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
    color: var(--ink);
    box-shadow: var(--shadow);
  }

  .site-header.is-open .site-nav {
    display: grid;
    gap: 14px;
  }

  .nav-cta {
    display: inline-flex;
    width: fit-content;
  }

  .hero {
    min-height: 780px;
  }

  .hero-media {
    background-position: 60% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(11, 25, 21, 0.92) 0%, rgba(12, 28, 24, 0.76) 60%, rgba(12, 28, 24, 0.42) 100%),
      linear-gradient(0deg, rgba(11, 25, 21, 0.72) 0%, rgba(11, 25, 21, 0) 52%);
  }

  .hero-content {
    padding-top: 130px;
  }

  .hero-stats,
  .scenario-grid,
  .situation-grid,
  .pricing-grid,
  .process,
  .duration-guide,
  .simple-process,
  .method-grid,
  .guide-grid,
  .intro-grid,
  .two-column,
  .about-layout,
  .scope-layout,
  .cta-layout {
    grid-template-columns: 1fr;
  }

  .pathway-start,
  .primary-node {
    max-width: none;
  }

  .pathway-start::after,
  .primary-node::after,
  .pathway-branches::before {
    display: none;
  }

  .pathway-branches {
    grid-template-columns: 1fr;
    padding-top: 0;
  }

  .pathway-branches .service-track,
  .pathway-branches .referral-track {
    grid-column: auto;
  }

  .testimonial-track {
    --testimonial-columns: 2;
  }

  .quadrant-wrap {
    padding: 0 0 28px;
  }

  .y-axis {
    position: static;
    margin-bottom: 10px;
    transform: none;
  }

  .x-axis {
    left: 0;
  }

  .hero-stats {
    gap: 0;
  }

  .sticky-heading {
    position: static;
  }

  .process li {
    min-height: auto;
  }

  .cta-layout .button {
    justify-self: start;
  }
}

@media (max-width: 560px) {
  .container,
  .hero-content {
    width: min(100% - 28px, 1120px);
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 820px;
  }

  .hero-content {
    padding-top: 108px;
    padding-bottom: 32px;
  }

  .hero h1 {
    font-size: clamp(2.05rem, 10vw, 3.2rem);
  }

  .hero-lead {
    margin-top: 18px;
    font-size: 0.98rem;
  }

  .button {
    width: 100%;
  }

  .hero-fit {
    gap: 8px;
  }

  .hero-fit span {
    min-height: 32px;
    padding: 6px 10px;
    font-size: 0.82rem;
  }

  .hero-microcopy {
    font-size: 0.88rem;
  }

  .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 22px;
  }

  .hero-stats div {
    padding: 14px 10px 0 0;
  }

  .hero-stats dt {
    font-size: 1.04rem;
  }

  .hero-stats dd {
    font-size: 0.76rem;
    line-height: 1.45;
  }

  .section {
    padding: 66px 0;
  }

  .quote-band {
    padding: 62px 0;
  }

  .quote-band blockquote {
    padding-left: 24px;
  }

  .quote-band blockquote::before {
    top: -30px;
    left: 8px;
    font-size: 5.6rem;
  }

  .intro-band {
    padding: 48px 0;
  }

  .scenario,
  .situation-grid article,
  .price-card,
  .testimonial-card,
  .pathway-start,
  .pathway-node,
  .simple-process article,
  .method-grid article,
  .quadrant,
  .guide-card,
  .duration-guide article,
  .principles article,
  .about-panel {
    padding: 22px;
  }

  .pathway-start,
  .primary-node,
  .pathway-branches {
    grid-template-columns: 1fr;
  }

  .testimonial-carousel {
    grid-template-columns: 38px minmax(0, 1fr) 38px;
    gap: 8px;
  }

  .testimonial-track {
    --testimonial-columns: 1;
  }

  .carousel-button {
    width: 38px;
    height: 38px;
    font-size: 1.7rem;
  }

  .carousel-status {
    margin-right: 46px;
    margin-left: 46px;
  }

  .quadrant-grid {
    grid-template-columns: 1fr;
    background: none;
  }

  .quadrant {
    min-height: auto;
    border-bottom: 1px solid var(--line);
  }

  .quadrant:last-child {
    border-bottom: 0;
  }

  .footer-layout {
    align-items: flex-start;
  }
}
