:root {
  --bg: #f7f1e6;
  --paper: #fbf8f1;
  --paper-2: #f3eadc;
  --ink: #27322d;
  --muted: #6b746c;
  --green: #234f2a;
  --green-2: #315f39;
  --sage: #e0e8dc;
  --soft-gray: #eef0ec;
  --gold: #b58a3a;
  --blue: #2d6073;
  --red: #9b3d33;
  --line: rgba(35, 79, 42, 0.16);
  --shadow: 0 24px 58px rgba(54, 45, 29, 0.13);
  --soft-shadow: 0 14px 34px rgba(54, 45, 29, 0.08);
  --serif: "Songti SC", "STSong", "Noto Serif CJK SC", "Source Han Serif SC", serif;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
  letter-spacing: 0;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    repeating-linear-gradient(90deg, rgba(35, 79, 42, 0.018) 0 1px, transparent 1px 12px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(247, 241, 230, 0.1));
  pointer-events: none;
}

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

img {
  max-width: 100%;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 34px;
  background: rgba(251, 248, 241, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1.2;
  font-weight: 800;
  color: var(--green);
  letter-spacing: 0.04em;
  min-width: 0;
}

.brand-logo {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  object-fit: contain;
  border-radius: 50%;
  background: rgba(251, 248, 241, 0.82);
  box-shadow: 0 8px 22px rgba(35, 79, 42, 0.12);
}

.brand-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-text small {
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0;
}

.nav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.nav a,
.nav-current,
.pill {
  border: 1px solid var(--line);
  padding: 8px 14px;
  border-radius: 8px;
  color: var(--muted);
  background: rgba(251, 248, 241, 0.72);
  font-weight: 700;
}

.nav a.active,
.nav-current.active,
.nav a:hover,
.pill.strong {
  color: white;
  border-color: var(--green);
  background: var(--green);
}

.landing-page {
  background:
    linear-gradient(180deg, #f7f1e6 0%, #fbf8f1 28%, #eef3ea 64%, #fbf8f1 100%);
}

.landing-topbar {
  background: rgba(251, 248, 241, 0.88);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 32px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: 44px 28px 28px;
}

.hero h1 {
  margin: 0 0 16px;
  color: #173528;
  font-size: clamp(38px, 6vw, 84px);
  line-height: 1.05;
  font-weight: 900;
}

.hero p {
  max-width: 760px;
  color: #39483f;
  font-size: 20px;
}

.hero-media {
  min-height: 420px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--green);
  border-radius: 10px;
  background: var(--green);
  color: #fbf8f1;
  padding: 12px 18px;
  min-height: 48px;
  cursor: pointer;
  font-weight: 700;
  line-height: 1.25;
  box-shadow: 0 12px 24px rgba(35, 79, 42, 0.20);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  background: #1f4525;
  box-shadow: 0 16px 28px rgba(35, 79, 42, 0.24);
}

.btn.secondary {
  color: var(--green);
  background: rgba(251, 248, 241, 0.18);
  box-shadow: none;
}

.btn.secondary:hover {
  color: var(--green);
  background: rgba(251, 248, 241, 0.34);
  box-shadow: none;
}

.btn.warn {
  border-color: var(--red);
  background: var(--red);
}

.btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px;
}

.band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 250, 240, 0.62);
}

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

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

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

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

.card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  padding: 18px;
  box-shadow: 0 8px 18px rgba(42, 36, 25, 0.05);
}

.card h3,
.card h4 {
  margin: 0 0 8px;
}

.muted {
  color: var(--muted);
}

.kicker {
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.12em;
  font-size: 13px;
  text-transform: uppercase;
}

.kicker::after {
  content: "";
  display: block;
  width: 48px;
  height: 1px;
  margin-top: 10px;
  background: linear-gradient(90deg, var(--gold), rgba(181, 138, 58, 0));
}

.section-heading.narrow .kicker::after {
  margin-left: auto;
  margin-right: auto;
}

.landing-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: clamp(660px, 84svh, 820px);
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(92deg, rgba(9, 25, 16, 0.90) 0%, rgba(16, 38, 24, 0.75) 42%, rgba(16, 38, 24, 0.28) 72%, rgba(16, 38, 24, 0.08) 100%),
    linear-gradient(180deg, rgba(4, 14, 9, 0.46) 0%, rgba(4, 14, 9, 0.10) 45%, rgba(4, 14, 9, 0.38) 100%),
    url("/hero-journey.png") center / cover no-repeat;
}

