:root {
  --ink: #050505;
  --charcoal: #11100d;
  --steel: #5c5f5b;
  --mist: #f6f1e5;
  --foam: #fff5d6;
  --gold: #f4bf28;
  --amber: #d77a05;
  --deep-amber: #7b3500;
  --line: rgba(255, 240, 188, 0.22);
  --header-bg: rgba(5, 5, 5, 0.18);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  color: var(--mist);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
  background:
    radial-gradient(circle at 18% 8%, rgba(244, 191, 40, 0.18), transparent 28rem),
    linear-gradient(180deg, #030303 0%, #11100d 44%, #f5efe2 44%, #f5efe2 61%, #090807 61%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.3;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1rem, 4vw, 3rem);
  background: var(--header-bg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  transition: background 500ms var(--ease), padding 500ms var(--ease);
}

.site-header.is-solid {
  --header-bg: rgba(5, 5, 5, 0.82);
  padding-block: 0.66rem;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-mark img {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  background: white;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(0.65rem, 2.2vw, 1.6rem);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.78);
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.38rem;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--gold);
  transition: transform 260ms var(--ease);
}

nav a:hover::after {
  transform: scaleX(1);
}

.section-dark,
.section-light,
.section-gold,
.section-amber {
  position: relative;
  z-index: 3;
}

.section-dark {
  color: var(--mist);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), transparent 38%),
    #080806;
}

.section-light {
  color: #17130d;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.6), rgba(234, 218, 184, 0.92)),
    #f5efe2;
}

.section-gold {
  color: #130d02;
  background:
    linear-gradient(110deg, rgba(255, 245, 214, 0.88), rgba(244, 191, 40, 0.82)),
    #efb725;
}

.section-amber {
  color: #080705;
  background: linear-gradient(90deg, var(--gold), #f08d07, var(--gold));
}

.hero > *,
.story > *,
.craft > *,
.mood > *,
.contact > *,
.intro-strip > * {
  position: relative;
  z-index: 5;
}

.hero {
  min-height: 94svh;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(18rem, 0.86fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
  padding: clamp(6.8rem, 12vw, 9rem) clamp(1.2rem, 5vw, 5rem) clamp(3rem, 7vw, 5rem);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -10vw -20vh 35vw;
  height: 38vh;
  background: linear-gradient(180deg, transparent, rgba(244, 191, 40, 0.18));
  transform: rotate(-4deg);
}

.overline,
.section-kicker {
  margin: 0 0 1rem;
  color: var(--gold) !important;
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  letter-spacing: 0;
  line-height: 0.92;
  text-transform: uppercase;
}

h1 {
  max-width: 11ch;
  margin-bottom: 1.2rem;
  font-size: clamp(3.7rem, 9.6vw, 8.6rem);
}

h2 {
  max-width: 11ch;
  margin-bottom: 1.1rem;
  font-size: clamp(2.35rem, 6.8vw, 5.8rem);
}

h3 {
  margin-bottom: 0.7rem;
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1;
  text-transform: uppercase;
}

.hero-lead,
.story p,
.craft p,
.mood-copy p,
.contact-panel p,
.contact-intro p {
  max-width: 39rem;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.02rem, 2vw, 1.25rem);
}

.section-light p,
.section-gold p {
  color: rgba(19, 13, 2, 0.76);
}

.hero-actions,
.age-actions,
.cart-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn {
  display: inline-flex;
  min-height: 3.1rem;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.9rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 240ms var(--ease), border-color 240ms var(--ease), background 240ms var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #090806;
  background: var(--gold);
  box-shadow: 0 18px 40px rgba(215, 122, 5, 0.24);
}

.btn-outline,
.btn-ghost {
  color: var(--mist);
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.06);
}

.btn-ghost {
  color: rgba(255, 255, 255, 0.76);
}

.btn-card {
  width: 100%;
  min-height: 2.55rem;
  padding: 0.68rem 0.95rem;
  color: #090806;
  background: var(--gold);
  box-shadow: none;
}

.icon-btn {
  display: inline-grid;
  width: 2.6rem;
  height: 2.6rem;
  place-items: center;
  color: var(--mist);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  font: inherit;
  font-size: 1.55rem;
  line-height: 1;
}

.hero-product {
  position: relative;
  isolation: isolate;
  transform: translate3d(0, calc(var(--parallax, 0) * 1px), 0);
  transition: transform 120ms linear;
}

