/* ==========================================================================
   WINK RETAILERS — STYLESHEET
   Palette : warm ink, claret signature, champagne rule, greige paper
   Display : Lora (self-hosted, variable)
   Body    : system grotesque stack
   ========================================================================== */

@font-face {
  font-family: "Lora";
  src: url("../fonts/Lora.woff2") format("woff2-variations"),
       url("../fonts/Lora.woff2") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink:        #17130F;
  --ink-soft:   #2A241E;
  --claret:     #6D1226;
  --claret-lift:#8A1830;
  --champagne:  #C0A274;
  --paper:      #F2F1EF;
  --white:      #FFFFFF;
  --ash:        #6E6862;
  --line:       #DFDBD5;
  --line-dark:  #3A332C;

  --display: "Lora", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --wrap: 1240px;
  --gutter: 24px;
  --ease: cubic-bezier(.2,.7,.3,1);
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 .6em;
}
h1 { font-size: clamp(2.1rem, 5.2vw, 3.8rem); }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.5rem); }
h3 { font-size: clamp(1.15rem, 1.8vw, 1.4rem); }
p  { margin: 0 0 1.1em; }

/* Micro-label used above headings. Encodes section role, not decoration. */
.eyebrow {
  font-family: var(--body);
  font-size: .69rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--claret);
  font-weight: 600;
  margin: 0 0 1rem;
  display: block;
}
.eyebrow--light { color: var(--champagne); }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: clamp(56px, 8vw, 104px) 0; }
.section--tight { padding: clamp(40px, 5vw, 64px) 0; }
.section--ink { background: var(--ink); color: var(--paper); }
.section--white { background: var(--white); }
.lede { font-size: 1.08rem; color: var(--ash); max-width: 62ch; }
.section--ink .lede { color: #C8C1B8; }
.center { text-align: center; }
.center .lede { margin-left: auto; margin-right: auto; }

/* ------------------------------- BUTTONS -------------------------------- */
.btn {
  display: inline-block;
  font-family: var(--body);
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 15px 34px;
  border: 1px solid var(--claret);
  background: var(--claret);
  color: var(--white);
  text-decoration: none;
  cursor: pointer;
  transition: background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
}
.btn:hover { background: var(--claret-lift); border-color: var(--claret-lift); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.btn--onink { background: transparent; color: var(--paper); border-color: var(--champagne); }
.btn--onink:hover { background: var(--champagne); color: var(--ink); }
.btn--block { display: block; width: 100%; text-align: center; }
.btn[disabled] { opacity: .45; cursor: not-allowed; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }

/* ------------------------------- HEADER --------------------------------- */
.topbar {
  background: var(--ink);
  color: #BFB6AA;
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-align: center;
  padding: 9px 16px;
  border-bottom: 1px solid var(--line-dark);
}
.topbar strong { color: var(--champagne); font-weight: 600; }

.site-header {
  position: sticky; top: 0; z-index: 60;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; min-height: 76px;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; flex-shrink: 0; }
.brand img { height: 38px; width: auto; }
.brand-mark {
  font-family: var(--display);
  font-size: 1.42rem; font-weight: 600; letter-spacing: .02em; line-height: 1;
  color: var(--ink);
}
.brand-mark span { color: var(--claret); }
.brand-sub {
  display: block; font-family: var(--body); font-size: .55rem;
  letter-spacing: .3em; text-transform: uppercase; color: var(--ash);
  margin-top: 4px; font-weight: 600;
}

.nav { display: flex; align-items: center; gap: 30px; }
.nav a {
  font-size: .79rem; letter-spacing: .13em; text-transform: uppercase;
  font-weight: 600; text-decoration: none; color: var(--ink-soft);
  padding: 6px 0; position: relative;
  transition: color .3s var(--ease);
}
.nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--claret);
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease);
}
.nav a:hover { color: var(--claret); }
.nav a:hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); }
.nav a[aria-current="page"] { color: var(--claret); }

.header-actions { display: flex; align-items: center; gap: 8px; }

.icon-btn {
  background: none; border: 0; padding: 8px; cursor: pointer;
  color: var(--ink); display: inline-flex; align-items: center;
  text-decoration: none; position: relative;
  transition: color .3s var(--ease);
}
.icon-btn:hover { color: var(--claret); }
.icon-btn svg { width: 21px; height: 21px; }
.cart-count {
  position: absolute; top: 1px; right: 0px;
  background: var(--claret); color: #fff;
  font-size: .6rem; font-weight: 700; line-height: 1;
  min-width: 16px; height: 16px; padding: 0 4px;
  border-radius: 8px; display: none;
  align-items: center; justify-content: center;
  font-family: var(--body);
}
.cart-count.is-on { display: inline-flex; }