.landing-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 210px;
  background: linear-gradient(180deg, rgba(247, 241, 230, 0) 0%, #f7f1e6 94%);
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(181, 138, 58, 0.18), transparent 34%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 42px);
  mix-blend-mode: screen;
  opacity: 0.72;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(830px, calc(100% - 44px));
  margin-left: max(24px, calc((100vw - 1180px) / 2 + 28px));
  padding: 52px 0 118px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 10px;
  padding: 8px 14px;
  background: rgba(251, 248, 241, 0.13);
  color: rgba(255, 255, 255, 0.90);
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.hero-content h1 {
  max-width: 860px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(54px, 7.2vw, 108px);
  line-height: 1.11;
  font-weight: 900;
  color: #fff;
  text-wrap: balance;
  text-shadow: 0 8px 32px rgba(0, 0, 0, 0.36);
}

.hero-content p {
  max-width: 700px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(17px, 1.55vw, 22px);
  line-height: 1.82;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.24);
}

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

.btn-large {
  padding: 15px 22px;
  font-size: 17px;
}

.btn.light {
  border-color: rgba(255, 255, 255, 0.72);
  color: #fff;
  background: rgba(251, 248, 241, 0.10);
  backdrop-filter: blur(8px);
}

.btn.light:hover {
  color: #fff;
  background: rgba(251, 248, 241, 0.18);
}

.hero-bottom-note {
  position: absolute;
  z-index: 2;
  left: max(24px, calc((100vw - 1180px) / 2 + 28px));
  bottom: 26px;
  max-width: 680px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
  border-left: 2px solid rgba(181, 138, 58, 0.86);
  padding-left: 14px;
}

.landing-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 112px 28px;
}

.section-heading {
  display: grid;
  gap: 16px;
  margin-bottom: 38px;
}

.section-heading.narrow {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading h2,
.outcome-copy h2 {
  margin: 0;
  color: #19382b;
  font-family: var(--serif);
  font-size: clamp(34px, 4.8vw, 62px);
  line-height: 1.18;
  font-weight: 850;
  text-wrap: balance;
}

.section-heading p,
.outcome-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.9;
}

.pain-section {
  padding-top: 96px;
}

.pain-list {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 18px;
}

.pain-list article {
  min-height: 108px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px 26px;
  background: rgba(251, 248, 241, 0.78);
  color: #2b3a32;
  font-size: 19px;
  font-weight: 750;
  box-shadow: var(--soft-shadow);
}

.pain-list article:nth-child(1),
.pain-list article:nth-child(4) {
  background: #ffffff;
}

.pain-list article:nth-child(5) {
  grid-column: 1 / -1;
  min-height: 84px;
  background: linear-gradient(90deg, rgba(35, 79, 42, 0.12), rgba(181, 138, 58, 0.12));
}

.positioning-section {
  max-width: none;
  padding-left: max(28px, calc((100vw - 1180px) / 2 + 28px));
  padding-right: max(28px, calc((100vw - 1180px) / 2 + 28px));
  background:
    linear-gradient(180deg, rgba(251, 248, 241, 0.78), rgba(243, 234, 220, 0.62)),
    repeating-linear-gradient(90deg, rgba(35, 79, 42, 0.025) 0 1px, transparent 1px 28px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.position-cards {
  display: grid;
  grid-template-columns: 1fr 1.08fr 1fr;
  gap: 22px;
  max-width: 1180px;
  margin: 0 auto;
  align-items: stretch;
}

.position-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 30px;
  background: rgba(251, 248, 241, 0.86);
  box-shadow: var(--soft-shadow);
  overflow: hidden;
}

.position-card.featured {
  transform: translateY(-16px);
  background: #fffdf7;
  box-shadow: var(--shadow);
}

.position-card-media {
  margin: -30px -30px 24px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #eadfcd;
}

.position-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.position-card span,
.entry-card span,
.pathway span,
.advantage-grid span {
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 0.06em;
}

.position-card h3,
.entry-card h3,
.pathway h3,
.advantage-grid h3 {
  margin: 8px 0 12px;
  color: var(--green);
  font-family: var(--serif);
  font-size: 26px;
}

.position-card p,
.entry-card p,
.pathway p,
.advantage-grid p {
  margin: 0;
  color: #47554d;
  line-height: 1.86;
}

.pathway-section {
  padding-bottom: 104px;
}

.pathway {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  border: 1px solid rgba(35, 79, 42, 0.14);
  border-radius: 14px;
  overflow: visible;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(251, 248, 241, 0.94), rgba(242, 235, 222, 0.76)),
    repeating-linear-gradient(90deg, rgba(35, 79, 42, 0.025) 0 1px, transparent 1px 34px);
  box-shadow: var(--shadow);
}

