/* ==========================================================================
   ALLIE HONEY
   One pastel-pink world · rose-gold details · drifting clouds
   ========================================================================== */

/* Self-hosted fonts (SIL Open Font License) */
@font-face { font-family: "Cormorant Garamond"; src: url("../fonts/cormorant-garamond-latin-400-normal.woff2") format("woff2"); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: "Cormorant Garamond"; src: url("../fonts/cormorant-garamond-latin-500-normal.woff2") format("woff2"); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: "Cormorant Garamond"; src: url("../fonts/cormorant-garamond-latin-600-normal.woff2") format("woff2"); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: "Cormorant Garamond"; src: url("../fonts/cormorant-garamond-latin-700-normal.woff2") format("woff2"); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: "Cormorant Garamond"; src: url("../fonts/cormorant-garamond-latin-500-italic.woff2") format("woff2"); font-weight: 500; font-style: italic; font-display: swap; }
@font-face { font-family: "Jost"; src: url("../fonts/jost-latin-300-normal.woff2") format("woff2"); font-weight: 300; font-style: normal; font-display: swap; }
@font-face { font-family: "Jost"; src: url("../fonts/jost-latin-400-normal.woff2") format("woff2"); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: "Jost"; src: url("../fonts/jost-latin-500-normal.woff2") format("woff2"); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: "Pinyon Script"; src: url("../fonts/pinyon-script-latin-400-normal.woff2") format("woff2"); font-weight: 400; font-style: normal; font-display: swap; }