.burger { display: none; }

/* ---------------------------- MOBILE DRAWER ----------------------------- */
.drawer {
  position: fixed; inset: 0 0 0 auto; width: min(86vw, 360px);
  background: var(--ink); color: var(--paper);
  transform: translateX(100%);
  transition: transform .4s var(--ease);
  z-index: 90; padding: 26px 28px; overflow-y: auto;
}
.drawer.is-open { transform: translateX(0); }
.drawer-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 28px; }
.drawer-head .brand-mark { color: var(--paper); }
.drawer .icon-btn { color: var(--paper); }
.drawer nav { display: flex; flex-direction: column; }
.drawer nav a {
  padding: 15px 0; border-bottom: 1px solid var(--line-dark);
  text-decoration: none; color: var(--paper);
  font-size: .85rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 600;
}
.drawer nav a:hover { color: var(--champagne); }
.drawer-contact { margin-top: 30px; font-size: .88rem; color: #BFB6AA; }
.drawer-contact a { color: var(--champagne); text-decoration: none; display: block; margin-bottom: 6px; }
.scrim {
  position: fixed; inset: 0; background: rgba(23,19,15,.55);
  opacity: 0; pointer-events: none; transition: opacity .4s var(--ease); z-index: 80;
}
.scrim.is-on { opacity: 1; pointer-events: auto; }

/* --------------------------------- HERO --------------------------------- */
.hero {
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: stretch;
  min-height: 76vh;
}
.hero-copy {
  padding: clamp(48px, 6vw, 92px) clamp(24px, 4vw, 72px);
  display: flex; flex-direction: column; justify-content: center;
  max-width: 680px; margin-left: auto; width: 100%;
}
.hero h1 { color: var(--paper); margin-bottom: .35em; }
.hero h1 em { font-style: italic; color: var(--champagne); }
.hero-copy p { color: #C8C1B8; font-size: 1.06rem; max-width: 46ch; }
.hero-media { position: relative; background: var(--ink-soft); }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }

/* Signature: a champagne hairline that draws itself in on load. */
.rule-draw {
  height: 1px; background: var(--champagne); width: 100%;
  transform-origin: left; animation: draw 1.1s var(--ease) both;
  margin: 0 0 28px;
}
@keyframes draw { from { transform: scaleX(0); } to { transform: scaleX(1); } }

.page-head {
  background: var(--ink); color: var(--paper);
  padding: clamp(48px, 7vw, 88px) 0 clamp(40px, 6vw, 72px);
}
.page-head h1 { color: var(--paper); }
.page-head p { color: #C8C1B8; max-width: 60ch; margin-bottom: 0; }

.crumbs {
  font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ash); padding: 18px 0; font-weight: 600;
}
.crumbs a { color: var(--ash); text-decoration: none; }
.crumbs a:hover { color: var(--claret); }
.crumbs span { color: var(--ink); }

/* ------------------------------ PRODUCT GRID ---------------------------- */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(258px, 1fr));
  gap: clamp(20px, 2.4vw, 34px);
}

/* SIGNATURE ELEMENT — the vitrine card.
   A champagne hairline frame insets over the image on hover, the way a
   display case throws a thin reflection. One idea, used consistently. */
.card { text-decoration: none; color: inherit; display: block; }
.card-frame {
  position: relative; overflow: hidden;
  background: var(--white); aspect-ratio: 3 / 4;
}
.card-frame img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.1s var(--ease);
}
.card:hover .card-frame img { transform: scale(1.045); }
.card-frame::after {
  content: ""; position: absolute; inset: 14px;
  border: 1px solid var(--champagne);
  opacity: 0; transform: scale(1.035);
  transition: opacity .45s var(--ease), transform .45s var(--ease);
  pointer-events: none;
}
.card:hover .card-frame::after { opacity: .85; transform: scale(1); }

.card-body { padding: 16px 2px 4px; }
.card-type {
  font-size: .64rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--ash); font-weight: 600; display: block; margin-bottom: 7px;
}
.card-name {
  font-family: var(--display); font-size: 1.05rem; font-weight: 500;
  margin: 0 0 6px; line-height: 1.3;
  transition: color .3s var(--ease);
}
.card:hover .card-name { color: var(--claret); }
.card-price { font-size: .94rem; color: var(--ink); font-weight: 500; }
.card-blurb { font-size: .85rem; color: var(--ash); margin: 6px 0 0; }

