:root {
  --bg: #f2efe8;
  --surface: #fdfcf9;
  --surface-muted: #eeebe3;
  --ink: #1c1c18;
  --muted: #66645c;
  --soft: #949086;
  --line: rgba(28, 28, 24, 0.12);
  --line-strong: rgba(28, 28, 24, 0.2);
  --green: #2a6048;
  --green-dark: #214d39;
  --green-soft: #e5efe8;
  --accent: #c8b89a;
  --serif: "Cormorant Garamond", Georgia, serif;
  --mono: "DM Mono", "SFMono-Regular", Consolas, monospace;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 4px;
}

.container {
  width: min(100% - 32px, 1120px);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(253, 252, 249, 0.94);
  border-bottom: 1px solid var(--line-strong);
  backdrop-filter: blur(16px);
}

.nav {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1;
  text-decoration: none;
}

.brand span {
  padding: 3px 7px;
  border: 1px solid var(--line-strong);
  border-radius: 3px;
  color: var(--soft);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links a,
.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

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

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

.nav-links .nav-cta,
.button-primary {
  background: var(--green);
  color: #fff;
}

.nav-links .nav-cta {
  padding: 0 18px;
}

.nav-links .nav-cta:hover,
.button-primary:hover {
  background: var(--green-dark);
  color: #fff;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: 3px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 1px;
  display: block;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.hero {
  padding-block: clamp(72px, 10vw, 126px) clamp(56px, 8vw, 96px);
}

.hero-content {
  max-width: 760px;
}

.eyebrow,
.section-number {
  margin: 0 0 24px;
  color: var(--green);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 300;
  letter-spacing: -0.02em;
}

h1 {
  margin-bottom: 34px;
  font-size: clamp(56px, 11vw, 96px);
  line-height: 0.95;
}

h1 em,
.manifest h2 em {
  color: var(--muted);
  font-style: italic;
}

.hero-subtitle {
  max-width: 620px;
  margin-bottom: 44px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.actions.centered {
  justify-content: center;
}

.button {
  padding: 0 28px;
}

.button-secondary {
  border: 1px solid var(--line-strong);
  color: var(--muted);
}

.button-secondary:hover {
  border-color: var(--ink);
  color: var(--ink);
}

.cycle-summary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: clamp(52px, 7vw, 76px) 0 0;
  padding: 36px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.cycle-summary li {
  position: relative;
  display: flex;
  align-items: baseline;
  gap: 14px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 30px);
}

.cycle-summary li:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: 24px;
  color: var(--soft);
  font-family: var(--mono);
  font-size: 14px;
}

.cycle-summary span,
.card-number {
  color: var(--soft);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.12em;
}

.manifest,
.lhotse-band {
  background: var(--ink);
  color: var(--bg);
}

.manifest {
  padding-block: clamp(80px, 10vw, 124px);
}

.manifest-inner {
  max-width: 920px;
}

.manifest .eyebrow,
.lhotse-band .eyebrow {
  color: var(--accent);
}

.manifest h2 {
  margin-bottom: 46px;
  color: var(--bg);
  font-size: clamp(40px, 7vw, 64px);
  line-height: 1.08;
}

.manifest h2 em {
  color: var(--accent);
}

.manifest-copy {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 64px;
  padding-top: 44px;
  border-top: 1px solid rgba(242, 239, 232, 0.14);
  color: rgba(242, 239, 232, 0.74);
}

.manifest-copy p,
.split-layout p {
  margin-bottom: 18px;
}

.stats {
  background: var(--surface);
  border-block: 1px solid var(--line);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.stats-grid div {
  min-width: 0;
  padding: 34px 28px;
  border-right: 1px solid var(--line);
}

.stats-grid div:first-child {
  padding-left: 0;
}

.stats-grid div:last-child {
  border-right: 0;
  padding-right: 0;
}

.stats-grid strong,
.lhotse-stats strong {
  display: block;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1;
}

.stats-grid span,
.lhotse-stats span {
  display: block;
  margin-top: 10px;
  color: var(--soft);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.12em;
  line-height: 1.45;
  text-transform: uppercase;
}

.section,
.split-section,
.team-section,
.cta-section {
  padding-block: clamp(78px, 9vw, 108px);
}

.section-header {
  max-width: 650px;
  margin-bottom: 54px;
}

.section-number {
  display: block;
  margin-bottom: 8px;
  color: var(--soft);
}

.section-header h2,
.split-layout h2,
.cta-section h2,
.lhotse-band h2 {
  margin-bottom: 16px;
  font-size: clamp(38px, 6vw, 52px);
  line-height: 1.05;
}

.section-header p,
.split-layout p,
.cycle-card p,
.market-card dt,
.person-info p,
.person-info dt,
.reasons-list p,
.cta-section p,
.lhotse-band p {
  color: var(--muted);
}

.cycle-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  overflow: hidden;
  background: var(--surface);
}

.cycle-card {
  position: relative;
  padding: 34px 28px;
  border-right: 1px solid var(--line);
}

.cycle-card:not(:last-child)::after {
  content: "→";
  position: absolute;
  top: 50%;
  right: -14px;
  z-index: 1;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: var(--bg);
  color: var(--soft);
  font-size: 10px;
}

.cycle-card:last-child {
  border-right: 0;
}

.icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin: 20px 0 22px;
  border-radius: 50%;
  background: var(--green-soft);
}

