/* ==============================================================
   Yuka Stickers — landing page
   Friendly, clean, craft-driven. Warm but minimal.
   ============================================================== */

:root {
  /* Warm cream/paper foundation — feels like a bagged sticker order */
  --bg: #FBF6EE;
  --bg-2: #F4ECDD;
  --bg-3: #ECE0CB;
  --surface: #FFFFFF;
  --surface-2: #FBF5EA;
  --surface-3: #F1E7D2;

  /* Warm near-black ink instead of pure black */
  --ink: #1A1612;
  --ink-2: #3B342B;
  --ink-3: #7A6E5C;
  --ink-4: #B0A893;
  --ink-5: #D6CFBE;

  --line: rgba(60, 40, 20, 0.10);
  --line-2: rgba(60, 40, 20, 0.05);
  --line-3: rgba(60, 40, 20, 0.16);

  --coral: #C4384F;
  --coral-deep: #9F2F2D;
  --coral-soft: #FDE7E5;
  --coral-glow: rgba(196, 56, 79, 0.07);
  --sage: #4A7A3E;
  --sage-soft: #EBF1E2;
  --butter: #E8B84A;
  --butter-soft: #FBEFC9;
  --sky: #6A95B0;
  --sky-soft: #E5EFF6;

  --r-xs: 4px;
  --r-sm: 6px;
  --r-md: 8px;
  --r-lg: 12px;
  --r-xl: 16px;
  --r-2xl: 20px;
  --r-pill: 9999px;

  /* Section rhythm — single 8-grid scale used by every section */
  --pad-section:        clamp(96px, 9vw, 144px);
  --pad-section-tight:  clamp(72px, 7vw, 112px);
  --gap-head-body:      clamp(48px, 5vw, 64px);
  --max-section-head:   640px;
  --max-content:        clamp(1180px, 90vw, 1640px);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --d-fast: 160ms;
  --d-base: 320ms;
  --d-slow: 600ms;

  --shadow-xs: 0 1px 3px rgba(0, 0, 0, 0.04);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 8px 28px rgba(0, 0, 0, 0.06), 0 2px 6px rgba(0, 0, 0, 0.03);
  --shadow-pol: 0 2px 4px rgba(0, 0, 0, 0.04), 0 8px 20px rgba(0, 0, 0, 0.05);

  --font-serif: 'Instrument Serif', Georgia, 'Times New Roman', serif;
  --font-display: 'Cabinet Grotesk', 'Satoshi', -apple-system, sans-serif;
  --font-sans: 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Numbers align cleanly without a monospace/code vibe */
.stat-num, .price-amt, .totals-amt, .cart-count, .ci-price-amt,
.t-dollar, .totals-sub, .pricing-num, .pricing-label,
.eyebrow, .eta-label, .step-tag, .summary-num, .cal-num,
[class$="-amt"], [class*="price"] { font-variant-numeric: tabular-nums; }

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
[hidden] { display: none !important; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { line-height: 1.55; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
ul, ol { list-style: none; }
input, textarea { font: inherit; color: inherit; }
code {
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  font-size: 0.9em;
  background: var(--surface-3);
  padding: 2px 6px;
  border-radius: 5px;
}
::selection { background: var(--coral); color: #fff; }

body {
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: clamp(1180px, 90vw, 1640px);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 80px);
  position: relative;
}

/* ---------- Type ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--ink);
}
.t-accent { color: var(--coral); }
.t-dollar { color: var(--coral); font-variant-numeric: tabular-nums; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ink-3);
  width: fit-content;
  line-height: 1.3;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 1.5px;
  background: var(--coral);
  opacity: 0.5;
  flex-shrink: 0;
}
.eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--coral);
  flex-shrink: 0;
  align-self: center;
  display: none; /* replaced by the coral rule mark above */
}

.section-head {
  max-width: var(--max-section-head);
  margin: 0 auto var(--gap-head-body) auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.section-head-left {
  text-align: left;
  margin: 0 0 var(--gap-head-body) 0;
  align-items: flex-start;
  max-width: var(--max-section-head);
}
.section-title {
  font-size: clamp(26px, 3.8vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.025em;
  font-weight: 700;
}
.section-lede {
  font-size: clamp(15px, 1.25vw, 17px);
  color: var(--ink-3);
  line-height: 1.62;
  max-width: 540px;
}

/* =====================================================================
   NAV
   ===================================================================== */
.nav-shell {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  pointer-events: auto;
  background: rgba(251, 248, 242, 0.86);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid var(--line);
  transition: background var(--d-base) var(--ease), box-shadow var(--d-base) var(--ease), border-color var(--d-base) var(--ease);
}
.nav-shell.is-compact {
  background: rgba(252, 249, 244, 0.96);
  box-shadow: 0 6px 24px rgba(120, 80, 40, 0.06);
  border-bottom-color: rgba(0, 0, 0, 0.06);
}

.nav {
  max-width: clamp(1180px, 90vw, 1640px);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 80px);
  height: 84px;
  display: flex;
  align-items: center;
  gap: 18px;
  background: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
  transition: height var(--d-base) var(--ease);
}
.nav-shell.is-compact .nav { height: 72px; }

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  flex-shrink: 0;
}
.brand-mark {
  width: 38px;
  height: 38px;
  transform: rotate(-6deg);
  transition: transform var(--d-base) var(--ease-spring);
}
.brand-mark svg {
  width: 100%; height: 100%;
  filter: drop-shadow(0 2px 6px rgba(196, 56, 79, 0.22));
}
.brand:hover .brand-mark { transform: rotate(6deg) scale(1.06); }
.brand-word {
  display: inline-flex;
  gap: 5px;
  font-family: var(--font-display);
  font-size: 19px;
  letter-spacing: -0.02em;
  font-weight: 500;
  line-height: 1;
}
.brand-word strong { font-weight: 800; color: var(--ink); }
.brand-word span { color: var(--coral); font-weight: 700; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 28px;
  flex: 1;
}
.nav-links a {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-2);
  border-radius: var(--r-md);
  letter-spacing: -0.005em;
  transition: all var(--d-fast) var(--ease);
}
.nav-links a:hover { color: var(--ink); background: rgba(120, 80, 40, 0.06); }
.nav-link-artists {
  color: var(--coral) !important;
  background: var(--coral-soft);
}
.nav-link-artists:hover {
  background: rgba(196, 56, 79, 0.14) !important;
  color: var(--coral-deep) !important;
}
.nav-link-track { color: var(--ink) !important; font-weight: 700 !important; }
.nav-link-track::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--coral);
  margin-right: 9px;
  vertical-align: 1px;
  box-shadow: 0 0 0 3px var(--coral-soft);
}
.nav-link-tg { color: var(--ink-2) !important; display: inline-flex !important; align-items: center; gap: 6px; }
.nav-link-tg::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  background-color: #229ED9;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M9.78 18.65l.28-4.23 7.68-6.92c.34-.31-.07-.46-.52-.19L7.74 13.3 3.64 12c-.88-.25-.89-.86.2-1.3l15.97-6.16c.73-.33 1.43.18 1.15 1.3l-2.72 12.81c-.19.91-.74 1.13-1.5.71L12.6 16.3l-1.99 1.93c-.23.23-.42.42-.83.42z'/></svg>") center/contain no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M9.78 18.65l.28-4.23 7.68-6.92c.34-.31-.07-.46-.52-.19L7.74 13.3 3.64 12c-.88-.25-.89-.86.2-1.3l15.97-6.16c.73-.33 1.43.18 1.15 1.3l-2.72 12.81c-.19.91-.74 1.13-1.5.71L12.6 16.3l-1.99 1.93c-.23.23-.42.42-.83.42z'/></svg>") center/contain no-repeat;
}
.nav-link-tg:hover { background: rgba(34, 158, 217, 0.10) !important; color: #1a7da9 !important; }
.nav-link-tg:hover::before { background-color: #1a7da9; }

/* ============================================================ */
/* CHECKOUT — locked-state for delivery method                  */
/* ============================================================ */
.ck-section.is-locked { opacity: 0.55; }
.ck-section.is-locked .ck-section-head { color: var(--ink-3); }
.ck-locked-hint {
  font-size: 12.5px;
  color: var(--ink-3);
  font-style: italic;
  padding: 12px 14px;
  background: var(--bg-2);
  border: 1px dashed rgba(0,0,0,0.08);
  border-radius: var(--r-md);
  margin-top: 4px;
}
.ck-section:not(.is-locked) .ck-locked-hint { display: none; }

/* ============================================================ */
/* ORDER SUMMARY — promo code block                             */
/* ============================================================ */
.os-promo {
  margin-top: 16px;
  padding: 14px 0 4px;
  border-top: 1px dashed rgba(0,0,0,0.08);
}
.os-promo-row {
  display: flex;
  gap: 8px;
}
.os-promo-input {
  flex: 1;
  min-width: 0;
  padding: 9px 12px;
  font-size: 13px;
  font-family: inherit;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--surface);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--r-md);
  color: var(--ink);
  transition: border-color 0.18s, box-shadow 0.18s;
}
.os-promo-input:focus {
  outline: none;
  border-color: var(--coral);
  box-shadow: 0 0 0 3px var(--coral-soft);
}
.os-promo-input.is-error {
  border-color: var(--coral);
  background: var(--coral-soft);
}
.os-promo-apply {
  flex-shrink: 0;
  padding: 0 14px;
  background: var(--ink);
  color: white;
  border: none;
  border-radius: var(--r-md);
  font-family: inherit;
  font-size: 12.5px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.18s, transform 0.18s;
}
.os-promo-apply:hover { opacity: 0.92; }
.os-promo-apply:active { transform: scale(0.97); }
.os-promo-apply:disabled { opacity: 0.5; cursor: not-allowed; }
.os-promo-msg {
  margin-top: 8px;
  font-size: 12px;
  line-height: 1.4;
  color: var(--coral);
}
.os-promo-msg.is-success { color: var(--ink-3); }
.os-promo-applied {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: var(--coral-soft);
  border: 1px solid rgba(196, 56, 79, 0.18);
  border-radius: var(--r-md);
}
.os-promo-applied-text { flex: 1; min-width: 0; }
.os-promo-applied-label {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--coral-deep);
  letter-spacing: 0.01em;
}
.os-promo-applied-text small {
  display: block;
  font-size: 11px;
  color: var(--ink-3);
  margin-top: 1px;
}
.os-promo-remove {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.6);
  color: var(--coral-deep);
  font-size: 17px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.18s;
}
.os-promo-remove:hover { background: white; }

.os-row-discount span:last-child { color: var(--coral); font-weight: 600; font-variant-numeric: tabular-nums; }

/* ============================================================ */
/* PAUSED-STATE BANNER (waitlist signup when intake is closed)  */
/* ============================================================ */
.paused-notice { margin-bottom: 48px; }
.paused-card {
  background: linear-gradient(135deg, var(--coral-soft) 0%, var(--bg-2) 100%);
  border: 1px solid rgba(196, 56, 79, 0.12);
  border-radius: var(--r-2xl);
  padding: clamp(28px, 4vw, 44px);
  position: relative;
  overflow: hidden;
}
.paused-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(420px 220px at 80% -10%, rgba(196,56,79,0.10), transparent 70%);
  pointer-events: none;
}
.paused-eyebrow {
  font-family: var(--font-display);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: var(--coral-deep);
  margin-bottom: 14px;
  position: relative;
}
.paused-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 3.6vw, 40px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 14px;
  position: relative;
  max-width: 14ch;
}
.paused-body {
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.55;
  color: var(--ink-2);
  margin-bottom: 12px;
  max-width: 56ch;
  position: relative;
}
.paused-body-muted { color: var(--ink-3); }
.paused-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
  position: relative;
  max-width: 540px;
}
.paused-input {
  flex: 1 1 240px;
  min-width: 240px;
  padding: 14px 18px;
  font-size: 15px;
  font-family: inherit;
  background: var(--surface);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--r-lg);
  color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.paused-input:focus {
  outline: none;
  border-color: var(--coral);
  box-shadow: 0 0 0 4px var(--coral-soft);
}
.paused-input.is-error {
  border-color: var(--coral);
  background: var(--coral-soft);
}
.paused-btn { white-space: nowrap; }
.paused-confirmed {
  margin-top: 20px;
  padding: 14px 18px;
  background: var(--surface);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--r-lg);
  font-size: 14px;
  color: var(--ink-2);
  font-weight: 500;
  position: relative;
  display: inline-block;
}
.paused-foot {
  margin-top: 24px;
  font-size: 13px;
  color: var(--ink-3);
  position: relative;
}
.paused-foot a { color: var(--coral); font-weight: 600; }
.paused-foot a:hover { text-decoration: underline; }

