:root {
  --navy: #071525;
  --navy2: #0c223b;
  --navy3: #122c4a;
  --gold: #c99a48;
  --gold2: #f0c878;
  --cream: #f6f2e9;
  --ink: #101820;
  --muted: #6c7480;
  --line: #ddd6c8;
  --white: #fff;
  --danger: #b42318;
  --shadow: 0 24px 60px rgba(7, 21, 37, .18);
  --font: Inter, system-ui, -apple-system, "Segoe UI", sans-serif;
  --serif: "Cormorant Garamond", Georgia, serif;
  --nav-h: 88px;
  --pad: clamp(20px, 5vw, 72px);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; width: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  width: 100%;
  max-width: 100vw;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

.skip {
  position: absolute;
  left: -999px;
  top: 8px;
  background: var(--gold);
  color: var(--navy);
  padding: 8px 12px;
  z-index: 200;
}
.skip:focus { left: 8px; }

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  border: 1px solid transparent;
  padding: 14px 22px;
  min-height: 48px;
  border-radius: 2px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: 12px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold2), var(--gold));
  color: var(--navy);
  box-shadow: 0 10px 28px rgba(201, 154, 72, .28);
}
.btn-navy {
  background: var(--navy);
  color: var(--cream);
}
.btn-glass {
  color: #fff;
  border-color: rgba(255,255,255,.45);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(8px);
}
.btn-outline {
  color: var(--navy);
  border-color: rgba(7,21,37,.25);
  background: transparent;
}
.btn-outline.on-dark {
  color: #fff;
  border-color: rgba(255,255,255,.4);
}

/* ——— Promo + nav ——— */
.promo {
  background: var(--navy);
  color: var(--gold2);
  text-align: center;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 8px 16px;
  font-weight: 600;
  overflow: hidden;
  max-width: 100%;
}
.promo-short { display: none; }
.nav {
  position: sticky;
  top: 0;
  z-index: 80;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 0 var(--pad);
  background: #fff;
  border-bottom: 1px solid rgba(7, 21, 37, .08);
  box-shadow: 0 1px 0 rgba(7, 21, 37, .04);
}
.brand { margin-right: auto; display: flex; align-items: center; }
.brand img { height: 68px; width: auto; }
.desktop-nav {
  display: flex;
  gap: 26px;
  color: var(--navy);
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 600;
}
.desktop-nav a { position: relative; }
.desktop-nav a:hover,
.desktop-nav a.is-on { color: var(--gold); }
.nav-cta { flex: 0 0 auto; }
.menu-btn {
  display: none;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(7, 21, 37, .18);
  background: #fff;
  color: var(--navy);
  border-radius: 2px;
  appearance: none;
  -webkit-appearance: none;
}
.menu-bars {
  position: relative;
  display: block;
  width: 18px;
  height: 12px;
}
.menu-bars i {
  position: absolute;
  left: 0;
  display: block;
  width: 18px;
  height: 2px;
  background: var(--navy);
  border-radius: 1px;
  transition: transform .2s ease, opacity .2s ease, top .2s ease;
}
.menu-bars i:nth-child(1) { top: 0; }
.menu-bars i:nth-child(2) { top: 5px; }
.menu-bars i:nth-child(3) { top: 10px; }
.menu-btn[aria-expanded="true"] { border-color: var(--gold); }
.menu-btn[aria-expanded="true"] .menu-bars i:nth-child(1) {
  top: 5px;
  transform: rotate(45deg);
}
.menu-btn[aria-expanded="true"] .menu-bars i:nth-child(2) { opacity: 0; }
.menu-btn[aria-expanded="true"] .menu-bars i:nth-child(3) {
  top: 5px;
  transform: rotate(-45deg);
}
.mobile-nav {
  display: none;
  background: #fff;
  padding: 4px var(--pad) 18px;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 16px 32px rgba(7, 21, 37, .08);
}
.mobile-nav.is-open { display: grid; gap: 0; }
.mobile-nav a {
  color: var(--navy);
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 13px;
  font-weight: 600;
}
.mobile-nav a:last-child {
  border-bottom: 0;
  color: var(--gold);
}

