/* Beluga — quiet luxury. Tokens first. */
:root {
  --paper: #F6F4EF;        /* off-white, warm */
  --paper-2: #EFECE5;      /* section alternate */
  --ink: #17201B;          /* green-black */
  --ink-2: #3C4540;
  --mute: #7E7A73;         /* warm grey */
  --line: #DAD5CC;
  --verde: #1F4A3C;        /* deep stone green */
  --verde-2: #2E6B57;
  --gold: #B89B6A;         /* veining hairline */
  --serif: "Cormorant Garamond", "Iowan Old Style", Georgia, serif;
  --sans: "Figtree", "Helvetica Neue", Arial, sans-serif;
  --max: 1280px;
  --pad: clamp(20px, 5vw, 72px);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--sans); font-size: 17px; line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--serif); font-weight: 500; letter-spacing: -0.01em; margin: 0; text-wrap: balance; }
.eyebrow { font-family: var(--sans); font-size: 12px; letter-spacing: .22em; text-transform: uppercase; color: var(--mute); }
.wrap { max-width: var(--max); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }

/* nav */
.nav { position: sticky; top: 0; z-index: 50; backdrop-filter: blur(10px); background: color-mix(in srgb, var(--paper) 82%, transparent); border-bottom: 1px solid transparent; transition: border-color .3s, background .3s; }
.nav.scrolled { border-bottom-color: var(--line); }
.nav .wrap { display: flex; align-items: center; justify-content: space-between; height: 68px; gap: 24px; }
.wordmark { font-family: var(--serif); font-size: 26px; letter-spacing: .04em; font-weight: 600; }
.wordmark span { color: var(--verde); }
.nav-links { display: flex; gap: 32px; font-size: 14px; letter-spacing: .04em; }
.nav-links a { position: relative; padding: 6px 0; color: var(--ink-2); }
.nav-links a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 1px; background: var(--ink); transition: right .3s; }
.nav-links a:hover::after { right: 0; }
.btn { display: inline-flex; align-items: center; gap: 10px; font-family: var(--sans); font-size: 13px; letter-spacing: .14em; text-transform: uppercase; padding: 14px 22px; border: 1px solid var(--ink); border-radius: 999px; color: var(--ink); background: transparent; cursor: pointer; transition: background .25s, color .25s; }
.btn:hover { background: var(--ink); color: var(--paper); }
.btn.solid { background: var(--ink); color: var(--paper); }
.btn.solid:hover { background: var(--verde); border-color: var(--verde); }
.btn.small { padding: 10px 16px; font-size: 12px; }
.nav .btn { border-color: var(--line); }
@media (max-width: 800px) { .nav-links { display: none; } }

/* hero */
.hero { position: relative; min-height: 92vh; display: grid; align-items: end; color: #fff; isolation: isolate; overflow: hidden;
  background: linear-gradient(160deg, #23352D 0%, #17201B 45%, #0E1512 100%); }
.hero-img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; object-position: 62% 50%; transform: scale(1.04); animation: heroIn 2.2s cubic-bezier(.2,.7,.2,1) forwards; }
@keyframes heroIn { to { transform: scale(1); } }
.hero::after { content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(90deg, rgba(14,21,18,.72) 0%, rgba(14,21,18,.35) 45%, rgba(14,21,18,.05) 100%),
              linear-gradient(0deg, rgba(14,21,18,.55) 0%, rgba(14,21,18,0) 45%); }
.hero .wrap { width: 100%; padding-top: 22vh; padding-bottom: 9vh; }
.hero h1 { font-size: clamp(48px, 8.5vw, 124px); line-height: .98; font-weight: 400; max-width: 11ch; }
.hero h1 em { font-style: italic; font-weight: 400; }
.hero p { font-size: clamp(16px, 1.4vw, 20px); max-width: 44ch; margin: 22px 0 34px; color: rgba(255,255,255,.86); }
.hero .eyebrow { color: rgba(255,255,255,.7); margin-bottom: 18px; }
.hero .btn { border-color: rgba(255,255,255,.7); color: #fff; }
.hero .btn:hover { background: #fff; color: var(--ink); }
.hero .scroll-hint { position: absolute; right: var(--pad); bottom: 28px; font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: rgba(255,255,255,.6); display: flex; align-items: center; gap: 12px; }
.hero .scroll-hint i { width: 1px; height: 40px; background: rgba(255,255,255,.5); display: block; }

/* reveal */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .9s ease, transform .9s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } .hero-img { animation: none; } }

/* ---------- sections ---------- */
section.block { padding: clamp(72px, 9vw, 128px) 0; }
.alt { background: var(--paper-2); }
.dark { background: var(--ink); color: var(--paper); }
.dark .eyebrow { color: rgba(246,244,239,.6); }
.dark .mute { color: rgba(246,244,239,.72); }
h2.display { font-size: clamp(36px, 5vw, 64px); line-height: 1.02; font-weight: 400; }
h2.display em { font-style: italic; }
h3 { font-size: 26px; font-weight: 500; }
.lead { font-size: clamp(18px, 1.5vw, 21px); line-height: 1.5; max-width: 52ch; color: var(--ink-2); }
.dark .lead { color: rgba(246,244,239,.85); }
.mute { color: var(--mute); }
.rule { width: 48px; height: 1px; background: var(--gold); margin: 22px 0; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 96px); align-items: center; }
.two-col.rev > :first-child { order: 2; }
.img { border-radius: 4px; overflow: hidden; background: var(--paper-2); }
.img img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: var(--ar, 4/5); }
.img.wide img { --ar: 3/2; }
.img.square img { --ar: 1/1; }
.caption { font-size: 12.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--mute); margin-top: 12px; }
.stack-sm { display: flex; flex-direction: column; gap: 14px; }
@media (max-width: 860px) { .two-col { grid-template-columns: 1fr; } .two-col.rev > :first-child { order: 0; } }

