:root {
  color-scheme: light;
  --bg: #f7f7f2;
  --paper: #fffef8;
  --ink: #151716;
  --muted: #606760;
  --line: #d7ddd5;
  --line-soft: rgba(52, 74, 65, 0.16);
  --accent: #23443d;
  --accent-2: #8a4f3f;
  --dark: #111612;
  --dark-muted: rgba(255, 255, 255, 0.72);
  --max: 1180px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--dark);
  color: var(--ink);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--dark);
  color: var(--ink);
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.siteHeader {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 68px;
  padding: 14px clamp(18px, 4vw, 48px);
  color: var(--paper);
  background: linear-gradient(180deg, rgba(16, 19, 21, 0.82), rgba(16, 19, 21, 0));
}

.brandLockup,
.siteNav {
  display: flex;
  align-items: center;
}

.brandLockup {
  font-weight: 700;
  font-size: 15px;
}

.siteNav {
  gap: clamp(14px, 3vw, 28px);
  font-size: 0.92rem;
  font-weight: 650;
}

.siteNav a {
  border-bottom: 1px solid rgba(255, 253, 248, 0.42);
}

.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: clamp(520px, 74svh, 720px);
  overflow: hidden;
  background: var(--dark);
  color: var(--paper);
}

.heroImage {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 50% 54%;
  filter: saturate(0.88) contrast(1.02);
}

.heroShade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 22, 18, 0.88), rgba(17, 22, 18, 0.58) 48%, rgba(17, 22, 18, 0.2)),
    linear-gradient(0deg, rgba(17, 22, 18, 0.58), rgba(17, 22, 18, 0.05) 40%);
}

.heroContent {
  position: relative;
  width: min(var(--max), calc(100% - 88px));
  padding: 112px 0 64px;
  margin: 0 auto;
}

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

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

h1 {
  max-width: 11ch;
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(5rem, 12vw, 9rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.8rem, 5.6vw, 5.1rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: 0;
}

.heroText {
  max-width: 760px;
  margin-bottom: 30px;
  color: var(--paper);
  font-size: clamp(1.12rem, 2vw, 1.48rem);
  line-height: 1.32;
}

.heroActions,
.routeActions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.primaryLink,
.secondaryLink {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 0;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}

.primaryLink {
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--paper);
}

.secondaryLink {
  color: var(--paper);
  border: 1px solid rgba(255, 254, 248, 0.62);
}

.primaryLink.inverse {
  color: var(--paper);
  background: var(--ink);
  border-color: var(--ink);
}

.secondaryLink.inverse {
  color: var(--ink);
  border-color: rgba(21, 23, 22, 0.34);
}

.routeBand {
  padding: clamp(58px, 8vw, 112px) clamp(18px, 4vw, 48px);
  background: var(--accent);
  color: var(--paper);
  border-top: 1px solid rgba(255, 254, 248, 0.18);
}

.routeBand .eyebrow {
  color: rgba(255, 254, 248, 0.72);
}

.routeBand .secondaryLink.inverse {
  color: var(--paper);
  border-color: rgba(255, 254, 248, 0.42);
}

.sectionInner {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.routeGrid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.routeGrid p:last-child {
  margin-bottom: 0;
}

.routeGrid {
  align-items: center;
}

.routeGrid p {
  max-width: 580px;
  color: var(--dark-muted);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.5;
}

.siteFooter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(18px, 4vw, 48px);
  color: var(--paper);
  background: var(--dark);
}

.siteFooter div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.siteFooter span {
  color: var(--dark-muted);
}

.siteFooter a {
  border-bottom: 1px solid rgba(255, 253, 248, 0.5);
}

@media (max-width: 760px) {
  .siteHeader {
    align-items: flex-start;
    min-height: 86px;
  }

  .siteNav {
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
  }

  .hero {
    min-height: clamp(560px, 68svh, 620px);
  }

  .heroImage {
    object-position: 50% 50%;
  }

  .heroShade {
    background:
      linear-gradient(180deg, rgba(17, 22, 18, 0.76), rgba(17, 22, 18, 0.5) 42%, rgba(17, 22, 18, 0.86)),
      linear-gradient(90deg, rgba(17, 22, 18, 0.46), rgba(17, 22, 18, 0.18));
  }

  .heroContent {
    width: min(100% - 32px, 680px);
    padding-bottom: 42px;
  }

  h1 {
    font-size: clamp(4.2rem, 19vw, 5.8rem);
  }

  .routeGrid {
    grid-template-columns: 1fr;
  }

  .primaryLink,
  .secondaryLink {
    width: 100%;
  }

  .siteFooter {
    align-items: flex-start;
    flex-direction: column;
  }
}
