:root {
  --paper: #f5efe2;
  --paper-2: #fffaf0;
  --cream: #eadfc8;
  --charcoal: #282622;
  --muted: #756c60;
  --tomato: #b94332;
  --tomato-dark: #8f3026;
  --basil: #3f6f4a;
  --paprika: #c46b3a;
  --line: rgba(40, 38, 34, 0.18);
  --shadow: 0 18px 50px rgba(40, 38, 34, 0.12);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--charcoal);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(245, 239, 226, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.nav {
  max-width: var(--max);
  margin: 0 auto;
  padding: 16px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0;
  font-size: 1.2rem;
}

.brand span {
  color: var(--tomato);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-family: Inter, Arial, sans-serif;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--charcoal);
}

.nav-cta {
  border: 1px solid var(--charcoal);
  padding: 9px 13px;
  border-radius: 999px;
}

.section {
  padding: 84px 22px;
}

.section.tight {
  padding-top: 46px;
}

.inner {
  max-width: var(--max);
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--tomato);
  font-family: Inter, Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.73rem;
  font-weight: 800;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 0.98;
  font-weight: 700;
}

h1 {
  font-size: clamp(3rem, 9vw, 7.7rem);
  max-width: 920px;
}

h2 {
  font-size: clamp(2.2rem, 5vw, 5rem);
  max-width: 900px;
}

h3 {
  font-size: clamp(1.35rem, 2.2vw, 2rem);
}

p {
  color: var(--muted);
  font-size: 1.08rem;
}

.lead {
  color: var(--charcoal);
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  max-width: 760px;
}

.hero {
  min-height: 760px;
  display: grid;
  align-items: stretch;
  background: var(--charcoal);
  color: var(--paper-2);
}

.hero-media {
  position: relative;
  min-height: 760px;
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 760px;
  object-fit: cover;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(40, 38, 34, 0.84), rgba(40, 38, 34, 0.42) 40%, rgba(40, 38, 34, 0.05) 72%);
}

.hero-content {
  position: absolute;
  inset: 0;
  max-width: var(--max);
  margin: 0 auto;
  padding: 86px 22px 72px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.hero p {
  color: rgba(255, 250, 240, 0.86);
}

.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  border-radius: 999px;
  border: 1px solid var(--charcoal);
  background: var(--charcoal);
  color: var(--paper-2);
  font-family: Inter, Arial, sans-serif;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  font-weight: 800;
}

.button.alt {
  background: transparent;
  color: var(--charcoal);
}

.hero .button {
  background: var(--paper-2);
  color: var(--charcoal);
  border-color: var(--paper-2);
}

.hero .button.alt {
  background: transparent;
  color: var(--paper-2);
}

