:root {
  --ink: #171512;
  --muted: #6d675e;
  --cream: #f6f0e6;
  --paper: #fffdf9;
  --gold: #b9853d;
  --gold-soft: #e9d2ac;
  --line: #ded5c7;
  --rust: #9f432d;
  --shadow: 0 18px 55px rgba(40, 31, 18, .12);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}
button, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }

.preview-bar {
  height: 34px;
  padding: 0 5vw;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  background: var(--ink);
  color: #fff;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.preview-bar span:first-child { color: #f1c783; font-weight: 700; }
.preview-bar span + span::before { content: "•"; margin-right: 18px; color: #777; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  min-height: 78px;
  padding: 0 max(5vw, 24px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 253, 249, .92);
  border-bottom: 1px solid rgba(222, 213, 199, .75);
  backdrop-filter: blur(14px);
}
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  font-family: "Fraunces", serif;
  font-weight: 700;
  color: var(--gold);
}
.brand-copy { display: grid; line-height: 1; }
.brand-copy strong { font-family: "Fraunces", serif; font-size: 18px; }
.brand-copy small { margin-top: 5px; color: var(--muted); font-size: 9px; letter-spacing: .26em; text-transform: uppercase; }
.site-header nav { display: flex; align-items: center; gap: 32px; font-size: 14px; font-weight: 600; }
.site-header nav a { transition: color .2s; }
.site-header nav a:hover { color: var(--gold); }
.cart-trigger {
  min-height: 43px;
  padding: 0 8px 0 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  border: 0;
  border-radius: 24px;
  background: var(--ink);
  cursor: pointer;
}
.cart-trigger span {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  background: var(--gold);
  border-radius: 50%;
  font-size: 12px;
}

