/* ============================================================
   axiomcrafted — design system
   Modern minimal · Clay / Ink / Paper
   ============================================================ */

:root {
  --ink: #1C1B19;
  --ink-soft: #57534C;
  --paper: #FAF7F1;
  --sand: #EFE8DC;
  --line: #E4DCD0;
  --clay: #BC5837;
  --clay-dark: #A84B2E;
  --wood: #A87B50;
  --green: #3E7C4F;
  --red: #B3402A;
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 18px 50px -22px rgba(28, 27, 25, .25);
  --shadow-sm: 0 6px 20px -10px rgba(28, 27, 25, .22);
  --wrap: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
img, svg, canvas { display: block; max-width: 100%; }
a { color: inherit; }
button { font-family: inherit; }

h1, h2, h3, .serif {
  font-family: var(--serif);
  font-weight: 560;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 .5em;
}
h1 { font-size: clamp(2.4rem, 5.2vw, 3.6rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.6rem); }
h3 { font-size: 1.35rem; line-height: 1.25; }
p { margin: 0 0 1em; }
.muted { color: var(--ink-soft); }
.small { font-size: .85rem; }

.wrap { width: min(var(--wrap), 100% - 3rem); margin-inline: auto; }
.section { padding: clamp(3.5rem, 8vw, 6.5rem) 0; }
.section--sand { background: var(--sand); }
.eyebrow {
  font-size: .78rem; font-weight: 600; letter-spacing: .18em;
  text-transform: uppercase; color: var(--clay); margin-bottom: 1rem;
}
.center { text-align: center; }
.section-head { max-width: 640px; margin: 0 auto 3rem; text-align: center; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .9rem 1.7rem; border-radius: 999px; border: 1.5px solid transparent;
  font-weight: 600; font-size: .95rem; line-height: 1; cursor: pointer;
  text-decoration: none; transition: background .18s, color .18s, border-color .18s, transform .18s;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--clay); color: var(--paper); }
.btn--primary:hover { background: var(--clay-dark); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--paper); }
.btn--light { background: var(--paper); color: var(--ink); }
.btn--block { width: 100%; }
.btn[disabled] { opacity: .5; pointer-events: none; }
.btn .arrow { font-family: var(--sans); }

/* ---------- announcement + header ---------- */
.announce {
  background: var(--ink); color: var(--paper);
  font-size: .8rem; letter-spacing: .06em; text-align: center;
  padding: .55rem 1rem;
}
.announce b { color: #E9A583; font-weight: 600; }
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(250, 247, 241, .88);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap { display: flex; align-items: center; gap: 1.6rem; height: 68px; }
.brand { display: flex; align-items: center; gap: .6rem; text-decoration: none; }
.brand svg { height: 34px; width: 34px; flex: none; }
.brand-name {
  font-family: var(--serif); font-size: 1.32rem; font-weight: 600; letter-spacing: -.03em;
}
.brand-name i { font-style: normal; color: var(--clay); }
.main-nav { display: flex; gap: 1.4rem; margin-left: auto; }
.main-nav a {
  text-decoration: none; font-size: .92rem; font-weight: 500; color: var(--ink-soft);
  transition: color .15s;
}
.main-nav a:hover, .main-nav a[aria-current="page"] { color: var(--ink); }
.header-actions { display: flex; align-items: center; gap: .8rem; }
.cart-btn {
  position: relative; display: inline-flex; align-items: center; gap: .45rem;
  background: none; border: 1.5px solid var(--line); border-radius: 999px;
  padding: .5rem 1rem; font-size: .9rem; font-weight: 600; cursor: pointer;
  transition: border-color .15s;
}
.cart-btn:hover { border-color: var(--ink); }
.cart-count {
  min-width: 1.35rem; height: 1.35rem; padding: 0 .3rem; border-radius: 999px;
  background: var(--clay); color: var(--paper); font-size: .75rem; font-weight: 600;
  display: inline-flex; align-items: center; justify-content: center;
}
.cart-count.is-zero { background: var(--line); color: var(--ink-soft); }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: .5rem; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 5px 0; border-radius: 2px; }

/* ---------- hero ---------- */
.hero { padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(3rem, 7vw, 5rem); overflow: hidden; }
.hero .wrap { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.hero h1 em { font-style: italic; color: var(--clay); }
.hero p.lede { font-size: 1.13rem; color: var(--ink-soft); max-width: 30rem; margin-bottom: 1.8rem; }
.hero-cta { display: flex; gap: .9rem; flex-wrap: wrap; align-items: center; }
.hero-note { margin-top: 1.1rem; font-size: .83rem; color: var(--ink-soft); display: flex; gap: 1.2rem; flex-wrap: wrap; }
.hero-note span::before { content: "✓"; color: var(--clay); margin-right: .35rem; font-weight: 700; }
.hero-stage {
  position: relative; border-radius: var(--radius); box-shadow: var(--shadow);
  overflow: hidden; background: #dfe2e6; aspect-ratio: 1 / 1;
}
.hero-stage canvas { width: 100%; height: 100%; }

/* ---------- trust bar ---------- */
.trustbar { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper); }
.trustbar .wrap { display: flex; justify-content: center; gap: clamp(1.5rem, 5vw, 4rem); padding: 1.1rem 0; flex-wrap: wrap; }
.trustbar span { font-size: .85rem; font-weight: 500; color: var(--ink-soft); display: flex; align-items: center; gap: .5rem; }
.trustbar svg { width: 17px; height: 17px; stroke: var(--clay); }

