/* Coraline dolls art — soft stationery + logo pinks */
:root {
  --ink: #fbf7f2;
  --ink-soft: #f5ebe3;
  --ink-lift: #ecdfd4;
  --rose: #f0a8bc;
  --rose-deep: #d47892;
  --blush: #f4b4c4;
  --cream: #2c2420;
  --cream-dim: rgba(44, 36, 32, 0.62);
  --cream-faint: rgba(44, 36, 32, 0.1);
  --line: rgba(212, 120, 146, 0.25);
  --danger: #b54a4a;
  --ok: #5a8f6a;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-script: "Homemade Apple", "Caveat", "Mr Dafoe", cursive;
  --font-hero: "Mr Dafoe", "Great Vibes", "Homemade Apple", cursive;
  --font-body: "Karla", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --nav-h: 4.5rem;
  --max: 72rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: #e8d5b8;
  color: var(--cream);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Old paper texture */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    url("../images/old-paper.png") center center / cover no-repeat;
  background-color: #e8d5b8;
}

/* Soft veil so text stays readable on the parchment */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(
    ellipse 75% 70% at 50% 40%,
    rgba(251, 247, 242, 0.28) 0%,
    rgba(251, 247, 242, 0.08) 50%,
    transparent 75%
  );
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

ul {
  list-style: none;
}

.site {
  position: relative;
  z-index: 2;
}

/* —— Nav —— */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  transition: background 0.4s var(--ease), backdrop-filter 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(251, 247, 242, 0.9);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-hero);
  font-weight: 400;
  font-size: clamp(1.55rem, 2.4vw, 2.05rem);
  letter-spacing: 0.01em;
  font-style: normal;
  line-height: 1.1;
  color: var(--cream);
}

.nav-brand .brand-text {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.18em 0.28em;
}

.nav-brand .brand-text .hero-w1,
.nav-brand .brand-text .hero-w2,
.nav-brand .brand-text .hero-w3 {
  display: inline-block;
}

.nav-brand .brand-text .hero-w1 {
  transform: rotate(-2deg);
}

.nav-brand .brand-text .hero-w2 {
  color: var(--rose-deep);
  font-size: 1.06em;
  transform: rotate(2deg) translateY(0.04em);
}

.nav-brand .brand-text .hero-w3 {
  transform: rotate(-1deg);
}

.nav-brand .brand-text em {
  font-style: normal;
  color: var(--rose-deep);
}

.nav-brand img,
.nav-brand .mark {
  width: 3.1rem;
  height: 3.1rem;
  object-fit: contain;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2rem);
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--cream-dim);
  transition: color 0.25s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--cream);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  background: rgba(251, 247, 242, 0.45);
}

.lang-btn {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0.35rem 0.55rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
  color: var(--cream-dim);
  transition: color 0.2s, background 0.2s;
}

.lang-btn.active {
  color: var(--cream);
  background: rgba(212, 120, 146, 0.22);
}

.lang-btn:hover {
  color: var(--cream);
}

.cart-btn {
  position: relative;
  background: transparent;
  border: 1px solid var(--line);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: border-color 0.25s, background 0.25s;
}

.cart-btn:hover {
  border-color: var(--rose);
  background: rgba(184, 107, 128, 0.1);
}

.cart-btn svg {
  width: 1.1rem;
  height: 1.1rem;
  stroke: var(--cream);
  fill: none;
  stroke-width: 1.6;
}

.cart-count {
  position: absolute;
  top: -0.2rem;
  right: -0.2rem;
  min-width: 1.1rem;
  height: 1.1rem;
  padding: 0 0.25rem;
  background: var(--blush);
  color: #f7efe2;
  font-size: 0.65rem;
  font-weight: 700;
  border-radius: 999px;
  display: grid;
  place-items: center;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  width: 2.5rem;
  height: 2.5rem;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 0.35rem;
}

.menu-toggle span {
  display: block;
  height: 1.5px;
  width: 1.35rem;
  background: var(--cream);
  margin-inline: auto;
  transition: transform 0.3s, opacity 0.3s;
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.35s var(--ease), background 0.25s, border-color 0.25s, color 0.25s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--blush);
  color: #f7efe2;
}

.btn-primary:hover {
  background: var(--rose-deep);
  color: #f7efe2;
}

.btn-ghost {
  background: transparent;
  border-color: var(--cream-faint);
  color: var(--cream);
}

.btn-ghost:hover {
  border-color: var(--rose);
  color: var(--rose);
}

.btn-sm {
  padding: 0.55rem 1.1rem;
  font-size: 0.8rem;
}

/* —— Hero —— */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  align-items: center;
  padding: calc(var(--nav-h) + 1.5rem) clamp(1.25rem, 4vw, 3rem) 2rem;
  gap: 2rem;
  position: relative;
  overflow: hidden;
}

.hero-copy {
  padding-bottom: clamp(1rem, 4vh, 3rem);
  max-width: 28rem;
  position: relative;
  z-index: 3;
  animation: rise 1s var(--ease) both;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-inline: auto 0;
}

