:root {
  --ink: #101116;
  --ink-soft: #20222a;
  --pink: #ff78b7;
  --pink-hot: #ff4fa3;
  --pink-pale: #ffd8ea;
  --denim: #6f9fc4;
  --denim-dark: #416e91;
  --denim-pale: #c7ddec;
  --cream: #fff8fb;
  --paper: #f6f0f3;
  --white: #ffffff;
  --line: rgba(16,17,22,.13);
  --shadow: 0 24px 70px rgba(16,17,22,.13);
  --radius: 26px;
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
body.cart-open { overflow: hidden; }
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }
::selection { color: var(--ink); background: var(--pink); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  left: 1rem;
  top: -4rem;
  z-index: 999;
  background: var(--ink);
  color: var(--white);
  padding: .75rem 1rem;
  border-radius: 999px;
  transition: top .2s ease;
}
.skip-link:focus { top: 1rem; }

.announcement {
  min-height: 38px;
  padding: .55rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  text-align: center;
  color: var(--ink);
  background: var(--pink);
  font-size: .78rem;
  letter-spacing: .035em;
}
.announcement strong { font-weight: 800; text-transform: uppercase; }
.announcement__spark { animation: sparkle 1.7s ease-in-out infinite; }
.announcement__spark:last-child { animation-delay: .65s; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  min-height: 78px;
  padding: 0 max(24px, calc((100vw - var(--max)) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: rgba(255,248,251,.9);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: border-color .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 30px rgba(16,17,22,.05);
}
.brand { display: inline-flex; align-items: center; gap: .75rem; flex-shrink: 0; }
.brand__mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--pink);
  transform: rotate(-4deg);
}
.brand__mark svg { width: 30px; height: 30px; fill: var(--ink); }
.brand__face { fill: none; stroke: var(--cream); stroke-width: 3; stroke-linecap: round; }
.brand__text {
  font-weight: 800;
  letter-spacing: .08em;
  font-size: .9rem;
}
.brand__text em { color: var(--pink-hot); font-style: normal; }
.site-nav { display: flex; align-items: center; gap: 1.8rem; font-size: .9rem; font-weight: 600; }
.site-nav > a { position: relative; }
.site-nav > a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -.3rem;
  height: 2px;
  background: var(--pink-hot);
  transition: right .2s ease;
}
.site-nav > a:hover::after, .site-nav > a.is-active::after { right: 0; }
.cart-button {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .68rem 1rem;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  font-weight: 700;
}
.cart-count {
  min-width: 22px;
  height: 22px;
  padding: 0 .3rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--white);
  background: var(--ink);
  font-size: .72rem;
}
.menu-toggle { display: none; border: 0; background: none; padding: .4rem; cursor: pointer; }
.menu-toggle > span:not(.sr-only) { display: block; width: 26px; height: 2px; margin: 5px 0; background: var(--ink); transition: .2s ease; }

