:root {
  color-scheme: light;
  --ink: #17202b;
  --muted: #5e6976;
  --line: #dce3e8;
  --panel: #ffffff;
  --page: #f4f7f8;
  --accent: #006d77;
  --accent-dark: #084c52;
  --signal: #d97706;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background: var(--page);
}

a { color: inherit; }

.landing-header,
main,
footer {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.landing-header {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
}

.brand {
  font-size: 18px;
  font-weight: 800;
  text-decoration: none;
}

.preview-label,
.site-label,
.card-label,
.eyebrow {
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.preview-label {
  padding: 6px 10px;
  border: 1px solid color-mix(in srgb, var(--signal) 35%, var(--line));
  border-radius: 999px;
  color: #8a4b05;
  background: #fff7e6;
}

.site-label {
  color: var(--muted);
}

.intro {
  max-width: 760px;
  padding: 72px 0 40px;
}

.intro h1 {
  max-width: 680px;
  margin: 10px 0 18px;
  font-size: clamp(42px, 7vw, 72px);
  line-height: .98;
  letter-spacing: -.055em;
}

.intro > p:last-child {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 2.3vw, 22px);
  line-height: 1.55;
}

.destinations {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  padding-bottom: 56px;
}

.destination-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--panel);
  box-shadow: 0 18px 50px rgb(23 32 43 / 7%);
}

.destination-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  background: #e8eef0;
}

.destination-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 28px;
}

.destination-copy h2 {
  margin: 8px 0 12px;
  font-size: clamp(25px, 3vw, 34px);
  line-height: 1.08;
  letter-spacing: -.03em;
}

.destination-copy > p:not(.card-label) {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: auto;
  padding-top: 28px;
}

.button {
  padding: 11px 16px;
  border-radius: 9px;
  color: white;
  background: var(--accent);
  font-weight: 750;
  text-decoration: none;
}

.button:hover,
.button:focus-visible { background: var(--accent-dark); }

.text-link {
  color: var(--accent-dark);
  font-weight: 700;
  text-underline-offset: 4px;
}

footer {
  padding: 22px 0 40px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.not-found {
  min-height: calc(100vh - 150px);
  display: grid;
  align-content: center;
  padding-block: 72px;
}

.not-found .intro {
  padding: 0;
}

.not-found .actions {
  margin-top: 28px;
  padding-top: 0;
}

@media (max-width: 760px) {
  .destinations { grid-template-columns: 1fr; }
  .intro { padding-top: 52px; }
  .destination-card img { height: 210px; }
}

@media (prefers-color-scheme: dark) {
  :root {
    color-scheme: dark;
    --ink: #ecf2f3;
    --muted: #aab6bd;
    --line: #33434a;
    --panel: #162329;
    --page: #101a1f;
    --accent: #54c4c4;
    --accent-dark: #8cdddd;
  }

  .preview-label { color: #f7c46b; background: #39280f; }
}