.pathway::before {
  display: none;
}

.pathway::after {
  display: none;
}

.pathway article {
  position: relative;
  z-index: 1;
  min-height: 0;
  padding: 0;
  border: 1px solid rgba(35, 79, 42, 0.14);
  border-radius: 10px;
  background: rgba(255, 253, 248, 0.90);
  box-shadow: 0 16px 34px rgba(54, 45, 29, 0.08);
  overflow: hidden;
}

.pathway article:nth-child(2) {
  transform: none;
}

.pathway article:nth-child(3) {
  transform: none;
}

.pathway article:nth-child(4) {
  transform: none;
}

.pathway article img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.pathway-note {
  max-width: 980px;
  margin: 42px auto 0;
  border: 1px solid rgba(181, 138, 58, 0.26);
  border-radius: 10px;
  padding: 20px 24px;
  background: linear-gradient(90deg, rgba(35, 79, 42, 0.08), rgba(181, 138, 58, 0.10));
  color: #263f31;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.82;
  text-align: center;
}

.pathway span {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin-bottom: 8px;
  color: #fbf8f1;
  background: var(--green);
  box-shadow: 0 0 0 8px rgba(35, 79, 42, 0.08);
}

.advantage-section {
  max-width: none;
  padding-left: max(28px, calc((100vw - 1180px) / 2 + 28px));
  padding-right: max(28px, calc((100vw - 1180px) / 2 + 28px));
  background:
    linear-gradient(180deg, rgba(246, 241, 231, 0.35), rgba(224, 232, 220, 0.44)),
    repeating-linear-gradient(90deg, rgba(181, 138, 58, 0.025) 0 1px, transparent 1px 30px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.advantage-grid article {
  min-height: 270px;
  border: 1px solid rgba(35, 79, 42, 0.16);
  border-radius: 8px;
  padding: 28px 24px;
  background: rgba(251, 248, 241, 0.86);
  box-shadow: var(--soft-shadow);
}

.advantage-grid article:nth-child(2),
.advantage-grid article:nth-child(4) {
  transform: translateY(18px);
  background: #fffdf7;
}

.outcomes-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: 44px;
  align-items: start;
}

.outcome-copy {
  position: sticky;
  top: 92px;
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.outcome-grid div {
  min-height: 112px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: rgba(251, 248, 241, 0.84);
  color: #2f4037;
  font-size: 18px;
  font-weight: 750;
  box-shadow: var(--soft-shadow);
}

.outcome-grid div:nth-child(3),
.outcome-grid div:nth-child(6) {
  background: var(--sage);
}

.experience-section {
  max-width: none;
  padding-left: max(28px, calc((100vw - 1180px) / 2 + 28px));
  padding-right: max(28px, calc((100vw - 1180px) / 2 + 28px));
  background:
    linear-gradient(180deg, #f2eee5, #fbf8f1),
    repeating-linear-gradient(0deg, rgba(35, 79, 42, 0.02) 0 1px, transparent 1px 36px);
}

.experience-wall {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-rows: 260px 260px;
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.experience-wall figure {
  position: relative;
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  background: #ddd;
  box-shadow: 0 20px 42px rgba(54, 45, 29, 0.14);
}

.experience-wall figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(181, 138, 58, 0.12), rgba(35, 79, 42, 0.18));
  mix-blend-mode: multiply;
  pointer-events: none;
}

.experience-wall figure.wide {
  grid-row: 1 / span 2;
}

.experience-wall img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(0.82) sepia(0.08) contrast(0.96);
}

.experience-wall figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  border-radius: 8px;
  padding: 8px 12px;
  background: rgba(15, 30, 22, 0.68);
  color: #fff;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.entry-section {
  position: relative;
  max-width: none;
  padding-left: max(28px, calc((100vw - 1180px) / 2 + 28px));
  padding-right: max(28px, calc((100vw - 1180px) / 2 + 28px));
  padding-bottom: 120px;
  background:
    linear-gradient(180deg, rgba(251, 248, 241, 0.28), rgba(35, 79, 42, 0.08)),
    linear-gradient(135deg, rgba(35, 79, 42, 0.10), transparent 42%),
    repeating-linear-gradient(90deg, rgba(181, 138, 58, 0.025) 0 1px, transparent 1px 34px);
  border-top: 1px solid rgba(35, 79, 42, 0.12);
}

.entry-section::before {
  content: "";
  display: block;
  width: min(860px, 78vw);
  height: 1px;
  margin: 0 auto 48px;
  background: linear-gradient(90deg, rgba(181, 138, 58, 0), rgba(181, 138, 58, 0.72), rgba(181, 138, 58, 0));
}