.hero {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 5.3rem 0 5.7rem;
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}
.hero__copy { position: relative; z-index: 2; }
.eyebrow {
  margin: 0 0 1rem;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow span { display: inline-flex; align-items: center; gap: .5rem; }
.eyebrow span::before { content: ""; width: 28px; height: 2px; background: var(--pink-hot); }
h1, h2, h3 { margin: 0; font-family: "Fraunces", Georgia, serif; line-height: .98; letter-spacing: -.045em; }
.hero h1 { max-width: 690px; font-size: clamp(4rem, 8vw, 7.5rem); }
.hero h1 span { color: var(--pink-hot); }
.hero__lede { max-width: 580px; margin: 1.8rem 0 0; font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: #444651; }
.hero__actions { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: .85rem; }
.button {
  min-height: 50px;
  padding: .83rem 1.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: .01em;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(16,17,22,.12); }
.button--pink { background: var(--pink); border-color: var(--pink); }
.button--pink:hover { background: var(--pink-hot); border-color: var(--pink-hot); }
.button--ghost { background: transparent; border-color: var(--ink); }
.button--ghost:hover { background: var(--ink); color: var(--white); }
.button--denim { background: var(--denim); border-color: var(--denim); color: var(--ink); }
.button--denim:hover { background: var(--denim-pale); border-color: var(--denim-pale); }
.button--black { background: var(--ink); border-color: var(--ink); color: var(--white); }
.button--full { width: 100%; }
.hero__stats {
  margin-top: 3rem;
  padding-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  border-top: 1px solid var(--line);
}
.hero__stats div { display: flex; flex-direction: column; }
.hero__stats strong { font-family: "Fraunces", Georgia, serif; font-size: 2.1rem; line-height: 1; }
.hero__stats span { margin-top: .3rem; color: #666875; font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; }
.hero__visual { position: relative; min-width: 0; }
.hero__halo {
  position: absolute;
  width: 85%;
  aspect-ratio: 1;
  left: 13%;
  top: 8%;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 48%, var(--pink-pale) 0 46%, transparent 47% 100%);
  transform: scale(1.08);
}
.hero__photo {
  position: relative;
  z-index: 1;
  width: min(100%, 620px);
  margin: 0 auto;
  overflow: hidden;
  border-radius: 45% 45% 26px 26px;
  box-shadow: var(--shadow);
  background: var(--denim-pale);
  transform: rotate(1.1deg);
}
.hero__photo img { aspect-ratio: 4 / 5; object-fit: cover; object-position: center 35%; }
.hero__photo figcaption {
  padding: .85rem 1rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  background: var(--ink);
  color: var(--white);
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hero__photo figcaption span { color: var(--pink); }
.sticker {
  position: absolute;
  z-index: 3;
  display: grid;
  place-items: center;
  text-align: center;
  border: 2px solid var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
  font-weight: 900;
  line-height: 1;
  letter-spacing: .05em;
}
.sticker--top {
  width: 90px;
  height: 90px;
  top: 6%;
  right: -2%;
  border-radius: 50%;
  background: var(--pink);
  transform: rotate(10deg);
}
.sticker--bottom {
  width: 145px;
  height: 62px;
  left: -7%;
  bottom: 12%;
  background: var(--denim-pale);
  transform: rotate(-8deg);
  font-family: "Fraunces", Georgia, serif;
  font-size: .95rem;
}
.hero__scribble {
  position: absolute;
  right: 1%;
  bottom: -2%;
  z-index: 4;
  color: var(--pink-hot);
  font-family: "Fraunces", Georgia, serif;
  font-size: 2rem;
  font-style: italic;
  transform: rotate(-8deg);
}

.ticker { overflow: hidden; color: var(--white); background: var(--ink); border-block: 4px solid var(--pink); }
.ticker__track {
  width: max-content;
  padding: .9rem 0;
  display: flex;
  align-items: center;
  gap: 1.4rem;
  animation: marquee 26s linear infinite;
  font-size: .83rem;
  font-weight: 800;
  letter-spacing: .14em;
}
.ticker__track b { color: var(--pink); }

.section { width: min(var(--max), calc(100% - 48px)); margin: 0 auto; padding: 8rem 0; }
.section--compact { padding-block: 3rem; }
.section--dark { width: 100%; max-width: none; margin: 0; padding-inline: max(24px, calc((100vw - var(--max)) / 2)); color: var(--white); background: var(--ink); }
.section--pink { width: 100%; max-width: none; margin: 0; padding-inline: max(24px, calc((100vw - var(--max)) / 2)); background: var(--pink-pale); }
.section-heading { max-width: 820px; margin-bottom: 3rem; }
.section-heading h2, .birthday-card h2, .closet h2, .club h2, .lookbook h2 { font-size: clamp(3rem, 6vw, 5.7rem); }
.section-heading--split { max-width: none; display: flex; justify-content: space-between; gap: 2rem; align-items: end; }
.section-heading--split > p, .instagram__actions { max-width: 430px; color: #565865; }

.intro__grid { display: grid; grid-template-columns: 1.05fr .72fr .83fr; gap: clamp(2rem, 4vw, 4.5rem); align-items: start; }
.intro__story { font-size: 1.03rem; }
.intro__story p { color: #4f515c; }
.dropcap::first-letter { float: left; margin: .06em .1em 0 0; color: var(--pink-hot); font-family: "Fraunces", Georgia, serif; font-size: 5.5rem; font-weight: 900; line-height: .72; }
.text-button {
  padding: 0 0 .25rem;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  border: 0;
  border-bottom: 2px solid var(--pink-hot);
  background: transparent;
  font-weight: 800;
  cursor: pointer;
}
.text-button span { transition: transform .2s ease; }
.text-button:hover span { transform: translate(3px,-3px); }
.fact-bubble {
  position: relative;
  margin-top: 1.5rem !important;
  padding: 1.2rem 1.25rem;
  border: 1px solid var(--ink);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 5px 5px 0 var(--denim-pale);
  font-size: .92rem;
}
.polaroid-stack { position: relative; min-height: 500px; }
.polaroid { position: absolute; margin: 0; padding: .75rem .75rem 2.4rem; background: var(--white); box-shadow: 0 18px 45px rgba(16,17,22,.14); }
.polaroid img { aspect-ratio: 3 / 4; object-fit: cover; }
.polaroid figcaption { padding-top: .8rem; text-align: center; font-family: "Fraunces", Georgia, serif; font-style: italic; }
.polaroid--one { width: 68%; left: 0; top: 0; transform: rotate(-7deg); }
.polaroid--two { width: 67%; right: 0; top: 110px; transform: rotate(7deg); }
.passport { position: relative; padding: 1.2rem; border: 1px solid var(--ink); border-radius: 8px; background: var(--denim-pale); box-shadow: 10px 10px 0 var(--pink); transform: rotate(1deg); }
.passport__header { margin-bottom: 1rem; display: flex; justify-content: space-between; gap: 1rem; font-size: .65rem; font-weight: 800; letter-spacing: .1em; }
.passport img { aspect-ratio: 1 / 1.12; object-fit: cover; object-position: center 24%; filter: saturate(.85); }
.passport dl { margin: 1rem 0 0; }
.passport dl div { padding: .5rem 0; display: grid; grid-template-columns: .75fr 1.25fr; gap: 1rem; border-bottom: 1px dashed rgba(16,17,22,.35); }
.passport dt { font-size: .66rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.passport dd { margin: 0; font-size: .84rem; }
.passport__stamp { width: 105px; height: 105px; margin: 1.2rem 0 0 auto; display: grid; place-items: center; border: 4px double var(--pink-hot); border-radius: 50%; color: var(--pink-hot); text-align: center; font-weight: 900; line-height: 1; transform: rotate(-10deg); }
.passport__stamp small { font-size: .5rem; letter-spacing: .1em; }

.birthday-card { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem, 8vw, 8rem); align-items: center; }
.birthday-card__visual { position: relative; }
.birthday-card__visual img { height: min(70vw, 670px); object-fit: cover; object-position: center 25%; border-radius: 30px; }
.birthday-card__number { position: absolute; right: -2rem; bottom: -2rem; color: var(--pink); font-family: "Fraunces", Georgia, serif; font-size: clamp(7rem, 15vw, 13rem); font-weight: 900; line-height: .8; -webkit-text-stroke: 2px var(--ink); }
.eyebrow--light { color: var(--pink); }
.birthday-card__copy > p:not(.eyebrow) { max-width: 590px; color: #c8cad2; font-size: 1.08rem; }
.countdown { margin: 2.5rem 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: .75rem; }
.countdown div { padding: 1rem .5rem; border: 1px solid rgba(255,255,255,.22); border-radius: 14px; text-align: center; background: rgba(255,255,255,.04); }
.countdown strong { display: block; color: var(--pink); font-family: "Fraunces", Georgia, serif; font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1; }
.countdown span { font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: #a9abb5; }

.adventure-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 1.5rem; }
.adventure-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.adventure-card--large { grid-row: span 2; }
.image-button { width: 100%; display: block; padding: 0; border: 0; background: none; cursor: zoom-in; overflow: hidden; }
.image-button img { height: 340px; object-fit: cover; transition: transform .65s cubic-bezier(.2,.8,.2,1); }
.adventure-card--large .image-button img { height: 680px; object-position: center 26%; }
.image-button:hover img { transform: scale(1.035); }
.adventure-card__copy { padding: 1.5rem; }
.adventure-card__copy > span { color: var(--pink-hot); font-size: .68rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.adventure-card__copy h3 { margin-top: .55rem; font-size: clamp(1.8rem, 3vw, 3rem); }
.adventure-card__copy p { color: #5a5c66; }

.closet { display: grid; grid-template-columns: .86fr 1.14fr; gap: clamp(3rem, 8vw, 8rem); align-items: center; }
.closet__copy > p:not(.eyebrow) { max-width: 560px; color: #5b5d68; }
.closet__tags { margin: 2rem 0; display: flex; flex-wrap: wrap; gap: .65rem; }
.closet__tags span { padding: .45rem .8rem; border: 1px solid var(--line); border-radius: 999px; background: var(--white); font-size: .72rem; font-weight: 700; }
.closet__gallery { position: relative; min-height: 700px; }
.closet__photo { position: absolute; overflow: hidden; border-radius: 22px; box-shadow: var(--shadow); }
.closet__photo img { height: 100%; object-fit: cover; }
.closet__photo--main { width: 72%; height: 620px; right: 0; top: 0; }
.closet__photo--detail { width: 46%; height: 360px; left: 0; bottom: 0; border: 10px solid var(--cream); }
.closet__label { position: absolute; left: 6%; top: 4%; z-index: 2; width: 130px; height: 130px; display: grid; place-items: center; color: var(--white); background: var(--pink-hot); border-radius: 50%; text-align: center; font-weight: 900; line-height: 1; transform: rotate(-10deg); }

.instagram__actions { display: flex; flex-direction: column; align-items: flex-start; gap: .8rem; }
.instagram__actions p { margin: 0; }
.instagram-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.instagram-post { position: relative; overflow: hidden; border-radius: 18px; background: var(--paper); cursor: pointer; }
.instagram-post:nth-child(1), .instagram-post:nth-child(6) { grid-column: span 2; grid-row: span 2; }
.instagram-post img { height: 100%; min-height: 260px; aspect-ratio: 1 / 1; object-fit: cover; transition: transform .5s ease; }
.instagram-post:nth-child(1) img, .instagram-post:nth-child(6) img { min-height: 540px; }
.instagram-post:hover img { transform: scale(1.04); }
.instagram-post__overlay { position: absolute; inset: 0; display: flex; align-items: flex-end; padding: 1rem; color: var(--white); background: linear-gradient(transparent 55%, rgba(16,17,22,.74)); opacity: 0; transition: opacity .25s ease; }
.instagram-post:hover .instagram-post__overlay { opacity: 1; }
.instagram-post__overlay span { font-size: .8rem; font-weight: 700; }
.feed-note { margin: 1rem 0 0; color: #6a6c76; font-size: .75rem; }

.shop-preview__header { max-width: 760px; margin-bottom: 3rem; }
.shop-preview__header h2 { font-size: clamp(3rem, 6vw, 5.7rem); }
.shop-preview__header > p:not(.eyebrow) { max-width: 610px; }
.product-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.product-card { overflow: hidden; border: 1px solid rgba(16,17,22,.18); border-radius: 24px; background: var(--cream); }
.product-card__art { position: relative; height: 420px; display: grid; place-items: center; overflow: hidden; }
.product-card__art--tee { background: var(--ink); }
.product-card__art--tee::before { content: ""; width: 58%; height: 70%; border-radius: 25px 25px 45% 45%; background: #22242c; clip-path: polygon(22% 0, 39% 9%, 61% 9%, 78% 0, 100% 18%, 83% 37%, 78% 30%, 78% 100%, 22% 100%, 22% 30%, 17% 37%, 0 18%); }
.mini-brand { position: absolute; z-index: 2; color: var(--pink); text-align: center; font-size: 1.4rem; font-weight: 800; letter-spacing: .12em; line-height: 1; transform: rotate(-4deg); }
.mini-brand b { color: var(--denim-pale); font-size: 2rem; }
.product-card__art--stickers { background: var(--denim-pale); }
.sticker-sheet { width: 72%; height: 72%; display: grid; grid-template-columns: 1fr 1fr; gap: .7rem; padding: .9rem; border: 2px solid var(--ink); border-radius: 18px; background: var(--white); transform: rotate(5deg); box-shadow: 10px 10px 0 var(--pink); }
.sticker-sheet i { display: grid; place-items: center; border: 2px solid var(--ink); border-radius: 50%; color: var(--ink); background: var(--pink); font-size: 1rem; font-style: normal; font-weight: 900; }
.sticker-sheet i:nth-child(2) { border-radius: 8px; background: var(--denim); transform: rotate(-6deg); }
.sticker-sheet i:nth-child(3) { color: var(--pink); background: var(--ink); }
.sticker-sheet i:nth-child(4) { border-radius: 999px; background: var(--cream); }
.product-card__art--tote { background: var(--pink); }
.product-card__art--tote::before { content: ""; width: 62%; height: 66%; border-radius: 8px 8px 20px 20px; background: var(--cream); border: 2px solid var(--ink); box-shadow: 9px 9px 0 var(--denim); }
.product-card__art--tote::after { content: ""; position: absolute; top: 17%; width: 30%; height: 32%; border: 8px solid var(--ink); border-bottom: 0; border-radius: 50% 50% 0 0; }
.product-card__art--tote span { position: absolute; z-index: 2; text-align: center; font-family: "Fraunces", Georgia, serif; font-size: 1.6rem; font-weight: 900; line-height: .95; transform: rotate(-4deg); }
.product-card__info { padding: 1.2rem; display: flex; justify-content: space-between; gap: 1rem; align-items: center; }
.product-card__info p { margin: 0; font-weight: 800; }
.product-card__info span { color: #62646f; font-size: .88rem; }
.product-card__info button { width: 43px; height: 43px; border: 0; border-radius: 50%; color: var(--white); background: var(--ink); cursor: pointer; font-size: .74rem; font-weight: 800; }
.shop-preview__footer { margin-top: 2rem; text-align: center; }

.club__card { position: relative; overflow: hidden; padding: clamp(2rem, 5vw, 4rem); display: grid; grid-template-columns: 170px 1fr 1fr; gap: 2rem; align-items: center; border: 2px solid var(--ink); border-radius: 32px; background: var(--denim-pale); box-shadow: 12px 12px 0 var(--pink); }
.club__cat svg { width: 150px; fill: var(--ink); }
.club__cat svg path:last-child { fill: none; stroke: var(--pink-hot); stroke-width: 4; stroke-linecap: round; }
.club h2 { font-size: clamp(2.4rem, 4.5vw, 4.5rem); }
.club__card p { margin-bottom: 0; }
.signup-form { display: flex; gap: .7rem; }
.signup-form input { width: 100%; min-height: 52px; padding: 0 1.1rem; border: 1px solid var(--ink); border-radius: 999px; background: var(--white); outline: none; }
.signup-form input:focus { box-shadow: 0 0 0 4px rgba(255,120,183,.35); }
.form-status { grid-column: 2 / -1; margin: 0 !important; font-size: .82rem; font-weight: 700; }

.site-footer { padding: 4.5rem max(24px, calc((100vw - var(--max)) / 2)) 1.5rem; color: var(--white); background: var(--ink); }
.site-footer__brand { display: flex; justify-content: space-between; align-items: center; gap: 2rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.13); }
.brand--footer .brand__text { font-size: clamp(1.4rem, 3vw, 2.8rem); }
.site-footer__brand p { color: #aeb0ba; }
.site-footer__links { padding: 3rem 0; display: grid; grid-template-columns: repeat(2, 220px); justify-content: end; gap: 2rem; }
.site-footer__links div { display: flex; flex-direction: column; gap: .65rem; }
.site-footer__links strong { color: var(--pink); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; }
.site-footer__links a { color: #cfd0d6; }
.site-footer__links a:hover { color: var(--pink); }
.site-footer__bottom { padding-top: 1.2rem; display: flex; justify-content: space-between; gap: 1rem; border-top: 1px solid rgba(255,255,255,.13); color: #8d8f99; font-size: .72rem; }

.roaming-track { position: fixed; left: 0; right: 0; bottom: 8px; z-index: 45; height: 52px; pointer-events: none; }
.roaming-cat { position: absolute; left: 10px; bottom: 0; display: flex; align-items: center; gap: .3rem; transition: transform .12s linear; filter: drop-shadow(0 4px 6px rgba(16,17,22,.25)); }
.roaming-cat svg { width: 58px; fill: var(--pink); stroke: var(--ink); stroke-width: 2px; overflow: visible; }
.roaming-cat .tail { fill: none; stroke-width: 4px; stroke-linecap: round; transform-origin: 61px 34px; animation: tailwag .7s ease-in-out infinite alternate; }
.roaming-cat span { padding: .25rem .55rem; border: 1px solid var(--ink); border-radius: 999px; background: var(--white); font-size: .58rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }

.lightbox { width: min(92vw, 920px); padding: 0; border: 0; border-radius: 24px; background: transparent; overflow: visible; }
.lightbox::backdrop { background: rgba(16,17,22,.88); backdrop-filter: blur(8px); }
.lightbox img { max-height: 86vh; object-fit: contain; border-radius: 20px; }
.lightbox__close { position: absolute; right: -12px; top: -12px; width: 42px; height: 42px; border: 0; border-radius: 50%; background: var(--pink); cursor: pointer; font-size: 1.7rem; line-height: 1; }

.cart-drawer { position: fixed; inset: 0; z-index: 100; visibility: hidden; pointer-events: none; }
.cart-drawer[aria-hidden="false"] { visibility: visible; pointer-events: auto; }
.cart-drawer__backdrop { position: absolute; inset: 0; background: rgba(16,17,22,.6); opacity: 0; transition: opacity .25s ease; }
.cart-drawer[aria-hidden="false"] .cart-drawer__backdrop { opacity: 1; }
.cart-drawer__panel { position: absolute; top: 0; right: 0; width: min(100%, 460px); height: 100%; padding: 1.5rem; display: flex; flex-direction: column; background: var(--cream); transform: translateX(100%); transition: transform .35s cubic-bezier(.2,.8,.2,1); }
.cart-drawer[aria-hidden="false"] .cart-drawer__panel { transform: translateX(0); }
.cart-drawer__panel header { display: flex; justify-content: space-between; align-items: start; padding-bottom: 1.3rem; border-bottom: 1px solid var(--line); }
.cart-drawer__panel h2 { font-size: 2.5rem; }
.cart-drawer__panel header button { width: 42px; height: 42px; border: 1px solid var(--ink); border-radius: 50%; background: transparent; font-size: 1.5rem; cursor: pointer; }
.cart-items { flex: 1; overflow: auto; padding: .8rem 0; }
.cart-item { padding: 1rem 0; display: grid; grid-template-columns: 1fr auto; gap: 1rem; border-bottom: 1px solid var(--line); }
.cart-item p { margin: 0; font-weight: 800; }
.cart-item small { color: #676974; }
.cart-item button { align-self: center; border: 0; background: transparent; color: var(--pink-hot); cursor: pointer; font-size: .78rem; font-weight: 800; }
.cart-empty { flex: 1; display: none; place-items: center; align-content: center; text-align: center; color: #747680; }
.cart-empty span { color: var(--pink); font-size: 4rem; }
.cart-drawer__panel footer { padding-top: 1.2rem; border-top: 1px solid var(--line); }
.cart-drawer__panel footer > div { margin-bottom: 1rem; display: flex; justify-content: space-between; }
.cart-drawer__panel footer small { display: block; margin-top: .75rem; color: #757782; text-align: center; font-size: .69rem; }
.toast { position: fixed; left: 50%; bottom: 2rem; z-index: 120; padding: .8rem 1.1rem; border-radius: 999px; color: var(--white); background: var(--ink); opacity: 0; transform: translate(-50%, 20px); pointer-events: none; transition: .25s ease; font-weight: 700; box-shadow: var(--shadow); }
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }

/* Shop page */
.shop-hero { width: min(var(--max), calc(100% - 48px)); margin: 0 auto; padding: 4.5rem 0 5rem; display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(2rem, 6vw, 6rem); align-items: center; }
.shop-hero h1 { font-size: clamp(4rem, 9vw, 8rem); }
.shop-hero h1 span { color: var(--pink-hot); }
.shop-hero__copy > p:not(.eyebrow) { max-width: 520px; color: #555762; font-size: 1.08rem; }
.shop-hero__image { position: relative; }
.shop-hero__image img { height: 680px; object-fit: cover; object-position: center 28%; border-radius: 28px 28px 48% 48%; box-shadow: var(--shadow); }
.shop-hero__badge { position: absolute; right: -2rem; bottom: 2rem; width: 128px; height: 128px; display: grid; place-items: center; border-radius: 50%; color: var(--white); background: var(--ink); text-align: center; font-weight: 900; line-height: 1; transform: rotate(10deg); box-shadow: 6px 6px 0 var(--pink); }
.shop-toolbar { display: flex; justify-content: space-between; gap: 2rem; align-items: end; border-top: 1px solid var(--line); }
.shop-toolbar h2 { font-size: clamp(2.2rem, 4vw, 4rem); }
.filter-pills { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: .55rem; }
.filter-pills button { padding: .58rem .9rem; border: 1px solid var(--line); border-radius: 999px; background: var(--white); cursor: pointer; font-size: .78rem; font-weight: 700; }
.filter-pills button.is-active { color: var(--white); background: var(--ink); border-color: var(--ink); }
.shop-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; padding-bottom: 8rem; }
.shop-product { overflow: hidden; border: 1px solid var(--line); border-radius: 24px; background: var(--white); transition: opacity .2s ease, transform .2s ease; }
.shop-product[hidden] { display: none; }
.shop-product__image { height: 420px; }
.shop-product__image > em { position: absolute; top: 1rem; left: 1rem; padding: .4rem .65rem; border-radius: 999px; color: var(--ink); background: var(--pink); font-size: .62rem; font-style: normal; font-weight: 900; letter-spacing: .08em; }
.shop-product__copy { padding: 1.3rem; }
.shop-product__copy > div { display: flex; justify-content: space-between; gap: 1rem; }
.shop-product__copy p { margin: 0; font-weight: 800; }
.shop-product__copy small { display: block; min-height: 48px; margin: .35rem 0 1rem; color: #676974; }
.product-card__art--postcards { background: linear-gradient(135deg, var(--denim-pale), var(--pink-pale)); }
.product-card__art--postcards::before, .product-card__art--postcards::after { content: ""; position: absolute; width: 55%; height: 66%; border: 1px solid var(--ink); background: var(--cream); box-shadow: 7px 7px 0 var(--ink); }
.product-card__art--postcards::before { transform: rotate(-9deg) translate(-18px, 8px); }
.product-card__art--postcards::after { transform: rotate(7deg) translate(20px, -6px); }
.product-card__art--postcards span { position: relative; z-index: 2; color: var(--pink-hot); font-family: "Fraunces", Georgia, serif; font-size: 1.5rem; font-weight: 800; line-height: 1; text-align: center; transform: rotate(4deg); }
.product-card__art--pin { background: var(--ink); }
.product-card__art--pin span { width: 170px; height: 170px; display: grid; place-items: center; border: 10px solid var(--denim); border-radius: 50%; color: var(--pink); font-family: "Fraunces", Georgia, serif; font-size: 6rem; font-weight: 900; box-shadow: inset 0 0 0 5px var(--pink), 0 0 0 8px var(--pink-pale); }
.product-card__art--pin i { position: absolute; bottom: 2rem; color: var(--white); font-style: normal; font-size: .7rem; font-weight: 800; text-align: center; text-transform: uppercase; letter-spacing: .1em; }
.product-card__art--mug { background: var(--denim); }
.product-card__art--mug::before { content: ""; width: 55%; height: 58%; border-radius: 12px 12px 45px 45px; background: var(--cream); border: 2px solid var(--ink); box-shadow: 8px 8px 0 var(--pink); }
.product-card__art--mug::after { content: ""; position: absolute; right: 18%; width: 24%; height: 30%; border: 14px solid var(--cream); border-left: 0; border-radius: 0 50% 50% 0; filter: drop-shadow(2px 0 0 var(--ink)); }
.product-card__art--mug span { position: absolute; z-index: 2; width: 42%; text-align: center; font-family: "Fraunces", Georgia, serif; font-size: 1.15rem; font-weight: 900; line-height: .95; }
.lookbook { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(3rem, 7vw, 7rem); align-items: center; }
.lookbook__copy p:not(.eyebrow) { color: #b8bac3; }
.lookbook__images { display: grid; grid-template-columns: 1.2fr .8fr; gap: 1rem; align-items: end; }
.lookbook__images img { height: 600px; object-fit: cover; border-radius: 22px; }
.lookbook__images img:last-child { height: 420px; }

.not-found { min-height: 100vh; padding: 3rem; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; background: var(--denim-pale); }
.not-found h1 { font-size: clamp(4rem, 9vw, 8rem); }
.not-found img { max-height: 80vh; object-fit: cover; border-radius: 30px; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.8,.2,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@keyframes marquee { to { transform: translateX(-50%); } }
@keyframes sparkle { 0%,100% { transform: scale(.8) rotate(0); opacity: .65; } 50% { transform: scale(1.25) rotate(35deg); opacity: 1; } }
@keyframes tailwag { from { transform: rotate(-10deg); } to { transform: rotate(14deg); } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .roaming-track { display: none; }
}

@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .hero h1 { font-size: clamp(3.6rem, 7vw, 6rem); }
  .intro__grid { grid-template-columns: 1fr 1fr; }
  .intro__story { grid-column: 1 / -1; columns: 2; column-gap: 3rem; }
  .intro__story .text-button, .intro__story .fact-bubble { break-inside: avoid; }
  .club__card { grid-template-columns: 130px 1fr; }
  .club__card .signup-form, .form-status { grid-column: 2; }
  .club__cat svg { width: 120px; }
  .shop-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .announcement { font-size: .68rem; }
  .announcement span:not(.announcement__spark) { display: none; }
  .site-header { min-height: 70px; padding-inline: 20px; }
  .menu-toggle { display: block; z-index: 3; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .site-nav { position: fixed; inset: 70px 0 auto; padding: 1.2rem 20px 1.6rem; flex-direction: column; align-items: stretch; gap: 1rem; background: var(--cream); border-bottom: 1px solid var(--line); box-shadow: 0 25px 50px rgba(16,17,22,.14); transform: translateY(-130%); opacity: 0; pointer-events: none; transition: .3s ease; }
  .site-nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .site-nav > a { padding: .5rem 0; }
  .cart-button { justify-content: space-between; }
  .hero, .shop-hero { grid-template-columns: 1fr; }
  .hero { padding-top: 3.5rem; }
  .hero__visual { max-width: 650px; margin: 0 auto; }
  .hero__stats { max-width: 600px; }
  .section { padding-block: 6rem; }
  .section-heading--split { align-items: start; flex-direction: column; }
  .birthday-card, .closet, .lookbook { grid-template-columns: 1fr; }
  .birthday-card__visual img { height: min(110vw, 670px); }
  .adventure-grid { grid-template-columns: 1fr; }
  .adventure-card--large { grid-row: auto; }
  .adventure-card--large .image-button img, .image-button img { height: min(100vw, 620px); }
  .closet__gallery { min-height: 610px; }
  .closet__photo--main { height: 540px; }
  .closet__photo--detail { height: 300px; }
  .instagram-grid { grid-template-columns: repeat(2, 1fr); }
  .instagram-post:nth-child(1), .instagram-post:nth-child(6) { grid-column: span 1; grid-row: span 1; }
  .instagram-post:nth-child(1) img, .instagram-post:nth-child(6) img { min-height: 260px; }
  .product-row { grid-template-columns: 1fr; }
  .product-card { display: grid; grid-template-columns: .9fr 1.1fr; }
  .product-card__art { height: 320px; }
  .product-card__info { align-items: center; }
  .shop-hero__image img { height: min(110vw, 720px); }
  .shop-toolbar { align-items: start; flex-direction: column; }
  .filter-pills { justify-content: flex-start; }
  .lookbook__images img { height: 500px; }
  .lookbook__images img:last-child { height: 350px; }
}

@media (max-width: 620px) {
  .brand__mark { width: 36px; height: 36px; }
  .brand__mark svg { width: 26px; }
  .brand__text { font-size: .73rem; }
  .hero, .section, .shop-hero { width: min(100% - 28px, var(--max)); }
  .section--dark, .section--pink { width: 100%; padding-inline: 14px; }
  .hero { padding: 3rem 0 4rem; }
  .hero h1 { font-size: clamp(3.2rem, 16vw, 5.1rem); }
  .hero__lede { font-size: 1rem; }
  .hero__actions { flex-direction: column; }
  .hero__actions .button { width: 100%; }
  .hero__stats { grid-template-columns: 1fr 1fr 1fr; gap: .45rem; }
  .hero__stats strong { font-size: 1.7rem; }
  .hero__stats span { font-size: .58rem; }
  .hero__photo { border-radius: 42% 42% 20px 20px; }
  .sticker--top { width: 72px; height: 72px; right: -1%; font-size: .75rem; }
  .sticker--bottom { width: 125px; height: 54px; left: -1%; font-size: .8rem; }
  .section { padding-block: 4.5rem; }
  .section-heading h2, .birthday-card h2, .closet h2, .club h2, .lookbook h2 { font-size: clamp(2.7rem, 13vw, 4.2rem); }
  .intro__grid { grid-template-columns: 1fr; }
  .intro__story { grid-column: auto; columns: 1; }
  .polaroid-stack { min-height: 470px; }
  .passport { max-width: 420px; margin: 0 auto; }
  .birthday-card { gap: 3rem; }
  .birthday-card__number { right: 0; bottom: -1rem; }
  .countdown { gap: .35rem; }
  .countdown div { padding: .75rem .2rem; }
  .countdown strong { font-size: 1.85rem; }
  .adventure-card__copy h3 { font-size: 2rem; }
  .closet__gallery { min-height: 480px; }
  .closet__photo--main { width: 82%; height: 430px; }
  .closet__photo--detail { width: 50%; height: 230px; border-width: 6px; }
  .closet__label { width: 100px; height: 100px; font-size: .8rem; }
  .instagram-grid { gap: .55rem; }
  .instagram-post img, .instagram-post:nth-child(1) img, .instagram-post:nth-child(6) img { min-height: 190px; }
  .product-card { grid-template-columns: 1fr; }
  .product-card__art { height: 360px; }
  .club__card { padding: 2rem 1.2rem; grid-template-columns: 1fr; text-align: center; box-shadow: 7px 7px 0 var(--pink); }
  .club__cat { display: none; }
  .club__card .signup-form, .form-status { grid-column: 1; }
  .signup-form { flex-direction: column; }
  .site-footer__brand, .site-footer__bottom { align-items: flex-start; flex-direction: column; }
  .site-footer__links { grid-template-columns: 1fr 1fr; justify-content: stretch; }
  .roaming-cat span { display: none; }
  .shop-hero { padding-top: 3rem; }
  .shop-hero h1 { font-size: clamp(3.4rem, 17vw, 5.3rem); }
  .shop-hero__badge { right: -.25rem; width: 100px; height: 100px; font-size: .74rem; }
  .shop-grid { grid-template-columns: 1fr; padding-bottom: 5rem; }
  .shop-product__image { height: 380px; }
  .lookbook__images { grid-template-columns: 1fr 1fr; }
  .lookbook__images img { height: 390px; }
  .lookbook__images img:last-child { height: 270px; }
  .not-found { padding: 1.5rem; grid-template-columns: 1fr; }
  .not-found img { max-height: 50vh; }
}