/* pitch */
.pitch-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(24px, 4vw, 64px); align-items: end; margin-top: 40px; }
.pitch-grid .render img { aspect-ratio: 3/4; object-fit: contain; background: #E9E7E1; }
@media (max-width: 860px) { .pitch-grid { grid-template-columns: 1fr; } }

/* lifestyle strip */
.strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 40px; }
.strip figure { margin: 0; }
.strip figcaption { display: flex; justify-content: space-between; gap: 12px; margin-top: 12px; font-size: 14px; }
.strip figcaption b { font-weight: 500; }
.strip figcaption span { color: var(--mute); font-size: 12.5px; letter-spacing: .08em; text-transform: uppercase; }
@media (max-width: 960px) { .strip { grid-template-columns: repeat(2, 1fr); } }

/* collection */
.drops { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; margin-top: 48px; }
.drop { background: #fff; border: 1px solid var(--line); border-radius: 6px; overflow: hidden; display: flex; flex-direction: column; transition: transform .35s ease, box-shadow .35s ease; }
.drop:hover { transform: translateY(-4px); box-shadow: 0 18px 40px -24px rgba(23,32,27,.35); }
.drop .art { aspect-ratio: 3/4; background: linear-gradient(180deg, #ECEAE4, #E1DED7); display: grid; place-items: center; position: relative; overflow: hidden; }
.drop .art img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 45%; transform: scale(1.18); transition: transform .8s ease; }
.drop:hover .art img { transform: scale(1.22); }
.drop .art .swatch { position: absolute; inset: 0; }
.tag { position: absolute; top: 12px; left: 12px; font-size: 10.5px; letter-spacing: .18em; text-transform: uppercase; padding: 6px 10px; border-radius: 999px; background: rgba(246,244,239,.9); color: var(--ink); }
.tag.ltd { background: var(--ink); color: var(--paper); }
.drop .body { padding: 18px 18px 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.drop h3 { font-size: 24px; }
.drop p { margin: 0; font-size: 14.5px; color: var(--ink-2); line-height: 1.5; flex: 1; }
.drop .btn { align-self: flex-start; margin-top: 8px; }
.drop.soon .art { filter: saturate(.85); }
@media (max-width: 1100px) { .drops { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 680px) { .drops { grid-template-columns: repeat(2, 1fr); gap: 12px; } .drop h3 { font-size: 20px; } }

/* stone steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.step { border-top: 1px solid var(--line); padding-top: 18px; }
.step .n { font-family: var(--serif); font-size: 30px; color: var(--gold); line-height: 1; }
.step h4 { margin: 10px 0 6px; font-family: var(--serif); font-weight: 500; font-size: 24px; }
.step p { margin: 0; font-size: 15px; color: var(--ink-2); }
@media (max-width: 680px) { .steps { grid-template-columns: 1fr; } }

/* full-bleed band */
.band { position: relative; min-height: 70vh; display: grid; align-items: center; color: #fff; isolation: isolate; overflow: hidden;
  background: linear-gradient(120deg, #2B3A33, #17201B); }
.band img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; object-position: 30% 50%; }
.band::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(270deg, rgba(14,21,18,.62) 0%, rgba(14,21,18,.15) 55%, rgba(14,21,18,0) 100%); }
.band .wrap { display: flex; justify-content: flex-end; }
.band blockquote { margin: 0; max-width: 20ch; font-family: var(--serif); font-size: clamp(30px, 4vw, 54px); line-height: 1.08; font-weight: 400; }
.band blockquote small { display: block; font-family: var(--sans); font-size: 13px; letter-spacing: .18em; text-transform: uppercase; margin-top: 22px; color: rgba(255,255,255,.7); }

/* journal */
.journal { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.journal article h3 { font-size: 26px; margin-top: 16px; }
.journal article p { margin: 8px 0 0; color: var(--ink-2); font-size: 15px; }
.journal article .caption { margin-top: 12px; }
@media (max-width: 860px) { .journal { grid-template-columns: 1fr; } }

/* notify */
.notify { text-align: center; }
.notify form { display: flex; gap: 10px; max-width: 520px; margin: 28px auto 0; }
.notify input { flex: 1; font: inherit; font-size: 15px; padding: 14px 18px; border: 1px solid var(--line); border-radius: 999px; background: #fff; color: var(--ink); outline: none; }
.notify input:focus { border-color: var(--ink); }
.notify .ok { display: none; margin-top: 18px; color: var(--verde); font-size: 15px; }

@media (max-width: 520px) { .notify form { flex-direction: column; } }

/* footer */
footer { border-top: 1px solid var(--line); padding: 40px 0 48px; font-size: 13.5px; color: var(--mute); }
footer .wrap { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px 32px; align-items: center; }
footer .links { display: flex; gap: 22px; }
footer a:hover { color: var(--ink); }
:focus-visible { outline: 2px solid var(--verde); outline-offset: 3px; }

/* mobile menu */
.nav-right { display: flex; align-items: center; gap: 12px; }
.menu-btn { display: none; width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 999px; background: transparent; cursor: pointer; position: relative; }
.menu-btn span { position: absolute; left: 12px; right: 12px; height: 1.5px; background: var(--ink); transition: transform .3s, top .3s; }
.menu-btn span:first-child { top: 15px; } .menu-btn span:last-child { top: 23px; }
.nav.open .menu-btn span:first-child { top: 19px; transform: rotate(45deg); }
.nav.open .menu-btn span:last-child { top: 19px; transform: rotate(-45deg); }
.mobile-menu { display: none; flex-direction: column; border-top: 1px solid var(--line); padding: 8px var(--pad) 16px; background: var(--paper); }
.mobile-menu a { padding: 12px 0; font-family: var(--serif); font-size: 24px; border-bottom: 1px solid var(--line); }
.mobile-menu a:last-child { border-bottom: 0; }
@media (max-width: 800px) { .menu-btn { display: block; } .nav.open .mobile-menu { display: flex; } }
/* refinements */
.pitch-grid .render img { aspect-ratio: 4/5; object-fit: cover; object-position: 50% 55%; }
@media (max-width: 680px) { .drop:last-child { grid-column: span 2; } .drop:last-child .art { aspect-ratio: 16/10; } }

/* editorial mosaic */
.mosaic { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; margin-top: 44px; align-items: start; }
.mosaic figure { margin: 0; }
.mosaic figcaption { display: flex; justify-content: space-between; gap: 12px; margin-top: 12px; font-size: 14px; }
.mosaic figcaption b { font-weight: 500; }
.mosaic figcaption span { color: var(--mute); font-size: 12.5px; letter-spacing: .08em; text-transform: uppercase; }
.m-a { grid-column: 1 / 5; } .m-b { grid-column: 5 / 7; }
.m-c { grid-column: 1 / 3; } .m-d { grid-column: 3 / 7; }
@media (max-width: 860px) { .mosaic { grid-template-columns: 1fr 1fr; gap: 12px; } .m-a, .m-d { grid-column: 1 / -1; } .m-b, .m-c { grid-column: auto; } }
.two-col.pitch { align-items: center; }

/* ===== v4 layout: tiles with text on the image, edge-to-edge splits, campaign band ===== */
.icon-btn { display: inline-grid; place-items: center; width: 40px; height: 40px; border: 0; background: transparent; color: var(--ink); cursor: pointer; position: relative; border-radius: 999px; }
.icon-btn:hover { background: var(--paper-2); }
.icon-btn .count { position: absolute; top: 6px; right: 4px; font-size: 10px; line-height: 1; background: var(--ink); color: var(--paper); border-radius: 999px; padding: 2px 5px; }
@media (max-width: 800px) { .icon-btn { display: none; } }

.sec-head { display: grid; grid-template-columns: 1.1fr .9fr; gap: 24px 48px; align-items: end; margin-bottom: 36px; }
.sec-head .lead { margin: 0; }
@media (max-width: 860px) { .sec-head { grid-template-columns: 1fr; } }

/* design + moment tiles: horizontal scroll on phones, grid on desktop */
.tiles-scroll { max-width: var(--max); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }
.tiles { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.tiles.moments { grid-template-columns: repeat(4, 1fr); }
.tile, .moment { position: relative; display: block; border-radius: 6px; overflow: hidden; background: var(--paper-2); aspect-ratio: 4/5; color: #fff; isolation: isolate; margin: 0; }
.tile img, .moment img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s cubic-bezier(.2,.7,.2,1); }
.tile:hover img, .moment:hover img { transform: scale(1.04); }
.tile::after, .moment::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(14,21,18,0) 45%, rgba(14,21,18,.72) 100%); z-index: 1; }
.tile .tag { position: absolute; top: 14px; left: 14px; z-index: 2; font-size: 10.5px; letter-spacing: .18em; text-transform: uppercase; padding: 6px 10px; border-radius: 999px; background: rgba(246,244,239,.92); color: var(--ink); }
.tile .tag.ltd { background: var(--ink); color: var(--paper); }
.tile-txt { position: absolute; left: 18px; right: 18px; bottom: 18px; z-index: 2; }
.tile-txt h3 { font-size: 28px; font-weight: 500; color: #fff; }
.tile-txt p { margin: 6px 0 10px; font-size: 13.5px; line-height: 1.45; color: rgba(255,255,255,.85); }
.tile-txt .link { font-size: 12px; letter-spacing: .16em; text-transform: uppercase; border-bottom: 1px solid rgba(255,255,255,.6); padding-bottom: 3px; }
.moment figcaption { position: absolute; left: 18px; right: 18px; bottom: 18px; z-index: 2; display: flex; flex-direction: column; gap: 4px; }
.moment figcaption small { font-size: 11.5px; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.8); }
.moment figcaption b { font-family: var(--serif); font-size: 30px; font-weight: 500; }
@media (max-width: 1000px) {
  .tiles-scroll { padding: 0; max-width: none; }
  .tiles { display: flex; gap: 12px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 0 var(--pad) 8px; scrollbar-width: none; }
  .tiles::-webkit-scrollbar { display: none; }
  .tile, .moment { flex: 0 0 72vw; max-width: 340px; scroll-snap-align: start; }
}

/* edge-to-edge split panels */
.split { display: grid; grid-template-columns: 1fr 1fr; min-height: 78vh; background: var(--paper-2); }
.split.rev .split-img { order: 2; }
.split-img { position: relative; min-height: 420px; }
.split-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.split-txt { padding: clamp(48px, 7vw, 112px) clamp(28px, 6vw, 96px); display: flex; flex-direction: column; justify-content: center; }
.split-txt .lead + .lead { margin-top: 14px; }
.split-txt .btn { align-self: flex-start; margin-top: 30px; }
.split.dark { background: var(--ink); color: var(--paper); }
.split.dark .eyebrow { color: rgba(246,244,239,.6); }
.split.dark .lead { color: rgba(246,244,239,.85); }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } .split.rev .split-img { order: 0; } .split-img { min-height: 62vw; } }

.steps-inline { list-style: none; padding: 0; margin: 30px 0 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.steps-inline li { border-top: 1px solid var(--line); padding-top: 14px; display: grid; gap: 4px; font-size: 14px; color: var(--ink-2); }
.steps-inline .n { font-family: var(--serif); font-size: 24px; color: var(--gold); line-height: 1; }
.steps-inline b { font-family: var(--serif); font-size: 22px; font-weight: 500; color: var(--ink); }
@media (max-width: 600px) { .steps-inline { grid-template-columns: 1fr; } }

/* campaign band: copy on the image */
.band-txt { max-width: 34ch; }
.band-txt h2 { font-size: clamp(30px, 4vw, 54px); line-height: 1.08; font-weight: 400; margin: 12px 0 26px; }
.band .eyebrow { color: rgba(255,255,255,.75); }
.band .btn { border-color: rgba(255,255,255,.7); color: #fff; }
.band .btn:hover { background: #fff; color: var(--ink); }

/* journal tiles with category on the image */
.jimg { position: relative; border-radius: 6px; overflow: hidden; aspect-ratio: 4/3; background: var(--paper-2); }
.jimg img { width: 100%; height: 100%; object-fit: cover; }
.jimg span { position: absolute; left: 12px; bottom: 12px; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; padding: 6px 10px; border-radius: 999px; background: rgba(246,244,239,.92); color: var(--ink); }
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

/* ===== v6: established store: prices, add to bag, bag drawer ===== */
.tile-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 4px; }
.tile .price { font-family: var(--serif); font-size: 20px; }
.tile .add { font: inherit; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; padding: 9px 14px; border-radius: 999px; border: 1px solid rgba(255,255,255,.75); background: rgba(246,244,239,.12); color: #fff; cursor: pointer; backdrop-filter: blur(4px); transition: background .25s, color .25s; }
.tile .add:hover { background: #fff; color: var(--ink); }
.bag { position: fixed; inset: 0; z-index: 90; background: rgba(23,32,27,.35); display: none; }
.bag.open { display: block; }
.bag-panel { position: absolute; top: 0; right: 0; height: 100%; width: min(440px, 100%); background: var(--paper); padding: 26px 26px 32px; display: flex; flex-direction: column; gap: 18px; overflow-y: auto; box-shadow: -20px 0 60px -30px rgba(23,32,27,.5); }
.bag-head { display: flex; justify-content: space-between; align-items: center; font-family: var(--serif); font-size: 26px; }
.bag-close { font-size: 26px; line-height: 1; }
.bag-items { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.bag-items li { display: flex; justify-content: space-between; align-items: center; gap: 12px; border-top: 1px solid var(--line); padding-top: 12px; }
.bag-items li span { display: grid; gap: 2px; } .bag-items small { color: var(--mute); font-size: 13px; }
.bag-items .rm { font: inherit; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; background: none; border: 0; color: var(--mute); cursor: pointer; }
.bag-items .rm:hover { color: var(--ink); }
.bag-empty { color: var(--mute); }
.bag-total { display: flex; justify-content: space-between; font-size: 17px; border-top: 1px solid var(--line); padding-top: 14px; }
.bag-total b { font-family: var(--serif); font-size: 24px; }
#checkout { display: grid; gap: 10px; }
#checkout input { font: inherit; font-size: 15px; padding: 13px 16px; border: 1px solid var(--line); border-radius: 999px; background: #fff; outline: none; }
#checkout input:focus { border-color: var(--ink); }
.bag-done { color: var(--verde); font-size: 15px; }


/* ===== v7: price list ===== */
.tile .price small { font-family: var(--sans); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.75); margin-left: 4px; }
.sleeve-only { display: inline-block; margin-top: 8px; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.85); border-bottom: 1px solid rgba(255,255,255,.45); padding-bottom: 2px; }
.sleeve-only:hover { border-color: #fff; color: #fff; }
.sets { padding-top: 0; }
.set-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.set { background: #fff; border: 1px solid var(--line); border-radius: 6px; padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 10px; }
.set.featured { border-color: var(--ink); }
.set.parts { background: var(--paper-2); }
.set-top { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.set-top b { font-family: var(--serif); font-size: 24px; font-weight: 500; }
.set .price { font-family: var(--serif); font-size: 24px; white-space: nowrap; }
.set .price small { font-family: var(--sans); font-size: 12px; color: var(--mute); letter-spacing: .04em; }
.set p { margin: 0; color: var(--ink-2); font-size: 14.5px; flex: 1; }
.set .btn { align-self: flex-start; margin-top: 6px; }
@media (max-width: 1000px) { .set-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .set-grid { grid-template-columns: 1fr; } }
.bag-items li { display: block; }
.bag-line { display: grid; grid-template-columns: 1fr auto auto; gap: 12px; align-items: start; }
.bag-line span { display: grid; gap: 2px; } .bag-line small { color: var(--mute); font-size: 13px; }
.bag-price { font-family: var(--serif); font-size: 20px; }
.chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; align-items: center; }
.chip { font: inherit; font-size: 12px; padding: 6px 11px; border-radius: 999px; border: 1px solid var(--line); background: #fff; color: var(--ink-2); cursor: pointer; }
.chip.on { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.chips[data-done] .chip:not(.on) { opacity: .45; }
.chips .need { font-size: 12px; color: var(--gold); margin-left: 4px; }
#checkout button:disabled { opacity: .55; cursor: not-allowed; }

/* v7.1: taller design tiles, single-line price row */
.tile { aspect-ratio: 2/3; }
.tile-txt p { font-size: 13px; line-height: 1.4; margin: 6px 0 10px; }
.tile-row { flex-wrap: nowrap; }
.tile .price { white-space: nowrap; font-size: 19px; }
.tile .price small { display: inline; }
.tile .add { white-space: nowrap; padding: 8px 12px; font-size: 11.5px; letter-spacing: .12em; }
.tile-txt h3 { font-size: 26px; }
.sleeve-only { white-space: nowrap; }
.set-top b { font-size: 22px; }
@media (max-width: 1000px) { .tile { flex-basis: 66vw; } }
/* v7.2: stack price + button inside tiles */
.tile-row { flex-direction: column; align-items: stretch; gap: 8px; }
.tile .add { text-align: center; justify-content: center; display: block; width: 100%; }
.tile-txt { bottom: 16px; }

/* v8: details (specs + faq) replaces the journal */
.specs { margin: 26px 0 0; display: grid; gap: 0; border-top: 1px solid var(--line); }
.specs div { display: grid; grid-template-columns: 110px 1fr; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 15px; }
.specs dt { font-family: var(--sans); font-size: 11.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--mute); padding-top: 3px; }
.specs dd { margin: 0; color: var(--ink-2); }
.faq { margin-top: 28px; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; list-style: none; padding: 14px 0; font-family: var(--serif); font-size: 21px; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--sans); font-size: 20px; color: var(--mute); transition: transform .25s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq p { margin: 0 0 16px; color: var(--ink-2); font-size: 15px; max-width: 58ch; }
@media (max-width: 480px) { .specs div { grid-template-columns: 1fr; gap: 4px; } }

/* v9: swap video in the details panel */
.video-box { aspect-ratio: 4/5; background: var(--paper-2); }
.video-box video { width: 100%; height: 100%; object-fit: cover; object-position: 50% 45%; display: block; }
@media (prefers-reduced-motion: reduce) { .video-box video { display: none; } .video-box { background: url(assets/video/sleeve-swap-poster.jpg) center/cover; } }
/* v9.1: show the whole swap video, no crop */
.video-box { aspect-ratio: 9/16; }
.video-box video { object-fit: cover; object-position: 50% 50%; }
#details .two-col { grid-template-columns: .82fr 1.18fr; align-items: start; }
/* v10: mobile nav: keep the bag, hide only search; bag close always visible */
@media (max-width: 800px) { .icon-btn { display: inline-grid; } .nav-right .icon-btn[aria-label="Search"] { display: none; } }
.bag-close { display: inline-grid !important; }
/* v10.1: 44px tap targets everywhere */
.btn, .btn.small, .tile .add, .icon-btn, .menu-btn, .chip, .bag-items .rm, .sleeve-only, .link { min-height: 44px; }
.btn.small { padding: 11px 18px; }
.tile .add { padding: 12px 12px; }
.chip { padding: 10px 13px; }
.sleeve-only, .link, .bag-items .rm { display: inline-flex; align-items: center; }
.nav-links a { padding: 12px 0; }
.faq summary { min-height: 48px; }
footer .links a { display: inline-block; padding: 10px 0; }
/* v10.2: details split only on wide screens; phones/tablets stack it */
#details .two-col { grid-template-columns: 1fr; }
@media (min-width: 861px) { #details .two-col { grid-template-columns: .82fr 1.18fr; } }
@media (max-width: 860px) { .video-box { max-width: 420px; margin: 0 auto; } #details figure { max-width: 420px; margin: 0 auto 8px; } }
@media (max-width: 860px) { #details figure { justify-self: center; width: 100%; } }

/* v10.3: no scroll hint on any device */
.hero .scroll-hint { display: none !important; }
/* v10.4: tighter vertical rhythm between sections */
section.block { padding: clamp(52px, 6.5vw, 88px) 0; }
section.block.sets { padding-top: 12px; }
section.block.notify { padding-top: clamp(48px, 6vw, 80px); }
.sec-head { margin-bottom: 28px; }
@media (max-width: 860px) { section.block.notify { padding-top: 64px; } section.block#details { padding-bottom: 40px; } }
