: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%;
}

picture {
  display: block;
}

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);
  isolation: isolate;
  overflow: hidden;
  color: #fff;
  background: #091910;
}

.landing-hero::before {
  content: "";
  position: absolute;
  inset: -4%;
  z-index: 0;
  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.webp") center / cover no-repeat;
  animation: heroBackgroundDrift 18s ease-in-out infinite alternate;
  will-change: transform;
}

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

@keyframes heroBackgroundDrift {
  0% {
    transform: scale(1) translate3d(0, 0, 0);
  }

  50% {
    transform: scale(1.045) translate3d(-1.4%, -0.8%, 0);
  }

  100% {
    transform: scale(1.08) translate3d(1.2%, 0.7%, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .landing-hero::before {
    animation: none;
    transform: none;
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  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: 2;
  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.image-only {
  padding: 0;
}

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

.position-card.image-only .position-card-media {
  margin: 0;
}

.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-card-link {
  position: relative;
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
  isolation: isolate;
}

.pathway-card-link::after {
  content: "查看详情";
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  border: 1px solid rgba(255, 253, 248, 0.56);
  border-radius: 999px;
  padding: 8px 14px;
  color: #fffdf8;
  background: rgba(22, 49, 31, 0.72);
  box-shadow: 0 10px 24px rgba(17, 34, 23, 0.22);
  font-size: 14px;
  font-weight: 900;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.pathway-card-link::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(22, 49, 31, 0), rgba(22, 49, 31, 0.34));
  opacity: 0;
  transition: opacity 180ms ease;
}

.pathway-card-link:hover::before,
.pathway-card-link:focus-visible::before,
.pathway-card-link:hover::after,
.pathway-card-link:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.pathway-card-link:hover img,
.pathway-card-link:focus-visible img {
  transform: scale(1.025);
}

.pathway-card-link img {
  transition: transform 220ms ease;
}

.pathway-card-link:focus-visible {
  outline: 3px solid rgba(181, 138, 58, 0.82);
  outline-offset: 4px;
}

.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);
}

.loop-detail-page {
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(251, 248, 241, 0.94), rgba(238, 230, 214, 0.92)),
    var(--paper);
  color: var(--ink);
}

.loop-detail-page .brand {
  color: inherit;
  text-decoration: none;
}

.loop-detail-hero {
  position: relative;
  min-height: min(760px, calc(100vh - 76px));
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #152d1f;
}

.loop-detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(14, 31, 21, 0.78), rgba(14, 31, 21, 0.24) 52%, rgba(14, 31, 21, 0.12)),
    linear-gradient(180deg, rgba(14, 31, 21, 0.06), rgba(14, 31, 21, 0.72));
}

.loop-detail-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.loop-detail-hero-copy {
  position: relative;
  z-index: 1;
  width: min(980px, calc(100% - 48px));
  margin: 0 auto;
  padding: 132px 0 76px;
  color: #fffdf8;
}

.loop-detail-hero-copy .kicker {
  color: #f0d28b;
}

.loop-detail-hero-copy h1 {
  max-width: 840px;
  margin: 16px 0 18px;
  color: #fffdf8;
  font-size: clamp(48px, 8vw, 108px);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: 0;
}

.loop-detail-hero-copy p {
  max-width: 780px;
  margin: 0;
  color: rgba(255, 253, 248, 0.9);
  font-size: clamp(18px, 2vw, 25px);
  line-height: 1.82;
  font-weight: 700;
}

.loop-section-tabs {
  position: sticky;
  top: 76px;
  z-index: 20;
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 14px max(24px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid rgba(35, 79, 42, 0.12);
  background: rgba(251, 248, 241, 0.92);
  backdrop-filter: blur(18px);
}

.loop-section-tabs a {
  flex: 0 0 auto;
  border: 1px solid rgba(35, 79, 42, 0.18);
  border-radius: 999px;
  padding: 10px 15px;
  color: #274634;
  background: rgba(255, 253, 248, 0.76);
  text-decoration: none;
  font-size: 14px;
  font-weight: 900;
}

.loop-section-tabs a.active,
.loop-section-tabs a:hover,
.loop-section-tabs a:focus-visible {
  color: #fffdf8;
  background: var(--green);
}

.loop-detail-section {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 88px 0;
}

.loop-carousel-section {
  width: 100%;
  padding-inline: max(24px, calc((100vw - 1180px) / 2));
  background:
    radial-gradient(circle at 18% 20%, rgba(91, 134, 83, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(255, 253, 248, 0.38), rgba(242, 235, 221, 0.58));
}

.adaptive-media-carousel {
  position: relative;
  isolation: isolate;
}

.adaptive-carousel-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(75, 119, 84, 0.20);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.82), rgba(236, 245, 233, 0.42)),
    rgba(255, 253, 248, 0.58);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    0 28px 72px rgba(54, 45, 29, 0.14);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.adaptive-carousel-shell::before {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: -1;
  border: 1px solid rgba(74, 127, 87, 0.14);
  border-radius: 20px;
  background:
    linear-gradient(90deg, transparent, rgba(120, 167, 131, 0.10), transparent);
  pointer-events: none;
}

.adaptive-carousel-glow {
  position: absolute;
  left: 50%;
  bottom: -58px;
  width: min(620px, 70vw);
  height: 148px;
  border-radius: 50%;
  background: rgba(105, 151, 116, 0.20);
  filter: blur(34px);
  transform: translateX(-50%);
  pointer-events: none;
}

.adaptive-carousel-viewport {
  overflow: hidden;
  padding: clamp(22px, 3vw, 36px) 0;
  cursor: grab;
  touch-action: pan-y;
}

.adaptive-carousel-viewport.is-dragging {
  cursor: grabbing;
}

.adaptive-carousel-track {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.2vw, 28px);
  transition: transform 0.58s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.adaptive-carousel-slide {
  flex: 0 0 min(78vw, 860px);
  margin: 0;
  opacity: 0.48;
  transform: scale(0.93);
  transition: opacity 0.36s ease, transform 0.36s ease, filter 0.36s ease;
  filter: saturate(0.86);
}

.adaptive-carousel-slide.is-portrait {
  flex-basis: min(62vw, 420px);
}

.adaptive-carousel-slide.is-square {
  flex-basis: min(70vw, 620px);
}

.adaptive-carousel-slide.is-active {
  opacity: 1;
  transform: scale(1);
  filter: saturate(1.04);
}

.adaptive-media-frame {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(48, 92, 58, 0.16);
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(255, 253, 248, 0.72), rgba(223, 236, 220, 0.40)),
    #efe7d8;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 22px 54px rgba(45, 64, 45, 0.16);
}

.adaptive-carousel-slide.is-active .adaptive-media-frame {
  border-color: rgba(54, 119, 72, 0.36);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.76),
    0 30px 72px rgba(41, 78, 49, 0.23);
}

.adaptive-carousel-slide.is-landscape .adaptive-media-frame {
  aspect-ratio: 16 / 9;
}

.adaptive-carousel-slide.is-portrait .adaptive-media-frame {
  aspect-ratio: 9 / 16;
  max-height: min(72vh, 720px);
}

.adaptive-carousel-slide.is-square .adaptive-media-frame {
  aspect-ratio: 1 / 1;
  max-height: min(68vh, 680px);
}

.adaptive-media-frame img,
.adaptive-media-frame video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background:
    radial-gradient(circle at center, rgba(255, 253, 248, 0.22), transparent 62%),
    #16251b;
  user-select: none;
}

.adaptive-media-frame video {
  cursor: pointer;
}

.adaptive-media-toggle,
.adaptive-media-sound {
  position: absolute;
  top: 14px;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(255, 253, 248, 0.42);
  border-radius: 50%;
  padding: 0;
  background: rgba(21, 45, 31, 0.24);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 12px 28px rgba(19, 39, 25, 0.16);
  cursor: pointer;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.adaptive-media-toggle {
  right: 14px;
}

.adaptive-media-sound {
  right: 62px;
}

.adaptive-media-frame:hover .adaptive-media-toggle,
.adaptive-media-frame:hover .adaptive-media-sound,
.adaptive-media-toggle:focus-visible,
.adaptive-media-sound:focus-visible,
.adaptive-media-toggle.is-paused,
.adaptive-media-sound.is-muted {
  opacity: 1;
  transform: translateY(0);
}

.adaptive-media-toggle:hover,
.adaptive-media-sound:hover {
  background: rgba(21, 45, 31, 0.36);
}

.adaptive-media-toggle span {
  width: 11px;
  height: 15px;
  border-left: 4px solid rgba(255, 253, 248, 0.94);
  border-right: 4px solid rgba(255, 253, 248, 0.94);
}

.adaptive-media-toggle.is-paused span {
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 13px solid rgba(255, 253, 248, 0.94);
  border-right: 0;
  transform: translateX(2px);
}

.adaptive-media-sound span {
  position: relative;
  width: 18px;
  height: 18px;
}

.adaptive-media-sound span::before {
  content: "";
  position: absolute;
  left: 1px;
  top: 5px;
  width: 6px;
  height: 8px;
  border-radius: 2px 0 0 2px;
  background: rgba(255, 253, 248, 0.94);
  box-shadow: 6px -3px 0 -1px rgba(255, 253, 248, 0.94), 6px 3px 0 -1px rgba(255, 253, 248, 0.94);
}

.adaptive-media-sound span::after {
  content: "";
  position: absolute;
  right: 0;
  top: 3px;
  width: 8px;
  height: 12px;
  border: 2px solid rgba(255, 253, 248, 0.94);
  border-left: 0;
  border-radius: 0 12px 12px 0;
}

.adaptive-media-sound.is-muted span::after {
  right: 2px;
  top: 2px;
  width: 2px;
  height: 16px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.94);
  transform: rotate(-42deg);
}

.adaptive-carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 253, 248, 0.52);
  border-radius: 50%;
  color: rgba(255, 253, 248, 0.96);
  background: rgba(31, 62, 38, 0.34);
  box-shadow: 0 14px 28px rgba(24, 48, 31, 0.18);
  cursor: pointer;
  font-size: 34px;
  line-height: 1;
  transform: translateY(-50%);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: background 0.22s ease, transform 0.22s ease;
}

.adaptive-carousel-arrow:hover,
.adaptive-carousel-arrow:focus-visible {
  background: rgba(38, 91, 50, 0.52);
  transform: translateY(-50%) scale(1.05);
}

.adaptive-carousel-arrow.prev {
  left: clamp(12px, 2vw, 24px);
}

.adaptive-carousel-arrow.next {
  right: clamp(12px, 2vw, 24px);
}

.adaptive-carousel-meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
  min-height: 86px;
  padding: 18px 4px 0;
  color: #2a4735;
}

.adaptive-carousel-meta strong {
  display: block;
  margin-bottom: 4px;
  font-size: clamp(19px, 2.1vw, 28px);
  line-height: 1.35;
}

.adaptive-carousel-meta p {
  max-width: 780px;
  margin: 0;
  color: #627067;
  font-size: 15px;
  line-height: 1.75;
}

.adaptive-carousel-meta span {
  flex: 0 0 auto;
  border: 1px solid rgba(35, 79, 42, 0.12);
  border-radius: 999px;
  padding: 7px 11px;
  color: rgba(39, 61, 45, 0.66);
  background: rgba(255, 253, 248, 0.62);
  font-size: 13px;
  font-weight: 900;
}

.adaptive-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

.adaptive-carousel-dots button {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: rgba(35, 79, 42, 0.22);
  cursor: pointer;
  transition: width 0.22s ease, background 0.22s ease;
}

.adaptive-carousel-dots button.is-active {
  width: 28px;
  background: rgba(35, 79, 42, 0.72);
}

.loop-intro-band {
  width: 100%;
  padding: 82px max(24px, calc((100vw - 920px) / 2));
  background:
    linear-gradient(90deg, rgba(35, 79, 42, 0.08), rgba(181, 138, 58, 0.11)),
    rgba(255, 253, 248, 0.62);
}