.client-entry {
  display: grid;
  place-items: center;
  gap: 16px;
}

.client-entry-card {
  width: min(680px, 100%);
  min-height: 190px;
}

.cta-secondary {
  width: min(680px, 100%);
  color: var(--green);
  background: rgba(251, 248, 241, 0.72);
}

.entry-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.92fr 0.92fr;
  gap: 16px;
}

.entry-card {
  display: block;
  min-height: 230px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  background: #fffdf8;
  box-shadow: var(--soft-shadow);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

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

.entry-card.primary {
  color: #fff;
  border-color: var(--green);
  background:
    linear-gradient(145deg, #234f2a, #315f39),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 26px);
  box-shadow: 0 22px 44px rgba(35, 79, 42, 0.24);
}

.entry-card.primary span,
.entry-card.primary h3,
.entry-card.primary p {
  color: #fff;
}

.workspace {
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px;
}

.internal-notice {
  margin-bottom: 18px;
}

.layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
  gap: 18px;
  align-items: start;
}

.panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  padding: 18px;
}

.panel h2 {
  margin: 0 0 8px;
  color: #183528;
  font-size: 24px;
}

.field {
  display: grid;
  gap: 7px;
  margin-bottom: 13px;
}

.field label {
  color: #304239;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf7;
  color: var(--ink);
  padding: 10px 11px;
}

textarea {
  min-height: 118px;
  resize: vertical;
}

.question {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf7;
  margin-bottom: 12px;
}

.question-title {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  font-weight: 800;
}

.question-meta {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  text-align: right;
}

.multi-hint {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(31, 93, 58, 0.18);
  border-radius: 999px;
  padding: 2px 8px;
  background: rgba(31, 93, 58, 0.08);
  color: var(--green);
  font-size: 12px;
  line-height: 1.4;
  white-space: nowrap;
}

.option-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.option {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 10px;
  cursor: pointer;
  background: #fffaf0;
}

.option input {
  width: auto;
  margin-right: 5px;
  accent-color: var(--green);
}

.progress {
  height: 9px;
  border-radius: 999px;
  background: rgba(31, 93, 58, 0.12);
  overflow: hidden;
  margin: 16px 0;
}

.progress span {
  display: block;
  height: 100%;
  background: var(--green);
  width: 0;
}

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

.badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 5px 9px;
  background: rgba(31, 93, 58, 0.12);
  color: var(--green);
  font-weight: 800;
  margin: 2px 4px 2px 0;
}

.badge.red {
  background: rgba(155, 61, 51, 0.12);
  color: var(--red);
}

.badge.gold {
  background: rgba(189, 138, 58, 0.14);
  color: #8b6128;
}

