@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Manrope:wght@400;500;600;700&display=swap");

:root {
  --bg: #f7f3eb;
  --paper: #fbf8f3;
  --ink: #18211f;
  --muted: #67706b;
  --forest: #1f4739;
  --forest-deep: #153127;
  --line: rgba(24, 33, 31, 0.10);
  --line-strong: rgba(24, 33, 31, 0.18);
  --sand: #c7a271;
  --shadow: 0 24px 64px rgba(27, 21, 15, 0.09);
  --max: 1280px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  font-family: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  background: var(--bg);
}

a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: auto; }

.shell {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
}

.topbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  z-index: 40;
  border-bottom: 1px solid rgba(24, 33, 31, 0.06);
  background: rgba(251, 248, 243, 0.86);
  backdrop-filter: blur(18px);
  transition: transform 220ms ease, opacity 220ms ease, box-shadow 220ms ease, background 220ms ease;
  will-change: transform, opacity;
}

.topbar-inner {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  padding: 12px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.topbar.is-scrolling {
  box-shadow: 0 12px 32px rgba(24, 33, 31, 0.08);
}

.topbar.is-auto-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(calc(-100% - 2px));
}

.topbar[data-topbar-pinned="true"],
body[data-topbar-pinned="true"] .topbar {
  opacity: 1 !important;
  pointer-events: auto !important;
  transform: none !important;
}

@media (prefers-reduced-motion: reduce) {
  .topbar {
    transition: none;
  }
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand img {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
}

.brand-name {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.brand-sub {
  margin-top: 4px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.nav a {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--ink);
}

.nav a[aria-current="page"] {
  color: var(--forest);
}

.hero {
  padding: 28px 0 20px;
}

.hero-stage {
  position: relative;
  overflow: hidden;
  min-height: 84svh;
  border-radius: 30px;
  background: #1b2421;
  box-shadow: var(--shadow);
}

.hero-stage.short {
  min-height: 72svh;
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) brightness(0.76);
}

.hero-overlay {
  background:
    linear-gradient(94deg, rgba(18, 24, 22, 0.86) 0%, rgba(18, 24, 22, 0.60) 42%, rgba(18, 24, 22, 0.18) 76%, rgba(18, 24, 22, 0.10) 100%),
    linear-gradient(180deg, rgba(18, 24, 22, 0.08) 0%, rgba(18, 24, 22, 0.26) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  min-height: inherit;
  padding: 42px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #f7f3eb;
}

.topline,
.bottomline {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: rgba(247, 243, 235, 0.76);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-main {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 26px;
  align-items: end;
  padding: 42px 0 26px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--forest);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
}

.hero-copy .eyebrow {
  color: rgba(247, 243, 235, 0.76);
}

.display {
  margin: 0;
  font-family: "Cormorant Garamond", "Baskerville", serif;
  font-size: clamp(46px, 6vw, 84px);
  line-height: 0.92;
  letter-spacing: -0.04em;
}

.section-title {
  margin: 0;
  font-family: "Cormorant Garamond", "Baskerville", serif;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.lede,
.body-copy {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.84;
}

.hero-copy .lede,
.hero-copy .body-copy {
  color: rgba(247, 243, 235, 0.82);
  max-width: 620px;
}

.tag-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #f7f3eb;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.btn.primary {
  background: var(--forest);
  color: #fff;
}

.btn.secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.24);
  color: #fff;
}

.btn.soft {
  background: var(--paper);
  border-color: var(--line);
  color: var(--forest);
}

.hero-panel,
.card,
.panel,
.stat,
.faq-item,
.quote-box {
  border: 1px solid var(--line);
  background: rgba(255, 252, 246, 0.78);
  box-shadow: 0 14px 36px rgba(28, 22, 17, 0.05);
}

.hero-panel {
  padding: 24px;
  border-radius: 24px;
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(14px);
}

.hero-panel h3,
.card h3,
.panel h3,
.faq-item h3,
.quote-box h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.24;
}

.hero-panel p,
.card p,
.panel p,
.faq-item p,
.quote-box p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.hero-panel p,
.hero-panel .list div {
  color: rgba(247, 243, 235, 0.82);
}

.list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.list div {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.72;
}

.section {
  padding: 90px 0;
}

.section.alt {
  background: rgba(255, 253, 248, 0.48);
  border-top: 1px solid rgba(24, 33, 31, 0.06);
  border-bottom: 1px solid rgba(24, 33, 31, 0.06);
}

.section-header {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 20px;
  align-items: end;
  margin-bottom: 34px;
}

.stats,
.cards,
.steps,
.faq-grid {
  display: grid;
  gap: 18px;
}

.stats { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.cards { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.steps { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.stat,
.card,
.panel,
.faq-item,
.quote-box {
  padding: 24px;
  border-radius: 24px;
}

.stat strong {
  display: block;
  font-size: 30px;
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(31, 71, 57, 0.10);
  color: var(--forest);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.kicker.dark {
  background: rgba(255, 255, 255, 0.10);
  color: #f7f3eb;
}

.card ul,
.panel ul {
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 24px;
  align-items: start;
}

.stack {
  display: grid;
  gap: 18px;
}

.visual {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 22, 21, 0.06) 0%, rgba(17, 22, 21, 0.34) 100%);
}

.visual-note {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: min(280px, calc(100% - 40px));
  padding: 18px;
  border-radius: 20px;
  background: rgba(18, 28, 25, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #f7f3eb;
  backdrop-filter: blur(14px);
}

.visual-note p {
  margin: 10px 0 0;
  color: rgba(247, 243, 235, 0.80);
  font-size: 13px;
  line-height: 1.68;
}

.step-badge,
.faq-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--forest);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.faq-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
}

.quote-band {
  padding: 28px;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(25, 71, 57, 0.98) 0%, rgba(18, 42, 34, 0.98) 100%);
  box-shadow: var(--shadow);
  color: #f7f3eb;
}

