:root {
  --paper: #f4f1e9;
  --ink: #151711;
  --muted: #5b6154;
  --line: #d8d4c7;
  --olive: #5f6f2d;
  --water: #dbe8e5;
  --rust: #a14e2d;
  --stone: #262821;
  --white-soft: #fbfaf5;
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Avenir Next", "Trebuchet MS", Verdana, sans-serif;
  --mono: "Courier New", Courier, monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 20;
  padding: .6rem .8rem;
  background: var(--ink);
  color: var(--white-soft);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.1rem clamp(1rem, 4vw, 3.5rem);
  color: var(--white-soft);
  transition: background .15s cubic-bezier(0.4, 0, 0.2, 1), color .15s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header.is-scrolled {
  background: color-mix(in oklch, var(--paper) 94%, white 6%);
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: grid;
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.7vw, 1.4rem);
  line-height: .9;
  text-decoration: none;
}

.brand span:last-child {
  margin-left: 1.35rem;
  color: var(--water);
}

.site-header.is-scrolled .brand span:last-child {
  color: var(--olive);
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(.7rem, 2vw, 1.8rem);
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.nav a {
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.nav a:hover,
.nav a:focus-visible {
  border-color: currentColor;
}

.nav-cta {
  padding: .55rem .75rem;
  border: 1px solid currentColor;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  padding: 8rem clamp(1rem, 4vw, 3.5rem) clamp(6rem, 10vw, 8rem);
  overflow: hidden;
  background: var(--stone);
  color: var(--white-soft);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(21, 23, 17, .78), rgba(21, 23, 17, .25) 58%, rgba(21, 23, 17, .66)),
    repeating-linear-gradient(112deg, rgba(244, 241, 233, .09) 0 1px, transparent 1px 24px);
  pointer-events: none;
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.84) contrast(1.05);
}

.hero-grid {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
}

.kicker,
.section-label,
.tag {
  margin: 0 0 1rem;
  font-family: var(--mono);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .07em;
}

.kicker {
  color: var(--water);
}

.kicker.dark,
.section-label {
  color: var(--olive);
}

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

h1,
h2 {
  font-family: var(--serif);
  font-weight: 700;
  line-height: .96;
}

h1 {
  max-width: 11ch;
  margin-bottom: 1.4rem;
  font-size: clamp(2.8rem, 8.4vw, 7.35rem);
}

h2 {
  font-size: clamp(2.3rem, 5.8vw, 5.6rem);
}

h3 {
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.3vw, 2.2rem);
  line-height: 1.05;
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 2rem;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.hero-actions,
.seo-panel {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: .78rem 1rem;
  border: 1px solid currentColor;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .15s cubic-bezier(0.4, 0, 0.2, 1), color .15s cubic-bezier(0.4, 0, 0.2, 1);
}

.button.primary {
  background: var(--olive);
  border-color: var(--olive);
  color: var(--white-soft);
}

.button.secondary {
  color: var(--white-soft);
}

.button:hover,
.button:focus-visible {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white-soft);
}

.hero-facts {
  position: absolute;
  z-index: 2;
  right: clamp(1rem, 4vw, 3.5rem);
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(100px, 1fr));
  width: min(560px, calc(100% - 2rem));
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--line);
}

.hero-facts div {
  padding: 1rem;
  border-left: 1px solid var(--line);
}

.hero-facts div:first-child {
  border-left: 0;
}

.hero-facts span {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 3vw, 2.45rem);
  line-height: 1;
}

.hero-facts small {
  color: var(--muted);
}

.intro {
  display: grid;
  grid-template-columns: .45fr 1.25fr .7fr;
  gap: clamp(1.5rem, 5vw, 5rem);
  padding: clamp(5rem, 10vw, 9rem) clamp(1rem, 4vw, 3.5rem);
  border-bottom: 1px solid var(--line);
}

.intro h2 {
  margin-bottom: 1.1rem;
}

.intro p {
  max-width: 760px;
  font-size: clamp(1rem, 1.7vw, 1.2rem);
}

.side-note {
  align-self: end;
  padding-top: 1rem;
  border-top: 1px solid var(--olive);
  color: var(--muted);
}

.walk-section {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(320px, .55fr);
  min-height: 620px;
  background: var(--water);
  border-bottom: 1px solid var(--line);
}

.walk-copy {
  padding: clamp(4rem, 8vw, 8rem) clamp(1rem, 5vw, 6rem);
}

.walk-copy p {
  max-width: 640px;
  font-size: 1.08rem;
}

.text-link,
.place a {
  font-weight: 800;
  color: var(--ink);
  text-decoration-color: var(--rust);
  text-decoration-thickness: 2px;
  text-underline-offset: .22em;
}

.walk-data {
  display: grid;
  align-content: stretch;
  margin: 0;
  border-left: 1px solid color-mix(in oklch, var(--olive) 35%, var(--line));
}

dt {
  margin: 0;
  font-family: var(--mono);
  font-size: .78rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--olive);
}

dd {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.3vw, 2rem);
  line-height: 1.15;
}

.walk-data dt {
  padding: clamp(1.6rem, 4vw, 3rem) clamp(1.6rem, 4vw, 3rem) .35rem;
  border-top: 1px solid color-mix(in oklch, var(--olive) 35%, var(--line));
}