/* When paused state is active, dim/disable the builder below */
.builder.is-paused .builder-frame { opacity: 0.45; pointer-events: none; filter: saturate(0.6); }
.builder.is-paused .bring-strip { opacity: 0.55; pointer-events: none; }

@media (max-width: 560px) {
  .paused-form { flex-direction: column; }
  .paused-input { width: 100%; min-width: 0; }
  .paused-btn { width: 100%; justify-content: center; }
}

.nav-cta {
  flex-shrink: 0;
  padding: 12px 12px 12px 20px;
  font-size: 14.5px;
  font-weight: 700;
  border-radius: var(--r-lg);
}
.nav-cta .icon-circle { width: 30px; height: 30px; }

.hamburger {
  display: none;
  width: 36px;
  height: 36px;
  border-radius: var(--r-md);
  background: var(--surface);
  border: 1px solid var(--line);
  position: relative;
  flex-shrink: 0;
}
.hamburger span {
  position: absolute;
  left: 50%; top: 50%;
  width: 15px; height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: transform var(--d-base) var(--ease);
}
.hamburger span:nth-child(1) { transform: translate(-50%, calc(-50% - 4px)); }
.hamburger span:nth-child(2) { transform: translate(-50%, calc(-50% + 4px)); }
.hamburger.is-open span:nth-child(1) { transform: translate(-50%, -50%) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { transform: translate(-50%, -50%) rotate(-45deg); }

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 49;
  background: rgba(251, 251, 250, 0.94);
  backdrop-filter: blur(28px) saturate(140%);
  -webkit-backdrop-filter: blur(28px) saturate(140%);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--d-base) var(--ease);
}
.menu-overlay.is-open { opacity: 1; pointer-events: auto; }
.menu-inner {
  position: absolute;
  inset: 0;
  padding: 120px 28px 60px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
}
.menu-links { display: flex; flex-direction: column; gap: 2px; }
.menu-links a {
  display: block;
  padding: 14px 0;
  font-family: var(--font-display);
  font-size: clamp(26px, 6vw, 38px);
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--ink);
  border-bottom: 1px solid var(--line-2);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity var(--d-base) var(--ease), transform var(--d-base) var(--ease), color var(--d-fast) var(--ease);
}
.menu-overlay.is-open .menu-links li a {
  opacity: 1;
  transform: translateY(0);
  transition-delay: calc(60ms * var(--i) + 120ms);
}
.menu-links a:hover { color: var(--coral); }
.menu-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--ink-3);
  flex-wrap: wrap;
}
.menu-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--ink-5); }

/* =====================================================================
   BUTTONS
   ===================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 10px 10px 18px;
  border-radius: var(--r-lg);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.005em;
  line-height: 1;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform var(--d-fast) var(--ease-spring), background var(--d-fast) var(--ease), color var(--d-fast) var(--ease), box-shadow var(--d-fast) var(--ease);
  user-select: none;
  white-space: nowrap;
  will-change: transform;
}
.btn:active { transform: scale(0.98); }
.btn:disabled { opacity: 0.4; cursor: not-allowed; }

.btn-primary {
  background: var(--ink);
  color: #FFF;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.08), 0 6px 18px rgba(60, 40, 20, 0.12);
}
.btn-primary:hover {
  background: #2D241B;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.10), 0 8px 22px rgba(60, 40, 20, 0.16);
}

.btn-ghost {
  padding: 10px 18px;
  background: var(--surface);
  color: var(--ink);
  border-color: var(--line);
  box-shadow: var(--shadow-xs);
}
.btn-ghost:hover { background: var(--bg-2); border-color: var(--line-3); }

.btn-lg { padding: 13px 13px 13px 22px; font-size: 15px; }
.btn-lg.btn-ghost { padding: 13px 24px; }
.btn-full { width: 100%; justify-content: center; }

.btn .icon-circle {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform var(--d-base) var(--ease-spring), background var(--d-fast) var(--ease);
  flex-shrink: 0;
}
.btn-lg .icon-circle { width: 32px; height: 32px; }
.btn .icon-circle svg { width: 13px; height: 13px; color: currentColor; }
.btn-lg .icon-circle svg { width: 14px; height: 14px; }
.btn:hover .icon-circle { transform: translate(2px, -1px) scale(1.06); background: rgba(255, 255, 255, 0.22); }
.btn-ghost .icon-circle { background: var(--bg-3); }
.btn-ghost:hover .icon-circle { background: var(--line); }

.btn-send { gap: 9px; padding: 10px 18px; color: #FFF; }
.btn-send:hover { filter: brightness(1.08); }
.btn-send-tg { background: #0088CC; box-shadow: 0 6px 16px rgba(0, 136, 204, 0.25); }
.btn-send-dc { background: #5865F2; box-shadow: 0 6px 16px rgba(88, 101, 242, 0.25); }
.send-icon {
  width: 18px; height: 18px;
  display: inline-flex; align-items: center; justify-content: center;
  color: #FFF;
}
.send-icon svg { width: 100%; height: 100%; }

/* =====================================================================
   HERO
   ===================================================================== */
.hero {
  position: relative;
  padding: var(--pad-section) 0;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(800px 500px at 18% 12%, var(--coral-glow), transparent 60%),
    radial-gradient(700px 460px at 92% 28%, rgba(232, 184, 74, 0.16), transparent 62%),
    radial-gradient(900px 700px at 50% 100%, rgba(232, 156, 110, 0.12), transparent 65%),
    var(--bg);
}

/* Asymmetric grid: copy left, visual cluster right.
   Stays centered/stacked on smaller screens. */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  width: 100%;
  gap: clamp(48px, 6vw, 72px);
  text-align: center;
  position: relative;
  z-index: 2;
}
@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: clamp(48px, 6vw, 96px);
    text-align: left;
    align-items: center;
  }
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: center;
  width: 100%;
  max-width: 620px;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .hero-copy {
    align-items: flex-start;
    margin: 0;
    max-width: 640px;
  }
}

.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px 7px 11px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-2);
  letter-spacing: 0.01em;
  box-shadow: var(--shadow-xs);
}
.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 3px var(--coral-soft);
  animation: eb-pulse 2.4s ease-in-out infinite;
}
@keyframes eb-pulse {
  0%, 100% { box-shadow: 0 0 0 3px var(--coral-soft); }
  50%      { box-shadow: 0 0 0 6px transparent; }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.6vw, 68px);
  line-height: 1.04;
  letter-spacing: -0.03em;
  font-weight: 700;
  font-style: normal;
}
.hero-title .t-accent {
  position: relative;
  display: inline-block;
  color: var(--coral);
  font-weight: 700;
  letter-spacing: -0.025em;
  padding: 0 0.04em;
}
.hero-title .t-accent::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.08em;
  height: 0.22em;
  background: var(--coral-soft);
  z-index: -1;
  border-radius: 4px;
  transform: skew(-4deg);
}

.hero-lede {
  font-size: clamp(15.5px, 1.25vw, 17.5px);
  color: var(--ink-3);
  line-height: 1.65;
  max-width: 540px;
  margin: 0;
}
.hero-lede strong { color: var(--ink); font-weight: 600; }

.hero-ctas {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 6px;
}
@media (min-width: 1024px) { .hero-ctas { justify-content: flex-start; } }

.hero-meta {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 13px;
  color: var(--ink-3);
}
@media (min-width: 1024px) { .hero-meta { justify-content: flex-start; } }
.hero-meta li { display: inline-flex; align-items: center; gap: 8px; }
.m-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--coral); opacity: 0.5; }

/* =====================================================================
   HERO VISUAL — animated polaroid cluster (intentional composition)
   ===================================================================== */
.hero-visual {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-stack {
  position: relative;
  width: clamp(280px, 90vw, 480px);
  aspect-ratio: 1 / 1;
}
@media (min-width: 1024px) {
  .hero-stack {
    width: clamp(420px, 38vw, 560px);
  }
}

.polaroid {
  background: #FFF;
  padding: 14px 14px 44px;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-pol);
  transition: transform 380ms var(--ease-spring), box-shadow 380ms var(--ease);
  position: absolute;
  will-change: transform;
}
.polaroid:hover { animation-play-state: paused; z-index: 20 !important; }
.polaroid img { width: 100%; height: auto; display: block; border-radius: 2px; }
.polaroid figcaption {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 4px 0;
  font-size: 11px;
  font-weight: 500;
  color: var(--ink-3);
  text-align: center;
}
.pol-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--coral); flex-shrink: 0; }
.pol-dot-sage   { background: var(--sage); }
.pol-dot-butter { background: var(--butter); }

/* Composed cluster — intentional, hand-arranged, with float animations */
.polaroid-back {
  width: 56%;
  top: 4%;
  left: 4%;
  transform: rotate(-7deg);
  z-index: 1;
  animation: pol-float-back 9s ease-in-out infinite;
}
.polaroid-mid {
  width: 50%;
  top: 14%;
  right: 2%;
  transform: rotate(4deg);
  z-index: 2;
  animation: pol-float-mid 11s ease-in-out infinite;
}
.polaroid-front {
  width: 62%;
  bottom: 2%;
  left: 18%;
  transform: rotate(-2deg);
  z-index: 3;
  box-shadow: var(--shadow-lg);
  animation: pol-float-front 10s ease-in-out infinite;
}
.polaroid-back:hover  { transform: rotate(-3deg) scale(1.04) translateY(-6px); box-shadow: var(--shadow-lg); }
.polaroid-mid:hover   { transform: rotate(1deg)  scale(1.04) translateY(-6px); box-shadow: var(--shadow-lg); }
.polaroid-front:hover { transform: rotate(0deg)  scale(1.04) translateY(-6px); box-shadow: var(--shadow-lg); }

/* Continuous gentle bob+tilt — staggered phases so the cluster feels alive */
@keyframes pol-float-back {
  0%, 100% { transform: rotate(-7deg) translate(0, 0); }
  50%      { transform: rotate(-5deg) translate(-2px, -6px); }
}
@keyframes pol-float-mid {
  0%, 100% { transform: rotate(4deg) translate(0, 0); }
  50%      { transform: rotate(6deg) translate(3px, -4px); }
}
@keyframes pol-float-front {
  0%, 100% { transform: rotate(-2deg) translate(0, 0); }
  50%      { transform: rotate(-3deg) translate(-3px, -7px); }
}

/* Decorative tape strip across the top of the cluster */
.hero-tape {
  position: absolute;
  top: -2%;
  left: 22%;
  width: 18%;
  height: 22px;
  background:
    repeating-linear-gradient(45deg, rgba(244, 212, 122, 0.6) 0 6px, rgba(244, 212, 122, 0.4) 6px 12px);
  border-radius: 2px;
  transform: rotate(-12deg);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  z-index: 5;
  opacity: 0.85;
}