/* ---------- steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; counter-reset: step; }
.step {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.9rem 1.7rem; position: relative;
}
.step::before {
  counter-increment: step; content: "0" counter(step);
  font-family: var(--serif); font-size: 2.1rem; color: var(--clay); display: block; margin-bottom: .8rem;
}
.section--sand .step { background: var(--paper); }
.step h3 { margin-bottom: .4rem; }
.step p { color: var(--ink-soft); font-size: .95rem; margin: 0; }

/* ---------- material cards ---------- */
.materials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.material-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem; display: flex; flex-direction: column; gap: .9rem;
  transition: transform .2s, box-shadow .2s; text-decoration: none;
}
.material-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.material-card canvas, .material-card img { width: 100%; aspect-ratio: 4/3; border-radius: var(--radius-sm); background: #dfe2e6; }
.material-card .price { margin-top: auto; font-weight: 600; }
.material-card .price small { color: var(--ink-soft); font-weight: 500; }
.material-card h3 { margin: 0; }
.material-card p { color: var(--ink-soft); font-size: .93rem; margin: 0; }

/* ---------- gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.gallery img, .gallery canvas {
  width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: var(--radius-sm);
  border: 1px solid var(--line);
}

/* ---------- reviews ---------- */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.review {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.7rem;
}
.review .stars { color: var(--clay); letter-spacing: .2em; margin-bottom: .8rem; font-size: .9rem; }
.review p { font-size: .96rem; }
.review footer { font-size: .85rem; color: var(--ink-soft); }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: var(--ink); color: var(--paper); border-radius: var(--radius);
  padding: clamp(2.5rem, 6vw, 4.5rem); text-align: center; position: relative; overflow: hidden;
}
.cta-banner::after {
  content: ""; position: absolute; right: -80px; top: -80px; width: 260px; height: 260px;
  border-radius: 40px; background: var(--clay); opacity: .35; transform: rotate(18deg);
}
.cta-banner h2 { color: var(--paper); }
.cta-banner p { color: #C9C4BB; max-width: 34rem; margin: 0 auto 1.8rem; }

/* ---------- customizer ---------- */
.customizer { padding: clamp(2rem, 5vw, 4rem) 0; }
.customizer-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(1.6rem, 4vw, 3rem); align-items: start; }
.stage-panel {
  position: sticky; top: 92px;
  width: min(100%, max(320px, calc(100vh - 250px)));
  margin-inline: auto;
}
.stage {
  position: relative; border-radius: var(--radius); overflow: hidden;
  background: #dfe2e6; box-shadow: var(--shadow); aspect-ratio: 1/1;
}
.stage canvas { width: 100%; height: 100%; touch-action: none; cursor: grab; }
.stage canvas:active { cursor: grabbing; }
.stage-hint {
  position: absolute; left: 50%; bottom: .9rem; transform: translateX(-50%);
  background: rgba(28,27,25,.75); color: var(--paper); font-size: .75rem;
  padding: .35rem .9rem; border-radius: 999px; pointer-events: none; white-space: nowrap;
}
.stage-tools { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .6rem; margin-top: .9rem; }
.chip-btn {
  border: 1.5px solid var(--line); background: var(--paper); border-radius: 999px;
  padding: .45rem 1rem; font-size: .82rem; font-weight: 600; cursor: pointer; color: var(--ink-soft);
  transition: all .15s;
}
.stage-tools .chip-btn { width: 100%; text-align: center; }
.stage-tools .stage-slider { grid-column: 1 / -1; margin: 0; }
.chip-btn:hover { border-color: var(--ink); color: var(--ink); }

.panel h1 { font-size: clamp(1.7rem, 3vw, 2.2rem); margin-bottom: .3rem; }
.opt-group { margin-top: 1.6rem; }
.opt-group > label {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: .8rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-soft); margin-bottom: .7rem;
}
.opt-row { display: flex; gap: .6rem; flex-wrap: wrap; }
.opt {
  border: 1.5px solid var(--line); background: var(--paper); border-radius: var(--radius-sm);
  padding: .7rem .95rem; cursor: pointer; font-size: .9rem; font-weight: 500;
  display: flex; flex-direction: column; gap: .15rem; min-width: 92px;
  transition: border-color .15s, background .15s; text-align: left; color: var(--ink);
}
.opt small { color: var(--ink-soft); font-weight: 400; font-size: .78rem; }
.opt:hover { border-color: var(--ink-soft); }
.opt.is-active { border-color: var(--clay); background: #FBF1EC; box-shadow: inset 0 0 0 1px var(--clay); }
.opt.is-active small { color: var(--clay-dark); }

.upload-box {
  border: 2px dashed var(--line); border-radius: var(--radius);
  padding: 1.8rem 1.4rem; text-align: center; cursor: pointer; transition: border-color .15s, background .15s;
  background: var(--paper);
}
.upload-box:hover, .upload-box.is-drag { border-color: var(--clay); background: #FBF1EC; }
.upload-box strong { display: block; margin-bottom: .25rem; }
.upload-box .muted { font-size: .85rem; }
.upload-box input { display: none; }
.upload-preview-row { display: flex; align-items: center; gap: .9rem; }
.upload-preview-row img { width: 54px; height: 54px; object-fit: cover; border-radius: var(--radius-sm); border: 1px solid var(--line); }
.upload-preview-row .meta { font-size: .85rem; }
.upload-preview-row button { margin-left: auto; }

.slider-row { display: grid; grid-template-columns: 78px 1fr 44px; gap: .8rem; align-items: center; margin-bottom: .55rem; }
.slider-row label { font-size: .85rem; color: var(--ink-soft); }
.slider-row output { font-size: .8rem; text-align: right; color: var(--ink-soft); font-variant-numeric: tabular-nums; }
input[type="range"] { -webkit-appearance: none; appearance: none; height: 4px; border-radius: 4px; background: var(--line); outline: none; }
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none; width: 18px; height: 18px; border-radius: 50%;
  background: var(--clay); cursor: pointer; border: 3px solid var(--paper); box-shadow: 0 1px 5px rgba(0,0,0,.25);
}
input[type="range"]::-moz-range-thumb {
  width: 12px; height: 12px; border-radius: 50%; background: var(--clay); cursor: pointer; border: 3px solid var(--paper);
}

.qty-box { display: inline-flex; align-items: center; border: 1.5px solid var(--line); border-radius: 999px; overflow: hidden; }
.qty-box button { width: 42px; height: 42px; border: 0; background: none; font-size: 1.15rem; cursor: pointer; color: var(--ink); }
.qty-box button:hover { background: var(--sand); }
.qty-box input { width: 52px; border: 0; text-align: center; font: inherit; font-weight: 600; background: none; -moz-appearance: textfield; }
.qty-box input::-webkit-outer-spin-button, .qty-box input::-webkit-inner-spin-button { -webkit-appearance: none; }

.price-line { display: flex; align-items: baseline; gap: .8rem; margin: 1.6rem 0 .3rem; }
.price-line .now { font-family: var(--serif); font-size: 2rem; font-weight: 600; }
.price-line .per { color: var(--ink-soft); font-size: .88rem; }
.discount-note { font-size: .85rem; color: var(--green); font-weight: 500; min-height: 1.4em; }
.panel-actions { display: flex; flex-direction: column; gap: .7rem; margin-top: 1.2rem; }
.guarantees { list-style: none; margin: 1.4rem 0 0; padding: 1.1rem 0 0; border-top: 1px solid var(--line); display: grid; gap: .5rem; }
.guarantees li { font-size: .86rem; color: var(--ink-soft); display: flex; gap: .55rem; align-items: center; }
.guarantees li::before { content: "✓"; color: var(--clay); font-weight: 700; }

/* ---------- cart drawer ---------- */
.drawer-scrim {
  position: fixed; inset: 0; background: rgba(28,27,25,.45); z-index: 90;
  opacity: 0; pointer-events: none; transition: opacity .25s;
}
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(420px, 100vw); z-index: 95;
  background: var(--paper); box-shadow: -20px 0 60px rgba(0,0,0,.25);
  transform: translateX(100%); transition: transform .3s cubic-bezier(.2,.8,.25,1);
  display: flex; flex-direction: column;
}
body.cart-open .drawer { transform: none; }
body.cart-open .drawer-scrim { opacity: 1; pointer-events: auto; }
.drawer header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 1.4rem; border-bottom: 1px solid var(--line);
}
.drawer header h3 { margin: 0; }
.drawer .close-x { background: none; border: 0; font-size: 1.5rem; cursor: pointer; line-height: 1; color: var(--ink-soft); }
.drawer-items { flex: 1; overflow-y: auto; padding: 1rem 1.4rem; display: flex; flex-direction: column; gap: 1rem; }
.cart-item { display: grid; grid-template-columns: 64px 1fr auto; gap: .9rem; align-items: center; }
.cart-item img { width: 64px; height: 64px; border-radius: var(--radius-sm); object-fit: cover; border: 1px solid var(--line); }
.cart-item .t { font-weight: 600; font-size: .9rem; line-height: 1.3; }
.cart-item .s { font-size: .78rem; color: var(--ink-soft); }
.cart-item .q { display: flex; align-items: center; gap: .45rem; font-size: .85rem; margin-top: .3rem; }
.cart-item .q button { width: 22px; height: 22px; border-radius: 50%; border: 1px solid var(--line); background: none; cursor: pointer; line-height: 1; }
.cart-item .p { font-weight: 600; font-size: .9rem; text-align: right; }
.cart-item .rm { background: none; border: 0; color: var(--ink-soft); font-size: .75rem; cursor: pointer; text-decoration: underline; padding: 0; margin-top: .3rem; }
.cart-empty { text-align: center; color: var(--ink-soft); padding: 3rem 1rem; }
.drawer footer { border-top: 1px solid var(--line); padding: 1.2rem 1.4rem; background: var(--paper); }
.totals { display: grid; gap: .35rem; font-size: .9rem; margin-bottom: 1rem; }
.totals div { display: flex; justify-content: space-between; }
.totals .grand { font-weight: 700; font-size: 1.05rem; border-top: 1px solid var(--line); padding-top: .5rem; }
.totals .free-ship { color: var(--green); font-weight: 600; }
.pay-note { font-size: .78rem; color: var(--ink-soft); text-align: center; margin: .6rem 0 0; }
.paypal-slot { margin-top: .7rem; }
.checkout-error { color: var(--red); font-size: .83rem; margin-top: .5rem; display: none; }