.walk-data dt:first-of-type {
  border-top: 0;
}

.walk-data dd {
  padding: 0 clamp(1.6rem, 4vw, 3rem) clamp(1.6rem, 4vw, 3rem);
}

.places {
  padding: clamp(5rem, 10vw, 9rem) clamp(1rem, 4vw, 3.5rem);
}

.places-head {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(280px, .55fr);
  gap: clamp(1.5rem, 5vw, 5rem);
  align-items: end;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.places-head .kicker,
.places-head h2 {
  grid-column: 1;
}

.places-head p:last-child {
  grid-column: 2;
  color: var(--muted);
  font-size: 1.05rem;
}

.place {
  background: var(--white-soft);
  border: 1px solid var(--line);
}

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

.feature {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
  min-height: 470px;
  margin-bottom: 1rem;
}

.place-body {
  display: grid;
  align-content: center;
  padding: clamp(1.4rem, 4vw, 3rem);
}

.tag {
  color: var(--rust);
}

.place-body p:not(.tag) {
  color: var(--muted);
}

.place-stack {
  display: grid;
  grid-template-columns: minmax(0, .74fr) minmax(300px, .26fr);
  gap: 1rem;
  margin-bottom: 1rem;
}

.place-stack .place:first-child {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
}

.compact {
  background: var(--stone);
  color: var(--white-soft);
}

.compact .place-body p:not(.tag),
.compact a {
  color: var(--water);
}

.gorge-row {
  display: grid;
  grid-template-columns: minmax(280px, .45fr) minmax(0, .55fr);
  gap: 1rem;
}

.gorge {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
}

.text-only {
  background: var(--paper);
}

.access {
  padding: clamp(5rem, 10vw, 9rem) clamp(1rem, 4vw, 3.5rem);
  background: var(--stone);
  color: var(--white-soft);
}

.access .kicker {
  color: var(--water);
}

.access-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr 1fr;
  gap: 1px;
  margin-top: clamp(2rem, 5vw, 4rem);
  background: rgba(244, 241, 233, .26);
  border: 1px solid rgba(244, 241, 233, .26);
}

.access-grid article {
  min-height: 240px;
  padding: clamp(1.4rem, 3vw, 2.4rem);
  background: var(--stone);
}

.access-grid span {
  font-family: var(--mono);
  color: var(--water);
}

.access-grid p,
.access-warning {
  color: color-mix(in oklch, var(--white-soft) 78%, var(--water));
}

.access-warning {
  max-width: 840px;
  margin: 2rem 0 0 auto;
  padding-left: 1rem;
  border-left: 1px solid var(--rust);
}

.seo-panel {
  display: grid;
  justify-items: start;
  padding: clamp(5rem, 10vw, 8rem) clamp(1rem, 4vw, 3.5rem);
  background: var(--white-soft);
  border-bottom: 1px solid var(--line);
}

.seo-panel h2 {
  max-width: 980px;
}

.seo-panel p {
  max-width: 860px;
  font-size: clamp(1.05rem, 1.8vw, 1.24rem);
  color: var(--muted);
}

.footer {
  display: grid;
  grid-template-columns: minmax(220px, .35fr) minmax(0, .65fr);
  gap: clamp(2rem, 5vw, 5rem);
  padding: 2.5rem clamp(1rem, 4vw, 3.5rem);
  background: var(--ink);
  color: var(--white-soft);
}

.footer p {
  margin-bottom: 0;
  color: color-mix(in oklch, var(--white-soft) 72%, var(--paper));
}

.credits {
  font-size: .78rem;
}

@media (max-width: 920px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
  }

  .nav {
    justify-content: flex-end;
    flex-wrap: wrap;
  }

  .intro,
  .walk-section,
  .places-head,
  .feature,
  .place-stack,
  .place-stack .place:first-child,
  .gorge-row,
  .gorge,
  .access-grid,
  .footer {
    grid-template-columns: 1fr;
  }

  .places-head .kicker,
  .places-head h2,
  .places-head p:last-child {
    grid-column: auto;
  }

  .walk-data {
    border-left: 0;
    border-top: 1px solid color-mix(in oklch, var(--olive) 35%, var(--line));
  }

  .feature,
  .place-stack .place:first-child,
  .gorge {
    min-height: auto;
  }

  .place img {
    height: 320px;
  }
}

@media (max-width: 680px) {
  .site-header {
    display: block;
  }

  .brand {
    margin-bottom: 1rem;
  }

  .nav {
    justify-content: flex-start;
    gap: .55rem .9rem;
    font-size: .72rem;
  }

  .nav-cta {
    width: 100%;
    text-align: center;
  }

  .hero {
    min-height: 94vh;
    padding-top: 9.5rem;
    padding-bottom: 8rem;
  }

  h1 {
    font-size: clamp(2.52rem, 12.6vw, 3.92rem);
  }

  .hero-facts {
    left: 1rem;
    right: 1rem;
    grid-template-columns: 1fr;
  }

  .hero-facts div {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .hero-facts div:first-child {
    border-top: 0;
  }

  .button {
    width: 100%;
  }

  .place img {
    height: 250px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }
}