/* "From $10" sticker accent — looks stuck to the page */
.hero-sticker-accent {
  position: absolute;
  bottom: 10%;
  right: -4%;
  width: clamp(82px, 14vw, 116px);
  aspect-ratio: 1;
  background: var(--coral);
  color: #FFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 6;
  transform: rotate(8deg);
  box-shadow: 0 6px 20px rgba(196, 56, 79, 0.28),
              inset 0 -3px 0 rgba(0, 0, 0, 0.10);
  animation: sticker-bob 7s ease-in-out infinite;
  border: 3px dashed rgba(255, 255, 255, 0.35);
}
.hsa-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  line-height: 1;
}
.hsa-inner strong {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.85;
}
.hsa-price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(22px, 3.2vw, 30px);
  letter-spacing: -0.03em;
}
.hsa-inner small {
  font-size: 9.5px;
  font-weight: 600;
  opacity: 0.85;
  letter-spacing: 0.04em;
}
@keyframes sticker-bob {
  0%, 100% { transform: rotate(8deg) translate(0, 0); }
  50%      { transform: rotate(11deg) translate(-2px, -4px); }
}

/* Hand-drawn squiggle connecting the cluster */
.hero-squiggle {
  position: absolute;
  top: 32%;
  left: -10%;
  width: clamp(60px, 9vw, 100px);
  height: auto;
  color: var(--coral);
  opacity: 0.45;
  z-index: 0;
  transform: rotate(-12deg);
}

/* =====================================================================
   HERO SCATTER — small drifting decorations in negative space
   ===================================================================== */
.hero-scatter {
  position: absolute;
  pointer-events: none;
  display: block;
  z-index: 1;
  opacity: 0;
  will-change: transform;
}
.hero-scatter svg { width: 100%; height: 100%; display: block; }
@keyframes scatter-in {
  to { opacity: var(--scatter-opacity, 0.5); }
}

/* Each confetti piece gets its own keyframe with distinct path + rotation
   so the cluster feels organic rather than synchronized. */
@keyframes drift-1 {
  0%   { transform: translate(0, 0)   rotate(0deg)   scale(1); }
  25%  { transform: translate(8px, -10px) rotate(18deg) scale(1.06); }
  55%  { transform: translate(-4px, -18px) rotate(-12deg) scale(0.96); }
  80%  { transform: translate(6px, -6px) rotate(8deg)  scale(1.02); }
  100% { transform: translate(0, 0)   rotate(0deg)   scale(1); }
}
@keyframes drift-2 {
  0%   { transform: translate(0, 0)   rotate(0deg)   scale(1); }
  30%  { transform: translate(-12px, -8px) rotate(-22deg) scale(0.92); }
  60%  { transform: translate(-6px, 12px) rotate(14deg)  scale(1.08); }
  100% { transform: translate(0, 0)   rotate(0deg)   scale(1); }
}
@keyframes drift-3 {
  0%   { transform: translate(0, 0)    rotate(0deg)   scale(1); }
  20%  { transform: translate(-6px, 8px)  rotate(-16deg) scale(1.05); }
  50%  { transform: translate(10px, -14px) rotate(28deg)  scale(0.94); }
  85%  { transform: translate(-4px, -6px) rotate(-8deg)  scale(1.03); }
  100% { transform: translate(0, 0)    rotate(0deg)   scale(1); }
}
@keyframes drift-4 {
  0%   { transform: translate(0, 0)    rotate(0deg); }
  40%  { transform: translate(14px, -6px)  rotate(-12deg); }
  70%  { transform: translate(-8px, -12px) rotate(20deg); }
  100% { transform: translate(0, 0)    rotate(0deg); }
}
@keyframes drift-5 {
  0%   { transform: translate(0, 0)    rotate(0deg)   scale(1); }
  35%  { transform: translate(8px, 12px)   rotate(24deg)  scale(0.92); }
  65%  { transform: translate(-12px, -10px) rotate(-18deg) scale(1.10); }
  100% { transform: translate(0, 0)    rotate(0deg)   scale(1); }
}

.hero-scatter-1 {
  top: 18%; left: 6%; width: 22px; height: 22px; color: var(--coral);
  --scatter-opacity: 0.65;
  animation: scatter-in 700ms var(--ease) 250ms forwards,
             drift-1 7.5s ease-in-out 950ms infinite;
}
.hero-scatter-2 {
  top: 64%; left: 3%; width: 28px; height: 28px; color: var(--sage);
  --scatter-opacity: 0.55;
  animation: scatter-in 700ms var(--ease) 400ms forwards,
             drift-2 9s ease-in-out 1200ms infinite;
}
.hero-scatter-3 {
  top: 12%; right: 8%; width: 26px; height: 26px; color: var(--butter);
  --scatter-opacity: 0.75;
  animation: scatter-in 700ms var(--ease) 550ms forwards,
             drift-3 8s ease-in-out 1500ms infinite;
}
.hero-scatter-4 {
  bottom: 18%; left: 38%; width: 56px; height: 20px; color: var(--coral);
  --scatter-opacity: 0.50;
  animation: scatter-in 700ms var(--ease) 700ms forwards,
             drift-4 10s ease-in-out 1700ms infinite;
}
.hero-scatter-5 {
  bottom: 8%; right: 12%; width: 22px; height: 22px; color: var(--sage);
  --scatter-opacity: 0.55;
  animation: scatter-in 700ms var(--ease) 850ms forwards,
             drift-5 8.5s ease-in-out 1900ms infinite;
}

@media (max-width: 720px) {
  /* Hide the noisier scatter on small screens to keep mobile clean */
  .hero-scatter-2, .hero-scatter-4, .hero-scatter-5 { display: none; }
  .hero-squiggle { display: none; }
}

/* Respect users who prefer reduced motion — kill all the bobbing */
@media (prefers-reduced-motion: reduce) {
  .polaroid-back, .polaroid-mid, .polaroid-front,
  .hero-sticker-accent, .hero-scatter, .eyebrow-dot {
    animation: none !important;
  }
  .hero-scatter { opacity: 1; }
}

/* =====================================================================
   BUILDER
   ===================================================================== */
.builder {
  padding: var(--pad-section) 0;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.builder-frame {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-2xl);
  padding: clamp(14px, 2.5vw, 28px);
  box-shadow: var(--shadow-lg);
}

.builder-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(20px, 2.5vw, 32px);
  align-items: start;
}

.builder-steps {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ---- Step card ---- */
.step {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: border-color var(--d-base) var(--ease), box-shadow var(--d-base) var(--ease), background var(--d-base) var(--ease), opacity var(--d-base) var(--ease);
  scroll-margin-top: 96px;
}
.step[data-state="active"] {
  background: var(--surface);
  border-color: var(--ink);
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.04), 0 14px 36px rgba(0,0,0,0.04);
}
.step[data-state="done"] {
  background: var(--surface);
  border-color: var(--line);
}
.step[data-state="done"] .step-head {
  cursor: pointer;
}
.step[data-state="locked"] {
  background: transparent;
  border-color: var(--line-2);
  opacity: 0.48;
  filter: grayscale(0.4);
}
.step[data-state="locked"] .step-head {
  pointer-events: none;
  cursor: default;
}
.step[data-state="locked"] .step-head-text h3 { color: var(--ink-4); }
.step[data-state="locked"] .step-summary { color: var(--ink-5); font-style: italic; }

.step-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 20px;
  cursor: pointer;
}
.step-head-left {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  min-width: 0;
}
.step-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: var(--surface-3);
  color: var(--ink);
  border-radius: 50%;
  font-size: 11.5px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
  transition: background var(--d-base) var(--ease), color var(--d-base) var(--ease);
}
.step[data-state="active"] .step-chip {
  background: var(--ink);
  color: #FFF;
}
.step[data-state="done"] .step-chip {
  background: var(--coral);
  color: #FFF;
}
.step[data-state="done"] .step-chip::before {
  content: '✓';
  font-family: var(--font-sans);
  font-size: 14px;
}
.step[data-state="done"] .step-chip span { display: none; }

.step-head-text h3 {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.015em;
}
.step-summary {
  font-size: 13px;
  color: var(--ink-3);
  margin-top: 2px;
  font-variant-numeric: tabular-nums;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.step[data-state="active"] .step-summary { display: none; }

.step-edit {
  display: none;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-3);
  text-transform: none;
  letter-spacing: 0;
  padding: 6px 12px;
  border-radius: var(--r-pill);
  background: var(--surface-2);
  border: 1px solid var(--line);
}
.step-edit svg { width: 12px; height: 12px; transform: rotate(-90deg); }
.step[data-state="done"] .step-edit { display: inline-flex; }
.step[data-state="done"] .step-head:hover .step-edit {
  background: var(--ink);
  color: #FFF;
  border-color: var(--ink);
}

.step-body {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 440ms var(--ease), padding 300ms var(--ease), opacity 240ms var(--ease);
}
.step[data-state="active"] .step-body {
  max-height: 2400px;
  padding-top: 16px;
  padding-bottom: 22px;
  opacity: 1;
  transition: max-height 520ms var(--ease), padding 300ms var(--ease), opacity 320ms 120ms var(--ease);
  overflow: visible;
}
.step[data-state="locked"] .step-body,
.step[data-state="done"] .step-body {
  pointer-events: none;
  visibility: hidden;
  max-height: 0;
  padding: 0 20px;
  opacity: 0;
}
.step[data-state="active"] .step-body { visibility: visible; }

.step-nav {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px dashed var(--line-3);
}
.step-nav .step-next { margin-left: auto; }
.step-nav-final { justify-content: space-between; }

/* ---- Step 1: Shape ---- */
.shape-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.shape-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px 18px 18px;
  background: var(--surface);
  border: 1.5px solid var(--line);
  border-radius: var(--r-lg);
  cursor: pointer;
  transition: all var(--d-fast) var(--ease);
}
.shape-card input { position: absolute; opacity: 0; pointer-events: none; }
.shape-card:hover { border-color: var(--line-3); transform: translateY(-2px); }
.shape-card.is-checked {
  border-color: var(--ink);
  background: var(--surface);
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.04);
}
.shape-illus {
  width: 120px;
  height: 120px;
  margin: 0 auto 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.shape-illus svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.06));
  transition: transform var(--d-base) var(--ease-spring);
}
.shape-card:hover .shape-illus svg { transform: rotate(-4deg) scale(1.04); }
.shape-card.is-checked .shape-illus svg { transform: rotate(2deg); }
.shape-title {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-align: center;
}
.shape-desc {
  font-size: 13px;
  color: var(--ink-3);
  line-height: 1.5;
  text-align: center;
}
.opt-check {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid var(--line-3);
  background: var(--surface);
  transition: all var(--d-fast) var(--ease);
}
.shape-card.is-checked .opt-check,
.delivery-card.is-checked .opt-check {
  border-color: var(--coral);
  background: var(--coral);
  box-shadow: inset 0 0 0 4px var(--surface);
}

/* ---- Step 2: Size ---- */
.size-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.size-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.pill-radio { position: relative; cursor: pointer; }
.pill-radio input { position: absolute; opacity: 0; pointer-events: none; }
.pill-radio span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  background: var(--surface);
  border: 1.5px solid var(--line);
  border-radius: var(--r-pill);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-2);
  transition: all var(--d-fast) var(--ease);
}
.pill-radio span strong { font-weight: 700; }
.pill-radio span small { font-weight: 500; color: var(--ink-4); font-size: 11.5px; }
.pill-radio:hover span { border-color: var(--line-3); }
.pill-radio.is-checked span {
  background: var(--ink);
  color: #FFF;
  border-color: var(--ink);
}
.pill-radio.is-checked span small { color: rgba(255, 255, 255, 0.6); }