/* ---------- footer ---------- */
.site-footer { background: var(--ink); color: #C9C4BB; margin-top: clamp(3rem, 7vw, 5rem); }
.site-footer .wrap { padding: 3.5rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2.5rem; }
.site-footer h4 { color: var(--paper); font-size: .85rem; letter-spacing: .14em; text-transform: uppercase; margin: 0 0 1rem; font-family: var(--sans); font-weight: 600; }
.site-footer a { color: #C9C4BB; text-decoration: none; font-size: .92rem; display: block; padding: .22rem 0; }
.site-footer a:hover { color: var(--paper); }
.footer-brand svg { height: 38px; width: 38px; margin-bottom: 1rem; }
.footer-brand p { font-size: .9rem; max-width: 22rem; }
.newsletter { display: flex; gap: .5rem; margin-top: 1rem; }
.newsletter input {
  flex: 1; background: #2A2926; border: 1px solid #44423D; color: var(--paper);
  border-radius: 999px; padding: .6rem 1.1rem; font: inherit; font-size: .88rem; outline: none;
}
.newsletter input:focus { border-color: var(--clay); }
.newsletter button { border-radius: 999px; border: 0; background: var(--clay); color: var(--paper); padding: 0 1.2rem; font-weight: 600; cursor: pointer; }
.newsletter button:hover { background: var(--clay-dark); }
.footer-bottom {
  border-top: 1px solid #3A3833; margin-top: 2.5rem; padding-top: 1.5rem;
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .8rem; color: #8B877E;
}
.footer-bottom .pay { display: flex; gap: .8rem; align-items: center; }
.footer-bottom .pay svg { height: 22px; width: auto; opacity: .85; }

/* ---------- prose pages ---------- */
.prose { max-width: 720px; margin: 0 auto; padding: clamp(2.5rem, 6vw, 4.5rem) 0; }
.prose h1 { margin-bottom: 1.2rem; }
.prose h2 { font-size: 1.5rem; margin-top: 2.2rem; }
.prose p, .prose li { color: var(--ink-soft); }
.prose ul { padding-left: 1.2rem; }

/* ---------- FAQ ---------- */
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  cursor: pointer; list-style: none; padding: 1.2rem 0; font-weight: 600; font-size: 1.02rem;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.4rem; color: var(--clay); font-weight: 400; transition: transform .2s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .a { padding: 0 0 1.3rem; color: var(--ink-soft); max-width: 46rem; }

/* ---------- forms ---------- */
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-size: .85rem; font-weight: 600; margin-bottom: .35rem; }
.field input, .field textarea, .field select {
  width: 100%; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  padding: .75rem 1rem; font: inherit; background: var(--paper); color: var(--ink); outline: none;
  transition: border-color .15s;
}
.field input:focus, .field textarea:focus { border-color: var(--clay); }
.form-ok { background: #EAF3EC; border: 1px solid #C4DCCB; color: var(--green); border-radius: var(--radius-sm); padding: 1rem 1.2rem; display: none; }

/* ---------- misc ---------- */
.toast {
  position: fixed; bottom: 1.5rem; left: 50%; transform: translate(-50%, 140%);
  background: var(--ink); color: var(--paper); padding: .8rem 1.5rem; border-radius: 999px;
  font-size: .9rem; z-index: 120; transition: transform .35s cubic-bezier(.2,.8,.25,1);
  box-shadow: var(--shadow); pointer-events: none;
}
.toast.show { transform: translate(-50%, 0); }
.skip-link { position: absolute; left: -999px; }
.skip-link:focus { left: 1rem; top: 1rem; z-index: 200; background: var(--ink); color: var(--paper); padding: .5rem 1rem; border-radius: 8px; }

/* ---------- responsive ---------- */
@media (max-width: 960px) {
  .hero .wrap, .customizer-grid { grid-template-columns: 1fr; }
  .stage-panel { position: static; }
  .steps, .materials, .reviews { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .steps, .materials, .reviews, .gallery, .footer-grid { grid-template-columns: 1fr; }
  .main-nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--paper); border-bottom: 1px solid var(--line);
    flex-direction: column; padding: 1rem 1.5rem 1.5rem; gap: .9rem;
  }
  .main-nav.open { display: flex; }
  .nav-toggle { display: block; margin-left: auto; }
  .header-actions { margin-left: 0; }
  .main-nav { margin-left: 0; }
  .hero-stage { order: -1; }
  .stage-panel { width: 100%; top: 82px; }
  .stage-tools { grid-template-columns: 1fr; }
  .stage-tools .stage-slider { grid-column: auto; }
}

/* ============================================================
   Atelier redesign — Aegean light, plaster, cobalt & clay
   ============================================================ */
:root {
  --aegean: #14477D;
  --aegean-deep: #0B2C51;
  --aegean-light: #77B7D6;
  --olive: #5C6B49;
  --bougainvillea: #C2436E;
  --shell: #F7F1E6;
  --linen: #EDE5D7;
  --ink-warm: #221C17;
  --clay-soft: #D87A5B;
  --shadow-deep: 0 28px 70px -35px rgba(11, 44, 81, .45);
}

body {
  overflow-x: hidden;
  background:
    radial-gradient(circle at 88% 4%, rgba(119,183,214,.20), transparent 38%),
    radial-gradient(circle at 4% 78%, rgba(92,107,73,.10), transparent 32%),
    var(--shell);
}

h1, h2, h3 {
  font-weight: 520;
  letter-spacing: -.045em;
}
h1 em, .voice-main p {
  font-style: italic;
}
.wrap { width: min(1240px, 100% - clamp(2rem, 8vw, 7rem)); }
.section { padding: clamp(5rem, 11vw, 10rem) 0; }
.eyebrow { letter-spacing: .32em; }

.announce {
  background: var(--aegean-deep);
  color: rgba(247,241,230,.88);
  font-style: italic;
  letter-spacing: .02em;
}
.announce b { color: var(--clay-soft); font-style: normal; }

.site-header {
  background: rgba(247,241,230,.82);
  border-bottom: 1px solid rgba(34,28,23,.10);
}
.site-header .wrap { height: 78px; gap: 2rem; }
.brand-name { font-size: 1.45rem; font-weight: 600; letter-spacing: -.045em; }
.brand-name i { color: var(--clay); }
.main-nav { gap: clamp(1rem, 2vw, 1.8rem); }
.main-nav a {
  position: relative;
  color: rgba(34,28,23,.66);
  font-size: .84rem;
  text-transform: uppercase;
  letter-spacing: .11em;
  padding: .3rem 0;
}
.main-nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 1px;
  background: var(--clay); transition: width .25s ease;
}
.main-nav a:hover::after, .main-nav a[aria-current="page"]::after { width: 100%; }
.main-nav a:hover, .main-nav a[aria-current="page"] { color: var(--ink); }
.cart-btn {
  border-color: rgba(34,28,23,.18);
  background: transparent;
  letter-spacing: .05em;
  text-transform: uppercase;
  font-size: .78rem;
  padding: .65rem 1.1rem;
}