.hero-logo {
  width: clamp(7rem, 18vw, 10.5rem);
  height: auto;
  margin: 0 auto 0.5rem;
  filter: drop-shadow(0 8px 18px rgba(212, 120, 146, 0.22));
}

.hero-brand {
  margin: 0 0 0.35rem;
  text-align: center;
  line-height: 0;
}

.hero-script {
  display: block;
  width: min(100%, 28rem);
  height: auto;
  margin: 0 auto;
  background: transparent;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 6px 14px rgba(44, 36, 32, 0.12));
}

.hero-line {
  font-family: var(--font-script);
  font-size: clamp(1.45rem, 2.8vw, 1.95rem);
  font-weight: 400;
  font-style: normal;
  margin-bottom: 0.75rem;
  letter-spacing: 0.03em;
  line-height: 1.4;
  color: var(--rose-deep);
  text-align: center;
}

.hero-sub {
  color: var(--cream-dim);
  font-size: 0.95rem;
  margin-bottom: 1.75rem;
  max-width: 22rem;
  text-align: center;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

/* Motion stage — h1 / h2 / h3 floating cards */
.hero-stage {
  position: relative;
  height: min(78vh, 40rem);
  width: 100%;
  z-index: 2;
}

.hero-card {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--ink-lift);
  box-shadow: 0 18px 40px rgba(44, 36, 32, 0.18);
  will-change: transform;
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transform: scale(1.08);
}

.hero-card figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.7rem 0.9rem;
  background: linear-gradient(transparent, rgba(44, 36, 32, 0.75));
  color: #fbf7f2;
  font-family: var(--font-script);
  font-size: 1.2rem;
  line-height: 1.1;
}

.hero-card-1 {
  width: min(52%, 17rem);
  aspect-ratio: 3 / 4;
  left: 2%;
  top: 8%;
  z-index: 1;
  animation:
    hero-enter-1 1.1s var(--ease) 0.1s both,
    hero-float-1 7s ease-in-out 1.2s infinite;
}

.hero-card-1 img {
  animation: ken-drift 12s ease-in-out 1.2s infinite alternate;
}

.hero-card-2 {
  width: min(58%, 19rem);
  aspect-ratio: 3 / 4.1;
  right: 4%;
  top: 0;
  z-index: 3;
  animation:
    hero-enter-2 1.15s var(--ease) 0.25s both,
    hero-float-2 8s ease-in-out 1.4s infinite;
}

.hero-card-2 img {
  animation: ken-drift 14s ease-in-out 1.4s infinite alternate-reverse;
}

.hero-card-3 {
  width: min(48%, 15.5rem);
  aspect-ratio: 3 / 3.8;
  left: 28%;
  bottom: 2%;
  z-index: 2;
  animation:
    hero-enter-3 1.2s var(--ease) 0.4s both,
    hero-float-3 6.5s ease-in-out 1.6s infinite;
}

.hero-card-3 img {
  animation: ken-drift 13s ease-in-out 1.6s infinite alternate;
}

.hero-card:hover {
  z-index: 5;
  box-shadow: 0 22px 48px rgba(212, 120, 146, 0.28);
}

.hero-card:hover img {
  animation-play-state: paused;
  transform: scale(1.06);
  transition: transform 0.5s var(--ease);
}

.hero-ship {
  position: absolute;
  left: clamp(1.25rem, 4vw, 3rem);
  bottom: 1.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-dim);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 3;
  animation: rise 1s var(--ease) 0.35s both;
}

.hero-ship::before {
  content: "";
  width: 1.5rem;
  height: 1px;
  background: var(--rose);
}

@keyframes hero-enter-1 {
  from {
    opacity: 0;
    transform: translate(-2rem, 3rem) rotate(-8deg) scale(0.92);
  }
  to {
    opacity: 1;
    transform: translate(0, 0) rotate(-4deg) scale(1);
  }
}

@keyframes hero-enter-2 {
  from {
    opacity: 0;
    transform: translate(2.5rem, -2rem) rotate(10deg) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translate(0, 0) rotate(3.5deg) scale(1);
  }
}

@keyframes hero-enter-3 {
  from {
    opacity: 0;
    transform: translate(0, 3.5rem) rotate(6deg) scale(0.92);
  }
  to {
    opacity: 1;
    transform: translate(0, 0) rotate(-2deg) scale(1);
  }
}

@keyframes hero-float-1 {
  0%,
  100% {
    transform: translate(0, 0) rotate(-4deg);
  }
  50% {
    transform: translate(0.4rem, -0.85rem) rotate(-2.5deg);
  }
}

@keyframes hero-float-2 {
  0%,
  100% {
    transform: translate(0, 0) rotate(3.5deg);
  }
  50% {
    transform: translate(-0.35rem, -1rem) rotate(5deg);
  }
}

@keyframes hero-float-3 {
  0%,
  100% {
    transform: translate(0, 0) rotate(-2deg);
  }
  50% {
    transform: translate(0.5rem, -0.7rem) rotate(-3.5deg);
  }
}