.loop-photo-wall {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.loop-photo {
  position: relative;
  min-height: 260px;
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(47, 39, 25, 0.12);
  background: #d9d0bd;
}

.loop-photo.featured {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 536px;
}

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

.loop-photo-open {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: zoom-in;
}

.loop-photo figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 42px 18px 16px;
  color: #fffdf8;
  background: linear-gradient(180deg, rgba(15, 32, 22, 0), rgba(15, 32, 22, 0.76));
  font-size: 15px;
  font-weight: 800;
  line-height: 1.55;
  pointer-events: none;
}

.photo-viewer {
  position: fixed;
  inset: 0;
  z-index: 140;
  display: grid;
  place-items: center;
  padding: 22px;
}

.photo-viewer-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(20, 28, 23, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.photo-viewer-card {
  position: relative;
  z-index: 1;
  max-width: min(1080px, calc(100vw - 36px));
  max-height: calc(100vh - 44px);
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  background: rgba(255, 253, 248, 0.92);
  box-shadow: 0 34px 92px rgba(5, 8, 6, 0.42);
}

.photo-viewer-card img {
  display: block;
  width: 100%;
  max-height: calc(100vh - 116px);
  object-fit: contain;
  background: #142018;
}

.photo-viewer-card figcaption {
  padding: 12px 16px 14px;
  color: #263f31;
  font-weight: 800;
  line-height: 1.55;
}

.photo-viewer-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.78);
  color: #203b29;
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
  box-shadow: 0 14px 30px rgba(22, 31, 24, 0.16);
}

body.photo-viewer-open {
  overflow: hidden;
}

.loop-video-section {
  border-top: 1px solid rgba(35, 79, 42, 0.12);
  border-bottom: 1px solid rgba(35, 79, 42, 0.12);
}

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

.loop-video-card {
  padding: 16px;
  border: 1px solid rgba(35, 79, 42, 0.14);
  border-radius: 10px;
  background: rgba(255, 253, 248, 0.76);
  box-shadow: 0 16px 34px rgba(54, 45, 29, 0.08);
}

.loop-video-card video,
.loop-video-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(35, 79, 42, 0.9), rgba(181, 138, 58, 0.62)),
    #234f2a;
}

.loop-video-card video {
  display: block;
  object-fit: contain;
}

.loop-video-card.is-portrait {
  max-width: 460px;
  justify-self: center;
}

.loop-video-card.is-portrait video {
  aspect-ratio: 9 / 16;
  max-height: min(76vh, 720px);
}

.loop-video-card.is-square video {
  aspect-ratio: 1 / 1;
}

.loop-video-placeholder {
  display: grid;
  place-items: center;
  color: #fffdf8;
  font-size: 22px;
  font-weight: 900;
}

.loop-video-card h3 {
  margin: 16px 0 8px;
  color: #203d2d;
  font-size: 22px;
}

.loop-video-card p {
  margin: 0;
  color: #516052;
  line-height: 1.76;
}

.loop-highlight-section {
  padding-bottom: 120px;
}

.loop-highlight-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.loop-highlight-list li {
  min-height: 168px;
  padding: 24px;
  border: 1px solid rgba(181, 138, 58, 0.24);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.88), rgba(244, 236, 221, 0.78));
  color: #263f31;
  box-shadow: 0 14px 30px rgba(54, 45, 29, 0.08);
  font-size: 19px;
  font-weight: 850;
  line-height: 1.72;
}

.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(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

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

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

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

.position-card-media picture,
.pathway-card-link picture,
.advantage-grid picture {
  display: block;
  width: 100%;
  height: 100%;
}

.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);
}

.hero-video-section {
  position: relative;
  min-height: 720px;
  max-width: 1280px;
  margin: 8px auto 70px;
  padding: 34px 0;
  overflow: hidden;
  isolation: isolate;
}

.cinematic-video-hero {
  min-height: min(780px, calc(100vh - 56px));
}

.hero-video-orbit {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.94fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 24px;
  width: min(1180px, calc(100% - 56px));
  min-height: 560px;
  margin: 0 auto;
  transition:
    transform 0.84s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.64s ease,
    filter 0.64s ease;
}

.orbit-media {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(230, 223, 207, 0.72);
  border-radius: 22px;
  background: rgba(229, 221, 206, 0.66);
  box-shadow:
    0 24px 62px rgba(53, 44, 29, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.44);
  opacity: 1;
  filter: saturate(0.94) contrast(0.98);
  transform-origin: center;
  transition:
    opacity 0.72s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.72s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.86s cubic-bezier(0.22, 1, 0.36, 1);
}

.orbit-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(251, 248, 241, 0.10), rgba(251, 248, 241, 0.40)),
    radial-gradient(circle at 50% 0%, rgba(122, 182, 124, 0.14), transparent 48%);
  pointer-events: none;
}

.orbit-media figcaption {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 2;
  border-radius: 10px;
  padding: 10px 15px;
  background: rgba(33, 48, 36, 0.78);
  color: rgba(255, 253, 248, 0.94);
  font-size: 17px;
  font-weight: 850;
  line-height: 1.25;
  box-shadow: 0 12px 28px rgba(21, 33, 24, 0.16);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition:
    opacity 0.52s ease,
    transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.orbit-media-01 {
  grid-row: 1 / span 2;
  aspect-ratio: auto;
  transform: translate3d(0, 0, 0);
}

.orbit-media-02 {
  aspect-ratio: auto;
  transform: translate3d(0, 0, 0);
}

.orbit-media-03 {
  aspect-ratio: auto;
  transform: translate3d(0, 0, 0);
}

.orbit-media-04 {
  bottom: 2%;
  left: 5%;
  width: min(30vw, 390px);
  aspect-ratio: 16 / 10;
  transform: rotate(3deg);
}

.hero-video-section::before {
  content: "";
  position: absolute;
  inset: 14% 16% 9%;
  z-index: -1;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 44%, rgba(91, 169, 103, 0.13), transparent 48%),
    radial-gradient(ellipse at 50% 78%, rgba(189, 160, 100, 0.12), transparent 56%);
  filter: blur(22px);
}

.hero-video-copy {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  display: grid;
  justify-items: center;
  width: min(920px, 88vw);
  text-align: center;
  opacity: 0;
  pointer-events: none;
  filter: blur(8px);
  transform: translate(-50%, -46%) scale(0.965);
  transform-origin: center;
  transition:
    opacity 0.62s ease 0.06s,
    filter 0.62s ease 0.06s,
    transform 0.76s cubic-bezier(0.22, 1, 0.36, 1) 0.06s;
}

.hero-video-copy .kicker {
  margin-bottom: 18px;
}

.hero-video-copy h2 {
  max-width: 820px;
  margin: 0;
  color: #1f3427;
  font-family: var(--serif);
  font-size: clamp(42px, 6.2vw, 82px);
  font-weight: 850;
  line-height: 1.08;
  letter-spacing: 0;
}

.hero-video-copy p {
  max-width: 680px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.86;
}

.hero-video-main {
  position: relative;
  z-index: 2;
  display: block;
  width: min(720px, 70vw);
  border: 0;
  border-radius: 32px;
  padding: 0;
  overflow: hidden;
  background: rgba(255, 253, 248, 0.42);
  box-shadow:
    0 34px 82px rgba(53, 44, 29, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.42);
  cursor: pointer;
  backdrop-filter: blur(18px) saturate(1.04);
  -webkit-backdrop-filter: blur(18px) saturate(1.04);
  transition: transform 0.32s ease, box-shadow 0.32s ease;
}

.hero-video-main:hover {
  transform: translateY(-4px);
  box-shadow:
    0 42px 92px rgba(53, 44, 29, 0.15),
    0 0 0 1px rgba(157, 198, 156, 0.42),
    0 0 52px rgba(95, 188, 113, 0.12);
}

.hero-video-poster {
  display: block;
  aspect-ratio: 16 / 9;
  padding: 10px;
}

.hero-video-poster img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  object-fit: cover;
  filter: saturate(0.92) contrast(0.98);
}

.hero-video-playmark {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 68px;
  height: 68px;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.72);
  box-shadow:
    0 16px 36px rgba(31, 62, 38, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.64);
  transform: translate(-50%, -50%);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.hero-video-playmark::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 22px;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid rgba(31, 62, 38, 0.86);
}

.hero-video-cta {
  position: relative;
  z-index: 3;
  min-height: 46px;
  margin-top: 26px;
  border: 1px solid rgba(92, 140, 91, 0.28);
  border-radius: 999px;
  padding: 0 28px;
  background: rgba(255, 253, 248, 0.76);
  color: #243f2c;
  font-weight: 850;
  letter-spacing: 0;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(56, 72, 45, 0.09);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.hero-video-cta:hover {
  border-color: rgba(75, 145, 83, 0.46);
  background: rgba(255, 253, 248, 0.92);
  transform: translateY(-2px);
}

.hero-video-preview-strip {
  position: relative;
  z-index: 4;
  display: flex;
  gap: 12px;
  width: min(1040px, calc(100% - 56px));
  margin: -24px auto 0;
  padding: 0 2px 10px;
  overflow-x: auto;
  scroll-padding: 18px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.hero-video-preview-strip::-webkit-scrollbar,
.hero-video-modal-strip::-webkit-scrollbar {
  display: none;
}

.hero-video-thumb {
  position: relative;
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  flex: 0 0 min(390px, 80vw);
  min-height: 92px;
  border: 1px solid rgba(52, 92, 59, 0.16);
  border-radius: 16px;
  padding: 10px;
  color: #213828;
  background: rgba(255, 253, 246, 0.84);
  box-shadow: 0 18px 38px rgba(53, 44, 29, 0.10);
  cursor: pointer;
  scroll-snap-align: start;
  text-align: left;
}

.hero-video-thumb.is-active {
  border-color: rgba(77, 174, 93, 0.56);
  background: rgba(238, 251, 238, 0.90);
  box-shadow:
    0 18px 40px rgba(53, 44, 29, 0.12),
    0 0 0 1px rgba(77, 174, 93, 0.20);
}

.hero-video-thumb-media {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 12px;
  background: #18241b;
  aspect-ratio: 16 / 9;
}

.hero-video-thumb-media::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(255, 253, 246, 0.78);
  box-shadow: 0 10px 26px rgba(18, 28, 21, 0.24);
  transform: translate(-50%, -50%);
}

.hero-video-thumb-media::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 11px solid #21412c;
  transform: translate(-35%, -50%);
}

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

