:root {
  --ink: #16140f;
  --ink-2: #4a463e;
  --muted: #7b756a;
  --bone: #f6f3ee;
  --paper: #ffffff;
  --line: #e4dfd5;
  --steel: #2a2823;
  --brass: #b0874a;
  --brass-2: #946f36;
  --danger: #a3372a;
  --radius: 4px;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', system-ui, -apple-system, sans-serif;
  --wrap: 1240px;
}
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body { margin: 0; background: var(--bone); color: var(--ink); font: 15px/1.6 var(--sans); }
img, video { max-width: 100%; display: block; }
a { color: inherit; }
button { font: inherit; color: inherit; cursor: pointer; }
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }
h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.1; margin: 0 0 .4em; letter-spacing: -.01em; }
h1 { font-size: clamp(34px, 5vw, 58px); }
h2 { font-size: clamp(28px, 3.4vw, 40px); }
h3 { font-size: 22px; }
.eyebrow { font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--brass); font-weight: 600; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 26px; border: 1px solid var(--ink); background: var(--ink); color: #fff; text-decoration: none; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; font-weight: 600; border-radius: var(--radius); transition: background .15s, color .15s; }
.btn:hover { background: var(--steel); }
.btn.ghost { background: transparent; color: var(--ink); }
.btn.ghost:hover { background: var(--ink); color: #fff; }
.btn.light { background: #fff; color: var(--ink); border-color: #fff; }
.btn.light:hover { background: var(--bone); }
.btn.block { width: 100%; }
.btn[disabled] { opacity: .45; cursor: not-allowed; }

/* ── announcement + header ─────────────────────────────── */
.announce { background: var(--ink); color: #e9e2d4; font-size: 12px; letter-spacing: .08em; overflow: hidden; white-space: nowrap; }
.announce-track { display: inline-flex; gap: 28px; padding: 9px 0; animation: marquee 40s linear infinite; }
.announce .dot { color: var(--brass); }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .announce-track { animation: none; } }
.hdr { position: sticky; top: 0; z-index: 30; background: rgba(246, 243, 238, .96); backdrop-filter: blur(8px); border-bottom: 1px solid var(--line); }
.hdr-inner { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; height: 68px; }
.hdr-left, .hdr-right { display: flex; align-items: center; gap: 4px; }
.hdr-right { justify-content: flex-end; }
.hdr-logo { text-decoration: none; text-align: center; font-family: var(--serif); font-size: 26px; font-weight: 700; letter-spacing: .02em; line-height: 1; }
.hdr-logo small { display: block; font: 600 9px/1 var(--sans); letter-spacing: .32em; text-transform: uppercase; color: var(--brass); margin-top: 5px; }
.icon-btn { background: none; border: 0; padding: 9px; display: inline-flex; position: relative; text-decoration: none; border-radius: 50%; }
.icon-btn:hover { background: rgba(0, 0, 0, .05); }
.cart-count { position: absolute; top: 2px; right: 0; min-width: 17px; height: 17px; padding: 0 4px; border-radius: 9px; background: var(--brass); color: #fff; font-size: 10px; font-weight: 700; display: grid; place-items: center; }
.cart-count:empty, .cart-count[data-n="0"] { display: none; }
.hdr-nav { display: flex; justify-content: center; gap: 30px; padding: 0 0 12px; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; font-weight: 500; }
.hdr-nav a { text-decoration: none; color: var(--ink-2); }
.hdr-nav a:hover { color: var(--ink); }
@media (max-width: 760px) { .hdr-nav { display: none; } .hide-sm { display: none; } .hdr-logo { font-size: 22px; } }

/* ── drawers ───────────────────────────────────────────── */
.overlay { position: fixed; inset: 0; background: rgba(15, 13, 10, .45); opacity: 0; pointer-events: none; transition: opacity .2s; z-index: 40; }
body.drawer-open .overlay { opacity: 1; pointer-events: auto; }
.drawer { position: fixed; top: 0; bottom: 0; width: min(420px, 92vw); background: var(--paper); z-index: 50; display: flex; flex-direction: column; transition: transform .25s ease; }
.drawer-left { left: 0; transform: translateX(-100%); }
.drawer-right { right: 0; transform: translateX(100%); }
.drawer.open { transform: none; }
.drawer-head { display: flex; justify-content: space-between; align-items: center; padding: 16px 20px; border-bottom: 1px solid var(--line); }
.drawer-nav { display: flex; flex-direction: column; padding: 10px 0; }
.drawer-nav a { padding: 14px 22px; text-decoration: none; font-family: var(--serif); font-size: 22px; border-bottom: 1px solid var(--line); }
.drawer-body { flex: 1; overflow: auto; padding: 8px 20px; }
.drawer-foot { border-top: 1px solid var(--line); padding: 18px 20px; display: grid; gap: 10px; }
.drawer-foot .row { display: flex; justify-content: space-between; }
.empty { padding: 40px 0; text-align: center; color: var(--muted); }

/* cart lines (drawer + cart page) */
.cline { display: grid; grid-template-columns: 76px 1fr auto; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.cline img { width: 76px; height: 76px; object-fit: cover; border-radius: var(--radius); background: #fff; }
.cline-title { font-weight: 600; text-decoration: none; }
.cline-meta { font-size: 13px; color: var(--muted); }
.qty { display: inline-flex; border: 1px solid var(--line); border-radius: var(--radius); margin-top: 8px; }
.qty button { background: none; border: 0; width: 30px; height: 30px; }
.qty span { min-width: 26px; display: grid; place-items: center; font-size: 13px; }
.link-btn { background: none; border: 0; padding: 0; font-size: 12px; color: var(--muted); text-decoration: underline; }

/* ── home ──────────────────────────────────────────────── */
.hero { position: relative; min-height: min(78vh, 720px); display: grid; align-items: end; color: #fff; background: var(--ink); overflow: hidden; }
.hero img, .hero video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .85; }
.hero picture { position: absolute; inset: 0; }
.hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.7) 0%, rgba(0,0,0,.25) 45%, rgba(0,0,0,0) 70%), linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(0,0,0,.7)); }
.hero-copy { position: relative; z-index: 1; padding: 64px 20px; max-width: var(--wrap); margin: 0 auto; width: 100%; }
.hero h1 { font-family: 'Oswald', 'Arial Narrow', sans-serif; font-weight: 700; text-transform: uppercase; letter-spacing: .01em; line-height: .95; font-size: clamp(44px, 5.6vw, 76px); margin-bottom: .3em; }
.hero-copy p { max-width: 520px; font-size: 17px; color: #eee7da; margin: 0 0 26px; }
.hero .eyebrow { color: #e3c38d; }
.section { padding: 72px 0; }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 20px; margin-bottom: 28px; flex-wrap: wrap; }
.section-head p { margin: 0; color: var(--muted); max-width: 520px; }
.dark { background: var(--ink); color: #eee7da; }
.dark .eyebrow { color: #e3c38d; }
.dark h2, .dark h3 { color: #fff; }

.grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px 20px; }
@media (max-width: 1000px) { .grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px) { .grid { grid-template-columns: repeat(2, 1fr); gap: 22px 12px; } }
.pcard { text-decoration: none; display: block; }
.pcard-media { position: relative; aspect-ratio: 1; background: #fff; overflow: hidden; border-radius: var(--radius); }
.pcard-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: opacity .3s, transform .6s; }
.pcard-media img.alt { opacity: 0; }
.pcard:hover .pcard-media img.alt { opacity: 1; }
.pcard:hover .pcard-media img { transform: scale(1.03); }
.badge { position: absolute; top: 10px; left: 10px; z-index: 2; background: var(--ink); color: #fff; font-size: 10px; letter-spacing: .14em; text-transform: uppercase; padding: 5px 8px; border-radius: 2px; }
.pcard-title { margin-top: 12px; font-family: var(--serif); font-size: 19px; font-weight: 600; line-height: 1.2; }
.pcard-sub { font-size: 12px; color: var(--muted); margin-top: 2px; }
.pcard-price { margin-top: 4px; font-weight: 600; }
.from { font-weight: 400; color: var(--muted); font-size: 13px; }

.tiles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
@media (max-width: 900px) { .tiles { grid-template-columns: repeat(2, 1fr); } }
.tile { position: relative; aspect-ratio: 3/4; overflow: hidden; border-radius: var(--radius); color: #fff; text-decoration: none; display: flex; align-items: end; background: var(--steel); }
.tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.tile:hover img { transform: scale(1.04); }
.tile::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,.7)); }
.tile span { position: relative; z-index: 1; padding: 18px; font-family: var(--serif); font-size: 26px; font-weight: 600; line-height: 1.1; }
.tile small { display: block; font: 12px/1.4 var(--sans); color: #e8e1d3; margin-top: 4px; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; gap: 28px; } }
.split img { width: 100%; border-radius: var(--radius); }
.specs3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,.12); margin-top: 28px; }
.specs3 div { background: var(--ink); padding: 18px 14px; }
.specs3 b { display: block; font-family: var(--serif); font-size: 30px; color: #fff; }
.specs3 span { font-size: 12px; color: #b9b1a2; }
.promise { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
@media (max-width: 800px) { .promise { grid-template-columns: repeat(2, 1fr); } }
.promise h3 { font-size: 20px; margin-bottom: 4px; }
.promise p { margin: 0; color: var(--muted); font-size: 14px; }

.faq details { border-bottom: 1px solid var(--line); padding: 16px 0; }
.faq summary { cursor: pointer; font-weight: 600; list-style: none; display: flex; justify-content: space-between; }
.faq summary::after { content: '+'; font-size: 20px; line-height: 1; color: var(--brass); }
.faq details[open] summary::after { content: '–'; }
.faq p { color: var(--ink-2); margin: 10px 0 0; }

/* ── product page ──────────────────────────────────────── */
.pdp { display: grid; grid-template-columns: 1.15fr 1fr; gap: 48px; padding: 28px 0 64px; }
@media (max-width: 900px) { .pdp { grid-template-columns: 1fr; gap: 24px; } }
.crumbs { font-size: 12px; color: var(--muted); padding-top: 22px; }
.crumbs a { text-decoration: none; }
.gallery-main { position: relative; aspect-ratio: 1; background: #fff; border-radius: var(--radius); overflow: hidden; }
.gallery-main img, .gallery-main video { width: 100%; height: 100%; object-fit: contain; background: #fff; }
.thumbs { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; margin-top: 8px; }
.thumbs button { padding: 0; border: 1px solid transparent; background: #fff; aspect-ratio: 1; border-radius: var(--radius); overflow: hidden; position: relative; }
.thumbs button[aria-current="true"] { border-color: var(--ink); }
.thumbs img { width: 100%; height: 100%; object-fit: cover; }
.thumbs .play { position: absolute; inset: 0; display: grid; place-items: center; background: rgba(0,0,0,.35); color: #fff; font-size: 20px; }
.buy { position: sticky; top: 130px; align-self: start; }
.buy h1 { font-size: clamp(30px, 3.4vw, 42px); }
.price { font-size: 22px; font-weight: 600; margin: 6px 0 18px; }
.opt { margin: 18px 0; }
.opt-label { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; font-weight: 600; margin-bottom: 8px; }
.opt-label span { text-transform: none; letter-spacing: 0; font-weight: 400; color: var(--muted); }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { border: 1px solid var(--line); background: var(--paper); padding: 10px 14px; border-radius: var(--radius); font-size: 14px; }
.chip[aria-pressed="true"] { border-color: var(--ink); box-shadow: inset 0 0 0 1px var(--ink); }
.field { width: 100%; padding: 11px 12px; border: 1px solid var(--line); border-radius: var(--radius); font: inherit; background: #fff; }
.small { font-size: 12px; color: var(--muted); }
.trust { list-style: none; padding: 0; margin: 18px 0; display: grid; gap: 8px; font-size: 14px; color: var(--ink-2); }
.trust li::before { content: '—'; color: var(--brass); margin-right: 8px; }
.tabs { margin-top: 26px; border-top: 1px solid var(--line); }
.tabs details { border-bottom: 1px solid var(--line); padding: 14px 0; }
.tabs summary { cursor: pointer; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; font-size: 12px; list-style: none; display: flex; justify-content: space-between; }
.tabs summary::after { content: '+'; color: var(--brass); }
.tabs details[open] summary::after { content: '–'; }
.spec-table { width: 100%; border-collapse: collapse; margin-top: 10px; font-size: 14px; }
.spec-table td { padding: 7px 0; border-bottom: 1px solid var(--line); }
.spec-table td:first-child { color: var(--muted); width: 45%; }
.sticky-atc { display: none; }
@media (max-width: 900px) {
  .buy { position: static; }
  .sticky-atc { display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 20; background: var(--paper); border-top: 1px solid var(--line); padding: 10px 16px; gap: 12px; align-items: center; justify-content: space-between; }
  .sticky-atc.hide { display: none; }
  body.has-sticky { padding-bottom: 72px; }
}

/* ── cart page / success ──────────────────────────────── */
.cart-page { display: grid; grid-template-columns: 1fr 360px; gap: 40px; padding: 30px 0 70px; }
@media (max-width: 860px) { .cart-page { grid-template-columns: 1fr; } }
.summary { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; align-self: start; display: grid; gap: 12px; }
.summary .row { display: flex; justify-content: space-between; }
.summary .total { font-size: 18px; font-weight: 700; border-top: 1px solid var(--line); padding-top: 12px; }
.err { color: var(--danger); font-size: 14px; }

/* ── footer ────────────────────────────────────────────── */
.ftr { background: var(--ink); color: #b9b1a2; padding: 56px 0 28px; font-size: 14px; }
.ftr-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 30px; }
@media (max-width: 700px) { .ftr-grid { grid-template-columns: 1fr 1fr; } .ftr-grid > :first-child { grid-column: 1 / -1; } }
.ftr h4 { color: #fff; font-size: 12px; letter-spacing: .16em; text-transform: uppercase; margin: 0 0 12px; }
.ftr a { display: block; text-decoration: none; padding: 3px 0; }
.ftr a:hover { color: #fff; }
.ftr .logo { font-family: var(--serif); color: #fff; font-size: 28px; font-weight: 700; }
.ftr-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 36px; padding-top: 18px; font-size: 12px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.toast { position: fixed; left: 50%; bottom: 24px; transform: translate(-50%, 20px); background: var(--ink); color: #fff; padding: 12px 18px; border-radius: var(--radius); opacity: 0; transition: .2s; z-index: 60; font-size: 14px; }
.toast.show { opacity: 1; transform: translate(-50%, 0); }
/* phones: full hero image on top, headline underneath on black */
@media (max-width: 700px) {
  .hero { min-height: 0; display: block; }
  .hero picture { position: relative; display: block; aspect-ratio: 4 / 5; }
  .hero img { position: relative; opacity: 1; }
  .hero::after { background: linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(0,0,0,.9) 62%, #000 70%); }
  .hero-copy { margin-top: -110px; padding: 0 20px 44px; }
}
.hero .hero-video { position: absolute; top: 0; bottom: 0; left: auto; right: 0; width: 58%; height: 100%; object-fit: contain; opacity: 1; background: #000; }
.hero.has-video { background: #000; }
.hero.has-video picture { display: none; }
.hero.has-video::after { background: linear-gradient(90deg, #000 0%, rgba(0,0,0,.6) 36%, rgba(0,0,0,0) 55%); }
.nudge { background: #f3ead9; border: 1px solid #e5d3ae; color: #5a4520; padding: 10px 12px; border-radius: var(--radius); font-size: 13px; }
.row.save { color: #2f6b3a; font-weight: 600; }
.bundle-note { margin: 14px 0 0; padding: 12px 14px; border: 1px dashed var(--brass); border-radius: var(--radius); background: #fbf7ef; display: grid; gap: 2px; font-size: 13px; }
.bundle-note strong { font-size: 14px; letter-spacing: .02em; }
.bundle-note span { color: var(--muted); }
/* ── reviews ─────────────────────────────────────────── */
.stars { --pct: 100%; position: relative; display: inline-block; line-height: 1; letter-spacing: 2px; font-family: Arial, sans-serif; }
.stars::before { content: '★★★★★'; color: #d9d2c4; }
.stars::after { content: '★★★★★'; color: var(--brass); position: absolute; left: 0; top: 0; width: var(--pct); overflow: hidden; white-space: nowrap; }
.rv-summary { display: grid; grid-template-columns: auto 1fr; gap: 28px; align-items: center; margin-bottom: 26px; }
@media (max-width: 640px) { .rv-summary { grid-template-columns: 1fr; gap: 14px; } }
.rv-score { display: grid; gap: 4px; }
.rv-score b { font-family: 'Oswald', var(--sans); font-size: 56px; line-height: 1; }
.rv-score span:last-child { font-size: 13px; color: var(--muted); }
.rv-bars { display: grid; gap: 5px; max-width: 360px; font-size: 12px; }
.rv-bar { display: grid; grid-template-columns: 28px 1fr 28px; gap: 8px; align-items: center; }
.rv-bar i { height: 8px; background: #ebe5da; border-radius: 4px; overflow: hidden; display: block; }
.rv-bar em { display: block; height: 100%; background: var(--brass); }
.rv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 900px) { .rv-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .rv-grid { grid-template-columns: 1fr; } }
.rv-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 16px; display: grid; gap: 10px; align-content: start; }
.rv-top { display: flex; justify-content: space-between; align-items: center; }
.rv-date { font-size: 12px; color: var(--muted); }
.rv-text { margin: 0; font-size: 15px; }
.rv-muted { color: var(--muted); font-style: italic; font-size: 13px; }
.rv-photo { padding: 0; border: 0; background: none; border-radius: var(--radius); overflow: hidden; width: 110px; height: 110px; cursor: zoom-in; }
.rv-photo img { width: 100%; height: 100%; object-fit: cover; }
.rv-by { font-size: 13px; color: var(--ink-2); }
.rv-verified { margin-left: 8px; font-size: 11px; color: #2f6b3a; }
.rv-verified::before { content: '✓ '; }
.rv-strip { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 6px; margin-bottom: 22px; scrollbar-width: thin; }
.rv-strip button { flex: 0 0 auto; width: 120px; height: 120px; padding: 0; border: 0; border-radius: var(--radius); overflow: hidden; cursor: zoom-in; }
.rv-strip img { width: 100%; height: 100%; object-fit: cover; }
.rv-lightbox { position: fixed; inset: 0; z-index: 80; background: rgba(0,0,0,.85); display: grid; place-items: center; padding: 20px; cursor: zoom-out; }
.rv-lightbox img { max-width: 100%; max-height: 90vh; border-radius: 4px; }
.rv-filters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 18px; }
.pcard-rating { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--muted); margin-top: 2px; }
.pdp-rating { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--ink-2); text-decoration: none; margin: -4px 0 6px; }
