:root {
  --forest: #1c392f;
  --forest-deep: #102a22;
  --ivory: #f6f1e7;
  --paper: #fbf8f1;
  --burgundy: #59252f;
  --gold: #ae9466;
  --ink: #17251f;
  --line: rgba(28, 57, 47, 0.2);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ivory);
  color: var(--forest);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
a:focus-visible { outline: 2px solid var(--burgundy); outline-offset: 4px; }

.site-wrap { width: min(1280px, calc(100% - 96px)); margin: 0 auto; }
.site-header {
  width: min(1440px, calc(100% - 64px));
  margin: 0 auto;
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border-bottom: 1px solid var(--line);
}
.wordmark { display: block; line-height: 0; }
.wordmark-logo { display: block; width: 180px; height: auto; }
nav { display: flex; align-items: center; gap: 30px; font-size: 13px; letter-spacing: .07em; text-transform: uppercase; }
nav a { transition: color .2s ease; }
nav a:hover { color: var(--burgundy); }
.nav-cta { border-bottom: 1px solid currentColor; padding-bottom: 4px; }

.hero { min-height: 720px; padding-top: 84px; padding-bottom: 102px; display: grid; grid-template-columns: .88fr 1.12fr; gap: 9vw; align-items: center; }
.eyebrow { margin: 0 0 24px; font-size: 11px; line-height: 1.3; letter-spacing: .16em; text-transform: uppercase; font-weight: 700; }
.eyebrow span { color: var(--burgundy); padding: 0 5px; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: var(--serif); font-weight: 400; letter-spacing: -.045em; }
h1 { max-width: 610px; margin-bottom: 30px; font-size: clamp(4.3rem, 8vw, 8.1rem); line-height: .9; }
h1 em, h2 em { color: var(--burgundy); font-weight: 400; }
.hero-lead { max-width: 470px; margin-bottom: 18px; font: 400 22px/1.35 var(--serif); }
.hero-body { max-width: 420px; margin-bottom: 34px; color: rgba(28, 57, 47, .78); }
.hero-actions { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.button { display: inline-flex; align-items: center; gap: 26px; padding: 15px 19px 14px; background: var(--forest); color: var(--ivory); font-size: 12px; line-height: 1; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; transition: background .2s ease, transform .2s ease; }
.button:hover { background: var(--burgundy); transform: translateY(-2px); }
.button span { color: var(--gold); font-size: 18px; line-height: 0; }
.quiet-link { border-bottom: 1px solid var(--forest); padding-bottom: 4px; font: italic 17px/1 var(--serif); }

.hero-media { max-width: 660px; width: 100%; justify-self: end; }
.media-topline, .hero-image-frame figcaption { display: flex; justify-content: space-between; gap: 20px; font-size: 10px; letter-spacing: .14em; text-transform: uppercase; }
.media-topline { margin-bottom: 12px; color: var(--burgundy); }
.hero-image-frame { margin: 0; background: var(--forest); padding: 13px 13px 0; box-shadow: 16px 16px 0 var(--gold); }
.hero-image-frame img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; object-position: center; }
.hero-image-frame figcaption { padding: 13px 2px 14px; color: var(--ivory); }