.hero-video-thumb-copy {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.hero-video-thumb-copy strong {
  overflow: hidden;
  color: #213828;
  font-size: 15px;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-video-thumb-copy small {
  display: -webkit-box;
  overflow: hidden;
  color: rgba(43, 64, 48, 0.66);
  font-size: 12px;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.cinematic-video-hero:hover .hero-video-copy,
.cinematic-video-hero:focus-within .hero-video-copy,
.cinematic-video-hero.is-mobile-revealed .hero-video-copy {
  opacity: 1;
  pointer-events: auto;
  filter: blur(0);
  transform: translate(-50%, -50%) scale(1);
}

.cinematic-video-hero:hover .hero-video-orbit,
.cinematic-video-hero:focus-within .hero-video-orbit,
.cinematic-video-hero.is-mobile-revealed .hero-video-orbit {
  filter: saturate(0.86) contrast(0.96);
}

.cinematic-video-hero:hover .orbit-media,
.cinematic-video-hero:focus-within .orbit-media,
.cinematic-video-hero.is-mobile-revealed .orbit-media {
  opacity: 0.54;
}

.cinematic-video-hero:hover .orbit-media figcaption,
.cinematic-video-hero:focus-within .orbit-media figcaption,
.cinematic-video-hero.is-mobile-revealed .orbit-media figcaption {
  opacity: 0.42;
  transform: translateY(6px);
}

.cinematic-video-hero:hover .orbit-media-01,
.cinematic-video-hero:focus-within .orbit-media-01,
.cinematic-video-hero.is-mobile-revealed .orbit-media-01 {
  transform: translate3d(-18vw, -34px, 0) scale(0.92) rotate(-4deg);
}

.cinematic-video-hero:hover .orbit-media-02,
.cinematic-video-hero:focus-within .orbit-media-02,
.cinematic-video-hero.is-mobile-revealed .orbit-media-02 {
  transform: translate3d(15vw, -38px, 0) scale(0.92) rotate(3deg);
}

.cinematic-video-hero:hover .orbit-media-03,
.cinematic-video-hero:focus-within .orbit-media-03,
.cinematic-video-hero.is-mobile-revealed .orbit-media-03 {
  transform: translate3d(10vw, 64px, 0) scale(0.92) rotate(-2deg);
}

.cinematic-video-hero.is-open .hero-video-copy {
  opacity: 0.18;
  filter: blur(3px);
  transform: translate(-50%, -50%) scale(0.965);
}

.cinematic-video-hero.is-open .orbit-media {
  opacity: 0.30;
  filter: saturate(0.72) contrast(0.92) blur(1px);
}

.cinematic-video-hero.is-open .orbit-media-01 {
  transform: translate3d(-20vw, -5vh, 0) scale(0.96) rotate(-6deg);
}

.cinematic-video-hero.is-open .orbit-media-02 {
  transform: translate3d(18vw, -5vh, 0) scale(0.96) rotate(5deg);
}

.cinematic-video-hero.is-open .orbit-media-03 {
  transform: translate3d(12vw, 8vh, 0) scale(0.96) rotate(-3deg);
}

.hero-video-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}

.hero-video-section.is-open .hero-video-modal {
  opacity: 1;
  pointer-events: auto;
}

.hero-video-section.is-closing .hero-video-modal {
  opacity: 0;
}

.hero-video-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background:
    radial-gradient(circle at 50% 42%, rgba(251, 248, 241, 0.10), transparent 28%),
    rgba(24, 28, 25, 0.54);
  cursor: pointer;
  backdrop-filter: blur(18px) saturate(0.86);
  -webkit-backdrop-filter: blur(18px) saturate(0.86);
}

.hero-video-dialog {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100vw - 40px));
  max-height: calc(100vh - 48px);
  opacity: 0;
  transform: scale(0.20);
  transform-origin: center;
  transition:
    opacity 0.46s ease,
    transform 0.72s cubic-bezier(0.18, 0.86, 0.24, 1);
}

.hero-video-section.is-open .hero-video-dialog {
  opacity: 1;
  transform: scale(1);
}

.hero-video-section.is-closing .hero-video-dialog {
  opacity: 0;
  transform: scale(0.90);
}

.hero-video-stage {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 0%, rgba(114, 151, 116, 0.22), transparent 48%),
    linear-gradient(145deg, rgba(14, 16, 14, 0.98), rgba(28, 34, 29, 0.96));
  box-shadow:
    0 42px 110px rgba(5, 8, 6, 0.46),
    0 0 0 1px rgba(255, 255, 255, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.10);
  clip-path: inset(42% 44% 42% 44% round 28px);
  transition: clip-path 0.74s cubic-bezier(0.18, 0.86, 0.24, 1);
}

.hero-video-section.is-open .hero-video-stage {
  clip-path: inset(0 0 0 0 round 30px);
}

.hero-video-stage video {
  display: block;
  width: 100%;
  max-height: calc(100vh - 96px);
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: transparent;
  opacity: 1;
  transform: scale(1);
  transition:
    opacity 0.34s ease 0.28s,
    transform 0.52s cubic-bezier(0.22, 1, 0.36, 1) 0.22s;
}

.hero-video-section.is-opening .hero-video-stage video {
  opacity: 0;
  transform: scale(1.035);
}

.hero-video-stage.is-portrait video {
  width: auto;
  height: min(78vh, 760px);
  max-width: 92vw;
  aspect-ratio: auto;
}

.hero-video-stage.is-square video {
  width: min(82vh, 760px);
  max-width: 92vw;
  aspect-ratio: auto;
}

.hero-video-close,
.hero-video-control,
.hero-video-sound,
.hero-video-nav {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.70);
  color: #203b29;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(22, 31, 24, 0.16);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: opacity 0.22s ease, transform 0.22s ease, background 0.22s ease;
}

.hero-video-close:hover,
.hero-video-control:hover,
.hero-video-sound:hover,
.hero-video-nav:hover {
  background: rgba(255, 253, 248, 0.92);
  transform: translateY(-1px);
}

.hero-video-close {
  top: -16px;
  right: -16px;
  width: 44px;
  height: 44px;
  font-size: 28px;
  line-height: 1;
}

.hero-video-control {
  left: 18px;
  bottom: 18px;
  width: 48px;
  height: 48px;
  opacity: 0;
}

.hero-video-sound {
  left: 76px;
  bottom: 18px;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  opacity: 0;
}

.hero-video-nav {
  top: 50%;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  font-size: 34px;
  line-height: 1;
  transform: translateY(-50%);
}

.hero-video-nav:hover {
  transform: translateY(calc(-50% - 1px));
}

.hero-video-nav.prev {
  left: 18px;
}

.hero-video-nav.next {
  right: 18px;
}

.hero-video-modal-meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-top: 14px;
  color: rgba(255, 253, 246, 0.88);
}

.hero-video-modal-meta strong {
  display: block;
  font-size: 18px;
  line-height: 1.3;
}

.hero-video-modal-meta p {
  max-width: 720px;
  margin: 5px 0 0;
  color: rgba(255, 253, 246, 0.68);
  line-height: 1.6;
}

.hero-video-modal-meta span {
  flex: 0 0 auto;
  color: rgba(255, 253, 246, 0.62);
  font-weight: 800;
}

.hero-video-modal-strip {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  padding-bottom: 4px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.hero-video-modal-strip .hero-video-thumb {
  grid-template-columns: 88px minmax(0, 1fr);
  flex-basis: min(320px, 72vw);
  min-height: 74px;
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 253, 246, 0.10);
  box-shadow: none;
}

.hero-video-modal-strip .hero-video-thumb.is-active {
  border-color: rgba(255, 253, 246, 0.56);
  background: rgba(255, 253, 246, 0.22);
}

.hero-video-modal-strip .hero-video-thumb-copy strong {
  color: rgba(255, 253, 246, 0.92);
}

.hero-video-modal-strip .hero-video-thumb-copy small {
  color: rgba(255, 253, 246, 0.62);
}

