:root {
  --paper: #f5eddf;
  --paper-2: #fffaf0;
  --ink: #11100e;
  --muted: #63584b;
  --espresso: #4a2a18;
  --latte: #d8b889;
  --ember: #e54b2c;
  --blue: #245d7a;
  --sage: #7f8f70;
  --hairline: #ded1bd;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(17, 16, 14, 0.12);
  --radius: 8px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -100px;
  z-index: 20;
  background: var(--ink);
  color: var(--paper-2);
  padding: 10px 14px;
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 16px;
}

.concept-bar {
  display: flex;
  justify-content: center;
  gap: 18px;
  align-items: center;
  padding: 9px 18px;
  background: var(--ink);
  color: var(--paper-2);
  font-size: 13px;
  text-align: center;
}

.concept-bar a {
  color: var(--latte);
  font-weight: 700;
  text-decoration: none;
}

.site-header {
  background: var(--paper);
  border-bottom: 1px solid var(--hairline);
}

.nav-wrap {
  width: min(100% - 32px, var(--container));
  min-height: 88px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 180px;
}

.brand img {
  width: min(360px, 52vw);
  height: auto;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.nav-links a,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 17px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  line-height: 1.1;
}

.nav-links a {
  background: var(--paper-2);
  font-size: 14px;
}

.button {
  font-size: 15px;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--ink);
  color: var(--paper-2);
}

.button.secondary {
  background: var(--paper-2);
  color: var(--ink);
}

.section-band {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.hero {
  padding: 56px 0 30px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(340px, 0.96fr);
  gap: 28px;
  align-items: stretch;
}

.hero-copy {
  min-width: 0;
  padding: 36px;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(216, 184, 137, 0.28), transparent 42%),
    var(--paper-2);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--ember);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", ui-serif, serif;
  font-weight: 700;
  line-height: 1;
}

h1 {
  max-width: 12ch;
  font-size: 72px;
}

.hero-lede {
  max-width: 62ch;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 19px;
}

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

.hero-media {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 470px;
  object-fit: cover;
}

.media-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 16px;
  border-radius: var(--radius);
  background: rgba(17, 16, 14, 0.86);
  color: var(--paper-2);
  backdrop-filter: blur(10px);
}

.media-caption span,
.route-strip span,
.path-card span,
.action-routes span {
  display: block;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.media-caption strong {
  display: block;
  margin-top: 4px;
  font-size: 19px;
}

.route-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.route-strip a {
  min-height: 122px;
  padding: 18px;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--paper-2);
  text-decoration: none;
}

.route-strip a:nth-child(2) {
  background: var(--blue);
}

.route-strip a:nth-child(3) {
  background: var(--espresso);
}

.route-strip strong {
  display: block;
  margin-top: 10px;
  font-size: 18px;
  line-height: 1.15;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(100% - 32px, var(--container));
  margin: 26px auto 0;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper-2);
}

.proof-strip div {
  min-height: 106px;
  padding: 18px;
  border-right: 1px solid var(--ink);
}

.proof-strip div:last-child {
  border-right: 0;
}

.proof-strip strong {
  display: block;
  font-family: Georgia, "Times New Roman", ui-serif, serif;
  font-size: 30px;
  line-height: 1;
}

.proof-strip span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

.paths,
.latest,
.map-panel,
.action-band {
  padding: 88px 0 0;
}

.section-heading {
  display: grid;
  gap: 14px;
  max-width: 760px;
  margin-bottom: 30px;
}

.section-heading h2,
.owner-cta h2 {
  font-size: 48px;
}

.section-heading p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.split-heading {
  max-width: none;
  grid-template-columns: 1fr auto;
  align-items: end;
}

