:root {
  --paper: #f7f4ee;
  --white: #fffdfa;
  --ink: #272421;
  --muted: #6d6660;
  --line: #ded7cf;
  --olive: #56614e;
  --rose: #9b6e66;
  --charcoal: #34312d;
  --shadow: 0 20px 60px rgba(39, 36, 33, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Montserrat", Arial, sans-serif;
  line-height: 1.65;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1rem clamp(1.25rem, 4vw, 4rem);
  background: rgba(247, 244, 238, 0.9);
  border-bottom: 1px solid rgba(39, 36, 33, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 600;
  text-decoration: none;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 2vw, 1.6rem);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav a {
  text-decoration: none;
  color: var(--muted);
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--ink);
}

.hero,
.latest,
.archive,
.about,
.themes,
.subscribe {
  padding: clamp(4rem, 8vw, 7rem) clamp(1.25rem, 5vw, 5rem);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(18rem, 1.05fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: end;
  min-height: calc(100vh - 70px);
  padding-top: clamp(3rem, 6vw, 5rem);
}

.hero-copy {
  max-width: 42rem;
  padding-bottom: clamp(1rem, 4vw, 4rem);
}

.eyebrow,
.section-kicker {
  margin: 0 0 1rem;
  color: var(--rose);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: 1.05;
}

h1 {
  max-width: 8.5ch;
  font-size: clamp(4rem, 9vw, 7.4rem);
}

h2 {
  font-size: clamp(2.4rem, 6vw, 5rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
}

.dek,
.subtitle {
  margin: 1.2rem 0 0;
  color: var(--charcoal);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.55rem, 3vw, 2.3rem);
  line-height: 1.18;
}

.hero-image,
.latest-image,
.about-image {
  margin: 0;
  overflow: hidden;
  background: var(--line);
}

.hero-image {
  aspect-ratio: 4 / 5;
  max-height: 78vh;
}

.hero-image img,
.latest-image img,
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image img {
  object-position: center center;
}

.latest {
  background: var(--white);
}

.latest-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(18rem, 0.78fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.latest-copy {
  max-width: 48rem;
}

.latest-copy p:not(.subtitle) {
  max-width: 42rem;
  margin: 1.6rem 0 0;
  color: var(--muted);
  font-size: 1rem;
}

.latest-image {
  aspect-ratio: 5 / 4;
  box-shadow: var(--shadow);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  margin-top: 2rem;
  padding: 0.85rem 1.2rem;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.button:hover,
.button:focus-visible {
  background: var(--olive);
  border-color: var(--olive);
}

.button-light {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.article {
  padding: clamp(4rem, 8vw, 7rem) clamp(1.25rem, 5vw, 5rem);
}

.article-heading,
.article-body {
  max-width: 48rem;
  margin: 0 auto;
}

.article-heading {
  padding-bottom: clamp(2rem, 5vw, 4rem);
}

.article-body {
  color: #37322e;
  font-size: clamp(1.02rem, 1.4vw, 1.16rem);
}

.article-body p {
  margin: 0 0 1.2rem;
}

.article-body .article-pause {
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.55rem, 3vw, 2.45rem);
  line-height: 1.08;
}

.article-image {
  margin: clamp(2rem, 5vw, 3.5rem) 0;
}

.article-image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.archive {
  background: #ece7df;
}

.archive > div:first-child {
  max-width: 52rem;
  margin-bottom: 2.5rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.story-card {
  min-height: 20rem;
  padding: 1.25rem;
  border: 1px solid rgba(39, 36, 33, 0.12);
  background: var(--white);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.story-card:hover,
.story-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.story-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  margin-bottom: 1.25rem;
  object-fit: cover;
}

.story-card span {
  display: block;
  margin-bottom: 0.7rem;
  color: var(--rose);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.story-card p {
  margin: 0.9rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.featured-card {
  grid-column: span 2;
}

.about {
  display: grid;
  grid-template-columns: minmax(16rem, 0.8fr) minmax(0, 1fr);
  gap: clamp(2rem, 7vw, 6rem);
  align-items: center;
  background: var(--white);
}

.about-image {
  aspect-ratio: 4 / 3;
}

.about-copy {
  max-width: 44rem;
}

.about-copy p:not(.section-kicker) {
  margin: 1.4rem 0 0;
  color: var(--muted);
  font-size: 1rem;
}

.themes {
  background: var(--paper);
}

.themes > h2 {
  max-width: 55rem;
}

.theme-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}

.theme-grid div {
  padding: 1.25rem 0 0;
  border-top: 1px solid var(--line);
}

.theme-grid h3 {
  font-size: 1.55rem;
}

.theme-grid p {
  margin: 0.8rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.subscribe {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  background: var(--olive);
  color: var(--white);
}

.subscribe p {
  max-width: 38rem;
  margin: 1rem 0 0;
  color: rgba(255, 253, 250, 0.78);
}

.subscribe .section-kicker {
  color: rgba(255, 253, 250, 0.72);
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.5rem clamp(1.25rem, 5vw, 5rem);
  background: var(--charcoal);
  color: rgba(255, 253, 250, 0.74);
  font-size: 0.78rem;
}

.footer p {
  max-width: 48rem;
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 1rem;
  font-weight: 600;
}

.footer-links a {
  text-decoration: none;
}

@media (max-width: 920px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    flex-wrap: wrap;
  }

  .hero,
  .latest-grid,
  .about {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy {
    padding-bottom: 0;
  }

  .hero-image {
    max-height: none;
    aspect-ratio: 16 / 11;
  }

  .cards,
  .theme-grid {
    grid-template-columns: 1fr 1fr;
  }

  .featured-card {
    grid-column: span 2;
  }

  .subscribe,
  .footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .hero,
  .latest,
  .archive,
  .about,
  .themes,
  .subscribe,
  .article {
    padding-left: 1.1rem;
    padding-right: 1.1rem;
  }

  .brand {
    font-size: 1.55rem;
  }

  .nav {
    gap: 0.7rem 1rem;
    font-size: 0.7rem;
  }

  h1 {
    font-size: clamp(3.8rem, 18vw, 5rem);
  }

  .dek,
  .subtitle {
    font-size: 1.5rem;
  }

  .cards,
  .theme-grid {
    grid-template-columns: 1fr;
  }

  .featured-card {
    grid-column: auto;
  }

  .story-card {
    min-height: auto;
  }
}