@media (max-width: 900px) {
  .hero.hero-motion {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-bottom: 2rem;
    align-items: start;
  }

  .hero-copy {
    order: 1;
    max-width: none;
    margin-inline: auto;
    padding-bottom: 1rem;
  }

  .hero-stage {
    order: 2;
    height: min(58vh, 28rem);
    margin-inline: calc(-1 * clamp(1.25rem, 4vw, 3rem));
    width: calc(100% + 2 * clamp(1.25rem, 4vw, 3rem));
  }

  .hero-card-1 {
    width: 42%;
    left: 4%;
    top: 10%;
  }

  .hero-card-2 {
    width: 46%;
    right: 4%;
    top: 0;
  }

  .hero-card-3 {
    width: 40%;
    left: 30%;
    bottom: 4%;
  }

  .hero-ship {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-card,
  .hero-card img {
    animation: none !important;
  }

  .hero-card-1 {
    transform: rotate(-4deg);
  }

  .hero-card-2 {
    transform: rotate(3.5deg);
  }

  .hero-card-3 {
    transform: rotate(-2deg);
  }
}

/* legacy single visual (other pages if any) */
.hero-visual {
  position: relative;
  height: min(88vh, 52rem);
  margin-right: calc(-1 * clamp(1.25rem, 4vw, 3rem));
  animation: fade-in 1.2s var(--ease) 0.15s both;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  mask-image: linear-gradient(to left, #000 50%, transparent);
  -webkit-mask-image: linear-gradient(to left, #000 50%, transparent);
  box-shadow: -20px 0 40px rgba(42, 34, 26, 0.06);
}

/* —— Sections —— */
.section {
  padding: clamp(4rem, 10vh, 7rem) clamp(1.25rem, 4vw, 3rem);
}

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.section-head {
  max-width: 36rem;
  margin-bottom: 0.85rem;
}

.section-head.centered {
  margin-inline: auto;
  text-align: center;
  max-width: 40rem;
}

/* h1 / h2 / h3 — animated header closures */
.header-close {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  width: 100%;
  max-width: var(--max);
  margin: 0.5rem 0 clamp(2rem, 5vh, 3.25rem);
  align-items: end;
}

.header-close.single {
  grid-template-columns: 1fr;
  max-width: 28rem;
}

.header-close.single.wide {
  max-width: min(42rem, 100%);
}

.header-close.centered {
  margin-inline: auto;
  max-width: var(--max);
}

.header-close figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--ink-lift);
  border: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(44, 36, 32, 0.1);
  opacity: 0;
  transform: translateY(2.5rem) scale(0.96);
  transition:
    opacity 0.85s var(--ease),
    transform 0.85s var(--ease),
    box-shadow 0.35s;
}

.header-close.in figure,
.header-close.reveal.in figure,
.reveal.in .header-close figure,
.header-close.motion.in figure {
  opacity: 1;
  transform: none;
}

.header-close.motion figure:nth-child(1) {
  transition-delay: 0.05s;
  aspect-ratio: 3 / 4;
}

.header-close.motion figure:nth-child(2) {
  transition-delay: 0.18s;
  aspect-ratio: 3 / 4.4;
  margin-bottom: 1.25rem;
}

.header-close.motion figure:nth-child(3) {
  transition-delay: 0.32s;
  aspect-ratio: 3 / 4;
}

.header-close.single figure {
  aspect-ratio: 21 / 9;
  transition-delay: 0.08s;
}

.header-close img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.12);
  transition: transform 1.2s var(--ease);
  will-change: transform;
}

.header-close.in img,
.header-close.motion.in img,
.reveal.in .header-close img,
.header-close.reveal.in img {
  animation: ken-drift 14s ease-in-out infinite alternate;
}

.header-close figure:hover {
  box-shadow: 0 16px 36px rgba(212, 120, 146, 0.22);
  z-index: 1;
}

.header-close figure:hover img {
  animation-play-state: paused;
  transform: scale(1.08);
}

.header-close figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.75rem 0.9rem;
  background: linear-gradient(transparent, rgba(44, 36, 32, 0.72));
  color: #fbf7f2;
  font-family: var(--font-script);
  font-size: 1.25rem;
  line-height: 1.15;
  opacity: 0;
  transform: translateY(0.5rem);
  transition: opacity 0.45s var(--ease) 0.35s, transform 0.45s var(--ease) 0.35s;
}

.header-close.in figcaption,
.header-close.motion.in figcaption,
.reveal.in .header-close figcaption,
.header-close.reveal.in figcaption {
  opacity: 1;
  transform: none;
}

.header-close.motion {
  perspective: 900px;
}

.header-close.motion figure:nth-child(1) {
  animation: float-y 5.5s ease-in-out infinite;
}

.header-close.motion figure:nth-child(2) {
  animation: float-y 6.2s ease-in-out 0.4s infinite;
}

.header-close.motion figure:nth-child(3) {
  animation: float-y 5.8s ease-in-out 0.8s infinite;
}

.header-close.motion:not(.in) figure {
  animation: none;
}

