:root {
  --ink: #10251e;
  --ink-soft: #527064;
  --paper: #f7f7f2;
  --panel: #ffffff;
  --line: #d8ded8;
  --accent: #d4663b;
  --accent-dark: #a84425;
  --max: 1120px;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-synthesis: none;
}

* { box-sizing: border-box; }
html { min-height: 100%; background: var(--paper); }
body { min-width: 320px; min-height: 100vh; margin: 0; }
a { color: inherit; text-decoration: none; }

.skip-link { position: fixed; z-index: 2; top: 12px; left: 12px; padding: 10px 14px; transform: translateY(-160%); background: var(--ink); color: var(--paper); font-weight: 700; }
.skip-link:focus { transform: translateY(0); }

.site-header, main, .site-footer { width: min(var(--max), calc(100% - 40px)); margin: auto; }
.site-header { height: 76px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); }
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: Georgia, "Times New Roman", serif; font-size: 18px; font-weight: 700; letter-spacing: -.02em; }
.brand-mark { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 8px; background: var(--ink); color: var(--paper); font: 700 16px/1 ui-sans-serif, system-ui, sans-serif; }
.header-link { color: var(--ink-soft); font-size: 14px; font-weight: 650; }
.header-link:hover, .header-link:focus-visible { color: var(--accent-dark); }

main { padding: clamp(72px, 13vw, 164px) 0 96px; }
.intro { max-width: 760px; }
.eyebrow, .destination-kicker, .destination-meta { margin: 0; color: var(--accent-dark); font-size: 11px; font-weight: 800; letter-spacing: .15em; }
h1, h2 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-weight: 700; letter-spacing: -.055em; }
h1 { margin-top: 17px; font-size: clamp(52px, 7vw, 86px); line-height: .98; }
.intro-copy { max-width: 510px; margin: 28px 0 0; color: var(--ink-soft); font-size: 18px; line-height: 1.72; }

.destinations { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; margin-top: clamp(62px, 10vw, 116px); }
.destination { position: relative; min-height: 310px; display: flex; flex-direction: column; justify-content: space-between; padding: 27px 28px; border: 1px solid var(--line); border-radius: 14px; background: var(--panel); }
.destination--featured { border-color: var(--ink); background: var(--ink); color: var(--paper); transition: transform .18s ease, box-shadow .18s ease; }
.destination--featured:hover, .destination--featured:focus-visible { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(16, 37, 30, .16); }
.destination--featured .destination-meta, .destination--featured .destination-kicker { color: #dfead1; }
.destination-meta { display: flex; justify-content: space-between; gap: 18px; font-size: 10px; }
.destination h2 { margin: 10px 0 12px; font-size: clamp(36px, 4vw, 50px); line-height: 1; }
.destination p:not(.destination-kicker):not(.destination-meta) { max-width: 365px; margin: 0; color: var(--ink-soft); font-size: 16px; line-height: 1.65; }
.destination--featured p:not(.destination-kicker):not(.destination-meta) { color: #cad7ce; }
.destination-arrow { position: absolute; right: 28px; bottom: 26px; color: #dfead1; font-size: 30px; transition: transform .18s ease; }
.destination--featured:hover .destination-arrow, .destination--featured:focus-visible .destination-arrow { transform: translate(4px, -4px); }
.destination--quiet { background: #eef2ee; }

.site-footer { display: flex; justify-content: space-between; gap: 18px; padding: 25px 0 34px; border-top: 1px solid var(--line); color: var(--ink-soft); font-size: 11px; font-weight: 700; letter-spacing: .1em; }

@media (max-width: 680px) {
  .site-header, main, .site-footer { width: min(100% - 32px, var(--max)); }
  .site-header { height: 68px; }
  main { padding-top: 72px; }
  h1 { font-size: clamp(48px, 14vw, 68px); }
  .intro-copy { font-size: 16px; }
  .destinations { grid-template-columns: 1fr; margin-top: 58px; }
  .destination { min-height: 270px; padding: 24px; }
  .site-footer { font-size: 10px; }
}