.hero-video-indicators {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

.hero-video-indicators button {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: rgba(255, 253, 246, 0.34);
  cursor: pointer;
  transition: width 0.22s ease, background 0.22s ease, opacity 0.22s ease;
}

.hero-video-indicators button.is-active {
  width: 24px;
  background: rgba(255, 253, 246, 0.92);
}

.hero-video-stage:hover .hero-video-control,
.hero-video-stage:hover .hero-video-sound,
.hero-video-control:focus-visible,
.hero-video-sound:focus-visible,
.hero-video-sound.is-muted {
  opacity: 1;
}

@media (hover: none), (pointer: coarse) {
  .adaptive-media-toggle,
  .adaptive-media-sound,
  .hero-video-control,
  .hero-video-sound {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-video-control span::before,
.hero-video-control span::after {
  content: "";
  position: absolute;
  top: 16px;
  width: 5px;
  height: 16px;
  border-radius: 2px;
  background: #24412d;
}

.hero-video-control span::before {
  left: 18px;
}

.hero-video-control span::after {
  right: 18px;
}

.hero-video-control.is-paused span::before {
  left: 19px;
  top: 14px;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #24412d;
  border-radius: 0;
  background: transparent;
}

.hero-video-control.is-paused span::after {
  display: none;
}

.hero-video-sound span {
  position: relative;
  width: 22px;
  height: 22px;
}

.hero-video-sound span::before {
  content: "";
  position: absolute;
  left: 1px;
  top: 7px;
  width: 7px;
  height: 8px;
  border-radius: 3px 0 0 3px;
  background: #24412d;
  box-shadow: 7px -4px 0 -1px #24412d, 7px 4px 0 -1px #24412d;
}

.hero-video-sound span::after {
  content: "";
  position: absolute;
  right: 0;
  top: 4px;
  width: 9px;
  height: 14px;
  border: 2px solid #24412d;
  border-left: 0;
  border-radius: 0 14px 14px 0;
}

.hero-video-sound.is-muted span::after {
  right: 3px;
  top: 3px;
  width: 2px;
  height: 18px;
  border: 0;
  border-radius: 999px;
  background: #24412d;
  transform: rotate(-42deg);
}

body.hero-video-modal-open {
  overflow: hidden;
}

.experience-map {
  position: relative;
  max-width: 1240px;
  min-height: 560px;
  margin: 26px auto 0;
  overflow: visible;
  background:
    radial-gradient(ellipse at 50% 48%, rgba(95, 202, 113, 0.09), transparent 42%),
    radial-gradient(ellipse at 50% 58%, rgba(255, 253, 246, 0.84), rgba(247, 245, 239, 0.10) 74%, transparent 94%);
  box-shadow: none;
  perspective: 1200px;
  isolation: isolate;
}

.experience-map::before,
.experience-map::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.experience-map::before {
  inset: -9% -6%;
  z-index: 0;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(80, 202, 103, 0.12), transparent 44%),
    radial-gradient(ellipse at 50% 78%, rgba(51, 103, 64, 0.10), transparent 42%);
  filter: blur(18px);
  opacity: 0.64;
}

.experience-map::after {
  inset: -4% -2%;
  z-index: 3;
  background:
    linear-gradient(90deg, #f7f5ef 0%, rgba(247, 245, 239, 0) 9%, rgba(247, 245, 239, 0) 91%, #f7f5ef 100%),
    linear-gradient(180deg, #f7f5ef 0%, rgba(247, 245, 239, 0) 11%, rgba(247, 245, 239, 0) 86%, #fbf8f1 100%);
  opacity: 0.9;
}

.map-hero-shell {
  position: relative;
  z-index: 2;
  width: min(100%, 1240px);
  margin: 0 auto;
  transform-origin: 50% 55%;
  filter:
    drop-shadow(0 34px 44px rgba(54, 91, 58, 0.16))
    drop-shadow(0 0 34px rgba(76, 204, 100, 0.10));
  animation: mapHeroFloat 15s ease-in-out infinite alternate;
  will-change: transform;
}

.map-hero-visual {
  display: block;
  width: 100%;
  height: auto;
  mix-blend-mode: multiply;
  transform: translateZ(0);
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%),
    linear-gradient(180deg, transparent 0%, #000 9%, #000 88%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%),
    linear-gradient(180deg, transparent 0%, #000 9%, #000 88%, transparent 100%);
  mask-composite: intersect;
}

.map-light-layer {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0.72;
}

.map-flow {
  fill: none;
  stroke: rgba(80, 230, 122, 0.72);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-dasharray: 22 54;
  filter: url("#mapGlow");
  animation: mapFlow 5.6s linear infinite;
}

.map-flow.route-02 { animation-delay: 0.35s; }
.map-flow.route-03 { animation-delay: 0.70s; }
.map-flow.route-04 { animation-delay: 1.05s; }
.map-flow.route-05 { animation-delay: 1.40s; }
.map-flow.route-06 { animation-delay: 1.75s; }
.map-flow.route-07 { animation-delay: 2.10s; }
.map-flow.route-08 { animation-delay: 2.45s; }

.map-glow-nodes circle {
  fill: rgba(67, 216, 108, 0.74);
  stroke: rgba(255, 255, 242, 0.92);
  stroke-width: 2.2;
  filter: url("#mapGlow");
  transform-origin: center;
  animation: mapNodeBreath 3s ease-in-out infinite;
}

.map-glow-nodes circle:nth-child(2) { animation-delay: 0.25s; }
.map-glow-nodes circle:nth-child(3) { animation-delay: 0.50s; }
.map-glow-nodes circle:nth-child(4) { animation-delay: 0.75s; }
.map-glow-nodes circle:nth-child(5) { animation-delay: 1s; }
.map-glow-nodes circle:nth-child(6) { animation-delay: 1.25s; }
.map-glow-nodes circle:nth-child(7) { animation-delay: 1.50s; }
.map-glow-nodes circle:nth-child(8) { animation-delay: 1.75s; }
.map-glow-nodes circle:nth-child(9) { animation-delay: 2s; }

.map-node-layer {
  position: absolute;
  inset: 0;
  z-index: 5;
}

.map-preview-layer {
  position: absolute;
  inset: 0;
  z-index: 6;
  pointer-events: none;
}

.map-location-node {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 0;
  padding: 0;
  color: #25422d;
  background: transparent;
  cursor: pointer;
  transform: translate(-50%, -50%);
  transform-origin: center;
}

.map-location-dot {
  position: relative;
  width: 13px;
  height: 13px;
  border: 2px solid rgba(255, 255, 242, 0.92);
  border-radius: 999px;
  background: #35c765;
  box-shadow:
    0 0 0 0 rgba(69, 216, 109, 0.32),
    0 0 18px rgba(69, 216, 109, 0.72),
    0 0 34px rgba(69, 216, 109, 0.34);
  animation: interactiveNodeBreath 3s ease-in-out infinite;
}

.map-location-dot::after {
  content: "";
  position: absolute;
  inset: -12px;
  border: 1px solid rgba(83, 229, 123, 0.54);
  border-radius: inherit;
  opacity: 0;
  transform: scale(0.72);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.map-location-label {
  padding: 4px 8px 5px;
  border: 1px solid rgba(228, 255, 232, 0.50);
  border-radius: 999px;
  background: rgba(255, 253, 246, 0.50);
  box-shadow: 0 10px 22px rgba(36, 80, 44, 0.10);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 850;
  line-height: 1;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.28s ease, transform 0.28s ease, border-color 0.28s ease;
  white-space: nowrap;
}

.map-location-node:hover .map-location-label,
.map-location-node:focus-visible .map-location-label,
.map-location-node.is-preview .map-location-label,
.map-location-node.is-active .map-location-label {
  opacity: 1;
  transform: translateX(0);
}

.map-location-node:hover .map-location-dot::after,
.map-location-node:focus-visible .map-location-dot::after,
.map-location-node.is-preview .map-location-dot::after,
.map-location-node.is-active .map-location-dot::after {
  opacity: 1;
  transform: scale(1.55);
}

.map-location-node.is-preview .map-location-dot {
  background: #54df7b;
  box-shadow:
    0 0 0 12px rgba(71, 223, 112, 0.10),
    0 0 24px rgba(71, 223, 112, 0.90),
    0 0 52px rgba(71, 223, 112, 0.34);
}

.map-location-node.is-active .map-location-dot {
  background: #5ff08b;
  box-shadow:
    0 0 0 10px rgba(71, 223, 112, 0.12),
    0 0 22px rgba(71, 223, 112, 0.96),
    0 0 44px rgba(71, 223, 112, 0.42);
}

.map-location-node:focus-visible {
  outline: none;
}

.map-location-node:focus-visible .map-location-label {
  border-color: rgba(72, 210, 102, 0.80);
}

.map-preview-card {
  position: absolute;
  left: clamp(124px, var(--map-x, 50%), calc(100% - 124px));
  top: clamp(12px, var(--map-y, 50%), calc(100% - 196px));
  width: clamp(168px, 18vw, 248px);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(228, 255, 232, 0.62);
  border-radius: 18px;
  background: rgba(255, 253, 246, 0.62);
  box-shadow:
    0 22px 46px rgba(42, 82, 48, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.30),
    0 0 34px rgba(72, 208, 104, 0.16);
  opacity: 0;
  transform: translate3d(-50%, 18px, 0) scale(0.92);
  transform-origin: 50% 84%;
  animation: mapPreviewCard 3s ease-in-out both;
  backdrop-filter: blur(18px) saturate(1.12);
  -webkit-backdrop-filter: blur(18px) saturate(1.12);
}

.map-preview-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.46), transparent 44%),
    radial-gradient(circle at 18% 0%, rgba(87, 221, 117, 0.18), transparent 38%);
  pointer-events: none;
}

.map-preview-card img {
  display: block;
  width: calc(100% - 14px);
  margin: 7px 7px 0;
  aspect-ratio: 16 / 9;
  border-radius: 13px;
  object-fit: cover;
  filter: saturate(0.96) contrast(0.98);
}

.map-preview-card figcaption {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 9px 14px 12px;
  color: #283a2c;
  font-size: 13px;
  line-height: 1.35;
  white-space: nowrap;
}

.map-preview-card strong {
  flex: 0 0 auto;
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 850;
  color: #1f3c28;
}

.map-preview-card span {
  overflow: hidden;
  color: rgba(35, 57, 40, 0.76);
  text-overflow: ellipsis;
}

.map-panel-backdrop {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(35, 48, 38, 0.18);
  opacity: 0;
  pointer-events: none;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: opacity 0.32s ease;
}

.map-detail-panel {
  position: fixed;
  z-index: 90;
  left: 50%;
  top: 50%;
  width: min(980px, calc(100vw - 56px));
  max-height: min(86vh, 760px);
  overflow: hidden;
  border: 1px solid rgba(218, 249, 222, 0.62);
  border-radius: 28px;
  background:
    radial-gradient(circle at 22% 0%, rgba(86, 222, 123, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(255, 253, 246, 0.82), rgba(246, 242, 232, 0.72));
  box-shadow:
    0 34px 84px rgba(39, 65, 42, 0.24),
    0 0 0 1px rgba(255, 255, 255, 0.42),
    0 0 54px rgba(72, 208, 104, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -47%) scale(0.96);
  backdrop-filter: blur(22px) saturate(1.12);
  -webkit-backdrop-filter: blur(22px) saturate(1.12);
  transition: opacity 0.34s ease, transform 0.34s ease;
}

.interactive-footprint-map.is-open .map-detail-panel,
.interactive-footprint-map.is-open .map-panel-backdrop {
  opacity: 1;
  pointer-events: auto;
}

.interactive-footprint-map.is-open .map-detail-panel {
  transform: translate(-50%, -50%) scale(1);
}

.map-panel-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(35, 79, 42, 0.12);
  border-radius: 50%;
  color: rgba(35, 57, 40, 0.76);
  background: rgba(255, 253, 246, 0.72);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.highlight-moment-viewer {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: clamp(24px, 3.2vw, 36px);
}

.highlight-stage {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(229, 255, 232, 0.62);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(35, 79, 42, 0.12), rgba(255, 253, 246, 0.16)),
    rgba(255, 253, 246, 0.34);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.62),
    0 24px 54px rgba(38, 72, 45, 0.20);
}

.highlight-viewport {
  overflow: hidden;
  cursor: grab;
  touch-action: pan-y;
}

.highlight-viewport.is-dragging {
  cursor: grabbing;
}

.highlight-track {
  display: flex;
  transition: transform 0.62s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.highlight-slide {
  flex: 0 0 100%;
  margin: 0;
  opacity: 0.45;
  transform: scale(0.985);
  transition: opacity 0.52s ease, transform 0.52s ease;
}

.highlight-slide.is-current {
  opacity: 1;
  transform: scale(1);
}

.highlight-slide img,
.highlight-slide video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  user-select: none;
}

.highlight-slide video {
  cursor: pointer;
  background: #142018;
}

.highlight-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(229, 255, 232, 0.62);
  border-radius: 50%;
  color: rgba(255, 253, 246, 0.92);
  background: rgba(31, 62, 38, 0.34);
  box-shadow: 0 14px 28px rgba(24, 48, 31, 0.18);
  cursor: pointer;
  font-size: 30px;
  line-height: 1;
  transform: translateY(-50%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background 0.24s ease, transform 0.24s ease;
}

.highlight-arrow:hover {
  background: rgba(40, 94, 51, 0.48);
  transform: translateY(-50%) scale(1.04);
}

.highlight-arrow:disabled {
  cursor: not-allowed;
  opacity: 0.38;
}

.highlight-arrow.prev {
  left: 16px;
}

.highlight-arrow.next {
  right: 16px;
}

.highlight-caption-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: rgba(34, 54, 39, 0.70);
  font-size: 14px;
  line-height: 1.7;
}

.highlight-caption-row p {
  margin: 0;
}

.highlight-caption-row span {
  flex: 0 0 auto;
  color: rgba(35, 57, 40, 0.52);
  font-size: 13px;
}

.highlight-ripple {
  position: relative;
  height: 46px;
  overflow: hidden;
  border-radius: 50%;
  opacity: 0.72;
  transform: translateY(-4px);
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent);
}

.highlight-ripple::before {
  content: "";
  position: absolute;
  inset: -70% 8% auto;
  height: 120px;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at center, rgba(78, 219, 112, 0.18), transparent 62%),
    linear-gradient(90deg, transparent, rgba(85, 215, 116, 0.28), transparent);
  filter: blur(10px);
}

.highlight-ripple span {
  position: absolute;
  left: 50%;
  top: 0;
  width: 72%;
  height: 20px;
  border: 1px solid rgba(77, 208, 105, 0.28);
  border-radius: 50%;
  transform: translateX(-50%) scaleX(0.64);
  animation: viewerRipple 3.8s ease-in-out infinite;
}

.highlight-ripple span:nth-child(2) {
  animation-delay: 0.8s;
}

.highlight-ripple span:nth-child(3) {
  animation-delay: 1.6s;
}

.map-panel-kicker {
  color: var(--gold-strong);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.highlight-moment-viewer h3 {
  margin: 0;
  color: #213528;
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.08;
}

.map-panel-description {
  margin: 0;
  color: rgba(32, 51, 37, 0.74);
  line-height: 1.85;
}

.map-panel-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: -2px;
}

.map-panel-controls button,
.map-location-switcher button {
  border: 1px solid rgba(35, 79, 42, 0.14);
  border-radius: 999px;
  padding: 8px 13px;
  color: #25422d;
  background: rgba(255, 253, 246, 0.62);
  cursor: pointer;
}

.map-panel-controls button:disabled {
  cursor: not-allowed;
  opacity: 0.42;
}

.map-panel-controls span {
  color: rgba(35, 57, 40, 0.62);
  font-size: 13px;
}

.map-location-switcher {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.map-mobile-location-strip {
  display: none;
}

.map-location-switcher button,
.map-mobile-location-strip button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  text-align: left;
}

.map-location-switcher img,
.map-mobile-location-strip img {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  object-fit: cover;
}

.map-location-switcher span,
.map-mobile-location-strip span {
  display: grid;
  gap: 1px;
  min-width: 0;
}

.map-location-switcher strong,
.map-mobile-location-strip strong {
  color: #25422d;
  font-size: 14px;
  line-height: 1.1;
}

