:root {
  --ink: #24201d;
  --paper: #fbf7ef;
  --smoke: #313935;
  --sage: #7b8a68;
  --rust: #a94730;
  --straw: #e0bf72;
}

* {
  box-sizing: border-box;
}

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

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px clamp(18px, 5vw, 70px);
  border-bottom: 1px solid #e7dece;
  background: rgba(251, 247, 239, .88);
  backdrop-filter: blur(12px);
}

.brand,
nav a {
  color: inherit;
  text-decoration: none;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.brand span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--rust);
  border-radius: 50%;
  color: var(--rust);
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
}

nav {
  display: flex;
  gap: clamp(12px, 3vw, 34px);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

nav a {
  color: #696057;
}

nav a.active,
nav a:hover {
  color: var(--rust);
}

h1,
h2,
blockquote {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--rust);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.story-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 470px);
  gap: 42px;
  align-items: end;
  padding: 88px clamp(18px, 5vw, 70px) 68px;
  background:
    linear-gradient(135deg, rgba(224, 191, 114, .36), transparent 40%),
    var(--paper);
}

.story-hero h1 {
  max-width: 860px;
  font-size: clamp(48px, 8vw, 106px);
  line-height: .9;
}

.story-hero p:last-child {
  margin: 0;
  color: #5f5750;
  font-size: 20px;
  line-height: 1.65;
}

.split-story {
  display: grid;
  grid-template-columns: minmax(280px, 44vw) minmax(0, 1fr);
  min-height: 660px;
  background: var(--smoke);
  color: var(--paper);
}

.split-story img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-text {
  align-self: center;
  padding: 56px clamp(24px, 6vw, 86px);
}

.story-text h2 {
  max-width: 680px;
  font-size: clamp(40px, 5vw, 70px);
  line-height: .95;
}

.story-text p:not(.eyebrow) {
  max-width: 620px;
  color: #ded6cb;
  line-height: 1.7;
}

.values {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: #d8cdbd;
}

.values article {
  min-height: 250px;
  padding: 28px;
  background: var(--paper);
}

.values span {
  display: block;
  color: var(--rust);
  font-family: "Cormorant Garamond", serif;
  font-size: 31px;
  font-weight: 700;
}

.values p {
  color: #62584f;
  line-height: 1.6;
}

.chef-note {
  display: grid;
  gap: 18px;
  padding: 78px clamp(18px, 5vw, 70px);
  color: var(--paper);
  background: var(--sage);
}

blockquote {
  max-width: 920px;
  font-size: clamp(38px, 6vw, 82px);
  line-height: 1;
}

.chef-note p {
  margin: 0;
  font-weight: 700;
}

@media (max-width: 840px) {
  .site-header {
    align-items: flex-start;
  }

  nav {
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
  }

  .story-hero,
  .split-story,
  .values {
    grid-template-columns: 1fr;
  }

  .split-story img {
    min-height: 360px;
  }
}