/* ——— Type ——— */
.eyebrow {
  font-size: 12px;
  letter-spacing: .28em;
  font-weight: 700;
  color: var(--gold);
  margin: 0 0 14px;
  text-transform: uppercase;
}
.section-head {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}
.section-head h2,
.hero h1,
.band h2,
.cta-block h2,
.page-hero h1 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -.03em;
  line-height: .95;
  margin: 0 0 18px;
}
.section-head h2 { font-size: clamp(40px, 5vw, 64px); color: var(--navy); }
.section-head p { color: var(--muted); font-size: 16px; line-height: 1.75; margin: 0; }
.section-head.light h2 { color: #fff; }
.section-head.light p { color: #b7c1cc; }

/* ——— Hero ——— */
.hero {
  position: relative;
  min-height: calc(100vh - 88px);
  min-height: 720px;
  display: grid;
  place-items: end start;
  overflow: hidden;
  color: #fff;
}
.hero-slides { position: absolute; inset: 0; }
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% 50%;
  opacity: 0;
  transition: opacity 1.1s ease;
}
.hero-bg.is-on { opacity: 1; }
.hero-dots {
  position: absolute;
  z-index: 3;
  left: var(--pad);
  bottom: 28px;
  display: flex;
  gap: 8px;
}
.hero-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.35);
}
.hero-dots button.is-on { background: var(--gold2); }
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4,14,26,.88) 0%, rgba(4,14,26,.5) 42%, rgba(4,14,26,.08) 72%),
    linear-gradient(0deg, rgba(4,14,26,.62), transparent 48%);
}
.hero-copy {
  position: relative;
  z-index: 2;
  width: min(720px, 92%);
  padding: 0 0 90px var(--pad);
}
.hero h1 { font-size: clamp(52px, 7vw, 92px); }
.hero h1 em { color: var(--gold2); font-style: italic; }
.hero-copy > p:not(.eyebrow) {
  font-size: 18px;
  line-height: 1.7;
  max-width: 560px;
  color: #e4e8ed;
  margin: 0;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.hero-meta {
  display: flex;
  gap: 28px;
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.16);
}
.hero-meta b {
  display: block;
  font-family: var(--serif);
  font-size: 28px;
  color: var(--gold2);
  line-height: 1;
}
.hero-meta span { font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: #c5ced6; }

/* ——— Marquee ——— */
.trust {
  background: var(--navy);
  color: #e9d7b2;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px 28px;
  padding: 14px var(--pad);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.trust i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
}
.voices { background: var(--cream); padding: 72px var(--pad); }
.voices-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 40px;
  align-items: center;
}
.voices-grid img { width: 100%; box-shadow: var(--shadow); }
.voices blockquote {
  margin: 0 0 16px;
  font-family: var(--serif);
  font-size: clamp(26px, 3.4vw, 38px);
  line-height: 1.2;
  color: var(--navy);
  font-weight: 600;
}
.voices cite { color: var(--muted); font-size: 13px; font-style: normal; letter-spacing: .04em; }
.marquee {
  background: var(--navy);
  color: #e9d7b2;
  overflow: hidden;
  width: 100%;
  max-width: 100vw;
  border-top: 1px solid rgba(201,154,72,.2);
  border-bottom: 1px solid rgba(201,154,72,.2);
  position: relative;
}
.marquee-track {
  display: flex;
  gap: 40px;
  width: max-content;
  max-width: none;
  animation: drift 28s linear infinite;
  padding: 16px 0;
  font-family: var(--serif);
  letter-spacing: .22em;
  font-size: 13px;
}
.marquee i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  align-self: center;
  display: inline-block;
}
@keyframes drift {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ——— Sections ——— */
.section { padding: 100px var(--pad); }
.section.tight { padding-top: 70px; }

.collection {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 16px;
  max-width: 1440px;
  margin: 0 auto;
}
.collection.even {
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: none;
}
.collection.even .tile { min-height: 340px; }
.tile {
  display: block;
  position: relative;
  overflow: hidden;
  background: #111;
  min-height: 280px;
  color: #fff;
}
.tile.span-2 { grid-row: span 2; min-height: 576px; }
.tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform .7s ease;
}
.tile:hover img { transform: scale(1.04); }
.tile figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 70px 22px 20px;
  background: linear-gradient(transparent, rgba(6,17,29,.88));
}
.tile b {
  display: block;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 600;
}
.tile span { font-size: 12px; color: #d6dbe1; }
.chip {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--gold);
  color: var(--navy);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 8px;
}
.tile .chip { position: absolute; top: 14px; left: 14px; }

