:root {
  --paper: #f1ece2;
  --paper-light: #faf7f0;
  --stone: #d7d0c4;
  --stone-deep: #aaa292;
  --ink: #252722;
  --ink-soft: #5e6258;
  --timber: #6c4631;
  --timber-deep: #2b211a;
  --timber-light: #a87955;
  --eucalypt: #526154;
  --eucalypt-light: #829080;
  --line: rgba(37, 39, 34, 0.18);
  --cream-line: rgba(250, 247, 240, 0.2);
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  min-width: 320px;
  margin: 0;
  background:
    linear-gradient(rgba(54, 45, 36, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 100% 12px;
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

button {
  font: inherit;
}

[hidden] {
  display: none !important;
}

.topbar,
main,
footer {
  width: min(1440px, 100%);
  margin-inline: auto;
}

.topbar {
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 16px clamp(24px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  background: rgba(241, 236, 226, 0.92);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 0.73rem;
  font-style: italic;
  letter-spacing: -0.07em;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.brand small,
.topbar > p {
  margin: 3px 0 0;
  color: var(--ink-soft);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.topbar > p {
  margin: 0;
}

.topbar > p span {
  margin-inline: 7px;
  color: var(--timber-light);
}

.hero {
  display: grid;
  min-height: 690px;
  grid-template-columns: minmax(0, 0.9fr) minmax(480px, 1.1fr);
  background: var(--paper-light);
}

.hero-copy {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  padding: clamp(64px, 8vw, 118px) clamp(30px, 6vw, 88px);
}

.hero-copy::before,
.arrival-copy::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 9px;
  content: "";
  background: repeating-linear-gradient(
    90deg,
    #4b2f22 0,
    #4b2f22 28px,
    #795039 28px,
    #795039 47px,
    #39271e 47px,
    #39271e 71px,
    #916547 71px,
    #916547 88px
  );
}

.eyebrow {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 13px;
  margin: 0 0 26px;
  color: var(--eucalypt);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::after {
  height: 1px;
  flex: 1;
  content: "";
  background: currentColor;
  opacity: 0.35;
}

.eyebrow span {
  color: var(--timber-light);
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 640px;
  margin: 0;
  font-size: clamp(3.5rem, 6.3vw, 6.75rem);
  line-height: 0.9;
  text-wrap: balance;
}

h1 em,
h2 em {
  color: var(--timber);
  font-weight: 400;
}

.hero-intro {
  max-width: 580px;
  margin: 34px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.5vw, 1.14rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 28px;
  margin-top: 42px;
}

.button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 16px 20px;
  border: 1px solid transparent;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

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

.button:focus-visible,
.text-link:focus-visible,
.copy-button:focus-visible,
footer a:focus-visible,
.brand:focus-visible {
  outline: 2px solid var(--timber-light);
  outline-offset: 4px;
}

.button-primary {
  min-width: min(330px, 100%);
  background: var(--ink);
  color: var(--paper-light);
}

.button-primary:hover {
  background: var(--timber);
}

.button-light {
  min-width: 210px;
  border-color: var(--cream-line);
  background: var(--paper-light);
  color: var(--ink);
}

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

.arrow {
  font-size: 1rem;
  font-weight: 400;
}

.text-link {
  padding-block: 8px;
  border-bottom: 1px solid var(--ink);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  min-height: 690px;
  margin: 0;
  overflow: hidden;
  background: var(--eucalypt);
}

.hero-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(17, 23, 18, 0.08), transparent 42%),
    linear-gradient(0deg, rgba(21, 26, 21, 0.35), transparent 45%);
}

.hero-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 57% center;
}

.hero-visual figcaption {
  position: absolute;
  z-index: 2;
  right: 26px;
  bottom: 22px;
  left: 26px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.directions {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  background: var(--stone);
}

.section-intro {
  padding: clamp(64px, 8vw, 112px) clamp(30px, 6vw, 88px);
}

.section-intro h2,
.arrival-copy h2 {
  margin: 0;
  font-size: clamp(2.7rem, 5vw, 5rem);
  line-height: 0.98;
}

.section-intro > p:last-child,
.arrival-copy > p {
  max-width: 440px;
  margin: 30px 0 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.7;
}

.route-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: clamp(62px, 8vw, 108px) clamp(28px, 6vw, 82px);
  background:
    linear-gradient(105deg, rgba(255, 255, 255, 0.025), transparent 65%),
    var(--timber-deep);
  color: var(--paper-light);
}

.route-card::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 13px;
  content: "";
  background: repeating-linear-gradient(
    90deg,
    #81563d 0,
    #81563d 3px,
    #5b3928 3px,
    #5b3928 6px
  );
}

.route-list {
  position: relative;
  display: grid;
  gap: 54px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.route-list::before {
  position: absolute;
  top: 56px;
  bottom: 56px;
  left: 24px;
  width: 1px;
  content: "";
  background: repeating-linear-gradient(
    to bottom,
    var(--timber-light) 0,
    var(--timber-light) 4px,
    transparent 4px,
    transparent 9px
  );
}

.route-stop {
  position: relative;
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 26px;
}

.route-number {
  position: relative;
  z-index: 1;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 1px solid rgba(250, 247, 240, 0.48);
  border-radius: 50%;
  background: var(--timber-deep);
  color: var(--paper-light);
  font-family: var(--serif);
  font-size: 0.85rem;
  font-style: italic;
}

.route-copy {
  padding-top: 2px;
}

.route-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 0 0 13px;
  color: var(--stone-deep);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.route-label span {
  color: var(--timber-light);
  font-weight: 600;
  letter-spacing: 0.08em;
}

address {
  color: var(--paper-light);
  font-family: var(--serif);
  font-size: clamp(1.42rem, 2.3vw, 2rem);
  font-style: normal;
  line-height: 1.25;
}

.copy-button {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  margin-top: 20px;
  padding: 0 0 6px;
  border: 0;
  border-bottom: 1px solid rgba(250, 247, 240, 0.35);
  background: transparent;
  color: var(--stone);
  cursor: pointer;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.copy-button:hover,
.copy-button[data-state="copied"] {
  border-color: var(--paper-light);
  color: var(--paper-light);
}

.route-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 58px;
  padding-top: 30px;
  border-top: 1px solid var(--cream-line);
}

.route-footer p {
  max-width: 300px;
  margin: 0;
  color: var(--stone);
  font-family: var(--serif);
  font-size: 1.02rem;
  font-style: italic;
  line-height: 1.5;
}

.route-footer p span {
  margin-right: 8px;
  color: var(--timber-light);
}

.arrival {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(350px, 0.75fr);
  background: var(--paper-light);
}

.arrival-image {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  background: var(--eucalypt);
}

.arrival-image::before {
  position: absolute;
  z-index: 1;
  inset: 24px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  content: "";
  pointer-events: none;
}

.arrival-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.arrival-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(64px, 8vw, 110px) clamp(30px, 6vw, 82px);
}

.arrival-note {
  display: grid;
  gap: 8px;
  margin-top: 42px;
  padding: 20px 0 20px 23px;
  border-left: 3px solid var(--timber-light);
}

.arrival-note span {
  color: var(--eucalypt);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.arrival-note strong {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 500;
}

.summary {
  padding: clamp(64px, 8vw, 108px) clamp(28px, 6vw, 82px);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.02), transparent 42%),
    var(--eucalypt);
  color: var(--paper-light);
}

.summary-kicker {
  margin: 0 0 34px;
  color: var(--stone);
  font-family: var(--serif);
  font-size: clamp(1.55rem, 3vw, 2.7rem);
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(250, 247, 240, 0.24);
}

.summary-grid > div {
  min-height: 190px;
  padding: 26px clamp(20px, 3vw, 38px) 10px 0;
  border-right: 1px solid rgba(250, 247, 240, 0.24);
}

.summary-grid > div + div {
  padding-left: clamp(20px, 3vw, 38px);
}

.summary-grid > div:last-child {
  border-right: 0;
}

.summary-grid span {
  display: block;
  margin-bottom: 55px;
  color: #c5b59e;
  font-family: var(--serif);
  font-size: 0.84rem;
  font-style: italic;
}

.summary-grid p {
  max-width: 280px;
  margin: 0;
  font-size: 0.93rem;
  line-height: 1.55;
}

footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  padding: 30px clamp(24px, 5vw, 72px);
  background: var(--timber-deep);
  color: var(--stone);
}

