:root {
  --ink: #1e2b25;
  --muted: #68736d;
  --paper: #f4f0e6;
  --cream: #ebe3d2;
  --forest: #183f31;
  --forest-light: #315b49;
  --sun: #d48132;
  --line: rgba(30, 43, 37, 0.16);
  --sans: "Trebuchet MS", "Gill Sans", sans-serif;
  --serif: Georgia, "Times New Roman", serif;
}

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

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 4%, rgba(212, 129, 50, 0.13), transparent 28rem),
    linear-gradient(180deg, #edf0e7 0, var(--paper) 34rem);
  font-family: var(--serif);
  line-height: 1.65;
}

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

.shell {
  width: min(1140px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}

.brand {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  letter-spacing: -0.035em;
  text-decoration: none;
}

nav, .footer-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-family: var(--sans);
  font-size: 14px;
}

nav a, .footer-links a { color: var(--muted); text-decoration: none; }
nav a:hover, nav a.active, .footer-links a:hover { color: var(--ink); }

.hero {
  min-height: 650px;
  display: grid;
  grid-template-columns: 1.05fr 0.78fr;
  align-items: center;
  gap: clamp(40px, 8vw, 110px);
  padding: 70px 0 92px;
}

.eyebrow {
  margin: 0;
  color: var(--sun);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

h1, h2, h3 { text-wrap: balance; }

h1 {
  max-width: 760px;
  margin: 14px 0 24px;
  font-size: clamp(50px, 7.5vw, 92px);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.96;
}

.lead {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(19px, 2.3vw, 25px);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 34px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 13px;
}

.button {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  color: #fff;
  background: var(--forest);
  font-family: var(--sans);
  font-weight: 700;
  text-decoration: none;
}

.button:hover { background: var(--forest-light); }

.hero-photo {
  position: relative;
  margin: 0;
  padding: 10px 10px 44px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 30px 80px rgba(30, 43, 37, 0.22);
  transform: rotate(2deg);
}

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

.hero-photo figcaption {
  position: absolute;
  right: 20px;
  bottom: 12px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 12px;
}

.intro-band { padding: 55px 0; color: #f6f0e5; background: var(--forest); }

.intro-grid {
  display: grid;
  grid-template-columns: 0.45fr 1.55fr;
  gap: 40px;
  align-items: start;
}

.manifesto {
  max-width: 850px;
  margin: 0;
  font-size: clamp(25px, 3.7vw, 43px);
  line-height: 1.25;
}

.section { padding: 105px 0; }

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
  padding-bottom: 21px;
  border-bottom: 1px solid var(--line);
}

.section-heading h2, .feature h2, .page-title h1 {
  margin: 7px 0 0;
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.section-heading > p:last-child { margin: 0; color: var(--muted); font-family: var(--sans); font-size: 13px; }

.story-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }

.story-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.58);
}

.story-card-large { grid-row: span 2; }
.story-card-dark { color: #f6f0e5; background: var(--forest); }
.story-image { display: block; overflow: hidden; background: var(--cream); }

.story-image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 600ms ease;
}

.story-card-large .story-image img { height: 570px; }
.story-card:hover .story-image img { transform: scale(1.025); }
.story-body { padding: 25px 27px 29px; }

time {
  color: var(--muted);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.story-card-dark time, .story-card-dark p { color: rgba(246, 240, 229, 0.68); }
.story-card h3 { margin: 12px 0 10px; font-size: clamp(25px, 3vw, 34px); line-height: 1.1; }
.story-card h3 a { text-decoration: none; }
.story-card p { margin: 0; color: var(--muted); }

.feature {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: clamp(34px, 7vw, 82px);
  align-items: center;
  padding-bottom: 110px;
}

.feature-photo { position: relative; }

.feature-photo::before {
  content: "04";
  position: absolute;
  top: -30px;
  left: -17px;
  z-index: 1;
  color: #fff;
  font-size: 72px;
  line-height: 1;
  text-shadow: 0 3px 22px rgba(0, 0, 0, 0.25);
}

.feature-photo img { width: 100%; height: 510px; object-fit: cover; border-radius: 4px; }
.feature-copy > p:not(.eyebrow) { color: var(--muted); font-size: 18px; }

.text-link {
  display: inline-flex;
  gap: 10px;
  margin-top: 12px;
  color: var(--forest);
  font-family: var(--sans);
  font-weight: 700;
  text-decoration: none;
}

.quote-block { padding: 75px 0 90px; border-top: 1px solid var(--line); text-align: center; }
.quote-block blockquote { max-width: 880px; margin: 0 auto 18px; font-size: clamp(32px, 5vw, 58px); line-height: 1.15; }
.quote-block p { margin: 0; color: var(--muted); font-family: var(--sans); font-size: 13px; }

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: start;
  gap: 48px;
  padding: 38px 0 50px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--sans);
  font-size: 13px;
}