/* ——— Video ——— */
.cinema {
  position: relative;
  height: min(720px, 86vh);
  background: #000;
  overflow: hidden;
}
.cinema video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .72;
}
.cinema-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7,21,37,.78), transparent 62%);
}
.cinema-copy {
  position: absolute;
  z-index: 2;
  left: var(--pad);
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  max-width: 560px;
}
.cinema-copy h2 {
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 68px);
  line-height: .95;
  margin: 0 0 22px;
}

/* ——— Why Signature ——— */
.sig-why {
  background: var(--navy);
  color: #fff;
}
.sig-why .section-head h2 { color: #fff; }
.sig-why .section-head p { color: #b7c1cc; }
.sig-why .eyebrow { color: var(--gold2); }
.sig-why .sig-points h3 { color: #fff; }
.sig-why .sig-points p { color: #b7c1cc; }
.sig-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 40px;
  max-width: 1040px;
  margin: 0 auto 36px;
}
.sig-points h3 {
  margin: 0 0 8px;
  font-size: 18px;
  color: var(--navy);
}
.sig-points p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 15px;
}

/* ——— Use cases ——— */
.use-sec {
  background: #fff;
  padding-top: 88px;
}
.use-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1440px;
  margin: 0 auto;
}
.use-card { margin: 0; }
.use-card img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  display: block;
}
.use-card figcaption { padding: 14px 2px 0; }
.use-card b {
  display: block;
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.15;
  margin: 0 0 6px;
}
.use-card span {
  display: block;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

/* ——— Editions ——— */
.editions { background: var(--cream); }
.edition-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1440px;
  margin: 0 auto;
}
.edition {
  display: block;
  margin: 0;
  background: var(--navy);
  overflow: hidden;
  position: relative;
}
.edition img {
  aspect-ratio: 4 / 3;
  width: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.edition:hover img { transform: scale(1.03); }
.edition .chip { position: absolute; top: 12px; left: 12px; }
.edition figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  background: rgba(7,21,37,.88);
  color: #f2d7a1;
  padding: 10px 13px;
  font-family: var(--serif);
  font-size: 20px;
}
.legal-note {
  max-width: 880px;
  margin: 22px auto 0;
  text-align: center;
  font-size: 11px;
  line-height: 1.55;
  color: #777;
}

/* ——— Gallery ——— */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 210px;
  gap: 10px;
  max-width: 1440px;
  margin: 0 auto;
}
.gallery-grid a {
  overflow: hidden;
  background: #111;
}
.gallery-grid a.wide { grid-column: span 2; }
.gallery-grid a.tall { grid-row: span 2; }
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease, filter .5s ease;
}
.gallery-grid a:hover img { transform: scale(1.04); }

/* ——— Story / merch ——— */
.split {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 64px;
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
}
.split img { width: 100%; box-shadow: var(--shadow); }
.split h2 {
  font-family: var(--serif);
  font-size: clamp(40px, 4.5vw, 58px);
  line-height: 1;
  margin: 0 0 18px;
  color: var(--navy);
}
.split > div > p:not(.eyebrow) { color: var(--muted); line-height: 1.8; }
.mini-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 24px;
  margin-top: 24px;
}
.mini-list span {
  border-top: 1px solid var(--line);
  padding: 13px 0;
  font-size: 13px;
  font-weight: 600;
}