/* ------------------------------- CATEGORIES ----------------------------- */
.cat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.cat {
  position: relative; display: block; text-decoration: none;
  aspect-ratio: 4 / 5; overflow: hidden; background: var(--ink);
}
.cat img {
  width: 100%; height: 100%; object-fit: cover; opacity: .8;
  transition: transform 1.1s var(--ease), opacity .5s var(--ease);
}
.cat:hover img { transform: scale(1.05); opacity: .62; }
.cat-label {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 26px 24px; color: var(--white);
  background: linear-gradient(to top, rgba(23,19,15,.82), rgba(23,19,15,0));
}
.cat-label h3 { color: var(--white); margin: 0 0 4px; font-size: 1.35rem; }
.cat-label span {
  font-size: .68rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--champagne); font-weight: 600;
}

/* --------------------------------- SPLIT -------------------------------- */
.split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 72px); align-items: center;
}
.split--media-first .split-media { order: -1; }
.split-media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }

/* --------------------------------- VALUES ------------------------------- */
.values { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 2px; background: var(--line); }
.value { background: var(--white); padding: 34px 28px; transition: background .4s var(--ease); }
.value:hover { background: var(--paper); }
.value h3 { font-size: 1.12rem; margin-bottom: .5em; }
.value p { font-size: .92rem; color: var(--ash); margin: 0; }
.value-icon { color: var(--claret); margin-bottom: 16px; display: block; }
.value-icon svg { width: 26px; height: 26px; }

.section--ink .values { background: var(--line-dark); }
.section--ink .value { background: var(--ink); color: var(--paper); }
.section--ink .value:hover { background: var(--ink-soft); }
.section--ink .value p { color: #B8B0A6; }
.section--ink .value-icon { color: var(--champagne); }

/* --------------------------------- STEPS -------------------------------- */
/* Numbered because the order is real: this is the sequence an order follows. */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(215px, 1fr)); gap: 34px; }
.step { border-top: 1px solid var(--champagne); padding-top: 20px; }
.step-num {
  font-family: var(--display); font-size: 1.5rem; color: var(--claret);
  display: block; margin-bottom: 8px;
}
.section--ink .step-num { color: var(--champagne); }
.step h3 { font-size: 1.05rem; }
.step p { font-size: .9rem; color: var(--ash); margin: 0; }
.section--ink .step p { color: #B8B0A6; }

/* -------------------------------- FILTERS ------------------------------- */
.filters {
  display: flex; flex-wrap: wrap; gap: 10px; align-items: center;
  padding: 22px 0; border-bottom: 1px solid var(--line); margin-bottom: 34px;
}
.chip {
  font-size: .72rem; letter-spacing: .13em; text-transform: uppercase;
  font-weight: 600; padding: 9px 18px; border: 1px solid var(--line);
  background: transparent; color: var(--ink-soft); cursor: pointer;
  transition: all .3s var(--ease); font-family: var(--body);
}
.chip:hover { border-color: var(--ink); }
.chip.is-active { background: var(--ink); border-color: var(--ink); color: var(--paper); }
.filter-label {
  font-size: .68rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--ash); font-weight: 600; margin-right: 6px;
}
.result-count { margin-left: auto; font-size: .82rem; color: var(--ash); }

/* ----------------------------- PRODUCT PAGE ----------------------------- */
.pdp { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(28px, 4vw, 64px); align-items: start; }
.pdp-media { background: var(--white); }
.pdp-media img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.pdp-info { padding-top: 6px; }
.pdp-price { font-family: var(--display); font-size: 1.7rem; color: var(--claret); margin: 0 0 22px; }
.pdp-wholesale {
  font-size: .82rem; color: var(--ash); border-left: 2px solid var(--champagne);
  padding: 8px 0 8px 14px; margin: 0 0 24px;
}
.opt-group { margin-bottom: 22px; }
.opt-label {
  font-size: .68rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--ash); font-weight: 600; display: block; margin-bottom: 10px;
}
.opts { display: flex; flex-wrap: wrap; gap: 8px; }
.opt {
  min-width: 48px; padding: 10px 15px; border: 1px solid var(--line);
  background: transparent; cursor: pointer; font-size: .82rem;
  font-family: var(--body); color: var(--ink);
  transition: all .28s var(--ease);
}
.opt:hover { border-color: var(--ink); }
.opt.is-active { background: var(--ink); color: var(--paper); border-color: var(--ink); }

