:root {
  --black: #0a0a0a;
  --deep: #111111;
  --off-white: #f4f2ee;
  --stone: #c8bfb4;
  --gold: #c6ad8d;
  --hero-gold: #e8c99a;
  --dim: #6b6460;
  --line: rgba(168, 149, 110, 0.18);
  --bar-bg: #cbb994;
  --bar-ink: #1c1712;

  /* legacy aliases used by shared page chrome below */
  --bg: var(--black);
  --bg-panel: var(--deep);
  --ink: var(--off-white);
  --ink-dim: var(--stone);
  --ink-faint: var(--dim);
  --accent: var(--gold);
  --em: var(--stone);
  --border: var(--line);
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--black);
  color: var(--stone);
  font-family: "Jost", "Helvetica Neue", -apple-system, sans-serif;
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, .serif { font-family: "Cormorant Garamond", Georgia, serif; font-weight: 300; color: var(--off-white); }
em { font-style: italic; color: var(--stone); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.caps { text-transform: uppercase; letter-spacing: 0.14em; font-size: 12px; }
.kicker { color: var(--gold); display: inline-flex; align-items: center; gap: 8px; }
.kicker::before { content: ''; width: 18px; height: 1px; background: var(--gold); flex-shrink: 0; }
hr.rule, .rule { border: none; border-top: 1px solid var(--line); margin: 0; }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

.top-fixed {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
}
.top-fixed .site-header {
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.top-fixed.scrolled .site-header {
  background: rgba(10,10,10,0.92);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(6px);
}
/* Inner pages (no full-bleed hero video behind them) keep the header
   permanently opaque instead of fading in on scroll -- only the homepage
   has content worth seeing through a transparent header. */
.top-fixed.solid .site-header {
  background: rgba(10,10,10,0.96);
  box-shadow: 0 1px 0 var(--line);
}

.bar {
  background: var(--bar-bg); color: var(--bar-ink);
  text-align: center; padding: 10px 16px;
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  overflow-x: auto; white-space: nowrap;
}
.bar s { opacity: 0.6; text-decoration-thickness: 1px; }

/* ── Legal / policy footer (mirrors the theme's global Dawn footer) ── */
.legal-footer {
  background: var(--black); padding: 22px 24px; text-align: center;
  font-size: 12px; color: var(--dim); letter-spacing: 0.02em;
}
.legal-footer a { color: var(--dim); }
.legal-footer a:hover { color: var(--off-white); }
.legal-footer .sep { margin: 0 8px; opacity: 0.5; }

header.site-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 64px;
  background: transparent;
}
header.site-header .logo img { height: 34px; width: auto; filter: drop-shadow(0 1px 6px rgba(0,0,0,0.5)); }
nav.site-nav { display: flex; gap: 34px; }
nav.site-nav a { font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--stone); text-shadow: 0 1px 6px rgba(0,0,0,0.5); }
nav.site-nav a:hover { color: var(--off-white); }

@media (max-width: 960px) {
  header.site-header { padding: 20px 24px; }
}

/* ── HERO ─────────────────────────────────────────────── */
.hero {
  height: 100vh; min-height: 640px;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 64px 64px 80px;
  position: relative; overflow: hidden;
}
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.hero-scrim {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to bottom, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.45) 20%, rgba(0,0,0,0.55) 60%, rgba(0,0,0,0.92) 100%);
}
.hero-glow {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 40% 50% at 50% 45%, rgba(168,149,110,0.03) 0%, transparent 65%);
}
.hero-vline {
  position: absolute; top: 0; left: 64px; width: 1px; height: 100%;
  background: linear-gradient(transparent 8%, var(--line) 35%, var(--line) 72%, transparent 96%);
}
.hero-series-vert {
  position: absolute; top: 124px; right: 64px; z-index: 1;
  font-size: 14px; letter-spacing: 0.35em; text-transform: uppercase;
  color: rgba(244,242,238,0.4); writing-mode: vertical-rl;
}
.hero-content { position: relative; max-width: 700px; }
.hero-kicker {
  font-size: 12px; letter-spacing: 0.45em; text-transform: uppercase;
  color: var(--hero-gold); margin-bottom: 32px;
  display: flex; align-items: center; gap: 14px;
  text-shadow: 0 1px 12px rgba(0,0,0,0.9), 0 0 24px rgba(0,0,0,0.8);
}
.hero-kicker::before { content: ''; width: 36px; height: 1px; background: var(--hero-gold); flex-shrink: 0; }
.hero-title {
  font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 300;
  font-size: clamp(58px, 8.5vw, 110px); line-height: 0.95; letter-spacing: -0.02em;
  margin: 0 0 48px; color: #f4f2ee;
  text-shadow: 0 2px 32px rgba(0,0,0,0.8), 0 1px 8px rgba(0,0,0,0.5);
}
.hero-title em { font-style: italic; color: #d4cdc4; display: block; text-shadow: 0 2px 32px rgba(0,0,0,0.8); }
.hero-sub { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.hero-body {
  font-size: 15px; color: rgba(244,242,238,0.85); line-height: 1.8; max-width: 340px;
  letter-spacing: 0.02em; text-shadow: 0 1px 12px rgba(0,0,0,0.7);
}
.hero-locations { display: block; margin-top: 4px; }
.hero-scroll {
  font-size: 12px; letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(244,242,238,0.45); display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.hero-scroll::after { content: ''; width: 1px; height: 52px; background: linear-gradient(rgba(244,242,238,0.45), transparent); }

@media (max-width: 960px) {
  .hero { padding: 0 28px 64px; }
  .hero-vline { left: 28px; }
  .hero-series-vert { right: 28px; }
}

/* ── DROPS ────────────────────────────────────────────── */
.wrap.drops-wrap { max-width: none; padding: 120px 64px 0; }
.section-title-row { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 64px; padding: 0; border-top: none; }
.section-title-row .section-title {
  font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 300; font-size: clamp(36px, 4vw, 52px);
  line-height: 1.05; color: var(--dim); padding: 0;
}
.view-all-link {
  font-size: 12px; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold);
  display: flex; align-items: center; gap: 12px; transition: gap 0.3s;
}
.view-all-link::after { content: '→'; font-size: 14px; }
.view-all-link:hover { gap: 18px; color: var(--gold); }

.drops-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); margin: 0; }
.drop-card { background: var(--black); padding: 0 0 48px; display: block; position: relative; transition: background 0.35s; overflow: hidden; }
.drop-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: left; transition: transform 0.4s; z-index: 1;
}
.drop-card:hover { background: #151515; }
.drop-card:hover::before { transform: scaleX(1); }
.drop-card .dc-image { width: 100%; height: 420px; overflow: hidden; background: var(--deep); margin-bottom: 36px; }
.drop-card img {
  width: 100%; height: 100%; object-fit: cover; object-position: center center; display: block;
  transition: transform 0.7s ease; filter: grayscale(8%) contrast(1.04);
}
.drop-card:hover img { transform: scale(1.04); }
.drop-card .dc-body { padding: 0 40px; }
.drop-card .dc-label { font-size: 12px; letter-spacing: 0.4em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; display: block; }
.drop-card .dc-title { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 30px; font-weight: 300; margin: 0 0 8px; line-height: 1.1; color: var(--off-white); }
.drop-card .dc-sub { display: block; font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--dim); margin-bottom: 32px; }
.drop-card .dc-desc { font-size: 14px; color: var(--stone); line-height: 1.75; margin-bottom: 36px; }
.drop-card .dc-price-row {
  display: flex; justify-content: space-between; align-items: flex-end;
  padding-top: 24px; border-top: 1px solid var(--line);
}
.drop-card .dc-price { font-family: 'Cormorant Garamond', Georgia, serif; display: flex; flex-direction: column; gap: 2px; }
.drop-card .dc-compare {
  font-family: 'Jost', sans-serif; font-size: 15px; font-weight: 400; color: var(--dim);
  text-decoration: line-through; text-decoration-color: var(--dim); text-decoration-thickness: 1px; letter-spacing: 0.05em;
}
.drop-card .dc-price-new { color: var(--gold); font-size: 32px; font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 300; }
.drop-card .dc-label-new { font-family: 'Jost', sans-serif; font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); font-weight: 400; margin-top: 4px; }
.drop-card .dc-editions { font-size: 12px; color: var(--dim); letter-spacing: 0.15em; text-transform: uppercase; text-align: right; line-height: 1.5; }