/* ——— Process ——— */
.process { background: var(--navy); padding: 100px var(--pad); }
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  max-width: 1320px;
  margin: 0 auto;
  background: rgba(255,255,255,.16);
}
.steps article {
  background: var(--navy);
  padding: 34px 28px;
  color: #fff;
  min-height: 240px;
}
.steps span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 44px;
}
.steps h3 {
  font-family: var(--serif);
  font-size: 26px;
  margin: 16px 0 10px;
}
.steps p { color: #aeb8c4; line-height: 1.7; font-size: 14px; margin: 0; }

/* ——— Films ——— */
.films {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 16px;
  max-width: 1440px;
  margin: 0 auto;
}
.film {
  position: relative;
  background: #000;
  min-height: 320px;
}
.film video { width: 100%; height: 100%; object-fit: cover; min-height: 320px; }
.film label {
  position: absolute;
  left: 14px;
  bottom: 14px;
  color: #fff;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: rgba(7,21,37,.7);
  padding: 8px 10px;
}

/* ——— FAQ ——— */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  gap: 8px;
}
.faq-list details {
  border: 1px solid var(--line);
  background: #fff;
  padding: 0 18px;
}
.faq-list summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 0;
  font-weight: 700;
  color: var(--navy);
  font-size: 16px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--gold);
  font-weight: 600;
}
.faq-list details[open] summary::after { content: "–"; }
.faq-list details p {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.65;
  font-size: 15px;
}

/* ——— CTA block ——— */
.cta-block {
  background: #fff;
  padding: 88px var(--pad);
  color: var(--navy);
  text-align: center;
  border-top: 1px solid var(--line);
}
.cta-block img { width: min(280px, 70vw); margin: 0 auto 28px; }
.cta-block h2 { font-size: clamp(40px, 5vw, 64px); color: var(--navy); }
.cta-block p { color: var(--muted); max-width: 620px; margin: 0 auto; line-height: 1.7; }
.cta-actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-top: 28px; }

/* ——— Footer ——— */
footer {
  background: #030b13;
  color: #7e8b99;
  padding: 22px var(--pad) 96px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 12px;
  flex-wrap: wrap;
}
footer a:hover { color: var(--gold2); }
.shop-grid img {
  width: 100%;
  height: 100%;
  max-height: 620px;
  object-fit: cover;
  object-position: center 35%;
  box-shadow: var(--shadow);
}

.proof {
  background: var(--navy);
  color: #fff;
  padding: 80px var(--pad);
}
.proof-inner { max-width: 1100px; margin: 0 auto; text-align: center; }
.proof h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1;
  margin: 0 0 16px;
}
.proof-inner > p:not(.eyebrow) {
  color: #b7c1cc;
  max-width: 640px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.proof-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.proof-row a {
  display: block;
  color: #fff;
  background: #0c223b;
  overflow: hidden;
}
.proof-row img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.proof-row span {
  display: block;
  padding: 12px;
  font-family: var(--serif);
  font-size: 22px;
}
.mobile-bar {
  display: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  z-index: 70;
  background: var(--navy);
  border-top: 1px solid rgba(201,154,72,.35);
}
.mobile-bar a {
  color: #fff;
  text-align: center;
  padding: 14px 4px calc(14px + env(safe-area-inset-bottom));
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: .03em;
  border-right: 1px solid rgba(255,255,255,.12);
  min-width: 0;
}
.mobile-bar a:last-child {
  background: linear-gradient(135deg, var(--gold2), var(--gold));
  color: var(--navy);
  letter-spacing: .03em;
  border-right: 0;
}

/* ——— Order page ——— */
.page-hero {
  background:
    linear-gradient(180deg, rgba(7,21,37,.55), rgba(7,21,37,.82)),
    url("assets/cart-lineup.jpg") center/cover;
  color: #fff;
  padding: 72px var(--pad) 56px;
}
.page-hero h1 { font-size: clamp(44px, 6vw, 76px); }
.page-hero p { max-width: 620px; color: #d5dbe2; margin: 0; line-height: 1.7; }

.catalog {
  width: min(100% - 2rem, 1100px);
  margin: 0 auto;
  padding: 36px 0 200px;
}
.catalog-intro {
  display: grid;
  gap: .4rem;
  margin-bottom: 22px;
}
.catalog-intro h2 {
  font-family: var(--serif);
  font-size: 32px;
  margin: 0;
  color: var(--navy);
}
.catalog-intro p { margin: 0; color: var(--muted); font-size: 14px; }

.cat-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 32px 0 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--navy);
  scroll-margin-top: calc(var(--nav-h) + 16px);
}

.prod-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.prod-grid.three { grid-template-columns: repeat(3, 1fr); }