.spec { width: 100%; border-collapse: collapse; margin: 26px 0 0; font-size: .89rem; }
.spec th, .spec td { text-align: left; padding: 12px 0; border-bottom: 1px solid var(--line); vertical-align: top; }
.spec th {
  width: 34%; font-weight: 600; color: var(--ash);
  font-size: .68rem; letter-spacing: .14em; text-transform: uppercase;
}

.qty { display: flex; align-items: center; border: 1px solid var(--line); width: fit-content; }
.qty button {
  width: 42px; height: 44px; background: none; border: 0; cursor: pointer;
  font-size: 1.1rem; color: var(--ink); font-family: var(--body);
  transition: background .25s var(--ease);
}
.qty button:hover { background: var(--paper); }
.qty input {
  width: 52px; height: 44px; border: 0; text-align: center;
  font-size: .95rem; font-family: var(--body); color: var(--ink);
  background: transparent; -moz-appearance: textfield;
}
.qty input::-webkit-outer-spin-button, .qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

/* --------------------------------- CART --------------------------------- */
.cart-layout { display: grid; grid-template-columns: 1.6fr .8fr; gap: clamp(28px, 4vw, 56px); align-items: start; }
.cart-line {
  display: grid; grid-template-columns: 88px 1fr auto;
  gap: 20px; padding: 22px 0; border-bottom: 1px solid var(--line); align-items: start;
}
.cart-line img { width: 88px; height: 112px; object-fit: cover; background: var(--white); }
.cart-line h3 { font-size: 1rem; margin: 0 0 5px; }
.cart-meta { font-size: .8rem; color: var(--ash); margin: 0 0 10px; }
.cart-remove {
  background: none; border: 0; padding: 0; cursor: pointer;
  font-size: .72rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ash); font-weight: 600; font-family: var(--body);
  border-bottom: 1px solid var(--line); transition: color .3s var(--ease);
}
.cart-remove:hover { color: var(--claret); border-color: var(--claret); }
.cart-line-price { font-weight: 500; white-space: nowrap; }

.summary { background: var(--white); padding: 30px 28px; border: 1px solid var(--line); position: sticky; top: 100px; }
.summary h2 { font-size: 1.25rem; }
.sum-row { display: flex; justify-content: space-between; padding: 10px 0; font-size: .92rem; }
.sum-row--total {
  border-top: 1px solid var(--line); margin-top: 10px; padding-top: 16px;
  font-family: var(--display); font-size: 1.25rem;
}
.empty-state { text-align: center; padding: 70px 20px; }
.empty-state h2 { margin-bottom: .4em; }

/* --------------------------------- FORMS -------------------------------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-size: .68rem; letter-spacing: .16em; text-transform: uppercase;
  font-weight: 600; color: var(--ash); margin-bottom: 8px;
}
.field .req { color: var(--claret); }
.field input, .field select, .field textarea {
  padding: 13px 15px; border: 1px solid var(--line); background: var(--white);
  font-family: var(--body); font-size: .95rem; color: var(--ink);
  transition: border-color .3s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--claret);
}
.field textarea { resize: vertical; min-height: 130px; }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: var(--claret); }
.err {
  font-size: .78rem; color: var(--claret); margin-top: 6px; display: none;
}
.field.has-error .err { display: block; }

.form-note {
  padding: 16px 18px; border-left: 2px solid var(--champagne);
  background: var(--white); font-size: .9rem; margin-top: 22px; display: none;
}
.form-note.is-on { display: block; }
.form-note strong { display: block; margin-bottom: 4px; }

/* ------------------------------- CONTACT -------------------------------- */
.contact-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(215px, 1fr)); gap: 2px; background: var(--line); }
.ccard { background: var(--white); padding: 30px 26px; }
.ccard h3 { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--ash); font-family: var(--body); font-weight: 600; }
.ccard a, .ccard p { font-size: .98rem; color: var(--ink); text-decoration: none; margin: 0 0 3px; display: block; }
.ccard a:hover { color: var(--claret); }

/* --------------------------------- FAQ ---------------------------------- */
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  padding: 22px 44px 22px 0; position: relative;
  font-family: var(--display); font-size: 1.08rem; color: var(--ink); line-height: 1.4;
  transition: color .3s var(--ease);
}
.faq-q:hover { color: var(--claret); }
.faq-q::after {
  content: ""; position: absolute; right: 8px; top: 50%;
  width: 11px; height: 11px; margin-top: -7px;
  border-right: 1px solid var(--claret); border-bottom: 1px solid var(--claret);
  transform: rotate(45deg); transition: transform .35s var(--ease);
}
.faq-item.is-open .faq-q::after { transform: rotate(-135deg); margin-top: -3px; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .45s var(--ease); }
.faq-item.is-open .faq-a { max-height: 520px; }
.faq-a p { padding: 0 40px 22px 0; color: var(--ash); font-size: .95rem; margin: 0; }