.map-location-switcher small,
.map-mobile-location-strip small {
  max-width: 150px;
  overflow: hidden;
  color: rgba(35, 57, 40, 0.58);
  font-size: 12px;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.map-location-switcher button.is-active {
  border-color: rgba(75, 207, 104, 0.64);
  background: rgba(222, 250, 225, 0.70);
  box-shadow: 0 0 18px rgba(75, 207, 104, 0.16);
}

.map-mobile-location-strip button.is-active {
  border-color: rgba(75, 207, 104, 0.64);
  background: rgba(222, 250, 225, 0.78);
}

@keyframes mapHeroFloat {
  0% {
    transform: rotateX(1.2deg) rotateY(-1.6deg) translate3d(-0.35%, 0.15%, 0) scale(1.005);
  }

  50% {
    transform: rotateX(2.2deg) rotateY(1.1deg) translate3d(0.28%, -0.35%, 0) scale(1.012);
  }

  100% {
    transform: rotateX(1deg) rotateY(1.8deg) translate3d(0.18%, 0.24%, 0) scale(1.008);
  }
}

@keyframes mapFlow {
  from {
    stroke-dashoffset: 128;
    opacity: 0.10;
  }

  36% {
    opacity: 0.92;
  }

  to {
    stroke-dashoffset: 0;
    opacity: 0.18;
  }
}

@keyframes mapNodeBreath {
  0%,
  100% {
    transform: scale(0.88);
    opacity: 0.28;
  }

  48% {
    transform: scale(1.55);
    opacity: 0.94;
  }
}

@keyframes mapPreviewCard {
  0% {
    opacity: 0;
    transform: translate3d(-50%, 18px, 0) scale(0.92);
  }

  16%,
  74% {
    opacity: 1;
    transform: translate3d(-50%, -14px, 0) scale(1);
  }

  100% {
    opacity: 0;
    transform: translate3d(-50%, -22px, 0) scale(0.96);
  }
}

@keyframes interactiveNodeBreath {
  0%,
  100% {
    box-shadow:
      0 0 0 0 rgba(69, 216, 109, 0.32),
      0 0 18px rgba(69, 216, 109, 0.72),
      0 0 34px rgba(69, 216, 109, 0.34);
  }

  50% {
    box-shadow:
      0 0 0 9px rgba(69, 216, 109, 0.08),
      0 0 24px rgba(69, 216, 109, 0.88),
      0 0 46px rgba(69, 216, 109, 0.42);
  }
}

@keyframes viewerRipple {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(0) scaleX(0.54);
  }

  38% {
    opacity: 0.72;
  }

  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(28px) scaleX(1.1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .map-hero-shell,
  .map-flow,
  .map-glow-nodes circle,
  .map-location-dot,
  .highlight-ripple span {
    animation: none;
  }

  .highlight-track,
  .highlight-slide,
  .map-detail-panel {
    transition: none;
  }
}

@media (max-width: 820px) {
  .experience-map {
    min-height: auto;
    margin-top: 18px;
    padding-bottom: 2px;
    overflow: hidden;
  }

  .map-hero-shell {
    width: min(120%, 680px);
    margin-left: 50%;
    transform: translateX(-50%);
    overflow: visible;
    animation: none;
  }

  .map-light-layer {
    opacity: 0.58;
  }

  .map-location-node {
    min-width: 42px;
    min-height: 42px;
    justify-content: center;
  }

  .map-location-dot {
    width: 17px;
    height: 17px;
    border-width: 2px;
  }

  .map-location-dot::after {
    inset: -15px;
    opacity: 0.72;
    transform: scale(0.92);
  }

  .map-location-label {
    display: none;
  }

  .map-preview-layer {
    display: block;
    z-index: 7;
  }

  .map-preview-card {
    left: clamp(92px, var(--map-x, 50%), calc(100% - 92px));
    top: clamp(12px, var(--map-y, 50%), calc(100% - 158px));
    width: 172px;
    border-radius: 15px;
    transform: translate3d(-50%, 10px, 0) scale(0.94);
  }

  .map-preview-card figcaption {
    display: block;
    padding: 8px 11px 11px;
    font-size: 12px;
    line-height: 1.38;
    white-space: normal;
  }

  .map-preview-card strong {
    display: block;
    margin-bottom: 2px;
    font-size: 16px;
  }

  .map-detail-panel {
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    max-height: min(84vh, 680px);
    overflow-y: auto;
    border-radius: 26px 26px 0 0;
    transform: translateY(102%);
  }

  .interactive-footprint-map.is-open .map-detail-panel {
    transform: translateY(0);
  }

  .highlight-moment-viewer {
    gap: 10px;
    padding: 24px 18px 24px;
  }

  .highlight-moment-viewer h3 {
    font-size: 32px;
  }

  .highlight-slide img,
  .highlight-slide video {
    width: 100%;
    aspect-ratio: 16 / 9;
    max-height: 42vh;
    object-fit: contain;
    background: #142018;
  }

  .highlight-arrow {
    width: 36px;
    height: 36px;
    font-size: 26px;
  }

  .highlight-arrow.prev {
    left: 10px;
  }

  .highlight-arrow.next {
    right: 10px;
  }

  .highlight-caption-row {
    align-items: flex-start;
    font-size: 13px;
  }

  .highlight-ripple {
    height: 32px;
  }

  .map-panel-description {
    font-size: 14px;
    line-height: 1.7;
  }

  .map-location-switcher {
    flex-wrap: nowrap;
    margin: 4px -18px 0;
    padding: 0 18px 4px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .map-location-switcher button,
  .map-mobile-location-strip button {
    flex: 0 0 min(78vw, 280px);
    min-height: 66px;
    scroll-snap-align: start;
  }

  .map-location-switcher img,
  .map-mobile-location-strip img {
    width: 48px;
    height: 48px;
  }

  .map-location-switcher small,
  .map-mobile-location-strip small {
    max-width: 184px;
    white-space: normal;
  }

  .map-mobile-location-strip {
    position: relative;
    z-index: 8;
    display: flex;
    gap: 10px;
    margin: -18px -18px 0;
    padding: 0 18px 12px;
    overflow-x: auto;
    scroll-padding: 18px;
    scroll-snap-type: x mandatory;
  }

  .map-mobile-location-strip button {
    border: 1px solid rgba(35, 79, 42, 0.14);
    border-radius: 14px;
    padding: 9px 12px;
    background: rgba(255, 253, 246, 0.82);
    box-shadow: 0 14px 28px rgba(38, 72, 45, 0.10);
  }
}

.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;
  }

  .landing-hero::before {
    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;
  }

  .pathway-card-link::after {
    right: 12px;
    bottom: 12px;
    opacity: 1;
    transform: none;
    font-size: 13px;
  }

  .loop-detail-hero {
    min-height: 620px;
  }

  .loop-detail-hero-copy {
    width: min(100% - 32px, 720px);
    padding: 112px 0 52px;
  }

  .loop-detail-hero-copy h1 {
    font-size: 48px;
  }

  .loop-detail-hero-copy p {
    font-size: 17px;
  }

  .loop-section-tabs {
    top: 68px;
    padding: 12px 16px;
  }

  .loop-detail-section {
    width: min(100% - 32px, 720px);
    padding: 64px 0;
  }

  .loop-carousel-section {
    width: 100%;
    padding-inline: 16px;
  }

  .adaptive-carousel-shell {
    border-radius: 18px;
  }

  .adaptive-carousel-viewport {
    padding: 18px 0;
  }

  .adaptive-carousel-track {
    gap: 14px;
  }

  .adaptive-carousel-slide {
    flex-basis: min(84vw, 620px);
  }

  .adaptive-carousel-slide.is-portrait {
    flex-basis: min(68vw, 360px);
  }

  .adaptive-carousel-slide.is-square {
    flex-basis: min(78vw, 460px);
  }

  .adaptive-media-frame {
    border-radius: 16px;
  }

  .adaptive-carousel-slide.is-portrait .adaptive-media-frame {
    max-height: 66vh;
  }

  .adaptive-carousel-arrow {
    width: 38px;
    height: 38px;
    font-size: 28px;
  }

  .adaptive-carousel-meta {
    flex-direction: column;
    min-height: auto;
    gap: 10px;
    padding-top: 14px;
  }

  .adaptive-carousel-meta p {
    font-size: 14px;
  }

  .loop-intro-band {
    width: 100%;
    padding: 64px 16px;
  }

  .loop-photo-wall,
  .loop-video-grid,
  .loop-highlight-list {
    grid-template-columns: 1fr;
  }

  .loop-photo,
  .loop-photo.featured {
    grid-column: auto;
    grid-row: auto;
    min-height: auto;
    aspect-ratio: 16 / 10;
  }

  .loop-highlight-list li {
    min-height: auto;
    font-size: 17px;
  }

  .outcome-copy {
    position: static;
  }

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

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

  .hero-video-section {
    min-height: 620px;
    margin: 0 auto 48px;
    padding: 42px 0;
    overflow: hidden;
  }

  .cinematic-video-hero {
    min-height: 600px;
  }

  .hero-video-orbit {
    width: calc(100% - 28px);
    min-height: 470px;
    grid-template-columns: 1.08fr 0.92fr;
    grid-template-rows: repeat(2, 1fr);
    gap: 14px;
  }

  .hero-video-copy h2 {
    font-size: clamp(34px, 8vw, 56px);
  }

  .hero-video-copy p {
    max-width: 620px;
    font-size: 16px;
    line-height: 1.78;
  }

  .orbit-media {
    border-radius: 18px;
  }

  .orbit-media figcaption {
    left: 14px;
    bottom: 14px;
    font-size: 14px;
  }

  .cinematic-video-hero:hover .orbit-media-01,
  .cinematic-video-hero:focus-within .orbit-media-01,
  .cinematic-video-hero.is-mobile-revealed .orbit-media-01 {
    transform: translate3d(-16vw, -24px, 0) scale(0.91) rotate(-3deg);
  }

  .cinematic-video-hero:hover .orbit-media-02,
  .cinematic-video-hero:focus-within .orbit-media-02,
  .cinematic-video-hero.is-mobile-revealed .orbit-media-02 {
    transform: translate3d(12vw, -22px, 0) scale(0.91) rotate(3deg);
  }

  .cinematic-video-hero:hover .orbit-media-03,
  .cinematic-video-hero:focus-within .orbit-media-03,
  .cinematic-video-hero.is-mobile-revealed .orbit-media-03 {
    transform: translate3d(10vw, 42px, 0) scale(0.91) rotate(-2deg);
  }

  .hero-video-dialog {
    width: calc(100vw - 24px);
    max-height: calc(100vh - 32px);
  }

  .hero-video-stage {
    border-radius: 22px;
  }

  .hero-video-stage video {
    max-height: calc(100vh - 72px);
  }

  .hero-video-stage.is-portrait video {
    height: min(76vh, 680px);
    max-width: calc(100vw - 44px);
  }

  .hero-video-close {
    top: 10px;
    right: 10px;
  }

  .hero-video-control {
    opacity: 1;
  }

  .hero-video-sound {
    opacity: 1;
  }

  .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;
  }

  .landing-hero::before {
    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;
  }

  .advantage-grid article {
    padding: 0;
  }

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

  .position-card.image-only {
    padding: 0;
  }

  .position-card.image-only .position-card-media {
    margin: 0;
  }

  .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;
  }

  .hero-video-section {
    min-height: 760px;
    margin-bottom: 34px;
    padding: 34px 0 40px;
    gap: 22px;
  }

  .cinematic-video-hero {
    min-height: 730px;
  }

  .hero-video-orbit {
    width: calc(100% - 24px);
    min-height: 650px;
    display: block;
  }

  .hero-video-copy {
    top: 51%;
    width: min(90vw, 380px);
    opacity: 0;
    pointer-events: none;
    filter: blur(8px);
    text-shadow: 0 1px 12px rgba(255, 253, 248, 0.74);
    transform: translate(-50%, -45%) scale(0.965);
  }

  .cinematic-video-hero.is-mobile-revealed .hero-video-copy,
  .cinematic-video-hero:focus-within .hero-video-copy {
    opacity: 1 !important;
    pointer-events: auto;
    filter: blur(0) !important;
    transform: translate(-50%, -50%) scale(1) !important;
  }

  .hero-video-copy .kicker {
    margin-bottom: 12px;
  }

  .hero-video-copy h2 {
    font-size: clamp(31px, 8.6vw, 42px);
    line-height: 1.12;
  }

  .hero-video-copy p {
    margin-top: 16px;
    color: rgba(35, 54, 40, 0.86);
    font-size: 15px;
    line-height: 1.72;
  }

  .hero-video-cta {
    width: auto;
    min-height: 48px;
    margin-top: 16px;
    padding: 0 28px;
  }

  .orbit-media-01 {
    position: absolute;
    top: 0;
    left: 0;
    width: 58vw;
    height: 31%;
    opacity: 0.46;
    transform: translate3d(8vw, 30px, 0) rotate(-2deg);
  }

  .orbit-media-02 {
    position: absolute;
    top: 36%;
    right: 0;
    width: 58vw;
    height: 28%;
    opacity: 0.42;
    transform: translate3d(-8vw, 10px, 0) rotate(2deg);
  }

  .orbit-media-03 {
    position: absolute;
    left: 0;
    right: auto;
    bottom: 0;
    display: block;
    width: 62vw;
    height: 29%;
    opacity: 0.44;
    transform: translate3d(17vw, -10px, 0) rotate(-2deg);
  }

  .orbit-media figcaption {
    opacity: 0.72;
    font-size: 12px;
  }

  .cinematic-video-hero.is-mobile-revealed .orbit-media {
    opacity: 0.72;
    filter: saturate(0.96) contrast(0.98);
  }

  .cinematic-video-hero.is-mobile-revealed .orbit-media figcaption {
    opacity: 1;
    transform: translateY(0);
  }

  .cinematic-video-hero.is-mobile-revealed .orbit-media-01 {
    transform: translate3d(-1vw, 0, 0) rotate(-5deg);
  }

  .cinematic-video-hero.is-mobile-revealed .orbit-media-02 {
    transform: translate3d(1vw, 0, 0) rotate(4deg);
  }

  .cinematic-video-hero.is-mobile-revealed .orbit-media-03 {
    transform: translate3d(5vw, 0, 0) rotate(-3deg);
  }

  .hero-video-stage {
    border-radius: 18px;
  }

  .hero-video-stage video {
    max-height: calc(100vh - 64px);
  }

  .hero-video-close {
    width: 44px;
    height: 44px;
    font-size: 26px;
  }

  .hero-video-control {
    left: 12px;
    bottom: 12px;
    width: 44px;
    height: 44px;
  }

  .hero-video-sound {
    left: 64px;
    bottom: 12px;
    width: 44px;
    height: 44px;
  }

  .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;
  }
}