.prod {
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.prod.is-in-cart { border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold); }
.prod img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #111;
}
.prod-body { padding: 14px 14px 16px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.prod-top { display: flex; justify-content: space-between; gap: 8px; align-items: flex-start; }
.prod-top strong {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.1;
  color: var(--navy);
}
.tag {
  flex: 0 0 auto;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--gold2);
  padding: 3px 6px;
}
.prod-size { margin: 0; font-size: 13px; color: var(--muted); }
.prod-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 8px;
}
.prod-foot em {
  font-style: normal;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gold);
}

.add-btn {
  appearance: none;
  border: none;
  background: linear-gradient(135deg, var(--gold2), var(--gold));
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  min-height: 36px;
  min-width: 72px;
  padding: 8px 14px;
  cursor: pointer;
}
.add-btn.is-hidden { display: none !important; }

.qty-ctrl {
  display: none;
  align-items: center;
  gap: 4px;
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 3px;
}
.qty-ctrl.is-on { display: inline-flex !important; }
.qty-ctrl button {
  width: 32px;
  height: 32px;
  border: none;
  background: #fff;
  color: var(--navy);
  font-weight: 800;
  font-size: 18px;
  line-height: 1;
}
.qty-ctrl .qty-val {
  min-width: 1.4rem;
  text-align: center;
  font-weight: 800;
  font-size: 14px;
}

.opt-list { display: grid; gap: 8px; }
.opt {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  background: #fff;
}
.opt.is-in-cart { border-color: var(--gold); }
.opt-info { flex: 1; min-width: 0; }
.opt-info strong { display: block; font-size: 15px; color: var(--navy); }
.opt-info span { font-size: 12px; color: var(--muted); }

/* ——— Sticky checkout ——— */
.sticky {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 100%;
  z-index: 90;
  padding: .7rem .85rem calc(.7rem + env(safe-area-inset-bottom));
  background: rgba(255,255,255,.97);
  border-top: 1px solid var(--line);
  box-shadow: 0 -10px 30px rgba(7,21,37,.1);
}
.sticky-inner { max-width: 720px; margin: 0 auto; }
.cart-preview {
  display: none;
  margin-bottom: .55rem;
  padding: .55rem .7rem;
  background: var(--cream);
  border: 1px solid var(--line);
  max-height: 110px;
  overflow: auto;
}
.cart-preview.is-on { display: block; }
.cart-line { font-size: 13px; color: var(--muted); margin: 0 0 .25rem; line-height: 1.35; }
.cart-foot {
  display: flex;
  justify-content: space-between;
  margin-top: .35rem;
  padding-top: .35rem;
  border-top: 1px solid var(--line);
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
}
.ship-box {
  display: none;
  margin-bottom: .5rem;
  padding: .55rem .65rem;
  background: #fff;
  border: 1px solid var(--line);
}
.ship-box.is-on { display: block; }
.ship-title {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 .4rem;
}
.ship-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .35rem;
}
.ship-grid .full { grid-column: 1 / -1; }
.ship-grid label {
  display: flex;
  flex-direction: column;
  gap: .15rem;
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.ship-grid input,
.ship-grid textarea {
  min-height: 42px;
  padding: .45rem .55rem;
  border: 1.5px solid var(--line);
  background: var(--cream);
  color: var(--ink);
  font-size: 16px;
  width: 100%;
}
.ship-grid textarea { min-height: 64px; resize: vertical; }
.ship-grid input:focus,
.ship-grid textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: #fff;
}
.ship-grid input.is-err,
.ship-grid textarea.is-err {
  border-color: var(--danger);
  background: #fef2f2;
}
.ship-err {
  display: none;
  margin: .35rem 0 0;
  font-size: 12px;
  font-weight: 700;
  color: var(--danger);
}
.ship-err.is-on { display: block; }

.sticky-actions { display: flex; align-items: stretch; gap: .45rem; }
.step-next,
.send-btn {
  flex: 1 1 auto;
  min-width: 0;
  min-height: 52px;
  border: none;
  background: linear-gradient(135deg, var(--gold2), var(--gold));
  color: var(--navy);
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
}
.step-next.is-disabled,
.send-btn.is-disabled {
  opacity: .5;
  pointer-events: none;
}
.step-next.is-hidden,
.send-btn.is-hidden { display: none !important; }
.step-back,
.cart-clear {
  flex: 0 0 auto;
  min-height: 52px;
  padding: 0 14px;
  border: 1.5px solid var(--line);
  background: #fff;
  color: var(--muted);
  font-weight: 800;
  font-size: 12px;
  display: none;
  align-items: center;
}
.step-back.is-on,
.cart-clear.is-on { display: inline-flex; }
.step-back { color: var(--navy); }
.cart-clear:hover { border-color: var(--danger); color: var(--danger); }
.cta-note {
  display: none;
  margin: .4rem 0 0;
  font-size: 12px;
  color: var(--muted);
  text-align: center;
}
.cta-note.is-on { display: block; }
body.is-ship-step { padding-bottom: 320px; }
body.is-send-step { padding-bottom: 280px; }