:root {
  --bg: #f9d9df;             /* the one pastel pink used everywhere */
  --ink: #5b3238;
  --ink-soft: #85555b;
  --rose: #b8746a;
  --rose-deep: #93524a;
  --rose-light: #f3cdb9;
  --blush: #f2a7b9;
  --blush-deep: #e48aa2;
  --card: rgba(255, 246, 248, 0.58);
  --card-strong: rgba(255, 249, 250, 0.82);
  --line: rgba(184, 116, 106, 0.32);
  --shadow: 0 18px 50px -22px rgba(150, 70, 90, 0.45);
  --shadow-sm: 0 8px 24px -14px rgba(150, 70, 90, 0.5);
  --gold-text: linear-gradient(100deg, #86463d 0%, #b06e5e 28%, #dca58f 45%, #a8624f 60%, #86463d 100%);
  --gold-fill: linear-gradient(135deg, #9a574d 0%, #bb7767 45%, #d49a86 60%, #a4604f 100%);
  --serif: "Cormorant Garamond", "Cormorant", Garamond, "Times New Roman", serif;
  --script: "Pinyon Script", "Great Vibes", "Snell Roundhand", cursive;
  --sans: "Jost", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  --radius: 28px;
  --gutter: clamp(18px, 4vw, 48px);
  --header-h: 76px;
  --ease: cubic-bezier(.22, .8, .24, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; }
button { font: inherit; color: inherit; }
::selection { background: #f4b3c3; color: var(--ink); }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip-link { position: fixed; left: 12px; top: -60px; z-index: 200; background: var(--card-strong); padding: 10px 16px; border-radius: 99px; }
.skip-link:focus { top: 12px; }
:focus-visible { outline: 2px solid var(--rose-deep); outline-offset: 3px; border-radius: 8px; }

.script { font-family: var(--script); font-weight: 400; text-transform: none; letter-spacing: 0; }

/* ---------- SKY ---------------------------------------------------------- */
.sky { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.sky-layer { position: absolute; inset: -10% 0; will-change: transform; }
.cloud { position: absolute; left: 0; width: var(--w, 260px); opacity: var(--o, .9); animation: drift var(--t, 90s) linear infinite; animation-delay: var(--d, 0s); will-change: transform; }
.cloud svg { width: 100%; height: auto; animation: bob 9s ease-in-out infinite; animation-delay: var(--d, 0s); }
.sky-far .cloud { filter: blur(1.5px); }
@keyframes drift { from { transform: translateX(calc(-1 * var(--w, 260px) - 40px)); } to { transform: translateX(calc(100vw + 40px)); } }
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.twinkle { position: absolute; width: var(--s, 14px); height: var(--s, 14px); color: #fff; animation: twinkle var(--t, 3.4s) ease-in-out infinite; animation-delay: var(--d, 0s); opacity: 0; }
.twinkle.rose { color: #e8b3a4; }
@keyframes twinkle { 0%, 100% { opacity: 0; transform: scale(.4) rotate(0deg); } 50% { opacity: 1; transform: scale(1) rotate(45deg); } }

.feather { position: absolute; top: -140px; width: var(--w, 22px); opacity: .75; animation: fall var(--t, 22s) linear infinite; animation-delay: var(--d, 0s); }
.feather svg { animation: sway 4.5s ease-in-out infinite alternate; }
@keyframes fall { from { transform: translate3d(0, 0, 0) rotate(0deg); } to { transform: translate3d(var(--x, 60px), 125vh, 0) rotate(var(--r, 200deg)); } }
@keyframes sway { from { transform: rotate(-25deg) translateX(-12px); } to { transform: rotate(25deg) translateX(12px); } }

.cursor-spark { position: fixed; z-index: 150; width: 12px; height: 12px; pointer-events: none; color: #fff; animation: spark-fade .9s ease-out forwards; }
.cursor-spark.rose { color: #e7ab9b; }
@keyframes spark-fade { from { opacity: 1; transform: translate(-50%, -50%) scale(1) rotate(0); } to { opacity: 0; transform: translate(calc(-50% + var(--dx)), calc(-50% + var(--dy))) scale(.2) rotate(120deg); } }

/* ---------- INTRO -------------------------------------------------------- */
.intro-stage, .intro-skip { display: none; }
html.intro .intro-stage { display: block; position: fixed; inset: 0; z-index: 90; pointer-events: none; overflow: hidden; }
html.intro .intro-skip { display: inline-flex; }
html.intro, html.intro body { overflow: hidden; }
html.intro body { touch-action: none; }
html.intro .site { transform: translate3d(0, 100vh, 0); }
html.intro .site-header { transform: translateY(-120%); opacity: 0; }

.intro-hand, .intro-clutch, .intro-chain { position: absolute; left: 0; top: 0; will-change: transform; }
.intro-hand svg { width: 100%; height: auto; overflow: visible; }
.intro-hand--back { z-index: 2; }
.intro-clutch { z-index: 3; }
.intro-hand--front { z-index: 4; filter: drop-shadow(0 14px 16px rgba(120, 55, 70, .28)); }
.intro-chain { z-index: 1; width: 10px; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='16' viewBox='0 0 10 16'%3E%3Cdefs%3E%3ClinearGradient id='g' x1='0' x2='1'%3E%3Cstop offset='0' stop-color='%23a4604f'/%3E%3Cstop offset='.5' stop-color='%23f3cdb9'/%3E%3Cstop offset='1' stop-color='%23b36f5e'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cellipse cx='5' cy='5' rx='2.6' ry='4.2' fill='none' stroke='url(%23g)' stroke-width='1.5'/%3E%3Crect x='4' y='9.4' width='2' height='6.2' rx='1' fill='url(%23g)'/%3E%3C/svg%3E") center top / 10px 16px repeat-y; filter: drop-shadow(0 2px 2px rgba(140, 70, 60, .25)); transform-origin: top center; }
.intro-chain::before, .intro-chain::after { content: ""; position: absolute; left: 50%; width: 14px; height: 14px; margin-left: -7px; border-radius: 50%; border: 2.5px solid #c98a76; box-shadow: inset 0 0 0 1px rgba(255,255,255,.6); }
.intro-chain::before { top: -7px; }
.intro-chain::after { bottom: -9px; }
.intro-clutch-bob { animation: clutch-bob 2.6s ease-in-out infinite; transform-origin: 50% 100%; }
.intro-clutch-squish { transform-origin: 50% 20%; transition: transform .28s var(--ease); }
.intro-clutch-squish.is-gripped { transform: scale(1.015, .975); }
.intro-clutch svg { width: 100%; height: auto; overflow: visible; }
.intro-clutch .clutch-sheen { animation: sheen 3.2s ease-in-out infinite; }
@keyframes clutch-bob { 0%, 100% { transform: translateY(0) rotate(-.6deg); } 50% { transform: translateY(-6px) rotate(.6deg); } }
@keyframes sheen { 0% { transform: skewX(-18deg) translateX(0); } 60%, 100% { transform: skewX(-18deg) translateX(520px); } }

.intro-caption {
  position: absolute; left: 0; right: 0; margin: 0; text-align: center;
  font-family: var(--script); color: var(--rose-deep); font-size: clamp(30px, 5.4vw, 52px); line-height: 1.05;
  opacity: 0; transition: opacity .8s ease, transform .8s var(--ease); transform: translateY(12px);
}
.intro-caption span { display: block; }
.intro-caption span + span { font-size: .62em; font-family: var(--serif); font-style: italic; letter-spacing: .04em; color: var(--ink-soft); margin-top: .35em; }
.intro-caption.is-on { opacity: 1; transform: none; }
.intro-caption.is-off { opacity: 0; transform: translateY(-20px); }

.intro-skip {
  position: fixed; right: 18px; bottom: calc(18px + env(safe-area-inset-bottom)); z-index: 95;
  align-items: center; gap: 6px; padding: 9px 16px; border-radius: 99px; border: 1px solid var(--line);
  background: rgba(255, 248, 250, .7); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  font-size: 13px; letter-spacing: .06em; cursor: pointer; color: var(--ink-soft);
  transition: opacity .4s ease, background .2s ease;
}
.intro-skip:hover { background: #fff; }

.glint { transform-box: fill-box; transform-origin: center; animation: glint 2.8s ease-in-out infinite; }
.glint-2 { animation-delay: 1.1s; }
.glint-3 { animation-delay: 1.9s; }
@keyframes glint { 0%, 70%, 100% { opacity: 0; transform: scale(.3) rotate(0); } 80% { opacity: 1; transform: scale(1) rotate(45deg); } 90% { opacity: .2; transform: scale(.6) rotate(90deg); } }
.finger-curl, .thumb-curl { transform-box: fill-box; transform-origin: 50% 0%; transition: transform .38s var(--ease); }
.is-gripping .finger-curl { transform: scaleY(.945); }
.is-gripping .finger-middle .finger-curl { transform: scaleY(.93); }
.is-gripping .thumb-curl { transform: rotate(-5deg) translateX(-4px); }

.burst-bit { position: absolute; width: 16px; height: 16px; color: #fff; pointer-events: none; animation: burst .9s cubic-bezier(.2, .7, .3, 1) forwards; }
.burst-bit.rose { color: #e8a998; }
@keyframes burst { from { opacity: 1; transform: translate(-50%, -50%) scale(.3); } to { opacity: 0; transform: translate(calc(-50% + var(--dx)), calc(-50% + var(--dy))) scale(1.1) rotate(160deg); } }

/* ---------- HEADER ------------------------------------------------------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  height: var(--header-h); display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 0 var(--gutter);
  transition: background .4s ease, box-shadow .4s ease, transform .8s var(--ease), opacity .6s ease, height .3s ease;
}
.site-header.is-scrolled { background: rgba(249, 217, 223, .78); backdrop-filter: blur(14px) saturate(1.2); -webkit-backdrop-filter: blur(14px) saturate(1.2); box-shadow: 0 10px 30px -22px rgba(140, 60, 80, .55); height: 64px; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand-icon { width: 54px; height: auto; transition: transform .6s var(--ease); }
.brand:hover .brand-icon { transform: translateY(-3px) rotate(-4deg); }
.brand-word { display: flex; align-items: baseline; gap: 6px; line-height: 1; }
.brand-allie { font-family: var(--serif); font-weight: 700; font-size: 24px; letter-spacing: .18em; text-transform: uppercase; background: var(--gold-text); background-size: 200% 100%; -webkit-background-clip: text; background-clip: text; color: transparent; animation: goldshift 8s ease-in-out infinite; }
.brand-honey { font-family: var(--script); font-size: 27px; color: var(--rose-deep); margin-left: -2px; }
@keyframes goldshift { 0%, 100% { background-position: 0% 0; } 50% { background-position: 100% 0; } }

.nav { display: flex; gap: clamp(14px, 2vw, 30px); }
.nav a { position: relative; text-decoration: none; font-size: 14px; letter-spacing: .12em; text-transform: uppercase; font-weight: 400; padding: 6px 0; color: var(--ink); }
.nav a::after { content: ""; position: absolute; left: 50%; right: 50%; bottom: 0; height: 1.5px; background: var(--gold-fill); transition: left .35s var(--ease), right .35s var(--ease); }
.nav a:hover::after, .nav a.is-current::after { left: 0; right: 0; }
.header-actions { display: flex; align-items: center; gap: 10px; }

.cart-btn { position: relative; width: 52px; height: 44px; border: 0; background: none; cursor: pointer; padding: 0; }
.cart-icon { display: block; width: 46px; margin: 0 auto; transition: transform .4s var(--ease); }
.cart-icon svg { width: 100%; height: auto; overflow: visible; }
.cart-btn:hover .cart-icon { transform: translateY(-2px) rotate(-5deg); }
.cart-btn.is-pop .cart-icon { animation: pop .7s var(--ease); }
.cart-count { position: absolute; right: -2px; top: -4px; min-width: 20px; height: 20px; padding: 0 5px; border-radius: 99px; background: var(--gold-fill); color: #fff; font-size: 11px; font-weight: 500; display: grid; place-items: center; box-shadow: 0 3px 8px -3px rgba(140, 60, 60, .6); transform: scale(0); transition: transform .35s var(--ease); }
.cart-count.has-items { transform: scale(1); }
@keyframes pop { 0% { transform: scale(1); } 30% { transform: scale(1.25) rotate(-8deg); } 60% { transform: scale(.92) rotate(4deg); } 100% { transform: scale(1); } }

.menu-btn { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 50%; background: rgba(255, 248, 250, .5); cursor: pointer; padding: 0; position: relative; }
.menu-btn span { position: absolute; left: 13px; right: 13px; height: 1.5px; background: var(--ink); border-radius: 2px; transition: transform .35s var(--ease), opacity .2s; }
.menu-btn span:nth-child(1) { top: 15px; } .menu-btn span:nth-child(2) { top: 21px; } .menu-btn span:nth-child(3) { top: 27px; }
.menu-btn[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-btn[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-btn[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- LAYOUT ------------------------------------------------------- */
.site { position: relative; z-index: 2; }
html.intro .site { will-change: transform; }
.section { position: relative; padding: clamp(64px, 8vw, 110px) var(--gutter); max-width: 1280px; margin: 0 auto; }
.section-head { text-align: center; max-width: 680px; margin: 0 auto clamp(34px, 5vw, 60px); }
.kicker { display: inline-flex; align-items: center; gap: 12px; margin: 0 0 10px; font-size: 13px; letter-spacing: .32em; text-transform: uppercase; font-weight: 400; color: var(--rose-deep); }
.kicker::before, .kicker::after { content: ""; width: 34px; height: 1px; background: linear-gradient(90deg, transparent, var(--rose)); }
.kicker::after { transform: scaleX(-1); }
.title { margin: 0; font-family: var(--serif); font-weight: 500; font-size: clamp(40px, 6.2vw, 78px); line-height: 1; letter-spacing: .01em; color: var(--ink); }
.title .script { display: inline-block; font-size: 1.22em; line-height: .8; padding: 0 .12em .12em .06em; filter: drop-shadow(0 1px 0 rgba(255,255,255,.55)); background: var(--gold-text); background-size: 220% 100%; -webkit-background-clip: text; background-clip: text; color: transparent; animation: goldshift 7s ease-in-out infinite; }
.lede { margin: 18px auto 0; max-width: 560px; color: var(--ink-soft); font-size: 1.08em; }

/* ---------- BUTTONS & CHIPS --------------------------------------------- */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 52px; padding: 0 30px; border-radius: 99px; border: 0; cursor: pointer; overflow: hidden; isolation: isolate;
  font-family: var(--sans); font-size: 13.5px; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; text-decoration: none;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.btn-primary { color: #fff; background: var(--gold-fill); box-shadow: 0 14px 30px -14px rgba(147, 82, 74, .8), inset 0 1px 0 rgba(255, 255, 255, .35); }
.btn-primary::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, .5) 48%, transparent 66%); transform: translateX(-120%); transition: transform .9s var(--ease); }
.btn-primary:hover::after { transform: translateX(120%); }
.btn-ghost { color: var(--rose-deep); background: rgba(255, 248, 250, .55); box-shadow: inset 0 0 0 1.2px var(--rose); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
.btn-ghost:hover { background: rgba(255, 252, 253, .85); }
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(0) scale(.98); }
.link-btn { background: none; border: 0; padding: 0; text-decoration: underline; text-underline-offset: 3px; cursor: pointer; color: var(--rose-deep); font-size: inherit; }

.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  position: relative; display: inline-flex; align-items: center; min-height: 38px; padding: 0 16px; border-radius: 99px; cursor: pointer;
  border: 1px solid var(--line); background: rgba(255, 248, 250, .5); font-size: 13.5px; letter-spacing: .06em; color: var(--ink);
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .25s var(--ease);
}
.chip:hover { transform: translateY(-2px); background: rgba(255, 252, 253, .85); }
.chip.is-active, .chip:has(input:checked) { background: var(--gold-fill); color: #fff; border-color: transparent; box-shadow: var(--shadow-sm); }
.chip input { position: absolute; opacity: 0; pointer-events: none; }
.chip:has(input:focus-visible) { outline: 2px solid var(--rose-deep); outline-offset: 2px; }
.filter-chips { justify-content: center; margin-bottom: 36px; }

/* ---------- HERO --------------------------------------------------------- */
.hero { position: relative; min-height: 100vh; min-height: 100svh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: calc(var(--header-h) + 10px) var(--gutter) 90px; }
.hero-hook { transition: opacity .6s ease; position: absolute; top: -4px; left: 50%; width: 18px; height: 18px; margin-left: -9px; border-radius: 50%; border: 3px solid #c98a76; box-shadow: inset 0 0 0 1px rgba(255,255,255,.6), 0 2px 6px rgba(140,70,60,.25); opacity: 0; }
html.intro .hero-hook { opacity: 1; }
.hero-logo { position: relative; width: min(88vw, 64vh, 620px); margin-top: -2vh; display: flex; flex-direction: column; align-items: center; }
.logo-mark { position: relative; width: 100%; animation: float 7s ease-in-out infinite; }
.logo-phoenix { width: 100%; height: auto; }
.logo-shine {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
  -webkit-mask: url("../img/phoenix.webp") center / contain no-repeat; mask: url("../img/phoenix.webp") center / contain no-repeat;
}
.logo-shine::before { content: ""; position: absolute; inset: -20%; background: linear-gradient(115deg, transparent 38%, rgba(255, 255, 255, .85) 48%, rgba(255, 240, 230, .4) 52%, transparent 62%); transform: translateX(-90%); animation: shine 6.5s ease-in-out infinite 1.2s; mix-blend-mode: soft-light; }
.logo-lockup { position: relative; margin: -9% 0 0; display: flex; flex-direction: column; align-items: center; line-height: .82; text-align: center; }
.logo-allie { font-family: var(--serif); font-weight: 700; font-size: clamp(42px, 10.5vw, 104px); letter-spacing: .2em; text-indent: .2em; text-transform: uppercase; background: var(--gold-text); background-size: 220% 100%; -webkit-background-clip: text; background-clip: text; color: transparent; animation: goldshift 9s ease-in-out infinite; }
.logo-honey { font-family: var(--script); font-size: clamp(52px, 13vw, 128px); margin-top: -.18em; padding-bottom: .12em; background: var(--gold-text); background-size: 220% 100%; -webkit-background-clip: text; background-clip: text; color: transparent; animation: goldshift 9s ease-in-out infinite .4s; filter: drop-shadow(0 1px 0 rgba(255, 255, 255, .5)); }
.logo-honey::after { content: ""; display: inline-block; width: .17em; height: .17em; margin-left: .05em; vertical-align: .12em; background: var(--gold-fill); -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 21s-8-5-8-10.5A4.5 4.5 0 0 1 12 7.8 4.5 4.5 0 0 1 20 10.5C20 16 12 21 12 21Z'/%3E%3C/svg%3E") center / contain no-repeat; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 21s-8-5-8-10.5A4.5 4.5 0 0 1 12 7.8 4.5 4.5 0 0 1 20 10.5C20 16 12 21 12 21Z'/%3E%3C/svg%3E") center / contain no-repeat; }
.hero-halo { position: absolute; left: 50%; top: 38%; width: 92%; aspect-ratio: 1; transform: translate(-50%, -50%); border-radius: 50%; background: radial-gradient(circle, rgba(255, 250, 251, .75) 0%, rgba(255, 245, 247, .35) 45%, rgba(255, 240, 244, 0) 70%); animation: breathe 6s ease-in-out infinite; }
.hero-orbit { position: absolute; inset: -4% -4% 10%; animation: spin 60s linear infinite; }
.hero-orbit .twinkle { animation-duration: 2.8s; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes shine { 0% { transform: translateX(-90%); } 45%, 100% { transform: translateX(90%); } }
@keyframes breathe { 0%, 100% { transform: scale(.94); opacity: .8; } 50% { transform: scale(1.04); opacity: 1; } }
@keyframes spin { to { transform: rotate(360deg); } }
.hero-tag { max-width: 560px; margin: clamp(4px, 1vh, 14px) auto 0; font-family: var(--serif); font-size: clamp(20px, 2.3vw, 26px); line-height: 1.35; color: var(--ink); }
.hero-tag em { color: var(--rose-deep); }
.hero-ctas { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 26px; }
.scroll-cue { position: absolute; bottom: 26px; left: 50%; width: 26px; height: 42px; margin-left: -13px; border-radius: 99px; border: 1.3px solid var(--rose); }
.scroll-cue span { position: absolute; left: 50%; top: 8px; width: 4px; height: 8px; margin-left: -2px; border-radius: 4px; background: var(--rose); animation: cue 1.8s ease-in-out infinite; }
@keyframes cue { 0% { transform: translateY(0); opacity: 1; } 80% { transform: translateY(14px); opacity: 0; } 100% { opacity: 0; } }
.reveal-hero { opacity: 1; }
html.intro .reveal-hero { opacity: 0; transform: translateY(18px); }
.reveal-hero.is-in { opacity: 1 !important; transform: none !important; transition: opacity 1s ease, transform 1s var(--ease); }

/* ---------- RIBBON ------------------------------------------------------- */
.ribbon { position: relative; overflow: hidden; padding: 16px 0; margin: 10px 0; transform: rotate(-2deg); border-block: 1px solid var(--line); background: rgba(255, 247, 249, .42); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
.ribbon-track { display: flex; align-items: center; gap: 28px; width: max-content; animation: marquee 38s linear infinite; }
.ribbon-track span { font-family: var(--serif); font-size: clamp(22px, 2.6vw, 32px); letter-spacing: .2em; text-transform: uppercase; color: var(--rose-deep); white-space: nowrap; }
.ribbon-track span.script { font-family: var(--script); text-transform: none; letter-spacing: 0; font-size: clamp(28px, 3.3vw, 42px); color: var(--ink-soft); }
.ribbon-track i { width: 16px; height: 16px; flex: none; background: var(--gold-fill); -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-10 -10 20 20'%3E%3Cpath d='M0,-10 Q1.2,-1.2 10,0 Q1.2,1.2 0,10 Q-1.2,1.2 -10,0 Q-1.2,-1.2 0,-10Z'/%3E%3C/svg%3E") center / contain no-repeat; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-10 -10 20 20'%3E%3Cpath d='M0,-10 Q1.2,-1.2 10,0 Q1.2,1.2 0,10 Q-1.2,1.2 -10,0 Q-1.2,-1.2 0,-10Z'/%3E%3C/svg%3E") center / contain no-repeat; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- PRODUCTS ----------------------------------------------------- */
.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(18px, 2.4vw, 30px); grid-auto-flow: dense; }
@media (max-width: 1100px) { .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 780px) { .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 540px) { .product-grid { grid-template-columns: minmax(0, 1fr); } }
.product.is-featured { grid-column: span 2; grid-row: span 2; }
@media (max-width: 780px) { .product.is-featured { grid-row: auto; } }
@media (max-width: 540px) { .product.is-featured { grid-column: auto; } }
.product.is-featured .product-stage { aspect-ratio: auto; flex: 1; min-height: clamp(260px, 30vw, 440px); background: radial-gradient(90% 80% at 50% 45%, rgba(255, 255, 255, .95), rgba(236, 248, 252, .45) 55%, rgba(255, 255, 255, 0)); }
.product.is-featured .product-name { font-size: clamp(28px, 2.6vw, 36px); }
.product.is-featured .product-price { font-size: 28px; }
.product.is-featured .product-note { font-size: 15.5px; }
.product-info { display: flex; flex-direction: column; }
.product-photo { position: relative; width: 84%; max-width: 520px; height: auto; transform: translate(var(--mx, 0px), var(--my, 0px)); transition: transform .6s var(--ease); filter: drop-shadow(0 14px 16px rgba(40, 110, 140, .25)); animation: float 6s ease-in-out infinite; cursor: zoom-in; }
.product:not(.is-featured) .product-photo { width: 78%; }
.product-stage .twinkle { position: absolute; }
.photo-btn { position: absolute; right: 12px; bottom: 12px; z-index: 2; padding: 6px 12px; border-radius: 99px; border: 1px solid var(--line); background: rgba(255, 255, 255, .85); font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--rose-deep); cursor: pointer; transition: background .2s ease, transform .3s var(--ease); }
.photo-btn:hover { background: #fff; transform: translateY(-2px); }
.opt:disabled { cursor: default; }
.product-swatch.is-glitter, .swatch.is-glitter { background-image: radial-gradient(circle at 30% 30%, rgba(255,255,255,.9) 0 1px, transparent 1.5px), radial-gradient(circle at 70% 60%, rgba(255,255,255,.8) 0 1px, transparent 1.5px), radial-gradient(circle at 45% 75%, rgba(255,255,255,.7) 0 .8px, transparent 1.3px), radial-gradient(circle at 60% 25%, rgba(255,255,255,.8) 0 .8px, transparent 1.3px); background-size: 9px 9px, 11px 11px, 7px 7px, 13px 13px; background-color: var(--c); }
.cart-item-art img { width: 86%; height: auto; }
.photo-dialog { border: 0; padding: 0; border-radius: 28px; background: var(--bg); max-width: min(560px, calc(100vw - 32px)); max-height: calc(100vh - 40px); overflow: auto; box-shadow: 0 40px 80px -30px rgba(90, 30, 50, .6); color: var(--ink); }
.photo-dialog::backdrop { background: rgba(120, 60, 72, .35); backdrop-filter: blur(4px); }
.photo-dialog figure { margin: 0; }
.photo-dialog img { width: 100%; height: auto; }
.photo-dialog figcaption { padding: 14px 20px 18px; font-family: var(--serif); font-size: 22px; font-weight: 600; text-align: center; }
.photo-close { position: absolute; top: 12px; right: 12px; background: rgba(255, 255, 255, .85); }
.product {
  position: relative; display: flex; flex-direction: column; border-radius: var(--radius); padding: 18px 18px 20px;
  background: var(--card); border: 1px solid rgba(255, 255, 255, .7); box-shadow: var(--shadow);
  backdrop-filter: blur(12px) saturate(1.1); -webkit-backdrop-filter: blur(12px) saturate(1.1);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), opacity .45s ease;
}
.product:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -28px rgba(150, 70, 90, .6); }
.product.is-hidden { display: none; }
.product-stage { position: relative; aspect-ratio: 5 / 4; border-radius: 20px; display: grid; place-items: center; overflow: hidden; background: radial-gradient(120% 90% at 50% 20%, rgba(255, 255, 255, .85), rgba(255, 240, 244, .3) 60%, rgba(255, 255, 255, 0)); }
.product-stage::before { content: ""; position: absolute; width: 70%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, var(--c, #f6c3cf) 0%, transparent 68%); opacity: .35; filter: blur(8px); transition: transform .8s var(--ease); }
.product:hover .product-stage::before { transform: scale(1.2); }
.product-stage .set-svg { position: relative; width: 82%; height: auto; transform: translate(var(--mx, 0px), var(--my, 0px)); transition: transform .6s var(--ease); }
.set-nail { transform-box: view-box; transform-origin: 50% 130%; transition: transform .6s var(--ease); }
.product:hover .set-nail { transform: translateY(-4px) rotate(calc((var(--i) - 2) * 2.5deg)); transition-delay: calc(var(--i) * 40ms); }
.product-tag { position: absolute; top: 14px; left: 14px; z-index: 2; padding: 4px 12px; border-radius: 99px; background: rgba(255, 255, 255, .85); font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--rose-deep); box-shadow: var(--shadow-sm); }
.product-meta { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; margin-top: 16px; }
.product-name { margin: 0; font-family: var(--serif); font-size: 26px; font-weight: 600; line-height: 1.1; }
.product-price { font-family: var(--serif); font-size: 22px; font-weight: 500; color: var(--rose-deep); white-space: nowrap; }
.product-note { margin: 4px 0 12px; font-size: 14px; color: var(--ink-soft); }
.opt-label { display: block; font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-soft); margin: 8px 0 6px; }
.opt-row { display: flex; flex-wrap: wrap; gap: 6px; }
.opt { min-height: 30px; padding: 0 11px; border-radius: 99px; border: 1px solid var(--line); background: rgba(255, 255, 255, .45); font-size: 12.5px; cursor: pointer; transition: all .2s ease; }
.opt:hover { background: #fff; }
.opt.is-active { background: var(--ink); color: #fff; border-color: var(--ink); }
.product .btn { margin-top: auto; width: 100%; min-height: 48px; }
.product .product-actions { margin-top: 16px; }
.product-swatch { display: inline-block; width: 12px; height: 12px; border-radius: 50%; background: var(--c); box-shadow: inset 0 0 0 1px rgba(0,0,0,.08), 0 0 0 2px #fff; margin-right: 8px; vertical-align: middle; }

/* ---------- STUDIO ------------------------------------------------------- */
.studio-card { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); gap: clamp(20px, 4vw, 60px); align-items: center; padding: clamp(20px, 4vw, 54px); border-radius: 40px; background: var(--card); border: 1px solid rgba(255, 255, 255, .7); box-shadow: var(--shadow); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); }
.studio-stage { position: relative; height: clamp(420px, 50vw, 600px); }
.studio-glow { position: absolute; left: 50%; top: 30%; width: 90%; aspect-ratio: 1; transform: translate(-50%, -50%); border-radius: 50%; background: radial-gradient(circle, var(--studio-c, #f6c3cf), transparent 65%); opacity: .5; filter: blur(12px); transition: background .6s ease; }
.studio-hand { position: absolute; left: 50%; top: 3%; height: 97%; aspect-ratio: 280 / 640; transform: translateX(-50%) rotate(180deg); animation: studio-float 6s ease-in-out infinite; -webkit-mask: linear-gradient(to bottom, transparent 0%, #000 30%); mask: linear-gradient(to bottom, transparent 0%, #000 30%); }
.studio-hand svg { width: 100%; height: 100%; overflow: visible; filter: drop-shadow(0 -16px 20px rgba(120, 55, 70, .22)); }
.studio-hand .nail { transition: d .5s var(--ease); }
.studio-hand.is-swap .finger-curl .nail, .studio-hand.is-swap .thumb-curl .nail { animation: nail-pop .55s var(--ease); }
@keyframes studio-float { 0%, 100% { transform: translateX(-50%) rotate(180deg) translateY(0); } 50% { transform: translateX(-50%) rotate(180deg) translateY(10px); } }
@keyframes nail-pop { 0% { opacity: .2; } 100% { opacity: 1; } }
.studio-sparkles { position: absolute; inset: 0; pointer-events: none; }
.studio-controls .kicker::before { display: none; }
.studio-controls .kicker { padding-left: 0; }
.studio-controls .title, .studio-controls .lede { text-align: left; margin-left: 0; }
.control { border: 0; padding: 0; margin: 22px 0 0; }
.control legend { font-size: 12px; letter-spacing: .22em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 10px; padding: 0; }
.control output { margin-left: 8px; font-family: var(--serif); font-size: 18px; letter-spacing: .02em; text-transform: none; font-style: italic; color: var(--rose-deep); }
.swatches { display: flex; flex-wrap: wrap; gap: 10px; }
.swatch { width: 40px; height: 40px; border-radius: 50%; border: 0; cursor: pointer; background: var(--c); box-shadow: inset 0 -6px 10px rgba(0, 0, 0, .08), inset 0 5px 8px rgba(255, 255, 255, .6), 0 4px 10px -4px rgba(120, 50, 70, .5); position: relative; transition: transform .3s var(--ease); }
.swatch:hover { transform: translateY(-3px) scale(1.06); }
.swatch.is-active::after { content: ""; position: absolute; inset: -6px; border-radius: 50%; border: 1.5px solid var(--rose-deep); }
.studio-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }


/* ---------- DRESSES ------------------------------------------------------ */
.dress-stage { aspect-ratio: 4 / 5; background: radial-gradient(110% 85% at 50% 25%, rgba(255, 255, 255, .8), rgba(255, 245, 248, .3) 62%, rgba(255, 255, 255, 0)); }
.dress-stage .dress-svg { height: 92%; width: auto; max-width: 90%; transform: translate(var(--mx, 0px), var(--my, 0px)); transition: transform .6s var(--ease); }
.dress-card:hover .dress-svg { transform: translate(var(--mx, 0px), calc(var(--my, 0px) - 6px)) rotate(-1.2deg); }
.dress-card .dress-body { transition: filter .5s ease; }
.soon { display: block; margin-top: 4px; font-size: 12.5px; font-style: italic; color: var(--ink-soft); opacity: .85; }
.section-foot { text-align: center; margin: 34px auto 0; color: var(--ink-soft); }
.section-foot a { color: var(--rose-deep); }
.cart-item-art .dress-svg { height: 100%; width: auto; }

/* ---------- HOW ---------------------------------------------------------- */
.steps { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(16px, 2vw, 26px); counter-reset: s; }
.step { position: relative; padding: 30px 24px 28px; border-radius: var(--radius); background: var(--card); border: 1px solid rgba(255, 255, 255, .7); box-shadow: var(--shadow); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); transition: transform .5s var(--ease); }
.step:hover { transform: translateY(-6px); }
.step-num { position: absolute; top: 18px; right: 22px; font-family: var(--serif); font-size: 46px; font-weight: 500; line-height: 1; background: var(--gold-text); -webkit-background-clip: text; background-clip: text; color: transparent; opacity: .5; }
.step-icon { display: grid; place-items: center; width: 58px; height: 58px; border-radius: 50%; background: rgba(255, 255, 255, .8); box-shadow: var(--shadow-sm); color: var(--rose-deep); }
.step-icon svg, .ci svg { width: 26px; height: 26px; }
.step h3 { margin: 18px 0 6px; font-family: var(--serif); font-size: 26px; font-weight: 600; line-height: 1.15; }
.step p { margin: 0; font-size: 15px; color: var(--ink-soft); }
.steps .step:nth-child(2) { margin-top: 40px; } .steps .step:nth-child(3) { margin-top: 18px; } .steps .step:nth-child(4) { margin-top: 56px; }

/* ---------- CUSTOM FORM -------------------------------------------------- */
.custom-wrap { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(26px, 5vw, 70px); align-items: start; }
.custom-head { text-align: left; margin: 0; position: sticky; top: calc(var(--header-h) + 30px); }
.custom-head .kicker::before { display: none; }
.custom-head .lede { margin-left: 0; }
.contact-mini { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 12px; }
.contact-mini li { display: flex; align-items: center; gap: 12px; }
.contact-mini a { text-decoration: none; font-size: 17px; border-bottom: 1px solid var(--line); }
.ci { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: rgba(255, 255, 255, .75); color: var(--rose-deep); box-shadow: var(--shadow-sm); flex: none; }
.ci svg { width: 20px; height: 20px; }
.custom-art { margin-top: 30px; width: min(100%, 360px); }
.custom-art svg { width: 100%; height: auto; }

.inquiry { position: relative; padding: clamp(22px, 3.4vw, 42px); border-radius: 34px; background: var(--card-strong); border: 1px solid rgba(255, 255, 255, .8); box-shadow: var(--shadow); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); display: grid; gap: 18px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: grid; gap: 7px; border: 0; padding: 0; margin: 0; min-width: 0; }
.field > span, .field legend { font-size: 11.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-soft); padding: 0; margin-bottom: 7px; }
.field input, .field textarea, .sizes-input {
  width: 100%; border: 1px solid var(--line); border-radius: 16px; padding: 13px 16px; background: rgba(255, 255, 255, .7);
  font: 400 16px var(--sans); color: var(--ink); transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field textarea:focus, .sizes-input:focus { outline: none; border-color: var(--rose); background: #fff; box-shadow: 0 0 0 4px rgba(242, 167, 185, .35); }
.field input::placeholder, .field textarea::placeholder, .sizes-input::placeholder { color: #b58a90; }
.field.is-invalid input, .field.is-invalid textarea { border-color: #c73a53; box-shadow: 0 0 0 3px rgba(199, 58, 83, .15); }
.sizes-input { margin-top: 10px; }
.botcheck { display: none !important; }
.btn-submit { justify-self: start; min-width: 230px; }
.btn-loading { display: none; width: 18px; height: 18px; border-radius: 50%; border: 2px solid rgba(255, 255, 255, .5); border-top-color: #fff; animation: spin .8s linear infinite; }
.is-sending .btn-loading { display: inline-block; }
.is-sending .btn-label { opacity: .7; }
.form-status { margin: 0; min-height: 1.4em; font-size: 15px; }
.form-status.is-error { color: #b0304a; }
.form-status.is-success { color: var(--rose-deep); }
.order-summary { padding: 16px 18px; border-radius: 18px; background: rgba(255, 238, 243, .9); border: 1px dashed var(--rose); }
.order-summary-title { margin: 0 0 6px; font-family: var(--serif); font-size: 22px; font-weight: 600; }
.order-summary ul { margin: 0 0 8px; padding-left: 18px; font-size: 14.5px; }
.inquiry-thanks { text-align: center; padding: 30px 10px; }
.inquiry-thanks h3 { font-family: var(--serif); font-size: 40px; font-weight: 500; margin: 12px 0 6px; }
.inquiry-thanks .script { font-size: 1.2em; color: var(--rose-deep); }
.thanks-heart { width: 90px; margin: 0 auto; animation: heartbeat 1.4s ease-in-out infinite; }
@keyframes heartbeat { 0%, 100% { transform: scale(1); } 15% { transform: scale(1.14); } 30% { transform: scale(.98); } 45% { transform: scale(1.08); } }

/* ---------- ABOUT -------------------------------------------------------- */
.about-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(26px, 6vw, 90px); align-items: center; }
.about-art { position: relative; display: grid; place-items: center; aspect-ratio: 1; }
.about-phoenix { position: relative; z-index: 1; width: 92%; animation: float 8s ease-in-out infinite; }
.about-ring { position: absolute; inset: 4%; border-radius: 50%; border: 1.5px solid rgba(184, 116, 106, .45); animation: spin 40s linear infinite; }
.about-ring::before, .about-ring::after { content: ""; position: absolute; width: 16px; height: 16px; background: var(--gold-fill); -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-10 -10 20 20'%3E%3Cpath d='M0,-10 Q1.2,-1.2 10,0 Q1.2,1.2 0,10 Q-1.2,1.2 -10,0 Q-1.2,-1.2 0,-10Z'/%3E%3C/svg%3E") center / contain no-repeat; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-10 -10 20 20'%3E%3Cpath d='M0,-10 Q1.2,-1.2 10,0 Q1.2,1.2 0,10 Q-1.2,1.2 -10,0 Q-1.2,-1.2 0,-10Z'/%3E%3C/svg%3E") center / contain no-repeat; }
.about-ring::before { top: -8px; left: 50%; margin-left: -8px; }
.about-ring::after { bottom: 14%; right: 4%; width: 11px; height: 11px; }
.about-copy .kicker::before { display: none; }
.about-copy .title { margin-bottom: 18px; }
.about-copy p { font-size: 1.06em; }
.signature { font-family: var(--script); font-size: 42px; color: var(--rose-deep); margin: 10px 0 0; }

/* ---------- FAQ ---------------------------------------------------------- */
.faq-list { max-width: 820px; margin: 0 auto; display: grid; gap: 14px; }
.faq details { border-radius: 22px; background: var(--card); border: 1px solid rgba(255, 255, 255, .7); box-shadow: var(--shadow-sm); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); overflow: hidden; }
.faq summary { list-style: none; cursor: pointer; padding: 20px 60px 20px 26px; position: relative; font-family: var(--serif); font-size: 23px; font-weight: 600; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: ""; position: absolute; right: 26px; top: 50%; width: 14px; height: 14px; margin-top: -7px; background: var(--gold-fill); transition: transform .4s var(--ease); -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-10 -10 20 20'%3E%3Cpath d='M0,-10 Q1.2,-1.2 10,0 Q1.2,1.2 0,10 Q-1.2,1.2 -10,0 Q-1.2,-1.2 0,-10Z'/%3E%3C/svg%3E") center / contain no-repeat; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-10 -10 20 20'%3E%3Cpath d='M0,-10 Q1.2,-1.2 10,0 Q1.2,1.2 0,10 Q-1.2,1.2 -10,0 Q-1.2,-1.2 0,-10Z'/%3E%3C/svg%3E") center / contain no-repeat; }
.faq details[open] summary::after { transform: rotate(135deg) scale(1.2); }
.faq details p { margin: 0; padding: 0 26px 22px; color: var(--ink-soft); }

/* ---------- CONTACT & FOOTER -------------------------------------------- */
.contact-card { text-align: center; max-width: 820px; margin: 0 auto; padding: clamp(34px, 5vw, 64px) clamp(20px, 4vw, 54px); border-radius: 40px; background: var(--card); border: 1px solid rgba(255, 255, 255, .7); box-shadow: var(--shadow); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.contact-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; margin: 30px 0; }
.contact-link { display: flex; align-items: center; gap: 14px; text-decoration: none; text-align: left; padding: 14px 22px 14px 14px; border-radius: 99px; background: rgba(255, 255, 255, .7); box-shadow: var(--shadow-sm); transition: transform .35s var(--ease); font-size: 17px; min-width: 0; }
.contact-link small { display: block; font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-soft); }
.contact-link:hover { transform: translateY(-3px); }
.contact-link span:last-child { min-width: 0; overflow-wrap: anywhere; }
.site-footer { position: relative; text-align: center; padding: 40px var(--gutter) calc(40px + env(safe-area-inset-bottom)); }
.footer-brand { width: 230px; margin: 0 auto; }
.footer-logo { width: 100%; margin: 0 auto; }
.logo-lockup.is-small .logo-allie { font-size: 30px; }
.logo-lockup.is-small .logo-honey { font-size: 38px; }
.footer-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 22px; margin: 16px 0; }
.footer-nav a { text-decoration: none; font-size: 13px; letter-spacing: .16em; text-transform: uppercase; }
.footer-contact { margin: 0 0 8px; }
.footer-contact a { text-decoration: none; }
.footer-small { font-size: 13px; color: var(--ink-soft); margin: 0; }

/* ---------- CART --------------------------------------------------------- */
.cart-scrim { position: fixed; inset: 0; z-index: 80; background: rgba(120, 60, 72, .22); backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px); opacity: 0; transition: opacity .4s ease; }
.cart-scrim.is-open { opacity: 1; }
.cart { position: fixed; top: 0; right: 0; bottom: 0; z-index: 85; width: min(420px, 100%); display: flex; flex-direction: column; background: rgba(252, 232, 236, .96); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); box-shadow: -30px 0 60px -30px rgba(120, 50, 70, .5); transform: translateX(105%); transition: transform .55s var(--ease); visibility: hidden; }
.cart.is-open { transform: none; visibility: visible; }
.cart-head { display: flex; align-items: center; justify-content: space-between; padding: 22px 24px 12px; }
.cart-head h2 { margin: 0; font-family: var(--serif); font-weight: 500; font-size: 34px; }
.cart-head .script { color: var(--rose-deep); font-size: 1.15em; }
.cart-close { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line); background: rgba(255, 255, 255, .6); font-size: 26px; line-height: 1; cursor: pointer; }
.cart-body { flex: 1; overflow-y: auto; padding: 6px 24px; }
.cart-items { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.cart-item { display: grid; grid-template-columns: 74px 1fr auto; gap: 14px; align-items: center; padding: 12px; border-radius: 20px; background: rgba(255, 255, 255, .7); animation: slide-in .5s var(--ease); }
@keyframes slide-in { from { opacity: 0; transform: translateX(30px); } }
.cart-item-art { width: 74px; height: 64px; border-radius: 14px; display: grid; place-items: center; background: radial-gradient(circle, #fff, rgba(255,255,255,.2)); }
.cart-item-art svg { width: 90%; height: auto; }
.cart-item h3 { margin: 0; font-family: var(--serif); font-size: 20px; font-weight: 600; line-height: 1.1; }
.cart-item p { margin: 2px 0 6px; font-size: 13px; color: var(--ink-soft); }
.qty { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 99px; }
.qty button { width: 30px; height: 30px; border: 0; background: none; cursor: pointer; font-size: 16px; }
.qty span { min-width: 20px; text-align: center; font-size: 14px; }
.cart-item-price { font-family: var(--serif); font-size: 20px; text-align: right; }
.cart-item-remove { display: block; margin-top: 6px; font-size: 12px; }
.cart-empty { text-align: center; padding: 40px 10px; }
.cart-empty-art { width: 150px; margin: 0 auto 16px; animation: float 5s ease-in-out infinite; }
.cart-empty-art svg { width: 100%; height: auto; }
.cart.has-items .cart-empty { display: none; }
.cart-foot { padding: 18px 24px calc(22px + env(safe-area-inset-bottom)); border-top: 1px solid var(--line); }
.cart:not(.has-items) .cart-foot { display: none; }
.cart-total { display: flex; justify-content: space-between; align-items: baseline; font-size: 14px; letter-spacing: .14em; text-transform: uppercase; }
.cart-total strong { font-family: var(--serif); font-size: 28px; letter-spacing: 0; font-weight: 600; }
.cart-note { font-size: 13px; color: var(--ink-soft); margin: 6px 0 14px; }
.cart-checkout { width: 100%; }

/* ---------- TOAST -------------------------------------------------------- */
.toast { position: fixed; left: 50%; bottom: calc(26px + env(safe-area-inset-bottom)); z-index: 120; transform: translate(-50%, calc(100% + 80px)); visibility: hidden; padding: 12px 22px; border-radius: 99px; background: rgba(91, 50, 56, .92); color: #fff; font-size: 14px; letter-spacing: .04em; box-shadow: var(--shadow); transition: transform .5s var(--ease), visibility 0s linear .5s; max-width: calc(100vw - 32px); text-align: center; }
.toast.is-on { transform: translate(-50%, 0); visibility: visible; transition: transform .5s var(--ease), visibility 0s; }

/* ---------- REVEAL ------------------------------------------------------- */
html.js [data-reveal] { opacity: 0; transform: translateY(34px); transition: opacity 1s ease, transform 1s var(--ease); transition-delay: var(--delay, 0s); }
html.js [data-reveal].is-in { opacity: 1; transform: none; }

/* ---------- RESPONSIVE --------------------------------------------------- */
@media (max-width: 1080px) {
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps .step:nth-child(n) { margin-top: 0; }
  .steps .step:nth-child(even) { margin-top: 30px; }
}
@media (max-width: 960px) {
  :root { --header-h: 66px; }
  .menu-btn { display: inline-block; }
  .nav { position: fixed; top: 0; left: 0; right: 0; z-index: -1; flex-direction: column; align-items: center; gap: 6px; padding: calc(var(--header-h) + 24px) 20px 34px; background: rgba(249, 217, 223, .96); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); box-shadow: 0 30px 50px -30px rgba(120, 50, 70, .5); transform: translateY(-105%); transition: transform .5s var(--ease); }
  .nav.is-open { transform: none; }
  .nav a { font-size: 22px; font-family: var(--serif); letter-spacing: .1em; padding: 8px 0; }
  .studio-card { grid-template-columns: 1fr; }
  .studio-controls .title, .studio-controls .lede { text-align: center; margin-left: auto; margin-right: auto; }
  .studio-controls { text-align: center; }
  .studio-controls .kicker::before { display: block; }
  .swatches, .studio-controls .chips, .studio-actions { justify-content: center; }
  .control legend { width: 100%; text-align: center; }
  .custom-wrap, .about-grid { grid-template-columns: 1fr; }
  .custom-head { position: static; text-align: center; }
  .custom-head .kicker::before { display: block; }
  .custom-head .lede { margin-left: auto; }
  .contact-mini { justify-items: center; }
  .custom-art { display: none; }
  .about-art { max-width: 460px; margin: 0 auto; width: 100%; }
  .about-copy { text-align: center; }
  .about-copy .kicker::before { display: block; }
}
@media (max-width: 600px) {
  .brand-icon { width: 42px; }
  .brand-nails { font-size: 19px; }
  .brand-by { font-size: 21px; }
  .field-row { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .steps .step:nth-child(even) { margin-top: 0; }
  .btn { padding: 0 24px; }
  .btn-submit { justify-self: stretch; }
  .hero-ctas .btn { width: 100%; }
  .hero-ctas { width: 100%; max-width: 340px; }
  .hero-logo { width: min(90vw, 50vh); }
  .studio-actions .btn { width: 100%; }
  .contact-link { width: 100%; }
  .contact-card .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .cloud { animation: none !important; left: var(--x0, 10%); }
  .feather { display: none; }
}