@media (max-width: 820px) {
  .experience-map {
    overflow: visible;
    perspective: none;
  }

  .map-hero-shell {
    width: 100% !important;
    margin-left: 0 !important;
    transform: none !important;
  }

  .map-detail-panel {
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    max-height: min(84vh, 680px);
    box-sizing: border-box;
    overflow-y: auto;
    border-radius: 26px 26px 0 0;
  }

  .interactive-footprint-map.is-open .map-detail-panel {
    transform: translateY(0) !important;
  }

  .map-panel-close {
    top: 12px;
    right: 12px;
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 820px) {
  .cinematic-video-hero.is-mobile-revealed .hero-video-copy {
    opacity: 1 !important;
    pointer-events: auto !important;
    filter: blur(0) !important;
    transform: translate(-50%, -50%) scale(1) !important;
  }
}

@media (max-width: 520px) {
  .hero-video-section {
    min-height: 760px;
    margin-bottom: 34px;
    padding: 34px 0 40px;
  }

  .cinematic-video-hero {
    min-height: 730px;
  }

  .hero-video-orbit {
    width: calc(100% - 24px);
    min-height: 650px;
    display: block;
  }

  .hero-video-copy {
    top: 51%;
    width: min(90vw, 380px);
    opacity: 0;
    pointer-events: none;
    filter: blur(8px);
    text-shadow: 0 1px 12px rgba(255, 253, 248, 0.74);
    transform: translate(-50%, -45%) scale(0.965);
  }

  .cinematic-video-hero.is-mobile-revealed .hero-video-copy,
  .cinematic-video-hero:focus-within .hero-video-copy {
    opacity: 1 !important;
    pointer-events: auto;
    filter: blur(0) !important;
    transform: translate(-50%, -50%) scale(1) !important;
  }

  .hero-video-copy h2 {
    font-size: clamp(31px, 8.6vw, 42px);
    line-height: 1.12;
  }

  .hero-video-copy p {
    margin-top: 16px;
    color: rgba(35, 54, 40, 0.86);
    font-size: 15px;
    line-height: 1.72;
  }

  .hero-video-cta {
    min-height: 48px;
    padding: 0 28px;
  }

  .orbit-media-01 {
    position: absolute;
    top: 0;
    left: 0;
    width: 58vw;
    height: 31%;
    opacity: 0.46;
    transform: translate3d(8vw, 30px, 0) rotate(-2deg);
  }

  .orbit-media-02 {
    position: absolute;
    top: 36%;
    right: 0;
    width: 58vw;
    height: 28%;
    opacity: 0.42;
    transform: translate3d(-8vw, 10px, 0) rotate(2deg);
  }

  .orbit-media-03 {
    position: absolute;
    left: 0;
    right: auto;
    bottom: 0;
    width: 62vw;
    height: 29%;
    opacity: 0.44;
    transform: translate3d(17vw, -10px, 0) rotate(-2deg);
  }

  .orbit-media figcaption {
    opacity: 0.72;
    font-size: 12px;
  }

  .cinematic-video-hero.is-mobile-revealed .orbit-media {
    opacity: 0.72;
    filter: saturate(0.96) contrast(0.98);
  }

  .cinematic-video-hero.is-mobile-revealed .orbit-media figcaption {
    opacity: 1;
    transform: translateY(0);
  }

  .cinematic-video-hero.is-mobile-revealed .orbit-media-01 {
    transform: translate3d(-1vw, 0, 0) rotate(-5deg);
  }

  .cinematic-video-hero.is-mobile-revealed .orbit-media-02 {
    transform: translate3d(1vw, 0, 0) rotate(4deg);
  }

  .cinematic-video-hero.is-mobile-revealed .orbit-media-03 {
    transform: translate3d(5vw, 0, 0) rotate(-3deg);
  }
}

/* Mobile First Experience Override */
@media (max-width: 820px) {
  html {
    scroll-padding-top: 74px;
  }

  body.landing-page {
    overflow-x: hidden;
    background:
      linear-gradient(180deg, #f6efe2 0%, #fffaf1 28%, #eef4ea 66%, #fffaf2 100%);
  }

  .landing-page main {
    overflow: hidden;
  }

  .landing-topbar {
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: rgba(255, 250, 241, 0.92);
    border-bottom-color: rgba(35, 79, 42, 0.12);
  }

  .landing-topbar .brand {
    gap: 9px;
  }

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

  .landing-topbar .brand-text {
    font-size: 15px;
    letter-spacing: 0;
  }

  .landing-topbar .brand-text small {
    display: none;
  }

  .landing-topbar .nav {
    flex: 1 1 auto;
    justify-content: flex-end;
    gap: 6px;
    min-width: 0;
  }

  .landing-topbar .nav-current {
    display: none;
  }

  .landing-topbar .nav a {
    min-height: 38px;
    border-radius: 999px;
    padding: 8px 11px;
    font-size: 13px;
    line-height: 1;
    white-space: nowrap;
  }

  .landing-hero {
    align-items: flex-end;
    min-height: min(780px, 100svh);
    padding: 92px 18px 48px;
    background: #0d2014;
  }

  .landing-hero::before {
    inset: -3%;
    background:
      linear-gradient(180deg, rgba(6, 18, 11, 0.18) 0%, rgba(8, 21, 13, 0.28) 30%, rgba(8, 21, 13, 0.76) 82%, rgba(8, 21, 13, 0.92) 100%),
      linear-gradient(90deg, rgba(9, 25, 16, 0.42), rgba(9, 25, 16, 0.06) 54%, rgba(9, 25, 16, 0.30)),
      url("/hero-journey.webp") 56% center / auto 100% no-repeat;
    animation-duration: 22s;
  }

  .landing-hero::after {
    height: 156px;
    background: linear-gradient(180deg, rgba(246, 239, 226, 0) 0%, #f6efe2 92%);
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, transparent 0%, rgba(181, 138, 58, 0.14) 74%, transparent 100%),
      repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.026) 0 1px, transparent 1px 44px);
    opacity: 0.56;
  }

  .hero-content {
    width: 100%;
    margin: 0;
    padding: 0 0 86px;
  }

  .hero-eyebrow {
    display: inline-flex;
    max-width: 100%;
    margin-bottom: 18px;
    border-radius: 999px;
    padding: 7px 11px;
    font-size: 12px;
    line-height: 1.35;
  }

  .hero-content h1 {
    max-width: 11em;
    font-size: clamp(38px, 11vw, 52px);
    line-height: 1.13;
  }

  .hero-content p {
    max-width: none;
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.76;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 24px;
    width: min(100%, 360px);
  }

  .hero-actions .btn {
    justify-content: center;
    min-height: 50px;
    border-radius: 999px;
    padding: 0 18px;
    font-size: 15px;
  }

  .hero-bottom-note {
    left: 18px;
    right: 18px;
    bottom: 20px;
    max-width: none;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.28);
    padding: 13px 0 0;
    font-size: 13px;
    line-height: 1.55;
  }

  .landing-section {
    width: 100%;
    max-width: none;
    padding: 68px 18px;
  }

  .section-heading,
  .section-heading.narrow,
  .outcome-copy {
    max-width: none;
    margin: 0 0 28px;
    text-align: left;
  }

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

  .kicker {
    font-size: 12px;
    letter-spacing: 0.08em;
  }

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

  .section-heading p,
  .outcome-copy p {
    font-size: 15.5px;
    line-height: 1.82;
  }

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

  .pain-list {
    display: flex;
    gap: 12px;
    margin: 0 -18px;
    padding: 0 18px 8px;
    overflow-x: auto;
    scroll-padding: 18px;
    scroll-snap-type: x mandatory;
  }

  .pain-list article,
  .pain-list article:nth-child(5) {
    flex: 0 0 min(82vw, 340px);
    min-height: 172px;
    border-radius: 14px;
    padding: 22px 20px;
    font-size: 17px;
    line-height: 1.65;
    scroll-snap-align: start;
  }

  .positioning-section,
  .advantage-section,
  .experience-section,
  .entry-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .position-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    max-width: none;
  }

  .position-card,
  .position-card.featured {
    border-radius: 16px;
    transform: none;
  }

  .position-card-media,
  .position-card.image-only .position-card-media {
    aspect-ratio: 4 / 5;
  }

  .position-card.featured .position-card-media {
    aspect-ratio: 3 / 4;
  }

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

  .pathway {
    display: flex;
    gap: 13px;
    margin: 0 -18px;
    border: 0;
    border-radius: 0;
    padding: 0 18px 10px;
    overflow-x: auto;
    background: transparent;
    box-shadow: none;
    scroll-padding: 18px;
    scroll-snap-type: x mandatory;
  }

  .pathway article {
    flex: 0 0 min(78vw, 330px);
    border-radius: 18px;
    box-shadow: 0 18px 38px rgba(54, 45, 29, 0.12);
    scroll-snap-align: start;
  }

  .pathway article:nth-child(even) {
    margin-top: 34px;
  }

  .pathway article img {
    aspect-ratio: 4 / 5;
  }

  .pathway-card-link::before,
  .pathway-card-link::after {
    opacity: 1;
    transform: translateY(0);
  }

  .pathway-card-link::after {
    right: 14px;
    bottom: 14px;
    padding: 8px 12px;
    font-size: 13px;
  }

  .pathway-note {
    margin-top: 28px;
    border-radius: 16px;
    padding: 17px;
    font-size: 15.5px;
    line-height: 1.76;
    text-align: left;
  }

  .advantage-grid {
    display: flex;
    gap: 13px;
    max-width: none;
    margin: 0 -18px;
    padding: 0 18px 10px;
    overflow-x: auto;
    scroll-padding: 18px;
    scroll-snap-type: x mandatory;
  }

  .advantage-grid article,
  .advantage-grid article:nth-child(2),
  .advantage-grid article:nth-child(4) {
    flex: 0 0 min(80vw, 338px);
    border-radius: 18px;
    transform: none;
    scroll-snap-align: start;
  }

  .advantage-grid img {
    aspect-ratio: 4 / 5;
  }

  .outcomes-section {
    display: block;
  }

  .outcome-copy {
    position: static;
  }

  .outcome-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .outcome-grid div {
    min-height: 84px;
    border-radius: 15px;
    padding: 20px;
    font-size: 16px;
    line-height: 1.65;
  }

  .experience-section {
    padding-top: 70px;
    background:
      linear-gradient(180deg, #f1eadf 0%, #fbf8f1 46%, #eef5eb 100%);
  }

  .hero-video-section {
    min-height: 820px;
    max-width: none;
    margin: 0 -18px 44px;
    padding: 40px 18px 46px;
  }

  .cinematic-video-hero {
    min-height: 790px;
  }

  .hero-video-section::before {
    inset: 18% 0 10%;
    filter: blur(18px);
  }

  .hero-video-orbit {
    display: block;
    width: 100%;
    min-height: 710px;
    margin: 0;
  }

  .orbit-media {
    position: absolute;
    border-radius: 22px;
    opacity: 0.62;
    box-shadow: 0 18px 44px rgba(53, 44, 29, 0.14);
  }

  .orbit-media figcaption {
    left: 12px;
    bottom: 12px;
    border-radius: 999px;
    padding: 8px 11px;
    font-size: 12px;
    opacity: 0.78;
  }

  .orbit-media-01 {
    top: 0;
    left: 0;
    width: 68%;
    height: 32%;
    transform: translate3d(11vw, 34px, 0) rotate(-2deg);
  }

  .orbit-media-02 {
    top: 32%;
    right: 0;
    width: 64%;
    height: 29%;
    transform: translate3d(-9vw, 8px, 0) rotate(2.5deg);
  }

  .orbit-media-03 {
    left: 4%;
    bottom: 0;
    width: 70%;
    height: 31%;
    transform: translate3d(12vw, -18px, 0) rotate(-2deg);
  }

  .hero-video-copy {
    top: 50%;
    width: min(88vw, 430px);
    text-align: left;
    justify-items: start;
    border: 1px solid rgba(255, 253, 248, 0.58);
    border-radius: 22px;
    padding: 22px 19px 20px;
    background: rgba(255, 252, 244, 0.78);
    box-shadow: 0 18px 44px rgba(45, 55, 34, 0.14);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }

  .hero-video-copy .kicker {
    margin-bottom: 12px;
  }

  .hero-video-copy h2 {
    font-size: clamp(30px, 8.4vw, 42px);
    line-height: 1.15;
  }

  .hero-video-copy p {
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.74;
  }

  .hero-video-cta {
    width: 100%;
    min-height: 52px;
    margin-top: 20px;
    border-radius: 999px;
    font-size: 15px;
  }

  .cinematic-video-hero.is-mobile-revealed .hero-video-copy,
  .cinematic-video-hero:focus-within .hero-video-copy {
    opacity: 1 !important;
    pointer-events: auto;
    filter: blur(0) !important;
    transform: translate(-50%, -50%) scale(1) !important;
  }

  .cinematic-video-hero.is-mobile-revealed .orbit-media {
    opacity: 0.76;
    filter: saturate(0.9) contrast(0.98);
  }

  .cinematic-video-hero.is-mobile-revealed .orbit-media figcaption {
    opacity: 0.92;
    transform: translateY(0);
  }

  .cinematic-video-hero.is-mobile-revealed .orbit-media-01 {
    transform: translate3d(-1vw, 0, 0) rotate(-5deg);
  }

  .cinematic-video-hero.is-mobile-revealed .orbit-media-02 {
    transform: translate3d(0, 0, 0) rotate(4deg);
  }

  .cinematic-video-hero.is-mobile-revealed .orbit-media-03 {
    transform: translate3d(5vw, 0, 0) rotate(-3deg);
  }

  .hero-video-dialog {
    padding: 14px;
  }

  .hero-video-stage {
    width: min(100%, 96vw);
    border-radius: 20px;
  }

  .hero-video-stage.is-landscape {
    aspect-ratio: 16 / 9;
  }

  .hero-video-stage.is-portrait {
    aspect-ratio: 9 / 16;
    max-height: 86svh;
  }

  .hero-video-stage video {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .experience-map {
    min-height: auto;
    margin: 20px -18px 0;
    padding: 22px 0 20px;
    overflow: visible;
    background:
      radial-gradient(ellipse at 50% 40%, rgba(86, 208, 108, 0.13), transparent 46%),
      linear-gradient(180deg, rgba(255, 252, 244, 0.74), rgba(234, 242, 231, 0.76));
  }

  .experience-map::before {
    inset: -4% 0;
    opacity: 0.48;
  }

  .experience-map::after {
    display: none;
  }

  .map-hero-shell {
    width: min(116%, 620px) !important;
    margin-left: 50% !important;
    transform: translateX(-50%) !important;
    filter: drop-shadow(0 18px 30px rgba(54, 91, 58, 0.13));
  }

  .map-hero-visual {
    min-height: 300px;
    object-fit: contain;
    -webkit-mask-image:
      linear-gradient(90deg, transparent 0%, #000 4%, #000 96%, transparent 100%),
      linear-gradient(180deg, transparent 0%, #000 4%, #000 92%, transparent 100%);
    mask-image:
      linear-gradient(90deg, transparent 0%, #000 4%, #000 96%, transparent 100%),
      linear-gradient(180deg, transparent 0%, #000 4%, #000 92%, transparent 100%);
  }

  .map-light-layer {
    opacity: 0.68;
  }

  .map-location-node {
    min-width: 46px;
    min-height: 46px;
  }

  .map-location-dot {
    width: 19px;
    height: 19px;
  }

  .map-mobile-location-strip {
    display: flex;
    gap: 10px;
    margin: -10px 0 0;
    padding: 0 18px 8px;
    overflow-x: auto;
    scroll-padding: 18px;
    scroll-snap-type: x mandatory;
  }

  .map-mobile-location-strip button {
    flex: 0 0 min(78vw, 300px);
    min-height: 72px;
    border: 1px solid rgba(35, 79, 42, 0.14);
    border-radius: 16px;
    padding: 10px 12px;
    background: rgba(255, 253, 246, 0.88);
    box-shadow: 0 14px 28px rgba(38, 72, 45, 0.10);
    scroll-snap-align: start;
  }

  .map-mobile-location-strip img {
    width: 52px;
    height: 52px;
  }

  .map-detail-panel {
    border-radius: 24px 24px 0 0;
  }

  .highlight-moment-viewer {
    padding: 26px 18px 24px;
  }

  .highlight-moment-viewer h3 {
    font-size: clamp(30px, 8vw, 38px);
  }

  .highlight-slide img,
  .highlight-slide video {
    aspect-ratio: 16 / 9;
    object-fit: contain;
  }

  .entry-section {
    padding-top: 70px;
    padding-bottom: 76px;
  }

  .entry-section::before {
    width: 100%;
    margin-bottom: 32px;
  }

  .client-entry {
    gap: 12px;
  }

  .client-entry-card {
    width: 100%;
    min-height: 0;
    border-radius: 18px;
    padding: 24px 20px;
  }

  .client-entry-card h3 {
    font-size: 26px;
  }

  .cta-secondary {
    width: 100%;
    min-height: 50px;
    border-radius: 999px;
  }

  .pain-list,
  .pathway,
  .advantage-grid,
  .map-mobile-location-strip,
  .map-location-switcher {
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .pain-list::-webkit-scrollbar,
  .pathway::-webkit-scrollbar,
  .advantage-grid::-webkit-scrollbar,
  .map-mobile-location-strip::-webkit-scrollbar,
  .map-location-switcher::-webkit-scrollbar {
    display: none;
  }
}

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

  .landing-topbar .nav a {
    padding-inline: 9px;
    font-size: 12px;
  }

  .landing-hero {
    min-height: 740px;
    padding: 84px 16px 44px;
  }

  .landing-hero::before {
    background:
      linear-gradient(180deg, rgba(6, 18, 11, 0.10) 0%, rgba(8, 21, 13, 0.24) 30%, rgba(8, 21, 13, 0.78) 80%, rgba(8, 21, 13, 0.94) 100%),
      url("/hero-journey.webp") 58% center / auto 100% no-repeat;
  }

  .hero-content {
    padding-bottom: 98px;
  }

  .hero-content h1 {
    font-size: clamp(36px, 10.8vw, 46px);
  }

  .hero-bottom-note {
    left: 16px;
    right: 16px;
  }

  .landing-section,
  .positioning-section,
  .advantage-section,
  .experience-section,
  .entry-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .pain-list,
  .pathway,
  .advantage-grid {
    margin-left: -16px;
    margin-right: -16px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .pain-list article,
  .pain-list article:nth-child(5) {
    flex-basis: 84vw;
  }

  .pathway article,
  .advantage-grid article,
  .advantage-grid article:nth-child(2),
  .advantage-grid article:nth-child(4) {
    flex-basis: 82vw;
  }

  .position-card-media,
  .position-card.image-only .position-card-media,
  .position-card.featured .position-card-media {
    aspect-ratio: 4 / 5;
  }

  .hero-video-section {
    min-height: 790px;
    margin-left: -16px;
    margin-right: -16px;
    padding: 34px 16px 42px;
  }

  .cinematic-video-hero {
    min-height: 760px;
  }

  .hero-video-orbit {
    min-height: 680px;
  }

  .hero-video-copy {
    width: min(90vw, 380px);
    padding: 20px 17px 18px;
  }

  .hero-video-copy h2 {
    font-size: clamp(30px, 8.8vw, 38px);
  }

  .hero-video-copy p {
    font-size: 14.5px;
  }

  .orbit-media-01 {
    width: 69vw;
    height: 31%;
  }

  .orbit-media-02 {
    width: 65vw;
    height: 28%;
  }

  .orbit-media-03 {
    width: 72vw;
    height: 30%;
  }

  .experience-map {
    margin-left: -16px;
    margin-right: -16px;
  }

  .map-hero-shell {
    width: 122% !important;
  }

  .map-hero-visual {
    min-height: 280px;
  }

  .map-mobile-location-strip {
    padding-left: 16px;
    padding-right: 16px;
    scroll-padding: 16px;
  }

  .map-mobile-location-strip button {
    flex-basis: 80vw;
  }
}

@media (max-width: 820px) {
  .position-card-media,
  .position-card.image-only .position-card-media,
  .position-card.featured .position-card-media,
  .pathway article,
  .advantage-grid article,
  .advantage-grid article:nth-child(2),
  .advantage-grid article:nth-child(4) {
    height: auto;
    background: rgba(255, 253, 246, 0.88);
  }

  .pathway article {
    padding: 0 !important;
  }

  .position-card-media picture,
  .pathway-card-link picture,
  .advantage-grid picture {
    height: auto;
  }

  .position-card-media img,
  .pathway article img,
  .advantage-grid img {
    width: 100%;
    height: auto;
    aspect-ratio: auto;
    object-fit: contain;
  }

  .position-cards .position-card:first-child .position-card-media,
  .position-cards .position-card:first-child .position-card-media picture {
    width: 100%;
    height: auto;
    aspect-ratio: auto;
    overflow: visible;
  }

  .position-cards .position-card:first-child .position-card-media img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: auto;
    object-fit: contain !important;
    object-position: center bottom;
  }

  .hero-video-preview-strip,
  .hero-video-modal-strip,
  .hero-video-thumb {
    display: none !important;
  }

  .pathway-card-link {
    height: auto;
    width: 100%;
  }

  .hero-video-dialog {
    display: grid;
    width: min(100vw - 24px, 760px);
    max-height: calc(100svh - 22px);
    grid-template-rows: minmax(0, auto) auto auto;
  }

  .hero-video-stage {
    max-height: 66svh;
  }

  .hero-video-nav {
    width: 42px;
    height: 42px;
    font-size: 30px;
    opacity: 0.92;
  }

  .hero-video-nav.prev {
    left: 10px;
  }

  .hero-video-nav.next {
    right: 10px;
  }

  .hero-video-modal-meta {
    margin-top: 10px;
    padding: 0 2px;
  }

  .hero-video-modal-meta strong {
    font-size: 16px;
  }

  .hero-video-modal-meta p {
    font-size: 13px;
  }

  .hero-video-indicators {
    margin-top: 12px;
  }
}

@media (max-width: 520px) {
  .hero-video-stage {
    max-height: 62svh;
  }

  .hero-video-modal-meta {
    gap: 10px;
  }

  .hero-video-modal-meta p {
    display: none;
  }
}

/* Large Immersive Video Modal Override */
.hero-video-modal {
  padding: 0;
}

.hero-video-backdrop {
  background:
    radial-gradient(circle at 50% 42%, rgba(251, 248, 241, 0.08), transparent 30%),
    rgba(9, 13, 10, 0.72);
  backdrop-filter: blur(20px) saturate(0.82);
  -webkit-backdrop-filter: blur(20px) saturate(0.82);
}

.hero-video-dialog {
  display: grid;
  grid-template-rows: minmax(0, auto) auto auto;
  width: min(88vw, 1420px);
  max-height: 94vh;
}

.hero-video-stage {
  width: 100%;
  max-height: 86vh;
  border-radius: 24px;
}

.hero-video-section.is-open .hero-video-stage {
  clip-path: inset(0 0 0 0 round 24px);
}

.hero-video-stage video {
  width: 100%;
  height: auto;
  max-height: 86vh;
  aspect-ratio: 16 / 9;
  object-fit: contain;
}

.hero-video-stage.is-portrait {
  width: auto;
  height: min(86vh, 860px);
  max-width: 88vw;
  margin: 0 auto;
}

.hero-video-stage.is-portrait video {
  width: auto;
  height: 100%;
  max-width: 88vw;
  max-height: 86vh;
}

.hero-video-stage.is-square {
  width: min(86vh, 88vw, 860px);
  margin: 0 auto;
}

.hero-video-stage.is-square video {
  width: 100%;
  height: auto;
  max-height: 86vh;
}

.hero-video-close {
  top: -18px;
  right: -18px;
  width: 50px;
  height: 50px;
}

.hero-video-control,
.hero-video-sound,
.hero-video-fullscreen {
  opacity: 0.92;
}

.hero-video-modal-meta {
  margin-top: 10px;
}

.hero-video-modal-meta p {
  max-width: 760px;
  font-size: 14px;
}

.hero-video-indicators {
  margin-top: 10px;
}

@media (max-width: 820px) {
  .hero-video-dialog {
    width: 96vw;
    max-height: 96svh;
  }

  .hero-video-stage {
    width: 96vw;
    max-height: 88svh;
    border-radius: 18px;
  }

  .hero-video-section.is-open .hero-video-stage {
    clip-path: inset(0 0 0 0 round 18px);
  }

  .hero-video-stage video {
    width: 100%;
    height: auto;
    max-height: 88svh;
  }

  .hero-video-stage.is-portrait {
    width: auto;
    height: 86svh;
    max-width: 96vw;
  }

  .hero-video-stage.is-portrait video {
    width: auto;
    height: 100%;
    max-width: 96vw;
    max-height: 86svh;
  }

  .hero-video-stage.is-square {
    width: min(88svh, 96vw);
  }

  .hero-video-close {
    position: fixed;
    top: max(12px, env(safe-area-inset-top));
    right: 12px;
    width: 46px;
    height: 46px;
  }

  .hero-video-control {
    left: 14px;
    bottom: 14px;
  }

  .hero-video-sound {
    left: 68px;
    bottom: 14px;
  }

  .hero-video-nav.prev {
    left: 8px;
  }

  .hero-video-nav.next {
    right: 8px;
  }

  .hero-video-modal-meta {
    margin-top: 8px;
  }

  .hero-video-modal-meta p {
    display: none;
  }

  .hero-video-indicators {
    margin-top: 8px;
  }
}

/* True Fullscreen Mobile Video Experience */
.hero-video-fullscreen {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 3;
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 999px;
  padding: 0 14px;
  background: rgba(255, 253, 248, 0.72);
  color: #203b29;
  font-size: 14px;
  font-weight: 850;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(22, 31, 24, 0.16);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero-video-landscape-hint {
  display: none;
}

@media (max-width: 820px) {
  .hero-video-modal {
    align-items: stretch;
    justify-items: stretch;
    background: rgba(0, 0, 0, 0.88);
  }

  .hero-video-backdrop {
    background: rgba(0, 0, 0, 0.90);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .hero-video-dialog {
    width: 100vw;
    height: 100svh;
    max-height: none;
    padding: 0;
    place-self: stretch;
    grid-template-rows: minmax(0, 1fr) auto auto;
  }

  .hero-video-stage {
    align-self: center;
    width: 100vw;
    max-height: 92svh;
    border: 0;
    border-radius: 0;
    background: #000;
    box-shadow: none;
  }

  .hero-video-section.is-open .hero-video-stage {
    clip-path: inset(0 0 0 0 round 0);
  }

  .hero-video-stage video {
    width: 100vw;
    height: auto;
    max-height: 92svh;
    object-fit: contain;
    background: #000;
  }

  .hero-video-stage.is-portrait {
    width: 100vw;
    height: 92svh;
    max-width: 100vw;
  }

  .hero-video-stage.is-portrait video {
    width: auto;
    height: 92svh;
    max-width: 100vw;
    max-height: 92svh;
  }

  .hero-video-stage.is-square {
    width: 100vw;
    max-height: 92svh;
  }

  .hero-video-close {
    z-index: 5;
    background: rgba(255, 253, 248, 0.82);
  }

  .hero-video-control,
  .hero-video-sound,
  .hero-video-fullscreen,
  .hero-video-nav {
    background: rgba(255, 253, 248, 0.78);
  }

  .hero-video-control {
    left: 12px;
    bottom: max(12px, env(safe-area-inset-bottom));
  }

  .hero-video-sound {
    left: 66px;
    bottom: max(12px, env(safe-area-inset-bottom));
  }

  .hero-video-fullscreen {
    right: 12px;
    bottom: max(12px, env(safe-area-inset-bottom));
  }

  .hero-video-landscape-hint {
    position: fixed;
    left: 50%;
    bottom: max(68px, calc(env(safe-area-inset-bottom) + 68px));
    z-index: 4;
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    padding: 8px 13px;
    background: rgba(0, 0, 0, 0.46);
    color: rgba(255, 253, 246, 0.88);
    font-size: 13px;
    font-weight: 750;
    transform: translateX(-50%);
    pointer-events: none;
  }

  .hero-video-modal-meta {
    position: fixed;
    left: 12px;
    right: 12px;
    top: max(12px, env(safe-area-inset-top));
    z-index: 4;
    margin: 0;
    pointer-events: none;
  }

  .hero-video-modal-meta strong {
    display: none;
  }

  .hero-video-modal-meta span {
    margin-left: auto;
    border-radius: 999px;
    padding: 7px 10px;
    background: rgba(0, 0, 0, 0.46);
    color: rgba(255, 253, 246, 0.86);
    font-size: 13px;
  }

  .hero-video-indicators {
    position: fixed;
    left: 50%;
    bottom: max(112px, calc(env(safe-area-inset-bottom) + 112px));
    z-index: 4;
    margin: 0;
    transform: translateX(-50%);
  }
}

@media (max-width: 820px) and (orientation: landscape) {
  .hero-video-dialog,
  .hero-video-stage,
  .hero-video-stage.is-portrait,
  .hero-video-stage.is-square {
    width: 100vw;
    height: 100svh;
    max-width: 100vw;
    max-height: 100svh;
  }

  .hero-video-stage video,
  .hero-video-stage.is-portrait video,
  .hero-video-stage.is-square video {
    width: 100vw;
    height: 100svh;
    max-width: 100vw;
    max-height: 100svh;
    object-fit: contain;
  }

  .hero-video-landscape-hint {
    display: none;
  }

  .hero-video-modal-meta,
  .hero-video-indicators {
    display: none;
  }
}

@media (max-height: 520px) and (orientation: landscape) {
  .hero-video-modal {
    align-items: stretch;
    justify-items: stretch;
    background: #000;
  }

  .hero-video-backdrop {
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .hero-video-dialog,
  .hero-video-stage,
  .hero-video-stage.is-portrait,
  .hero-video-stage.is-square {
    width: 100vw;
    height: 100svh;
    max-width: 100vw;
    max-height: 100svh;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    place-self: stretch;
  }

  .hero-video-section.is-open .hero-video-stage {
    clip-path: inset(0 0 0 0 round 0);
  }

  .hero-video-stage video,
  .hero-video-stage.is-portrait video,
  .hero-video-stage.is-square video {
    width: 100vw;
    height: 100svh;
    max-width: 100vw;
    max-height: 100svh;
    object-fit: contain;
    background: #000;
  }

  .hero-video-modal-meta,
  .hero-video-indicators,
  .hero-video-landscape-hint {
    display: none;
  }

  .hero-video-close {
    position: fixed;
    top: 10px;
    right: 10px;
  }
}

/* Video poster fallback for WeChat/iOS: keep a real image visible until playback starts. */
.hero-video-poster-button,
.highlight-video-poster {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  background: #0d130f;
  color: #fffdf8;
  cursor: pointer;
  overflow: hidden;
}

.hero-video-poster-button img,
.highlight-video-poster img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #0d130f;
}

.highlight-video-poster img {
  object-fit: cover;
}

.hero-video-poster-button span,
.highlight-video-poster span {
  position: absolute;
  display: grid;
  min-width: 74px;
  height: 74px;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.84);
  color: #203b29;
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero-video-stage:not(.is-showing-poster) .hero-video-poster-button,
.highlight-slide.is-video-playing .highlight-video-poster {
  opacity: 0;
  pointer-events: none;
}

.highlight-slide {
  position: relative;
}

.hero-video-stage video,
.highlight-slide video {
  position: relative;
  z-index: 0;
}

.hero-video-control,
.hero-video-sound,
.hero-video-nav,
.hero-video-fullscreen {
  z-index: 3;
}

@media (max-width: 820px) {
  .landing-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .section-heading,
  .section-heading.narrow,
  .outcome-copy {
    gap: 12px;
    margin-bottom: 28px;
    text-align: left;
  }

  .section-heading h2,
  .outcome-copy h2 {
    max-width: 11.5em;
    font-size: clamp(28px, 8.2vw, 38px);
    line-height: 1.2;
    text-wrap: balance;
  }

  .section-heading p,
  .outcome-copy p {
    max-width: 31em;
    font-size: 15.5px;
    line-height: 1.62;
    color: rgba(44, 56, 46, 0.78);
  }

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

  .hero-content p {
    max-width: 31em;
    line-height: 1.62;
  }

  .hero-bottom-note {
    line-height: 1.55;
  }

  .map-preview-layer {
    display: block !important;
    overflow: visible;
  }

  .map-preview-card {
    left: clamp(92px, var(--map-x, 50%), calc(100% - 92px));
    top: clamp(10px, var(--map-y, 50%), calc(100% - 158px));
    width: 174px;
    border-radius: 15px;
  }

  .map-preview-card img {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 820px) {
  body.landing-page {
    overflow-x: hidden;
  }

  .map-mobile-location-strip,
  .map-location-switcher {
    display: none !important;
  }

  .experience-map {
    padding-bottom: 24px;
  }

  .pathway,
  .advantage-grid {
    display: flex;
    gap: 14px;
    margin-left: -18px;
    margin-right: -18px;
    padding: 0 18px 10px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-padding: 18px;
    scroll-snap-type: x mandatory;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    -webkit-overflow-scrolling: touch;
  }

  .pathway article,
  .advantage-grid article,
  .advantage-grid article:nth-child(2),
  .advantage-grid article:nth-child(4) {
    flex: 0 0 min(82vw, 340px);
    width: min(82vw, 340px);
    min-height: 0;
    padding: 0;
    scroll-snap-align: start;
    transform: none;
  }

  .pathway-card-link,
  .pathway-card-link picture,
  .advantage-grid picture {
    display: block;
    height: auto;
  }

  .pathway article img,
  .advantage-grid img {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 4;
    object-fit: contain;
    background: #f5efe2;
  }

  .pathway-card-link::before,
  .pathway-card-link::after {
    display: none;
  }

  .pain-list,
  .outcome-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-left: 0;
    margin-right: 0;
    padding: 0;
    overflow: visible;
  }

  .pain-list article,
  .pain-list article:nth-child(5),
  .outcome-grid div {
    width: 100%;
    min-height: 0;
    padding: 18px 18px;
    border-radius: 14px;
    text-align: left;
  }

  .pathway-note {
    width: 100%;
    margin: 24px 0 0;
    border-radius: 14px;
    padding: 16px 18px;
    font-size: 15px;
    line-height: 1.62;
    text-align: left;
  }

  .entry-section {
    display: grid;
    justify-items: center;
    padding-left: 18px;
    padding-right: 18px;
  }

  .entry-section .section-heading,
  .entry-section .section-heading.narrow,
  .client-entry {
    width: min(100%, 360px);
    margin-left: auto;
    margin-right: auto;
  }

  .client-entry {
    display: grid;
    gap: 12px;
  }

  .client-entry-card,
  .cta-secondary {
    width: 100%;
    box-sizing: border-box;
  }
}
