:root {
  color-scheme: light;
  --paper: #f4f2ed;
  --ink: #222d29;
  --muted: #64716a;
  --line: #d6dcd3;
  --accent: #486648;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-synthesis: none;
}

* { box-sizing: border-box; }
body { margin: 0; }
a { color: inherit; text-decoration: none; }
a:focus-visible { outline: 3px solid var(--accent); outline-offset: 6px; }
.page { width: min(1040px, calc(100% - 112px)); margin: 0 auto; }
header { height: 128px; display: flex; align-items: center; justify-content: space-between; }
.wordmark { font-size: 33px; font-weight: 700; letter-spacing: -3px; }
.wordmark span { color: var(--accent); }
.site-label, .eyebrow, .section-label, .index, footer { font-family: "Courier New", monospace; }
.site-label { font-size: 11px; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }
main { padding-top: 74px; }
.eyebrow { display: flex; align-items: center; gap: 10px; font-size: 12px; letter-spacing: .04em; margin: 0 0 30px; }
.dot { width: 7px; height: 7px; background: var(--accent); border-radius: 50%; }
h1 { font-size: clamp(70px, 9.4vw, 118px); line-height: .98; letter-spacing: -.075em; font-weight: 500; margin: 0; }
h1 span { color: var(--accent); }
.description { margin: 34px 0 0; font-size: clamp(18px, 2.2vw, 23px); line-height: 1.5; letter-spacing: -.025em; color: var(--muted); }
.explore { margin-top: 90px; }
.section-label { display: flex; justify-content: space-between; align-items: center; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; font-size: 10px; padding-bottom: 19px; }
h2 { font: inherit; margin: 0; }
.destination { border-top: 1px solid var(--line); display: flex; align-items: center; min-height: 113px; gap: 34px; transition: background-color .15s ease; }
.destination:last-child { border-bottom: 1px solid var(--line); }
.destination:hover { background: #e9ece3; }
.index { color: var(--muted); font-size: 11px; padding-left: 3px; }
.destination-copy { display: grid; gap: 9px; }
.destination-title { display: flex; align-items: center; gap: 12px; font-size: 21px; letter-spacing: -.035em; }
.destination-description { font-size: 14px; color: var(--muted); line-height: 1.4; }
.badge { border: 1px solid #bec9b8; border-radius: 20px; padding: 3px 7px; color: var(--accent); font-size: 9px; letter-spacing: .04em; text-transform: uppercase; }
.arrow { font-size: 25px; margin-left: auto; padding-right: 5px; }
footer { display: flex; justify-content: space-between; gap: 16px; font-size: 10px; color: var(--muted); padding: 45px 0 38px; }

@media (max-width: 600px) {
  .page { width: calc(100% - 40px); }
  header { height: 94px; }
  .site-label { font-size: 9px; }
  main { padding-top: 53px; }
  h1 { font-size: clamp(60px, 16vw, 92px); }
  .eyebrow { margin-bottom: 26px; font-size: 11px; }
  .description { margin-top: 27px; max-width: 330px; }
  .desktop-break { display: none; }
  .explore { margin-top: 63px; }
  .destination { gap: 19px; min-height: 114px; }
  .destination-title { font-size: 19px; }
  .destination-description { font-size: 12px; }
  footer { font-size: 9px; padding-top: 32px; line-height: 1.5; }
  footer span:last-child { text-align: right; }
}

@media (prefers-reduced-motion: reduce) {
  .destination { transition: none; }
}