.table-wrap {
  width: 100%;
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

th,
td {
  padding: 10px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--green);
  background: rgba(31, 93, 58, 0.06);
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.tab {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  background: var(--paper);
  cursor: pointer;
}

.tab.active {
  color: white;
  border-color: var(--green);
  background: var(--green);
}

.hidden {
  display: none !important;
}

.split-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.notice {
  border-left: 4px solid var(--gold);
  padding: 12px 14px;
  background: rgba(189, 138, 58, 0.10);
  border-radius: 8px;
}

.danger {
  border-left-color: var(--red);
  background: rgba(155, 61, 51, 0.10);
}

@media (max-width: 860px) {
  .topbar {
    padding: 12px 16px;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .brand {
    width: 100%;
  }

  .brand-logo {
    width: 42px;
    height: 42px;
  }

  .nav {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
  }

  .nav a,
  .nav-current {
    display: grid;
    min-height: 38px;
    place-items: center;
    padding: 7px 8px;
    text-align: center;
    font-size: 13px;
    line-height: 1.25;
  }

  .landing-hero {
    display: block;
    min-height: auto;
    padding: 72px 0 34px;
    background-position: 64% center;
  }

  .landing-hero::after {
    height: 96px;
  }

  .hero-content {
    width: calc(100% - 36px);
    margin: 0 18px;
    padding: 0 0 22px;
  }

  .hero-content h1 {
    font-size: clamp(34px, 9.4vw, 52px);
    line-height: 1.14;
  }

  .hero-content p {
    font-size: 16px;
    line-height: 1.68;
  }

  .hero-eyebrow {
    max-width: 100%;
    border-radius: 8px;
    font-size: 13px;
    line-height: 1.35;
  }

  .actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .btn,
  .btn-large {
    width: 100%;
    text-align: center;
  }

  .hero-bottom-note {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin: 0 18px;
    max-width: none;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 8px;
    padding: 11px 12px;
    background: rgba(15, 30, 22, 0.28);
    backdrop-filter: blur(8px);
  }

  .landing-section {
    padding: 72px 18px;
  }

  .section-heading {
    margin-bottom: 22px;
  }

  .section-heading h2,
  .outcome-copy h2 {
    font-size: clamp(28px, 8vw, 38px);
  }

  .section-heading p,
  .outcome-copy p,
  .pathway-note {
    font-size: 15px;
    line-height: 1.78;
  }

  .pain-list,
  .position-cards,
  .advantage-grid,
  .outcomes-section,
  .outcome-grid,
  .experience-wall,
  .entry-grid {
    grid-template-columns: 1fr;
  }

  .pain-list article:nth-child(5) {
    grid-column: auto;
  }

  .position-card.featured {
    transform: none;
  }

  .advantage-grid article:nth-child(2),
  .advantage-grid article:nth-child(4) {
    transform: none;
  }

  .advantage-grid article {
    min-height: auto;
  }

  .pathway {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 12px;
  }

  .pathway::before {
    left: 42px;
    right: auto;
    top: 32px;
    bottom: 32px;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, rgba(181, 138, 58, 0), rgba(181, 138, 58, 0.72), rgba(35, 79, 42, 0.55), rgba(181, 138, 58, 0));
  }

  .pathway::after {
    display: none;
  }

  .pathway article {
    transform: none !important;
    min-height: auto;
    padding: 0;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .pathway span {
    position: absolute;
    left: 18px;
    top: 22px;
    width: 48px;
    height: 48px;
    margin: 0;
  }

  .outcome-copy {
    position: static;
  }

  .experience-wall {
    grid-template-rows: repeat(3, 260px);
  }

  .experience-wall figure.wide {
    grid-row: auto;
  }

  .workspace {
    padding: 14px;
  }

  .panel {
    padding: 16px;
  }

  .panel h2 {
    font-size: 22px;
    line-height: 1.28;
  }

  .question-title {
    display: grid;
  }

  .question-meta {
    justify-content: flex-start;
    text-align: left;
  }

  .option-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  input,
  select,
  textarea {
    min-height: 44px;
  }

  .split-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero,
  .layout,
  .grid.cols-2,
  .grid.cols-3,
  .grid.cols-4 {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 28px;
  }

  .hero-media {
    min-height: 320px;
  }

  .section,
  .workspace {
    padding: 18px;
  }
}

@media (max-width: 520px) {
  .topbar {
    padding: 10px 12px;
  }

  .brand {
    font-size: 15px;
    gap: 10px;
  }

  .brand-logo {
    width: 38px;
    height: 38px;
  }

  .brand-text small {
    font-size: 11px;
  }

  .nav {
    gap: 6px;
  }

  .nav a,
  .nav-current {
    min-height: 36px;
    padding: 6px;
    font-size: 12px;
  }

  .landing-hero {
    padding-top: 48px;
    background-position: 66% center;
  }

  .hero-content h1 {
    font-size: clamp(31px, 8.2vw, 39px);
    line-height: 1.16;
  }

  .hero-content p {
    margin-top: 16px;
    font-size: 15px;
    line-height: 1.78;
  }

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

  .landing-section {
    padding: 62px 16px;
  }

  .section-heading h2,
  .outcome-copy h2 {
    font-size: clamp(25px, 7.2vw, 34px);
  }

  .pain-list article,
  .position-card,
  .entry-card,
  .advantage-grid article,
  .outcome-grid div {
    padding: 18px;
  }

  .position-card-media {
    margin: -18px -18px 18px;
  }

  .pathway article {
    padding: 20px 18px 20px 90px;
  }

  .pain-list article {
    min-height: auto;
    font-size: 17px;
  }

  .position-card h3,
  .entry-card h3,
  .pathway h3,
  .advantage-grid h3 {
    font-size: 23px;
  }

  .experience-wall {
    grid-template-rows: repeat(3, 220px);
    gap: 12px;
  }

  .experience-wall figcaption {
    left: 12px;
    right: 12px;
    bottom: 12px;
    border-radius: 8px;
    text-align: center;
  }

  .client-entry-card {
    min-height: auto;
  }

  .workspace {
    padding: 12px;
  }

  .panel {
    padding: 14px;
  }

  .panel h2 {
    font-size: 21px;
  }

  .notice,
  .question,
  .card {
    padding: 13px;
  }

  .question-title {
    gap: 4px;
  }

  .option {
    border-radius: 8px;
    padding: 10px;
  }
}