main { overflow: hidden; }
.hero {
  padding: 0 0 46px;
  background: linear-gradient(180deg, #f7f1e8 0%, #fffdf9 100%);
}
.hero-copy { max-width: 980px; margin: 0 auto; padding: 36px max(5vw, 24px) 0; text-align: center; }
.eyebrow { margin: 0 0 15px; color: var(--gold); font-size: 11px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; }
h1, h2 { margin: 0; font-family: "Fraunces", serif; line-height: .98; letter-spacing: -.03em; }
h1 { max-width: 800px; margin-inline: auto; font-size: clamp(40px, 5vw, 64px); }
h2 { font-size: clamp(36px, 4vw, 56px); }
.hero-text { max-width: 760px; margin: 16px auto 22px; color: var(--muted); font-size: 17px; line-height: 1.5; }
.hero-actions { display: flex; align-items: center; justify-content: center; gap: 24px; }
.button {
  min-height: 48px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 3px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s, background .2s, color .2s;
}
.button:hover { transform: translateY(-2px); }
.button.primary { background: var(--ink); color: #fff; }
.button.primary:hover { background: var(--gold); }
.text-button { padding-inline: 0; }
.text-button span { margin-left: 16px; font-size: 20px; }

.hero-showcase { position: relative; min-height: clamp(480px, 40vw, 600px); overflow: hidden; background: #d8c7af; }
.hero-showcase::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(to bottom, transparent 78%, rgba(23, 21, 18, .18)); }
.hero-products-image { position: absolute; inset: 0; width: 100%; height: 100%; display: block; object-fit: cover; object-position: center; }
.hero-video-card {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  width: min(270px, 21vw);
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border: 8px solid rgba(255, 253, 249, .94);
  border-radius: 150px 150px 26px 26px;
  background: #191714;
  box-shadow: 0 28px 65px rgba(43, 29, 13, .3);
  transform: translate(-50%, -50%);
}
.hero-video-card video { width: 100%; height: 100%; display: block; object-fit: cover; }
.hero-video-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to bottom, transparent 64%, rgba(13, 11, 9, .62));
}
.video-kicker {
  position: absolute;
  z-index: 3;
  left: 18px;
  right: 18px;
  bottom: 65px;
  color: #fff;
  font: 600 18px/1.2 "Fraunces", serif;
  text-align: center;
  text-shadow: 0 2px 8px rgba(0,0,0,.45);
}
.sound-toggle {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 17px;
  min-height: 36px;
  padding: 0 14px;
  color: #fff;
  border: 1px solid rgba(255,255,255,.48);
  border-radius: 20px;
  background: rgba(19, 17, 14, .72);
  backdrop-filter: blur(8px);
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
}
.sound-toggle:hover { background: var(--gold); }
.mockup { position: absolute; filter: drop-shadow(0 22px 28px rgba(43, 31, 15, .24)); }
.mockup-shirt { left: 4%; top: 5%; transform: rotate(-7deg); }
.mockup-tag { position: absolute; z-index: 2; left: -15px; top: 40px; padding: 8px 12px; color: #fff; background: var(--rust); border-radius: 20px; font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.shirt-shape {
  width: 280px;
  height: 340px;
  padding-top: 108px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #d5aa61;
  background: #181716;
  clip-path: polygon(22% 0, 38% 0, 42% 9%, 58% 9%, 62% 0, 78% 0, 100% 15%, 88% 36%, 78% 29%, 78% 100%, 22% 100%, 22% 29%, 12% 36%, 0 15%);
}
.shirt-shape b { font: 700 64px/1 "Fraunces", serif; }
.shirt-shape em { margin-top: 8px; font-size: 10px; letter-spacing: .35em; font-style: normal; }
.mockup-cap { right: 0; bottom: 7%; transform: rotate(8deg); }
.cap-shape {
  width: 250px;
  height: 150px;
  display: grid;
  place-items: center;
  color: #c89852;
  background: #f5f1eb;
  border-radius: 110px 110px 28px 28px;
  box-shadow: inset 0 -8px 15px rgba(70,50,30,.08);
}
.cap-shape::after { content: ""; position: absolute; width: 165px; height: 45px; right: -70px; bottom: -16px; background: #ece6dc; border-radius: 0 100% 50% 100%; }
.cap-shape b { position: relative; z-index: 2; font: 700 40px/1 "Fraunces", serif; }
.shop { padding: 105px max(5vw, 24px) 120px; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; }
.section-heading > p { color: var(--muted); font-size: 13px; }
.collection-mosaic { margin: 42px 0 34px; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); grid-auto-rows: 250px; gap: 10px; }
.collection-tile { position: relative; min-width: 0; overflow: hidden; padding: 0; color: var(--ink); border: 0; border-radius: 3px; background: #e9e1d5; cursor: pointer; isolation: isolate; }
.collection-tile::after { content: ""; position: absolute; z-index: 1; inset: 0; background: linear-gradient(to top, rgba(15,13,10,.28), transparent 55%); opacity: .45; transition: opacity .25s; pointer-events: none; }
.collection-tile:hover::after { opacity: .75; }
.collection-tile.active { outline: 3px solid var(--gold); outline-offset: -3px; }
.collection-tile:hover .collection-photo { transform: scale(1.035); }
.collection-photo { position: absolute; z-index: 0; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.collection-custom .collection-photo, .collection-mousepads .collection-photo { object-position: center; }
.collection-woman .collection-photo, .collection-kids .collection-photo, .collection-humour .collection-photo { object-position: center 28%; }
.collection-man .collection-photo { object-position: center 40%; }
.collection-custom { grid-column: span 2; background: linear-gradient(135deg, #efe7da, #cbb491); }
.collection-woman { background: radial-gradient(circle at 70% 25%, #f7d9d1, #b87e74 78%); }
.collection-man { background: radial-gradient(circle at 68% 25%, #e6d4b3, #7d5839 78%); }
.collection-kids { grid-column: span 2; background: linear-gradient(145deg, #fff6d7, #dceaf1); }
.collection-humour { color: #fff; background: radial-gradient(circle at 60% 25%, #45413b, #171512 75%); }
.collection-caps { background: radial-gradient(circle at 50% 28%, #f4f1eb, #b8aa98 82%); }
.collection-mugs { color: #fff; background: linear-gradient(135deg, #5d3527, #c48a5a); }
.collection-mousepads { grid-column: span 2; background: linear-gradient(135deg, #ece6dc, #b4a898); }
.collection-sweats { grid-column: span 2; background: linear-gradient(135deg, #dce4e7, #91a3ab); }
.collection-label { position: absolute; z-index: 2; top: 15px; left: 15px; padding: 8px 11px; color: var(--ink); background: rgba(255,255,255,.92); box-shadow: 0 4px 14px rgba(25,20,13,.12); font-size: 12px; font-weight: 700; }
.collection-scene { position: absolute; top: 55%; left: 53%; width: 92%; height: 80%; transform: translate(-50%, -50%); transition: transform .3s; }
.scene-shirt { position: absolute; left: 3%; bottom: 0; width: 145px; height: 175px; padding-top: 55px; display: grid; justify-items: center; align-content: start; text-align: center; clip-path: polygon(21% 0,38% 0,43% 9%,57% 9%,62% 0,79% 0,100% 15%,88% 35%,79% 29%,79% 100%,21% 100%,21% 29%,12% 35%,0 15%); filter: drop-shadow(0 13px 10px rgba(47,33,17,.18)); }
.scene-shirt-light { color: #8d512e; background: #fffdf7; }
.scene-shirt b { font: 700 22px/1 "Fraunces", serif; text-transform: uppercase; }
.scene-shirt small { margin-top: 22px; color: var(--gold); font: 700 12px "Fraunces", serif; }
.scene-card { position: absolute; left: 43%; top: 18%; width: 180px; height: 112px; padding: 25px 10px; display: grid; align-content: center; color: #f0c276; background: #1b1916; border: 4px solid #e7d2aa; box-shadow: var(--shadow); transform: rotate(-2deg); }
.scene-card b { font: 700 18px "Fraunces", serif; }
.scene-card em { color: #fff; font: 600 11px "DM Sans", sans-serif; font-style: normal; }
.scene-card small { margin-top: 6px; color: #ddd; font-size: 9px; letter-spacing: .15em; }
.scene-cap { position: absolute; right: 3%; bottom: 9%; width: 120px; height: 72px; display: grid; place-items: center; color: var(--gold); background: #f8f4eb; border-radius: 65px 65px 15px 15px; filter: drop-shadow(0 12px 10px rgba(47,33,17,.18)); font: 700 24px "Fraunces", serif; }
.scene-cap::after { content: ""; position: absolute; right: -42px; bottom: -9px; width: 80px; height: 22px; background: #f8f4eb; border-radius: 0 100% 60% 100%; }
.tile-shirt { position: absolute; top: 58%; left: 53%; width: 155px; height: 190px; padding-top: 62px; display: flex; flex-direction: column; align-items: center; color: var(--gold); clip-path: polygon(21% 0,38% 0,43% 9%,57% 9%,62% 0,79% 0,100% 15%,88% 35%,79% 29%,79% 100%,21% 100%,21% 29%,12% 35%,0 15%); filter: drop-shadow(0 15px 13px rgba(35,23,12,.23)); transform: translate(-50%, -50%); transition: transform .3s; }
.tile-shirt b { font: 700 31px/1 "Fraunces", serif; }
.tile-shirt small { margin-top: 8px; font-size: 8px; letter-spacing: .18em; }
.tile-shirt-cream { color: #a55d55; background: #fffaf2; }
.tile-shirt-dark { background: #1c1b1a; }
.tile-shirt-kids { z-index: 2; color: #5d7fa0; background: #fffdf7; }
.kids-flags { position: absolute; z-index: 1; top: 28%; left: 50%; width: 78%; height: 2px; background: #9d927f; transform: translateX(-50%) rotate(-3deg); }
.kids-flags i { position: absolute; top: 0; width: 22px; height: 28px; clip-path: polygon(0 0,100% 0,50% 100%); }
.kids-flags i:nth-child(1) { left: 4%; background: #e9a33b; }
.kids-flags i:nth-child(2) { left: 25%; background: #6ca0b5; }
.kids-flags i:nth-child(3) { left: 46%; background: #d95d54; }
.kids-flags i:nth-child(4) { left: 67%; background: #7ca568; }
.kids-flags i:nth-child(5) { left: 88%; background: #d28bb0; }
.humour-quote { position: absolute; top: 56%; left: 50%; width: 85%; display: flex; flex-direction: column; align-items: center; transform: translate(-50%, -50%); transition: transform .3s; }
.humour-quote b { color: #eee; font-size: 16px; letter-spacing: .12em; }
.humour-quote strong { color: #dbab61; font: 700 30px "Fraunces", serif; }
.humour-quote small { margin-top: 8px; color: #aaa; font-size: 8px; letter-spacing: .22em; }
.tile-cap { position: absolute; top: 56%; left: 45%; width: 165px; height: 100px; display: grid; place-items: center; color: var(--gold); background: #191817; border-radius: 85px 85px 20px 20px; filter: drop-shadow(0 16px 13px rgba(35,23,12,.25)); transform: translate(-50%, -50%); transition: transform .3s; font: 700 30px "Fraunces", serif; }
.tile-cap::after { content: ""; position: absolute; right: -64px; bottom: -12px; width: 112px; height: 30px; background: #191817; border-radius: 0 100% 60% 100%; }
.collection-monogram { position: absolute; top: 56%; left: 50%; width: 78%; display: flex; flex-direction: column; align-items: center; transform: translate(-50%, -50%); transition: transform .3s; }
.collection-monogram b { font: 700 72px/1 "Fraunces", serif; }
.collection-monogram small { margin-top: 10px; font-size: 10px; font-weight: 700; letter-spacing: .2em; }
.collection-mugs .collection-monogram b { color: #f6d39a; }
.collection-mousepads .collection-monogram b { color: #6b5140; }
.collection-mousepads .collection-monogram small { color: #695a4f; }
.collection-sweats .collection-monogram b { color: #33454d; }
.collection-sweats .collection-monogram small { color: #53666e; }
.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 30px 20px; }
.product-grid.is-empty { grid-template-columns: 1fr; }
.empty-collection { min-height: 190px; padding: 35px; display: grid; place-content: center; gap: 7px; color: var(--muted); background: var(--cream); text-align: center; }
.empty-collection strong { color: var(--ink); font: 600 28px "Fraunces", serif; }
.product-card { min-width: 0; animation: reveal .35s ease both; }
@keyframes reveal { from { opacity: 0; transform: translateY(12px); } }
.product-image {
  position: relative;
  aspect-ratio: 4 / 4.7;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: var(--card-bg, #eee7dc);
  border-radius: 5px;
  cursor: pointer;
}
.product-image::before { content: ""; position: absolute; width: 240px; height: 240px; border: 1px solid rgba(255,255,255,.55); border-radius: 50%; }
.product-photo { position: absolute; z-index: 2; inset: 0; width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .3s; }
.product-image:hover .product-photo { transform: scale(1.025); }
.product-badge { position: absolute; z-index: 4; top: 15px; left: 15px; padding: 6px 9px; color: var(--ink); background: rgba(255,255,255,.85); border-radius: 2px; font-size: 9px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.quick-view { position: absolute; z-index: 5; left: 15px; right: 15px; bottom: 15px; height: 44px; color: #fff; border: 0; background: rgba(23,21,18,.92); font-weight: 700; opacity: 0; transform: translateY(8px); transition: .2s; cursor: pointer; }
.product-image:hover .quick-view, .quick-view:focus-visible { opacity: 1; transform: translateY(0); }
.product-art { position: relative; z-index: 2; transform: scale(.86); transition: transform .3s; }
.product-image:hover .product-art { transform: scale(.91); }
.mini-shirt {
  width: 190px;
  height: 225px;
  padding-top: 73px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: var(--motif, #c49247);
  background: var(--garment, #1e1d1c);
  clip-path: polygon(21% 0, 38% 0, 43% 9%, 57% 9%, 62% 0, 79% 0, 100% 15%, 88% 35%, 79% 29%, 79% 100%, 21% 100%, 21% 29%, 12% 35%, 0 15%);
  filter: drop-shadow(0 16px 12px rgba(32, 23, 12, .18));
}
.mini-shirt b { max-width: 112px; font: 700 25px/1.05 "Fraunces", serif; }
.mini-shirt em { margin-top: 9px; font-size: 8px; letter-spacing: .18em; font-style: normal; text-transform: uppercase; }
.mini-cap { position: relative; width: 185px; height: 112px; display: grid; place-items: center; color: var(--motif, #bf8d49); background: var(--garment, #161514); border-radius: 95px 95px 24px 24px; filter: drop-shadow(0 16px 12px rgba(32, 23, 12, .2)); }
.mini-cap::after { content: ""; position: absolute; width: 120px; height: 34px; right: -54px; bottom: -13px; background: var(--garment, #161514); border-radius: 0 100% 60% 100%; }
.mini-cap b { position: relative; z-index: 2; font: 700 31px/1 "Fraunces", serif; }
.mini-mat { width: 235px; height: 108px; padding: 0 22px; display: grid; place-items: center; color: var(--motif, #d1a15d); background: var(--garment, #161514); border: 3px solid #272522; border-radius: 10px; box-shadow: 0 20px 25px rgba(32, 23, 12, .25); transform: perspective(450px) rotateX(57deg) rotateZ(-5deg); }
.mini-mat b { font: 700 26px/1 "Fraunces", serif; letter-spacing: .08em; }
.product-info { padding: 16px 2px 0; }
.product-meta { display: flex; align-items: start; justify-content: space-between; gap: 10px; }
.product-info h3 { margin: 0; font: 600 20px/1.2 "Fraunces", serif; }
.price { white-space: nowrap; font-size: 14px; font-weight: 700; }
.product-info > p { margin: 8px 0 0; color: var(--muted); font-size: 12px; }

.custom {
  margin: 0 max(5vw, 24px) 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--cream);
}
.custom-visual { position: relative; min-height: 620px; display: grid; place-items: center; overflow: hidden; background: linear-gradient(145deg, #b77d4a, #6f3a29); }
.custom-visual::before { content: ""; position: absolute; width: 460px; height: 460px; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; }
.custom-shirt { position: relative; z-index: 2; width: 310px; height: 380px; padding-top: 110px; display: flex; flex-direction: column; align-items: center; color: #8e3e2e; background: #fffdf7; clip-path: polygon(21% 0, 38% 0, 43% 9%, 57% 9%, 62% 0, 79% 0, 100% 15%, 88% 35%, 79% 29%, 79% 100%, 21% 100%, 21% 29%, 12% 35%, 0 15%); filter: drop-shadow(0 25px 24px rgba(43,20,10,.25)); }
.custom-shirt span { font: 700 43px/.95 "Fraunces", serif; text-align: center; }
.custom-shirt b { position: absolute; bottom: 25px; right: 70px; color: var(--gold); font: 700 13px "Fraunces", serif; }
.design-chip { position: absolute; z-index: 3; padding: 10px 15px; background: #fff; border-radius: 24px; box-shadow: var(--shadow); font-size: 12px; font-weight: 700; }
.chip-one { left: 10%; top: 24%; transform: rotate(-7deg); }
.chip-two { right: 9%; bottom: 20%; transform: rotate(6deg); }
.custom-copy { padding: 70px clamp(35px, 6vw, 95px); display: flex; flex-direction: column; justify-content: center; align-items: flex-start; }
.custom-copy > p:not(.eyebrow) { margin: 26px 0 25px; color: var(--muted); line-height: 1.7; }
.custom-copy ol { width: 100%; margin: 0 0 30px; padding: 0; list-style: none; }
.custom-copy li { padding: 14px 0; display: flex; align-items: center; gap: 15px; border-bottom: 1px solid var(--line); }
.custom-copy li > span { width: 31px; height: 31px; display: grid; place-items: center; flex: 0 0 auto; color: var(--gold); border: 1px solid var(--gold); border-radius: 50%; font-size: 11px; font-weight: 700; }
.custom-copy li div { display: grid; gap: 3px; }
.custom-copy li small { color: var(--muted); }

footer { padding: 55px max(5vw, 24px); display: flex; align-items: center; justify-content: space-between; gap: 30px; color: #ddd; background: var(--ink); font-size: 12px; }
.footer-brand .brand-mark { width: 38px; height: 38px; }
.footer-brand .brand-copy small { color: #999; }
.footer-note { color: #8e8a84; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 18px; }
.footer-links a { color: #ddd; text-decoration: underline; text-decoration-color: #6f6b65; text-underline-offset: 4px; }
.footer-links a:hover { color: #f1c783; }

.legal-body { min-height: 100vh; background: var(--cream); }
.legal-header { position: sticky; top: 0; z-index: 5; padding: 16px max(5vw, 22px); display: flex; align-items: center; justify-content: space-between; gap: 20px; background: rgba(255,253,249,.96); border-bottom: 1px solid var(--line); backdrop-filter: blur(12px); }
.legal-header .brand-copy { display: grid; }
.legal-back { min-height: 42px; padding: 0 17px; display: inline-flex; align-items: center; color: #fff; background: var(--ink); border-radius: 3px; font-size: 14px; font-weight: 700; }
.legal-main { width: min(860px, calc(100% - 34px)); margin: 36px auto 70px; padding: clamp(28px, 5vw, 62px); background: var(--paper); box-shadow: var(--shadow); }
.legal-main h1 { margin: 0 0 30px; font-size: clamp(38px, 7vw, 58px); text-align: left; }
.legal-main h2 { margin: 34px 0 12px; font-size: 28px; line-height: 1.15; letter-spacing: -.015em; }
.legal-main h3 { margin: 22px 0 8px; font: 600 20px/1.25 "Fraunces", serif; }
.legal-main p, .legal-main li { color: #4f4a43; font-size: 16px; line-height: 1.7; }
.legal-main ul { padding-left: 22px; }
.legal-main a { color: #80521f; font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.legal-card { margin: 22px 0; padding: 20px; background: var(--cream); border-left: 4px solid var(--gold); }
.legal-actions { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 10px; }
.legal-actions .button { width: auto; }

dialog { border: 0; padding: 0; color: var(--ink); background: var(--paper); box-shadow: 0 30px 90px rgba(0,0,0,.32); }
dialog::backdrop { background: rgba(21,19,16,.62); backdrop-filter: blur(4px); }
.product-dialog { width: min(920px, calc(100vw - 32px)); max-height: calc(100vh - 32px); border-radius: 6px; overflow: auto; }
.dialog-close, .drawer-close { width: 42px; height: 42px; display: grid; place-items: center; color: var(--ink); border: 0; border-radius: 50%; background: rgba(255,255,255,.92); font-size: 27px; line-height: 1; cursor: pointer; }
.product-dialog > .dialog-close { position: absolute; z-index: 10; top: 15px; right: 15px; }
.dialog-grid { display: grid; grid-template-columns: 1fr 1fr; min-height: 620px; }
.dialog-visual { min-height: 520px; display: grid; place-items: center; background: var(--card-bg); }
.dialog-visual .product-art { transform: scale(1.4); }
.product-gallery { width: 100%; height: 100%; min-height: 520px; display: grid; grid-template-rows: minmax(0, 1fr) auto; align-items: center; overflow: hidden; }
.dialog-product-photo { width: 100%; height: 100%; max-height: 520px; padding: 18px; display: block; object-fit: contain; }
.gallery-thumbs { padding: 11px 16px 16px; display: flex; justify-content: center; gap: 9px; }
.gallery-thumb { width: 58px; height: 58px; padding: 0; overflow: hidden; border: 2px solid transparent; border-radius: 4px; background: #fff; cursor: pointer; }
.gallery-thumb.active { border-color: var(--gold); }
.gallery-thumb img { width: 100%; height: 100%; display: block; object-fit: cover; }
.dialog-copy { padding: 55px 48px; }
.dialog-copy h2 { font-size: 44px; }
.dialog-price { margin: 16px 0 26px; font-size: 18px; font-weight: 700; }
.dialog-description { color: var(--muted); line-height: 1.65; }
.option-grid { margin: 28px 0; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.option-field { display: grid; gap: 7px; }
.option-field.full-option { grid-column: 1 / -1; }
.option-field label { color: var(--muted); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.option-field select, .option-field textarea { width: 100%; min-height: 46px; padding: 10px 12px; color: var(--ink); background: #fff; border: 1px solid var(--line); border-radius: 3px; }
.option-field textarea { min-height: 80px; resize: vertical; }
.photo-upload { min-height: 74px; padding: 13px 15px; display: flex; align-items: center; gap: 13px; color: var(--ink) !important; border: 1px dashed var(--gold); border-radius: 4px; background: #fffaf2; cursor: pointer; text-transform: none !important; letter-spacing: 0 !important; transition: border-color .2s, background .2s; }
.photo-upload:hover { border-color: var(--ink); background: #fff; }
.photo-upload input { position: absolute; width: 1px; height: 1px; overflow: hidden; opacity: 0; pointer-events: none; }
.photo-upload > span:not(.upload-plus) { display: grid; gap: 3px; }
.photo-upload strong { font-size: 13px; }
.photo-upload small { color: var(--muted); font-size: 10px; font-weight: 500; }
.upload-plus { width: 39px; height: 39px; display: grid; place-items: center; flex: 0 0 auto; color: #fff; background: var(--gold); border-radius: 50%; font-size: 23px; font-weight: 400; }
.image-previews { display: flex; flex-wrap: wrap; gap: 9px; }
.image-previews:empty { display: none; }
.image-previews figure { width: 72px; margin: 0; }
.image-previews img { width: 72px; height: 62px; display: block; object-fit: cover; border-radius: 3px; border: 1px solid var(--line); }
.image-previews figcaption { margin-top: 4px; overflow: hidden; color: var(--muted); font-size: 8px; text-overflow: ellipsis; white-space: nowrap; }
.full { width: 100%; }

.cart-drawer { position: fixed; z-index: 80; inset: 0 0 0 auto; width: min(440px, 100vw); display: flex; flex-direction: column; background: var(--paper); box-shadow: -20px 0 70px rgba(0,0,0,.2); transform: translateX(104%); transition: transform .3s ease; }
.cart-drawer.open { transform: translateX(0); }
.drawer-head { padding: 28px 28px 20px; display: flex; justify-content: space-between; border-bottom: 1px solid var(--line); }
.drawer-head h2 { font-size: 36px; }
.drawer-close { background: var(--cream); }
.cart-items { min-height: 0; flex: 1; padding: 10px 28px; overflow: auto; }
.empty-cart { height: 100%; display: grid; place-items: center; color: var(--muted); text-align: center; }
.empty-cart strong { display: block; margin-bottom: 8px; color: var(--ink); font: 600 25px "Fraunces", serif; }
.cart-item { padding: 18px 0; display: grid; grid-template-columns: 70px 1fr auto; gap: 13px; border-bottom: 1px solid var(--line); }
.cart-thumb { min-height: 78px; display: grid; place-items: center; color: var(--motif); background: var(--card-bg); border-radius: 3px; font-family: "Fraunces", serif; font-weight: 700; }
.cart-thumb img { width: 100%; height: 78px; display: block; object-fit: cover; border-radius: 3px; }
.cart-item h3 { margin: 1px 0 6px; font: 600 16px "Fraunces", serif; }
.cart-item p { margin: 3px 0; color: var(--muted); font-size: 11px; }
.cart-item strong { font-size: 12px; }
.remove-item { align-self: start; color: var(--muted); border: 0; background: transparent; font-size: 20px; cursor: pointer; }
.cart-footer { padding: 24px 28px 28px; border-top: 1px solid var(--line); background: var(--cream); }
.cart-total { margin-bottom: 8px; display: flex; justify-content: space-between; font-size: 17px; }
.cart-footer > p { margin: 0 0 17px; color: var(--muted); font-size: 11px; }
.quiet { margin-top: 8px; color: var(--muted); border-color: var(--line); background: transparent; }
.scrim { position: fixed; z-index: 70; inset: 0; background: rgba(21,19,16,.45); opacity: 0; pointer-events: none; transition: opacity .3s; }
.scrim.show { opacity: 1; pointer-events: auto; }

.order-dialog { width: min(590px, calc(100vw - 32px)); padding: 48px; border-radius: 6px; }
.order-dialog .dialog-close { position: absolute; top: 14px; right: 14px; background: var(--cream); }
.order-dialog h2 { font-size: 42px; }
.order-dialog > p:not(.eyebrow) { color: var(--muted); line-height: 1.6; }
.order-dialog textarea { width: 100%; height: 190px; margin: 12px 0 16px; padding: 15px; border: 1px solid var(--line); background: var(--cream); resize: none; font-size: 12px; line-height: 1.5; }
.toast { position: fixed; z-index: 100; left: 50%; bottom: 30px; padding: 13px 18px; color: #fff; background: var(--ink); border-radius: 3px; box-shadow: var(--shadow); transform: translate(-50%, 120px); transition: transform .25s; font-size: 13px; }
.toast.show { transform: translate(-50%, 0); }

@media (max-width: 1050px) {
  .hero { grid-template-columns: .9fr 1.1fr; }
  .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .hero-art { transform: scale(.88); transform-origin: center; }
  .custom-visual { min-height: 560px; }
}

@media (max-width: 780px) {
  .preview-bar { justify-content: center; }
  .preview-bar span:last-child { display: none; }
  .site-header { min-height: 66px; padding-inline: 18px; }
  .brand-copy { display: none; }
  .site-header nav { gap: 15px; }
  .site-header nav a { display: none; }
  .hero { min-height: auto; padding: 0 0 38px; }
  h1 { font-size: clamp(38px, 11vw, 50px); }
  .hero-text { margin: 14px 0 18px; font-size: 16px; line-height: 1.5; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 5px; }
  .button { width: 100%; }
  .text-button { width: auto; align-self: center; }
  .hero-showcase { min-height: 440px; }
  .hero-products-image { object-position: center; }
  .hero-copy { padding: 30px 18px 0; }
  .hero-video-card { width: 190px; border-width: 6px; }
  .video-kicker { bottom: 56px; font-size: 15px; }
  .sound-toggle { bottom: 13px; }
  .shop { padding: 75px 18px 90px; }
  .section-heading { align-items: start; flex-direction: column; gap: 10px; }
  .section-heading h2 { font-size: 42px; }
  .collection-mosaic { margin: 30px 0 26px; grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: 205px; gap: 7px; }
  .collection-custom { grid-column: 1 / -1; }
  .collection-kids { grid-column: 1 / -1; }
  .collection-mugs { grid-column: auto; }
  .collection-sweats { grid-column: 1 / -1; }
  .collection-mousepads { grid-column: 1 / -1; }
  .collection-label { top: 10px; left: 10px; padding: 7px 9px; font-size: 10px; }
  .scene-shirt { width: 115px; height: 145px; padding-top: 46px; }
  .scene-card { left: 39%; width: 148px; height: 94px; }
  .scene-cap { width: 92px; height: 57px; }
  .tile-shirt { width: 125px; height: 155px; padding-top: 50px; }
  .humour-quote strong { font-size: 21px; }
  .tile-cap { width: 125px; height: 78px; }
  .collection-monogram b { font-size: 50px; }
  .collection-monogram small { font-size: 8px; letter-spacing: .1em; text-align: center; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px 10px; }
  .product-image::before { width: 160px; height: 160px; }
  .mini-shirt { width: 135px; height: 165px; padding-top: 52px; }
  .mini-shirt b { max-width: 85px; font-size: 19px; }
  .mini-cap { width: 130px; height: 82px; }
  .mini-cap::after { width: 85px; height: 25px; right: -38px; }
  .mini-mat { width: 155px; height: 75px; }
  .product-info h3 { font-size: 16px; }
  .product-info > p { font-size: 11px; }
  .product-meta { display: block; }
  .price { display: block; margin-top: 5px; }
  .quick-view { opacity: 1; transform: none; left: 8px; right: 8px; bottom: 8px; height: 38px; font-size: 11px; }
  .custom { margin: 0 18px 70px; grid-template-columns: 1fr; }
  .custom-visual { min-height: 390px; }
  .custom-shirt { width: 220px; height: 275px; padding-top: 80px; }
  .custom-shirt span { font-size: 32px; }
  .custom-shirt b { right: 47px; bottom: 18px; }
  .custom-copy { padding: 45px 24px 50px; }
  footer { align-items: start; flex-direction: column; padding: 45px 24px; }
  .footer-links { justify-content: flex-start; }
  .footer-brand .brand-copy { display: grid; }
  .legal-header { padding: 12px 16px; }
  .legal-header .brand-mark { width: 38px; height: 38px; }
  .legal-main { margin-top: 18px; padding: 26px 20px; }
  .legal-main h1 { font-size: 38px; }
  .legal-main h2 { font-size: 25px; }
  .legal-actions { flex-direction: column; }
  .legal-actions .button { width: 100%; }
  .dialog-grid { grid-template-columns: 1fr; }
  .dialog-visual { min-height: 310px; }
  .dialog-visual .product-art { transform: scale(1.05); }
  .product-gallery { min-height: 340px; }
  .dialog-product-photo { max-height: 340px; padding: 12px; }
  .gallery-thumbs { padding: 8px 12px 12px; }
  .gallery-thumb { width: 50px; height: 50px; }
  .dialog-copy { padding: 35px 24px; }
  .dialog-copy h2 { font-size: 36px; }
  .product-dialog > .dialog-close { position: fixed; }
  .order-dialog { padding: 42px 22px 24px; }
  .order-dialog h2 { font-size: 34px; }
}

@media (max-width: 390px) {
  .product-grid { grid-template-columns: 1fr; gap: 32px; }
  .product-image { aspect-ratio: 4 / 4; }
  .mini-shirt { width: 180px; height: 215px; padding-top: 68px; }
  .mini-cap { width: 180px; height: 108px; }
  .mini-mat { width: 225px; height: 105px; }
}

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