.hero-product img {
  width: min(38rem, 88vw);
  max-height: 76svh;
  margin-inline: auto;
  border-radius: 0.45rem;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.08) drop-shadow(0 34px 72px rgba(0, 0, 0, 0.56));
}

.chill-ring {
  position: absolute;
  z-index: -1;
  inset: 7% 2% 4%;
  border: 1px solid rgba(244, 191, 40, 0.34);
  border-radius: 48%;
  transform: rotate(-12deg);
  box-shadow: inset 0 0 64px rgba(244, 191, 40, 0.12), 0 0 70px rgba(244, 191, 40, 0.12);
}

.scroll-hint {
  position: absolute;
  left: clamp(1.2rem, 5vw, 5rem);
  bottom: 1.4rem;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
}

.scroll-hint span {
  width: 2.8rem;
  height: 1px;
  background: var(--gold);
}

.intro-strip {
  position: relative;
  z-index: 4;
  overflow: hidden;
  padding: 0.8rem 0;
  border-block: 1px solid rgba(0, 0, 0, 0.12);
}

.marquee {
  display: flex;
  width: max-content;
  margin: 0;
  color: #090806;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(2rem, 6vw, 5.6rem);
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  animation: marquee 24s linear infinite;
}

.marquee span {
  padding-right: 2rem;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

.story,
.craft,
.mood,
.contact {
  padding: clamp(4.5rem, 10vw, 8.5rem) clamp(1.2rem, 5vw, 5rem);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(18rem, 1fr);
  align-items: center;
  gap: clamp(2rem, 7vw, 6rem);
}

.split-layout.reverse {
  grid-template-columns: minmax(18rem, 0.94fr) minmax(0, 0.8fr);
}

.photo-stack {
  position: relative;
  min-height: clamp(24rem, 48vw, 39rem);
  transform: translate3d(0, calc(var(--parallax, 0) * 1px), 0);
}

.photo-stack img,
.craft-image img,
.wide-photo img {
  border-radius: 0.45rem;
  object-fit: cover;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.22);
}

.photo-stack img:first-child {
  position: absolute;
  right: 0;
  top: 0;
  width: min(74%, 27rem);
  aspect-ratio: 3 / 4;
}

.photo-stack img:last-child {
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(56%, 20rem);
  aspect-ratio: 3 / 4;
  transform: rotate(-4deg);
  border: 0.45rem solid #f5efe2;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: clamp(3rem, 7vw, 5rem);
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 30rem;
  padding: 1.2rem;
  overflow: hidden;
  color: var(--mist);
  background:
    radial-gradient(circle at var(--mx, 70%) var(--my, 20%), rgba(244, 191, 40, 0.24), transparent 9rem),
    linear-gradient(150deg, #18150f, #050505);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.5rem;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.16);
  transition: transform 280ms var(--ease), border-color 280ms var(--ease);
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(244, 191, 40, 0.42);
}

.product-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.98rem;
}

.product-photo {
  position: relative;
  aspect-ratio: 1 / 1;
  margin: -0.1rem -0.1rem 1rem;
  overflow: hidden;
  border-radius: 0.42rem;
  background: #080806;
  border: 1px solid rgba(244, 191, 40, 0.18);
}

.product-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(0, 0, 0, 0.28));
  pointer-events: none;
}

.product-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.02);
  transition: transform 420ms var(--ease);
}

.product-card:hover .product-photo img {
  transform: scale(1.04);
}

.product-card small {
  display: block;
  margin-top: auto;
  margin-bottom: 0.75rem;
  max-width: none;
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
}

.variant-picker {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem;
  margin-bottom: 0.85rem;
}

.variant-picker button {
  min-height: 2.55rem;
  padding: 0.55rem 0.5rem;
  color: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0.45rem;
  background: rgba(255, 255, 255, 0.055);
  cursor: pointer;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
  transition: background 180ms var(--ease), border-color 180ms var(--ease), color 180ms var(--ease);
}

.variant-picker button:hover,
.variant-picker button.is-selected {
  color: #090806;
  border-color: rgba(244, 191, 40, 0.78);
  background: var(--gold);
}

.piece-picker {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
  margin-bottom: 0.85rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.7rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.piece-stepper {
  display: grid;
  grid-template-columns: 2.45rem 3.35rem 2.45rem;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(244, 191, 40, 0.42);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.18);
}