.unit-toggle {
  display: inline-flex;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  padding: 3px;
  gap: 2px;
}
.unit-btn {
  padding: 6px 14px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ink-3);
  border-radius: var(--r-pill);
  font-variant-numeric: tabular-nums;
  transition: all var(--d-fast) var(--ease);
}
.unit-btn.is-active {
  background: var(--ink);
  color: #FFF;
}

.size-custom {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
  padding: 14px;
  background: var(--surface-2);
  border: 1px dashed var(--line-3);
  border-radius: var(--r-md);
}
.b-label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-3);
  text-transform: none;
  letter-spacing: 0;
}
.b-label input {
  padding: 10px 12px;
  background: var(--surface);
  border: 1px solid var(--line-3);
  border-radius: var(--r-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  text-transform: none;
  letter-spacing: 0;
  font-variant-numeric: tabular-nums;
}
.b-label input:focus {
  outline: none;
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}
.b-hint { font-size: 12px; color: var(--ink-4); line-height: 1.5; }

/* Actual-size preview — interactive */
.size-preview {
  background:
    linear-gradient(var(--surface-3), var(--surface-3)) padding-box,
    repeating-linear-gradient(45deg, var(--surface-2) 0 10px, var(--surface-3) 10px 20px);
  border: 1px dashed var(--line-3);
  border-radius: var(--r-lg);
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
}
.preview-frame {
  position: relative;
  width: 100%;
  height: 300px;      /* fixed — sticker is absolute, so frame never shifts */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: var(--r-md);
  isolation: isolate;
}
.preview-grid {
  position: absolute;
  inset: 12px;
  background-image:
    linear-gradient(to right, rgba(0, 0, 0, 0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.06) 1px, transparent 1px);
  background-size: 0.25in 0.25in;
  opacity: 0.5;
  pointer-events: none;
  border-radius: var(--r-sm);
}

/* -------------------------------------------------------
   Credit-card calibration overlay (ISO/IEC 7810 ID-1)
   3.37" × 2.125" — draggable, resizable, calibrates pxPerInch
   ------------------------------------------------------- */
.credit-ref {
  position: absolute;
  left: 14px;
  top: 14px;
  width: 3.37in;
  height: 2.125in;
  background: linear-gradient(135deg, #1E3A6E 0%, #0F2247 60%, #1A3A6B 100%);
  border-radius: 10px;
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
  z-index: 4;
  cursor: grab;
  user-select: none;
  box-shadow: 0 4px 24px rgba(0,0,0,0.30), inset 0 1px 0 rgba(255,255,255,0.12);
  transition: opacity var(--d-base) var(--ease),
              box-shadow var(--d-base) var(--ease);
}
.credit-ref.is-visible {
  opacity: 1;
  pointer-events: auto;
}
.credit-ref:active { cursor: grabbing; }

/* Light shimmer */
.crd-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.13) 0%, transparent 55%);
  pointer-events: none;
}

/* EMV chip */
.crd-chip {
  position: absolute;
  top: 22%;
  left: 7%;
  width: 12%;
}
.crd-chip svg { width: 100%; height: auto; display: block; }

/* Contactless NFC */
.crd-nfc {
  position: absolute;
  top: 19%;
  left: 22%;
  width: 9%;
  color: rgba(255,255,255,0.55);
}
.crd-nfc svg { width: 100%; height: auto; display: block; }

/* Card number */
.crd-num {
  position: absolute;
  bottom: 32%;
  left: 7%;
  font-size: 7.5px;
  color: rgba(255,255,255,0.82);
  letter-spacing: 0.18em;
  font-variant-numeric: tabular-nums;
}

/* Name / expiry row */
.crd-footer {
  position: absolute;
  bottom: 9%;
  left: 7%;
  right: 14%;
  display: flex;
  gap: 14px;
}
.crd-footer-col { display: flex; flex-direction: column; gap: 1px; }
.crd-footer-label {
  font-size: 4.5px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.crd-footer-val {
  font-size: 7.5px;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.04em;
}

/* Dimension watermark */
.crd-dim-label {
  position: absolute;
  top: 7%;
  right: 7%;
  font-size: 6px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.04em;
}

/* Resize handle — bottom-right, calibrates pxPerInch on drag */
.crd-resize {
  position: absolute;
  right: -6px;
  bottom: -6px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  border: 2px solid rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-2);
  cursor: nwse-resize;
  touch-action: none;
  z-index: 5;
  box-shadow: 0 2px 8px rgba(0,0,0,0.28);
  transition: transform 150ms var(--ease-spring), background 150ms var(--ease);
}
.crd-resize:hover { transform: scale(1.18); background: #fff; }
.crd-resize svg { width: 10px; height: 10px; }

.preview-sticker {
  /* Absolute-centered so it never contributes to frame's layout height */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #FFFFFF;
  border-radius: 14%;
  box-shadow:
    0 0 0 4px #FFFFFF,
    0 4px 10px rgba(0, 0, 0, 0.08),
    0 12px 28px rgba(0, 0, 0, 0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: linear-gradient(135deg, var(--butter-soft) 0%, var(--coral-soft) 100%);
  transition: width 180ms var(--ease), height 180ms var(--ease);
  width: 211px;   /* 2.2in × 96 — JS overrides immediately on init */
  height: 211px;
  z-index: 2;
  touch-action: none;
  user-select: none;
  cursor: grab;
}
.preview-sticker.is-moving { cursor: grabbing; }
.preview-sticker.is-dragging {
  transition: none;
  box-shadow:
    0 0 0 4px #FFFFFF,
    0 0 0 7px var(--coral-glow),
    0 4px 10px rgba(0, 0, 0, 0.08),
    0 18px 36px rgba(196, 56, 79, 0.14);
}
.preview-label {
  font-variant-numeric: tabular-nums;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  padding: 5px 12px;
  border-radius: var(--r-pill);
  backdrop-filter: blur(4px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  line-height: 1.1;
  text-align: center;
}
.preview-label small {
  font-size: 10px;
  font-weight: 500;
  color: var(--ink-3);
  letter-spacing: 0.02em;
}

/* Drag handle — bottom-right corner */
.preview-handle {
  position: absolute;
  right: -6px;
  bottom: -6px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--coral);
  border: 3px solid #FFF;
  box-shadow: 0 3px 10px rgba(196, 56, 79, 0.30);
  cursor: nwse-resize;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  transition: transform 160ms var(--ease-spring), background 160ms var(--ease);
  z-index: 3;
  touch-action: none;
}
.preview-handle:hover,
.preview-handle:focus-visible { transform: scale(1.12); outline: none; }
.preview-handle:active { cursor: nwse-resize; }
.preview-handle svg { width: 12px; height: 12px; }
.preview-sticker.is-dragging .preview-handle { transform: scale(1.18); background: var(--coral-deep); }

.preview-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  padding: 0 2px;
}
.preview-hint {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  color: var(--ink-3);
  font-variant-numeric: tabular-nums;
}
.preview-hint svg { width: 12px; height: 12px; color: var(--coral); }
.preview-calibrate {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 11px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  font-size: 11.5px;
  font-weight: 600;
  color: var(--ink-2);
  font-family: var(--font-sans);
  transition: all var(--d-fast) var(--ease);
}
.preview-calibrate:hover { background: var(--ink); color: #FFF; border-color: var(--ink); }
.preview-calibrate.is-active { background: var(--sage); color: #FFF; border-color: var(--sage); }
.preview-calibrate.is-calibrated {
  background: var(--coral-soft);
  border-color: var(--coral);
  color: var(--coral-deep);
}
.preview-calibrate svg { width: 12px; height: 12px; }

.preview-cal-group {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.preview-cal-reset {
  font-size: 11px;
  font-weight: 600;
  color: var(--coral);
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 2px;
  line-height: 1;
  font-family: var(--font-sans);
}
.preview-cal-reset:hover { text-decoration: underline; }

.preview-note {
  font-size: 11.5px;
  color: var(--ink-4);
  text-align: left;
  line-height: 1.5;
}
.preview-note strong { color: var(--ink-2); font-weight: 600; }

/* ---- Step 3: Sheets ---- */
.sheet-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.stepper {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--surface);
  border: 1.5px solid var(--line);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all var(--d-fast) var(--ease);
}
.stepper:hover { background: var(--ink); color: #FFF; border-color: var(--ink); }
.stepper svg { width: 15px; height: 15px; }
#sheetsInput {
  flex: 1;
  max-width: 140px;
  padding: 10px 12px;
  background: var(--surface);
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  text-align: center;
  font-size: 22px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
  -moz-appearance: textfield;
}
#sheetsInput::-webkit-outer-spin-button,
#sheetsInput::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
#sheetsInput:focus { outline: none; border-color: var(--ink); }

.sheet-range {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  background: var(--surface-3);
  border-radius: var(--r-pill);
  margin-bottom: 12px;
}
.sheet-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--coral);
  border: 3px solid #FFF;
  box-shadow: 0 2px 8px rgba(196, 56, 79, 0.28);
  cursor: pointer;
  transition: transform var(--d-fast) var(--ease-spring);
}
.sheet-range::-webkit-slider-thumb:hover { transform: scale(1.15); }
.sheet-range::-moz-range-thumb {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--coral);
  border: 3px solid #FFF;
  box-shadow: 0 2px 8px rgba(196, 56, 79, 0.28);
  cursor: pointer;
}