.collection { padding-top: 124px; padding-bottom: 140px; }
.section-intro { display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: 60px; margin-bottom: 58px; }
h2 { margin-bottom: 0; font-size: clamp(3.2rem, 6vw, 6.8rem); line-height: .91; }
.section-note { max-width: 330px; margin: 0 0 8px; color: rgba(28, 57, 47, .78); }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 45px 24px; }
.product-card-featured { grid-column: span 2; }
.card-art { position: relative; min-height: 390px; overflow: hidden; display: flex; flex-direction: column; justify-content: space-between; padding: 22px; border: 1px solid var(--forest); }
.art-burgundy { background: var(--burgundy); color: var(--ivory); }
.art-ivory { background: var(--paper); color: var(--forest); }
.art-green { background: var(--forest); color: var(--ivory); }
.art-gold { background: var(--gold); color: var(--forest-deep); }
.art-cream { background: #dfd2bd; color: var(--burgundy); }
.art-index, .art-caption { position: relative; z-index: 1; font-size: 10px; letter-spacing: .13em; text-transform: uppercase; }
.art-caption { max-width: 180px; font-style: italic; letter-spacing: .03em; text-transform: none; }
.art-word { position: absolute; inset: 50% auto auto 50%; z-index: 1; width: 100%; transform: translate(-50%, -50%); text-align: center; font: 400 clamp(3rem, 6vw, 6.6rem)/.8 var(--serif); letter-spacing: -.08em; }
.product-info { padding-top: 16px; border-top: 1px solid var(--line); }
.product-info h3 { margin-bottom: 3px; font: 400 24px/1.15 var(--serif); letter-spacing: -.02em; }
.product-info p { margin: 0; color: rgba(28, 57, 47, .68); font-size: 14px; }

.story-band { display: grid; grid-template-columns: 1.15fr .85fr; min-height: 760px; background: var(--forest); color: var(--ivory); }
.story-media { position: relative; display: flex; align-items: center; justify-content: center; padding: 90px; background: var(--forest-deep); overflow: hidden; }
.story-media img { width: min(680px, 100%); border: 11px solid var(--ivory); box-shadow: 20px 20px 0 var(--burgundy); transform: rotate(-2deg); }
.story-copy { display: flex; flex-direction: column; justify-content: center; padding: 100px clamp(45px, 8vw, 130px) 100px 10%; }
.eyebrow-light { color: var(--gold); }
.story-copy h2 { margin-bottom: 36px; color: var(--ivory); }
.story-copy h2 em { color: var(--gold); }
.story-copy p { max-width: 420px; color: rgba(246, 241, 231, .78); }
blockquote { margin: 40px 0 0; padding-left: 20px; border-left: 1px solid var(--gold); color: var(--gold); font: italic 27px/1.2 var(--serif); }

.closing { padding-top: 136px; padding-bottom: 150px; }
.closing-content { display: grid; grid-template-columns: 1.2fr .8fr; gap: 60px; align-items: end; }
.closing-details { max-width: 420px; }
.closing-details > p { max-width: 350px; margin: 0 0 4px; color: rgba(28, 57, 47, .75); }
.signup-form { margin: 32px 0 28px; }
.signup-form label { display: block; margin-bottom: 12px; font: italic 21px/1.2 var(--serif); }
.signup-row { display: flex; align-items: stretch; gap: 10px; }
.signup-row input { min-width: 0; flex: 1; padding: 14px 15px; border: 1px solid var(--forest); border-radius: 0; background: transparent; color: var(--forest); font: 15px/1.2 var(--sans); }
.signup-row input::placeholder { color: rgba(28, 57, 47, .55); }
.signup-row input:focus-visible { outline: 2px solid var(--burgundy); outline-offset: 3px; }
.signup-row .button { border: 0; cursor: pointer; }
.button-dark { justify-self: start; margin-top: 0; background: var(--burgundy); }
.button-dark:hover { background: var(--forest-deep); }
.site-footer { padding: 34px 0 38px; background: var(--burgundy); color: var(--ivory); }
.footer-inner { display: flex; justify-content: space-between; align-items: center; gap: 24px; }
.wordmark-light { color: var(--ivory); }
.footer-inner p { margin: 0; color: rgba(246, 241, 231, .68); font-size: 12px; }

@media (max-width: 920px) {
  .site-wrap { width: min(100% - 44px, 660px); }
  .site-header { width: calc(100% - 44px); min-height: 78px; }
  nav { gap: 18px; font-size: 11px; }
  .hero { min-height: auto; grid-template-columns: 1fr; gap: 72px; padding-top: 70px; padding-bottom: 88px; }
  .hero-media { justify-self: stretch; max-width: none; }
  .section-intro, .closing-content { grid-template-columns: 1fr; gap: 28px; }
  .section-note { max-width: 500px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .product-card-featured { grid-column: span 2; }
  .story-band { grid-template-columns: 1fr; }
  .story-media { min-height: 540px; padding: 60px 44px; }
  .story-copy { padding: 80px 44px 90px; }
}

@media (max-width: 570px) {
  body { font-size: 15px; }
  .site-header { align-items: flex-start; padding: 20px 0; flex-direction: column; gap: 18px; }
  nav { width: 100%; justify-content: space-between; gap: 10px; font-size: 10px; }
  h1 { font-size: clamp(3.5rem, 18vw, 5.4rem); }
  h2 { font-size: clamp(3rem, 15vw, 4.5rem); }
  .hero { padding-top: 52px; }
  .hero-lead { font-size: 20px; }
  .hero-image-frame { box-shadow: 10px 10px 0 var(--gold); }
  .collection { padding-top: 90px; padding-bottom: 100px; }
  .product-grid { grid-template-columns: 1fr; gap: 35px; }
  .product-card-featured { grid-column: auto; }
  .card-art { min-height: 330px; }
  .story-media { min-height: 390px; padding: 42px 28px; }
  .story-media img { border-width: 7px; box-shadow: 12px 12px 0 var(--burgundy); }
  .story-copy { padding: 68px 28px 78px; }
  .closing { padding-top: 90px; padding-bottom: 100px; }
  .signup-row { flex-direction: column; }
  .signup-row .button { width: 100%; justify-content: center; }
  .footer-inner { align-items: flex-start; flex-direction: column; }
}

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