.link-underline, .link-arrow {
  color: var(--ink);
  font-size: .87rem;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  padding-bottom: .3rem;
}
.link-underline::after, .link-arrow::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 1px;
  background: currentColor; opacity: .35;
  transition: opacity .2s ease, transform .25s ease;
}
.link-underline:hover::after, .link-arrow:hover::after { opacity: 1; transform: scaleX(1.04); }
.link-arrow { display: inline-flex; align-items: center; gap: .5rem; }
.link-arrow::before { content: "→"; font-weight: 500; }
.link-arrow::after { display: none; }

/* ---------- hero ---------- */
.hero {
  min-height: min(100vh, 880px);
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(3rem, 6vw, 5rem);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.hero-rule {
  width: 72px; height: 3px; background: var(--clay); margin-bottom: 2.2rem;
}
.hero h1 {
  font-size: clamp(2.5rem, 4.7vw, 4.6rem);
  line-height: .98;
  margin-bottom: 1.7rem;
}
.hero h1 em { color: var(--aegean); }
.hero .lede {
  max-width: 27rem;
  color: rgba(34,28,23,.68);
  font-size: 1.08rem;
  line-height: 1.7;
}
.hero-cta { display: flex; align-items: center; gap: 1.5rem; margin-top: 1.9rem; flex-wrap: wrap; }
.btn--primary {
  background: var(--clay);
  color: var(--shell);
  border: 0;
  box-shadow: 0 18px 40px -22px rgba(188,88,55,.75);
}
.hero-stage { position: relative; }
.hero-stage canvas {
  width: 100%;
  aspect-ratio: 11 / 10;
  border-radius: 4px;
  box-shadow: var(--shadow-deep);
}
.hero-ticket {
  position: absolute;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  display: grid;
  gap: .15rem;
  padding: 1rem 1.2rem;
  background: rgba(247,241,230,.9);
  border-left: 3px solid var(--clay);
  backdrop-filter: blur(8px);
  transform: rotate(-3deg);
}
.hero-ticket span {
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: rgba(34,28,23,.6);
}
.hero-ticket strong { font-family: var(--serif); font-size: 1.2rem; }

.statement {
  border-top: 1px solid rgba(34,28,23,.08);
  border-bottom: 1px solid rgba(34,28,23,.08);
  background: var(--shell);
}
.statement p {
  max-width: 54rem;
  margin: 2rem auto;
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.55;
  text-align: center;
  color: var(--aegean-deep);
}

/* ---------- collections rail ---------- */
.collections { background: var(--linen); }
.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, .7fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: end;
  margin-bottom: clamp(2.5rem, 6vw, 4.5rem);
}
.split-heading h2 {
  font-size: clamp(2.4rem, 5vw, 4.3rem);
  line-height: 1;
  margin: 0;
}
.split-heading p { color: rgba(34,28,23,.64); margin: 0; }
.collection-rail {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: .8rem;
}
.collection-tile {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 3px;
  text-decoration: none;
  color: var(--shell);
  background: var(--aegean-deep);
}
.collection-tile::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 58%;
  background: linear-gradient(to top, rgba(11,44,81,.74), transparent);
  pointer-events: none;
}
.collection-tile span { z-index: 1; }
.collection-tile canvas {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.2,.8,.2,1);
}
.collection-tile:hover canvas { transform: scale(1.05); }
.collection-tile span {
  position: absolute;
  left: 1.1rem;
  bottom: 1rem;
  display: grid;
  gap: .1rem;
  font-family: var(--serif);
  font-size: 1.25rem;
  text-shadow: 0 2px 16px rgba(0,0,0,.35);
}
.collection-tile small {
  font-family: var(--sans);
  font-size: .62rem;
  letter-spacing: .24em;
  opacity: .7;
}
.tile-a { grid-column: span 4; aspect-ratio: 3 / 4; }
.tile-b { grid-column: span 3; aspect-ratio: 4 / 5; }
.tile-c { grid-column: span 5; aspect-ratio: 16 / 13; }
.tile-d { grid-column: span 5; aspect-ratio: 16 / 11; }
.tile-e { grid-column: span 7; aspect-ratio: 16 / 9; }

