/* ============================================
   BTK 3D Prints — design system
   Modern base + filament color pops
   ============================================ */

:root {
  /* Ink & paper — warm off-white base, never pure white */
  --ink: #1b1f28;
  --ink-soft: #414a5c;
  --ink-mute: #6e7688;
  --paper: #fdfbf7;
  --paper-2: #f7f3ec;
  --card: #ffffff;
  --line: #e8e3d9;

  /* Low-tint section bands (6-10% saturation of the accents) */
  --tint-teal: #f0f8f7;
  --tint-peach: #fef5ee;
  --tint-violet: #f6f3fb;
  --tint-lime: #f5f9ef;
  --tint-pink: #fdf2f7;

  /* Filament accents */
  --fil-orange: #f97316;
  --fil-teal: #0d9488;
  --fil-violet: #7c3aed;
  --fil-pink: #db2777;
  --fil-lime: #65a30d;

  /* Primary action */
  --brand: #f97316;
  --brand-dark: #ea580c;
  --link: #0d9488;

  /* Dark premium (business wing) */
  --navy: #0e1420;
  --navy-2: #151d2e;
  --navy-line: #263149;
  --gold: #d9a441;

  --radius: 14px;
  --radius-sm: 9px;
  --shadow: 0 6px 24px rgba(23, 28, 38, .07);
  --shadow-lg: 0 14px 44px rgba(23, 28, 38, .12);

  --font-display: "Outfit", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.15; font-weight: 700; letter-spacing: -.015em; }
h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.3rem); }
h3 { font-size: 1.22rem; }
p { color: var(--ink-soft); }

a { color: var(--link); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 22px; }
section { padding: 64px 0; }

.kicker {
  display: inline-block; font-family: var(--font-display); font-weight: 600;
  font-size: .8rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--fil-teal); margin-bottom: 12px;
}
.center { text-align: center; }
.sub { max-width: 640px; margin: 14px auto 0; }

/* ---------- Filament strip (brand motif) ---------- */
.filament-strip { display: flex; height: 6px; }
.filament-strip span { flex: 1; }
.filament-strip span:nth-child(1) { background: var(--fil-orange); }
.filament-strip span:nth-child(2) { background: var(--fil-teal); }
.filament-strip span:nth-child(3) { background: var(--fil-violet); }
.filament-strip span:nth-child(4) { background: var(--fil-pink); }
.filament-strip span:nth-child(5) { background: var(--fil-lime); }

/* ---------- Header ---------- */
header.site {
  position: sticky; top: 0; z-index: 60;
  background: rgba(251, 251, 253, .92); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 800; font-size: 1.22rem; color: var(--ink); text-decoration: none; }
