:root {
  --navy: #0b1f4d;
  --navy-2: #13306b;
  --ink: #15213b;
  --salt: #f8f6f1;
  --paper: #ffffff;
  --sand: #ece5d8;
  --driftwood: #b7a482;
  --brass: #a9803f;
  --sea: #5d7c89;
  --fog: #e3e7ea;
  --muted: #5e6678;
  --line: rgba(11, 31, 77, 0.12);
  --sale: #a4412f;
  --radius: 14px;
  --shadow: 0 1px 2px rgba(11,31,77,.06), 0 12px 32px -12px rgba(11,31,77,.18);
  --serif: "Fraunces", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, Segoe UI, sans-serif;
  --cond: "Oswald", "Arial Narrow", sans-serif;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  margin: 0; background: var(--salt); color: var(--ink);
  font: 16px/1.6 var(--sans); -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button { font: inherit; cursor: pointer; }
.wrap { width: min(1240px, 100% - 32px); margin-inline: auto; }
h1, h2, h3 { font-family: var(--serif); font-weight: 400; letter-spacing: -0.01em; line-height: 1.08; margin: 0; }
h1 em, h2 em { font-style: italic; color: var(--brass); font-weight: 300; }
.eyebrow {
  font: 500 12px/1 var(--cond); letter-spacing: .28em; text-transform: uppercase;
  color: var(--sea); margin: 0 0 14px;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 26px; border-radius: 999px; border: 1px solid transparent;
  font: 500 13px/1 var(--cond); letter-spacing: .18em; text-transform: uppercase;
  text-decoration: none; transition: transform .2s, background .2s, color .2s, border-color .2s;
}
.btn:hover { transform: translateY(-1px); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-2); }
.btn-light { background: var(--salt); color: var(--navy); }
.btn-ghost { border-color: rgba(255,255,255,.4); color: #fff; }
.btn-ghost:hover { border-color: #fff; }
.btn.block { width: 100%; }
.btn[disabled] { opacity: .45; pointer-events: none; }
.icon-btn {
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line);
  background: var(--paper); color: var(--navy); font-size: 22px; line-height: 1;
}
.text-link { color: var(--navy); font-size: 14px; text-underline-offset: 3px; }

/* Announcement + header */
.announce {
  background: var(--navy); color: #d9deea; text-align: center;
  font: 400 11px/1 var(--cond); letter-spacing: .24em; text-transform: uppercase;
  padding: 10px 16px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}
.announce .dot { color: var(--brass); }
.site-header {
  position: sticky; top: 0; z-index: 30;
  background: rgba(248,246,241,.88); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; gap: 24px; height: 76px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--navy); }
.brand-mark { width: 46px; height: 46px; color: var(--navy); flex: none; }
.brand-mark.light { color: var(--salt); --mark-fg: var(--navy); }
.brand-text { display: flex; flex-direction: column; }
.brand-name { font: 600 24px/1 var(--cond); text-transform: uppercase; letter-spacing: .01em; margin: 0; }
.brand-sub { font: 400 10px/1 var(--sans); letter-spacing: .5em; text-transform: uppercase; margin: 6px 0 0; padding-left: 2px; }
.main-nav { display: flex; gap: 28px; margin-left: auto; }
.main-nav a {
  text-decoration: none; font: 500 13px/1 var(--cond); letter-spacing: .16em; text-transform: uppercase;
  color: var(--navy); position: relative; padding: 6px 0;
}
.main-nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 1px; background: var(--brass);
  transition: right .25s;
}
.main-nav a:hover::after { right: 0; }
.menu-btn { display: none; background: none; border: 0; color: var(--navy); padding: 8px; }
.menu-btn svg { width: 26px; height: 26px; display: block; }
.bag-btn {
  position: relative; background: none; border: 0; color: var(--navy); padding: 8px; margin-left: 8px;
}
.bag-btn svg { width: 26px; height: 26px; display: block; }
.bag-count {
  position: absolute; top: 0; right: -2px; min-width: 18px; height: 18px; border-radius: 9px;
  background: var(--brass); color: #fff; font: 600 11px/18px var(--sans); text-align: center; padding: 0 5px;
}
.bag-count.empty { display: none; }

