:root {
  --bg: #fbfaf7;
  --text: #111;
  --muted: #666;
  --accent: #8a7d63;
  --border: #e4e2dd;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Georgia, "Times New Roman", serif;
  background: var(--bg);
  color: var(--text);
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.narrow {
  max-width: 720px;
}

/* NAVBAR */
.navbar {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  padding: 24px 0;
}

.logo {
  letter-spacing: 2px;
}

nav a {
  margin-left: 20px;
  text-decoration: none;
  color: var(--text);
  font-size: 14px;
}

/* HERO */
.hero {
  padding: 140px 0 100px;
}

.eyebrow {
  letter-spacing: 2px;
  font-size: 12px;
  color: var(--accent);
}

.hero h1 {
  font-size: 52px;
  line-height: 1.15;
  margin: 20px 0;
}

.hero p {
  color: var(--muted);
  max-width: 520px;
  font-size: 18px;
  line-height: 1.7;
}

/* IMAGE BREAK */
.image-break img {
  width: 100%;
  height: 70vh;
  object-fit: cover;
}

/* STORY */
.story {
  padding: 120px 0;
}

.story h2 {
  font-size: 36px;
  margin-bottom: 30px;
}

.story p {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

/* EDITORIAL SECTION */
.editorial-section {
  padding: 120px 0;
}

.editorial-section.muted {
  background: #f0eee9;
}

.editorial-list div {
  margin-bottom: 30px;
}

.editorial-list strong {
  display: block;
  font-size: 20px;
}

.editorial-list span {
  color: var(--muted);
}

/* SPLIT */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-text {
  padding: 100px;
}

.split-text h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.split-text p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

/* PROCESS */
.process {
  padding: 120px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.process-flow {
  display: flex;
  justify-content: space-between;
  font-size: 18px;
}

/* CTA */
.cta {
  padding: 140px 0;
  text-align: center;
}

.cta h2 {
  font-size: 44px;
  margin-bottom: 30px;
}

.cta a {
  text-decoration: none;
  border: 1px solid var(--accent);
  padding: 14px 34px;
  color: var(--accent);
}

/* FOOTER */
.footer {
  padding: 50px 0;
  text-align: center;
  color: var(--muted);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .split {
    grid-template-columns: 1fr;
  }

  .split-text {
    padding: 60px 20px;
  }

  .process-flow {
    flex-direction: column;
    gap: 16px;
  }
}

@media (max-width: 600px) {
  nav {
    display: none;
  }

  .hero h1 {
    font-size: 36px;
  }

  .cta h2 {
    font-size: 32px;
  }

  .image-break img {
    height: 45vh;
  }
}
