:root {
  --ink: #181519;
  --ink-2: #252027;
  --paper: #f4f0e9;
  --paper-2: #ebe4d8;
  --white: #fffdf8;
  --violet: #7250ff;
  --violet-bright: #8f75ff;
  --apricot: #ff9567;
  --lime: #d7f57a;
  --line: rgba(24, 21, 25, 0.16);
  --line-light: rgba(255, 255, 255, 0.15);
  --shadow: 0 28px 70px rgba(25, 18, 31, 0.18);
  --serif: "Instrument Serif", Georgia, serif;
  --sans: "Manrope", "Segoe UI", sans-serif;
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body.cart-open,
body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
fieldset { min-width: 0; margin: 0; padding: 0; border: 0; }

::selection { color: var(--ink); background: var(--apricot); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  transform: translateY(-140%);
  padding: 10px 16px;
  background: var(--white);
  color: var(--ink);
  font-weight: 700;
}

.skip-link:focus { transform: translateY(0); }

:focus-visible {
  outline: 3px solid var(--apricot);
  outline-offset: 3px;
}

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 500;
  height: 2px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--apricot), var(--violet-bright));
}

.site-header {
  position: fixed;
  z-index: 300;
  top: 0;
  left: 0;
  width: 100%;
  height: 84px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 max(28px, calc((100vw - var(--max)) / 2));
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.09);
  transition: height .25s ease, background .25s ease, backdrop-filter .25s ease;
}

.site-header.scrolled {
  height: 70px;
  background: rgba(20, 17, 21, .88);
  backdrop-filter: blur(18px);
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  line-height: 1;
}

.brand-mark {
  position: relative;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.25);
  transform: rotate(30deg);
}

.brand-mark span {
  position: absolute;
  width: 17px;
  height: 1px;
  background: currentColor;
}

.brand-mark span:nth-child(1) { transform: translateY(-5px); }
.brand-mark span:nth-child(2) { width: 12px; }
.brand-mark span:nth-child(3) { width: 7px; transform: translateY(5px); }

.brand-copy { display: flex; align-items: baseline; font-size: 18px; letter-spacing: -.04em; }
.brand-copy strong { font-weight: 700; }
.brand-copy em { font-style: normal; opacity: .58; font-weight: 500; }

.desktop-nav { display: flex; gap: 38px; align-items: center; }
.desktop-nav a { position: relative; font-size: 13px; font-weight: 600; letter-spacing: .02em; color: rgba(255,255,255,.75); }
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background: var(--apricot);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}
.desktop-nav a:hover { color: var(--white); }
.desktop-nav a:hover::after { transform: scaleX(1); transform-origin: left; }

.header-actions { justify-self: end; display: flex; align-items: center; gap: 18px; }
.header-contact { font-size: 13px; font-weight: 600; color: rgba(255,255,255,.74); }
.header-contact:hover { color: var(--white); }

.cart-trigger {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
}

.cart-trigger svg { width: 20px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.cart-trigger b { min-width: 20px; height: 20px; display: grid; place-items: center; border-radius: 50%; color: var(--ink); background: var(--apricot); font-size: 11px; }

.menu-trigger {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line-light);
  background: transparent;
  cursor: pointer;
  place-items: center;
}
.menu-trigger i { position: absolute; width: 16px; height: 1px; background: currentColor; transition: transform .2s ease; }
.menu-trigger i:first-of-type { transform: translateY(-4px); }
.menu-trigger i:last-of-type { transform: translateY(4px); }
.menu-trigger[aria-expanded="true"] i:first-of-type { transform: rotate(45deg); }
.menu-trigger[aria-expanded="true"] i:last-of-type { transform: rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 70px 0 0;
  z-index: -1;
  padding: 40px 24px;
  background: var(--ink);
}
.mobile-menu a { display: block; padding: 14px 0; border-bottom: 1px solid var(--line-light); font-family: var(--serif); font-size: 38px; }
.mobile-menu a:last-child { margin-top: 30px; border: 0; font-family: var(--sans); font-size: 15px; color: var(--apricot); }

.hero {
  min-height: 820px;
  display: flex;
  align-items: stretch;
  color: var(--white);
  background:
    radial-gradient(circle at 8% 12%, rgba(125,79,255,.14), transparent 28%),
    linear-gradient(115deg, #171319 0%, #171319 54%, #201826 100%);
  overflow: hidden;
}

.hero-grid {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(550px, 1.08fr);
}

.hero-copy {
  align-self: center;
  width: min(650px, 100%);
  justify-self: end;
  padding: 150px 54px 70px 32px;
}

.hero-kicker,
.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 24px;
  color: #695e66;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .15em;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero-kicker { color: rgba(255,255,255,.64); }
.hero-kicker span { width: 24px; height: 1px; background: var(--apricot); }

.hero h1,
.section-heading h2,
.process h2,
.story-copy h2,
.faq h2,
.final-cta h2,
.upload-intro h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: .98;
}