.grid {
  display: grid;
  gap: 24px;
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.card-body {
  padding: 24px;
}

.card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.feature {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 42px;
  align-items: center;
}

.feature img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.band {
  background: var(--charcoal);
  color: var(--paper-2);
}

.band p {
  color: rgba(255, 250, 240, 0.76);
}

.cream {
  background: var(--cream);
}

.stat-row,
.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.pill {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  font-family: Inter, Arial, sans-serif;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.quote {
  border-left: 4px solid var(--tomato);
  padding-left: 22px;
  font-size: 1.45rem;
  color: var(--charcoal);
}

.kicker-list {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.kicker {
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.kicker strong {
  display: block;
  font-family: Inter, Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  margin-bottom: 6px;
}

.page-hero {
  padding: 112px 22px 72px;
  border-bottom: 1px solid var(--line);
}

.page-hero .inner {
  display: grid;
  gap: 20px;
}

.split-list {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 38px;
  padding: 30px 0;
  border-top: 1px solid var(--line);
}

.mini {
  color: var(--muted);
  font-family: Inter, Arial, sans-serif;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.newsletter-box {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: end;
  padding: 36px;
  border-radius: 8px;
  background: var(--paper-2);
  border: 1px solid var(--line);
}

form {
  display: grid;
  gap: 12px;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px;
  background: var(--paper);
  color: var(--charcoal);
  font: inherit;
}

textarea {
  min-height: 120px;
}

.site-footer {
  padding: 58px 22px;
  background: #1f1d1a;
  color: var(--paper-2);
}

.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.35fr repeat(4, 1fr);
  gap: 28px;
}

.site-footer a,
.site-footer p {
  color: rgba(255, 250, 240, 0.74);
  text-decoration: none;
}

.site-footer nav {
  display: grid;
  gap: 8px;
}

.legal-copy {
  max-width: 840px;
}

.legal-copy h2 {
  font-size: clamp(2rem, 4vw, 4.25rem);
}

.placeholder-note {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: var(--paper-2);
  color: var(--muted);
  font-family: Inter, Arial, sans-serif;
  font-size: 0.9rem;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
}

.skip-link:focus {
  left: 10px;
  z-index: 99;
  background: var(--paper-2);
  padding: 8px;
}

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

  .nav-links {
    flex-wrap: wrap;
  }

  .grid.two,
  .grid.three,
  .grid.four,
  .feature,
  .newsletter-box,
  .footer-grid,
  .split-list {
    grid-template-columns: 1fr;
  }

  .hero,
  .hero-media,
  .hero-media img {
    min-height: 700px;
  }

  .hero-media::after {
    background: linear-gradient(180deg, rgba(40, 38, 34, 0.84), rgba(40, 38, 34, 0.58), rgba(40, 38, 34, 0.18));
  }

  .hero-content {
    justify-content: flex-end;
  }
}

@media (max-width: 720px) {
  h1 {
    font-size: clamp(2.65rem, 15vw, 4.5rem);
  }

  h2 {
    font-size: clamp(2.05rem, 12vw, 3.35rem);
  }

  p {
    font-size: 1rem;
  }

  .hero,
  .hero-media,
  .hero-media img {
    min-height: 680px;
  }

  .hero-content {
    padding-top: 80px;
    padding-bottom: 54px;
  }

  .newsletter-box {
    padding: 24px;
  }

  .discovery-tile,
  .discovery-tile img {
    min-height: 300px;
  }
}

@media (max-width: 560px) {
  .section {
    padding: 58px 18px;
  }

  .page-hero {
    padding: 74px 18px 48px;
  }

  .nav {
    padding: 14px 18px;
  }

  .nav-links {
    gap: 10px;
    font-size: 0.7rem;
  }

  .card img {
    height: 220px;
  }

  .actions,
  .button {
    width: 100%;
  }

  .button {
    text-align: center;
  }
}

/* Creative Direction V2.1: coffee-table cookbook rhythm, tactile imagery, trust before transactions. */
:root {
  --vellum: #fbf6ea;
  --ink-soft: rgba(40, 38, 34, 0.72);
}

body {
  text-rendering: optimizeLegibility;
}

.section {
  padding-top: 112px;
  padding-bottom: 112px;
}

h1 {
  font-size: clamp(3.4rem, 10vw, 9.3rem);
  max-width: 1080px;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(2.45rem, 6vw, 6.2rem);
  letter-spacing: 0;
}

.lead {
  font-size: clamp(1.22rem, 2vw, 1.72rem);
}

.hero,
.hero-media,
.hero-media img {
  min-height: 880px;
}

.hero-content {
  padding-top: 116px;
  padding-bottom: 94px;
}

.chapter {
  display: grid;
  grid-template-columns: 0.62fr 1.38fr;
  gap: 52px;
  align-items: start;
}

.chapter-number {
  font-family: Inter, Arial, sans-serif;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--tomato);
  position: sticky;
  top: 96px;
}

.editorial-copy {
  max-width: 820px;
}

.editorial-copy p {
  font-size: clamp(1.18rem, 1.8vw, 1.48rem);
}

.image-run {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 22px;
  align-items: end;
}

.image-run img,
.wide-photo {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.image-run img:first-child {
  aspect-ratio: 16 / 10;
}

.image-run img:last-child {
  aspect-ratio: 4 / 5;
}

.caption {
  margin-top: 12px;
  max-width: 520px;
  color: var(--muted);
  font-family: Inter, Arial, sans-serif;
  font-size: 0.82rem;
  line-height: 1.45;
}

.quiet-link {
  font-family: Inter, Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.card {
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: rgba(185, 67, 50, 0.35);
}

.feature.loose {
  gap: 76px;
}

.vellum {
  background: var(--vellum);
}

.page-hero {
  padding-top: 128px;
  padding-bottom: 86px;
  background: linear-gradient(180deg, var(--paper), var(--vellum));
}

.page-hero .lead {
  max-width: 820px;
}

.section-note {
  max-width: 760px;
  margin-top: 18px;
  color: var(--ink-soft);
}

.editorial-panel {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 34px 0;
}

.discovery-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 18px;
  margin-top: 34px;
}

.discovery-tile {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--charcoal);
  color: var(--paper-2);
}

.discovery-tile img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  opacity: 0.78;
  transition: transform 360ms ease, opacity 360ms ease;
}

.discovery-tile:hover img {
  transform: scale(1.03);
  opacity: 0.88;
}

.discovery-tile div {
  position: absolute;
  inset: auto 0 0;
  padding: 24px;
  background: linear-gradient(180deg, rgba(40, 38, 34, 0), rgba(40, 38, 34, 0.78));
}

.discovery-tile p,
.discovery-tile h3,
.band h2,
.band h3 {
  color: var(--paper-2);
}

.card p:last-child {
  margin-bottom: 0;
}

.card .quiet-link {
  display: inline-block;
  margin-top: 8px;
}

.button,
.quiet-link,
.nav-links a {
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
  background: var(--tomato-dark);
  border-color: var(--tomato-dark);
}

.button.alt:hover {
  color: var(--tomato-dark);
  border-color: var(--tomato-dark);
  background: transparent;
}

@media (max-width: 900px) {
  .chapter,
  .image-run,
  .discovery-row {
    grid-template-columns: 1fr;
  }

  .chapter-number {
    position: static;
  }

  .hero,
  .hero-media,
  .hero-media img {
    min-height: 760px;
  }
}