/* ---------- craft process ---------- */
.process {
  background: linear-gradient(145deg, var(--aegean) 0%, var(--aegean-deep) 78%);
  color: var(--shell);
}
.process-grid {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1fr);
  gap: clamp(3rem, 7vw, 7rem);
}
.process h2 {
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  line-height: .98;
  color: var(--shell);
}
.process p { color: rgba(247,241,230,.68); }
.process .link-arrow { color: var(--clay-soft); margin-top: 2rem; display: inline-flex; }
.craft-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
}
.craft-list li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 1.5rem;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(247,241,230,.16);
  counter-increment: craft;
  position: relative;
}
.craft-list li::before {
  content: "0" counter(craft);
  grid-column: 1;
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--clay-soft);
}
.craft-list strong {
  grid-column: 2;
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 520;
}
.craft-list p {
  grid-column: 2;
  margin: .4rem 0 0;
  max-width: 34rem;
}
.process { counter-reset: craft; }

/* ---------- materials mosaic ---------- */
.materials { display: block; background: var(--shell); }
.section-heading {
  max-width: 44rem;
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}
.section-heading h2 {
  font-size: clamp(2.3rem, 4.4vw, 3.8rem);
  line-height: 1;
}
.material-mosaic {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: minmax(130px, auto);
  gap: 1rem;
}
.material-feature, .material-side {
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  background: var(--paper);
  border-radius: 4px;
}
.material-feature { grid-column: span 7; grid-row: span 2; }
.material-mosaic > a:nth-child(2) { grid-column: span 5; grid-row: span 1; }
.material-mosaic > a:nth-child(3) { grid-column: span 5; grid-row: span 1; }
.material-feature canvas, .material-side canvas {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.2,.8,.2,1);
}
.material-feature:hover canvas, .material-side:hover canvas { transform: scale(1.04); }
.material-copy {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: clamp(1.4rem, 3vw, 2.2rem);
  color: var(--shell);
  background: linear-gradient(to top, rgba(11,44,81,.86), rgba(11,44,81,.12) 58%, transparent);
}
.material-copy h3 {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  margin-bottom: .3rem;
}
.material-copy p { max-width: 24rem; margin: 0 0 1rem; color: rgba(247,241,230,.8); }
.material-copy span {
  font-size: .74rem;
  text-transform: uppercase;
  letter-spacing: .18em;
}

/* ---------- irregular atelier gallery ---------- */
.gallery-section { background: var(--linen); }
.atelier-gallery {
  display: grid;
  grid-template-columns: repeat(12, minmax(0,1fr));
  gap: clamp(.8rem, 2vw, 1.4rem);
  align-items: center;
}
.gallery-item {
  margin: 0;
  overflow: hidden;
  border-radius: 3px;
  box-shadow: 0 18px 45px -32px rgba(34,28,23,.55);
}
.gallery-item canvas { width: 100%; height: 100%; object-fit: cover; }
.item-1 { grid-column: 1 / span 5; aspect-ratio: 4 / 5; transform: rotate(-1deg); }
.item-2 { grid-column: 7 / span 4; aspect-ratio: 1; transform: translateY(-1.5rem); }
.item-3 { grid-column: 11 / span 2; aspect-ratio: 3 / 4; transform: rotate(1.4deg); }
.item-4 { grid-column: 2 / span 3; aspect-ratio: 3 / 4; transform: translateY(-1rem); }
.item-5 { grid-column: 6 / span 5; aspect-ratio: 16 / 11; transform: rotate(.7deg); }
.item-6 { grid-column: 11 / span 2; aspect-ratio: 1; transform: translateY(1rem); }

/* ---------- voices ---------- */
.voices {
  background: var(--aegean-deep);
  color: var(--shell);
}
.voices-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, .75fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
}
.voice-main p {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  line-height: 1.18;
  color: var(--shell);
  margin-bottom: 1.5rem;
}
.voice-main footer, .voice-side footer {
  color: rgba(247,241,230,.55);
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .18em;
}
.voice-side {
  border-left: 1px solid rgba(247,241,230,.18);
  padding-left: clamp(1.5rem, 3vw, 2.5rem);
  display: grid;
  gap: 1.2rem;
}
.voice-side p { color: rgba(247,241,230,.76); margin: 0; font-size: 1rem; }