.piece-stepper button {
  display: grid;
  min-height: 2.6rem;
  place-items: center;
  color: var(--mist);
  border: 0;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  font: inherit;
  font-size: 1.1rem;
  font-weight: 950;
  transition: background 180ms var(--ease), color 180ms var(--ease);
}

.piece-stepper button:hover {
  color: #090806;
  background: var(--gold);
}

.piece-input {
  width: 100%;
  min-height: 2.6rem;
  padding: 0.35rem 0.2rem;
  color: var(--mist);
  border: 0;
  border-inline: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  background: rgba(0, 0, 0, 0.16);
  appearance: textfield;
  font: inherit;
  font-size: 1rem;
  font-weight: 950;
  text-align: center;
  outline: none;
}

.piece-input::-webkit-inner-spin-button,
.piece-input::-webkit-outer-spin-button {
  margin: 0;
  appearance: none;
}

.piece-input:focus {
  box-shadow: inset 0 0 0 2px rgba(244, 191, 40, 0.32);
}

.order-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.4rem;
  margin-top: clamp(2rem, 5vw, 3.6rem);
  padding: clamp(1.1rem, 4vw, 2rem);
  color: var(--mist);
  border-radius: 0.5rem;
  background:
    radial-gradient(circle at 80% 15%, rgba(244, 191, 40, 0.28), transparent 16rem),
    linear-gradient(145deg, #15120d, #050505);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.order-cta h2 {
  max-width: 13ch;
  margin-bottom: 0;
  font-size: clamp(1.95rem, 4.4vw, 3.7rem);
}

.cart-trigger {
  position: fixed;
  z-index: 22;
  right: clamp(0.9rem, 3vw, 2rem);
  bottom: clamp(0.9rem, 3vw, 2rem);
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 3.25rem;
  padding: 0.72rem 0.82rem 0.72rem 1.1rem;
  color: #090806;
  border: 0;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.34);
  cursor: pointer;
  font: inherit;
  font-weight: 950;
  text-transform: uppercase;
}

.cart-trigger strong {
  display: inline-grid;
  min-width: 2rem;
  height: 2rem;
  place-items: center;
  color: var(--mist);
  border-radius: 50%;
  background: #090806;
}

.cart-trigger.is-active {
  transform: translateY(-3px);
}

.cart-overlay {
  position: fixed;
  z-index: 40;
  inset: 0;
  background: rgba(0, 0, 0, 0.58);
  backdrop-filter: blur(6px);
}

.cart-drawer {
  position: fixed;
  z-index: 41;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(31rem, 100%);
  padding: 1.1rem;
  overflow-y: auto;
  color: var(--mist);
  background:
    radial-gradient(circle at 80% 12%, rgba(244, 191, 40, 0.16), transparent 15rem),
    #080806;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: -30px 0 70px rgba(0, 0, 0, 0.42);
  transform: translateX(104%);
  transition: transform 420ms var(--ease);
}

.cart-drawer.is-open {
  transform: translateX(0);
}

.cart-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.cart-head h2 {
  margin-bottom: 0;
  font-size: clamp(2.1rem, 6.8vw, 3.5rem);
}

.cart-empty {
  margin: 1.2rem 0;
  padding: 1rem;
  color: rgba(255, 255, 255, 0.72);
  border: 1px dashed rgba(255, 255, 255, 0.2);
  border-radius: 0.5rem;
}

.cart-empty.is-hidden {
  display: none;
}

.cart-items {
  display: grid;
  gap: 0.75rem;
  margin: 1rem 0 1.2rem;
}

.cart-line {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.8rem;
  align-items: center;
  padding: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.055);
}

.cart-line h3 {
  margin-bottom: 0.22rem;
  font-size: 1.08rem;
}

.cart-line p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.86rem;
}

.qty-control {
  display: grid;
  grid-template-columns: 2.15rem minmax(3.1rem, auto) 2.15rem;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
}