.icon svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: var(--green);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.cycle-card h3,
.process-list h3,
.reasons-list h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 26px;
  line-height: 1.05;
}

.cycle-card p,
.process-list p,
.reasons-list p {
  margin-bottom: 0;
  font-size: 12px;
  line-height: 1.8;
}

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

.why-section {
  background: var(--bg);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(42px, 8vw, 84px);
  align-items: start;
}

.process-list,
.reasons-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.process-list li:first-child,
.reasons-list article:first-child {
  padding-top: 0;
}

.process-list li:last-child,
.reasons-list article:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.process-list span {
  color: var(--green);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
}

.markets-grid,
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.market-card,
.person-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
}

.market-card header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 30px 28px 22px;
  border-bottom: 1px solid var(--line);
}

.market-card h3 {
  margin-bottom: 2px;
  font-size: 36px;
  line-height: 1;
}

.market-card header p,
.market-card footer p {
  margin: 0;
  color: var(--soft);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.market-card header span {
  flex: 0 0 auto;
  padding: 4px 8px;
  border-radius: 3px;
  background: var(--green-soft);
  color: var(--green);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.market-card dl,
.person-info dl {
  margin: 0;
}

.market-card dl {
  padding: 22px 28px;
}

.market-card dl div {
  display: flex;
  flex-direction: row-reverse;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.market-card dl div:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.market-card dd,
.person-info dd {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 300;
  line-height: 1;
}

.market-card dt {
  max-width: 150px;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.45;
  text-align: right;
  text-transform: uppercase;
}

.market-card footer {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 20px 28px 26px;
  background: var(--bg);
  border-top: 1px solid var(--line);
}

.market-card footer p {
  flex-basis: 100%;
  margin-bottom: 5px;
}

.market-card footer span {
  padding: 3px 8px;
  border: 1px solid var(--line-strong);
  border-radius: 3px;
  color: var(--muted);
  font-size: 10px;
}

.team-section {
  background: var(--surface);
  border-top: 1px solid var(--line);
}

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

.person-card {
  background: var(--bg);
}

.person-photo {
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--surface-muted), #f8f6f1);
  color: var(--soft);
  font-family: var(--serif);
  font-size: 34px;
  letter-spacing: 0.04em;
}

.person-info {
  padding: 22px;
}

.person-info h3 {
  margin-bottom: 5px;
  font-size: 26px;
  line-height: 1.05;
}

.person-info p {
  min-height: 36px;
  margin-bottom: 16px;
  color: var(--green);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.45;
  text-transform: uppercase;
}

.person-info dl {
  padding-top: 15px;
  border-top: 1px solid var(--line);
}

.person-info dl div {
  display: flex;
  flex-direction: row-reverse;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.person-info dd {
  font-size: 20px;
}

.person-info dt {
  font-size: 10px;
  letter-spacing: 0.04em;
}

.reasons-list article {
  position: relative;
  padding: 23px 0 23px 26px;
  border-bottom: 1px solid var(--line);
}

.reasons-list article::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
}

.lhotse-band {
  padding-block: 58px;
}

.lhotse-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 44px;
}

.lhotse-band h2 {
  color: var(--bg);
  font-size: clamp(32px, 5vw, 42px);
}

.lhotse-band p:not(.eyebrow) {
  max-width: 560px;
  margin-bottom: 0;
  color: rgba(242, 239, 232, 0.7);
}

.lhotse-stats {
  display: flex;
  gap: clamp(24px, 4vw, 48px);
  flex: 0 0 auto;
}

.lhotse-stats strong {
  color: var(--bg);
  font-size: 36px;
}

.lhotse-stats span {
  color: var(--accent);
}

.cta-section {
  text-align: center;
  border-top: 1px solid var(--line);
}

.cta-inner {
  max-width: 700px;
}

.cta-section h2 {
  font-size: clamp(40px, 7vw, 60px);
}

.cta-section p {
  margin-bottom: 34px;
}

.contact-note {
  margin: 22px 0 0;
  color: var(--soft);
  font-size: 12px;
}

.contact-note a {
  color: var(--muted);
  text-decoration: none;
}

.contact-note a:hover {
  color: var(--ink);
}

.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--line);
}