@keyframes ken-drift {
  from {
    transform: scale(1.12) translate(0, 0);
  }
  to {
    transform: scale(1.2) translate(-2.5%, -1.5%);
  }
}

@keyframes float-y {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-0.55rem);
  }
}

/* VIP stage: video + motion closures */
.vip-stage {
  padding: clamp(3rem, 8vh, 5.5rem) 0;
}

.vip-stage .section-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}

.vip-video {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #1a1210;
  aspect-ratio: 16 / 10;
  width: min(96vw, 88rem);
  min-height: min(72vh, 42rem);
  max-height: min(88vh, 56rem);
  margin: 0 auto 2rem;
  box-shadow: 0 18px 40px rgba(44, 36, 32, 0.14);
}

.vip-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vip-video .vip-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  font-family: var(--font-script);
  font-size: 1.45rem;
  color: #fbf7f2;
  background: rgba(44, 36, 32, 0.45);
  backdrop-filter: blur(8px);
  padding: 0.35rem 0.9rem;
  border: 1px solid rgba(240, 168, 188, 0.35);
}

/* Swipeable doll photo rail */
.doll-rail {
  position: relative;
  width: 100%;
  margin: 0.5rem 0 clamp(2rem, 5vh, 3.25rem);
}

.doll-rail.wide {
  width: min(96vw, 88rem);
  margin-inline: auto;
}

.rail-track {
  display: flex;
  gap: 0.85rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 0.35rem 2.75rem 1rem;
  scrollbar-width: none;
  cursor: grab;
}

.rail-track::-webkit-scrollbar {
  display: none;
}

.rail-track.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}

.rail-track > figure,
.rail-track > a,
.rail-track > .rail-card {
  flex: 0 0 min(72vw, 18.5rem);
  scroll-snap-align: center;
  margin: 0;
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--ink-lift);
  border: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(44, 36, 32, 0.1);
  text-decoration: none;
  color: inherit;
}

.doll-rail.tall .rail-track > figure,
.doll-rail.tall .rail-track > a,
.doll-rail.tall .rail-track > .rail-card {
  flex-basis: min(78vw, 22rem);
  aspect-ratio: 3 / 4.15;
}

.rail-track img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  pointer-events: none;
  user-select: none;
}

.rail-track figcaption,
.rail-track .rail-cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.75rem 0.9rem;
  background: linear-gradient(transparent, rgba(44, 36, 32, 0.72));
  color: #fbf7f2;
  font-family: var(--font-script);
  font-size: 1.25rem;
  line-height: 1.15;
}

.rail-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-60%);
  z-index: 4;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(251, 247, 242, 0.88);
  color: var(--cream);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 18px rgba(44, 36, 32, 0.12);
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}

.rail-btn:hover {
  background: var(--blush);
  border-color: var(--rose);
  color: #fff;
}

.rail-btn.prev {
  left: 0.25rem;
}

.rail-btn.next {
  right: 0.25rem;
}

@media (max-width: 700px) {
  .vip-video {
    aspect-ratio: 16 / 11;
    min-height: min(58vh, 32rem);
    max-height: min(70vh, 40rem);
    width: 100%;
  }

  .rail-track {
    padding-inline: 2.4rem;
  }

  .rail-track > figure,
  .rail-track > a,
  .rail-track > .rail-card {
    flex-basis: min(78vw, 16rem);
  }
}

@media (max-width: 700px) {
  .header-close {
    grid-template-columns: 1fr;
    gap: 0.65rem;
    align-items: stretch;
  }

  .header-close figure,
  .header-close.single figure,
  .header-close.motion figure:nth-child(n) {
    aspect-ratio: 16 / 10;
    margin-bottom: 0;
  }

  .header-close.motion figure:nth-child(n) {
    animation: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .header-close figure,
  .header-close img,
  .header-close figcaption {
    transition: none !important;
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose-deep);
  font-weight: 500;
  margin-bottom: 0.75rem;
  font-family: var(--font-body);
}

.section-head h2 {
  font-family: var(--font-script);
  font-weight: 400;
  font-style: normal;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  letter-spacing: 0.03em;
  line-height: 1.35;
  margin-bottom: 0.75rem;
  color: var(--rose-deep);
}

.section-head p {
  color: var(--cream-dim);
  font-size: 1.02rem;
}

/* —— Collections / Shop grid —— */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2.5vw, 1.75rem);
}

.product {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.product-media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--ink-lift);
  box-shadow: 0 1px 0 rgba(42, 34, 26, 0.08), 0 12px 28px rgba(42, 34, 26, 0.08);
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.product:hover .product-media img {
  transform: scale(1.05);
}

.product-tag {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.65rem;
  background: rgba(247, 239, 230, 0.9);
  backdrop-filter: blur(8px);
  color: var(--rose-deep);
}

