:root {
  --ink: #17231d;
  --paper: #f7f2e8;
  --sun: #f2a93b;
  --forest: #294d3a;
  --cream: #fffaf0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "Noto Sans SC", "Microsoft YaHei", sans-serif;
  line-height: 1.7;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  object-fit: cover;
}

.hero {
  min-height: 88vh;
  color: white;
  background: linear-gradient(90deg, rgba(12, 29, 22, .75), rgba(12, 29, 22, .12)),
    url("https://images.unsplash.com/photo-1517483000871-1dbf64a6e1c6?auto=format&fit=crop&w=2200&q=90") center/cover;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1180px;
  margin: auto;
  padding: 28px 24px;
}

.brand {
  font-family: Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: .05em;
}

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a:hover {
  color: #ffd48e;
}

.hero-content {
  max-width: 1180px;
  margin: auto;
  padding: 13vh 24px 80px;
}

.hero-content h1 {
  max-width: 760px;
  margin: 8px 0 20px;
  font-family: Georgia, "Noto Serif SC", serif;
  font-size: clamp(3rem, 8vw, 6.8rem);
  line-height: 1.03;
}

.hero-content > p:not(.eyebrow) {
  max-width: 620px;
  font-size: 1.1rem;
}

.eyebrow {
  margin: 0;
  color: var(--sun);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.button {
  display: inline-block;
  margin-top: 24px;
  padding: 12px 22px;
  color: var(--ink);
  background: var(--sun);
  border-radius: 999px;
  font-weight: 700;
}

.section {
  max-width: 1180px;
  margin: auto;
  padding: 100px 24px;
}

.muted {
  max-width: none;
  padding-right: max(24px, calc((100vw - 1132px) / 2));
  padding-left: max(24px, calc((100vw - 1132px) / 2));
  background: #e9e3d5;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 42px;
}

.section h2 {
  margin: 8px 0 14px;
  font-family: Georgia, "Noto Serif SC", serif;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.15;
}

.feature-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 22px;
}

.feature-grid img {
  min-height: 500px;
  border-radius: 22px;
}

.story-card {
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 34px;
  color: white;
  background: var(--forest);
  border-radius: 22px;
}

.story-card span {
  color: var(--sun);
  font-size: 2rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.place-card {
  overflow: hidden;
  background: var(--cream);
  border-radius: 18px;
}

.place-card img {
  height: 300px;
}

.place-card div {
  padding: 22px;
}

.place-card h3,
.story-card h3 {
  margin: 0 0 8px;
  font-size: 1.45rem;
}

.place-card p,
.story-card p {
  margin: 0;
}

.landscape-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

figure {
  margin: 0;
}

figure img {
  height: 470px;
  border-radius: 22px;
}

figcaption {
  padding: 12px 4px;
  font-weight: 700;
}

.film-section {
  color: white;
  background: var(--ink);
  max-width: none;
  padding-right: max(24px, calc((100vw - 1132px) / 2));
  padding-left: max(24px, calc((100vw - 1132px) / 2));
}

.video-frame {
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 22px;
}

.video-frame video {
  width: 100%;
  height: 100%;
  background: #07100c;
  object-fit: cover;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 40px max(24px, calc((100vw - 1132px) / 2));
  color: white;
  background: #0d1712;
}

footer p {
  margin: 0;
}

@media (max-width: 760px) {
  .nav {
    align-items: flex-start;
  }

  .nav-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 18px;
    text-align: right;
  }

  .feature-grid,
  .card-grid,
  .landscape-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid img,
  figure img {
    min-height: 320px;
    height: 320px;
  }

  footer {
    flex-direction: column;
  }
}