.sheet-presets {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.chip {
  padding: 7px 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-2);
  transition: all var(--d-fast) var(--ease);
}
.chip:hover { background: var(--ink); color: #FFF; border-color: var(--ink); }

.qty-readout {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 16px 18px;
  background: var(--surface-2);
  border-radius: var(--r-md);
  border: 1px solid var(--line);
}
.qty-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
}
.qty-item:not(:first-child) { padding-left: 16px; }
.qty-sep { width: 1px; align-self: stretch; background: var(--line-2); }
.qty-value {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.qty-price .qty-value { color: var(--coral); }
.qty-label { font-size: 11px; font-weight: 500; color: var(--ink-3); }

/* ---- Step 4: Delivery ---- */
.delivery-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.delivery-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 24px;
  gap: 16px;
  align-items: center;
  padding: 16px 20px;
  background: var(--surface);
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  cursor: pointer;
  transition: all var(--d-fast) var(--ease);
}
.delivery-card input { position: absolute; opacity: 0; pointer-events: none; }
.delivery-card:hover { border-color: var(--line-3); transform: translateX(2px); }
.delivery-card.is-checked {
  border-color: var(--ink);
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.04);
}
.delivery-main { min-width: 0; }
.delivery-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
  flex-wrap: wrap;
}
.dtag {
  display: inline-flex;
  align-items: center;
  padding: 3px 9px;
  border-radius: var(--r-pill);
  font-size: 11.5px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.005em;
}
.dtag-free { background: var(--sage-soft); color: var(--sage); }
.dtag-ship { background: var(--sky-soft); color: #2C5A80; }
.dtag-express { background: var(--coral-soft); color: var(--coral-deep); }
.delivery-desc {
  font-size: 13px;
  color: var(--ink-3);
  line-height: 1.5;
}
.delivery-eta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1px;
  min-width: 80px;
  text-align: right;
}
.eta-value {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.eta-label {
  font-size: 10.5px;
  color: var(--ink-4);
  text-transform: none;
  letter-spacing: 0;
}
.delivery-note {
  font-size: 12px;
  color: var(--ink-4);
  line-height: 1.55;
  margin-top: 14px;
  padding: 12px 14px;
  background: var(--surface-2);
  border-radius: var(--r-sm);
}

/* ---- Step 5 ---- */
.b-text {
  padding: 12px 14px;
  background: var(--surface);
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  font-size: 14px;
  color: var(--ink);
  transition: all var(--d-fast) var(--ease);
  width: 100%;
}
.b-text:focus { outline: none; border-color: var(--ink); }
.b-text::placeholder { color: var(--ink-4); }

.final-summary {
  margin: 18px 0 6px;
  padding: 18px 20px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  font-variant-numeric: tabular-nums;
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.65;
}
.final-summary strong { color: var(--ink); font-weight: 700; }
.final-summary .fs-price { color: var(--coral); font-weight: 700; font-size: 15px; }

/* =====================================================================
   CART (right rail)
   ===================================================================== */
.cart-card {
  background: var(--surface-2);
  border: 1.5px dashed var(--line-3);
  border-radius: var(--r-xl);
  padding: 22px 20px;
  position: sticky;
  top: 96px;
  max-height: calc(100dvh - 116px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.cart-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  padding-bottom: 14px;
  border-bottom: 1px dashed var(--line-3);
  margin-bottom: 14px;
  flex-shrink: 0;
}
.cart-head h3 { font-size: 16px; font-weight: 700; letter-spacing: -0.01em; }
.cart-count { font-size: 12px; font-weight: 600; color: var(--ink-3); font-variant-numeric: tabular-nums; }

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 28px 10px;
  text-align: center;
  color: var(--ink-3);
}
.cart-empty svg { width: 38px; height: 38px; color: var(--ink-4); }
.cart-empty p { font-size: 13px; line-height: 1.5; max-width: 240px; }

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
  overflow-y: auto;
  min-height: 0;
}
.cart-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 12px 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  position: relative;
  animation: cart-in 360ms var(--ease-spring);
}
@keyframes cart-in {
  from { opacity: 0; transform: translateY(8px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.ci-main { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.ci-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ci-config {
  font-size: 12px;
  color: var(--ink-3);
  font-variant-numeric: tabular-nums;
}
.ci-price { display: flex; flex-direction: column; align-items: flex-end; gap: 2px; }
.ci-price-amt { font-size: 15px; font-weight: 700; color: var(--coral); font-variant-numeric: tabular-nums; }
.ci-price-count { font-size: 11px; color: var(--ink-4); }
.ci-remove {
  grid-column: 1 / -1;
  justify-self: end;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--surface-3);
  color: var(--ink-3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
  transition: all var(--d-fast) var(--ease);
}
.ci-remove:hover { background: var(--coral); color: #FFF; }
.ci-remove svg { width: 12px; height: 12px; }

.cart-totals {
  padding-top: 14px;
  border-top: 1px dashed var(--line-3);
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-shrink: 0;
}
.totals-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 14px;
}
.totals-row span:first-child { font-weight: 600; color: var(--ink-2); }
.totals-value {
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.totals-sub { font-size: 12px; color: var(--ink-3); font-weight: 500; font-variant-numeric: tabular-nums; }
.totals-sub span:first-child { font-weight: 500; color: var(--ink-3); }
.totals-grand {
  margin-top: 6px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.totals-grand span:first-child {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}
.totals-grand .totals-value {
  color: var(--coral);
  font-size: 24px;
  font-weight: 800;
}
.totals-dollar {
  font-size: 0.65em;
  font-weight: 600;
  vertical-align: 0.15em;
  margin-right: 1px;
  opacity: 0.8;
}

/* Shipping rates panel */
.shipping-rates-panel {
  margin-top: 16px;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}
.rates-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.rates-header strong { font-size: 13px; color: var(--ink-2); }
.rate-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  cursor: pointer;
  margin-bottom: 6px;
  transition: border-color 0.15s, background 0.15s;
}
.rate-card:hover { border-color: var(--ink-3); }
.rate-card.is-checked { border-color: var(--coral); background: var(--coral-soft); }
.rate-card-info { flex: 1; }
.rate-card-info strong { display: block; font-size: 13px; font-weight: 600; color: var(--ink); }
.rate-card-info small { font-size: 11.5px; color: var(--ink-3); }
.rate-card-price { font-size: 14px; font-weight: 700; color: var(--ink); font-variant-numeric: tabular-nums; }
.rate-card.is-checked .rate-card-price { color: var(--coral-deep); }
.rates-hint { font-size: 12.5px; color: var(--ink-3); }
.rates-error { font-size: 12.5px; color: var(--coral); }
.shipping-rates-panel.is-error { background: var(--coral-soft); border-radius: var(--r-md); padding: 10px 12px; border: 1px solid var(--coral); }
.btn-sm { font-size: 12px; padding: 6px 12px; }

.cart-card .btn {
  margin-top: 10px;
}
.cart-add-more { margin-top: 4px !important; }

/* =====================================================================
   BRIEF PANE
   ===================================================================== */
.brief-pane {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px dashed var(--line-3);
  animation: brief-in 500ms var(--ease);
}
@keyframes brief-in {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.brief-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}
.brief-title {
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-top: 12px;
  line-height: 1.1;
}
.brief-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-2);
  transition: all var(--d-fast) var(--ease);
  flex-shrink: 0;
}
.brief-close:hover { background: var(--ink); color: #FFF; border-color: var(--ink); }
.brief-close svg { width: 14px; height: 14px; }
.brief-body {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 20px;
  margin-bottom: 16px;
}
#briefText {
  width: 100%;
  min-height: 260px;
  resize: vertical;
  border: none;
  background: transparent;
  font-variant-numeric: tabular-nums;
  font-size: 13px;
  color: var(--ink);
  line-height: 1.65;
}
#briefText:focus { outline: none; }
.brief-reminder {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 14px;
  padding: 12px 14px;
  background: var(--coral-soft);
  border-radius: var(--r-md);
  font-size: 13px;
  color: var(--coral-deep);
  line-height: 1.5;
}
.brief-reminder strong { color: var(--coral-deep); }
.reminder-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
  margin-top: 6px;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(196, 56, 79, 0.18);
}
.brief-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* =====================================================================
   PAST PRINTS — editorial masonry gallery
   ===================================================================== */
.prints {
  padding: var(--pad-section) 0;
  position: relative;
}

.gallery {
  max-width: clamp(720px, 90%, 1080px);
  margin: 0 auto;
  columns: 2;
  column-gap: clamp(20px, 2.4vw, 34px);
}
.gallery .gal-card {
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  margin: 0 0 clamp(22px, 2.6vw, 36px) 0;
  display: block;
  position: relative;
}
.gal-media {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--surface-3);
  box-shadow: 0 1px 2px rgba(0,0,0,0.04), 0 10px 28px rgba(0,0,0,0.05);
  transition: box-shadow 520ms var(--ease), transform 520ms var(--ease);
}
.gal-media img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 760ms var(--ease);
}
.gal-card:hover .gal-media {
  box-shadow: 0 2px 4px rgba(0,0,0,0.04), 0 22px 52px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}
.gal-card:hover .gal-media img { transform: scale(1.025); }

.gal-card figcaption {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 3px;
  padding: 13px 8px 2px;
}
.gal-card figcaption strong {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.005em;
  line-height: 1.3;
}
.gal-card figcaption span {
  font-size: 12.5px;
  color: var(--ink-4);
  font-variant-numeric: tabular-nums;
}
.gal-foot {
  max-width: clamp(720px, 80vw, 1440px);
  margin: clamp(48px, 5vw, 64px) auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--ink-4);
  font-size: 13.5px;
  line-height: 1.6;
}
.gal-foot a { color: var(--coral); text-decoration: underline; text-underline-offset: 3px; }

@media (max-width: 720px) {
  .gallery { columns: 1; column-gap: 0; }
  .gallery .gal-card { margin-bottom: 22px; }
}

/* =====================================================================
   FAQ
   ===================================================================== */
.faq {
  padding: var(--pad-section) 0;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
}
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
  transition: padding var(--d-fast) var(--ease);
}
.faq-item summary {
  list-style: none;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  font-size: 16.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  transition: color var(--d-fast) var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--coral); }
.faq-chevron {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--d-base) var(--ease-spring), background var(--d-fast) var(--ease);
  color: var(--ink-2);
  flex-shrink: 0;
}
.faq-chevron svg { width: 13px; height: 13px; }
.faq-item[open] .faq-chevron {
  transform: rotate(180deg);
  background: var(--coral);
  color: #FFF;
  border-color: var(--coral);
}
.faq-body { padding: 0 0 26px; }
.faq-body p {
  font-size: 15.5px;
  color: var(--ink-3);
  line-height: 1.7;
  max-width: none;
}
.faq-body a { color: var(--coral); text-decoration: underline; text-underline-offset: 3px; }

/* =====================================================================
   FOOTER
   ===================================================================== */
.footer {
  padding: var(--pad-section-tight) 0 32px;
  border-top: 1px solid var(--line);
  background: var(--bg-3);
}
.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(24px, 4vw, 48px);
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.footer-brand .brand { margin-bottom: 8px; }
.footer-mission {
  font-size: 14px;
  color: var(--ink-3);
  line-height: 1.5;
}
.footer-links {
  display: flex;
  gap: clamp(16px, 2vw, 32px);
  flex-wrap: wrap;
  align-items: center;
}
.footer-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  transition: color var(--d-fast) var(--ease);
}
.footer-links a:hover { color: var(--coral); }

.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid var(--line-2);
  display: flex;
  justify-content: flex-start;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}
.footer-copy { font-size: 12.5px; color: var(--ink-4); }

/* =====================================================================
   REVEAL
   ===================================================================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms var(--ease), transform 600ms var(--ease);
  will-change: opacity, transform;
}
[data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
  .drawer-card { transition: none; }
}

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 1024px) {
  .hero-grid { gap: 36px; }
  .hero-visual { order: 1; }
  .hero-stack { width: clamp(280px, 70vw, 440px); margin: 0 auto; }

  .builder-grid { grid-template-columns: 1fr; }
  .cart-card { position: static; max-height: none; }
}

@media (max-width: 768px) {
  .nav { height: 72px; gap: 12px; }
  .nav-shell.is-compact .nav { height: 64px; }
  .nav-links { display: none; }
  .nav-cta { margin-left: auto; padding: 10px 10px 10px 16px; font-size: 13.5px; }
  .nav-cta .icon-circle { width: 26px; height: 26px; }
  .brand-mark { width: 32px; height: 32px; }
  .brand-word { font-size: 17px; }
  .hamburger { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; }

  .hero-title { font-size: clamp(34px, 8.5vw, 50px); }

  .shape-group { grid-template-columns: 1fr; }
  .shape-illus { width: 100px; height: 100px; }

  .size-top { flex-direction: column; align-items: flex-start; gap: 12px; }

  .delivery-card { grid-template-columns: 1fr; gap: 6px; padding: 14px 16px; }
  .delivery-eta { align-items: flex-start; text-align: left; }
  .delivery-card .opt-check { top: 14px; right: 14px; }

  .qty-readout { flex-wrap: wrap; gap: 10px; }
  .qty-item { min-width: 32%; }
  .qty-sep { display: none; }

  .preview-frame { height: 220px; }
  .credit-ref { display: none; }

  .drawer { padding-right: 4px; }
  .drawer-rail { left: -14px; }
  .drawer-card { --drawer-top: calc(86px + var(--i) * 10px); padding: 14px; }

  .footer-grid { gap: 18px; }
}

@media (max-width: 560px) {
  .builder-frame { padding: 14px; border-radius: var(--r-xl); }
  .step-head { padding: 14px 16px; }
  .step-body { padding: 0 16px 20px; }
  .step[data-state="active"] .step-body { padding-top: 12px; }

  .hero-stack { width: min(88vw, 360px); }
  .hero-sticker-accent { width: 78px; right: -2%; }

  .hero-ctas .btn { width: 100%; justify-content: center; }
  .hero-meta { gap: 14px; }

  .brief-actions .btn { width: 100%; justify-content: center; }

  .drawer-rail { display: none; }
  .drawer-card .drawer-tab { left: 16px; }

  .nav { padding: 0 16px; height: 54px; }
  .nav-cta { padding: 8px 8px 8px 14px; font-size: 13px; }
  .nav-cta span:not(.icon-circle) { display: none; }
  .nav-cta .icon-circle { width: 28px; height: 28px; }
}

/* =====================================================================
   PARTNERSHIPS — document-style page (plain, factual)
   ===================================================================== */