.product-info {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.product-info h3 {
  font-family: var(--font-script);
  font-weight: 400;
  font-style: normal;
  font-size: 1.45rem;
  letter-spacing: 0.01em;
  line-height: 1.3;
}

.product-info p {
  color: var(--cream-dim);
  font-size: 0.88rem;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.35rem;
}

.price {
  font-weight: 600;
  font-size: 0.95rem;
}

.price small {
  color: var(--cream-dim);
  font-weight: 400;
  font-size: 0.78rem;
}

.book-note {
  font-family: var(--font-script);
  font-size: 1.15rem;
  color: var(--rose-deep);
}

/* Book / price contact form */
.thank-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: calc(var(--nav-h) + 2.5rem) 1.25rem 3rem;
}

.thank-card {
  width: min(34rem, 100%);
  text-align: center;
  padding: 2.25rem 1.5rem 2rem;
}

.thank-logo {
  width: 5.5rem;
  height: 5.5rem;
  object-fit: contain;
  margin: 0 auto 1.1rem;
}

.thank-title {
  font-family: var(--font-script);
  font-size: clamp(2.4rem, 6vw, 3.4rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--cream);
  margin: 0.35rem 0 0.9rem;
}

.thank-text {
  color: var(--cream-dim);
  font-size: 1.02rem;
  line-height: 1.65;
  max-width: 28rem;
  margin: 0 auto 1.75rem;
}

.thank-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.ig-section {
  padding-top: clamp(2.5rem, 7vh, 4.5rem);
}

.ig-profile {
  width: min(58rem, 100%);
  margin: 1.5rem auto 0;
  background: #000;
  color: #f5f5f5;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 60px rgba(20, 12, 10, 0.28);
}

.ig-profile-top {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  padding: clamp(1.25rem, 3vw, 2rem) clamp(1rem, 3vw, 2rem) 1rem;
  align-items: start;
}

.ig-avatar-ring {
  width: clamp(5.5rem, 14vw, 9rem);
  height: clamp(5.5rem, 14vw, 9rem);
  border-radius: 50%;
  padding: 0.2rem;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  flex-shrink: 0;
}

.ig-avatar-ring img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #000;
  background: #111;
}

.ig-profile-main {
  min-width: 0;
}

.ig-name-row {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.85rem;
}

.ig-name-row h3 {
  font-family: var(--font-body);
  font-size: clamp(1.15rem, 2.4vw, 1.55rem);
  font-weight: 600;
  letter-spacing: 0.01em;
}

.ig-verified {
  display: inline-grid;
  place-items: center;
  width: 1.05rem;
  height: 1.05rem;
  border-radius: 50%;
  background: #3897f0;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  line-height: 1;
}

.ig-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.ig-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 6.5rem;
  padding: 0.45rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.88rem;
  font-weight: 650;
  text-align: center;
}

.ig-btn-follow {
  background: #0095f6;
  color: #fff;
}

.ig-btn-follow:hover {
  background: #1877f2;
}

.ig-btn-msg {
  background: #363636;
  color: #fff;
}

.ig-btn-msg:hover {
  background: #444;
}

.ig-btn-wide {
  min-width: 12rem;
  padding: 0.7rem 1.4rem;
}

.ig-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 1.75rem;
  margin-bottom: 0.9rem;
  font-size: 0.95rem;
}

.ig-stats strong {
  font-weight: 700;
}

.ig-stats span {
  color: #dbdbdb;
}

.ig-bio {
  font-size: 0.92rem;
  line-height: 1.45;
}

.ig-bio strong {
  display: block;
  margin-bottom: 0.25rem;
}

.ig-bio p {
  margin: 0;
  color: #efefef;
}

.ig-highlights {
  display: flex;
  gap: 1rem;
  padding: 0.5rem 1rem 1.1rem;
  overflow-x: auto;
  scrollbar-width: none;
}

.ig-highlights::-webkit-scrollbar {
  display: none;
}

.ig-hl {
  flex: 0 0 auto;
  width: 4.5rem;
  text-align: center;
  color: #f5f5f5;
}

.ig-hl span {
  display: block;
  width: 4.15rem;
  height: 4.15rem;
  margin: 0 auto 0.4rem;
  padding: 0.12rem;
  border-radius: 50%;
  border: 1px solid #555;
}

.ig-hl img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #000;
  background: #111;
}

.ig-hl em {
  display: block;
  font-style: normal;
  font-size: 0.68rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ig-tabs {
  display: flex;
  justify-content: center;
  gap: 4.5rem;
  border-top: 1px solid #262626;
  padding: 0.85rem 0 0.65rem;
  color: #a8a8a8;
  font-size: 1.05rem;
}

.ig-tabs .active {
  color: #f5f5f5;
  position: relative;
}

.ig-tabs .active::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -0.85rem;
  width: 3.5rem;
  height: 1px;
  transform: translateX(-50%);
  background: #f5f5f5;
}

.ig-feed {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.2rem;
}

.ig-feed a {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: #111;
}

.ig-feed img,
.ig-feed video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s var(--ease);
}

.ig-feed a:hover img,
.ig-feed a:hover video {
  transform: scale(1.04);
}