/* ---------- closing ---------- */
.closing {
  padding: clamp(5rem, 11vw, 9rem) 0;
  background:
    radial-gradient(circle at 80% 0, rgba(119,183,214,.28), transparent 42%),
    var(--aegean);
  color: var(--shell);
}
.closing-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
}
.closing h2 {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: .98;
  color: var(--shell);
}
.closing p { color: rgba(247,241,230,.7); max-width: 28rem; margin: 0; }
.btn--paper {
  background: var(--shell);
  color: var(--ink);
  border: 0;
  padding: 1.1rem 2rem;
}
.btn--paper:hover { background: #fff; }

/* ---------- footer ---------- */
.site-footer {
  background: var(--aegean-deep);
  color: rgba(247,241,230,.68);
  margin-top: 0;
}
.site-footer h4 { color: var(--shell); }
.site-footer a { color: rgba(247,241,230,.68); }
.site-footer a:hover { color: var(--shell); }
.newsletter input { background: rgba(247,241,230,.08); border-color: rgba(247,241,230,.16); color: var(--shell); }
.footer-bottom { border-top-color: rgba(247,241,230,.12); }

/* ---------- responsive continuation ---------- */
@media (max-width: 1080px) {
  .hero h1 { font-size: clamp(2.8rem, 8vw, 4.8rem); }
  .material-feature { grid-column: span 12; }
  .material-mosaic > a:nth-child(2), .material-mosaic > a:nth-child(3) { grid-column: span 6; }
}
@media (max-width: 960px) {
  .hero-grid, .process-grid, .voices-grid, .closing-grid { grid-template-columns: 1fr; }
  .hero-stage { order: 0; max-width: 720px; }
  .split-heading { grid-template-columns: 1fr; align-items: start; }
  .collection-rail { grid-template-columns: repeat(6, minmax(0,1fr)); }
  .tile-a { grid-column: span 3; }
  .tile-b { grid-column: span 3; }
  .tile-c { grid-column: span 3; }
  .tile-d { grid-column: span 3; }
  .tile-e { grid-column: span 6; }
  .atelier-gallery { grid-template-columns: repeat(6, minmax(0,1fr)); }
  .item-1 { grid-column: 1 / span 4; }
  .item-2 { grid-column: 5 / span 2; }
  .item-3 { grid-column: 1 / span 2; }
  .item-4 { grid-column: 3 / span 2; }
  .item-5 { grid-column: 1 / span 4; }
  .item-6 { grid-column: 5 / span 2; }
}
@media (max-width: 640px) {
  .collection-rail, .material-mosaic, .atelier-gallery { grid-template-columns: 1fr; }
  .collection-tile, .material-feature, .material-mosaic > a:nth-child(2), .material-mosaic > a:nth-child(3),
  .gallery-item { grid-column: auto !important; transform: none !important; }
  .collection-tile { aspect-ratio: 4 / 3; }
  .material-copy { position: static; background: var(--aegean-deep); }
  .material-copy h3 { font-size: 1.5rem; }
  .voice-side { border-left: 0; padding-left: 0; border-top: 1px solid rgba(247,241,230,.18); padding-top: 2rem; }
  .hero { min-height: auto; }
  .hero-ticket { right: 1rem; bottom: 1rem; }
  .cart-btn { font-size: 0; gap: 0; padding: .65rem; }
  .cart-btn svg { width: 18px; height: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  .collection-tile canvas, .material-feature canvas, .material-side canvas,
  .link-underline::after, .link-arrow::after { transition: none; }
}

/* ============================================================
   V3 — interactive magnetic wall / memory studio
   ============================================================ */
.hero-v3 {
  position: relative;
  min-height: min(100vh, 900px);
  padding: clamp(4.5rem, 8vw, 7rem) 0 clamp(3rem, 6vw, 5rem);
  background:
    linear-gradient(115deg, rgba(119,183,214,.16) 0 28%, transparent 42%),
    var(--shell);
  overflow: hidden;
}
.hero-v3__noise {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(34,28,23,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34,28,23,.025) 1px, transparent 1px);
  background-size: 24px 24px, 78px 78px;
  mask-image: radial-gradient(circle at 65% 25%, #000, transparent 72%);
}
.hero-v3__shell {
  position: relative;
  width: min(1320px, 100% - clamp(2rem, 7vw, 6rem));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0,.94fr) minmax(0,1.06fr);
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}
.v3-label {
  color: var(--clay);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .34em;
  text-transform: uppercase;
  margin: 0 0 1.5rem;
}
.v3-label--light { color: var(--clay-soft); }
.hero-v3__copy { position: relative; z-index: 2; }
.hero-v3__copy h1 {
  font-size: clamp(3rem, 6.3vw, 6.2rem);
  line-height: .92;
  margin-bottom: 1.7rem;
}
.hero-v3__copy h1 em { color: var(--aegean); }
.hero-v3__lede {
  max-width: 26rem;
  color: rgba(34,28,23,.66);
  font-size: 1.06rem;
  line-height: 1.75;
}
.hero-v3__actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.wall-action {
  color: var(--ink);
  font-size: .87rem;
  font-weight: 600;
  padding-bottom: .3rem;
  border-bottom: 1px solid rgba(34,28,23,.3);
  cursor: pointer;
}
.wall-action:hover { border-color: var(--clay); color: var(--clay); }
#wall-photo { display: none; }
.hero-v3__facts {
  display: flex;
  gap: 1.8rem;
  margin: 2.4rem 0 0;
  padding: 1.2rem 0 0;
  border-top: 1px solid rgba(34,28,23,.12);
  list-style: none;
  color: rgba(34,28,23,.58);
  font-size: .82rem;
}
.hero-v3__facts li { position: relative; padding-left: 1rem; }
.hero-v3__facts li::before {
  content: "";
  position: absolute;
  left: 0; top: .55em;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--clay);
}

.magnet-wall {
  position: relative;
  width: min(620px,100%);
  aspect-ratio: 10/10.6;
  background:
    linear-gradient(120deg, rgba(255,255,255,.5), transparent 45%),
    linear-gradient(145deg, #FBF5EA 0%, #F3EADA 56%, #E4D9C8 100%);
  border-radius: 5px;
  box-shadow: 0 38px 90px -45px rgba(34,28,23,.65);
  overflow: hidden;
  touch-action: none;
}
.magnet-wall::before {
  content: "";
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 36%;
  background: linear-gradient(165deg, #194F8C, #0C3160);
}
.wall-grain {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(34,28,23,.09) 1px, transparent 1px);
  background-size: 14px 14px;
  opacity: .22;
}
.wall-shadow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 8%, rgba(255,250,226,.8), transparent 38%),
    linear-gradient(to bottom, transparent 65%, rgba(34,28,23,.16));
}
.magnet {
  position: absolute;
  left: var(--x, 10%);
  top: var(--y, 10%);
  width: 27%;
  transform: rotate(var(--r, 0deg));
  cursor: grab;
  filter: drop-shadow(0 16px 22px rgba(34,28,23,.28));
  transition: filter .2s ease;
  z-index: 2;
}
.magnet:active { cursor: grabbing; filter: drop-shadow(0 25px 32px rgba(34,28,23,.38)); }
.magnet canvas { width: 100%; aspect-ratio: 1; display: block; }
.magnet--circle { width: 23%; }
.magnet--heart { width: 20%; }
.drop-zone {
  border: 2px dashed rgba(11,44,81,.38);
  background: rgba(247,241,230,.76);
  border-radius: 4px;
  backdrop-filter: blur(6px);
  display: grid;
  place-items: center;
  min-height: 125px;
}
.drop-zone.is-drag { border-color: var(--clay); background: rgba(214,122,91,.14); }
.drop-zone canvas { display: none; }
.drop-zone.is-filled { border: 0; background: transparent; backdrop-filter: none; cursor: grab; }
.drop-zone.is-filled canvas { display: block; }
.drop-state {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: .25rem;
  color: var(--aegean);
  pointer-events: none;
}
.drop-state strong { font-family: var(--serif); font-size: 2rem; font-weight: 400; }
.drop-state small { font-size: .68rem; text-transform: uppercase; letter-spacing: .16em; }
.drop-zone.is-filled .drop-state { display: none; }
.wall-caption {
  grid-column: 2;
  margin: .9rem 0 0;
  color: rgba(34,28,23,.5);
  font-size: .78rem;
  font-style: italic;
}