@media (max-width: 960px) {
  .wrap.drops-wrap { padding: 80px 28px 0; }
  .drops-grid { grid-template-columns: 1fr; }
  .drop-card .dc-image { height: 280px; }
}

/* ── ALL PIECES (secondary grid, not in the original theme's homepage but used for full inventory) ── */
.wrap.all-pieces-wrap { max-width: none; padding: 120px 64px 0; }
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1px; background: var(--line); margin-top: 40px; }
.product-card { background: var(--black); overflow: hidden; }
.product-card img { aspect-ratio: 3/4; object-fit: cover; width: 100%; background: #171717; transition: transform .5s ease; filter: grayscale(8%) contrast(1.04); }
.product-card:hover img { transform: scale(1.04); }
.product-card .pc-body { padding: 18px 20px 30px; }
.product-card .pc-title { font-family: "Cormorant Garamond", serif; font-size: 20px; color: var(--off-white); margin-bottom: 6px; }
.product-card .pc-price { font-size: 13px; color: var(--gold); letter-spacing: 0.04em; }

@media (max-width: 960px) { .wrap.all-pieces-wrap { padding: 80px 28px 0; } }

/* ── BESPOKE BAND ─────────────────────────────────────── */
.bespoke-band {
  margin: 120px 64px 0;
  border: 1px solid var(--line);
  padding: 64px 72px;
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
  position: relative; overflow: hidden;
}
.bespoke-band::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 100% at 80% 50%, rgba(168,149,110,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.bespoke-band-title { font-family: 'Cormorant Garamond', Georgia, serif; font-size: clamp(32px, 3.5vw, 46px); font-weight: 300; line-height: 1.1; margin: 0 0 16px; color: var(--dim); position: relative; }
.bespoke-band-title em { font-style: italic; color: var(--stone); }
.bespoke-band-body { font-size: 16px; color: var(--stone); line-height: 1.8; max-width: 480px; position: relative; }
.bespoke-band-cta {
  display: inline-block; flex-shrink: 0; position: relative;
  border: 1px solid var(--gold); color: var(--gold);
  font-size: 12px; letter-spacing: 0.35em; text-transform: uppercase;
  padding: 18px 44px; transition: all 0.3s; white-space: nowrap;
}
.bespoke-band-cta:hover { background: var(--gold); color: var(--black); }

@media (max-width: 960px) {
  .bespoke-band { margin: 80px 28px 0; padding: 48px 36px; flex-direction: column; align-items: flex-start; }
}

/* ── SINGULARITY ──────────────────────────────────────── */
.singular-block {
  margin-top: 120px;
  padding: 0; text-align: left;
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--black);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.singular-left { background: var(--deep); padding: 80px 64px; }
.singular-right { background: var(--deep); padding: 80px 64px; display: flex; flex-direction: column; justify-content: center; }
.singular-block .section-label {
  font-size: 12px; letter-spacing: 0.42em; text-transform: uppercase; color: var(--gold); margin-bottom: 48px;
  display: flex; align-items: center; gap: 14px;
}
.singular-block .section-label::before { content: ''; width: 36px; height: 1px; background: var(--gold); flex-shrink: 0; }
.singular-block h2 {
  font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 300; font-size: clamp(40px, 4.5vw, 60px);
  line-height: 1.05; margin: 0 0 40px; color: var(--dim); max-width: none;
}
.singular-block h2 em { font-style: italic; color: var(--stone); }
.singular-block > .singular-left > p { font-size: 16px; color: var(--stone); line-height: 1.9; max-width: 420px; margin: 0; }
.singular-points { max-width: none; margin: 0; border-top: none; display: flex; flex-direction: column; gap: 0; }
.singular-point { display: flex; align-items: baseline; gap: 20px; padding: 28px 0; border-bottom: 1px solid var(--line); text-align: left; grid-template-columns: none; }
.singular-point:first-child { border-top: 1px solid var(--line); }
.singular-point .sp-n { font-family: "Cormorant Garamond", serif; font-size: 40px; color: var(--gold); letter-spacing: 0.2em; min-width: 28px; font-weight: 300; }
.singular-point .sp-title { color: var(--gold); font-weight: 400; font-size: 20px; margin-bottom: 4px; }
.singular-point .sp-body { color: var(--stone); font-size: 14px; line-height: 1.6; }

@media (max-width: 960px) {
  .singular-block { grid-template-columns: 1fr; margin-top: 80px; }
  .singular-left, .singular-right { padding: 48px 28px; }
}

/* ── LEDGER STRIP ─────────────────────────────────────── */
.wrap.ledger-wrap { max-width: none; padding: 120px 64px 0; }
.ledger-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 56px; }
.ledger-header .section-title { font-family: 'Cormorant Garamond', Georgia, serif; font-size: clamp(32px, 3.5vw, 46px); font-weight: 300; color: var(--dim); padding: 0; }
.ledger-all { font-size: 12px; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold); display: flex; align-items: center; gap: 12px; transition: gap 0.3s; }
.ledger-all::after { content: '→'; font-size: 14px; }
.ledger-all:hover { gap: 18px; }
.ledger-list { max-width: none; margin: 0; border-top: 1px solid var(--line); display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 1px; background: var(--line); }
.ledger-row { background: var(--black); padding: 40px 36px; display: block; transition: background 0.3s; }
.ledger-row:hover { background: #141414; }
.ledger-row:first-child { padding: 48px 44px; }
.ledger-row .lr-kicker { font-size: 12px; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; display: block; }
.ledger-row .lr-title { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 22px; font-weight: 300; line-height: 1.2; margin: 0 0 14px; color: var(--off-white); }
.ledger-row:first-child .lr-title { font-size: 28px; }
.ledger-row .lr-excerpt { font-size: 14px; color: var(--stone); line-height: 1.7; }

@media (max-width: 960px) {
  .wrap.ledger-wrap { padding: 80px 28px 0; }
  .ledger-list { grid-template-columns: 1fr; }
}

/* ── ACQUIRE (inquiry) ────────────────────────────────── */
.commission-block { text-align: center; padding: 90px 24px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin-top: 0; }
.commission-block h2 { font-size: clamp(30px,4vw,44px); margin: 0 0 20px; }
.commission-block p { max-width: 480px; margin: 0 auto 30px; color: var(--stone); font-size: 14.5px; }

.btn {
  display: inline-block; padding: 14px 32px;
  background: transparent; color: var(--off-white);
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  border: 1px solid var(--off-white); border-radius: 0; cursor: pointer;
  transition: background .2s, color .2s; font-family: inherit;
}
.btn:hover { background: var(--off-white); color: var(--black); }

.inquiry-form { max-width: 420px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; text-align: left; }
.inquiry-form input, .inquiry-form textarea {
  padding: 13px 14px; border: 1px solid var(--line); border-radius: 0;
  background: var(--deep); color: var(--off-white); font-size: 14px; font-family: inherit;
}
.inquiry-form input::placeholder, .inquiry-form textarea::placeholder { color: var(--dim); }
.inquiry-form textarea { min-height: 110px; resize: vertical; }
.inquiry-status { font-size: 13px; margin-top: 4px; color: var(--gold); }

/* ── FOOTER ───────────────────────────────────────────── */
footer.site-footer {
  padding: 80px 64px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: flex-end; margin-top: 0;
  flex-wrap: wrap; gap: 20px; text-align: left;
}
footer.site-footer .f-brand { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 14px; letter-spacing: 0.25em; color: var(--stone); margin: 0; }
footer.site-footer .f-nav { display: flex; gap: 40px; flex-wrap: wrap; }
footer.site-footer .f-nav a { font-size: 12px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--dim); transition: color 0.3s; }
footer.site-footer .f-nav a:hover { color: var(--off-white); }