.ig-pin,
.ig-reel-icon {
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  width: 0.9rem;
  height: 0.9rem;
  background: #fff;
  clip-path: polygon(30% 0, 70% 0, 70% 55%, 100% 55%, 50% 100%, 0 55%, 30% 55%);
  opacity: 0.95;
}

.ig-reel-icon {
  clip-path: none;
  border-radius: 0.15rem;
  background: transparent;
  border: 2px solid #fff;
  box-shadow: inset 0.2rem 0 0 #fff;
}

.ig-profile-cta {
  display: flex;
  justify-content: center;
  padding: 1.1rem 1rem 1.25rem;
  border-top: 1px solid #262626;
}

@media (max-width: 700px) {
  .ig-profile-top {
    grid-template-columns: auto 1fr;
    gap: 1rem;
  }

  .ig-stats {
    gap: 0.85rem 1rem;
    font-size: 0.82rem;
  }

  .ig-actions .ig-btn {
    min-width: 0;
    flex: 1;
  }

  .ig-tabs {
    gap: 2.75rem;
  }

  .ig-hl {
    width: 4rem;
  }

  .ig-hl span {
    width: 3.6rem;
    height: 3.6rem;
  }
}
.book-section {
  padding-top: clamp(3rem, 8vh, 5rem);
}

.book-wrap {
  max-width: 40rem;
}

.book-form {
  margin-top: 0.5rem;
}

.book-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.1rem;
}

.book-full {
  grid-column: 1 / -1;
}

.book-note-line {
  margin: 1.1rem 0 1.35rem;
  font-family: var(--font-script);
  font-size: 1.2rem;
  color: var(--rose-deep);
  line-height: 1.35;
  text-align: center;
}

.book-submit {
  width: 100%;
}

@media (max-width: 640px) {
  .book-grid {
    grid-template-columns: 1fr;
  }
}

/* —— How it works —— */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  counter-reset: step;
}

.step {
  counter-increment: step;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.step::before {
  content: "0" counter(step);
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--rose);
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.step h3 {
  font-family: var(--font-script);
  font-size: 1.7rem;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.01em;
  margin-bottom: 0.5rem;
}

.step p {
  color: var(--cream-dim);
  font-size: 0.92rem;
}

/* —— Split craft —— */
.craft {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.craft-visual {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--ink-lift);
}

.craft-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.craft-copy h2 {
  font-family: var(--font-script);
  font-weight: 400;
  font-style: normal;
  font-size: clamp(2.4rem, 5vw, 3.3rem);
  letter-spacing: 0.01em;
  line-height: 1.15;
  margin: 0.75rem 0 1rem;
}

.craft-copy p {
  color: var(--cream-dim);
  margin-bottom: 1rem;
}

.craft-list {
  margin: 1.5rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.craft-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.92rem;
}

.craft-list li::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--rose);
  flex-shrink: 0;
}

/* Packing / how it arrives */
.packing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.packing-visual {
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--ink-lift);
  box-shadow: 0 16px 36px rgba(44, 36, 32, 0.12);
}

.packing-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}

.packing-copy h2 {
  font-family: var(--font-script);
  font-weight: 400;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  letter-spacing: 0.03em;
  line-height: 1.3;
  color: var(--rose-deep);
  margin: 0.75rem 0 1rem;
}

.packing-copy > p {
  color: var(--cream-dim);
  margin-bottom: 1rem;
}

.packing-ship {
  font-family: var(--font-script);
  font-size: 1.35rem;
  color: var(--cream);
  margin: 1.25rem 0 1.5rem !important;
  line-height: 1.35;
}

/* —— Gallery masonry —— */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(8rem, auto);
  gap: 0.75rem;
}

.gallery-item {
  overflow: hidden;
  background: var(--ink-lift);
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-item:nth-child(1) {
  grid-column: span 5;
  grid-row: span 2;
  aspect-ratio: auto;
  min-height: 22rem;
}

.gallery-item:nth-child(2) {
  grid-column: span 4;
  min-height: 14rem;
}

.gallery-item:nth-child(3) {
  grid-column: span 3;
  min-height: 14rem;
}

.gallery-item:nth-child(4) {
  grid-column: span 4;
  min-height: 16rem;
}

.gallery-item:nth-child(5) {
  grid-column: span 3;
  min-height: 16rem;
}

.gallery-item:nth-child(6),
.gallery-item:nth-child(7),
.gallery-item:nth-child(8) {
  grid-column: span 4;
  min-height: 14rem;
}

.gallery-caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.25rem;
  background: linear-gradient(transparent, rgba(42, 34, 26, 0.72));
  font-size: 0.8rem;
  color: #f3ead9;
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-item:hover .gallery-caption {
  opacity: 1;
}

/* —— VIP strip —— */
.vip {
  background: rgba(240, 160, 180, 0.12);
  border-block: 1px solid var(--line);
}

.vip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2.5rem;
  align-items: baseline;
  justify-content: space-between;
}

.vip-row h2 {
  font-family: var(--font-script);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.01em;
  max-width: 22rem;
  line-height: 1.2;
}

