:root {
  --ink: #171512;
  --charcoal: #24201b;
  --deep: #0d0c0a;
  --bone: #f3e8d0;
  --paper: #e8d6b6;
  --sand: #bf8c56;
  --rust: #9e472c;
  --line: rgba(243, 232, 208, 0.22);
  --serif: "Rye", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--ink); color: var(--bone); font-family: var(--sans); font-size: 16px; line-height: 1.5; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input { font: inherit; }
button { cursor: pointer; }

.skip-link { position: fixed; z-index: 50; left: 1rem; top: -5rem; padding: .75rem 1rem; background: var(--bone); color: var(--deep); border-radius: 2px; }
.skip-link:focus { top: 1rem; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.utility-bar { background: var(--rust); color: #fff3db; text-align: center; padding: .55rem 1rem; font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.utility-bar p { margin: 0; }
.utility-bar span { padding: 0 .45rem; }
.site-header { min-height: 78px; padding: 1rem max(5vw, 1.25rem); display: flex; position: relative; z-index: 5; align-items: center; justify-content: space-between; background: var(--deep); border-bottom: 1px solid var(--line); }
.wordmark { display: inline-flex; align-items: center; gap: .55rem; text-decoration: none; font-family: var(--serif); font-size: 1.35rem; letter-spacing: .08em; line-height: .85; }
.wordmark-mark { color: var(--sand); font-family: Georgia, serif; font-size: 1.25rem; }
.wordmark small { display: block; margin-top: .4rem; font: 700 .46rem/1 var(--sans); letter-spacing: .25em; }
.menu-button { background: transparent; color: var(--bone); border: 1px solid var(--line); padding: .55rem .75rem; text-transform: uppercase; font-size: .68rem; font-weight: 700; letter-spacing: .1em; }
.main-navigation { display: none; position: absolute; top: 100%; left: 0; right: 0; padding: .75rem max(5vw, 1.25rem) 1.25rem; background: var(--deep); border-bottom: 1px solid var(--line); }
.main-navigation.is-open { display: grid; gap: .25rem; }
.main-navigation a { padding: .65rem .2rem; text-decoration: none; text-transform: uppercase; letter-spacing: .09em; font-weight: 700; font-size: .74rem; }
.main-navigation a:hover, .main-navigation a:focus-visible { color: var(--sand); }
.main-navigation .nav-cta { color: var(--deep); background: var(--bone); padding: .7rem 1rem; text-align: center; margin-top: .35rem; }

.hero { overflow: hidden; display: grid; background: var(--deep); }
.hero-copy { padding: clamp(4.5rem, 10vw, 8rem) max(5vw, 1.25rem) 4.5rem; position: relative; z-index: 1; }
.hero-copy::before { content: "✦"; color: var(--rust); font-size: 16rem; position: absolute; z-index: -1; left: 30%; top: 7%; opacity: .3; }
.eyebrow, .section-label { margin: 0 0 1rem; color: var(--sand); font-weight: 700; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: var(--serif); font-weight: 400; letter-spacing: .02em; line-height: .98; }
h1 { max-width: 9ch; margin-bottom: 1.5rem; font-size: clamp(3.35rem, 12vw, 8.5rem); }
h1 em, h2 em { color: var(--sand); font-style: normal; }
.hero-text { max-width: 29rem; margin-bottom: 2rem; color: #d5c7ad; font-size: 1.05rem; }
.button { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; gap: .75rem; padding: .75rem 1rem; text-decoration: none; border: 1px solid transparent; font-size: .78rem; font-weight: 700; letter-spacing: .075em; text-transform: uppercase; transition: transform .15s ease, background .15s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--sand); color: #140f0a; }
.button-primary:hover, .button-primary:focus-visible { background: #d9a06a; }
.button-outline { border-color: rgba(232, 214, 182, .65); color: var(--bone); }
.button-outline:hover, .button-outline:focus-visible { background: var(--bone); color: var(--deep); }
.hero-note { margin: 1.5rem 0 0; color: #b9a88c; font-size: .74rem; font-style: italic; }
.hero-image-wrap { min-height: 24rem; position: relative; border-top: 1px solid var(--line); }
.hero-image-wrap::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(13,12,10,.08), rgba(13,12,10,.35)); pointer-events: none; }
.hero-image-wrap img { width: 100%; height: 100%; min-height: 24rem; object-fit: cover; object-position: center; }
.image-caption { position: absolute; right: 1.25rem; bottom: 1rem; z-index: 1; margin: 0; font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }

.marquee { overflow: hidden; padding: .85rem 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--charcoal); color: var(--paper); white-space: nowrap; font-family: var(--serif); font-size: 1rem; letter-spacing: .07em; }
.marquee div { display: inline-block; padding-left: 1.5rem; animation: scroll 35s linear infinite; }
.marquee span { color: var(--rust); padding: 0 1.2rem; }
@keyframes scroll { to { transform: translateX(-50%); } }

.section { padding: 5rem max(5vw, 1.25rem); }
.section-label { display: flex; align-items: center; gap: .75rem; }
.section-label span { color: var(--bone); font-family: var(--serif); font-size: 1rem; }
.featured { background: #211d18; }
.featured-grid { display: grid; gap: 2rem; }
.image-frame { position: relative; background: #825334; overflow: hidden; }
.featured-image img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.product-badge { position: absolute; top: 1rem; left: 1rem; padding: .45rem .65rem; background: var(--bone); color: var(--deep); text-transform: uppercase; letter-spacing: .1em; font-size: .62rem; font-weight: 700; }
.product-details { max-width: 36rem; }
.product-details h2, .collection h2, .story h2, .details h2, .launch-note h2 { font-size: clamp(2.5rem, 8vw, 5.5rem); margin-bottom: 1.25rem; }
.price { display: flex; align-items: baseline; gap: .7rem; color: var(--bone); font: 2rem var(--serif); }
.price span { color: #af9f87; font: .67rem var(--sans); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.product-description { color: #d7c5a8; max-width: 35rem; }
.product-form { margin-top: 2rem; }
fieldset { padding: 0; border: 0; margin: 0 0 1.5rem; }
legend { margin-bottom: .75rem; color: var(--bone); font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.size-options { display: flex; flex-wrap: wrap; gap: .5rem; }
.size-options label { position: relative; }
.size-options input { position: absolute; opacity: 0; }
.size-options span { display: grid; place-items: center; width: 46px; height: 46px; border: 1px solid #72624d; color: #d7c5a8; font-weight: 700; }
.size-options input:checked + span { border-color: var(--sand); color: var(--deep); background: var(--sand); }
.size-options input:focus-visible + span { outline: 3px solid #fff; outline-offset: 2px; }
.purchase-options { display: grid; gap: .6rem; margin-bottom: 1rem; }
.fulfillment-option { display: flex; gap: .75rem; align-items: flex-start; min-height: 62px; padding: .75rem; border: 1px solid #594d3f; cursor: pointer; }
.fulfillment-option:has(input:checked) { border-color: var(--sand); background: rgba(191,140,86,.1); }
.fulfillment-option input { accent-color: var(--sand); margin-top: .18rem; }
.fulfillment-option strong, .fulfillment-option small { display: block; }
.fulfillment-option strong { font-size: .85rem; }
.fulfillment-option small { color: #b7a68e; font-size: .71rem; }
.purchase-row { display: grid; gap: .75rem; }
.purchase-button { border: 0; width: 100%; }
.quantity-label { display: flex; align-items: center; justify-content: space-between; color: #d7c5a8; font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.quantity-label input { width: 70px; min-height: 48px; padding: .5rem; color: var(--bone); background: transparent; border: 1px solid #72624d; }
.checkout-note, .form-message { color: #ad9b81; font-size: .73rem; }
.form-message { min-height: 1.1rem; color: var(--sand); }

.collection { background: var(--paper); color: var(--deep); }
.collection .section-label { color: var(--rust); }
.collection .section-label span { color: var(--rust); }
.section-heading-row { display: flex; flex-direction: column; gap: .25rem; }
.section-heading-row > p { max-width: 24rem; color: #69543b; font-size: .92rem; }
.collection h2 { margin-top: 2rem; }
.collection h2 em { color: var(--rust); }
.product-grid { display: grid; gap: 1.1rem; }
.product-card { display: flex; flex-direction: column; overflow: hidden; background: #d9c5a2; }
.card-image { overflow: hidden; background: #604531; }
.card-image img { width: 100%; height: 100%; min-height: 280px; object-fit: cover; transition: transform .4s ease; }
.product-card:hover .card-image img { transform: scale(1.035); }
.product-card-tall .card-image img { object-position: center; }
.card-content { display: flex; justify-content: space-between; gap: 1rem; padding: 1.1rem 1.1rem .5rem; }
.card-content h3 { margin-bottom: .15rem; font: 1.1rem var(--serif); line-height: 1.1; }
.card-content p { margin-bottom: 0; color: #69543b; font-size: .72rem; }
.card-price { color: var(--rust) !important; font-weight: 700; white-space: nowrap; }
.text-button { padding: .65rem 1.1rem 1.15rem; color: var(--deep); background: transparent; border: 0; text-align: left; font-size: .69rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.text-button:hover, .text-button:focus-visible { color: var(--rust); text-decoration: underline; }
.mockup-note { max-width: 43rem; margin: 2rem 0 0; color: #69543b; font-size: .78rem; }
.mockup-note span { color: var(--rust); padding-right: .25rem; }

.story { display: grid; gap: 3rem; background: var(--rust); color: #fff0d3; overflow: hidden; }
.story-stamp { width: min(75vw, 310px); aspect-ratio: 1; display: grid; place-content: center; flex-shrink: 0; align-self: center; border: 1px solid rgba(255,240,211,.65); border-radius: 50%; outline: 1px solid rgba(255,240,211,.65); outline-offset: 10px; text-align: center; font: clamp(2.5rem,9vw,4rem) var(--serif); line-height: .95; transform: rotate(-9deg); }
.story-stamp span { margin-top: .6rem; display: block; font: 700 .58rem var(--sans); letter-spacing: .2em; text-transform: uppercase; }
.story-stamp i { display: block; color: var(--sand); font-size: 1.4rem; font-style: normal; }
.story .section-label { color: #ffdfb7; }
.story .section-label span { color: #ffdfb7; }
.story h2 em { color: #f5bc80; }
.story-copy p { max-width: 36rem; color: #ffe6c5; }

.details { background: #dfc79e; color: var(--deep); }
.details .section-label { color: var(--rust); }
.details .section-label span { color: var(--rust); }
.details h2 em { color: var(--rust); }
.details-grid { display: grid; margin-top: 2.5rem; border-top: 1px solid #af8d60; }
.details-grid article { padding: 1.5rem 0; border-bottom: 1px solid #af8d60; }
.detail-icon { color: var(--rust); font-size: 2rem; line-height: 1; }
.details-grid h3 { margin: .75rem 0 .5rem; font: 1.35rem var(--serif); }
.details-grid p { max-width: 25rem; margin-bottom: 0; color: #664c31; font-size: .88rem; }

.launch-note { position: relative; overflow: hidden; padding: 5rem max(5vw, 1.25rem); background: var(--charcoal); text-align: center; }
.launch-note::before { content: "✦"; position: absolute; top: -6rem; left: 50%; color: rgba(191,140,86,.12); transform: translateX(-50%); font-size: 25rem; }
.launch-note > * { position: relative; }
.launch-note h2 { max-width: 13ch; margin: 0 auto 1.25rem; }
.launch-note p:not(.eyebrow) { max-width: 35rem; margin: 0 auto 1.75rem; color: #d5c7ad; }

.site-footer { padding: 3rem max(5vw, 1.25rem) 1.5rem; background: var(--deep); }
.footer-top { display: grid; gap: 1.5rem; padding-bottom: 2rem; border-bottom: 1px solid var(--line); }
.footer-top p { max-width: 28rem; margin: 0; color: #b9a88c; font-size: .78rem; }
.footer-top p + p { margin-top: .45rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: .5rem 1.25rem; padding: 1.5rem 0; border-bottom: 1px solid var(--line); }
.footer-links a { color: #d7c5a8; font-size: .69rem; letter-spacing: .06em; text-transform: uppercase; }
.footer-links a:hover, .footer-links a:focus-visible { color: var(--sand); }
.footer-bottom { display: flex; flex-direction: column; gap: .35rem; padding-top: 1.3rem; color: #8c7c67; font-size: .67rem; letter-spacing: .04em; }
.footer-bottom p { margin: 0; }

.placeholder-dialog { width: min(90vw, 450px); padding: 2.5rem; border: 1px solid var(--sand); background: var(--charcoal); color: var(--bone); box-shadow: 0 15px 60px rgba(0,0,0,.6); }
.placeholder-dialog::backdrop { background: rgba(0,0,0,.75); }
.placeholder-dialog h2 { font-size: 2.5rem; margin-bottom: 1rem; }
.dialog-close { position: absolute; top: .6rem; right: .8rem; color: var(--bone); border: 0; background: transparent; font-size: 2rem; }

:focus-visible { outline: 3px solid #fff; outline-offset: 3px; }
@media (min-width: 700px) {
  .utility-bar { font-size: .78rem; }
  .menu-button { display: none; }
  .main-navigation { display: flex; position: static; align-items: center; gap: 1.4rem; padding: 0; border: 0; background: transparent; }
  .main-navigation a { padding: .4rem 0; }
  .main-navigation .nav-cta { margin: 0; padding: .65rem .85rem; }
  .hero { grid-template-columns: 1fr 1fr; min-height: 660px; }
  .hero-copy { display: flex; flex-direction: column; justify-content: center; padding: 6rem clamp(2rem, 7vw, 8rem); }
  .hero-image-wrap { min-height: 100%; border: 0; }
  .hero-image-wrap img { min-height: 100%; }
  .section { padding: 7rem max(7vw, 2rem); }
  .featured-grid { grid-template-columns: minmax(280px, 1fr) minmax(290px, .9fr); align-items: center; gap: clamp(2rem, 7vw, 8rem); }
  .featured-image img { aspect-ratio: 4 / 5; }
  .purchase-row { grid-template-columns: 110px 1fr; align-items: end; }
  .quantity-label { display: grid; gap: .35rem; }
  .quantity-label input { width: 100%; }
  .section-heading-row { flex-direction: row; justify-content: space-between; align-items: flex-start; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .product-card-large .card-image { aspect-ratio: 3 / 2; }
  .product-card-tall .card-image { aspect-ratio: 3 / 4; }
  .card-image img { min-height: 100%; }
  .story { grid-template-columns: minmax(230px, .65fr) minmax(360px, 1fr); align-items: center; }
  .details-grid { grid-template-columns: repeat(3, 1fr); }
  .details-grid article { padding: 1.5rem 2rem 1.5rem 0; border-bottom: 0; }
  .details-grid article + article { padding-left: 2rem; border-left: 1px solid #af8d60; }
  .footer-top { grid-template-columns: 1fr 1fr; align-items: end; }
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}

@media (min-width: 1120px) {
  .site-header { padding-left: 7vw; padding-right: 7vw; }
  .product-grid { grid-template-columns: 1.12fr .88fr .88fr 1.12fr; }
  .product-card-large .card-image, .product-card-tall .card-image { aspect-ratio: auto; height: 430px; }
}

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