@media (max-width: 960px) {
  footer.site-footer { padding: 56px 28px; flex-direction: column; align-items: flex-start; }
}

/* ── product / article detail pages (not part of the exported theme's homepage,
   kept consistent with the same design tokens) ── */
.detail-wrap { padding: 140px 24px 100px; max-width: 1040px; margin: 0 auto; }
.back-link { display: inline-block; margin-bottom: 40px; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--dim); }
.back-link:hover { color: var(--off-white); }
.product-detail { display: grid; grid-template-columns: 1.15fr 1fr; gap: 60px; }
.product-gallery img { margin-bottom: 4px; background: #171717; filter: grayscale(8%) contrast(1.04); }
.product-info .pd-kicker { display: block; margin-bottom: 16px; }
.product-info .pd-title { font-size: 40px; font-weight: 300; margin: 0 0 10px; }
.product-info .pd-sub { color: var(--dim); margin-bottom: 26px; }
.product-info .pd-body { color: var(--stone); font-size: 14.5px; margin-bottom: 26px; white-space: pre-line; }
.product-info .pd-price-row { padding: 24px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin-bottom: 30px; }
.product-info .pd-price { font-family: "Cormorant Garamond", serif; font-size: 32px; color: var(--gold); }

.article-detail { max-width: 660px; margin: 0 auto; text-align: center; }
.article-detail img { margin-bottom: 40px; background: #171717; filter: grayscale(8%) contrast(1.04); }
.article-detail .ad-date { font-size: 12px; color: var(--dim); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 22px; }
.article-detail .ad-title { font-size: 34px; font-weight: 300; margin-bottom: 30px; }
.article-detail .ad-body { white-space: pre-line; text-align: left; font-size: 15.5px; color: var(--stone); }

@media (max-width: 760px) {
  .product-detail { grid-template-columns: 1fr; }
  nav.site-nav { gap: 16px; }
  nav.site-nav a { font-size: 10.5px; }
}

/* Press kit page overrides (uses .press-* classes defined inline in press.html) */

/* ═══════════════════════════════════════════════════════
   ARCHIVE PAGE (mirrors sections/solleria-archive.liquid)
   ═══════════════════════════════════════════════════════ */
.arc-page { padding-top: 132px; }
.arc-header {
  padding: 60px 64px 0; border-bottom: 1px solid var(--line);
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end;
}
.arc-header-label {
  font-size: 10px; letter-spacing: 0.44em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 8px; display: flex; align-items: center; gap: 14px;
}
.arc-header-label::before { content: ''; width: 36px; height: 1px; background: var(--gold); flex-shrink: 0; }
.arc-header-title {
  font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 300; font-size: clamp(52px, 7vw, 86px);
  line-height: 0.95; letter-spacing: -0.02em; color: var(--off-white); margin: 0;
}
.arc-header-title em { font-style: italic; color: var(--stone); display: block; }
.arc-header-desc { font-size: 14px; color: var(--stone); line-height: 1.85; max-width: 420px; padding-bottom: 60px; }

.arc-drop-nav {
  position: sticky; top: 132px; z-index: 40; background: var(--black);
  border-bottom: 1px solid var(--line); display: flex; align-items: stretch;
}
.arc-drop-nav-item {
  flex: 1; padding: 24px 32px; font-family: 'Cormorant Garamond', Georgia, serif; font-size: 22px; font-weight: 300;
  color: #8a8278; text-align: center; border-right: 1px solid var(--line);
  transition: color 0.3s, background 0.3s; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 12px;
}
.arc-drop-nav-item:last-child { border-right: none; }
.arc-drop-nav-item:hover { color: var(--off-white); background: var(--deep); }
.arc-drop-nav-item.active { color: var(--gold); }
.arc-drop-nav-num { font-family: 'Jost', sans-serif; font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: #57504d; }

.arc-drop-section {
  border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: var(--line); min-height: 100vh; scroll-margin-top: 132px;
}
.arc-drop-section .arc-drop-visual { order: 1; }
.arc-drop-section .arc-drop-right { order: 2; }
.arc-drop-section.arc-drop-flip .arc-drop-visual { order: 2; }
.arc-drop-section.arc-drop-flip .arc-drop-right { order: 1; }
.arc-drop-visual { position: sticky; top: 132px; height: calc(100vh - 132px); overflow: hidden; background: var(--deep); }
.arc-drop-visual video, .arc-drop-visual img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.arc-drop-right { background: var(--black); display: flex; flex-direction: column; }
.arc-drop-intro { padding: 64px 56px 48px; border-bottom: 1px solid var(--line); }
.arc-drop-status { font-size: 10px; letter-spacing: 0.4em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; display: flex; align-items: center; gap: 12px; }
.arc-drop-status::before { content: ''; width: 28px; height: 1px; background: var(--gold); flex-shrink: 0; }
.arc-drop-num { font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: #8a8278; margin-bottom: 10px; }
.arc-drop-name { font-family: 'Cormorant Garamond', Georgia, serif; font-size: clamp(28px, 3vw, 42px); font-weight: 300; line-height: 1.05; margin: 0 0 6px; color: var(--off-white); }
.arc-drop-series { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: #8a8278; margin-bottom: 20px; }
.arc-drop-body { font-size: 13px; color: var(--stone); line-height: 1.85; margin-bottom: 28px; max-width: 380px; }
.arc-drop-price-block { display: flex; flex-direction: column; gap: 3px; }
.arc-drop-price-old { font-family: 'Jost', sans-serif; font-size: 14px; font-weight: 400; color: var(--dim); text-decoration: line-through; text-decoration-thickness: 1px; letter-spacing: 0.05em; }
.arc-drop-price-new { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 44px; font-weight: 400; color: var(--gold); line-height: 1; }
.arc-drop-price-label { font-family: 'Jost', sans-serif; font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--gold); font-weight: 400; margin-top: 2px; }

.arc-colorways { display: flex; flex-direction: column; }
.arc-colorway {
  display: grid; grid-template-columns: 88px 1fr auto; align-items: center; gap: 20px;
  padding: 16px 56px; border-bottom: 1px solid var(--line); background: var(--black); transition: background 0.3s;
}
.arc-colorway:hover { background: var(--deep); }
.arc-colorway-image { width: 88px; height: 110px; overflow: hidden; background: var(--deep); flex-shrink: 0; }
.arc-colorway-image img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; transition: transform 0.5s ease; }
.arc-colorway:hover .arc-colorway-image img { transform: scale(1.05); }
.arc-colorway-name { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 20px; font-weight: 300; color: var(--off-white); line-height: 1.2; }
.arc-colorway-cta {
  font-family: 'Jost', sans-serif; font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold);
  border-bottom: 1px solid rgba(168,149,110,0.3); padding-bottom: 3px; white-space: nowrap; transition: border-color 0.3s, letter-spacing 0.3s;
}
.arc-colorway:hover .arc-colorway-cta { border-color: var(--gold); letter-spacing: 0.4em; }

.arc-bespoke-section {
  border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: var(--line); min-height: 100vh; scroll-margin-top: 132px;
}
.arc-bespoke-visual { position: sticky; top: 132px; height: calc(100vh - 132px); overflow: hidden; background: var(--deep); order: 2; }
.arc-bespoke-visual img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; filter: grayscale(8%) contrast(1.04); }
.arc-bespoke-content { background: var(--black); padding: 80px 64px; display: flex; flex-direction: column; justify-content: center; order: 1; }
.arc-bespoke-label { font-size: 10px; letter-spacing: 0.4em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; display: flex; align-items: center; gap: 12px; }
.arc-bespoke-label::before { content: ''; width: 28px; height: 1px; background: var(--gold); flex-shrink: 0; }
.arc-bespoke-title { font-family: 'Cormorant Garamond', Georgia, serif; font-size: clamp(36px, 4vw, 56px); font-weight: 300; line-height: 1.05; margin: 0 0 24px; color: var(--off-white); }
.arc-bespoke-title em { font-style: italic; color: var(--stone); }
.arc-bespoke-body { font-size: 14px; color: var(--stone); line-height: 1.85; max-width: 400px; margin-bottom: 48px; }
.arc-bespoke-details { display: flex; flex-direction: column; gap: 0; margin-bottom: 48px; }
.arc-bespoke-detail { padding: 16px 0; border-bottom: 1px solid var(--line); font-size: 13px; color: var(--stone); line-height: 1.6; display: flex; align-items: baseline; gap: 12px; }
.arc-bespoke-detail:first-child { border-top: 1px solid var(--line); }
.arc-bespoke-detail::before { content: '—'; color: var(--gold); flex-shrink: 0; }
.arc-bespoke-cta {
  display: inline-flex; align-items: center; gap: 14px; font-family: 'Jost', sans-serif; font-size: 11px;
  letter-spacing: 0.35em; text-transform: uppercase; color: var(--black); background: var(--gold);
  padding: 18px 44px; transition: background 0.3s, color 0.3s; width: fit-content; border: 1px solid var(--gold);
}
.arc-bespoke-cta::after { content: '→'; font-size: 14px; }
.arc-bespoke-cta:hover { background: transparent; color: var(--gold); }

@media screen and (max-width: 900px) {
  .arc-header { grid-template-columns: 1fr; padding: 40px 28px 40px; gap: 32px; }
  .arc-drop-nav { position: relative; top: 0; }
  .arc-drop-nav-item { padding: 18px 8px; font-size: 16px; }
  .arc-drop-nav-num { display: none; }
  .arc-drop-section, .arc-bespoke-section { grid-template-columns: 1fr; min-height: auto; }
  .arc-drop-section .arc-drop-visual, .arc-bespoke-visual { order: 1; position: relative; top: 0; height: 70vw; }
  .arc-drop-section .arc-drop-right, .arc-bespoke-content { order: 2; }
  .arc-drop-intro { padding: 48px 28px 36px; }
  .arc-colorway { grid-template-columns: 72px 1fr auto; padding: 14px 28px; }
  .arc-colorway-image { width: 72px; height: 90px; }
  .arc-bespoke-content { padding: 56px 28px; }
}

/* ═══════════════════════════════════════════════════════
   LEDGER PAGE (mirrors sections/solleria-ledger.liquid)
   ═══════════════════════════════════════════════════════ */
.sl-page { padding-top: 132px; }
.sl-header { padding: 60px 64px 0; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; }
.sl-header-title { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 300; font-size: clamp(52px, 7vw, 86px); line-height: 0.95; letter-spacing: -0.02em; color: #57504d; margin: 0; }
.sl-header-title em { font-style: italic; color: var(--stone); display: block; }
.sl-header-right { padding-bottom: 60px; }
.sl-header-desc { font-size: 16px; color: var(--stone); line-height: 1.85; margin-bottom: 40px; max-width: 420px; }
.sl-header-cats { display: flex; gap: 0; flex-wrap: wrap; border: 1px solid var(--line); width: fit-content; }
.sl-cat-btn { font-size: 12px; letter-spacing: 0.3em; text-transform: uppercase; color: #57504d; padding: 12px 20px; border-right: 1px solid var(--line); transition: all 0.25s; }
.sl-cat-btn:last-child { border-right: none; }
.sl-cat-btn:hover, .sl-cat-btn.active { color: var(--gold); background: rgba(168,149,110,0.06); }

.sl-featured { border-bottom: 1px solid var(--line); }
.sl-featured-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); }
.sl-featured-img { background: var(--deep); aspect-ratio: 4/3; overflow: hidden; }
.sl-featured-img img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(20%) contrast(1.05); transition: transform 0.6s ease; }
.sl-featured-inner:hover .sl-featured-img img { transform: scale(1.03); }
.sl-featured-content { background: var(--black); padding: 64px 56px; display: flex; flex-direction: column; justify-content: flex-end; }
.sl-featured-tag { font-size: 12px; letter-spacing: 0.4em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.sl-featured-title { font-family: 'Cormorant Garamond', Georgia, serif; font-size: clamp(28px, 3.5vw, 44px); font-weight: 300; line-height: 1.1; margin: 0 0 20px; color: var(--off-white); }
.sl-featured-excerpt { font-size: 16px; color: var(--stone); line-height: 1.8; margin-bottom: 40px; max-width: 380px; }
.sl-featured-meta { display: flex; justify-content: space-between; align-items: flex-end; padding-top: 28px; border-top: 1px solid var(--line); }
.sl-featured-date { font-size: 12px; color: #57504d; letter-spacing: 0.15em; }
.sl-featured-read { font-size: 12px; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold); display: flex; align-items: center; gap: 10px; transition: gap 0.3s; }
.sl-featured-read::after { content: '→'; font-size: 14px; }
.sl-featured-read:hover { gap: 16px; }

.sl-grid { padding: 80px 64px 120px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--black); border-bottom: 1px solid var(--line); }
.sl-article { background: var(--black); padding: 44px 36px; transition: background 0.3s; position: relative; overflow: hidden; display: flex; flex-direction: column; }
.sl-article::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.35s; }
.sl-article:hover { background: #141414; }
.sl-article:hover::before { transform: scaleX(1); }
.sl-article-cat { font-size: 12px; letter-spacing: 0.38em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.sl-article-title { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 24px; font-weight: 300; line-height: 1.2; margin: 0 0 14px; color: var(--off-white); }
.sl-article-excerpt { font-size: 14px; color: var(--stone); line-height: 1.72; margin-bottom: 28px; }
.sl-article-date { font-size: 12px; color: #57504d; letter-spacing: 0.12em; padding-top: 20px; border-top: 1px solid var(--line); margin-top: auto; }

.sl-about { padding: 100px 64px; display: grid; grid-template-columns: 1fr 1fr; gap: 120px; align-items: center; border-bottom: 1px solid var(--line); }
.sl-about-label { font-size: 12px; letter-spacing: 0.44em; text-transform: uppercase; color: var(--gold); margin-bottom: 28px; display: flex; align-items: center; gap: 14px; }
.sl-about-label::before { content: ''; width: 36px; height: 1px; background: var(--gold); flex-shrink: 0; }
.sl-about-title { font-family: 'Cormorant Garamond', Georgia, serif; font-size: clamp(32px, 3.5vw, 46px); font-weight: 300; line-height: 1.05; margin: 0 0 32px; color: #57504d; }
.sl-about-title em { font-style: italic; color: var(--stone); }
.sl-about-body { font-size: 16px; color: var(--stone); line-height: 1.88; margin: 0 0 20px; }
.sl-about-sig { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 24px; font-style: italic; color: var(--gold); margin: 20px 0 4px; }
.sl-about-role { font-size: 14px; letter-spacing: 0.2em; color: var(--stone); text-transform: uppercase; }
.sl-about-right { display: flex; flex-direction: column; gap: 0; }
.sl-about-fact { padding: 28px 0; border-bottom: 1px solid var(--line); }
.sl-about-fact:first-child { border-top: 1px solid var(--line); }
.sl-about-fact-label { font-size: 12px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.sl-about-fact-value { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 20px; font-weight: 300; color: var(--off-white); }

@media screen and (max-width: 960px) {
  .sl-header { grid-template-columns: 1fr; padding: 40px 28px 40px; gap: 40px; }
  .sl-featured-inner { grid-template-columns: 1fr; }
  .sl-grid { grid-template-columns: 1fr; padding: 40px 28px 80px; }
  .sl-about { grid-template-columns: 1fr; gap: 56px; padding: 80px 28px; }
}

/* ═══════════════════════════════════════════════════════
   ACQUIRE PAGE (mirrors sections/solleria-acquire.liquid)
   ═══════════════════════════════════════════════════════ */
.sa-page { padding-top: 132px; background: var(--black); }
.sa-header {
  padding: 60px 64px 72px; position: relative; overflow: hidden; border-bottom: 1px solid var(--line);
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end;
}
.sa-header-vline { position: absolute; top: 0; left: 64px; width: 1px; height: 100%; background: linear-gradient(transparent 5%, var(--line) 30%, var(--line) 75%, transparent 98%); }
.sa-header-glow { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse 50% 70% at 80% 50%, rgba(168,149,110,0.05) 0%, transparent 65%); }
.sa-header-title { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 300; font-size: clamp(52px, 7vw, 86px); line-height: 0.95; letter-spacing: -0.02em; color: #57504d; position: relative; margin: 0; }
.sa-header-title em { font-style: italic; color: var(--stone); display: block; }
.sa-header-body { font-size: 16px; color: var(--stone); line-height: 1.85; max-width: 500px; position: relative; }

.sa-process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border-bottom: 1px solid var(--line); }
.sa-process-step { background: var(--black); padding: 44px 36px; }
.sa-process-step:nth-child(even) { background: var(--deep); }
.sa-step-num { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 48px; font-weight: 300; color: var(--gold); line-height: 1; margin-bottom: 18px; }
.sa-step-title { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 18px; color: var(--off-white); margin-bottom: 10px; }
.sa-step-body { font-size: 14px; color: var(--stone); line-height: 1.72; margin: 0; }

.sa-form-section { padding: 100px 64px; border-bottom: 1px solid var(--line); }
.sa-form-wrap { background: var(--black); border: 1px solid var(--line); padding: 80px; }
.sa-form-header { margin-bottom: 64px; padding-bottom: 48px; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.sa-form-title { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 44px; font-weight: 300; line-height: 1.05; color: #57504d; margin: 0; }
.sa-form-title em { font-style: italic; color: var(--stone); }
.sa-form-intro { font-size: 14px; color: var(--stone); line-height: 1.85; padding-top: 6px; margin: 0; }
.sa-form { display: flex; flex-direction: column; gap: 0; }
.sa-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; padding: 32px 0; border-bottom: 1px solid var(--line); }
.sa-form-row.full { grid-template-columns: 1fr; }
.sa-field { display: flex; flex-direction: column; gap: 10px; }
.sa-field label { font-size: 10px; letter-spacing: 0.38em; text-transform: uppercase; color: var(--gold); font-weight: 400; }
.sa-field input, .sa-field select, .sa-field textarea {
  background: transparent; border: none; border-bottom: 1px solid rgba(168,149,110,0.3); color: var(--off-white);
  font-family: 'Jost', sans-serif; font-weight: 300; font-size: 14px; padding: 10px 0; outline: none;
  transition: border-color 0.3s; width: 100%; border-radius: 0; -webkit-appearance: none; appearance: none;
}
.sa-field select { background: var(--deep); padding: 10px 8px; cursor: pointer; }
.sa-field select option { background: #1a1a1a; color: var(--off-white); }
.sa-field select optgroup { background: var(--deep); color: var(--gold); font-style: normal; }
.sa-field input:focus, .sa-field select:focus, .sa-field textarea:focus { border-color: var(--gold); }
.sa-field textarea { resize: none; min-height: 120px; }
.sa-field input::placeholder, .sa-field textarea::placeholder { color: #57504d; }
.sa-price-preview { display: none; padding: 20px 0 0; gap: 4px; flex-direction: column; }
.sa-price-preview.visible { display: flex; }
.sa-price-old { font-family: 'Jost', sans-serif; font-size: 13px; font-weight: 400; color: var(--dim); text-decoration: line-through; letter-spacing: 0.05em; }
.sa-price-new { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 36px; font-weight: 300; color: var(--gold); line-height: 1; }
.sa-price-label { font-family: 'Jost', sans-serif; font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); font-weight: 400; }
.sa-submit-row { padding-top: 40px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.sa-submit-hint { font-size: 12px; color: #57504d; line-height: 1.6; max-width: 320px; margin: 0; }
.sa-submit-btn {
  background: transparent; border: 1px solid var(--gold); color: var(--gold); font-family: 'Jost', sans-serif;
  font-weight: 300; font-size: 11px; letter-spacing: 0.35em; text-transform: uppercase;
  padding: 18px 48px; cursor: pointer; transition: all 0.3s; white-space: nowrap; flex-shrink: 0;
}
.sa-submit-btn:hover { background: var(--gold); color: var(--black); }
.sa-success { padding: 48px 0; display: none; }
.sa-success.visible { display: block; }
.sa-success-title { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 28px; font-weight: 300; margin-bottom: 12px; color: var(--off-white); }
.sa-success-body { font-size: 14px; color: var(--stone); line-height: 1.8; }

.sa-terms-strip { padding: 80px 64px; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; background: var(--black); }
.sa-term-cell { background: var(--black); padding: 36px 28px; }
.sa-term-key { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.sa-term-val { font-size: 13px; color: var(--stone); line-height: 1.65; }

.sa-retailer { padding: 80px 64px; background: var(--black); display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.sa-retailer-title { font-family: 'Cormorant Garamond', Georgia, serif; font-size: clamp(28px, 3vw, 40px); font-weight: 300; line-height: 1.1; margin: 0 0 20px; color: #57504d; }
.sa-retailer-title em { font-style: italic; color: var(--stone); }
.sa-retailer-body { font-size: 14px; color: var(--stone); line-height: 1.8; }
.sa-retailer-contact { display: flex; flex-direction: column; gap: 0; }
.sa-retailer-item { padding: 24px 0; border-bottom: 1px solid var(--line); }
.sa-retailer-item:first-child { border-top: 1px solid var(--line); }
.sa-retailer-item-label { font-size: 12px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.sa-retailer-item-val { font-size: 14px; color: var(--off-white); }
.sa-retailer-item-val a { color: var(--off-white); border-bottom: 1px solid var(--line); transition: border-color 0.3s; }
.sa-retailer-item-val a:hover { border-color: var(--gold); }

@media screen and (max-width: 960px) {
  .sa-header { grid-template-columns: 1fr; gap: 32px; padding: 40px 28px 48px; }
  .sa-header-vline { left: 28px; }
  .sa-process { grid-template-columns: 1fr 1fr; }
  .sa-form-section { padding: 72px 28px; }
  .sa-form-wrap { padding: 48px 28px; }
  .sa-form-header { grid-template-columns: 1fr; gap: 28px; }
  .sa-form-row { grid-template-columns: 1fr; gap: 24px; }
  .sa-submit-row { flex-direction: column; align-items: flex-start; }
  .sa-terms-strip { grid-template-columns: 1fr 1fr; }
  .sa-retailer { grid-template-columns: 1fr; gap: 48px; padding: 64px 28px; }
}

/* ═══════════════════════════════════════════════════════
   ARCHIVE EMAIL CAPTURE (mirrors sections/solleria-archive-capture.liquid)
   ═══════════════════════════════════════════════════════ */
.solleria-capture { background: var(--black); padding: 56px 24px 52px; text-align: center; position: relative; overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.solleria-capture__inner { max-width: 560px; margin: 0 auto; position: relative; z-index: 1; }
.solleria-capture__eyebrow { font-size: 10px; font-weight: 300; letter-spacing: 0.44em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; display: flex; align-items: center; justify-content: center; gap: 14px; }
.solleria-capture__eyebrow::before { content: ''; width: 36px; height: 1px; background: var(--gold); flex-shrink: 0; }
.solleria-capture__heading { font-family: 'Cormorant Garamond', Georgia, serif; font-size: clamp(28px, 4vw, 42px); font-weight: 300; color: var(--off-white); line-height: 1.05; letter-spacing: -0.02em; margin: 0 0 10px; }
.solleria-capture__heading em { font-style: italic; color: var(--stone); display: block; }
.solleria-capture__sub { font-size: 14px; font-weight: 300; color: var(--dim); margin: 0 0 32px; line-height: 1.85; letter-spacing: 0.02em; }
.solleria-capture__form { display: flex; gap: 0; max-width: 440px; margin: 0 auto 16px; border: 1px solid var(--line); }
.solleria-capture__input { flex: 1; background: transparent; border: none; outline: none; padding: 14px 18px; font-size: 14px; font-weight: 300; color: var(--off-white); letter-spacing: 0.02em; }
.solleria-capture__input::placeholder { color: var(--dim); font-style: italic; }
.solleria-capture__input:focus { background: rgba(255,255,255,0.03); }
.solleria-capture__btn { background: var(--gold); border: none; padding: 14px 22px; font-size: 11px; font-weight: 300; letter-spacing: 0.35em; text-transform: uppercase; color: var(--black); cursor: pointer; white-space: nowrap; transition: background 0.3s, color 0.3s; flex-shrink: 0; }
.solleria-capture__btn:hover { background: transparent; color: var(--gold); outline: 1px solid var(--gold); }
.solleria-capture__btn:disabled { background: var(--line); color: var(--dim); cursor: not-allowed; }
.solleria-capture__message { font-size: 11px; font-weight: 300; letter-spacing: 0.2em; text-transform: uppercase; max-width: 440px; margin: 12px auto 0; padding: 12px 16px; border: 0.5px solid; display: none; }
.solleria-capture__message.visible { display: block; }
.solleria-capture__message--success { color: var(--gold); border-color: var(--line); background: rgba(198,173,141,0.06); }
.solleria-capture__message--error { color: #C0392B; border-color: #4A2020; background: rgba(192,57,43,0.06); }

/* ═══════════════════════════════════════════════════════
   BESPOKE PAGE (mirrors sections/bespoke-page.liquid)
   ═══════════════════════════════════════════════════════ */
.bespoke-page { padding-top: 132px; }
.bp-section { padding: 100px 64px; }
.bp-divider { height: 1px; background: var(--line); margin: 0 64px; }
.bp-label {
  font-size: 16px; letter-spacing: 0.4em; text-transform: uppercase; color: var(--gold); margin-bottom: 56px;
  display: flex; align-items: center; gap: 16px;
}
.bp-label::before { content: ''; display: block; width: 40px; height: 1px; background: var(--gold); flex-shrink: 0; }

.bp-hero {
  min-height: 90vh; padding: 0 64px 80px; position: relative; overflow: hidden;
  display: flex; align-items: flex-end;
  background-image: url('/assets/campaign/bespoke-visual.jpg'); background-size: cover; background-position: center 60%;
}
.bp-hero-overlay { position: absolute; inset: 0; pointer-events: none; background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.25) 30%, rgba(0,0,0,0.65) 65%, rgba(0,0,0,0.92) 100%); }
.bp-hero-line { position: absolute; top: 0; left: 64px; width: 1px; height: 100%; background: linear-gradient(transparent 5%, var(--line) 30%, var(--line) 75%, transparent 98%); }
.bp-hero-content { position: relative; max-width: 680px; z-index: 1; }
.bp-hero-tag {
  font-size: 10px; letter-spacing: 0.4em; text-transform: uppercase; color: var(--hero-gold); margin-bottom: 28px;
  display: flex; align-items: center; gap: 16px; text-shadow: 0 1px 12px rgba(0,0,0,0.9), 0 0 24px rgba(0,0,0,0.8);
}
.bp-hero-tag::before { content: ''; display: block; width: 40px; height: 1px; background: var(--hero-gold); flex-shrink: 0; }
.bp-hero-title {
  font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 300; font-size: clamp(52px, 7vw, 86px);
  line-height: 1; letter-spacing: -0.01em; color: #ffffff;
  text-shadow: 0 2px 40px rgba(0,0,0,0.9), 0 1px 8px rgba(0,0,0,0.7); margin: 0 0 36px;
}
.bp-hero-title em { font-style: italic; color: #e8e0d4; }
.bp-hero-body { font-size: 15px; line-height: 1.85; color: #f0ebe4; max-width: 500px; text-shadow: 0 1px 16px rgba(0,0,0,0.9), 0 0 8px rgba(0,0,0,0.7); }

.bp-what-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); margin-top: 16px; }
.bp-what-cell { background: var(--black); padding: 52px 44px; }
.bp-what-cell:nth-child(odd) { background: #121212; }
.bp-what-num { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 20px; letter-spacing: 0.3em; color: var(--gold); margin-bottom: 18px; }
.bp-what-title { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 24px; font-weight: 400; line-height: 1.25; margin-bottom: 14px; color: var(--gold); }
.bp-what-body { font-size: 13px; line-height: 1.8; color: var(--stone); margin: 0; }

.bp-pricing-section { padding: 100px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.bp-pricing-label { font-size: 16px; letter-spacing: 0.4em; text-transform: uppercase; color: var(--gold); margin-bottom: 56px; padding: 0 64px; display: flex; align-items: center; gap: 16px; }
.bp-pricing-label::before { content: ''; display: block; width: 40px; height: 1px; background: var(--gold); flex-shrink: 0; }
.bp-pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); }
.bp-pricing-card { background: var(--black); padding: 0 0 44px; position: relative; overflow: hidden; transition: background 0.35s; display: flex; flex-direction: column; }
.bp-pricing-card:hover { background: #141414; }
.bp-pricing-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: var(--gold); transform: scaleX(0); transition: transform 0.35s; transform-origin: left; z-index: 1; }
.bp-pricing-card:hover::before { transform: scaleX(1); }
.bp-card-image { width: 100%; height: 420px; overflow: hidden; background: var(--deep); margin-bottom: 36px; flex-shrink: 0; }
.bp-card-image img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; transition: transform 0.7s ease; filter: grayscale(8%) contrast(1.04); }
.bp-pricing-card:hover .bp-card-image img { transform: scale(1.04); }
.bp-card-body { padding: 0 40px; flex: 1; display: flex; flex-direction: column; }
.bp-drop { font-size: 11px; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.bp-prod-name { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 28px; font-weight: 300; color: var(--off-white); margin-bottom: 24px; }
.bp-prices { margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid var(--line); display: flex; flex-direction: column; gap: 3px; }
.bp-bespoke-old { font-family: 'Jost', sans-serif; font-size: 13px; font-weight: 400; letter-spacing: 0.05em; color: var(--dim); text-decoration: line-through; text-decoration-thickness: 1px; }
.bp-bespoke-price { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 52px; font-weight: 300; color: var(--gold); line-height: 1; }
.bp-bespoke-price-label { font-family: 'Jost', sans-serif; font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); font-weight: 400; }
.bp-includes { list-style: none; padding: 0; margin: 0 0 auto; }
.bp-includes li { font-size: 13px; color: var(--stone); line-height: 1.7; padding-left: 16px; position: relative; margin-bottom: 6px; }
.bp-includes li::before { content: '—'; position: absolute; left: 0; color: var(--gold); }
.bp-lead { margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--line); font-size: 11px; letter-spacing: 0.15em; color: #57504d; text-transform: uppercase; }

.bp-process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); }
.bp-step { background: var(--black); padding: 44px 32px; }
.bp-step-num { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 56px; font-weight: 300; color: var(--gold); line-height: 1; margin-bottom: 20px; }
.bp-step-title { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 20px; color: var(--gold); margin-bottom: 10px; }
.bp-step-body { font-size: 12px; color: var(--stone); line-height: 1.75; margin: 0; }

.bp-form-wrap { background: var(--black); border: 1px solid var(--line); padding: 72px; }
.bp-form-header { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; margin-bottom: 56px; align-items: start; }
.bp-form-title { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 44px; font-weight: 300; line-height: 1.1; color: var(--off-white); margin: 0; }
.bp-form-intro { font-size: 14px; color: var(--stone); line-height: 1.85; padding-top: 6px; margin: 0; }
.bp-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.bp-form-group { display: flex; flex-direction: column; gap: 8px; }
.bp-form-group.full { grid-column: 1 / -1; }
.bp-form-group label { font-size: 10px; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold); font-family: 'Jost', sans-serif; font-weight: 300; }
.bp-form-group input, .bp-form-group select, .bp-form-group textarea {
  background: transparent; border: none; border-bottom: 1px solid rgba(200,192,180,0.25); color: var(--off-white);
  font-family: 'Jost', sans-serif; font-weight: 300; font-size: 14px; padding: 12px 0; outline: none;
  transition: border-color 0.3s; border-radius: 0; -webkit-appearance: none; appearance: none; width: 100%;
}
.bp-form-group select { background: var(--deep); padding: 12px 8px; cursor: pointer; }
.bp-form-group input:focus, .bp-form-group select:focus, .bp-form-group textarea:focus { border-color: var(--gold); }
.bp-form-group select option { background: #1a1a1a; color: var(--off-white); }
.bp-form-group select optgroup { background: var(--deep); color: var(--gold); font-style: normal; }
.bp-form-group textarea { resize: none; min-height: 110px; }
.bp-form-group input::placeholder, .bp-form-group textarea::placeholder { color: #57504d; }
.bp-color-row { display: flex; align-items: center; gap: 16px; }
.bp-color-row input[type="color"] { width: 48px; height: 40px; padding: 2px; border: 1px solid var(--line); background: transparent; cursor: pointer; flex-shrink: 0; border-radius: 0; }
.bp-color-row input[type="text"] { flex: 1; }
.bp-color-note { font-size: 12px; color: #57504d; margin-top: 10px; line-height: 1.6; }
.bp-form-note { grid-column: 1 / -1; font-size: 12px; color: #57504d; line-height: 1.7; padding: 20px 0; border-top: 1px solid var(--line); }
.bp-form-submit { grid-column: 1 / -1; display: flex; align-items: center; justify-content: space-between; padding-top: 12px; gap: 20px; flex-wrap: wrap; }
.bp-submit-note { font-size: 12px; color: #57504d; max-width: 300px; line-height: 1.6; margin: 0; }
.bp-submit-btn {
  background: transparent; border: 1px solid var(--gold); color: var(--gold); font-family: 'Jost', sans-serif;
  font-weight: 300; font-size: 11px; letter-spacing: 0.35em; text-transform: uppercase;
  padding: 16px 44px; cursor: pointer; transition: all 0.3s; display: inline-block; text-align: center;
}
.bp-submit-btn:hover { background: var(--gold); color: var(--black); }
.bp-success { display: none; color: var(--gold); font-size: 14px; letter-spacing: 0.05em; padding: 24px 0; }
.bp-success.visible { display: block; }

@media screen and (max-width: 900px) {
  .bp-section { padding: 72px 24px; }
  .bp-hero { padding: 100px 24px 80px; }
  .bp-divider { margin: 0 24px; }
  .bp-hero-line { left: 24px; }
  .bp-pricing-label { padding: 0 24px; }
  .bp-what-grid, .bp-pricing-grid, .bp-process-grid { grid-template-columns: 1fr; }
  .bp-card-image { height: 260px; }
  .bp-form-header { grid-template-columns: 1fr; gap: 28px; }
  .bp-form-grid { grid-template-columns: 1fr; }
  .bp-form-wrap { padding: 40px 24px; }
  .bp-form-submit { flex-direction: column; gap: 20px; align-items: flex-start; }
}

/* ── "Customize" nav item + NEW badge (admin-only 3D configurator) ── */
nav.site-nav a.nav-customize, nav.site-nav button.nav-customize {
  display: inline-flex; align-items: center; gap: 7px; color: var(--gold);
  background: none; border: none; font: inherit; cursor: pointer; padding: 0;
  font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase;
}
nav.site-nav a.nav-customize:hover, nav.site-nav button.nav-customize:hover { color: var(--hero-gold); }
.nav-new-badge {
  font-size: 9px; font-weight: 500; letter-spacing: 0.08em;
  background: var(--gold); color: var(--black);
  padding: 2px 6px; border-radius: 2px; text-transform: uppercase;
}

/* ── Customize overlay (in-page iframe, no navigation away) ── */
.customize-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: var(--black);
  display: none;
  flex-direction: column;
}
.customize-overlay.open { display: flex; }
.customize-overlay-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px; background: var(--deep); border-bottom: 1px solid var(--line);
  flex-shrink: 0;
}
.customize-overlay-title { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); display: flex; align-items: center; gap: 10px; }
.customize-overlay-close {
  background: transparent; border: 1px solid var(--line); color: var(--off-white);
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer;
  padding: 8px 18px; transition: border-color 0.2s, color 0.2s;
}
.customize-overlay-close:hover { border-color: var(--gold); color: var(--gold); }
.customize-overlay iframe { flex: 1; width: 100%; border: 0; background: var(--black); }