.vip-stats {
  display: flex;
  gap: clamp(1.5rem, 4vw, 3rem);
}

.vip-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  font-style: italic;
  letter-spacing: -0.01em;
  color: var(--rose);
}

.vip-stat span {
  font-size: 0.8rem;
  color: var(--cream-dim);
}

/* —— CTA band —— */
.cta-band {
  text-align: center;
  padding: clamp(4rem, 12vh, 8rem) clamp(1.25rem, 4vw, 3rem);
  position: relative;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 20% 10%;
  background: radial-gradient(ellipse at center, rgba(184, 107, 128, 0.16), transparent 65%);
  pointer-events: none;
}

.cta-band h2 {
  font-family: var(--font-script);
  font-weight: 400;
  font-style: normal;
  font-size: clamp(3.2rem, 7.5vw, 5rem);
  letter-spacing: 0.02em;
  line-height: 1.2;
  margin-bottom: 1rem;
  position: relative;
  color: var(--rose-deep);
}

.cta-band p {
  color: var(--cream-dim);
  margin-bottom: 1.75rem;
  position: relative;
}

.cta-band .btn {
  position: relative;
}

/* —— Footer —— */
.footer {
  border-top: 1px solid var(--line);
  padding: 3rem clamp(1.25rem, 4vw, 3rem) 2rem;
}

.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-hero);
  font-weight: 400;
  font-style: normal;
  font-size: 1.85rem;
  letter-spacing: 0.01em;
  margin-bottom: 0.75rem;
  line-height: 1.1;
}

.footer-brand img {
  width: 3rem;
  height: 3rem;
  object-fit: contain;
}

.footer-brand .brand-text {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.18em 0.28em;
}

.footer-brand .brand-text .hero-w1 {
  display: inline-block;
  transform: rotate(-2deg);
}

.footer-brand .brand-text .hero-w2 {
  display: inline-block;
  color: var(--rose-deep);
  font-size: 1.06em;
  transform: rotate(2deg) translateY(0.04em);
}

.footer-brand .brand-text .hero-w3 {
  display: inline-block;
  transform: rotate(-1deg);
}

.footer-brand .brand-text em {
  font-style: normal;
  color: var(--rose-deep);
}

.footer p {
  color: var(--cream-dim);
  font-size: 0.88rem;
  max-width: 16rem;
}

.footer h4 {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 1rem;
}

.footer ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer a {
  color: var(--cream-dim);
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer a:hover {
  color: var(--cream);
}

.footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid var(--cream-faint);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.78rem;
  color: var(--cream-dim);
}

/* —— Page hero (inner) —— */
.page-hero {
  padding: calc(var(--nav-h) + 3rem) clamp(1.25rem, 4vw, 3rem) 2.5rem;
  max-width: var(--max);
  margin: 0 auto;
}

.page-hero h1 {
  font-family: var(--font-script);
  font-weight: 400;
  font-style: normal;
  font-size: clamp(2.5rem, 6.5vw, 3.8rem);
  letter-spacing: 0.04em;
  line-height: 1.3;
  margin: 0.5rem 0 0.75rem;
  color: var(--rose-deep);
}

.page-hero p {
  color: var(--cream-dim);
  max-width: 32rem;
}

/* —— Shop filters —— */
.shop-toolbar {
  max-width: var(--max);
  margin: 0 auto 2rem;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  justify-content: space-between;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.filter-btn {
  background: transparent;
  border: 1px solid var(--cream-faint);
  color: var(--cream-dim);
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s;
}

.filter-btn:hover,
.filter-btn.active {
  border-color: var(--rose);
  color: var(--cream);
  background: rgba(184, 107, 128, 0.12);
}

.shop-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem) 5rem;
}

/* —— Customize —— */
.customize-layout {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem) 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}

.customize-preview {
  position: sticky;
  top: calc(var(--nav-h) + 1rem);
  aspect-ratio: 4 / 5;
  background: var(--ink-lift);
  overflow: hidden;
  border: 1px solid var(--line);
}

.customize-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s;
}

.customize-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.field label {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 600;
}

.field input,
.field select,
.field textarea {
  background: var(--ink-soft);
  border: 1px solid var(--cream-faint);
  padding: 0.85rem 1rem;
  border-radius: 0.35rem;
  outline: none;
  transition: border-color 0.25s;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--rose);
}

.field textarea {
  min-height: 6rem;
  resize: vertical;
}

.option-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.chip {
  border: 1px solid var(--cream-faint);
  background: transparent;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  font-size: 0.82rem;
  cursor: pointer;
  color: var(--cream-dim);
  transition: all 0.25s;
}

.chip:hover,
.chip.active {
  border-color: var(--rose);
  color: var(--cream);
  background: rgba(184, 107, 128, 0.12);
}

.upload-zone {
  border: 1px dashed var(--line);
  border-radius: 0.5rem;
  padding: 2rem 1.25rem;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s;
  background: var(--ink-soft);
}

.upload-zone:hover,
.upload-zone.drag {
  border-color: var(--rose);
  background: rgba(184, 107, 128, 0.08);
}