.hero h1 { max-width: 610px; font-size: clamp(58px, 5.1vw, 82px); }
.hero h1 em,
.section-heading h2 em,
.process h2 em,
.upload-intro h2 em,
.final-cta h2 em { color: var(--apricot); font-weight: 400; }

.hero-copy > p { max-width: 590px; margin: 28px 0 32px; color: rgba(255,255,255,.66); font-size: 17px; line-height: 1.75; }
.hero-actions { display: flex; align-items: center; gap: 28px; }

.button {
  min-height: 54px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  padding: 0 22px;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.button span { font-size: 17px; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: #1a1417; background: var(--apricot); }
.button-primary:hover { background: #ffab86; }
.button-dark { color: var(--white); background: var(--ink); }
.button-dark:hover { background: var(--violet); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 11px 0 8px;
  border-bottom: 1px solid rgba(255,255,255,.27);
  font-size: 13px;
  font-weight: 700;
}
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }

.hero-meta {
  margin-top: 58px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-light);
}
.hero-meta div { display: grid; gap: 4px; padding: 16px 12px 0 0; border-right: 1px solid var(--line-light); }
.hero-meta div:last-child { padding-left: 15px; border-right: 0; }
.hero-meta div:nth-child(2) { padding-left: 15px; }
.hero-meta strong { color: var(--apricot); font-size: 10px; letter-spacing: .14em; }
.hero-meta span { color: rgba(255,255,255,.66); font-size: 11px; line-height: 1.4; }

.hero-visual { position: relative; min-width: 0; }
.hero-image-wrap { position: absolute; inset: 0; overflow: hidden; }
.hero-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #171319 0, transparent 24%), linear-gradient(0deg, rgba(23,19,25,.52), transparent 42%);
}
.hero-image-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: 48% center; }

.hero-stamp {
  position: absolute;
  top: 135px;
  right: 7%;
  width: 112px;
  height: 112px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: rgba(255,255,255,.82);
  background: rgba(24,20,25,.55);
  backdrop-filter: blur(10px);
}
.hero-stamp svg { position: absolute; width: 100%; height: 100%; animation: rotate 18s linear infinite; }
.hero-stamp text { fill: currentColor; font-family: var(--sans); font-size: 9px; font-weight: 700; letter-spacing: 2.1px; }
.hero-stamp > span { font-family: var(--serif); font-size: 25px; }
@keyframes rotate { to { transform: rotate(360deg); } }

.hero-note {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 16px 24px;
  color: var(--ink);
  background: var(--paper);
  font-size: 11px;
  font-weight: 700;
}
.hero-note span { padding: 3px 7px; color: var(--white); background: var(--violet); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }

.trust-strip {
  min-height: 98px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0 max(24px, calc((100vw - var(--max)) / 2));
  color: var(--ink);
  background: var(--paper-2);
  border-bottom: 1px solid var(--line);
}
.trust-strip > div { display: grid; grid-template-columns: 42px 1fr; grid-template-rows: auto auto; align-content: center; border-right: 1px solid var(--line); }
.trust-strip > div:first-child { border-left: 1px solid var(--line); }
.trust-icon { grid-row: 1 / 3; align-self: center; font-family: var(--serif); font-size: 26px; color: var(--violet); }
.trust-strip strong { font-size: 12px; }
.trust-strip small { color: #776e73; font-size: 10px; }

.section { width: min(var(--max), calc(100% - 48px)); margin: 0 auto; padding: 125px 0; }
.split-heading { display: grid; grid-template-columns: minmax(0, 1.6fr) minmax(260px, .55fr); gap: 80px; align-items: end; }
.section-heading h2 { max-width: 780px; font-size: clamp(49px, 5vw, 72px); }
.section-heading > p,
.split-heading > p { margin: 0 0 5px; color: #6f666b; font-size: 14px; line-height: 1.75; }
.center-heading { max-width: 800px; margin: 0 auto 52px; text-align: center; }
.center-heading .eyebrow { justify-content: center; }
.center-heading > p:last-child { max-width: 600px; margin: 24px auto 0; }

.path-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 58px; }
.path-card { position: relative; min-height: 560px; overflow: hidden; background: var(--ink); }
.path-card a { position: absolute; inset: 0; color: var(--white); }
.path-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.75,.2,1); }
.path-overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(19,15,20,.92), transparent 63%), linear-gradient(180deg, rgba(19,15,20,.22), transparent 20%); }
.path-card:hover img { transform: scale(1.035); }
.path-number { position: absolute; top: 22px; left: 22px; font-size: 10px; letter-spacing: .15em; }
.path-content { position: absolute; inset: auto 24px 24px; }
.path-content > span { display: inline-block; margin-bottom: 12px; color: var(--apricot); font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.path-content h3 { margin: 0; font-family: var(--serif); font-size: 38px; font-weight: 400; letter-spacing: -.03em; }
.path-content p { min-height: 50px; margin: 8px 0 18px; color: rgba(255,255,255,.67); font-size: 12px; line-height: 1.6; }
.path-content b { display: flex; justify-content: space-between; align-items: center; padding-top: 14px; border-top: 1px solid var(--line-light); font-size: 11px; }
.path-content b i { font-style: normal; font-size: 17px; transition: transform .2s ease; }
.path-card:hover b i { transform: translate(3px, -3px); }

.personalizer { padding-top: 110px; }
.personalizer-shell { display: grid; grid-template-columns: 1.1fr .9fr; min-height: 650px; border: 1px solid var(--line); background: var(--white); box-shadow: var(--shadow); }
.preview-panel { min-width: 0; padding: 22px; color: var(--white); background: #211b23; }
.preview-toolbar, .preview-caption { display: flex; justify-content: space-between; align-items: center; color: rgba(255,255,255,.52); font-size: 10px; letter-spacing: .07em; text-transform: uppercase; }
.preview-status { display: inline-flex; align-items: center; gap: 7px; }
.preview-status i { width: 6px; height: 6px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 12px var(--lime); }
.preview-stage { position: relative; height: 540px; display: grid; place-items: center; overflow: hidden; margin: 14px 0; border: 1px solid rgba(255,255,255,.08); background: radial-gradient(circle at 50% 45%, rgba(141,112,255,.25), transparent 42%), #171319; perspective: 800px; }
.preview-stage::before { content: ""; position: absolute; inset: 0; opacity: .14; background-image: linear-gradient(rgba(255,255,255,.16) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.16) 1px, transparent 1px); background-size: 50px 50px; mask-image: linear-gradient(transparent, #000 24%, #000 76%, transparent); }
.preview-glow { position: absolute; width: 340px; height: 340px; border-radius: 50%; filter: blur(70px); background: rgba(255, 149, 103, .18); }
.preview-object {
  --surface-a: #bd7d42;
  --surface-b: #754423;
  position: relative;
  z-index: 1;
  width: min(390px, 72%);
  aspect-ratio: 3.4 / 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 20px;
  border: 2px solid rgba(255,230,192,.26);
  color: #2c170b;
  background:
    repeating-linear-gradient(3deg, transparent 0 5px, rgba(54,26,9,.10) 6px 7px),
    linear-gradient(120deg, var(--surface-a), var(--surface-b));
  box-shadow: 0 36px 55px rgba(0,0,0,.45), inset 0 0 25px rgba(255,255,255,.12);
  transform: rotateX(6deg) rotateY(-10deg) rotateZ(-2deg);
  transition: width .25s ease, aspect-ratio .25s ease, border-radius .25s ease, background .25s ease, color .25s ease;
}
.preview-object::after { content: ""; position: absolute; inset: 10px; border: 1px solid currentColor; opacity: .22; }
.preview-brand { font-size: 8px; font-weight: 700; letter-spacing: .3em; opacity: .7; }
.preview-object strong { max-width: 100%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-family: var(--serif); font-size: clamp(26px, 4vw, 44px); font-weight: 400; letter-spacing: .02em; line-height: 1; text-shadow: 0 1px rgba(255,255,255,.15); }
.preview-line { width: 35px; height: 1px; margin-top: 8px; background: currentColor; opacity: .5; }
.preview-object.housenumber { width: min(320px, 62%); aspect-ratio: 1; }
.preview-object.housenumber strong { font-size: clamp(66px, 9vw, 110px); }
.preview-object.keyring { width: min(310px, 62%); aspect-ratio: 3.5 / 1; border-radius: 60px; }
.preview-object.keyring::before { content: ""; position: absolute; left: 17px; width: 12px; height: 12px; border: 2px solid currentColor; border-radius: 50%; opacity: .5; }
.preview-object.keyring strong { font-size: clamp(22px, 3vw, 34px); }
.preview-object.material-walnut { --surface-a: #6c422b; --surface-b: #2f1b17; color: #dab789; }
.preview-object.material-acrylic { --surface-a: rgba(153,105,255,.58); --surface-b: rgba(45,18,91,.76); color: #f5e9ff; border-color: rgba(210,185,255,.7); background: linear-gradient(120deg, var(--surface-a), var(--surface-b)); backdrop-filter: blur(8px); box-shadow: 0 36px 65px rgba(107,65,255,.28), inset 0 0 30px rgba(255,255,255,.18); }
.dimension { position: absolute; z-index: 2; color: rgba(255,255,255,.42); font-size: 9px; letter-spacing: .12em; }
.dimension::before { content: ""; display: inline-block; margin-right: 8px; width: 36px; height: 1px; vertical-align: middle; background: currentColor; }
.dimension-x { bottom: 56px; }
.dimension-y { right: 30px; transform: rotate(-90deg); }

.config-panel { padding: 38px; }
.config-head { display: flex; justify-content: space-between; align-items: end; padding-bottom: 25px; border-bottom: 1px solid var(--line); }
.config-head small { color: var(--violet); font-size: 9px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.config-head h3 { margin: 4px 0 0; font-family: var(--serif); font-size: 34px; font-weight: 400; line-height: 1; }
.config-head > strong { font-family: var(--serif); font-size: 34px; font-weight: 400; }
.config-panel fieldset { padding: 24px 0; border-bottom: 1px solid var(--line); }
.config-panel legend, .text-field > span, .quantity-field > span { margin-bottom: 12px; font-size: 11px; font-weight: 700; }
.option-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.option { min-height: 66px; padding: 10px 12px; text-align: left; border: 1px solid var(--line); background: transparent; cursor: pointer; font-size: 11px; font-weight: 700; transition: border .2s ease, background .2s ease; }
.option small { display: block; margin-top: 2px; color: #8b8186; font-size: 8px; font-weight: 500; }
.option.active { border-color: var(--violet); background: rgba(114,80,255,.06); box-shadow: inset 0 0 0 1px var(--violet); }
.material-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.material { min-height: 60px; display: flex; align-items: center; gap: 9px; padding: 9px; text-align: left; border: 1px solid transparent; background: transparent; cursor: pointer; }
.material.active { border-color: var(--violet); background: rgba(114,80,255,.06); }
.material span { font-size: 11px; font-weight: 700; }
.material small { display: block; color: #8b8186; font-size: 8px; font-weight: 500; }
.swatch { width: 34px; height: 34px; flex: 0 0 auto; border-radius: 50%; border: 1px solid rgba(0,0,0,.12); }
.swatch-oak { background: repeating-linear-gradient(8deg, #c88b51 0 3px, #e0a96f 4px 6px); }
.swatch-walnut { background: repeating-linear-gradient(-5deg, #3a241e 0 3px, #734a36 4px 6px); }
.swatch-acrylic { background: radial-gradient(circle at 30% 25%, #d2c1ff, #6d3ad5 65%); box-shadow: inset 0 0 10px rgba(255,255,255,.65); }
.field-row { display: grid; grid-template-columns: 1fr 96px; gap: 12px; padding: 24px 0; }
.text-field, .quantity-field { position: relative; display: grid; }
.text-field input, .quantity-field input, .quote-options input, .quote-options select {
  width: 100%;
  height: 50px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 0;
  color: var(--ink);
  background: var(--white);
  outline: none;
  font-size: 12px;
}
.text-field input:focus, .quantity-field input:focus, .quote-options input:focus, .quote-options select:focus { border-color: var(--violet); box-shadow: 0 0 0 1px var(--violet); }
.text-field small { position: absolute; right: 12px; bottom: 15px; color: #998f94; font-size: 8px; }
.text-field small b { font-weight: 500; }
.add-configured { width: 100%; justify-content: space-between; }
.microcopy { margin: 10px 0 0; color: #82777c; text-align: center; font-size: 9px; }

.upload-section {
  position: relative;
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 78px;
  align-items: center;
  padding: 130px max(32px, calc((100vw - var(--max)) / 2));
  color: var(--white);
  background:
    radial-gradient(circle at 12% 95%, rgba(255,149,103,.13), transparent 29%),
    radial-gradient(circle at 90% 15%, rgba(114,80,255,.18), transparent 32%),
    #181419;
  overflow: hidden;
}
.upload-section::before { content: ""; position: absolute; inset: 0; opacity: .08; pointer-events: none; background-image: linear-gradient(rgba(255,255,255,.3) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.3) 1px, transparent 1px); background-size: 80px 80px; }
.upload-intro, .quote-builder { position: relative; z-index: 1; }
.eyebrow-light { color: rgba(255,255,255,.54); }
.upload-intro h2 { font-size: clamp(50px, 5vw, 72px); }
.upload-intro > p:not(.eyebrow) { max-width: 460px; margin: 28px 0; color: rgba(255,255,255,.6); font-size: 14px; }
.accepted-files { display: flex; flex-wrap: wrap; gap: 7px; }
.accepted-files span { padding: 5px 8px; border: 1px solid rgba(255,255,255,.16); color: rgba(255,255,255,.62); font-size: 8px; font-weight: 700; letter-spacing: .09em; }
.idea-prompts { display: grid; gap: 12px; margin: 30px 0; padding: 0; list-style: none; }
.idea-prompts li { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.76); font-size: 12px; }
.idea-prompts span { width: 27px; height: 27px; display: grid; place-items: center; flex: 0 0 auto; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; color: var(--apricot); font-size: 8px; font-weight: 700; }

.quote-builder { padding: 34px; color: var(--ink); background: var(--paper); box-shadow: 0 30px 100px rgba(0,0,0,.25); }
.service-tabs { display: grid; grid-template-columns: repeat(3, 1fr); margin-bottom: 20px; border-bottom: 1px solid var(--line); }
.service-tabs button { position: relative; height: 49px; border: 0; background: transparent; cursor: pointer; color: #857b80; font-size: 11px; font-weight: 700; }
.service-tabs button::after { content: ""; position: absolute; right: 0; bottom: -1px; left: 0; height: 2px; background: var(--violet); transform: scaleX(0); }
.service-tabs button.active { color: var(--ink); }
.service-tabs button.active::after { transform: scaleX(1); }
.idea-brief { margin-bottom: 18px; padding: 18px; border: 1px solid rgba(114,80,255,.18); background: rgba(114,80,255,.045); }
.brief-heading { display: flex; align-items: center; gap: 11px; }
.brief-heading > span { width: 28px; height: 28px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 50%; color: var(--white); background: var(--violet); font-size: 9px; font-weight: 700; }
.brief-heading > div { display: grid; }
.brief-heading strong { font-family: var(--serif); font-size: 20px; font-weight: 400; }
.brief-heading small { color: #8b8086; font-size: 8px; }
.idea-starters { display: flex; flex-wrap: wrap; gap: 6px; margin: 14px 0 10px; }
.idea-starters button { padding: 7px 9px; border: 1px solid rgba(114,80,255,.22); border-radius: 999px; color: var(--violet); background: transparent; cursor: pointer; font-size: 8px; font-weight: 700; }
.idea-starters button:hover { color: var(--white); background: var(--violet); }
.idea-description { position: relative; display: grid; gap: 7px; }
.idea-description > span, .contact-options label > span { font-size: 9px; font-weight: 700; }
.idea-description textarea { width: 100%; min-height: 116px; resize: vertical; padding: 13px 14px 27px; border: 1px solid #d5ccd0; outline: none; color: var(--ink); background: rgba(255,255,255,.72); font-size: 12px; line-height: 1.55; }
.idea-description textarea:focus, .contact-options input:focus { border-color: var(--violet); box-shadow: 0 0 0 1px var(--violet); }
.idea-description small { position: absolute; right: 10px; bottom: 8px; color: #998f94; font-size: 8px; }
.idea-description small b { font-weight: 500; }
.dropzone { min-height: 235px; display: flex; flex-direction: column; justify-content: center; align-items: center; border: 1px dashed #a79ca2; background: rgba(255,255,255,.45); cursor: pointer; transition: border .2s ease, background .2s ease; }
.dropzone:hover, .dropzone.dragging { border-color: var(--violet); background: rgba(114,80,255,.05); }
.dropzone input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.drop-icon { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 13px; color: var(--violet); border: 1px solid rgba(114,80,255,.24); border-radius: 50%; }
.drop-icon svg { width: 21px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.dropzone strong { font-family: var(--serif); font-size: 24px; font-weight: 400; }
.dropzone > span:not(.drop-icon) { margin-top: 4px; color: #8a8085; font-size: 9px; }
.dropzone > b { max-width: 85%; margin-top: 10px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; color: var(--violet); font-size: 11px; }
.quote-options { display: grid; grid-template-columns: 1fr 1fr 100px; gap: 10px; margin-top: 16px; }
.quote-options label { display: grid; gap: 7px; }
.quote-options label span { font-size: 9px; font-weight: 700; }
.contact-options { display: grid; grid-template-columns: 1fr 1.25fr 1fr; gap: 10px; margin-top: 14px; }
.contact-options label { display: grid; gap: 7px; }
.contact-options input { width: 100%; height: 50px; padding: 0 12px; border: 1px solid #d5ccd0; outline: none; color: var(--ink); background: rgba(255,255,255,.6); font-size: 12px; }
.bot-field { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); }
.quote-result { display: flex; justify-content: space-between; align-items: end; gap: 24px; margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--line); }
.quote-result > div { display: grid; }
.quote-result small { color: #8b8086; font-size: 9px; }
.quote-result strong { font-family: var(--serif); font-size: 35px; font-weight: 400; line-height: 1.1; }
.quote-result span { color: #8b8086; font-size: 8px; }
.quote-result .button span { color: inherit; font-size: 17px; }
.quote-result .button:disabled { cursor: wait; opacity: .62; }
.upload-status { min-height: 18px; margin: 12px 0 0; color: #4f765d; font-size: 9px; font-weight: 700; }
.upload-status.error { color: #a33c49; }
.privacy-note { display: flex; align-items: center; gap: 7px; margin: 15px 0 0; color: #857b80; font-size: 8px; }
.privacy-note svg { width: 14px; fill: none; stroke: currentColor; stroke-width: 1.4; }

.favorites { padding-bottom: 135px; }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; margin-top: 55px; }
.product-card { min-width: 0; }
.product-image { position: relative; aspect-ratio: .84; overflow: hidden; background: #d9d2c8; }
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s cubic-bezier(.2,.75,.2,1); }
.product-card:hover .product-image img { transform: scale(1.035); }
.product-image > span { position: absolute; top: 10px; left: 10px; padding: 5px 8px; color: var(--white); background: var(--violet); font-size: 8px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.crop-acrylic img { object-position: 64% center; }
.product-info { min-height: 92px; display: grid; grid-template-columns: 1fr auto; gap: 10px; align-items: end; padding: 15px 0; border-bottom: 1px solid var(--line); }
.product-info p { margin: 0 0 2px; color: #8a7f85; font-size: 8px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.product-info h3 { margin: 0; font-family: var(--serif); font-size: 23px; font-weight: 400; line-height: 1.1; }
.product-info > strong { white-space: nowrap; font-size: 10px; }
.product-card > button { width: 100%; display: flex; justify-content: space-between; padding: 12px 0; border: 0; background: transparent; cursor: pointer; font-size: 10px; font-weight: 700; }
.product-card > button span { width: 20px; height: 20px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; transition: background .2s ease, color .2s ease; }
.product-card > button:hover span { color: var(--white); background: var(--ink); }

.process { display: grid; grid-template-columns: .65fr 1.35fr; gap: 100px; padding-top: 50px; }
.process-head { position: sticky; top: 120px; align-self: start; }
.process h2 { font-size: clamp(48px, 4.7vw, 68px); }
.process-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.process-list li { display: grid; grid-template-columns: 90px 1fr; gap: 20px; padding: 38px 0; border-bottom: 1px solid var(--line); }
.process-list > li > span { color: var(--violet); font-size: 10px; font-weight: 700; letter-spacing: .15em; }
.process-list h3 { margin: -8px 0 7px; font-family: var(--serif); font-size: 34px; font-weight: 400; line-height: 1; }
.process-list p { max-width: 520px; margin: 0; color: #72686e; font-size: 13px; }

.maker-story { display: grid; grid-template-columns: 1.05fr .95fr; min-height: 720px; margin-top: 90px; color: var(--white); background: var(--ink); }
.story-image { position: relative; min-height: 620px; overflow: hidden; }
.story-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 65%, rgba(24,21,25,.5)); }
.story-image img { width: 100%; height: 100%; object-fit: cover; object-position: 67% center; }
.story-image > span { position: absolute; z-index: 1; bottom: 24px; left: 24px; padding: 6px 10px; color: var(--ink); background: var(--paper); font-size: 9px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.story-copy { align-self: center; max-width: 610px; padding: 70px 8vw 70px 7vw; }
.story-copy .eyebrow { color: rgba(255,255,255,.5); }
.story-copy h2 { font-size: clamp(43px, 4vw, 59px); }
.story-copy > p:not(.eyebrow) { margin: 24px 0; color: rgba(255,255,255,.6); font-size: 13px; }
.story-copy blockquote { margin: 35px 0 30px; padding: 24px 0 24px 23px; border-left: 2px solid var(--apricot); font-family: var(--serif); font-size: 23px; line-height: 1.35; }
.story-copy cite { display: block; margin-top: 12px; color: rgba(255,255,255,.46); font-family: var(--sans); font-size: 9px; font-style: normal; letter-spacing: .08em; text-transform: uppercase; }
.dark-link { border-color: var(--line-light); }

.faq { display: grid; grid-template-columns: .7fr 1.3fr; gap: 100px; }
.faq-heading { align-self: start; }
.faq h2 { font-size: clamp(48px, 5vw, 70px); }
.faq-heading > p:last-child { max-width: 360px; margin: 24px 0 0; color: #746a70; font-size: 13px; }
.faq-heading a { border-bottom: 1px solid currentColor; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 25px 42px 25px 0; cursor: pointer; list-style: none; font-family: var(--serif); font-size: 25px; line-height: 1.3; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { position: absolute; top: 26px; right: 3px; font-family: var(--sans); font-size: 20px; font-weight: 300; transition: transform .2s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 620px; margin: -8px 0 26px; color: #746a70; font-size: 13px; }

.final-cta { position: relative; min-height: 560px; display: flex; flex-direction: column; justify-content: center; align-items: center; overflow: hidden; padding: 80px 24px; text-align: center; color: var(--white); background: #181419; }
.final-cta > *:not(.cta-orbit) { position: relative; z-index: 1; }
.final-cta > p { margin: 0 0 9px; color: rgba(255,255,255,.5); font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.final-cta h2 { font-size: clamp(70px, 9vw, 128px); }
.final-cta > div:not(.cta-orbit) { display: flex; align-items: center; gap: 30px; margin-top: 35px; }
.light-link { border-color: var(--line-light); }
.cta-orbit { position: absolute; width: min(760px, 82vw); aspect-ratio: 1; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; }
.cta-orbit span { position: absolute; inset: 14%; border: 1px solid rgba(255,255,255,.06); border-radius: 50%; }
.cta-orbit span:nth-child(2) { inset: 30%; border-color: rgba(255,149,103,.15); }
.cta-orbit span:nth-child(3) { inset: 46%; background: rgba(114,80,255,.11); filter: blur(30px); }

.site-footer { padding: 75px max(24px, calc((100vw - var(--max)) / 2)) 25px; color: rgba(255,255,255,.7); background: #100e11; }
.footer-top { display: grid; grid-template-columns: 1fr 1.3fr auto; gap: 40px; align-items: center; padding-bottom: 45px; border-bottom: 1px solid var(--line-light); }
.footer-brand { color: var(--white); }
.footer-top p { max-width: 440px; margin: 0; font-size: 12px; }
.footer-top > a:last-child { color: var(--apricot); font-family: var(--serif); font-size: 24px; }
.footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 50px; padding: 48px 0; }
.footer-grid > div { display: flex; flex-direction: column; align-items: flex-start; }
.footer-grid h3 { margin: 0 0 14px; color: rgba(255,255,255,.35); font-size: 9px; letter-spacing: .14em; text-transform: uppercase; }
.footer-grid a, .footer-grid p { margin: 4px 0; font-size: 11px; }
.footer-grid a:hover { color: var(--white); }
.footer-contact p { color: rgba(255,255,255,.5); line-height: 1.7; }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 18px; border-top: 1px solid var(--line-light); color: rgba(255,255,255,.3); font-size: 9px; }

.cart-backdrop { position: fixed; z-index: 598; inset: 0; background: rgba(11,8,12,.65); backdrop-filter: blur(4px); opacity: 0; transition: opacity .25s ease; }
.cart-backdrop.visible { opacity: 1; }
.cart-drawer { position: fixed; z-index: 600; top: 0; right: 0; width: min(460px, 100%); height: 100dvh; display: flex; flex-direction: column; padding: 28px; color: var(--ink); background: var(--paper); box-shadow: -30px 0 80px rgba(0,0,0,.28); transform: translateX(105%); transition: transform .35s cubic-bezier(.22,.75,.2,1); }
.cart-drawer.open { transform: translateX(0); }
.cart-head { display: flex; justify-content: space-between; align-items: start; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.cart-head small { color: var(--violet); font-size: 8px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.cart-head h2 { margin: 3px 0 0; font-family: var(--serif); font-size: 35px; font-weight: 400; line-height: 1; }
.cart-head button { width: 38px; height: 38px; border: 1px solid var(--line); background: transparent; cursor: pointer; font-size: 25px; font-weight: 300; line-height: 1; }
.cart-items { flex: 1; overflow: auto; }
.cart-item { display: grid; grid-template-columns: 1fr auto; gap: 14px; padding: 19px 0; border-bottom: 1px solid var(--line); }
.cart-item h3 { margin: 0; font-family: var(--serif); font-size: 23px; font-weight: 400; line-height: 1.2; }
.cart-item p { margin: 4px 0 0; color: #82777c; font-size: 9px; }
.cart-item-side { display: grid; justify-items: end; align-content: space-between; }
.cart-item-side strong { font-size: 11px; }
.cart-item-side button { padding: 0; border: 0; border-bottom: 1px solid currentColor; color: #8b8085; background: transparent; cursor: pointer; font-size: 8px; }
.cart-empty { flex: 1; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; }
.cart-empty > span { font-family: var(--serif); font-size: 44px; color: var(--violet); }
.cart-empty h3 { margin: 7px 0; font-family: var(--serif); font-size: 28px; font-weight: 400; }
.cart-empty p { max-width: 310px; margin: 0; color: #7f747a; font-size: 11px; }
.cart-footer { padding-top: 20px; border-top: 1px solid var(--line); }
.cart-footer > div { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 14px; }
.cart-footer > div span { color: #82777c; font-size: 10px; }
.cart-footer > div strong { font-family: var(--serif); font-size: 28px; font-weight: 400; }
.cart-footer .button { width: 100%; justify-content: space-between; }
.cart-footer > p { margin: 8px 0 0; text-align: center; color: #8c8186; font-size: 8px; }

.toast { position: fixed; z-index: 700; right: 24px; bottom: 24px; display: flex; align-items: center; gap: 12px; max-width: calc(100% - 48px); padding: 13px 18px; color: var(--white); background: var(--ink); box-shadow: var(--shadow); transform: translateY(130%); opacity: 0; transition: transform .28s ease, opacity .28s ease; }
.toast.visible { transform: translateY(0); opacity: 1; }
.toast span { width: 22px; height: 22px; display: grid; place-items: center; color: var(--ink); background: var(--lime); border-radius: 50%; font-size: 11px; }
.toast p { margin: 0; font-size: 10px; font-weight: 700; }

@media (max-width: 1100px) {
  .site-header { grid-template-columns: 1fr auto; padding-inline: 24px; }
  .desktop-nav, .header-contact { display: none; }
  .menu-trigger { display: grid; }
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { width: min(780px, 100%); justify-self: start; padding: 145px 32px 80px; }
  .hero-visual { min-height: 630px; }
  .hero-image-wrap::after { background: linear-gradient(180deg, #171319 0, transparent 23%), linear-gradient(0deg, rgba(23,19,25,.62), transparent 52%); }
  .trust-strip { grid-template-columns: repeat(2, 1fr); }
  .trust-strip > div { border-bottom: 1px solid var(--line); }
  .personalizer-shell { grid-template-columns: 1fr; }
  .preview-stage { height: 500px; }
  .upload-section { grid-template-columns: 1fr; gap: 48px; }
  .upload-intro { max-width: 760px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); row-gap: 45px; }
  .process { gap: 60px; }
  .maker-story { grid-template-columns: 1fr 1fr; }
  .story-copy { padding-inline: 45px; }
}

@media (max-width: 760px) {
  .site-header { height: 70px; padding-inline: 16px; }
  .brand-copy { font-size: 16px; }
  .brand-mark { width: 32px; height: 32px; }
  .cart-trigger > span { display: none; }
  .header-actions { gap: 12px; }
  .hero-copy { padding: 130px 22px 60px; }
  .hero h1 { font-size: clamp(49px, 14vw, 66px); }
  .hero-copy > p { font-size: 15px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 12px; }
  .hero-meta { margin-top: 45px; }
  .hero-meta div { padding-right: 8px; }
  .hero-meta div:nth-child(2), .hero-meta div:last-child { padding-left: 9px; }
  .hero-visual { min-height: 470px; }
  .hero-image-wrap img { object-position: 59% center; }
  .hero-stamp { top: 40px; right: 18px; width: 94px; height: 94px; }
  .hero-note { left: 0; right: auto; max-width: 90%; }
  .trust-strip { padding: 0; }
  .trust-strip > div { min-height: 80px; padding-left: 15px; }
  .trust-strip > div:first-child { border-left: 0; }
  .trust-icon { font-size: 21px; }
  .section { width: min(100% - 36px, var(--max)); padding: 90px 0; }
  .split-heading { grid-template-columns: 1fr; gap: 24px; }
  .section-heading h2 { font-size: clamp(45px, 13vw, 61px); }
  .path-grid { grid-template-columns: 1fr; }
  .path-card { min-height: 490px; }
  .personalizer { width: 100%; }
  .personalizer > .section-heading { padding-inline: 18px; }
  .personalizer-shell { border-inline: 0; }
  .preview-panel { padding: 14px; }
  .preview-stage { height: 420px; }
  .preview-object { width: 77%; }
  .preview-caption { align-items: flex-start; flex-direction: column; gap: 3px; }
  .config-panel { padding: 28px 18px; }
  .option-grid { grid-template-columns: 1fr; }
  .option { min-height: 57px; }
  .material-options { gap: 2px; }
  .material { padding: 6px; }
  .material span { font-size: 9px; }
  .swatch { width: 28px; height: 28px; }
  .upload-section { padding: 90px 18px; }
  .upload-intro h2 { font-size: 50px; }
  .quote-builder { padding: 19px 14px; }
  .dropzone { min-height: 210px; padding: 20px; text-align: center; }
  .dropzone strong { font-size: 21px; }
  .quote-options { grid-template-columns: 1fr 1fr; }
  .quote-options label:last-child { grid-column: 1 / -1; }
  .contact-options { grid-template-columns: 1fr; }
  .idea-brief { padding: 15px 12px; }
  .idea-starters { display: grid; grid-template-columns: 1fr; }
  .idea-starters button { text-align: left; }
  .quote-result { align-items: stretch; flex-direction: column; }
  .quote-result .button { justify-content: space-between; }
  .product-grid { grid-template-columns: 1fr; }
  .product-image { aspect-ratio: 1; }
  .process { grid-template-columns: 1fr; gap: 45px; }
  .process-head { position: static; }
  .process-list li { grid-template-columns: 52px 1fr; padding: 28px 0; }
  .maker-story { grid-template-columns: 1fr; margin-top: 20px; }
  .story-image { min-height: 480px; }
  .story-image::after { background: linear-gradient(0deg, #181519 0, transparent 30%); }
  .story-copy { padding: 65px 22px; }
  .faq { grid-template-columns: 1fr; gap: 45px; }
  .faq-list summary { font-size: 22px; }
  .final-cta { min-height: 510px; }
  .final-cta h2 { font-size: clamp(68px, 22vw, 94px); }
  .final-cta > div:not(.cta-orbit) { align-items: flex-start; flex-direction: column; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 35px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 5px; }
  .cart-drawer { padding: 22px 18px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