.qty-control button {
  display: grid;
  height: 2.15rem;
  place-items: center;
  color: var(--mist);
  border: 0;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.qty-control span {
  text-align: center;
  font-weight: 950;
}

.checkout-form {
  display: grid;
  gap: 0.95rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.checkout-form label,
.checkout-form fieldset {
  display: grid;
  gap: 0.45rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.checkout-form [hidden] {
  display: none !important;
}

.checkout-form fieldset {
  grid-template-columns: 1fr 1fr;
  padding: 0;
  border: 0;
}

.checkout-form legend {
  grid-column: 1 / -1;
  padding: 0;
  color: rgba(255, 255, 255, 0.68);
}

.checkout-form input,
.checkout-form select,
.checkout-form textarea {
  width: 100%;
  min-height: 3rem;
  padding: 0.78rem 0.9rem;
  color: var(--mist);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0.45rem;
  background: rgba(255, 255, 255, 0.075);
  font: inherit;
  font-size: 1rem;
  letter-spacing: 0;
  text-transform: none;
  outline: none;
}

.checkout-form option {
  color: #090806;
}

.checkout-form textarea {
  resize: vertical;
}

.checkout-form input:focus,
.checkout-form select:focus,
.checkout-form textarea:focus {
  border-color: rgba(244, 191, 40, 0.72);
  box-shadow: 0 0 0 3px rgba(244, 191, 40, 0.14);
}

.choice {
  display: flex !important;
  align-items: center;
  min-height: 3rem;
  padding: 0.7rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0.45rem;
  background: rgba(255, 255, 255, 0.055);
}

.choice input {
  width: 1.05rem;
  min-height: auto;
  accent-color: var(--gold);
}

.choice span {
  color: var(--mist);
  font-size: 0.9rem;
}

.cart-status {
  min-height: 1.5rem;
  margin: 0;
  color: var(--gold);
  font-size: 0.92rem;
}

.cart-status.is-error {
  color: #ffb0a2;
}

.checkout-submit {
  width: 100%;
}

.thank-you-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 78% 18%, rgba(244, 191, 40, 0.2), transparent 22rem),
    linear-gradient(135deg, #050505 0%, #11100d 58%, #261706 100%);
}

.thank-you-header {
  --header-bg: rgba(5, 5, 5, 0.72);
}

.thank-you-main {
  position: relative;
  z-index: 3;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(7rem, 11vw, 9rem) clamp(1rem, 5vw, 5rem) clamp(2rem, 6vw, 4rem);
}

.thank-you-hero {
  width: min(100%, 68rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(14rem, 0.36fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.thank-you-copy h1 {
  max-width: none;
  margin-bottom: 1rem;
  font-size: clamp(3.8rem, 11vw, 8.5rem);
}

.thank-you-copy p:not(.overline) {
  max-width: 42rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.thank-you-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.thank-you-order {
  display: inline-grid;
  gap: 0.3rem;
  min-width: min(100%, 21rem);
  margin-top: 1.4rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(244, 191, 40, 0.36);
  border-radius: 0.45rem;
  background: rgba(244, 191, 40, 0.09);
}

.thank-you-order[hidden] {
  display: none;
}

.thank-you-order span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.thank-you-order strong {
  color: var(--gold);
  font-size: clamp(1.15rem, 3vw, 1.6rem);
  letter-spacing: 0;
}

.thank-you-badge {
  display: grid;
  justify-items: center;
  gap: 1rem;
  padding: clamp(1.2rem, 4vw, 2rem);
  border: 1px solid rgba(244, 191, 40, 0.28);
  border-radius: 0.5rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(0, 0, 0, 0.2);
  box-shadow: 0 1.8rem 5rem rgba(0, 0, 0, 0.34);
}

.thank-you-badge img {
  width: clamp(9rem, 20vw, 15rem);
  border-radius: 50%;
  background: white;
}

.thank-you-badge span {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.craft {
  overflow: hidden;
}

.craft-image {
  transform: translate3d(0, calc(var(--parallax, 0) * 1px), 0) rotate(calc(var(--scroll-progress, 0) * 2deg));
}

.craft-image img {
  width: min(100%, 42rem);
  aspect-ratio: 4 / 5;
}

.craft-list {
  display: grid;
  gap: 0.8rem;
  padding: 0;
  margin: 2rem 0 0;
  list-style: none;
}

.craft-list li {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 0.8rem;
  align-items: center;
  padding: 0.9rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.78);
}

.craft-list span {
  color: var(--gold);
  font-weight: 950;
}

.mood {
  display: grid;
  grid-template-columns: minmax(18rem, 1fr) minmax(0, 0.78fr);
  gap: clamp(2rem, 7vw, 6rem);
  align-items: center;
  overflow: hidden;
}

.wide-photo {
  transform: translate3d(0, calc(var(--parallax, 0) * 1px), 0);
}

.wide-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
}

.mood h2 {
  max-width: 10ch;
}

.contact {
  min-height: auto;
}

.contact-wrap {
  width: min(78rem, 100%);
  margin-inline: auto;
}

.contact-intro {
  display: grid;
  grid-template-columns: 7rem minmax(0, 1fr);
  align-items: center;
  gap: clamp(1.2rem, 4vw, 3rem);
  margin-bottom: clamp(1.4rem, 4vw, 2.5rem);
}

.contact-intro img {
  width: 7rem;
  border-radius: 50%;
  background: white;
}

.contact-intro h2 {
  margin-bottom: 0.4rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.contact-card {
  min-height: 13rem;
  padding: 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0.5rem;
  background:
    radial-gradient(circle at 80% 10%, rgba(244, 191, 40, 0.14), transparent 10rem),
    rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(18px);
}

.contact-card h3 {
  margin-bottom: 1rem;
}

.contact-card p {
  color: rgba(255, 255, 255, 0.76);
}

.contact-card a {
  display: inline-flex;
  margin-top: 0.4rem;
  color: var(--gold);
  font-weight: 950;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.age-gate {
  position: fixed;
  z-index: 50;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1.2rem;
  background:
    radial-gradient(circle at 50% 20%, rgba(244, 191, 40, 0.2), transparent 30rem),
    rgba(3, 3, 3, 0.92);
  backdrop-filter: blur(18px);
  transition: opacity 340ms var(--ease), visibility 340ms var(--ease);
}

.age-gate.is-hidden {
  visibility: hidden;
  opacity: 0;
}

.age-panel {
  width: min(31rem, 100%);
  padding: clamp(1.3rem, 5vw, 2.2rem);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0.5rem;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.045));
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.5);
}

.age-panel img {
  width: 7rem;
  margin: 0 auto 1.2rem;
  border-radius: 50%;
  background: white;
}

.age-panel h2 {
  max-width: none;
  margin-bottom: 0.7rem;
  font-size: clamp(2.6rem, 12vw, 5rem);
}

.age-panel p:not(.overline) {
  color: rgba(255, 255, 255, 0.74);
}

.age-actions {
  justify-content: center;
  margin-top: 1.4rem;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 760ms var(--ease), transform 760ms var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero,
  .split-layout,
  .split-layout.reverse,
  .mood {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 6.8rem;
  }

  .hero-product {
    order: -1;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .order-cta {
    grid-template-columns: 1fr;
  }

  .contact-panel {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .site-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: center;
    gap: 0.6rem;
    padding: 0.72rem 0.72rem 0.78rem;
  }

  .brand-mark span {
    display: inline;
    overflow: hidden;
    font-size: 0.78rem;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .brand-mark img {
    width: 2.25rem;
    height: 2.25rem;
  }

  nav {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: 100%;
    gap: 0.35rem;
    font-size: clamp(0.54rem, 2.45vw, 0.66rem);
  }

  nav a {
    display: inline-flex;
    min-height: 2.1rem;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0.42rem 0.28rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.055);
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  nav a::after {
    display: none;
  }

  .hero {
    padding-inline: 1rem;
    padding-top: 8.9rem;
  }

  h1 {
    font-size: clamp(3.35rem, 18vw, 5.2rem);
  }

  h2 {
    font-size: clamp(2.2rem, 12.5vw, 3.85rem);
  }

  .story,
  .craft,
  .mood,
  .contact {
    padding-inline: 1rem;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .piece-picker {
    align-items: stretch;
  }

  .cart-trigger {
    right: 0.75rem;
    bottom: 0.75rem;
  }

  .cart-drawer {
    padding: 0.9rem;
  }

  .checkout-form fieldset {
    grid-template-columns: 1fr;
  }

  .cart-line {
    grid-template-columns: 1fr;
  }

  .thank-you-hero {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .thank-you-main {
    align-items: start;
    padding-top: 8.8rem;
  }

  .thank-you-copy h1 {
    font-size: clamp(3.2rem, 17vw, 5rem);
  }

  .thank-you-badge {
    justify-self: start;
    width: min(100%, 18rem);
  }

  .contact-intro {
    grid-template-columns: 1fr;
  }

  .photo-stack {
    min-height: 29rem;
  }

}

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