.upload-zone strong {
  display: block;
  margin-bottom: 0.35rem;
  font-family: var(--font-display);
}

.upload-zone span {
  font-size: 0.82rem;
  color: var(--cream-dim);
}

.upload-zone input {
  display: none;
}

.upload-preview {
  margin-top: 1rem;
  display: none;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.upload-preview.show {
  display: flex;
}

.upload-preview img {
  width: 4rem;
  height: 4rem;
  object-fit: cover;
  border-radius: 0.25rem;
  border: 1px solid var(--line);
}

.order-summary {
  border-top: 1px solid var(--line);
  padding-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.order-summary .row {
  display: flex;
  justify-content: space-between;
  font-size: 0.92rem;
  color: var(--cream-dim);
}

.order-summary .row.total {
  color: var(--cream);
  font-weight: 650;
  font-size: 1.1rem;
  font-family: var(--font-display);
}

/* —— Cart drawer —— */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}

.cart-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(24rem, 100%);
  height: 100%;
  background: var(--ink-soft);
  border-left: 1px solid var(--line);
  z-index: 210;
  transform: translateX(100%);
  transition: transform 0.45s var(--ease);
  display: flex;
  flex-direction: column;
}

.cart-drawer.open {
  transform: translateX(0);
}

.cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--line);
}

.cart-head h3 {
  font-family: var(--font-script);
  font-size: 1.65rem;
  font-weight: 400;
}

.cart-close {
  background: none;
  border: none;
  color: var(--cream);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
}

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 1.25rem 1.5rem;
}

.cart-empty {
  color: var(--cream-dim);
  font-size: 0.92rem;
  text-align: center;
  padding: 3rem 1rem;
}

.cart-item {
  display: grid;
  grid-template-columns: 4rem 1fr auto;
  gap: 0.85rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--cream-faint);
  align-items: start;
}

.cart-item img {
  width: 4rem;
  height: 5rem;
  object-fit: cover;
}

.cart-item h4 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.cart-item p {
  font-size: 0.75rem;
  color: var(--cream-dim);
}

.cart-item .remove {
  background: none;
  border: none;
  color: var(--cream-dim);
  cursor: pointer;
  font-size: 0.75rem;
  text-decoration: underline;
}

.cart-foot {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.cart-foot .total-row {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-display);
  font-weight: 650;
}

/* —— Toast —— */
.toast {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  background: var(--cream);
  color: #f3ead9;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 300;
  transition: transform 0.4s var(--ease);
  box-shadow: 0 8px 32px rgba(42, 34, 26, 0.2);
}

.toast.show {
  transform: translateX(-50%) translateY(0);
}

/* —— Reveal —— */
.reveal {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.in {
  opacity: 1;
  transform: none;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(1.75rem);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* —— Mobile —— */
@media (max-width: 900px) {
  .hero:not(.hero-motion) {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-bottom: 0;
  }

  .hero:not(.hero-motion) .hero-copy {
    order: 2;
    padding-bottom: 2.5rem;
    max-width: none;
  }

  .hero:not(.hero-motion) .hero-visual {
    order: 1;
    height: 55vh;
    margin-right: calc(-1 * clamp(1.25rem, 4vw, 3rem));
    margin-left: calc(-1 * clamp(1.25rem, 4vw, 3rem));
    width: calc(100% + 2 * clamp(1.25rem, 4vw, 3rem));
  }

  .hero:not(.hero-motion) .hero-visual img {
    mask-image: linear-gradient(to top, transparent, #000 35%);
    -webkit-mask-image: linear-gradient(to top, transparent, #000 35%);
  }

  .hero:not(.hero-motion) .hero-ship {
    display: none;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .craft {
    grid-template-columns: 1fr;
  }

  .packing {
    grid-template-columns: 1fr;
  }

  .packing-visual img {
    aspect-ratio: 16 / 11;
  }

  .customize-layout {
    grid-template-columns: 1fr;
  }

  .customize-preview {
    position: static;
    max-height: 22rem;
    aspect-ratio: 4 / 3;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-item:nth-child(n) {
    grid-column: span 6;
    min-height: 14rem;
  }

  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .nav.open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(247, 239, 230, 0.97);
    backdrop-filter: blur(16px);
    padding: 1.5rem;
    gap: 1.25rem;
    border-bottom: 1px solid var(--line);
  }

  .nav.open .menu-toggle span:nth-child(1) {
    transform: translateY(5.5px) rotate(45deg);
  }

  .nav.open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .nav.open .menu-toggle span:nth-child(3) {
    transform: translateY(-5.5px) rotate(-45deg);
  }
}

@media (max-width: 520px) {
  .nav-brand .brand-text {
    display: none;
  }

  .nav-brand img,
  .nav-brand .mark {
    width: 2.75rem;
    height: 2.75rem;
  }
}

@media (max-width: 560px) {
  .product-grid {
    grid-template-columns: 1fr;
  }

  .vip-row {
    flex-direction: column;
    gap: 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item:nth-child(n) {
    grid-column: span 12;
  }
}