/* Hero */
.hero {
  position: relative; display: grid; grid-template-columns: 1.05fr 1fr;
  background: var(--navy); color: #fff; min-height: 620px; overflow: hidden;
}
.hero::before {
  /* faint clapboard siding lines */
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: repeating-linear-gradient(180deg, transparent 0 38px, rgba(255,255,255,.035) 38px 39px);
}
.hero-copy {
  position: relative; padding: 96px 64px 120px max(32px, calc((100vw - 1240px) / 2));
  display: flex; flex-direction: column; justify-content: center;
}
.hero .eyebrow { color: #aebbd6; }
.hero h1 { font-size: clamp(44px, 6vw, 84px); }
.hero h1 em { color: #d9b77c; }
.lede { font-size: 18px; color: #cfd6e6; max-width: 34em; margin: 26px 0 34px; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 48px; margin: 56px 0 0; }
.hero-stats dt { font: 300 40px/1 var(--serif); color: #fff; }
.hero-stats dd { margin: 8px 0 0; font-size: 13px; color: #aebbd6; max-width: 14em; }
.hero-media { position: relative; background: #e8e4dc; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-tag {
  position: absolute; left: 24px; bottom: 84px; background: rgba(255,255,255,.94); color: var(--ink);
  padding: 14px 18px; border-radius: 12px; box-shadow: var(--shadow); max-width: 300px; cursor: pointer;
}
.hero-tag small { display: block; font: 500 11px/1 var(--cond); letter-spacing: .2em; text-transform: uppercase; color: var(--sea); margin-bottom: 6px; }
.hero-tag strong { font: 400 17px/1.25 var(--serif); display: block; }
.hero-tag span { font-size: 14px; color: var(--muted); }
.wave { position: absolute; left: 0; right: 0; bottom: -1px; width: 100%; height: 60px; fill: var(--salt); }

/* Sections */
.section { padding: 96px 0 40px; }
.section-head { margin-bottom: 40px; }
.section-head h2 { font-size: clamp(32px, 4vw, 52px); max-width: 16em; }

/* Categories */
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.cat {
  position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 3;
  background: var(--sand); text-decoration: none; color: #fff; display: block; cursor: pointer;
}
.cat img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.cat:hover img { transform: scale(1.05); }
.cat::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,20,48,0) 30%, rgba(8,20,48,.88));
}
.cat-label { position: absolute; left: 22px; right: 22px; bottom: 20px; z-index: 1; display: flex; justify-content: space-between; align-items: end; }
.cat-label h3 { font-size: 26px; }
.cat-label span { font: 500 12px/1 var(--cond); letter-spacing: .2em; text-transform: uppercase; opacity: .85; }

/* Quartz */
.quartz { background: var(--sand); margin-top: 72px; padding: 88px 0; overflow: hidden; }
.quartz-inner { display: grid; grid-template-columns: 380px 1fr; gap: 56px; align-items: center; }
.quartz-copy h2 { font-size: clamp(30px, 3.4vw, 44px); margin-bottom: 18px; }
.quartz-copy p { color: var(--muted); margin: 0 0 28px; }
.quartz-rail {
  display: grid; grid-auto-flow: column; grid-auto-columns: 200px; gap: 16px;
  overflow-x: auto; padding: 6px 4px 18px; scroll-snap-type: x mandatory;
  scrollbar-width: thin; scrollbar-color: var(--driftwood) transparent;
}
.swatch { scroll-snap-align: start; background: none; border: 0; padding: 0; text-align: left; color: var(--ink); }
.swatch .chip-img { aspect-ratio: 3 / 4; border-radius: 12px; overflow: hidden; background: #ddd; box-shadow: var(--shadow); }
.swatch img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.swatch:hover img { transform: scale(1.06); }
.swatch strong { display: block; font: 400 18px/1.2 var(--serif); margin-top: 12px; }
.swatch span { font-size: 13px; color: var(--muted); }

/* Town ribbon */
.ribbon { overflow: hidden; padding: 36px 0 0; color: var(--navy); }
.ribbon-track { display: flex; width: max-content; gap: 28px; align-items: center; animation: drift 60s linear infinite; }
.ribbon span { font: italic 300 clamp(22px, 2.6vw, 34px)/1 var(--serif); white-space: nowrap; opacity: .85; }
.ribbon i { font-style: normal; color: var(--brass); font-size: 14px; }
@keyframes drift { to { transform: translateX(-50%); } }

/* Soaking edit */
.edit-head { display: flex; justify-content: space-between; align-items: end; gap: 20px; flex-wrap: wrap; }
.edit-grid { display: grid; grid-template-columns: 1.4fr 1fr; grid-template-rows: 1fr 1fr; gap: 20px; height: 640px; }
.pick {
  position: relative; border: 0; padding: 0; border-radius: var(--radius); overflow: hidden; background: var(--sand);
  text-align: left; color: #fff; display: block; width: 100%; height: 100%;
}
.pick:first-child { grid-row: span 2; }
.pick img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.pick:hover img { transform: scale(1.04); }
.pick::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,20,48,0) 45%, rgba(8,20,48,.85)); }
.pick-body { position: absolute; left: 24px; right: 24px; bottom: 22px; z-index: 1; }
.pick-tag { display: inline-block; font: 500 11px/1 var(--cond); letter-spacing: .2em; text-transform: uppercase; background: rgba(255,255,255,.16); backdrop-filter: blur(6px); padding: 7px 10px; border-radius: 999px; margin-bottom: 12px; }
.pick h3 { font-size: clamp(20px, 2vw, 28px); line-height: 1.15; margin-bottom: 8px; max-width: 22em; }
.pick:first-child h3 { font-size: clamp(24px, 2.6vw, 36px); }
.pick-price { font-size: 15px; opacity: .9; }
.pick-price s { opacity: .6; margin-left: 8px; }
.pick-cta { position: absolute; top: 20px; right: 20px; z-index: 1; width: 44px; height: 44px; border-radius: 50%; background: var(--salt); color: var(--navy); display: grid; place-items: center; font-size: 20px; transform: rotate(-45deg); transition: transform .3s; }
.pick:hover .pick-cta { transform: rotate(0); }