/* ——— Lightbox ——— */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: rgba(4, 12, 22, .92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.lightbox.is-on { display: flex; }
.lightbox img { max-width: min(1200px, 94vw); max-height: 90vh; object-fit: contain; }
.lightbox button {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.3);
  background: transparent;
  color: #fff;
  font-size: 22px;
}

.toast {
  position: fixed;
  z-index: 130;
  bottom: 28px;
  left: 50%;
  transform: translate(-50%, 20px);
  background: #fff;
  color: var(--navy);
  padding: 12px 18px;
  box-shadow: 0 12px 36px #0005;
  opacity: 0;
  pointer-events: none;
  transition: .3s;
  font-size: 14px;
  font-weight: 600;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }

/* ——— Shop / story ——— */
.shop {
  background: var(--cream);
}
.shop-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 56px;
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
}
.shop-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 28px;
  margin-top: 28px;
}
.shop-facts b {
  display: block;
  font-family: var(--serif);
  font-size: 22px;
  color: var(--navy);
  line-height: 1.15;
}
.shop-facts span { font-size: 13px; color: var(--muted); }

/* ——— Cart detail ——— */
.cart-page { background: #fff; }
.cart-wrap {
  width: min(100% - 2rem, 1200px);
  margin: 0 auto;
  padding: 36px 0 80px;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 40px;
}
.cart-stage img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #111;
}
.thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-top: 10px;
}
.thumbs button {
  padding: 0;
  border: 2px solid transparent;
  background: #111;
}
.thumbs button.is-on { border-color: var(--gold); }
.thumbs img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.cart-info h1 {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 62px);
  line-height: .95;
  margin: 0 0 14px;
  color: var(--navy);
}
.cart-info .lede { color: var(--muted); line-height: 1.75; }
.spec { margin: 24px 0; }
.spec p { margin: 0 0 10px; font-size: 14px; }
.spec b { color: var(--navy); }

/* ——— Configurator ——— */
.pick.is-on { border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold); }
.pick { cursor: pointer; position: relative; }
.pick .choose {
  appearance: none;
  border: none;
  background: linear-gradient(135deg, var(--gold2), var(--gold));
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  min-height: 36px;
  padding: 8px 14px;
}
.pick.is-on .choose { background: var(--navy); color: var(--cream); }
.opt-lead {
  margin: -6px 0 16px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
  max-width: 640px;
}
.check-opt {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 16px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
}
.check-opt.is-on { border-color: var(--gold); background: #fffdf6; }
.check-opt input { width: 18px; height: 18px; accent-color: var(--gold); margin-top: 3px; flex: 0 0 18px; }
.check-opt .opt-inc {
  display: block;
  margin-top: 3px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
}
.check-opt .opt-blurb {
  display: block;
  margin-top: 6px;
  font-size: 14px;
  line-height: 1.45;
  color: var(--ink);
}
.theme-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; }
.theme-card {
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  overflow: hidden;
  text-align: left;
  padding: 0;
}
.theme-card.is-on { border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold); }
.theme-card img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.theme-card span {
  display: block;
  padding: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
}