.logo:hover { text-decoration: none; }
.logo .mark {
  width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--fil-orange), var(--fil-pink) 55%, var(--fil-violet));
  color: #fff; font-size: 1.15rem; font-weight: 800; letter-spacing: 0; line-height: 1;
}
.logo small { display: block; font-family: var(--font-body); font-weight: 500; font-size: .62rem; color: var(--ink-mute); letter-spacing: .08em; text-transform: uppercase; margin-top: -2px; }
nav.links { display: flex; gap: 26px; align-items: center; }
nav.links a { color: var(--ink-soft); font-weight: 500; font-size: .95rem; }
nav.links a:hover { color: var(--ink); text-decoration: none; }
nav.links a.active { color: var(--brand); font-weight: 600; }
.nav-cta { background: var(--brand); color: #fff !important; padding: 9px 18px; border-radius: 999px; font-weight: 600 !important; box-shadow: 0 3px 12px rgba(249, 115, 22, .3); }
.nav-cta:hover { background: var(--brand-dark); text-decoration: none; }
.burger { display: none; background: none; border: 0; cursor: pointer; padding: 6px; }
.burger span { display: block; width: 24px; height: 2.5px; background: var(--ink); margin: 5px 0; border-radius: 2px; transition: .2s; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; font-family: var(--font-display); font-weight: 600;
  padding: 14px 28px; border-radius: 999px; font-size: 1rem; cursor: pointer;
  border: 0; transition: transform .15s, box-shadow .15s;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn-primary { background: var(--brand); color: #fff; box-shadow: 0 6px 18px rgba(249, 115, 22, .32); }
.btn-primary:hover { background: var(--brand-dark); }
.btn-ghost { background: transparent; color: var(--ink); border: 2px solid var(--ink); }
.btn-teal { background: var(--fil-teal); color: #fff; box-shadow: 0 6px 18px rgba(13, 148, 136, .3); }
.btn-gold { background: var(--gold); color: var(--navy); box-shadow: 0 6px 18px rgba(217, 164, 65, .3); }
.btn-sm { padding: 10px 20px; font-size: .9rem; }

/* ---------- Hero ---------- */
.hero { padding: 84px 0 72px; position: relative; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(560px 320px at 88% 8%, rgba(124, 58, 237, .09), transparent 65%),
    radial-gradient(520px 300px at 8% 88%, rgba(249, 115, 22, .09), transparent 65%),
    radial-gradient(420px 260px at 60% 100%, rgba(13, 148, 136, .07), transparent 65%);
}
.hero .wrap { position: relative; display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center; }
.hero h1 .pop { color: var(--brand); }
.hero p.lead { font-size: 1.18rem; margin: 18px 0 28px; max-width: 34em; }
.hero .center p.lead, .hero .center .sub { margin-left: auto; margin-right: auto; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-note { margin-top: 18px; font-size: .9rem; color: var(--ink-mute); }

.hero-art { position: relative; }
.hero-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 20px; text-align: center;
}
.hero-card .ph { border-radius: var(--radius-sm); }

/* Hero photo collage */
.hero-collage {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.hc {
  position: relative; display: block; overflow: hidden;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--paper-2);
  box-shadow: var(--shadow);
  aspect-ratio: 1 / 1;
  transition: transform .18s ease, box-shadow .18s ease;
}
.hc.big { grid-column: 1 / -1; aspect-ratio: 16 / 10; }
.hc img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hc:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.hc-tag {
  position: absolute; left: 8px; bottom: 8px;
  background: rgba(255,255,255,.94);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 11px;
  font-size: .74rem; font-weight: 600; color: var(--ink);
  line-height: 1.2; max-width: calc(100% - 16px);
}
.hc.big .hc-tag { font-size: .82rem; padding: 6px 13px; left: 12px; bottom: 12px; }

/* Image-led lane cards */
.lane {
  display: flex; flex-direction: column;
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.lane img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; }
.lane-body { padding: 18px 18px 20px; display: flex; flex-direction: column; flex: 1; }
.lane-body h3 { font-size: 1.12rem; margin-bottom: 7px; }
.lane-body p { font-size: .94rem; color: var(--ink-mute); margin-bottom: 14px; }
.lane-body .go { margin-top: auto; font-size: .88rem; font-weight: 600; color: var(--brand); }
.lane:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--brand); }

/* ---------- Featured / new releases rail ---------- */
.feat-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-bottom: 20px; }
.feat-rail {
  display: grid; grid-auto-flow: column; grid-auto-columns: minmax(198px, 1fr);
  gap: 16px; overflow-x: auto; padding-bottom: 8px;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
}
.feat-rail::-webkit-scrollbar { height: 8px; }
.feat-rail::-webkit-scrollbar-thumb { background: var(--line); border-radius: 999px; }
.feat {
  position: relative; scroll-snap-align: start;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.feat img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; display: block; }
.feat-body { padding: 13px 14px 15px; }
.feat-body h4 { font-size: .98rem; margin-bottom: 4px; line-height: 1.3; color: var(--ink); }
.feat-body .price { margin: 0; font-size: .92rem; font-weight: 700; color: var(--brand); }
.feat:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--brand); }
.feat-flag {
  position: absolute; top: 10px; left: 10px; z-index: 2;
  background: var(--fil-teal); color: #fff;
  font-size: .7rem; font-weight: 700; letter-spacing: .03em; text-transform: uppercase;
  padding: 4px 9px; border-radius: 999px;
}
.feat-flag.flag-violet { background: var(--fil-violet); }