/* -------------------------------- PROSE --------------------------------- */
.prose { max-width: 74ch; }
.prose h2 { margin-top: 2.2em; }
.prose h3 { margin-top: 1.8em; font-size: 1.12rem; }
.prose ul, .prose ol { padding-left: 20px; margin: 0 0 1.2em; }
.prose li { margin-bottom: .5em; }
.prose table { width: 100%; border-collapse: collapse; margin: 0 0 1.5em; font-size: .92rem; }
.prose th, .prose td { padding: 12px 14px; border: 1px solid var(--line); text-align: left; }
.prose th { background: var(--white); font-weight: 600; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; }
.updated { font-size: .82rem; color: var(--ash); font-style: italic; }

/* ---------------------------------- CTA --------------------------------- */
.cta-band { background: var(--ink); color: var(--paper); text-align: center; }
.cta-band h2 { color: var(--paper); }
.cta-band p { color: #C8C1B8; max-width: 54ch; margin-left: auto; margin-right: auto; }
.cta-band .btn-row { justify-content: center; }

/* -------------------------------- FOOTER -------------------------------- */
.site-footer { background: var(--ink); color: #B8B0A6; padding: clamp(48px, 6vw, 76px) 0 0; }
.foot-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: clamp(28px, 3.5vw, 52px); padding-bottom: 48px;
}
.foot-grid h4 {
  font-family: var(--body); font-size: .68rem; letter-spacing: .2em;
  text-transform: uppercase; color: var(--champagne); font-weight: 600; margin-bottom: 18px;
}
.foot-grid ul { list-style: none; padding: 0; margin: 0; }
.foot-grid li { margin-bottom: 10px; }
.foot-grid a { color: #B8B0A6; text-decoration: none; font-size: .92rem; transition: color .3s var(--ease); }
.foot-grid a:hover { color: var(--champagne); }
.foot-brand .brand-mark { color: var(--paper); }
.foot-brand p { font-size: .92rem; margin-top: 16px; max-width: 34ch; }
.foot-bottom {
  border-top: 1px solid var(--line-dark); padding: 22px 0;
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between;
  font-size: .82rem;
}
.foot-bottom a { color: #B8B0A6; text-decoration: none; }
.foot-bottom a:hover { color: var(--champagne); }
.foot-legal { display: flex; flex-wrap: wrap; gap: 20px; }
.social-row { display: flex; gap: 14px; margin-top: 18px; }
.social-row a { color: #B8B0A6; }
.social-row a:hover { color: var(--champagne); }
.social-row svg { width: 18px; height: 18px; }

/* ------------------------------- REVEAL --------------------------------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

/* --------------------------- ACCESSIBILITY ------------------------------ */
:focus-visible { outline: 2px solid var(--claret); outline-offset: 3px; }
.skip {
  position: absolute; left: -9999px; top: 0; background: var(--claret);
  color: #fff; padding: 12px 20px; z-index: 200; text-decoration: none;
  font-size: .82rem; letter-spacing: .1em; text-transform: uppercase;
}
.skip:focus { left: 0; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ------------------------------ RESPONSIVE ------------------------------ */
@media (max-width: 1080px) {
  .nav { gap: 20px; }
  .nav a { font-size: .73rem; letter-spacing: .1em; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .nav { display: none; }
  .burger { display: inline-flex; }
  .hero-grid { grid-template-columns: 1fr; min-height: 0; }
  .hero-media { min-height: 46vh; order: -1; }
  .hero-copy { padding: 44px 24px 52px; max-width: none; }
  .split { grid-template-columns: 1fr; }
  .split--media-first .split-media { order: 0; }
  .pdp { grid-template-columns: 1fr; }
  .cart-layout { grid-template-columns: 1fr; }
  .summary { position: static; }
}

@media (max-width: 620px) {
  .form-grid { grid-template-columns: 1fr; }
  .grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .card-name { font-size: .92rem; }
  .card-blurb { display: none; }
  .foot-grid { grid-template-columns: 1fr; gap: 32px; }
  .foot-bottom { flex-direction: column; }
  .brand img { height: 32px; }
  .brand-mark { font-size: 1.2rem; }
  .cart-line { grid-template-columns: 70px 1fr; }
  .cart-line img { width: 70px; height: 90px; }
  .cart-line-price { grid-column: 2; }
  .result-count { margin-left: 0; width: 100%; }
}