.doc-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.doc-nav-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 14px clamp(20px, 4vw, 40px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.doc-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  transition: color var(--d-fast) var(--ease);
}
.doc-back:hover { color: var(--coral); }
.doc-back::before {
  content: '←';
  font-size: 16px;
  line-height: 1;
  transition: transform var(--d-fast) var(--ease);
}
.doc-back:hover::before { transform: translateX(-3px); }
.doc-meta {
  font-size: 13px;
  color: var(--ink-4);
  font-variant-numeric: tabular-nums;
}

.doc {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(56px, 8vw, 96px) clamp(20px, 4vw, 40px) clamp(64px, 8vw, 120px);
}
.doc-head { margin-bottom: clamp(36px, 5vw, 56px); }
.doc-head .eyebrow { margin-bottom: 18px; }
.doc-head h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.04;
  color: var(--ink);
  margin-bottom: 20px;
}
.doc-lede {
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 62ch;
}

.doc section { margin-top: clamp(32px, 4vw, 48px); }
.doc h2 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 14px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.doc h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin-top: 18px;
  margin-bottom: 6px;
}
.doc p {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--ink-2);
  max-width: 62ch;
  margin-bottom: 12px;
}
.doc p strong { color: var(--ink); font-weight: 600; }
.doc a {
  color: var(--coral);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.doc a:hover { text-decoration-thickness: 2px; }

.doc ul, .doc ol {
  list-style: none;
  padding: 0;
  margin: 10px 0 16px;
  max-width: 62ch;
}
.doc ul li, .doc ol li {
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--ink-2);
  padding: 6px 0 6px 22px;
  position: relative;
}
.doc ul li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 14px;
  width: 8px;
  height: 1px;
  background: var(--coral);
}
.doc ol {
  counter-reset: docol;
}
.doc ol li {
  counter-increment: docol;
  padding-left: 32px;
}
.doc ol li::before {
  content: counter(docol);
  position: absolute;
  left: 0;
  top: 6px;
  width: 22px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--coral);
  font-variant-numeric: tabular-nums;
  text-align: right;
}
.doc li strong { color: var(--ink); font-weight: 600; }

.doc-table {
  width: 100%;
  max-width: 620px;
  border-collapse: collapse;
  margin: 16px 0 8px;
  font-size: 14px;
}
.doc-table th,
.doc-table td {
  text-align: left;
  padding: 12px 14px 12px 0;
  border-bottom: 1px solid var(--line);
  font-variant-numeric: tabular-nums;
  color: var(--ink-2);
}
.doc-table th {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-4);
  letter-spacing: 0;
  text-transform: none;
  padding-bottom: 8px;
}
.doc-table td:last-child,
.doc-table th:last-child { text-align: right; padding-right: 0; }
.doc-table td strong { color: var(--ink); font-weight: 600; }
.doc-table tbody tr:last-child td { border-bottom: none; }

.doc-note {
  margin-top: clamp(48px, 6vw, 72px);
  padding: 22px 24px;
  background: var(--surface-3);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-3);
}
.doc-note strong { color: var(--ink); font-weight: 600; }

.doc-foot {
  max-width: 720px;
  margin: 0 auto;
  padding: 28px clamp(20px, 4vw, 40px);
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  color: var(--ink-4);
}
.doc-foot a { color: var(--ink-3); }
.doc-foot a:hover { color: var(--coral); }

@media (max-width: 640px) {
  .doc-table { font-size: 13px; }
  .doc-table th, .doc-table td { padding: 10px 10px 10px 0; }
}

/* =====================================================================
   HERO — artist partnership teaser line
   ===================================================================== */
.hero-artist-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 13px;
  color: var(--ink-4);
  font-weight: 400;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
  transition: color var(--d-fast) var(--ease), border-color var(--d-fast) var(--ease);
  width: fit-content;
}
.hero-artist-link strong { color: var(--ink-2); font-weight: 600; }
.hero-artist-link .hal-arrow {
  color: var(--coral);
  font-size: 15px;
  line-height: 1;
  transform: translateX(0);
  display: inline-block;
  transition: transform var(--d-fast) var(--ease);
}
.hero-artist-link:hover { color: var(--ink); border-bottom-color: var(--line-3); }
.hero-artist-link:hover .hal-arrow { transform: translateX(3px); }

/* =====================================================================
   PARTNERSHIPS — structural components
   ===================================================================== */

/* section counters */
.doc h2 {
  display: flex;
  align-items: baseline;
  gap: 14px;
}
.doc-sec-num {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--coral);
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
  opacity: 0.8;
  letter-spacing: 0;
  line-height: 1;
  padding-top: 2px;
}

/* stat bar — deal at a glance */
.pship-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin: clamp(28px, 3vw, 44px) 0 0;
}
.pship-stat {
  padding: 18px 20px 16px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.pship-stat:last-child { border-right: none; }
.pship-stat-val {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--ink);
  line-height: 1;
}
.pship-stat-val .t-coral { color: var(--coral); }
.pship-stat-label {
  font-size: 12px;
  color: var(--ink-4);
  line-height: 1.35;
}

/* payment option cards */
.pship-pay-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 20px 0 22px;
}
.pship-pay-card {
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: var(--surface);
  transition: border-color var(--d-fast) var(--ease);
}
.pship-pay-card:hover { border-color: var(--line-3); }
.pship-pay-num {
  font-size: 11px;
  font-weight: 700;
  color: var(--coral);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0;
}
.pship-pay-title {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.005em;
  line-height: 1.3;
}
.pship-pay-body {
  font-size: 13px;
  color: var(--ink-3);
  line-height: 1.55;
}

/* contact buttons on "How to start" */
.pship-ctas {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 22px;
}
.pship-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: var(--r-pill);
  font-size: 14px;
  font-weight: 600;
  border: 1px solid var(--line-3);
  background: transparent;
  color: var(--ink-2);
  text-decoration: none;
  cursor: pointer;
  transition: border-color var(--d-fast) var(--ease), color var(--d-fast) var(--ease), background var(--d-fast) var(--ease);
  line-height: 1;
}
.pship-btn:hover { border-color: var(--coral); color: var(--coral); background: var(--coral-soft); }
.pship-btn-primary {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.pship-btn-primary:hover { background: var(--coral); border-color: var(--coral); color: #fff; }

/* limits — two-col compact grid */
.pship-limits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 14px 0 0;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
}
.pship-limit-item {
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  font-size: 13.5px;
  color: var(--ink-3);
  line-height: 1.45;
}
.pship-limit-item:nth-child(even) { border-right: none; }
.pship-limit-item:nth-last-child(-n+2) { border-bottom: none; }
.pship-limit-item strong { color: var(--ink-2); font-weight: 600; }

@media (max-width: 680px) {
  .pship-stats { grid-template-columns: 1fr 1fr; }
  .pship-stat:nth-child(2) { border-right: none; }
  .pship-stat:nth-child(n+3) { border-top: 1px solid var(--line); }
  .pship-pay-grid { grid-template-columns: 1fr; }
  .pship-limits { grid-template-columns: 1fr; }
  .pship-limit-item { border-right: none !important; }
  .pship-limit-item:last-child { border-bottom: none; }
}

/* =====================================================================
   BRING STRIP — what we need from you (above builder)
   ===================================================================== */
.bring-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 24px 0 48px;
  padding: 24px;
  background: var(--surface-2);
  border: 1px dashed var(--line-3);
  border-radius: var(--r-xl);
}
.bring-strip li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 6px 6px;
  min-width: 0;
}
.bring-strip .bs-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--coral);
  line-height: 1;
  padding: 6px 9px;
  border: 1.5px solid var(--coral);
  border-radius: var(--r-sm);
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}
.bring-strip li > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.bring-strip strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.bring-strip span {
  font-size: 12.5px;
  color: var(--ink-3);
  line-height: 1.45;
}
@media (max-width: 860px) {
  .bring-strip { grid-template-columns: 1fr; gap: 4px; padding: 18px; }
}

/* =====================================================================
   STEP 2 — FINISH (bleed + lamination)
   ===================================================================== */
.finish-block {
  margin-bottom: 22px;
}
.finish-block:last-of-type {
  margin-bottom: 6px;
}
.finish-label {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-bottom: 12px;
}
.finish-label > span {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.finish-label small {
  font-size: 12.5px;
  color: var(--ink-3);
  line-height: 1.5;
  font-weight: 400;
}

/* Bleed cards */
.bleed-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.bleed-card,
.lam-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: var(--surface);
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  cursor: pointer;
  transition: all var(--d-fast) var(--ease);
}
.bleed-card input,
.lam-card input { position: absolute; opacity: 0; pointer-events: none; }
.bleed-card:hover,
.lam-card:hover { border-color: var(--line-3); transform: translateY(-1px); }
.bleed-card.is-checked,
.lam-card.is-checked {
  border-color: var(--ink);
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.04);
}
.bleed-card.is-checked .opt-check,
.lam-card.is-checked .opt-check {
  border-color: var(--coral);
  background: var(--coral);
  box-shadow: inset 0 0 0 4px var(--surface);
}

.bleed-swatch {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 0 1px var(--line);
}
.bleed-swatch-white {
  background: #FFFFFF;
}
.bleed-swatch-black {
  background: #1A1A1A;
}
.bleed-swatch .bs-art {
  display: block;
  width: 26px;
  height: 26px;
  background: linear-gradient(135deg, #E8476F 0%, #F4D47A 100%);
  border-radius: 6px;
  transform: rotate(-6deg);
  box-shadow: 0 1px 0 rgba(0,0,0,0.04);
}
.bleed-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.bleed-text strong { font-size: 14px; font-weight: 700; color: var(--ink); }
.bleed-text small { font-size: 12px; color: var(--ink-3); line-height: 1.4; }

/* Lamination cards */
.lam-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.lam-card { flex-direction: column; align-items: flex-start; gap: 10px; padding: 14px; }
.lam-swatch {
  width: 100%;
  height: 56px;
  border-radius: var(--r-sm);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.lam-swatch-matte {
  background: linear-gradient(135deg, #C8C5C0 0%, #E0DCD6 100%);
}
.lam-swatch-glossy {
  background: linear-gradient(135deg, #E8476F 0%, #F4D47A 100%);
  position: relative;
}
.lam-swatch-glossy::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,0.55) 45%, transparent 60%);
}
.lam-swatch-holo {
  background:
    linear-gradient(135deg,
      #FF6B9D 0%, #C77DFF 22%, #7CC8FF 45%,
      #6BFFB4 65%, #FFE066 85%, #FF6B9D 100%);
}
.lam-swatch-holo::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(60deg,
      rgba(255,255,255,0.18) 0 2px, transparent 2px 6px);
}
.lam-text { display: flex; flex-direction: column; gap: 1px; }
.lam-text strong { font-size: 13.5px; font-weight: 700; color: var(--ink); }
.lam-text small { font-size: 11.5px; color: var(--ink-3); line-height: 1.35; font-variant-numeric: tabular-nums; }
.lam-card .opt-check { top: 10px; right: 10px; }

@media (max-width: 640px) {
  .bleed-group { grid-template-columns: 1fr; }
  .lam-group { grid-template-columns: 1fr; }
  .lam-card { flex-direction: row; align-items: center; }
  .lam-swatch { width: 56px; height: 56px; flex-shrink: 0; }
  .lam-card .opt-check { top: 50%; right: 14px; transform: translateY(-50%); }
}

/* =====================================================================
   STEP 6 — FILE DROPZONE
   ===================================================================== */
.file-drop {
  position: relative;
  display: block;
  background: var(--surface-2);
  border: 1.5px dashed var(--line-3);
  border-radius: var(--r-lg);
  padding: 24px;
  text-align: center;
  cursor: pointer;
  transition: all var(--d-fast) var(--ease);
}
.file-drop:hover,
.file-drop:focus-visible,
.file-drop.is-dragover {
  border-color: var(--coral);
  background: var(--coral-glow);
  outline: none;
}
.file-drop.has-files {
  text-align: left;
  padding: 16px;
}
.file-drop-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  pointer-events: none;
}
.file-drop-icon {
  display: inline-flex;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--line);
  align-items: center;
  justify-content: center;
  color: var(--ink-2);
  margin-bottom: 4px;
}
.file-drop-icon svg { width: 22px; height: 22px; }
.file-drop-empty strong {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.file-drop-empty span:not(.file-drop-cta):not(.file-drop-formats) {
  font-size: 12.5px;
  color: var(--ink-3);
  line-height: 1.5;
  max-width: 360px;
}
.file-drop-formats {
  font-size: 10.5px !important;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-4) !important;
  font-weight: 600;
  margin-top: 4px;
}
.file-drop-cta {
  display: inline-block;
  margin-top: 10px;
  padding: 7px 16px;
  background: var(--ink);
  color: #FFF;
  border-radius: var(--r-pill);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: -0.005em;
}