.moments {
  background: linear-gradient(135deg,var(--aegean) 0%,var(--aegean-deep) 72%);
  color: var(--shell);
  padding: clamp(5rem,10vw,9rem) 0;
}
.moments__shell {
  width: min(1260px, 100% - clamp(2rem,7vw,6rem));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0,.72fr) minmax(0,1.28fr);
  gap: clamp(2.5rem,7vw,6rem);
}
.moments__aside { align-self: start; position: sticky; top: 118px; }
.moment-list { display: grid; margin-top: .5rem; }
.moment {
  appearance: none;
  border: 0;
  border-top: 1px solid rgba(247,241,230,.16);
  background: transparent;
  color: rgba(247,241,230,.52);
  cursor: pointer;
  padding: 1.8rem 0;
  display: grid;
  gap: .4rem;
  text-align: left;
  transition: color .25s ease,padding-left .25s ease,border-color .25s ease;
}
.moment:last-child { border-bottom: 1px solid rgba(247,241,230,.16); }
.moment span { font-family: var(--serif); font-size: clamp(1.55rem,2.5vw,2.3rem); line-height: 1.1; }
.moment small { font-size: .84rem; opacity: .68; }
.moment:hover { color: rgba(247,241,230,.82); padding-left: .8rem; }
.moment.is-active { color: var(--shell); border-color: var(--clay-soft); padding-left: 1.1rem; }
.moments__cta { margin-top: 2.5rem; }
.story-stage { position: relative; }
.story-stage canvas {
  width: 100%;
  aspect-ratio: 13/9;
  border-radius: 4px;
  box-shadow: 0 48px 110px -60px rgba(0,0,0,.75);
}
.story-note {
  position: absolute;
  left: clamp(1rem,4vw,2.5rem);
  bottom: clamp(1rem,4vw,2rem);
  background: rgba(247,241,230,.92);
  color: var(--ink);
  padding: 1rem 1.2rem;
  border-left: 4px solid var(--clay);
  transform: rotate(-2deg);
  min-width: 180px;
}
.story-note strong { display: block; font-family: var(--serif); font-size: 1.3rem; }
.story-note span { font-size: .74rem; text-transform: uppercase; letter-spacing: .16em; color: rgba(34,28,23,.58); }

