:root {
  color-scheme: light;
  --ink: #142126;
  --muted: #607078;
  --paper: #f7f5ef;
  --panel: #ffffff;
  --teal: #0c5961;
  --green: #49613f;
  --rust: #a35d36;
  --line: rgba(20, 33, 38, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1rem, 4vw, 3rem);
  background: rgba(247, 245, 239, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

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

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.85rem;
  color: var(--muted);
  font-size: 0.94rem;
}

nav a {
  text-decoration: none;
}

nav a:hover {
  color: var(--teal);
}

.hero {
  position: relative;
  min-height: min(78vh, 760px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #142126;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 16, 20, 0.78), rgba(5, 16, 20, 0.24) 58%, rgba(5, 16, 20, 0.08)),
    linear-gradient(0deg, rgba(5, 16, 20, 0.7), rgba(5, 16, 20, 0.08) 48%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  padding: clamp(5rem, 14vh, 8rem) clamp(1.25rem, 6vw, 4rem);
  color: #ffffff;
}

.kicker,
.section-label {
  margin: 0 0 0.9rem;
  color: var(--rust);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .kicker {
  color: #f5c08f;
}

h1,
h2 {
  margin: 0;
  line-height: 1.05;
}

h1 {
  max-width: 760px;
  font-size: clamp(3rem, 8vw, 6.8rem);
}

.hero-content p:last-child {
  max-width: 720px;
  margin: 1.2rem 0 0;
  font-size: clamp(1.1rem, 2.2vw, 1.45rem);
}

.intro,
.destination-grid,
.feature-article,
footer {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  padding: clamp(3.2rem, 8vw, 6rem) 0;
  border-bottom: 1px solid var(--line);
}

.intro h2,
.feature-article h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.intro p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 1.12rem;
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  padding: 0 0 clamp(3.2rem, 8vw, 6rem);
}

.destination-grid article {
  min-height: 280px;
  padding: 1.25rem;
  background: var(--panel);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}

.destination-grid span {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
}

.destination-grid h2 {
  margin-top: auto;
  font-size: 1.28rem;
}

.destination-grid p {
  margin: 0.75rem 0 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.feature-article {
  padding: clamp(3rem, 8vw, 5.5rem) 0;
  border-top: 1px solid var(--line);
}

.feature-article h2 {
  max-width: 780px;
  margin-bottom: 1.5rem;
}

.feature-article p:not(.section-label) {
  max-width: 760px;
  color: #324147;
  font-size: 1.08rem;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem 0 3rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

footer p {
  margin: 0;
}

footer a {
  color: var(--teal);
  font-weight: 700;
  text-decoration: none;
}

@media (max-width: 920px) {
  .destination-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .destination-grid article:last-child {
    grid-column: span 2;
  }
}

@media (max-width: 720px) {
  .site-header,
  footer,
  .intro {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-header {
    position: static;
  }

  nav {
    justify-content: flex-start;
  }

  .intro {
    display: block;
  }

  .intro p:last-child {
    margin-top: 1rem;
  }

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

  .destination-grid article,
  .destination-grid article:last-child {
    min-height: 210px;
    grid-column: auto;
  }
}