.footer-layout {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-brand {
  margin: 0;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 22px;
}

.site-footer ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer a,
.footer-copy {
  color: var(--soft);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-footer a:hover {
  color: var(--muted);
}

.footer-copy {
  margin: 0;
  text-align: right;
  text-transform: none;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    inset: 68px 0 auto;
    display: grid;
    gap: 0;
    padding: 18px 16px 24px;
    background: var(--surface);
    border-bottom: 1px solid var(--line-strong);
    box-shadow: 0 24px 40px rgba(28, 28, 24, 0.08);
    transform: translateY(-130%);
    transition: transform 220ms ease;
  }

  .nav-links.is-open {
    transform: translateY(0);
  }

  .nav-links a {
    width: 100%;
    justify-content: flex-start;
    padding: 14px 4px;
    border-bottom: 1px solid var(--line);
  }

  .nav-links .nav-cta {
    justify-content: center;
    margin-top: 12px;
    padding: 0 18px;
    border-bottom: 0;
  }

  .cycle-summary,
  .stats-grid,
  .cycle-grid,
  .markets-grid,
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cycle-summary {
    gap: 18px 24px;
  }

  .cycle-summary li:not(:last-child)::after,
  .cycle-card::after {
    display: none;
  }

  .cycle-card {
    border-bottom: 1px solid var(--line);
  }

  .cycle-card:nth-child(2n) {
    border-right: 0;
  }

  .cycle-card:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .manifest-copy,
  .split-layout {
    grid-template-columns: 1fr;
  }

  .lhotse-layout,
  .footer-layout {
    align-items: flex-start;
    flex-direction: column;
  }

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

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

  .hero {
    padding-top: 58px;
  }

  h1 {
    font-size: clamp(54px, 18vw, 72px);
  }

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

  .button {
    width: 100%;
  }

  .cycle-summary,
  .stats-grid,
  .cycle-grid,
  .markets-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .cycle-summary {
    padding-top: 28px;
  }

  .cycle-summary li {
    padding-bottom: 12px;
    border-bottom: 1px solid var(--line);
  }

  .stats-grid div,
  .stats-grid div:first-child,
  .stats-grid div:last-child {
    padding: 22px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stats-grid div:last-child {
    border-bottom: 0;
  }

  .cycle-card,
  .cycle-card:nth-child(2n),
  .cycle-card:nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .cycle-card:last-child {
    border-bottom: 0;
  }

  .market-card header,
  .market-card dl div {
    align-items: flex-start;
    flex-direction: column;
  }

  .market-card dl div {
    gap: 8px;
  }

  .market-card dt {
    max-width: none;
    text-align: left;
  }

  .process-list li {
    grid-template-columns: 32px 1fr;
  }

  .lhotse-stats {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .site-footer ul {
    justify-content: flex-start;
  }
}