.quote-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 24px;
  align-items: center;
}

.quote-band .eyebrow {
  color: rgba(247, 243, 235, 0.72);
}

.quote-band .section-title,
.quote-band .body-copy {
  color: #f7f3eb;
}

.quote-band .body-copy {
  opacity: 0.84;
}

.quote-box {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.quote-box p,
.quote-box .list div {
  color: rgba(247, 243, 235, 0.82);
}

.route-strip {
  padding: 22px 0 0;
}

.route-strip.compact {
  padding-top: 28px;
}

.route-shell {
  display: grid;
  gap: 16px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 252, 246, 0.78);
  box-shadow: 0 14px 36px rgba(28, 22, 17, 0.05);
}

.route-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 18px;
  align-items: end;
}

.route-intro p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.72;
}

.route-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.route-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.route-tab[aria-current="page"] {
  background: var(--forest);
  border-color: var(--forest);
  color: #fff;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 24px;
  align-items: center;
}

.intro-copy {
  padding: 8px 0;
}

.intro-media {
  min-height: 420px;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.intro-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overview-grid,
.content-band,
.summary-grid {
  display: grid;
  gap: 18px;
}

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

.overview-card,
.text-card,
.content-copy {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 252, 246, 0.78);
  box-shadow: 0 14px 36px rgba(28, 22, 17, 0.05);
}

.overview-card {
  padding: 18px;
}

.overview-thumb {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 20px;
  background: #d6d1c8;
}

.overview-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overview-card h3,
.text-card h3,
.content-copy h3 {
  margin: 16px 0 0;
  font-size: 22px;
  line-height: 1.22;
}

.overview-card p,
.text-card p,
.content-copy p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

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

.content-slab {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 24px;
  align-items: center;
}

.content-slab.reverse {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}

.content-media {
  min-height: 360px;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.content-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content-copy {
  padding: 26px;
}

.content-copy .list {
  margin-top: 16px;
}

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

.text-card {
  padding: 24px;
}

.feature-grid,
.surface-grid,
.data-strip {
  display: grid;
  gap: 18px;
}

.feature-grid {
  grid-template-columns: minmax(0, 1.25fr) repeat(2, minmax(0, 0.875fr));
  grid-auto-rows: minmax(220px, auto);
}

.feature-card {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  border-radius: 28px;
  box-shadow: var(--shadow);
  isolation: isolate;
  background: #1b2421;
}

.feature-card.large {
  grid-row: span 2;
}

.feature-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.94) brightness(0.72);
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(14, 20, 18, 0.06) 0%, rgba(14, 20, 18, 0.72) 100%),
    linear-gradient(92deg, rgba(14, 20, 18, 0.62) 0%, rgba(14, 20, 18, 0.14) 58%, rgba(14, 20, 18, 0.10) 100%);
}

.feature-card-content {
  position: relative;
  z-index: 1;
  min-height: 100%;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #f7f3eb;
}

.feature-card-content h3 {
  margin: 12px 0 0;
  font-size: 28px;
  line-height: 1.06;
}

.feature-card-content p {
  margin: 12px 0 0;
  max-width: 36ch;
  color: rgba(247, 243, 235, 0.82);
  font-size: 14px;
  line-height: 1.72;
}

.feature-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: #f7f3eb;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

.feature-link::after {
  content: "→";
  font-size: 14px;
  line-height: 1;
}

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

.surface-panel {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 252, 246, 0.78);
  box-shadow: 0 14px 36px rgba(28, 22, 17, 0.05);
}

.surface-panel h3 {
  margin: 12px 0 0;
  font-size: 20px;
  line-height: 1.22;
}

.surface-panel p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.72;
}

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

.data-panel {
  padding: 22px 0;
  border-top: 1px solid var(--line-strong);
}

.data-label {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.data-value {
  margin-top: 12px;
  font-family: "Cormorant Garamond", "Baskerville", serif;
  font-size: 34px;
  line-height: 0.98;
}

.data-text {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.72;
}

.summary-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.summary-item {
  display: grid;
  grid-template-columns: minmax(110px, auto) 1fr;
  gap: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.summary-key {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.summary-value {
  color: var(--ink);
  font-size: 14px;
  line-height: 1.68;
}

.hero-panel .summary-item {
  border-top-color: rgba(255, 255, 255, 0.14);
}

.hero-panel .summary-key {
  color: rgba(247, 243, 235, 0.62);
}

.hero-panel .summary-value {
  color: #f7f3eb;
}

.footer {
  padding: 28px 0 44px;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

@media (max-width: 1120px) {
  .hero-main,
  .route-intro,
  .intro-grid,
  .overview-grid,
  .content-band,
  .content-slab,
  .content-slab.reverse,
  .summary-grid,
  .section-header,
  .stats,
  .cards,
  .steps,
  .feature-grid,
  .surface-grid,
  .data-strip,
  .split,
  .quote-grid {
    grid-template-columns: 1fr;
  }

  .hero-stage,
  .hero-stage.short {
    min-height: auto;
  }

  .feature-card.large {
    grid-row: auto;
  }
}

@media (max-width: 720px) {
  .shell,
  .topbar-inner {
    width: min(calc(100% - 28px), var(--max));
  }

  .hero-content,
  .hero-panel,
  .stat,
  .card,
  .panel,
  .faq-item,
  .quote-band,
  .quote-box {
    padding: 22px;
  }

  .display {
    font-size: clamp(42px, 14vw, 62px);
  }
}