.file-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.file-list li {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 12px;
  align-items: center;
  padding: 10px 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  font-size: 13px;
}
.file-list .fi-icon {
  width: 28px;
  height: 28px;
  border-radius: var(--r-xs);
  background: var(--coral-soft);
  color: var(--coral-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  flex-shrink: 0;
}
.file-list .fi-name {
  min-width: 0;
  font-weight: 600;
  color: var(--ink);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.file-list .fi-size {
  color: var(--ink-4);
  font-variant-numeric: tabular-nums;
  font-size: 12px;
  flex-shrink: 0;
}
.file-list .fi-remove {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--surface-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-3);
  transition: all var(--d-fast) var(--ease);
}
.file-list .fi-remove:hover { background: var(--coral); color: #FFF; }
.file-list .fi-remove svg { width: 12px; height: 12px; }

.file-drop.has-files .file-drop-cta-inline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  padding: 8px 14px;
  background: var(--surface);
  color: var(--ink-2);
  border: 1px dashed var(--line-3);
  border-radius: var(--r-pill);
  font-size: 12.5px;
  font-weight: 600;
  cursor: pointer;
}

/* =====================================================================
   CHECKOUT FORM — email, address, pickup, notes
   ===================================================================== */
.brief-sub {
  margin-top: 6px;
  font-size: 14px;
  color: var(--ink-3);
  line-height: 1.55;
  max-width: 540px;
}
.checkout-form {
  margin-bottom: 26px;
}
.checkout-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.ck-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.ck-field-half { grid-column: span 2; }
.ck-field-full { grid-column: span 4; }
.ck-field-quarter { grid-column: span 1; }

.ck-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-2);
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.ck-label small {
  font-weight: 500;
  color: var(--ink-4);
  font-size: 11.5px;
  letter-spacing: 0;
  text-transform: none;
}
.ck-req {
  display: inline-block;
  padding: 1px 6px;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--coral-deep);
  background: var(--coral-soft);
  border-radius: var(--r-pill);
}

.checkout-form .b-text {
  font-size: 14px;
  padding: 11px 13px;
  background: var(--surface);
}
.checkout-form .b-text:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(0,0,0,0.05);
}
.ck-notes { resize: vertical; min-height: 64px; }

.ck-error {
  font-size: 12px;
  font-weight: 600;
  color: var(--coral);
  line-height: 1.4;
  display: flex;
  align-items: center;
  gap: 6px;
}
.ck-error::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--coral);
}
.ck-field.is-error .b-text {
  border-color: var(--coral);
  box-shadow: 0 0 0 3px var(--coral-soft);
}

/* Conditional blocks */
.ck-block {
  margin-top: 16px;
  padding: 18px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
}
.ck-block-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-2);
}
.ck-tag {
  display: inline-flex;
  align-items: center;
  padding: 3px 9px;
  border-radius: var(--r-pill);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.ck-note,
.ck-tip {
  font-size: 12.5px;
  color: var(--ink-3);
  line-height: 1.5;
  margin-top: 12px;
}
.ck-tip strong { color: var(--ink); font-weight: 700; }
.ck-link {
  display: inline;
  background: none;
  border: none;
  color: var(--coral);
  font-weight: 700;
  cursor: pointer;
  padding: 0;
  font: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.ck-link:hover { color: var(--coral-deep); }

/* Files summary inside checkout */
.ck-files-summary {
  margin-top: 16px;
  padding: 14px 16px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
}
.ck-files-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
  font-size: 13px;
  color: var(--ink-2);
}
.ck-files-head strong { font-weight: 700; color: var(--ink); }
.ck-files-head span { font-size: 12px; color: var(--ink-4); font-variant-numeric: tabular-nums; }
.ck-files-summary ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.ck-files-summary li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 10px;
  background: var(--surface);
  border-radius: var(--r-xs);
  font-size: 12.5px;
  color: var(--ink-2);
  gap: 10px;
}
.ck-files-summary li .fname { font-weight: 600; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; min-width: 0; }
.ck-files-summary li .ftag { font-size: 11px; color: var(--ink-4); flex-shrink: 0; }
.ck-files-summary li .ftag.is-missing { color: var(--coral); font-weight: 600; }
.ck-files-tip {
  margin-top: 10px;
  padding: 10px 12px;
  background: var(--coral-soft);
  border-radius: var(--r-sm);
  color: var(--coral-deep);
  font-size: 12.5px;
}

.brief-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 24px 0 16px;
  color: var(--ink-3);
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.brief-divider::before,
.brief-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--line-3);
}

/* Responsive */
@media (max-width: 720px) {
  .checkout-grid { grid-template-columns: repeat(4, 1fr); gap: 12px; }
  .ck-field-half { grid-column: span 4; }
  .ck-field-quarter { grid-column: span 2; }
}
@media (max-width: 480px) {
  .ck-block { padding: 14px; }
}

/* =====================================================================
   STEP 3 — SIZE callout (big sticker count)
   ===================================================================== */
.size-callout {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 22px;
  margin-bottom: 18px;
  background: linear-gradient(135deg, var(--coral-soft) 0%, var(--butter-soft) 100%);
  border: 1px solid var(--coral-soft);
  border-radius: var(--r-lg);
}
.size-callout-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 6vw, 56px);
  line-height: 1;
  color: var(--coral);
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
  min-width: 56px;
  text-align: center;
}
.size-callout-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.size-callout-text strong {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.size-callout-text small {
  font-size: 13px;
  color: var(--ink-3);
  font-variant-numeric: tabular-nums;
}

/* Make pill descriptors tighter */
.pill-radio span small { font-variant-numeric: tabular-nums; }

/* =====================================================================
   STEP 4 — SHEETS (clean equation)
   ===================================================================== */
.sheet-intro {
  font-size: 14px;
  color: var(--ink-3);
  margin-bottom: 14px;
  text-align: center;
  line-height: 1.5;
  font-variant-numeric: tabular-nums;
}
.sheet-intro strong { color: var(--ink); font-weight: 700; }

.qty-readout-clean {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
  margin-top: 18px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
}
.qty-equation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.qty-eq-part {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-align: center;
  min-width: 60px;
}
.qty-eq-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(24px, 3.6vw, 32px);
  color: var(--ink);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}
.qty-eq-lbl {
  font-size: 11.5px;
  color: var(--ink-3);
  font-weight: 600;
  letter-spacing: -0.005em;
}
.qty-eq-op {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  color: var(--ink-4);
  line-height: 1;
}
.qty-eq-result .qty-eq-num { color: var(--coral); }
.qty-eq-free .qty-eq-num {
  font-size: clamp(18px, 2.4vw, 22px);
  color: var(--sage);
  background: var(--sage-soft);
  padding: 4px 10px;
  border-radius: var(--r-pill);
}
.qty-price-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px dashed var(--line-3);
  font-size: 14px;
  color: var(--ink-3);
}
.qty-price-line strong {
  font-size: 22px;
  font-weight: 800;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}

/* =====================================================================
   CART — edit + remove buttons
   ===================================================================== */
.ci-actions {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}
.ci-edit,
.ci-remove {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--ink-3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all var(--d-fast) var(--ease);
}
.ci-edit:hover { background: var(--ink); color: #FFF; border-color: var(--ink); }
.ci-remove:hover { background: var(--coral); color: #FFF; border-color: var(--coral); }
.ci-edit svg, .ci-remove svg { width: 12px; height: 12px; }
.ci-no-file { color: var(--coral); font-weight: 700; font-size: 11.5px; }

/* Cart shipping note */
.totals-shipping-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 8px 0 12px;
  padding: 10px 12px;
  background: var(--sky-soft);
  border-radius: var(--r-sm);
  font-size: 12px;
  color: #2C5A80;
  line-height: 1.4;
}
.totals-shipping-note svg { width: 14px; height: 14px; flex-shrink: 0; margin-top: 1px; }

/* =====================================================================
   EDITOR SUCCESS STATE
   ===================================================================== */
.step-success {
  margin-top: 18px;
  padding: 22px;
  background: linear-gradient(135deg, var(--sage-soft) 0%, #F4FBF1 100%);
  border: 1.5px solid #B8D5BB;
  border-radius: var(--r-lg);
  animation: ss-in 380ms var(--ease);
}
@keyframes ss-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.step-success-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.ss-tick {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--sage);
  color: #FFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  animation: ss-pop 480ms var(--ease-spring);
}
@keyframes ss-pop {
  from { transform: scale(0.4); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.ss-tick svg { width: 22px; height: 22px; }
.step-success-head > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.step-success-head strong {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.step-success-head span {
  font-size: 13px;
  color: var(--ink-3);
}
.step-success-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.ss-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
}
.ss-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
}
.ss-btn.btn-primary .ss-ico { background: rgba(255, 255, 255, 0.18); }
.ss-btn .ss-ico svg { width: 12px; height: 12px; }
@media (max-width: 540px) {
  .step-success-actions { grid-template-columns: 1fr; }
}

/* =====================================================================
   CHECKOUT — sectioned layout
   ===================================================================== */
.ck-section {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px dashed var(--line-3);
}
.ck-section:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.ck-section-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.ck-section-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--ink);
  color: #FFF;
  font-weight: 700;
  font-size: 12.5px;
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
}
.ck-section-head h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.ck-section-head h4 small {
  font-weight: 500;
  color: var(--ink-4);
  font-size: 13px;
  letter-spacing: 0;
  margin-left: 4px;
}
.ck-section-lede {
  margin: -8px 0 14px;
  font-size: 13px;
  color: var(--ink-3);
  line-height: 1.5;
}

/* Override old block style — checkout pane is now sectioned */
.checkout-pane .ck-block {
  margin-top: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
}
.checkout-pane .ck-block .checkout-grid { margin-top: 0; }