/* Header on scroll + hero zoom */
.site-header { transition: box-shadow .3s, background .3s; }
.site-header.scrolled { box-shadow: 0 8px 30px -18px rgba(11,31,77,.45); background: rgba(248,246,241,.96); }
.hero-media img { animation: settle 14s cubic-bezier(.2,.7,.2,1) both; }
@keyframes settle { from { transform: scale(1.1); } to { transform: scale(1); } }
@media (prefers-reduced-motion: reduce) {
  .ribbon-track, .hero-media img { animation: none; }
}

/* Shop */
.shop-head { display: flex; justify-content: space-between; align-items: end; gap: 24px; flex-wrap: wrap; margin-bottom: 24px; }
.shop-tools { display: flex; gap: 10px; flex-wrap: wrap; }
.search {
  display: flex; align-items: center; gap: 8px; background: var(--paper); border: 1px solid var(--line);
  border-radius: 999px; padding: 0 16px; height: 46px; width: 300px; max-width: 100%;
}
.search svg { width: 18px; height: 18px; color: var(--muted); flex: none; }
.search input { border: 0; outline: 0; background: none; font: inherit; font-size: 14px; width: 100%; color: var(--ink); }
select {
  height: 46px; border-radius: 999px; border: 1px solid var(--line); background: var(--paper);
  padding: 0 38px 0 18px; font: inherit; font-size: 14px; color: var(--ink); appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%230b1f4d' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
}
.chips { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 12px; }
.chip {
  border: 1px solid var(--line); background: var(--paper); color: var(--navy); border-radius: 999px;
  padding: 9px 16px; font-size: 14px; transition: all .2s;
}
.chip:hover { border-color: var(--navy); }
.chip[aria-selected="true"] { background: var(--navy); color: #fff; border-color: var(--navy); }
.chip small { opacity: .6; margin-left: 4px; }
.sub-chips .chip { font-size: 13px; padding: 7px 14px; background: transparent; }
.sub-chips .chip[aria-selected="true"] { background: var(--sea); border-color: var(--sea); }
.result-count { color: var(--muted); font-size: 14px; margin: 12px 0 24px; }

.grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px 22px; }
.card { background: none; border: 0; padding: 0; text-align: left; color: var(--ink); display: flex; flex-direction: column; }
.card-media {
  position: relative; aspect-ratio: 1; border-radius: var(--radius); overflow: hidden;
  background: var(--paper); border: 1px solid var(--line);
}
.card-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; padding: 10px; transition: opacity .45s, transform .6s; }
.card-media img.alt { opacity: 0; object-fit: cover; padding: 0; }
.card:hover .card-media img.alt { opacity: 1; }
.card:hover .card-media img:not(.alt) { transform: scale(1.03); }
.badge {
  position: absolute; top: 12px; left: 12px; z-index: 1; background: var(--salt); color: var(--sale);
  font: 600 11px/1 var(--cond); letter-spacing: .14em; text-transform: uppercase; padding: 7px 10px; border-radius: 999px;
}
.badge.sold { color: var(--muted); }
.quick {
  position: absolute; left: 12px; right: 12px; bottom: 12px; z-index: 1; background: var(--navy); color: #fff;
  font: 500 12px/1 var(--cond); letter-spacing: .18em; text-transform: uppercase; text-align: center;
  padding: 13px; border-radius: 999px; opacity: 0; transform: translateY(8px); transition: all .25s;
}
.card:hover .quick, .card:focus-visible .quick { opacity: 1; transform: none; }
.card-meta { padding: 14px 2px 0; }
.card-cat { font: 500 11px/1 var(--cond); letter-spacing: .2em; text-transform: uppercase; color: var(--sea); }
.card-title {
  font: 400 17px/1.3 var(--serif); margin: 8px 0 8px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.price { display: flex; gap: 10px; align-items: baseline; font-weight: 600; color: var(--navy); }
.price s { color: var(--muted); font-weight: 400; font-size: .88em; }
.price.big { font-size: 24px; margin: 16px 0 22px; }
.more-wrap { text-align: center; margin: 48px 0 24px; }
.empty-state { grid-column: 1 / -1; text-align: center; padding: 60px 0; color: var(--muted); }
.noimg { position: absolute; inset: 0; display: grid; place-items: center; color: var(--sand); }
.noimg svg { width: 38%; height: 38%; color: var(--fog); }

/* Lead capture */
.lead { padding: 96px 0 24px; }
.lead-inner {
  display: grid; grid-template-columns: 1fr 1.25fr; gap: 64px; align-items: start;
  background: var(--paper); border: 1px solid var(--line); border-radius: 24px; padding: 56px;
  box-shadow: var(--shadow);
}
.lead-copy h2 { font-size: clamp(32px, 3.6vw, 46px); margin-bottom: 18px; }
.lead-copy > p { color: var(--muted); margin: 0 0 22px; }
.lead-points { list-style: none; padding: 0; margin: 0 0 28px; }
.lead-points li { position: relative; padding-left: 26px; margin-bottom: 10px; }
.lead-points li::before { content: ""; position: absolute; left: 0; top: .6em; width: 14px; height: 1px; background: var(--brass); }
.lead-direct { font-size: 14px; color: var(--muted); }
.lead-direct a { color: var(--navy); }
.lead-form { display: flex; flex-direction: column; gap: 16px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; font-size: 13px; color: var(--muted); }
.field > span { font: 500 11px/1 var(--cond); letter-spacing: .18em; text-transform: uppercase; color: var(--navy); }
.field input, .field textarea, .field select {
  width: 100%; font: inherit; font-size: 16px; color: var(--ink); background: var(--salt);
  border: 1px solid var(--line); border-radius: 10px; padding: 12px 14px; height: auto;
}
.field select { border-radius: 10px; height: 48px; padding-right: 38px; }
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field textarea:focus, .field select:focus { outline: 2px solid var(--navy); outline-offset: 1px; border-color: transparent; }
.field input[aria-invalid="true"] { border-color: var(--sale); background: #fdf5f3; }
.product-pill { display: flex; align-items: center; justify-content: space-between; gap: 10px; background: var(--sand); border-radius: 10px; padding: 10px 8px 10px 14px; color: var(--ink); font-size: 14px; }
.product-pill button { border: 0; background: none; font-size: 20px; line-height: 1; color: var(--muted); width: 32px; height: 32px; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-status { margin: 0; font-size: 14px; min-height: 1.4em; }
.form-status.error { color: var(--sale); }
.form-success { text-align: center; padding: 48px 12px; }
.form-success svg { width: 56px; height: 56px; color: var(--navy); margin: 0 auto 16px; }
.form-success h3 { font-size: 28px; margin-bottom: 8px; }
.form-success p { color: var(--muted); margin: 0; }
.btn-outline { border-color: var(--navy); color: var(--navy); background: transparent; margin-bottom: 14px; }
.btn-outline:hover { background: var(--navy); color: #fff; }
.main-nav a.nav-cta { color: var(--brass); }

/* Values */
.values { background: var(--navy); color: #fff; padding: 80px 0; margin-top: 72px; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; }
.value svg { width: 44px; height: 44px; color: #d9b77c; margin-bottom: 18px; }
.value h3 { font-size: 24px; margin-bottom: 10px; }
.value p { color: #c3cbdd; margin: 0; }

/* Footer */
.site-footer { background: #081739; color: #c3cbdd; padding: 64px 0 28px; }
.footer-inner { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.footer-brand { display: flex; gap: 14px; align-items: center; color: #fff; }
.footer-cols { display: flex; gap: 72px; }
.footer-cols h4 { font: 500 12px/1 var(--cond); letter-spacing: .24em; text-transform: uppercase; color: #fff; margin: 0 0 18px; }
.footer-cols a { display: block; text-decoration: none; padding: 6px 0; font-size: 14px; }
.footer-cols a:hover { color: #fff; }
.parent-co {
  display: flex; align-items: center; gap: 28px; margin-top: 48px; padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.rk-mark { display: flex; flex-direction: column; align-items: center; padding-right: 28px; border-right: 1px solid rgba(255,255,255,.2); color: #fff; }
.rk-letters { font: 300 44px/0.9 var(--serif); letter-spacing: -0.04em; font-variation-settings: "opsz" 144; }
.rk-sub { font: 500 7.5px/1 var(--sans); letter-spacing: .32em; text-transform: uppercase; margin-top: 6px; white-space: nowrap; }
.parent-line { margin: 0 0 6px; color: #fff; font-size: 15px; }
.parent-line strong { font-weight: 600; }
.sister-brands { margin: 0; font-size: 13px; line-height: 1.7; }
.sister-brands a { text-underline-offset: 3px; text-decoration-color: rgba(255,255,255,.35); }
.sister-brands a:hover { color: #fff; text-decoration-color: currentColor; }
.sister-brands .current-brand { color: #fff; }
.footer-base { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: 13px; margin-top: 28px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); }

/* Product dialog */
.pdp {
  width: min(1100px, 100% - 32px); max-height: calc(100vh - 48px); border: 0; padding: 0;
  border-radius: 20px; background: var(--salt); color: var(--ink); box-shadow: 0 40px 80px -20px rgba(0,0,0,.4);
}
.pdp::backdrop { background: rgba(8,20,48,.55); backdrop-filter: blur(3px); }
.pdp[open] { animation: rise .3s ease; }
@keyframes rise { from { opacity: 0; transform: translateY(16px); } }
.pdp-close { position: absolute; top: 16px; right: 16px; z-index: 2; }
.pdp { overflow: hidden; }
.pdp-inner { display: grid; grid-template-columns: 1.1fr 1fr; height: min(calc(100vh - 48px), 760px); }
.pdp-gallery, .pdp-info { min-height: 0; }
.pdp-gallery { justify-content: center; }
.pdp-gallery { background: var(--paper); padding: 24px; display: flex; flex-direction: column; gap: 14px; min-height: 0; }
.pdp-main { height: min(62vh, 580px); }
.pdp-main img { width: 100%; height: 100%; object-fit: contain; }
.pdp-thumbs { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 4px; }
.pdp-thumbs button { flex: none; width: 64px; height: 64px; border-radius: 8px; overflow: hidden; border: 2px solid transparent; padding: 0; background: var(--salt); }
.pdp-thumbs button[aria-current="true"] { border-color: var(--navy); }
.pdp-thumbs img { width: 100%; height: 100%; object-fit: cover; }
.pdp-info { padding: 48px 40px 40px; overflow-y: auto; }
.pdp-info h2 { font-size: 30px; line-height: 1.15; padding-right: 36px; }
.variant { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; font-size: 13px; color: var(--muted); }
.variant select { width: 100%; }
.buy-row { display: flex; gap: 12px; margin-bottom: 16px; }
.grow { flex: 1; }
.qty { display: flex; align-items: center; border: 1px solid var(--line); border-radius: 999px; background: var(--paper); }
.qty button { width: 40px; height: 46px; border: 0; background: none; font-size: 18px; color: var(--navy); }
.qty input { width: 36px; border: 0; text-align: center; font: inherit; background: none; -moz-appearance: textfield; }
.qty input::-webkit-inner-spin-button { -webkit-appearance: none; }
.pdp-desc { margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--line); font-size: 14.5px; color: #3a4459; }
.pdp-desc h4 { font: 500 12px/1 var(--cond); letter-spacing: .2em; text-transform: uppercase; color: var(--navy); margin: 22px 0 10px; }
.pdp-desc ul { padding-left: 18px; }
.pdp-desc li { margin-bottom: 6px; }
.pdp-desc table { border-collapse: collapse; width: 100%; }
.pdp-desc td, .pdp-desc th { border-bottom: 1px solid var(--line); padding: 6px 4px; text-align: left; }

/* Bag */
.scrim { position: fixed; inset: 0; background: rgba(8,20,48,.45); z-index: 40; }
.bag {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(420px, 100%); z-index: 41;
  background: var(--salt); display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform .35s cubic-bezier(.2,.8,.2,1);
  box-shadow: -20px 0 60px -20px rgba(0,0,0,.3);
}
.bag.open { transform: none; }
.bag-head { display: flex; justify-content: space-between; align-items: center; padding: 22px 24px; border-bottom: 1px solid var(--line); }
.bag-head h2 { font-size: 26px; }
.bag-items { flex: 1; overflow-y: auto; padding: 8px 24px; }
.line { display: grid; grid-template-columns: 72px 1fr auto; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line); align-items: start; }
.line img, .line .ph { width: 72px; height: 72px; border-radius: 10px; object-fit: cover; background: var(--paper); border: 1px solid var(--line); }
.line h4 { margin: 0 0 4px; font: 400 15px/1.3 var(--serif); }
.line small { color: var(--muted); display: block; }
.line-qty { display: flex; align-items: center; gap: 8px; margin-top: 8px; font-size: 14px; }
.line-qty button { width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--line); background: var(--paper); color: var(--navy); line-height: 1; }
.line .remove { background: none; border: 0; color: var(--muted); font-size: 12px; text-decoration: underline; padding: 8px 8px 8px 0; margin-top: 2px; }
.line-price { font-weight: 600; color: var(--navy); font-size: 14px; }
.bag-empty { text-align: center; color: var(--muted); padding: 60px 0; }
.bag-empty svg { width: 64px; height: 64px; color: var(--navy); margin: 0 auto 16px; }
.bag-foot { padding: 20px 24px 24px; border-top: 1px solid var(--line); background: var(--paper); }
.bag-total { display: flex; justify-content: space-between; font-size: 17px; }
.bag-total strong { color: var(--navy); }
.fine { font-size: 12px; color: var(--muted); margin: 6px 0 16px; }


/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* Responsive */
@media (max-width: 1100px) {
  .grid { grid-template-columns: repeat(3, 1fr); }
  .main-nav { gap: 18px; }
}
@media (max-width: 900px) {
  .edit-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 420px 280px; height: auto; }
  .pick:first-child { grid-row: auto; grid-column: span 2; }
  .lead-inner { grid-template-columns: 1fr; gap: 36px; padding: 36px 24px; }
  .menu-btn { display: block; margin-left: auto; }
  .bag-btn { margin-left: 0; }
  .main-nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; gap: 0;
    background: var(--salt); border-bottom: 1px solid var(--line); box-shadow: var(--shadow); padding: 8px 16px 16px;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 16px 4px; border-bottom: 1px solid var(--line); font-size: 14px; }
  .main-nav a::after { display: none; }
  .hero { grid-template-columns: 1fr; }
  .hero-copy { padding: 64px 24px 48px; }
  .hero-media { height: 380px; }
  .hero-tag { bottom: 70px; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .quartz-inner { grid-template-columns: 1fr; gap: 32px; }
  .values-grid { grid-template-columns: 1fr; gap: 36px; }
  .pdp-inner { display: block; height: calc(100vh - 48px); overflow-y: auto; }
  .pdp-info { overflow: visible; padding: 28px 24px; }
  .pdp-main { height: 44vh; }
}
@media (max-width: 640px) {
  .edit-grid { grid-template-columns: 1fr; grid-template-rows: none; grid-auto-rows: 340px; }
  .pick:first-child { grid-column: auto; }
  .ribbon { padding-top: 24px; }
  .parent-co { flex-direction: column; align-items: flex-start; gap: 18px; }
  .rk-mark { border-right: 0; padding-right: 0; align-items: flex-start; }
  .field-row { grid-template-columns: 1fr; }
  .lead { padding-top: 72px; }
  .lead-inner { border-radius: 18px; padding: 28px 18px; }
  .grid { grid-template-columns: repeat(2, 1fr); gap: 24px 12px; }
  .cat-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .cat-label { left: 14px; right: 14px; bottom: 12px; flex-direction: column; align-items: start; gap: 6px; }
  .cat-label h3 { font-size: 20px; }
  .brand-name { font-size: 20px; }
  .brand-sub { letter-spacing: .38em; }
  .announce span:not(:first-child) { display: none; }
  .hero-stats { gap: 28px; }
  .search { width: 100%; }
  .shop-tools { width: 100%; }
  .shop-tools select { flex: 1; }
  .card-title { font-size: 15px; }
  .quick { display: none; }
  .footer-cols { gap: 40px; }
  .section { padding-top: 72px; }
  .pdp { width: 100%; max-height: 100dvh; border-radius: 0; margin: 0; height: 100dvh; max-width: 100%; }
  .pdp-inner { height: 100dvh; }
  .buy-row { position: sticky; bottom: 0; z-index: 1; background: var(--salt); margin: 0 -24px 16px; padding: 12px 24px; border-top: 1px solid var(--line); }
  .pdp-close { top: 12px; right: 12px; }
  .chips { flex-wrap: nowrap; overflow-x: auto; margin-inline: -16px; padding: 2px 16px; scrollbar-width: none; }
  .chips::-webkit-scrollbar { display: none; }
  .chip { flex: none; }
  .hero-media { height: 320px; }
  .hero-tag { left: 16px; right: 16px; max-width: none; bottom: 64px; }
}