/* ——— Confirm ——— */
.confirm {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 140;
  background: rgba(4, 12, 22, .72);
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.confirm.is-on { display: flex; }
.confirm-card {
  width: min(560px, 100%);
  background: #fff;
  padding: 28px 24px;
  box-shadow: var(--shadow);
}
.confirm-card h2 {
  font-family: var(--serif);
  font-size: 36px;
  margin: 0 0 10px;
  color: var(--navy);
}
.confirm-card p { color: var(--muted); margin: 0 0 16px; line-height: 1.6; }
.confirm-msg {
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 12px;
  font-size: 13px;
  white-space: pre-wrap;
  max-height: 180px;
  overflow: auto;
  margin-bottom: 16px;
}
.confirm-actions { display: flex; flex-wrap: wrap; gap: 8px; }

.inspiration { background: #fff; }
.inspiration .edition-grid { grid-template-columns: repeat(4, 1fr); }

.reveal { opacity: 0; transform: translateY(16px); transition: .65s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1050px) {
  .desktop-nav { display: none; }
  .menu-btn { display: inline-flex; align-items: center; justify-content: center; }
  .collection, .collection.even { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .tile.span-2 { grid-column: 1 / -1; grid-row: auto; min-height: 420px; }
  .proof-row { grid-template-columns: 1fr 1fr; }
  .edition-grid, .use-grid { grid-template-columns: 1fr 1fr; }
  .sig-points { grid-template-columns: 1fr; gap: 22px; }
  .steps { grid-template-columns: 1fr 1fr; }
  .split, .films, .shop-grid, .cart-wrap, .voices-grid { grid-template-columns: 1fr; }
  .theme-grid, .inspiration .edition-grid { grid-template-columns: 1fr 1fr; }
  .thumbs { grid-template-columns: repeat(4, 1fr); }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; }
  .gallery-grid a.wide, .gallery-grid a.tall { grid-column: auto; grid-row: auto; }
  .nav-cta { display: none; }
  .prod-grid.three { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  :root { --nav-h: 64px; }
  html, body { overflow-x: clip; max-width: 100%; }
  body { padding-bottom: 62px; }
  body.order-page { padding-bottom: 0; }
  .nav { padding: 0 14px; }
  .brand img { height: 46px; }
  .promo {
    padding: 7px 12px;
    font-size: 10px;
    letter-spacing: .06em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .promo-full { display: none; }
  .promo-short { display: inline; letter-spacing: .06em; }
  .trust {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 10px;
    font-size: 10px;
    letter-spacing: .03em;
    padding: 12px 14px;
    text-align: center;
  }
  .trust i { display: none; }
  .hero {
    min-height: calc(100dvh - 64px);
    place-items: end stretch;
    max-width: 100%;
  }
  .hero-shade {
    background: linear-gradient(0deg, rgba(4,14,26,.94) 0%, rgba(4,14,26,.5) 62%, rgba(4,14,26,.22));
  }
  .hero-copy {
    padding: 0 16px 88px;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
  .hero h1 { font-size: 32px; line-height: .98; }
  .hero-copy > p:not(.eyebrow) {
    font-size: 14px;
    overflow-wrap: anywhere;
    max-width: 100%;
  }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .hero-meta { display: none; }
  .hero-dots { left: 16px; bottom: 72px; }
  .voices { padding: 40px 16px; }
  .voices-grid { grid-template-columns: 1fr; gap: 18px; }
  .voices blockquote { font-size: 22px; }
  .section, .process, .cta-block { padding: 48px 16px; }
  .section-head h2, .process h2, .cta-block h2 { font-size: 28px; }
  .collection, .collection.even, .edition-grid, .use-grid, .steps, .prod-grid, .prod-grid.three, .gallery-grid, .proof-row, .voices-grid, .sig-points {
    grid-template-columns: 1fr;
  }
  .tile, .tile.span-2 { min-height: 300px; }
  .cinema { height: 420px; }
  .cinema-copy { left: 16px; right: 16px; }
  .cinema-copy h2 { font-size: 32px; }
  .mini-list { grid-template-columns: 1fr; }
  footer { padding: 20px 16px 88px; }
  .mobile-bar { display: grid; }
  body.order-page .mobile-bar { display: none; }
  .page-hero { padding: 36px 16px 28px; }
  .page-hero h1 { font-size: 36px; }
  .page-hero p { overflow-wrap: anywhere; font-size: 15px; }
  .ship-grid { grid-template-columns: 1fr; }
  .sticky { padding: .55rem .6rem calc(.55rem + env(safe-area-inset-bottom)); }
  .sticky-actions { flex-wrap: wrap; }
  .send-btn { flex: 1 1 46%; }
  .catalog { padding: 24px 0 180px; width: min(100% - 1.5rem, 1100px); }
}