.materials-v3 {
  width: min(1280px, 100% - clamp(2rem,7vw,6rem));
  margin-inline: auto;
  padding: clamp(5rem,11vw,10rem) 0;
}
.materials-v3__header {
  display: grid;
  grid-template-columns: minmax(0,.9fr) minmax(0,1fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: clamp(3rem,7vw,5rem);
}
.materials-v3__header h2 { font-size: clamp(2.8rem,5.7vw,5rem); line-height: .94; margin: 0; }
.material-row {
  display: grid;
  grid-template-columns: minmax(0,.24fr) minmax(0,.58fr) minmax(0,.38fr);
  gap: clamp(1.5rem,4vw,4rem);
  align-items: center;
  padding: clamp(2.5rem,5vw,4rem) 0;
  border-top: 1px solid rgba(34,28,23,.14);
}
.material-row--reverse .material-visual { order: 3; }
.material-row--reverse .material-copy { order: 2; }
.materials-v3 .material-copy { position: static; }
.materials-v3 .material-copy {
  background: none;
  padding: 0;
  color: inherit;
}
.material-index span { color: var(--clay); font-family: var(--serif); font-size: 1.1rem; display: block; margin-bottom: .8rem; }
.material-index h3 { font-size: clamp(2rem,4vw,3.4rem); line-height: .95; margin: 0; }
.material-visual canvas {
  width: 100%;
  aspect-ratio: 3/2;
  display: block;
  border-radius: 3px;
  box-shadow: 0 28px 65px -42px rgba(34,28,23,.62);
}
.material-copy p { color: rgba(34,28,23,.66); line-height: 1.75; margin: 0 0 1.7rem; }
.material-copy dl {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 1.5rem;
  margin: 0 0 1.7rem;
  padding-top: 1.3rem;
  border-top: 1px solid rgba(34,28,23,.1);
}
.material-copy dt { font-size: .68rem; text-transform: uppercase; letter-spacing: .18em; color: rgba(34,28,23,.48); }
.material-copy dd { margin: .2rem 0 0; font-family: var(--serif); font-size: 1.15rem; }
.v3-link { color: var(--ink); font-weight: 600; font-size: .86rem; text-decoration: none; border-bottom: 1px solid var(--clay); padding-bottom: .3rem; }
.v3-link:hover { color: var(--clay); }

.fridge-door {
  background: #0C2E55;
  color: var(--shell);
  padding: clamp(5rem,10vw,8rem) 0 0;
}
.fridge-door__head {
  width: min(1260px,100% - clamp(2rem,7vw,6rem));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0,.6fr) minmax(0,1fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 3.5rem;
}
.fridge-door__head h2 { font-size: clamp(2.6rem,5.3vw,4.7rem); line-height: .95; margin: 0; color: var(--shell); }
.fridge-door__stage { position: relative; max-height: 76vh; overflow: hidden; }
.fridge-door__stage canvas { width: 100%; display: block; }
.fridge-note {
  position: absolute;
  top: var(--top);
  left: var(--left);
  width: min(310px,33vw);
  padding: 1.3rem;
  background: rgba(247,241,230,.92);
  color: var(--ink);
  transform: rotate(var(--r));
  box-shadow: 0 25px 55px -32px rgba(0,0,0,.65);
}
.fridge-note p { font-family: var(--serif); font-size: 1.12rem; line-height: 1.4; margin: 0 0 .8rem; }
.fridge-note footer { font-size: .68rem; text-transform: uppercase; letter-spacing: .18em; color: rgba(34,28,23,.55); }
.door-add {
  position: absolute;
  right: clamp(1rem,4vw,3rem);
  bottom: clamp(1rem,4vw,2.5rem);
  background: var(--shell);
  color: var(--ink);
  font-weight: 600;
  padding: 1rem 1.5rem;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 18px 45px -22px rgba(0,0,0,.65);
}
.door-add:hover { background: var(--clay); color: var(--shell); }

.ending-v3 {
  background: var(--aegean-deep);
  color: var(--shell);
  padding: clamp(6rem,13vw,12rem) 0;
  text-align: center;
}
.ending-v3__shell { width: min(900px,100% - 3rem); margin-inline: auto; }
.ending-v3__word {
  font-family: var(--serif);
  font-size: clamp(4rem,13vw,10rem);
  line-height: .8;
  margin: 0 0 2rem;
}
.ending-v3__copy { color: rgba(247,241,230,.66); font-size: 1.1rem; margin: 0 auto 2.5rem; max-width: 32rem; }

@media (max-width:1080px) {
  .hero-v3__shell { grid-template-columns: 1fr; }
  .magnet-wall { margin-inline:auto; }
  .wall-caption { grid-column:auto; text-align:center; }
  .moments__shell { grid-template-columns:1fr; }
  .moments__aside { position:static; }
  .material-row { grid-template-columns:1fr; }
  .material-row--reverse .material-visual { order:0; }
  .material-row--reverse .material-copy { order:0; }
  .materials-v3__header, .fridge-door__head { grid-template-columns:1fr; align-items:start; }
}
@media (max-width:640px) {
  .hero-v3 { min-height:auto; }
  .hero-v3__copy h1 { font-size:clamp(2.6rem,12vw,4rem); }
  .hero-v3__actions { align-items:stretch; flex-direction:column; }
  .hero-v3__actions .btn { width:100%; }
  .wall-action { text-align:center; }
  .magnet-wall { aspect-ratio:10/11; }
  .magnet { width:31%; }
  .magnet--circle { width:28%; }
  .magnet--heart { width:24%; }
  .fridge-door__stage { max-height:none; }
  .fridge-note { position:static; width:auto; transform:none; margin:1rem; }
  .fridge-door__stage { display:grid; }
  #fridge-door-canvas { display:none; }
  .door-add { position:static; display:block; text-align:center; margin:0 1rem 2rem; }
}

/* ============================================================
   V3 magnet bench
   ============================================================ */
.studio-v3 {
  min-height: calc(100vh - 114px);
  padding: clamp(2rem,4vw,3.5rem) 0 clamp(4rem,8vw,6rem);
  background:
    radial-gradient(circle at 85% 0, rgba(119,183,214,.16), transparent 38%),
    var(--shell);
}
.studio-v3__shell {
  width: min(1380px,100% - clamp(2rem,7vw,6rem));
  margin-inline:auto;
  display:grid;
  grid-template-columns:minmax(0,1.1fr) minmax(0,.9fr);
  gap:clamp(1.5rem,3vw,3rem);
  align-items:start;
}
.studio-v3__stage {
  position:sticky;
  top:96px;
  padding:clamp(1.8rem,4vw,3rem);
  border-radius:5px;
  color:var(--shell);
  background:
    linear-gradient(150deg, rgba(255,255,255,.09), transparent 48%),
    linear-gradient(145deg,var(--aegean),var(--aegean-deep));
  box-shadow:0 42px 90px -55px rgba(11,44,81,.8);
}
.stage-head h1 {
  font-size:clamp(2rem,3.6vw,3.2rem);
  line-height:1;
  color:var(--shell);
  margin-bottom:2rem;
}
.stage-frame {
  position:relative;
  overflow:hidden;
  border-radius:4px;
  box-shadow:0 32px 70px -45px rgba(0,0,0,.75);
}
.stage-frame canvas { width:100%; aspect-ratio:1; display:block; touch-action:none; cursor:grab; }
.stage-frame canvas:active { cursor:grabbing; }
.stage-hint {
  position:absolute;left:50%;bottom:.9rem;transform:translateX(-50%);
  background:rgba(11,44,81,.76);color:var(--shell);font-size:.74rem;
  padding:.4rem 1rem;border-radius:999px;white-space:nowrap;pointer-events:none;
}
.studio-v3 .stage-tools {
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:.7rem;
  margin-top:1rem;
}
.studio-v3 .chip-btn {
  border-color:rgba(247,241,230,.25);
  background:rgba(247,241,230,.08);
  color:rgba(247,241,230,.82);
}
.studio-v3 .chip-btn:hover { border-color:var(--clay-soft); color:var(--shell); }
.studio-v3 .stage-slider { grid-column:1/-1; grid-template-columns:72px minmax(0,1fr) 44px; margin:0; }
.studio-v3 .stage-slider label,
.studio-v3 .stage-slider output { color:rgba(247,241,230,.64); }
.studio-v3 input[type="range"] { background:rgba(247,241,230,.22); }
.studio-v3 input[type="range"]::-webkit-slider-thumb { border-color:var(--aegean-deep); }

.studio-v3__panel {
  padding:clamp(1.7rem,3vw,2.6rem);
  border:1px solid rgba(34,28,23,.1);
  border-radius:5px;
  background:rgba(255,252,246,.72);
  box-shadow:0 30px 70px -58px rgba(34,28,23,.65);
}
.studio-v3__panel h2 {
  font-size:clamp(2rem,3.5vw,3rem);
  line-height:.95;
  margin-bottom:2.2rem;
}
.control-block { padding:1.4rem 0; border-top:1px solid rgba(34,28,23,.12); }
.control-title {
  display:flex;
  justify-content:space-between;
  align-items:baseline;
  gap:1rem;
  margin-bottom:.9rem;
}
.control-title span { font-family:var(--serif); font-size:1.2rem; }
.control-title small { color:rgba(34,28,23,.45); font-size:.72rem; text-transform:uppercase; letter-spacing:.14em; }
.studio-v3 .upload-box {
  border-width:1px;
  border-color:rgba(34,28,23,.2);
  border-radius:4px;
  background:var(--paper);
  text-align:left;
  padding:1.3rem;
}
.studio-v3 .upload-box strong { font-family:var(--serif); font-size:1.25rem; font-weight:500; }
.choice-grid { display:grid; gap:.65rem; margin:0; }
.choice-grid--materials { grid-template-columns:1fr; }
.choice-grid--shapes { grid-template-columns:repeat(2,minmax(0,1fr)); }
.choice-grid--sizes { grid-template-columns:1fr; }
.studio-v3 .opt {
  position:relative;
  width:100%;
  min-width:0;
  flex-direction:row;
  justify-content:space-between;
  align-items:center;
  border-width:1px;
  border-radius:4px;
  background:var(--paper);
  padding:.9rem 1rem;
}
.studio-v3 .opt::after {
  content:"";
  width:8px;height:8px;border-radius:50%;
  border:1px solid rgba(34,28,23,.28);
  margin-left:1rem;
}
.studio-v3 .opt.is-active::after { background:var(--clay); border-color:var(--clay); }
.studio-v3 .opt strong { font-size:.95rem; }
.studio-v3 .opt small { font-size:.78rem; }
.control-pair {
  display:grid;
  grid-template-columns:1fr;
  gap:0;
}
.checkout-card {
  margin-top:1.6rem;
  padding:1.5rem;
  border-top:3px solid var(--clay);
  background:var(--paper);
  border-radius:4px;
  box-shadow:0 18px 50px -48px rgba(34,28,23,.7);
}
.quantity-row {
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:1.5rem;
}
.quantity-label { font-family:var(--serif); font-size:1.2rem; margin:0; }
.quantity-help { font-size:.76rem; color:rgba(34,28,23,.5); margin:.2rem 0 0; }
.studio-v3 .price-line { margin:1.5rem 0 .2rem; align-items:center; }
.studio-v3 .price-line .now { font-size:2.2rem; }
.studio-v3 .price-line .per { max-width:10rem; text-align:right; line-height:1.4; }
.studio-v3 .panel-actions { margin:0; }
.studio-v3 .guarantees { grid-template-columns:1fr 1fr; gap:.6rem 1rem; }
@media (max-width:1080px) {
  .studio-v3__shell { grid-template-columns:1fr; }
  .studio-v3__stage { position:static; }
  .control-pair { gap:0; }
  .choice-grid--shapes { grid-template-columns:repeat(4,minmax(0,1fr)); }
}
@media (max-width:640px) {
  .studio-v3__stage { padding:1.4rem; }
  .stage-head h1 { font-size:2rem; margin-bottom:1.2rem; }
  .studio-v3__panel { padding:1.2rem; }
  .choice-grid--shapes { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .quantity-row { align-items:flex-start; }
  .studio-v3 .guarantees { grid-template-columns:1fr; }
}