.site-footer .brand { color: var(--ink); font-family: var(--serif); }
.site-footer p { margin: 5px 0 0; }
.footer-links { align-items: flex-start; }

.page-hero { padding: 88px 0 54px; border-bottom: 1px solid var(--line); }
.page-title { max-width: 880px; }
.page-title .lead { margin-top: 22px; }

.route-map { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.route-map a { padding: 8px 14px; border: 1px solid var(--line); border-radius: 999px; font-family: var(--sans); font-size: 13px; text-decoration: none; }

.route-entry {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(35px, 8vw, 105px);
  align-items: center;
  padding: 85px 0;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 20px;
}

.route-entry:nth-child(even) .route-photo { order: 2; }
.route-photo img { width: 100%; height: 480px; object-fit: cover; }

.route-copy .stop {
  color: var(--sun);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.route-copy h2 { margin: 8px 0 16px; font-size: clamp(38px, 5vw, 57px); font-weight: 500; line-height: 1; }
.route-copy p { color: var(--muted); font-size: 18px; }
.route-copy ul { padding-left: 20px; color: var(--muted); }

.prose { width: min(790px, calc(100% - 40px)); margin: 0 auto; padding: 75px 0 105px; font-size: 19px; }
.prose h2 { margin: 52px 0 12px; font-size: 34px; font-weight: 500; }
.prose p { color: #4f5d56; }
.prose .portrait-note { padding: 30px; border-left: 4px solid var(--sun); background: rgba(255, 255, 255, 0.52); }

.credits-list { display: grid; gap: 18px; margin-top: 40px; }
.credit { padding: 22px 24px; border: 1px solid var(--line); border-radius: 14px; background: rgba(255, 255, 255, 0.48); }
.credit h2 { margin: 0 0 5px; font-size: 25px; }
.credit p { margin: 4px 0; font-size: 15px; }

@media (max-width: 800px) {
  nav { gap: 14px; }
  nav a { font-size: 12px; }
  .hero { grid-template-columns: 1fr; min-height: 0; padding-top: 50px; }
  .hero-photo { width: min(460px, 92%); margin-inline: auto; transform: rotate(1deg); }
  .hero-photo img { height: 430px; }
  .intro-grid, .story-grid, .feature, .route-entry { grid-template-columns: 1fr; }
  .story-card-large { grid-row: auto; }
  .story-card-large .story-image img, .story-image img { height: 320px; }
  .feature-photo img, .route-photo img { height: 390px; }
  .route-entry:nth-child(even) .route-photo { order: 0; }
  .site-footer { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 520px) {
  .shell { width: min(100% - 28px, 1140px); }
  .site-header { align-items: flex-start; }
  nav { flex-direction: column; align-items: flex-end; gap: 4px; }
  .hero { padding-bottom: 65px; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .hero-photo img { height: 360px; }
  .intro-band { padding: 42px 0; }
  .intro-grid { gap: 16px; }
  .section { padding: 72px 0; }
  .section-heading { align-items: flex-start; flex-direction: column; }
  .story-image img, .story-card-large .story-image img { height: 245px; }
  .feature-photo img, .route-photo img { height: 300px; }
  .feature { padding-bottom: 75px; }
  .page-hero { padding-top: 58px; }
  .route-entry { padding: 60px 0; }
  .footer-links { flex-wrap: wrap; gap: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .story-image img { transition: none; }
}