.footer-brand {
  color: var(--paper-light);
}

.footer-brand .brand-mark {
  border-color: var(--paper-light);
}

footer p,
footer > a:last-child {
  margin: 0;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

footer > a:last-child {
  justify-self: end;
}

.copy-status {
  position: fixed;
  z-index: 5;
  right: 22px;
  bottom: 22px;
  margin: 0;
  padding: 12px 16px;
  background: var(--paper-light);
  box-shadow: 0 10px 36px rgba(34, 27, 22, 0.2);
  color: var(--ink);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  opacity: 0;
  pointer-events: none;
  text-transform: uppercase;
  transform: translateY(8px);
  transition:
    opacity 150ms ease,
    transform 150ms ease;
}

.copy-status:not(:empty) {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1020px) {
  .hero {
    min-height: auto;
    grid-template-columns: 1fr 0.9fr;
  }

  .hero-visual {
    min-height: 620px;
  }

  .directions {
    grid-template-columns: 0.75fr 1.25fr;
  }

  .route-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .button-light {
    width: 100%;
  }

  .arrival {
    grid-template-columns: 1fr 0.75fr;
  }
}

@media (max-width: 760px) {
  .topbar {
    min-height: 76px;
  }

  .topbar > p {
    display: none;
  }

  .hero,
  .directions,
  .arrival {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    min-height: 600px;
  }

  .hero-visual {
    min-height: 440px;
  }

  .hero-visual img {
    object-position: 50% center;
  }

  .section-intro {
    padding-bottom: 72px;
  }

  .route-card {
    padding-block: 72px;
  }

  .arrival-image {
    min-height: 430px;
  }

  .arrival-copy {
    min-height: 560px;
  }

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

  .summary-grid > div,
  .summary-grid > div + div {
    display: grid;
    min-height: auto;
    grid-template-columns: 44px 1fr;
    gap: 20px;
    padding: 26px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(250, 247, 240, 0.24);
  }

  .summary-grid > div:last-child {
    border-bottom: 0;
  }

  .summary-grid span {
    margin: 0;
  }

  footer {
    grid-template-columns: 1fr auto;
  }

  footer p {
    display: none;
  }
}

@media (max-width: 520px) {
  .topbar {
    padding-inline: 20px;
  }

  .hero-copy {
    min-height: 560px;
    padding-inline: 24px;
  }

  h1 {
    font-size: clamp(3.35rem, 17vw, 5rem);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .text-link {
    align-self: flex-start;
  }

  .hero-visual {
    min-height: 340px;
  }

  .section-intro,
  .route-card,
  .arrival-copy,
  .summary {
    padding-inline: 24px;
  }

  .route-stop {
    gap: 18px;
  }

  .route-label {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .route-footer p {
    font-size: 0.95rem;
  }

  .arrival-image {
    min-height: 300px;
  }

  footer {
    padding-inline: 20px;
  }

  .footer-brand .brand-mark {
    display: none;
  }
}

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