.text-link {
  font-weight: 900;
  color: var(--blue);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

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

.path-card {
  min-height: 236px;
  padding: 22px;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  background: var(--paper-2);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

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

.path-card span {
  color: var(--ember);
}

.path-card h3 {
  margin-top: 32px;
  font-size: 29px;
}

.path-card p {
  margin: 16px 0 0;
  color: var(--muted);
}

.ink-card,
.blue-card,
.red-card {
  color: var(--paper-2);
  border-color: transparent;
}

.ink-card {
  background: var(--ink);
}

.blue-card {
  background: var(--blue);
}

.red-card {
  background: var(--ember);
}

.ink-card p,
.blue-card p,
.red-card p,
.ink-card span,
.blue-card span,
.red-card span {
  color: rgba(255, 250, 240, 0.84);
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 16px;
}

.feature-story {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  min-height: 440px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ink);
  color: var(--paper-2);
}

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

.feature-story div {
  padding: 30px;
  align-self: end;
}

.feature-story h3 {
  font-size: 40px;
}

.feature-story p:not(.eyebrow) {
  color: rgba(255, 250, 240, 0.78);
}

.story-cards {
  display: grid;
  gap: 16px;
}

.story-cards article {
  min-height: 212px;
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  background: var(--paper-2);
}

.story-cards img {
  width: 150px;
  height: 166px;
  object-fit: cover;
  border-radius: var(--radius);
}

.story-cards h3 {
  font-size: 27px;
}

.story-cards a,
.score-list a,
.action-routes a {
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.map-panel {
  display: grid;
  grid-template-columns: 0.8fr 1.1fr 0.7fr;
  gap: 16px;
  align-items: stretch;
}

.map-copy,
.score-list {
  padding: 26px;
  border-radius: var(--radius);
  background: var(--paper-2);
  border: 1px solid var(--hairline);
}

.map-copy h2 {
  font-size: 42px;
}

.map-copy p:not(.eyebrow) {
  color: var(--muted);
  margin: 18px 0 22px;
}

.map-art {
  min-height: 355px;
  display: grid;
  place-items: center;
  padding: 18px;
  border-radius: var(--radius);
  background: var(--blue);
  overflow: hidden;
}

.map-art img {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

.score-list h3 {
  font-size: 30px;
  margin-bottom: 16px;
}

.score-list a {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 13px 0;
  border-top: 1px solid var(--hairline);
  text-decoration: none;
}

.score-list strong {
  display: inline-grid;
  place-items: center;
  min-width: 52px;
  height: 42px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper-2);
  font-family: Georgia, "Times New Roman", ui-serif, serif;
  font-size: 23px;
}

.action-band {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 16px;
  align-items: stretch;
  padding-bottom: 88px;
}

.action-copy {
  padding: 30px;
  border-radius: var(--radius);
  background: var(--espresso);
  color: var(--paper-2);
}

.action-copy h2 {
  font-size: 44px;
}

.action-copy p:not(.eyebrow) {
  color: rgba(255, 250, 240, 0.78);
}

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

.action-routes a {
  min-height: 310px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  color: var(--paper-2);
  text-decoration: none;
  background: var(--ink);
}

.action-routes img {
  width: 100%;
  height: 100%;
  min-height: 310px;
  object-fit: cover;
  opacity: 0.58;
  transition: transform 220ms ease, opacity 220ms ease;
}

.action-routes a:hover img {
  transform: scale(1.03);
  opacity: 0.72;
}

.action-routes span,
.action-routes strong {
  position: absolute;
  left: 22px;
  right: 22px;
}

.action-routes span {
  bottom: 72px;
}

.action-routes strong {
  bottom: 24px;
  font-family: Georgia, "Times New Roman", ui-serif, serif;
  font-size: 28px;
  line-height: 1;
}

.owner-cta {
  width: min(100% - 32px, var(--container));
  margin: 0 auto 88px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding: 26px;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  background: var(--latte);
}

.owner-button {
  background: var(--ember);
  color: var(--white);
}

.site-footer {
  background: var(--ink);
  color: var(--paper-2);
  padding: 44px 0;
}

.footer-grid {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) 0.75fr 0.75fr;
  gap: 28px;
}

.footer-logo {
  width: 190px;
  margin-bottom: 16px;
}

.site-footer p {
  max-width: 58ch;
  margin: 0;
  color: rgba(255, 250, 240, 0.72);
}

.site-footer nav {
  display: grid;
  gap: 10px;
  align-content: start;
}

.site-footer a {
  color: var(--paper-2);
  font-weight: 800;
  text-decoration-color: rgba(255, 250, 240, 0.35);
  text-underline-offset: 4px;
}

@media (max-width: 980px) {
  .nav-wrap {
    min-height: 0;
    padding: 18px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .hero-grid,
  .story-layout,
  .feature-story,
  .map-panel,
  .action-band,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-media,
  .hero-media img {
    min-height: 360px;
  }

  .route-strip,
  .proof-strip,
  .path-grid,
  .action-routes {
    grid-template-columns: 1fr 1fr;
  }

  .proof-strip div:nth-child(2) {
    border-right: 0;
  }

  .proof-strip div {
    border-bottom: 1px solid var(--ink);
  }

  .proof-strip div:nth-child(3),
  .proof-strip div:nth-child(4) {
    border-bottom: 0;
  }

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

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  .concept-bar {
    align-items: stretch;
    flex-direction: column;
    gap: 4px;
    padding: 10px 14px;
  }

  .nav-links a,
  .button {
    width: 100%;
  }

  .nav-links {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .hero {
    padding-top: 28px;
  }

  .hero-copy {
    padding: 24px;
  }

  h1 {
    max-width: none;
    font-size: 46px;
  }

  .section-heading h2,
  .owner-cta h2,
  .action-copy h2,
  .map-copy h2,
  .feature-story h3 {
    font-size: 34px;
  }

  .hero-lede {
    font-size: 17px;
  }

  .hero-actions,
  .route-strip,
  .proof-strip,
  .path-grid,
  .action-routes {
    grid-template-columns: 1fr;
  }

  .route-strip {
    display: grid;
  }

  .proof-strip div,
  .proof-strip div:nth-child(2),
  .proof-strip div:nth-child(3) {
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }

  .proof-strip div:last-child {
    border-bottom: 0;
  }

  .paths,
  .latest,
  .map-panel,
  .action-band {
    padding-top: 58px;
  }

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

  .story-cards article {
    grid-template-columns: 1fr;
  }

  .story-cards img {
    width: 100%;
    height: 210px;
  }

  .action-band {
    padding-bottom: 58px;
  }

  .owner-cta {
    margin-bottom: 58px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