/* Delivery cards in checkout */
.ck-delivery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.ck-deliv-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto 22px;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  background: var(--surface);
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  cursor: pointer;
  transition: all var(--d-fast) var(--ease);
}
.ck-deliv-card input { position: absolute; opacity: 0; pointer-events: none; }
.ck-deliv-card:hover { border-color: var(--line-3); transform: translateY(-1px); }
.ck-deliv-card.is-checked {
  border-color: var(--ink);
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.04);
}
.ck-deliv-card.is-checked .opt-check {
  border-color: var(--coral);
  background: var(--coral);
  box-shadow: inset 0 0 0 4px var(--surface);
}
.ck-deliv-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--surface-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-2);
  flex-shrink: 0;
}
.ck-deliv-icon svg { width: 18px; height: 18px; }
.ck-deliv-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.ck-deliv-text strong { font-size: 13.5px; font-weight: 700; color: var(--ink); letter-spacing: -0.005em; }
.ck-deliv-text small { font-size: 12px; color: var(--ink-3); line-height: 1.4; }
.ck-deliv-cost {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--ink-3);
  letter-spacing: -0.005em;
  text-align: right;
  white-space: nowrap;
}
.ck-deliv-cost-free { color: var(--sage); }

@media (max-width: 720px) {
  .ck-delivery-grid { grid-template-columns: 1fr; }
}

/* Chat channel toggle */
.chat-channels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.chat-channel {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr 22px;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  background: var(--surface);
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  cursor: pointer;
  transition: all var(--d-fast) var(--ease);
}
.chat-channel input { position: absolute; opacity: 0; pointer-events: none; }
.chat-channel:hover { border-color: var(--line-3); }
.chat-channel.is-checked {
  border-color: var(--ink);
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.04);
}
.chat-channel.is-checked .opt-check {
  border-color: var(--coral);
  background: var(--coral);
  box-shadow: inset 0 0 0 4px var(--surface);
}
.cc-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--surface-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-2);
  flex-shrink: 0;
}
.cc-icon svg { width: 16px; height: 16px; }
.cc-icon-tg { background: #E8F4FD; color: #229ED9; }
.cc-icon-dc { background: #EEF0FB; color: #5865F2; }
.cc-text { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.cc-text strong { font-size: 13px; font-weight: 700; color: var(--ink); }
.cc-text small { font-size: 11.5px; color: var(--ink-3); }

.ck-handle-field { margin-top: 12px; }

@media (max-width: 720px) {
  .chat-channels { grid-template-columns: 1fr; }
}

/* =====================================================================
   ORDER SUMMARY — checkout right rail
   ===================================================================== */
.order-summary {
  margin-top: 28px;
  padding: 22px;
  background: var(--surface-2);
  border: 1.5px dashed var(--line-3);
  border-radius: var(--r-xl);
}
.os-head {
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--line-3);
}
.os-head h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.os-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.os-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: flex-start;
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--line);
}
.os-item:last-child { border-bottom: none; padding-bottom: 0; }
.os-item-main { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.os-item-main strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.os-item-main span {
  font-size: 12px;
  color: var(--ink-3);
  font-variant-numeric: tabular-nums;
  line-height: 1.4;
}
.os-stickers { color: var(--ink-4) !important; font-size: 11.5px !important; }
.os-price {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.os-totals {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px dashed var(--line-3);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.os-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 14px;
  color: var(--ink-2);
  font-variant-numeric: tabular-nums;
}
.os-row-muted { font-size: 12.5px; color: var(--ink-3); }
.os-row-grand {
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
}
.os-stripe-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 14px;
  padding: 10px 12px;
  background: var(--surface-3);
  border-radius: var(--r-sm);
  font-size: 12px;
  color: var(--ink-3);
  line-height: 1.45;
}
.os-stripe-note svg { width: 14px; height: 14px; flex-shrink: 0; margin-top: 1px; color: var(--ink-2); }

.checkout-actions {
  margin-top: 22px;
  display: flex;
  gap: 10px;
  align-items: center;
}
.checkout-actions .btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Submitted state */
.checkout-confirmed {
  margin-top: 24px;
  padding: 32px 24px;
  text-align: center;
  background: var(--sage-soft);
  border: 1.5px solid #B8D5BB;
  border-radius: var(--r-xl);
  animation: ss-in 420ms var(--ease);
}
.cc-tick {
  display: inline-flex;
  width: 56px;
  height: 56px;
  color: var(--sage);
  margin-bottom: 14px;
}
.cc-tick svg { width: 100%; height: 100%; }
.checkout-confirmed h4 {
  font-size: 22px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.checkout-confirmed p {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.55;
  max-width: 480px;
  margin: 0 auto 20px;
}

/* Hide the old 4-col limitations on full fields when in checkout */
.checkout-pane .ck-field-quarter { grid-column: span 1; }
@media (max-width: 720px) {
  .checkout-pane .ck-field-quarter { grid-column: span 2; }
}

/* Single-row delivery bigger on tablet+ */
@media (min-width: 880px) {
  .ck-deliv-card { padding: 16px 18px; }
}


/* Two-column lamination group */
.lam-group-2 { grid-template-columns: 1fr 1fr; }


/* =====================================================================
   PARTNERSHIPS — channel contact buttons (Telegram / Discord / Email)
   ===================================================================== */
.contact-channels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 22px;
}
.cc-btn {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 16px 20px;
  background: var(--surface);
  border: 1.5px solid var(--line);
  border-radius: var(--r-lg);
  text-decoration: none;
  color: var(--ink);
  cursor: pointer;
  transition: all var(--d-fast) var(--ease);
}
.cc-btn:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}
.cc-btn-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--d-base) var(--ease-spring);
}
.cc-btn-icon svg { width: 20px; height: 20px; }
.cc-btn:hover .cc-btn-icon { transform: rotate(-6deg) scale(1.05); }

.cc-btn-tg .cc-btn-icon { background: #229ED9; color: #FFF; }
.cc-btn-dc .cc-btn-icon { background: #5865F2; color: #FFF; }
.cc-btn-em .cc-btn-icon { background: var(--coral); color: #FFF; }

.cc-btn-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.cc-btn-text strong {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.cc-btn-text small {
  font-size: 12.5px;
  color: var(--ink-3);
  font-variant-numeric: tabular-nums;
  line-height: 1.3;
}
.cc-btn-arrow {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--surface-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-3);
  transition: all var(--d-fast) var(--ease);
  flex-shrink: 0;
}
.cc-btn-arrow svg { width: 12px; height: 12px; }
.cc-btn:hover .cc-btn-arrow {
  background: var(--ink);
  color: #FFF;
}

@media (max-width: 720px) {
  .contact-channels { grid-template-columns: 1fr; gap: 10px; }
}


/* =====================================================================
   LARGE-VIEWPORT POLISH (1280px+)
   Fills negative space without clutter. Respects warm/minimal craft aesthetic.
   ===================================================================== */

/* Subtle paper-grain noise across the whole page — only at large sizes
   so we don't tax mobile rendering. Opacity is intentionally tiny. */
@media (min-width: 1024px) {
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    opacity: 0.04;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  }
}

/* Hero — wider breathing room on big screens, scatter spreads further */
@media (min-width: 1280px) {
  .hero-copy { max-width: 720px; }
  .hero-lede { max-width: 600px; }
  .hero-stack { width: clamp(480px, 36vw, 600px); }
  .hero-scatter-1 { left: 4%;  top: 22%; width: 28px; height: 28px; }
  .hero-scatter-2 { left: 6%;  top: 70%; width: 36px; height: 36px; }
  .hero-scatter-3 { right: 4%; top: 14%; width: 32px; height: 32px; }
  .hero-scatter-5 { right: 6%; bottom: 8%; width: 28px; height: 28px; }
}
@media (min-width: 1600px) {
  .hero-stack { width: clamp(560px, 38vw, 680px); }
}

/* Bring strip — a touch more presence on wide screens */
@media (min-width: 1280px) {
  .bring-strip {
    padding: 32px;
    background:
      radial-gradient(700px 360px at 95% -20%, var(--coral-glow), transparent 65%),
      var(--surface-2);
  }
}

/* Builder grid — tighter ratio on wide so the cart sidebar feels intentional */
@media (min-width: 1280px) {
  .builder-grid {
    grid-template-columns: minmax(0, 1.55fr) minmax(360px, 1fr);
    gap: clamp(28px, 3vw, 48px);
  }
}
@media (min-width: 1600px) {
  .builder-grid {
    grid-template-columns: minmax(0, 1.6fr) minmax(400px, 1fr);
    gap: 56px;
  }
}

/* Gallery — 3 columns at desktop. With 6 items, 3 cols give a clean 2x3 grid;
   4 cols would leave the bottom-right column visually empty. */
@media (min-width: 1280px) {
  .gallery {
    columns: 3;
    column-gap: clamp(28px, 2.4vw, 40px);
    max-width: clamp(1080px, 80vw, 1440px);
  }
}

/* FAQ — sticky-aside two-column layout above 1024px */
@media (min-width: 1024px) {
  .faq .container {
    display: grid;
    grid-template-columns: minmax(280px, 1fr) minmax(0, 1.7fr);
    gap: clamp(48px, 6vw, 112px);
    align-items: start;
  }
  .faq .section-head {
    position: sticky;
    top: 96px;
    text-align: left;
    align-items: flex-start;
    margin: 0;
    max-width: none;
    padding-right: 8px;
  }
  .faq .section-head .section-title { text-align: left; }
  .faq .section-head .section-lede  { text-align: left; margin-left: 0; }
  .faq-list { max-width: none; margin: 0; }
}

/* =====================================================================
   PARTNERSHIPS PAGE — wide viewport polish
   ===================================================================== */
@media (min-width: 1280px) {
  .doc {
    max-width: clamp(880px, 78vw, 1180px);
  }
  .doc-head h1 {
    max-width: 980px;
  }
  .doc-lede {
    max-width: 760px;
  }
  .pship-stats {
    /* already 4-col; ensure it scales gracefully */
    gap: 0;
  }
  .pship-pay-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 18px;
  }
  .pship-limits {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1600px) {
  .doc {
    max-width: 1240px;
  }
}
@media (min-width: 1280px) {
  .doc-nav-inner {
    max-width: clamp(880px, 80vw, 1240px);
  }
}


/* =====================================================================
   SECTION-LEVEL VISUAL DEPTH (large viewports)
   Add subtle scatter/marginalia to fill the side rails on >1280px.
   ===================================================================== */

/* Builder section gets soft side blooms + a tiny scatter badge */
.builder {
  position: relative;
  overflow: hidden;
}
.builder::before,
.builder::after {
  content: '';
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 600ms var(--ease);
}
.builder::before {
  top: 8%;
  left: -12%;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, var(--coral-glow) 0%, transparent 65%);
}
.builder::after {
  bottom: 4%;
  right: -10%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(124, 165, 196, 0.10) 0%, transparent 65%);
}
@media (min-width: 1280px) {
  .builder::before,
  .builder::after { opacity: 1; }
}

/* Past prints section: bigger title + side bloom + section badge */
.prints {
  position: relative;
  overflow: hidden;
}
.prints::before {
  content: '';
  position: absolute;
  pointer-events: none;
  top: 18%;
  right: -8%;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 212, 122, 0.16) 0%, transparent 65%);
  opacity: 0;
  transition: opacity 600ms var(--ease);
}
@media (min-width: 1280px) {
  .prints::before { opacity: 1; }
}

/* FAQ section bloom — fills the right margin */
.faq {
  position: relative;
  overflow: hidden;
}
.faq::after {
  content: '';
  position: absolute;
  pointer-events: none;
  top: 30%;
  right: -8%;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--coral-glow) 0%, transparent 65%);
  opacity: 0;
  transition: opacity 600ms var(--ease);
}
@media (min-width: 1280px) {
  .faq::after { opacity: 1; }
}

/* Stronger section-title impact at very wide */
@media (min-width: 1280px) {
  .section-title {
    font-size: clamp(32px, 4.2vw, 56px);
  }
}