/* ---------- Seasonal band ---------- */
.seasonal-band {
  background:
    radial-gradient(700px 340px at 88% 0%, rgba(249,115,22,.10), transparent 62%),
    radial-gradient(600px 320px at 5% 100%, rgba(124,58,237,.09), transparent 62%),
    var(--paper-2);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.seasonal-band h2 .pop, #season-days { color: var(--fil-orange); }
.cal { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 24px; box-shadow: var(--shadow); }
.cal-head { margin-bottom: 14px; }
.cal-head strong { display: block; font-family: var(--font-display); font-size: 1.05rem; }
.cal-head span { font-size: .9rem; color: var(--ink-mute); }
.cal-rows { display: flex; flex-direction: column; }
.cal-row {
  display: grid; grid-template-columns: 76px 1fr auto; gap: 14px; align-items: center;
  padding: 11px 0; border-top: 1px solid var(--line); font-size: .95rem;
}
.cal-when { font-family: var(--font-display); font-weight: 700; font-size: .9rem; color: var(--ink-mute); }
.cal-what { color: var(--ink-soft); }
.cal-what strong { color: var(--ink); }
.cal-tag {
  font-size: .74rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em;
  color: var(--ink-mute); background: var(--paper-2); border: 1px solid var(--line);
  padding: 4px 10px; border-radius: 999px; white-space: nowrap;
}
.cal-row.live .cal-when { color: var(--fil-orange); }
.cal-tag.tag-live { background: var(--fil-orange); border-color: var(--fil-orange); color: #fff; }
.cal-foot { margin: 14px 0 0; font-size: .88rem; color: var(--ink-mute); }
@media (max-width: 560px) {
  .cal-row { grid-template-columns: 62px 1fr; }
  .cal-row .cal-tag { grid-column: 2; justify-self: start; }
}

/* ---------- Trust bar ---------- */
.trustbar { background: var(--ink); color: #fff; padding: 18px 0; }
.trustbar .wrap { display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.trustbar .t { display: flex; align-items: center; gap: 9px; font-size: .92rem; font-weight: 500; color: #e6e9f0; }
.trustbar .t svg { flex: none; }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 22px; }
.grid.c2 { grid-template-columns: repeat(2, 1fr); }
.grid.c3 { grid-template-columns: repeat(3, 1fr); }
.grid.c4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow); transition: transform .18s, box-shadow .18s;
}
a.card { color: inherit; display: block; }
a.card:hover { text-decoration: none; transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card h3 { margin-bottom: 8px; }
.card p { font-size: .95rem; }
.card .go { display: inline-block; margin-top: 14px; font-weight: 600; color: var(--brand); font-size: .93rem; }

.icon-chip {
  width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; margin-bottom: 16px;
  font-size: 1.3rem;
}
.chip-orange { background: #fff1e6; }
.chip-teal { background: #e2f5f3; }
.chip-violet { background: #f0e9fd; }
.chip-pink { background: #fceaf3; }
.chip-lime { background: #eff7e2; }

/* ---------- Product cards / photo placeholders ---------- */
.pcard { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); display: flex; flex-direction: column; }
.pcard .info { padding: 16px 18px 18px; }
.pcard h4 { font-size: 1.02rem; margin-bottom: 3px; }
.pcard .meta { font-size: .84rem; color: var(--ink-mute); }
.pcard .price { font-family: var(--font-display); font-weight: 700; color: var(--ink); margin-top: 8px; font-size: 1.05rem; }
.pcard .price .from { font-size: .78rem; font-weight: 500; color: var(--ink-mute); }

.ph {
  aspect-ratio: 5 / 4; display: grid; place-items: center; text-align: center; position: relative;
  color: #fff;
}
.pimg { width: 100%; aspect-ratio: 5 / 4; object-fit: cover; display: block; background: var(--paper-2); }
.hero-card .pimg { border-radius: var(--radius-sm); }
.ph .glyph { font-size: 2.6rem; line-height: 1; filter: drop-shadow(0 3px 6px rgba(0,0,0,.18)); }
.ph .soon {
  position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%);
  font-size: .68rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  background: rgba(255,255,255,.22); backdrop-filter: blur(4px); padding: 4px 12px; border-radius: 999px; white-space: nowrap;
}
.ph-orange { background: linear-gradient(140deg, #fb923c, #ea580c); }
.ph-teal { background: linear-gradient(140deg, #2dd4bf, #0f766e); }
.ph-violet { background: linear-gradient(140deg, #a78bfa, #6d28d9); }
.ph-pink { background: linear-gradient(140deg, #f472b6, #be185d); }
.ph-lime { background: linear-gradient(140deg, #a3e635, #4d7c0f); }
.ph-navy { background: linear-gradient(140deg, #334667, #0e1420); }

.badge {
  display: inline-block; font-size: .72rem; font-weight: 600; letter-spacing: .05em;
  padding: 3px 10px; border-radius: 999px; text-transform: uppercase;
}
.badge-teal { background: #e2f5f3; color: #0f766e; }
.badge-orange { background: #fff1e6; color: #c2410c; }
.badge-violet { background: #f0e9fd; color: #6d28d9; }

/* ---------- Steps ---------- */
.steps { counter-reset: step; }
.step { position: relative; padding-left: 0; }
.step .num {
  font-family: var(--font-display); font-weight: 800; font-size: 2.2rem;
  background: linear-gradient(135deg, var(--fil-orange), var(--fil-pink));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.step h3 { margin: 6px 0 8px; }
.step p { font-size: .95rem; }

/* ---------- Split sections ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
.split ul.checks { list-style: none; margin-top: 18px; }
.split ul.checks li { padding: 7px 0 7px 34px; position: relative; color: var(--ink-soft); }
.split ul.checks li::before {
  content: "✓"; position: absolute; left: 0; top: 7px;
  width: 22px; height: 22px; border-radius: 50%; background: #e2f5f3; color: #0f766e;
  display: grid; place-items: center; font-size: .8rem; font-weight: 700;
}

/* ---------- Forms ---------- */
.form-shell { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 36px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid .full { grid-column: 1 / -1; }
label { display: block; font-weight: 600; font-size: .88rem; margin-bottom: 6px; color: var(--ink); }
label .opt { font-weight: 400; color: var(--ink-mute); }
input[type="text"], input[type="email"], input[type="tel"], input[type="date"], input[type="url"], select, textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: .96rem; color: var(--ink); background: #fff;
  transition: border-color .15s;
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--fil-teal); }
textarea { min-height: 110px; resize: vertical; }
input[type="file"] { font-size: .9rem; }
.radio-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 10px; }
.radio-cards label {
  border: 1.5px solid var(--line); border-radius: var(--radius-sm); padding: 13px 14px; cursor: pointer;
  font-weight: 500; font-size: .88rem; display: flex; gap: 9px; align-items: flex-start; margin: 0;
  background: #fff; transition: border-color .15s, background .15s;
}
.radio-cards label:has(input:checked) { border-color: var(--brand); background: #fff8f3; }
.radio-cards input { margin-top: 3px; accent-color: var(--brand); }
.consent { display: flex; gap: 11px; align-items: flex-start; background: var(--paper-2); border-radius: var(--radius-sm); padding: 15px 16px; font-size: .88rem; }
.consent input { margin-top: 4px; accent-color: var(--fil-teal); width: 17px; height: 17px; flex: none; }
.consent span { color: var(--ink-soft); }
.form-note { font-size: .85rem; color: var(--ink-mute); margin-top: 14px; }
.hint { font-size: .8rem; color: var(--ink-mute); margin-top: 5px; }

/* ---------- Pricing tiers ---------- */
.tier { position: relative; text-align: center; padding: 34px 26px; }
.tier.feature { border: 2px solid var(--brand); }
.tier .flag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--brand); color: #fff; font-size: .72rem; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; padding: 4px 14px; border-radius: 999px; white-space: nowrap;
}
.tier .amt { font-family: var(--font-display); font-size: 2.5rem; font-weight: 800; margin: 10px 0 2px; }
.tier .per { color: var(--ink-mute); font-size: .86rem; }
.tier ul { list-style: none; margin: 20px 0 24px; text-align: left; }
.tier ul li { padding: 6px 0 6px 28px; position: relative; font-size: .92rem; color: var(--ink-soft); }
.tier ul li::before { content: "✓"; position: absolute; left: 0; color: var(--fil-teal); font-weight: 700; }

/* ---------- Events ---------- */
.event-row {
  display: grid; grid-template-columns: 92px 1fr auto; gap: 22px; align-items: center;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 20px 24px; box-shadow: var(--shadow);
}
.event-date {
  text-align: center; font-family: var(--font-display); background: var(--paper-2);
  border-radius: var(--radius-sm); padding: 10px 6px;
}
.event-date .d { font-size: 1.5rem; font-weight: 800; display: block; line-height: 1.1; }
.event-date .m { font-size: .74rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--fil-teal); }
.event-row h3 { font-size: 1.08rem; margin-bottom: 3px; }
.event-row p { font-size: .9rem; }

/* ---------- FAQ ---------- */
details.faq {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 0; margin-bottom: 12px; overflow: hidden;
}
details.faq summary {
  cursor: pointer; font-family: var(--font-display); font-weight: 600; font-size: 1.02rem;
  padding: 18px 22px; list-style: none; position: relative; padding-right: 52px;
}
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after {
  content: "+"; position: absolute; right: 20px; top: 50%; transform: translateY(-50%);
  font-size: 1.4rem; font-weight: 400; color: var(--brand);
}
details.faq[open] summary::after { content: "–"; }
details.faq .a { padding: 0 22px 20px; font-size: .95rem; color: var(--ink-soft); }
details.faq .a p + p { margin-top: 10px; }

/* ---------- Business (dark premium wing) ---------- */
body.biz { background: var(--navy); color: #dde3ef; }
body.biz p { color: #a8b3c9; }
body.biz h1, body.biz h2, body.biz h3 { color: #f2f5fb; }
body.biz header.site { background: rgba(14, 20, 32, .92); border-bottom-color: var(--navy-line); }
body.biz .logo { color: #f2f5fb; }
body.biz nav.links a { color: #a8b3c9; }
body.biz nav.links a:hover, body.biz nav.links a.active { color: #fff; }
body.biz .burger span { background: #f2f5fb; }
body.biz .card { background: var(--navy-2); border-color: var(--navy-line); box-shadow: none; }
body.biz .card p { color: #a8b3c9; }
body.biz .kicker { color: var(--gold); }
body.biz .form-shell { background: var(--navy-2); border-color: var(--navy-line); }
body.biz label { color: #dde3ef; }
body.biz input, body.biz select, body.biz textarea { background: #0f1626; border-color: var(--navy-line); color: #eef1f8; }
body.biz .consent { background: #0f1626; }
body.biz .consent span { color: #a8b3c9; }
body.biz .radio-cards label { background: #0f1626; border-color: var(--navy-line); color: #dde3ef; }
body.biz .radio-cards label:has(input:checked) { border-color: var(--gold); background: #1a2032; }
body.biz footer.site { background: #0a0f18; }
body.biz .trustbar { background: #0a0f18; }
body.biz .split ul.checks li { color: #a8b3c9; }
body.biz .split ul.checks li::before { background: rgba(217, 164, 65, .16); color: var(--gold); }
body.biz .stat .n { color: var(--gold); }

.stat { text-align: center; }
.stat .n { font-family: var(--font-display); font-size: 2.3rem; font-weight: 800; color: var(--brand); }
.stat .l { font-size: .88rem; color: var(--ink-mute); }
body.biz .stat .l { color: #7f8aa3; }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(120deg, var(--fil-orange), var(--fil-pink) 55%, var(--fil-violet)); color: #fff; text-align: center; padding: 70px 0; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.88); max-width: 560px; margin: 12px auto 26px; }
.cta-band .btn { background: #fff; color: var(--ink); }

/* ---------- Newsletter ---------- */
.newsletter { background: var(--paper-2); }
.newsletter form { display: flex; gap: 12px; max-width: 480px; margin: 22px auto 0; }
.newsletter input { flex: 1; }

/* ---------- Footer ---------- */
footer.site { background: var(--ink); color: #b9c0cf; padding: 56px 0 32px; font-size: .92rem; }
footer.site .cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 40px; }
footer.site h4 { color: #fff; font-size: .95rem; margin-bottom: 14px; }
footer.site a { color: #b9c0cf; display: block; padding: 3px 0; }
footer.site a:hover { color: #fff; }
footer.site .brandline { font-family: var(--font-display); font-weight: 800; font-size: 1.15rem; color: #fff; margin-bottom: 10px; }
footer.site .fineprint { border-top: 1px solid #2a3142; padding-top: 22px; font-size: .8rem; color: #7f8798; display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
footer.site .fineprint a { display: inline; color: #9aa3b5; }

/* ---------- Section bands & wave dividers ---------- */
.band-teal { background: var(--tint-teal); }
.band-peach { background: var(--tint-peach); }
.band-violet { background: var(--tint-violet); }
.band-lime { background: var(--tint-lime); }
.band-pink { background: var(--tint-pink); }

.wave { display: block; width: 100%; height: 54px; }
.wave svg { display: block; width: 100%; height: 100%; }

/* Confetti only in safe zones (hero edges, CTA bands, footer) */
.confetti { position: relative; }
.confetti::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image:
    radial-gradient(circle at 12% 22%, var(--fil-orange) 0 3px, transparent 3px),
    radial-gradient(circle at 84% 14%, var(--fil-teal) 0 3px, transparent 3px),
    radial-gradient(circle at 92% 68%, var(--fil-violet) 0 3px, transparent 3px),
    radial-gradient(circle at 7% 76%, var(--fil-pink) 0 3px, transparent 3px),
    radial-gradient(circle at 45% 8%, var(--fil-lime) 0 2.5px, transparent 2.5px),
    radial-gradient(circle at 62% 88%, var(--fil-orange) 0 2.5px, transparent 2.5px);
  background-size: 260px 260px; opacity: .16;
}
.confetti > * { position: relative; z-index: 1; }

/* ---------- Product page ---------- */
.crumbs { font-size: .85rem; color: var(--ink-mute); margin: 26px 0 18px; }
.crumbs a { color: var(--ink-mute); }
.crumbs a:hover { color: var(--ink); }
.prod { display: grid; grid-template-columns: 1.05fr .95fr; gap: 44px; align-items: start; }
.prod-photo { position: sticky; top: 92px; }
.prod-photo .credit { font-size: .78rem; color: var(--ink-mute); margin-top: 10px; }

/* Gallery: big main image + thumbnail strip */
.gallery-main { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); background: var(--card); }
.gallery-main img { width: 100%; display: block; aspect-ratio: 1 / 1; object-fit: cover; }
.gallery-main .cap {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 10px 16px;
  background: linear-gradient(transparent, rgba(20,24,32,.72)); color: #fff;
  font-size: .85rem; font-weight: 500;
}
.thumbs { display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
.thumbs button {
  width: 74px; height: 74px; padding: 0; border: 2px solid var(--line); border-radius: 10px;
  overflow: hidden; cursor: pointer; background: var(--card); transition: border-color .15s, transform .15s;
}
.thumbs button:hover { transform: translateY(-2px); }
.thumbs button.on { border-color: var(--brand); }
.thumbs button img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Color role slots */
.role { border: 1.5px solid var(--line); border-radius: var(--radius-sm); padding: 13px 15px; margin-bottom: 10px; background: #fff; }
.role > .rh { display: flex; align-items: baseline; gap: 8px; margin-bottom: 10px; }
.role > .rh strong { font-size: .92rem; }
.role > .rh span { font-size: .78rem; color: var(--ink-mute); }
.role > .rh .chosen { margin-left: auto; font-size: .8rem; font-weight: 600; color: var(--fil-teal); }
.role.filled { border-color: var(--fil-teal); background: #f6fbfa; }

/* Color swatch picker */
.swatches { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 4px; }
.swatch { position: relative; cursor: pointer; }
.swatch input { position: absolute; opacity: 0; width: 0; height: 0; }
.swatch .dot {
  display: block; width: 38px; height: 38px; border-radius: 50%;
  border: 2px solid rgba(0,0,0,.10); box-shadow: inset 0 -3px 6px rgba(0,0,0,.10);
  transition: transform .12s, box-shadow .12s;
}
.swatch:hover .dot { transform: scale(1.08); }
.swatch input:checked + .dot {
  box-shadow: 0 0 0 3px var(--card), 0 0 0 5.5px var(--fil-teal), inset 0 -3px 6px rgba(0,0,0,.10);
}
.swatch .lbl {
  position: absolute; left: 50%; transform: translateX(-50%); bottom: -19px;
  font-size: .62rem; color: var(--ink-mute); white-space: nowrap; opacity: 0; transition: opacity .12s;
}
.swatch:hover .lbl, .swatch input:checked ~ .lbl { opacity: 1; }
.swatch-group { margin-bottom: 26px; }
.swatch-group > .gl {
  font-size: .74rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  color: var(--ink-mute); margin: 14px 0 8px;
}
.picked { font-size: .88rem; color: var(--fil-teal); font-weight: 600; margin-top: 24px; }
.prod-title { font-size: clamp(1.6rem, 3vw, 2.1rem); margin: 6px 0 4px; }
.prod-price { font-family: var(--font-display); font-size: 1.7rem; font-weight: 800; margin: 8px 0 2px; }
.prod-price .was { font-size: .95rem; color: var(--ink-mute); font-weight: 500; }
.meta-tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 18px 0; }
.meta-tiles .mt {
  background: var(--paper-2); border-radius: var(--radius-sm); padding: 12px 10px; text-align: center;
  font-size: .78rem; color: var(--ink-soft); line-height: 1.4;
}
.meta-tiles .mt strong { display: block; color: var(--ink); font-size: .84rem; }
.addon-card {
  display: flex; gap: 14px; align-items: center; border: 1.5px dashed var(--line);
  border-radius: var(--radius-sm); padding: 14px 16px; margin-top: 6px; cursor: pointer;
  transition: border-color .15s, background .15s; background: #fff;
}
.addon-card:has(input:checked) { border-color: var(--fil-teal); border-style: solid; background: #f2faf9; }
.addon-card input { accent-color: var(--fil-teal); width: 18px; height: 18px; flex: none; }
.addon-card .thumb { width: 58px; height: 58px; border-radius: 10px; object-fit: cover; flex: none; }
.addon-card .thumb-emoji { width: 58px; height: 58px; border-radius: 10px; background: var(--paper-2); display: grid; place-items: center; font-size: 1.7rem; flex: none; }
.addon-card .t { flex: 1; }
.addon-card .t strong { display: block; font-size: .95rem; }
.addon-card .t span { font-size: .82rem; color: var(--ink-mute); }
.addon-card .plus { font-family: var(--font-display); font-weight: 700; color: var(--fil-teal); white-space: nowrap; }
.order-total { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; margin-top: 16px; }
.prod-form-divider { border: 0; border-top: 1px solid var(--line); margin: 24px 0 20px; }
@media (max-width: 900px) {
  .prod { grid-template-columns: 1fr; }
  .prod-photo { position: static; }
}

/* ---------- Utility ---------- */
.mt-1 { margin-top: 10px; } .mt-2 { margin-top: 20px; } .mt-3 { margin-top: 34px; } .mt-4 { margin-top: 50px; }
.mb-2 { margin-bottom: 20px; } .mb-3 { margin-bottom: 34px; }
.soft { background: var(--paper-2); }
.tag-row { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 12px; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero .wrap, .split { grid-template-columns: 1fr; }
  .grid.c3, .grid.c4 { grid-template-columns: repeat(2, 1fr); }
  footer.site .cols { grid-template-columns: 1fr 1fr; }
  nav.links {
    display: none; position: absolute; top: 68px; left: 0; right: 0;
    background: var(--card); border-bottom: 1px solid var(--line);
    flex-direction: column; padding: 18px 22px; gap: 16px; align-items: flex-start;
    box-shadow: var(--shadow-lg);
  }
  body.biz nav.links { background: var(--navy-2); border-bottom-color: var(--navy-line); }
  nav.links.open { display: flex; }
  .burger { display: block; }
  .hero-art { display: none; }
  .hero { padding: 44px 0 56px; }
  .hero-art.art-collage { display: block; }
  .hero-art.art-collage .hc.big { aspect-ratio: 16 / 9; }
  /* On phones the photos come right after the headline, before the paragraph */
  .hero-copy { display: contents; }
  .hero .wrap { gap: 26px; }
  .hc-top { order: 1; }
  .hero-art.art-collage { order: 2; }
  .hc-rest { order: 3; }
  .hc-rest p.lead { margin-top: 0; }
  .hc:not(.big) .hc-tag { display: none; }
}
@media (max-width: 560px) {
  .grid.c2, .grid.c3, .grid.c4 { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .event-row { grid-template-columns: 72px 1fr; }
  .event-row .btn { grid-column: 2; justify-self: start; }
  .newsletter form { flex-direction: column; }
  .trustbar .wrap { justify-content: flex-start; }
}

/* ---------- Party pack cards ---------- */
.pack-shots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; margin: 14px 0 12px; }
.pack-shots img { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: 7px; border: 1px solid var(--line); }
.pack-pick { font-size: .88rem; margin: 0 0 6px; color: var(--ink); }
.pack-list { list-style: none; margin: 0 0 12px; padding: 0; }
.pack-list li {
  font-size: .92rem; color: var(--ink-soft); padding: 5px 0 5px 20px; position: relative;
}
.pack-list li::before {
  content: ""; position: absolute; left: 4px; top: 13px;
  width: 6px; height: 6px; border-radius: 50%; background: var(--fil-teal);
}
.pack-list li .opt { color: var(--ink-mute); font-size: .84rem; }
.pack-inc { font-size: .86rem; color: var(--ink-mute); border-top: 1px solid var(--line); padding-top: 10px; margin: 0 0 14px; }
.card.tier .pack-pick, .card.tier .pack-list, .card.tier .pack-inc { text-align: left; }
