:root {
  --cream: #f5f0e5;
  --paper: #fbf8f1;
  --ink: #173c2b;
  --yellow: #f3c724;
  --yellow-bright: #ffd52d;
  --line: rgba(23, 60, 43, 0.2);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }

.nav {
  width: min(1380px, calc(100% - 64px));
  height: 90px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.brand { font-weight: 900; font-size: 1.15rem; letter-spacing: -0.06em; }
.brand-dot { color: #e0a900; }
.nav-links { display: flex; align-items: center; gap: 34px; font-size: .86rem; }
.nav-links a { transition: opacity .2s ease, transform .2s ease; }
.nav-links a:hover { opacity: .65; }
.nav-cta { border: 1px solid var(--ink); border-radius: 999px; padding: 11px 20px; }

.hero {
  width: min(1380px, calc(100% - 64px));
  min-height: calc(100vh - 90px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: clamp(32px, 5vw, 88px);
  padding: 64px 0 80px;
}
.hero-copy { position: relative; z-index: 2; }
.eyebrow, .section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 28px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow span { width: 8px; height: 8px; background: var(--yellow); border-radius: 50%; }
h1 {
  margin: 0;
  font-size: clamp(5rem, 10vw, 10.5rem);
  line-height: .76;
  letter-spacing: -.085em;
  font-weight: 800;
}
.hero-text {
  max-width: 440px;
  margin: 46px 0 36px;
  font-size: clamp(1.05rem, 1.35vw, 1.28rem);
  line-height: 1.55;
}
.hero-actions { display: flex; align-items: center; gap: 24px; }
.button {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  background: var(--ink);
  color: var(--paper);
  padding: 17px 21px 17px 24px;
  border-radius: 4px;
  font-size: .9rem;
  font-weight: 700;
  transition: transform .25s ease, background .25s ease;
}
.button:hover { transform: translateY(-3px); background: #0e2b1e; }
.button span { font-size: 1.15rem; }
.microcopy { max-width: 120px; font-size: .7rem; line-height: 1.45; opacity: .65; }
.hero-visual { position: relative; }
.image-frame {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: #eee5d6;
  border-radius: 58% 42% 48% 52% / 47% 54% 46% 53%;
}
.image-frame img, .story-image img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.stamp {
  position: absolute;
  right: -18px;
  bottom: 5%;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  display: grid;
  place-content: center;
  text-align: center;
  background: var(--yellow-bright);
  transform: rotate(8deg);
  box-shadow: 0 14px 40px rgba(96, 68, 0, .14);
}
.stamp span { font-size: 1.45rem; font-weight: 900; letter-spacing: -.05em; }
.stamp small { font-size: .65rem; letter-spacing: .18em; text-transform: uppercase; }

.manifesto {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(90px, 12vw, 180px) max(32px, calc((100vw - 1380px) / 2));
}
.manifesto .section-label { color: var(--yellow-bright); }
.manifesto-text {
  max-width: 1120px;
  margin: 0;
  font-size: clamp(2.7rem, 5.8vw, 6.7rem);
  line-height: .98;
  letter-spacing: -.06em;
}
.manifesto-text em { font-family: Georgia, serif; font-weight: 400; color: var(--yellow-bright); }

.qualities {
  width: min(1380px, calc(100% - 64px));
  margin: 0 auto;
  padding: 44px 0 140px;
}
.quality {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 42px 0;
  border-bottom: 1px solid var(--line);
}
.quality-number { font-size: .72rem; font-weight: 700; opacity: .55; padding-top: 8px; }
.quality div { display: grid; grid-template-columns: minmax(180px, .7fr) 1fr; gap: 44px; }
.quality h2 { margin: 0; font-size: clamp(1.8rem, 3vw, 3.2rem); letter-spacing: -.055em; }
.quality p { max-width: 500px; margin: 5px 0 0; line-height: 1.7; opacity: .7; }

.story { display: grid; grid-template-columns: 1fr 1fr; min-height: 720px; background: var(--paper); }
.story-image { position: relative; min-height: 540px; overflow: hidden; }
.story-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(52px, 8vw, 130px);
}
.story-copy h2 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(3rem, 5vw, 5.8rem);
  line-height: .98;
  letter-spacing: -.065em;
}
.story-copy > p:not(.section-label) { max-width: 500px; margin: 36px 0; line-height: 1.7; opacity: .72; }
.text-link { align-self: flex-start; padding-bottom: 6px; border-bottom: 1px solid; font-size: .85rem; font-weight: 700; }
footer {
  width: min(1380px, calc(100% - 64px));
  min-height: 130px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 24px;
  font-size: .75rem;
}
footer p { opacity: .65; }

@media (max-width: 820px) {
  .nav, .hero, .qualities, footer { width: min(100% - 36px, 1380px); }
  .nav { height: 72px; }
  .nav-links > a:first-child { display: none; }
  .nav-cta { padding: 9px 15px; }
  .hero { min-height: auto; grid-template-columns: 1fr; padding: 56px 0 80px; }
  h1 { font-size: clamp(4.7rem, 24vw, 8rem); }
  .hero-text { margin: 34px 0 28px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 14px; }
  .microcopy { max-width: none; }
  .hero-visual { margin-top: 18px; }
  .image-frame { border-radius: 46px; }
  .stamp { width: 86px; height: 86px; right: -5px; bottom: -24px; }
  .stamp span { font-size: 1.15rem; }
  .quality { grid-template-columns: 42px 1fr; }
  .quality div { grid-template-columns: 1fr; gap: 15px; }
  .qualities { padding-bottom: 90px; }
  .story { grid-template-columns: 1fr; }
  .story-image { min-height: 62vw; }
  .story-copy { padding: 72px 22px 86px; }
  footer { grid-template-columns: 1fr auto; padding: 32px 0; }
  footer p { grid-column: 1 / -1; grid-row: 2; margin: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
