/* ============================================================
   INDULGE IN ART — coastal art-studio visual system
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --shell: #fdfaf4;        /* lightest warm white */
  --sand: #f6efe3;         /* page background */
  --sand-deep: #ece1cf;    /* alternating sections */
  --ink: #18313b;          /* primary text — deep coastal navy */
  --ink-deep: #0f2730;     /* dark sections */
  --ink-soft: #2c4a52;
  --mute: #5b6e75;         /* muted text */
  --sea: #5a9d95;          /* sea glass */
  --sea-deep: #2f6f6b;
  --coral: #e06a4f;        /* primary accent / CTA */
  --coral-deep: #c8543b;
  --blush: #e6ab9d;
  --sun: #e0a149;          /* warm secondary */
  --gold: #c8a164;
  --line: rgba(24, 49, 59, .12);
  --line-light: rgba(253, 250, 244, .16);
  --serif: "Fraunces", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --shadow-sm: 0 10px 26px -16px rgba(15, 39, 48, .4);
  --shadow-md: 0 24px 50px -28px rgba(15, 39, 48, .45);
  --shadow-lg: 0 50px 100px -40px rgba(15, 39, 48, .55);
  --radius: 16px;
  --maxw: 1280px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  background: var(--sand);
  color: var(--ink);
  line-height: 1.62;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
::selection { background: var(--blush); color: var(--ink-deep); }
:focus-visible { outline: 2.5px solid var(--sea); outline-offset: 3px; border-radius: 4px; }
.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;
}

/* ---------- Preloader ---------- */
.loader {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--ink-deep);
  display: grid; place-items: center;
  transition: opacity .7s var(--ease), visibility .7s;
}
.loader.done { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-inner { text-align: center; }
.loader-mark {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(1.9rem, 5vw, 3rem); color: var(--shell);
  letter-spacing: .01em; overflow: hidden;
}
.loader-mark em { font-style: italic; color: var(--blush); }
.loader-line {
  width: min(240px, 54vw); height: 2px; margin: 22px auto 0;
  background: rgba(253, 250, 244, .16); border-radius: 2px; overflow: hidden;
}
.loader-line span {
  display: block; height: 100%; width: 100%;
  background: linear-gradient(90deg, var(--sea), var(--blush), var(--coral));
  transform: translateX(-100%);
  animation: load 1.2s var(--ease) forwards;
}
@keyframes load { to { transform: translateX(0); } }
.loader-tag {
  margin-top: 18px; font-size: .68rem; letter-spacing: .4em;
  text-transform: uppercase; color: rgba(253, 250, 244, .5);
}

/* ---------- Film grain ---------- */
.grain {
  position: fixed; inset: -50%; width: 200%; height: 200%;
  pointer-events: none; z-index: 9000; opacity: .03;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 8s steps(8) infinite;
}
@keyframes grain {
  0%, 100% { transform: translate(0, 0); } 25% { transform: translate(-2%, 1%); }
  50% { transform: translate(1%, -2%); } 75% { transform: translate(2%, 1%); }
}

/* ---------- Scroll progress ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; z-index: 200; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--sea), var(--sun), var(--coral));
}

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; padding: 20px clamp(18px, 4vw, 56px);
  color: var(--ink);
  transition: background .4s var(--ease), box-shadow .4s, padding .4s;
}
.nav.scrolled {
  background: rgba(246, 239, 227, .88);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--line);
  padding: 12px clamp(18px, 4vw, 56px);
}
.nav-logo {
  font-family: var(--serif); font-size: 1.35rem; font-weight: 600;
  letter-spacing: .01em; white-space: nowrap; flex: none;
}
.nav-logo em { font-style: italic; font-weight: 300; }
.nav-links { display: flex; gap: clamp(12px, 1.8vw, 26px); }
.nav-links a {
  font-size: .82rem; font-weight: 500; letter-spacing: .04em;
  position: relative; padding: 4px 2px; opacity: .82; transition: opacity .2s;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 100%; height: 1.5px;
  background: var(--coral); transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease);
}
.nav-links a:hover, .nav-links a.active { opacity: 1; }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-cta { display: flex; align-items: center; gap: 8px; flex: none; }
.nav-icon {
  position: relative; display: inline-grid; place-items: center;
  width: 42px; height: 42px; border: none; background: none; color: inherit;
  cursor: pointer; border-radius: 12px; transition: background .25s;
}
.nav-icon:hover { background: rgba(24, 49, 59, .08); }
.nav-icon svg { width: 21px; height: 21px; }
.nav-icon .kk {
  position: absolute; bottom: 2px; right: 3px; font-size: .54rem;
  letter-spacing: .02em; opacity: .5; font-weight: 600;
}
.badge {
  position: absolute; top: 4px; right: 4px; min-width: 17px; height: 17px;
  border-radius: 9px; background: var(--coral); color: #fff;
  font-size: .64rem; font-weight: 700; line-height: 17px; text-align: center; padding: 0 4px;
}
.badge.pop { animation: badgePop .45s var(--ease); }
@keyframes badgePop { 40% { transform: scale(1.5); } }
.nav-burger { display: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 14px 28px; border-radius: 999px; cursor: pointer;
  background: var(--coral); color: #fff; border: 1.5px solid var(--coral);
  font-size: .84rem; font-weight: 600; letter-spacing: .03em;
  transition: transform .3s var(--ease), background .3s, box-shadow .3s, color .3s, border-color .3s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); background: var(--coral-deep); border-color: var(--coral-deep); box-shadow: 0 14px 30px -14px rgba(224, 106, 79, .6); }
.btn-sm { padding: 10px 20px; font-size: .76rem; }
.btn-lg { padding: 18px 38px; font-size: .95rem; }
.btn-ink { background: var(--ink); border-color: var(--ink); }
.btn-ink:hover { background: var(--ink-deep); border-color: var(--ink-deep); box-shadow: 0 14px 30px -14px rgba(15, 39, 48, .5); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-outline:hover { background: var(--ink); color: var(--shell); border-color: var(--ink); box-shadow: none; }
.btn-ghost { background: transparent; color: var(--shell); border-color: var(--line-light); }
.btn-ghost:hover { background: rgba(253, 250, 244, .1); border-color: var(--shell); box-shadow: none; }
.btn-block { width: 100%; }

/* ---------- Section primitives ---------- */
.section { padding: clamp(72px, 10vw, 140px) clamp(18px, 5vw, 72px); }
.section.tight { padding-top: clamp(40px, 6vw, 80px); }
.wrap { max-width: var(--maxw); margin: 0 auto; }
.section-dark { background: var(--ink-deep); color: var(--shell); }
.section-sea { background: var(--sea-deep); color: var(--shell); }
.section-tint { background: var(--sand-deep); }
.section-head { max-width: 760px; margin: 0 auto clamp(40px, 6vw, 72px); text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }
.kicker {
  font-size: .74rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--sea-deep); font-weight: 600; margin-bottom: 14px;
  display: inline-flex; align-items: center; gap: 10px;
}
.kicker::before { content: ""; width: 26px; height: 1px; background: currentColor; opacity: .6; }
.section-head.center .kicker { justify-content: center; }
.section-dark .kicker, .section-sea .kicker { color: var(--blush); }
h1, h2, h3, h4 { font-weight: 400; line-height: 1.08; letter-spacing: -.01em; }
h2 { font-family: var(--serif); font-size: clamp(2.2rem, 5vw, 3.9rem); margin-bottom: 18px; }
h2 em { font-style: italic; color: var(--coral); }
.section-dark h2 em, .section-sea h2 em { color: var(--blush); }
.lede { font-size: clamp(1.02rem, 1.4vw, 1.18rem); color: var(--mute); }
.section-dark .lede, .section-sea .lede { color: rgba(253, 250, 244, .76); }

/* wave divider */
.has-wave { position: relative; }
.wave { position: absolute; top: -1px; left: 0; width: 100%; height: clamp(34px, 5vw, 66px); display: block; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100svh;
  display: grid; grid-template-columns: 1.02fr .98fr; align-items: center;
  gap: clamp(20px, 4vw, 64px);
  padding: clamp(120px, 15vh, 168px) clamp(18px, 5vw, 72px) clamp(60px, 8vh, 100px);
  background:
    radial-gradient(130% 100% at 90% 0%, #fbf5ea 0%, var(--sand) 60%);
  overflow: hidden;
}
.hero-copy { max-width: 600px; position: relative; z-index: 2; }
.hero-kicker {
  font-size: .76rem; letter-spacing: .32em; text-transform: uppercase;
  color: var(--sea-deep); font-weight: 600; margin-bottom: 22px;
  display: flex; align-items: center; gap: 12px;
}
.hero-kicker::before { content: ""; width: 34px; height: 1px; background: var(--sea-deep); }
.hero-title {
  font-family: var(--serif); font-weight: 380;
  font-size: clamp(2.7rem, 6.4vw, 5.2rem); line-height: 1.02;
  letter-spacing: -.018em; margin-bottom: 24px;
}
.hero-title em { font-style: italic; color: var(--coral); }
/* Instant legibility — a quick fade, no long slide. The headline is readable
   the moment the loader clears (critical for 3-second mobile attention). */
.hero-title .line { display: block; }
.hero-title .line span { display: block; animation: heroFade .5s var(--ease) both; }
.hero-title .line:nth-child(2) span { animation-delay: .07s; }
.hero-title .line:nth-child(3) span { animation-delay: .14s; }
@keyframes heroFade { from { opacity: 0; transform: translateY(9px); } }
.hero-sub { font-size: clamp(1.02rem, 1.4vw, 1.2rem); color: var(--mute); max-width: 48ch; margin-bottom: 32px; }
.hero-sub strong { color: var(--ink); font-weight: 600; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-reassure { display: flex; flex-wrap: wrap; gap: 8px 20px; margin-top: 22px; }
.hero-reassure span { position: relative; font-size: .82rem; font-weight: 500; color: var(--sea-deep); padding-left: 18px; }
.hero-reassure span::before { content: "✓"; position: absolute; left: 0; color: var(--sea); font-weight: 700; }
.hero-trust {
  margin-top: 38px; display: flex; gap: clamp(18px, 3vw, 40px); flex-wrap: wrap;
}
.hero-trust div { display: flex; flex-direction: column; }
.hero-trust strong { font-family: var(--serif); font-size: 1.5rem; font-weight: 500; }
.hero-trust span { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--mute); }

/* hero gallery-wall visual */
.hero-gallery { position: relative; height: clamp(420px, 56vw, 620px); z-index: 1; }
.hero-frame {
  position: absolute; border-radius: 8px; overflow: hidden;
  background: var(--shell); border: 7px solid var(--shell);
  box-shadow: var(--shadow-lg);
  animation: floaty 7s ease-in-out infinite;
}
.hero-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-frame.f1 { width: 47%; top: 4%; left: 6%; transform: rotate(-4deg); z-index: 4; animation-delay: 0s; }
.hero-frame.f2 { width: 40%; top: 0; right: 8%; transform: rotate(3.5deg); z-index: 3; animation-delay: .8s; }
.hero-frame.f3 { width: 43%; bottom: 3%; left: 2%; transform: rotate(4deg); z-index: 3; animation-delay: 1.4s; }
.hero-frame.f4 { width: 38%; bottom: 6%; right: 4%; transform: rotate(-3deg); z-index: 4; animation-delay: 2s; }
@keyframes floaty { 0%, 100% { translate: 0 0; } 50% { translate: 0 -12px; } }
.hero-swatches { position: absolute; bottom: -2%; left: 50%; transform: translateX(-50%); display: flex; gap: 6px; z-index: 6; }
.hero-swatches span { width: 24px; height: 24px; border-radius: 50%; border: 3px solid var(--shell); box-shadow: var(--shadow-sm); }

/* ---------- Marquee ---------- */
.marquee {
  background: var(--ink-deep); color: var(--shell);
  overflow: hidden; padding: 14px 0; position: relative; z-index: 3;
}
.marquee-track {
  display: flex; align-items: center; gap: 34px; width: max-content;
  animation: marquee 42s linear infinite;
  font-size: .78rem; letter-spacing: .22em; text-transform: uppercase; font-weight: 500; white-space: nowrap;
}
.marquee-track i { font-style: normal; color: var(--blush); font-size: .7rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Choose your path ---------- */
.paths { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.path {
  position: relative; display: block; text-align: left;
  background: var(--shell); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; cursor: pointer; overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s, border-color .4s;
}
.path:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.path-ic {
  width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center;
  margin-bottom: 20px; background: var(--sand-deep); color: var(--sea-deep);
  transition: background .35s, color .35s;
}
.path:hover .path-ic { background: var(--coral); color: #fff; }
.path-ic svg { width: 23px; height: 23px; }
.path h3 { font-family: var(--serif); font-size: 1.35rem; margin-bottom: 7px; }
.path p { font-size: .9rem; color: var(--mute); margin-bottom: 16px; }
.path-go { font-size: .78rem; font-weight: 600; letter-spacing: .04em; color: var(--coral); display: inline-flex; align-items: center; gap: 6px; }
.path-go::after { content: "→"; transition: transform .3s var(--ease); }
.path:hover .path-go::after { transform: translateX(4px); }

/* ---------- Featured collections ---------- */
.coll-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; }
.coll-card {
  position: relative; grid-column: span 4; aspect-ratio: 4 / 5;
  border-radius: var(--radius); overflow: hidden; cursor: pointer;
  border: none; padding: 0; text-align: left; color: var(--shell);
  background: var(--ink);
}
.coll-card.span6 { grid-column: span 6; aspect-ratio: 16 / 11; }
.coll-card.span8 { grid-column: span 8; aspect-ratio: 16 / 9; }
.coll-card img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform .9s var(--ease); opacity: .96;
}
.coll-card:hover img { transform: scale(1.06); }
.coll-card .ov {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(15, 39, 48, .82) 0%, rgba(15, 39, 48, .15) 55%, transparent 100%);
}
.coll-card .coll-body { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 26px 24px; }
.coll-card .coll-tag { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; opacity: .82; margin-bottom: 4px; }
.coll-card h3 { font-family: var(--serif); font-weight: 500; font-size: clamp(1.3rem, 2vw, 1.7rem); }
.coll-card .coll-meta { font-size: .82rem; opacity: .8; margin-top: 4px; }
.coll-card .coll-go {
  position: absolute; right: 22px; bottom: 26px; z-index: 2;
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(253, 250, 244, .5);
  display: grid; place-items: center; transition: background .3s, transform .4s var(--ease), border-color .3s;
}
.coll-card:hover .coll-go { background: var(--coral); border-color: var(--coral); transform: rotate(-45deg); }
/* coming soon */
.coll-card.soon { background: var(--sand-deep); color: var(--ink); cursor: default; }
.coll-card.soon .soon-inner {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: flex-start; justify-content: flex-end; padding: 26px 24px;
  border: 1.5px dashed var(--line); border-radius: var(--radius); margin: 0;
}
.coll-card.soon .pill {
  align-self: flex-start; margin-bottom: auto; margin-top: 0;
  font-size: .66rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 600;
  background: var(--ink); color: var(--shell); padding: 6px 12px; border-radius: 999px;
}
.coll-card.soon h3 { color: var(--ink); }
.coll-card.soon .coll-meta { color: var(--mute); }

/* ---------- Shop ---------- */
.shop { display: grid; grid-template-columns: 248px 1fr; gap: clamp(24px, 4vw, 48px); align-items: start; }
.shop-filters { position: sticky; top: 92px; }
.shop-filters-scrim { display: none; }
.filter-mobile-toggle { display: none; }
.fgroup { padding: 18px 0; border-bottom: 1px solid var(--line); }
.fgroup:first-child { padding-top: 0; }
.fgroup h4 { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--mute); margin-bottom: 14px; font-weight: 600; }
.fsearch { position: relative; }
.fsearch input {
  width: 100%; padding: 11px 14px 11px 38px; border-radius: 10px;
  border: 1px solid var(--line); background: var(--shell); color: var(--ink);
  font-family: var(--sans); font-size: .9rem; outline: none; transition: border-color .25s, box-shadow .25s;
}
.fsearch input:focus { border-color: var(--sea); box-shadow: 0 0 0 3px rgba(90, 157, 149, .15); }
.fsearch svg { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); width: 17px; height: 17px; color: var(--mute); }
.fchips { display: flex; flex-wrap: wrap; gap: 7px; }
.fchip {
  padding: 7px 13px; border-radius: 999px; cursor: pointer; font-size: .8rem; font-weight: 500;
  border: 1px solid var(--line); background: transparent; color: var(--ink-soft);
  transition: background .2s, color .2s, border-color .2s;
}
.fchip:hover { border-color: var(--ink); }
.fchip.on { background: var(--ink); color: var(--shell); border-color: var(--ink); }
.fswatches { display: flex; flex-wrap: wrap; gap: 9px; }
.fsw {
  width: 30px; height: 30px; border-radius: 50%; cursor: pointer; position: relative;
  border: 2px solid transparent; box-shadow: inset 0 0 0 1px rgba(0,0,0,.08); transition: transform .2s;
}
.fsw:hover { transform: scale(1.12); }
.fsw.on { border-color: var(--ink); }
.fsw.on::after { content: "✓"; position: absolute; inset: 0; display: grid; place-items: center; color: #fff; font-size: .8rem; text-shadow: 0 1px 2px rgba(0,0,0,.5); }
.favail { display: flex; align-items: center; gap: 10px; font-size: .86rem; cursor: pointer; color: var(--ink-soft); }
.favail input { accent-color: var(--coral); width: 16px; height: 16px; }
.fclear { margin-top: 18px; background: none; border: none; color: var(--coral); font-size: .82rem; font-weight: 600; cursor: pointer; padding: 0; }
.fclear:hover { text-decoration: underline; }

.shop-results { min-width: 0; }
.results-bar { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 22px; flex-wrap: wrap; }
.results-count { font-size: .88rem; color: var(--mute); }
.results-count strong { color: var(--ink); font-weight: 600; }
.results-sort { display: flex; align-items: center; gap: 8px; }
.results-sort select {
  font-family: var(--sans); font-size: .85rem; color: var(--ink); cursor: pointer;
  border: 1px solid var(--line); border-radius: 999px; padding: 8px 14px; background: var(--shell);
}

.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 18px; }
.pcard {
  position: relative; background: var(--shell); border: 1px solid var(--line);
  border-radius: 14px; overflow: hidden; cursor: pointer; text-align: left; padding: 0;
  transition: transform .4s var(--ease), box-shadow .4s, border-color .4s;
}
.pcard:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.pcard-media { position: relative; overflow: hidden; aspect-ratio: 4 / 5; background: var(--sand-deep); }
.pcard-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.pcard:hover .pcard-media img { transform: scale(1.05); }
.pcard-badge {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  font-size: .64rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 700;
  padding: 5px 10px; border-radius: 999px; color: #fff;
}
.pcard-badge.new { background: var(--sea-deep); }
.pcard-badge.loved { background: var(--coral); }
.pcard-fav {
  position: absolute; top: 10px; right: 10px; z-index: 2;
  width: 34px; height: 34px; border-radius: 50%; border: none; cursor: pointer;
  background: rgba(253, 250, 244, .9); color: var(--ink);
  display: grid; place-items: center; opacity: 0; transform: translateY(-4px);
  transition: opacity .25s, transform .25s, color .2s, background .2s;
}
.pcard:hover .pcard-fav, .pcard-fav.on { opacity: 1; transform: none; }
.pcard-fav svg { width: 17px; height: 17px; }
.pcard-fav:hover { color: var(--coral); }
.pcard-fav.on { color: var(--coral); }
.pcard-fav.on svg { fill: var(--coral); }
.pcard-quick {
  position: absolute; left: 12px; right: 12px; bottom: 12px; z-index: 2;
  padding: 11px; border-radius: 10px; border: none; cursor: pointer;
  background: var(--ink); color: var(--shell); font-size: .78rem; font-weight: 600; letter-spacing: .04em;
  opacity: 0; transform: translateY(10px); transition: opacity .3s var(--ease), transform .3s var(--ease), background .2s;
}
.pcard:hover .pcard-quick { opacity: 1; transform: none; }
.pcard-quick:hover { background: var(--coral); }
.pcard-info { padding: 13px 15px 16px; }
.pcard-coll { font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--sea-deep); font-weight: 600; }
.pcard-title { font-family: var(--serif); font-weight: 500; font-size: 1.06rem; margin: 3px 0 5px; }
.pcard-price { font-size: .85rem; color: var(--mute); }
.shop-empty { text-align: center; padding: 60px 20px; color: var(--mute); font-family: var(--serif); font-style: italic; font-size: 1.15rem; display: none; }
.shop-empty button { display: block; margin: 16px auto 0; }

/* ---------- Quiz band / Find your piece ---------- */
.band {
  display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(24px, 4vw, 60px);
  align-items: center; background: var(--sea-deep); color: var(--shell);
  border-radius: clamp(18px, 3vw, 28px); padding: clamp(36px, 5vw, 64px);
  max-width: var(--maxw); margin: 0 auto;
}
.band.coral { background: linear-gradient(135deg, var(--coral) 0%, var(--coral-deep) 100%); }
.band h2 { color: var(--shell); }
.band h2 em { color: var(--ink-deep); }
.band p { color: rgba(253, 250, 244, .82); margin-bottom: 26px; max-width: 46ch; }
.band-visual { display: flex; gap: 10px; justify-content: center; }
.band-visual img {
  width: 31%; aspect-ratio: 4/5; object-fit: cover; border-radius: 10px;
  border: 5px solid var(--shell); box-shadow: var(--shadow-md);
}
.band-visual img:nth-child(1) { transform: rotate(-5deg); }
.band-visual img:nth-child(2) { transform: rotate(2deg) translateY(-8px); }
.band-visual img:nth-child(3) { transform: rotate(6deg); }

/* ---------- Gallery wall / interiors ---------- */
.gwall { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 3vw, 44px); align-items: center; max-width: var(--maxw); margin: 0 auto; }
.gwall-art {
  display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 1fr; gap: 10px;
  background: var(--shell); padding: clamp(16px, 2.5vw, 30px); border-radius: var(--radius);
  box-shadow: var(--shadow-md); aspect-ratio: 1.05;
}
.gwall-art figure { overflow: hidden; border-radius: 6px; border: 4px solid var(--shell); box-shadow: var(--shadow-sm); background: var(--sand-deep); }
.gwall-art img { width: 100%; height: 100%; object-fit: cover; }
.gwall-art .a { grid-column: span 2; grid-row: span 2; }
.gwall-art .b { grid-column: span 1; grid-row: span 1; }
.gwall-copy { max-width: 480px; }
.gwall-copy ul { list-style: none; margin: 20px 0 28px; }
.gwall-copy li { padding: 9px 0 9px 26px; position: relative; color: var(--mute); }
.gwall-copy li::before { content: "✦"; position: absolute; left: 0; color: var(--sea); font-size: .8rem; top: 11px; }

/* ---------- Process ---------- */
.process { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 3vw, 32px); max-width: var(--maxw); margin: 0 auto; }
.pstep { padding: 28px 26px; border-radius: var(--radius); background: rgba(253, 250, 244, .04); border: 1px solid var(--line-light); transition: transform .4s var(--ease), background .4s; }
.pstep:hover { transform: translateY(-5px); background: rgba(253, 250, 244, .07); }
.pstep .n { font-family: var(--serif); font-style: italic; font-size: 2.2rem; color: var(--blush); display: block; margin-bottom: 12px; }
.pstep h3 { font-family: var(--serif); font-weight: 500; font-size: 1.3rem; margin-bottom: 8px; }
.pstep p { font-size: .9rem; color: rgba(253, 250, 244, .72); }

/* ---------- About ---------- */
.about { display: grid; grid-template-columns: minmax(280px, 440px) 1fr; gap: clamp(32px, 6vw, 84px); align-items: center; max-width: var(--maxw); margin: 0 auto; }
.about-portrait { position: relative; }
.about-portrait > img { border-radius: var(--radius); box-shadow: var(--shadow-md); aspect-ratio: 4/5; object-fit: cover; }
.about-portrait figcaption { margin-top: 12px; font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; color: var(--mute); }
.about-copy p { color: var(--mute); margin-bottom: 18px; max-width: 56ch; }
.about-copy p strong { color: var(--ink); }
.about-copy blockquote {
  font-family: var(--serif); font-style: italic; font-size: clamp(1.3rem, 2.2vw, 1.75rem);
  line-height: 1.3; color: var(--sea-deep); border-left: 3px solid var(--coral);
  padding-left: 22px; margin: 28px 0;
}
.about-stats { display: flex; gap: clamp(22px, 4vw, 52px); flex-wrap: wrap; margin-top: 26px; }
.about-stats div { display: flex; flex-direction: column; }
.about-stats strong { font-family: var(--serif); font-size: 1.9rem; font-weight: 500; }
.about-stats span { font-size: .76rem; letter-spacing: .08em; text-transform: uppercase; color: var(--mute); }

/* ---------- Journal ---------- */
.journal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; max-width: var(--maxw); margin: 0 auto; }
.jcard { text-align: left; background: var(--shell); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; cursor: pointer; padding: 0; transition: transform .4s var(--ease), box-shadow .4s; }
.jcard:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.jcard-media { aspect-ratio: 16/10; overflow: hidden; background: var(--sand-deep); }
.jcard-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.jcard:hover .jcard-media img { transform: scale(1.05); }
.jcard-body { padding: 20px 22px 24px; }
.jcard .jkick { font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--sea-deep); font-weight: 600; }
.jcard h3 { font-family: var(--serif); font-weight: 500; font-size: 1.25rem; margin: 8px 0 8px; }
.jcard p { font-size: .9rem; color: var(--mute); margin-bottom: 12px; }
.jcard .jdate { font-size: .76rem; color: var(--mute); font-style: italic; }

/* ---------- Newsletter ---------- */
.news { text-align: center; max-width: 620px; margin: 0 auto; }
.news form { display: flex; gap: 10px; margin-top: 26px; }
.news input {
  flex: 1; padding: 15px 20px; border-radius: 999px; border: 1.5px solid var(--line-light);
  background: rgba(253, 250, 244, .06); color: var(--shell); font-family: var(--sans); font-size: .95rem; outline: none;
}
.news input::placeholder { color: rgba(253, 250, 244, .5); }
.news input:focus { border-color: var(--blush); }
.news small { display: block; margin-top: 14px; font-size: .78rem; color: rgba(253, 250, 244, .55); }

/* ---------- Footer ---------- */
.footer { background: var(--ink-deep); color: rgba(253, 250, 244, .82); padding: clamp(56px, 8vw, 96px) clamp(18px, 5vw, 72px) 34px; }
.footer-top { max-width: var(--maxw); margin: 0 auto 50px; display: flex; justify-content: space-between; gap: 30px; flex-wrap: wrap; align-items: flex-start; }
.footer-logo { font-family: var(--serif); font-size: clamp(2rem, 4vw, 3rem); font-weight: 500; color: var(--shell); }
.footer-logo em { font-style: italic; font-weight: 300; }
.footer-top p { margin-top: 12px; color: rgba(253, 250, 244, .6); max-width: 34ch; }
.footer-news { display: flex; gap: 8px; max-width: 360px; width: 100%; }
.footer-news input { flex: 1; padding: 12px 16px; border-radius: 999px; border: 1px solid var(--line-light); background: rgba(253,250,244,.06); color: var(--shell); font-family: var(--sans); font-size: .88rem; outline: none; }
.footer-news input::placeholder { color: rgba(253,250,244,.45); }
.footer-grid { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 30px; padding-bottom: 44px; border-bottom: 1px solid var(--line-light); }
.footer-grid h4 { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--blush); margin-bottom: 16px; font-weight: 600; }
.footer-grid a, .footer-grid span, .footer-grid button {
  display: block; padding: 5px 0; color: rgba(253, 250, 244, .76); font-size: .92rem;
  background: none; border: none; text-align: left; cursor: pointer; font-family: inherit;
}
.footer-grid a:hover, .footer-grid button:hover { color: var(--shell); }
.footer-bottom { max-width: var(--maxw); margin: 26px auto 0; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: .8rem; color: rgba(253, 250, 244, .45); }
.footer-bottom em { font-style: italic; font-family: var(--serif); }

/* ---------- Back to top ---------- */
.to-top {
  position: fixed; right: 22px; bottom: 22px; z-index: 95;
  width: 48px; height: 48px; border-radius: 50%; border: none; cursor: pointer;
  background: var(--ink); color: var(--shell); font-size: 1.1rem;
  box-shadow: var(--shadow-md); opacity: 0; transform: translateY(14px); pointer-events: none;
  transition: opacity .35s var(--ease), transform .35s var(--ease), background .25s;
}
.to-top.show { opacity: 1; transform: none; pointer-events: auto; }
.to-top:hover { background: var(--coral); }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   OVERLAYS
   ============================================================ */
.overlay {
  position: fixed; inset: 0; z-index: 9500; padding: clamp(10px, 3vw, 40px);
  background: rgba(15, 39, 48, .55); backdrop-filter: blur(7px); -webkit-backdrop-filter: blur(7px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .35s var(--ease);
}
.overlay.open { opacity: 1; pointer-events: auto; }
.overlay-panel {
  position: relative; background: var(--sand); color: var(--ink);
  border-radius: 18px; width: min(1040px, 100%); max-height: min(92vh, 880px); overflow: hidden;
  box-shadow: var(--shadow-lg); transform: translateY(26px) scale(.97); transition: transform .4s var(--ease);
}
.overlay.open .overlay-panel { transform: none; }
.overlay-panel.narrow { width: min(620px, 100%); }
.overlay-panel.wide { width: min(1120px, 100%); }
.overlay-close {
  position: absolute; top: 14px; right: 16px; z-index: 6;
  width: 38px; height: 38px; border-radius: 50%; border: none; cursor: pointer;
  background: rgba(253, 250, 244, .8); color: var(--ink); font-size: 1.5rem; line-height: 1;
  display: grid; place-items: center; transition: background .2s;
}
.overlay-close:hover { background: var(--shell); }

/* product modal */
.pm { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.04fr); max-height: inherit; }
.pm-media { position: relative; background: var(--sand-deep); min-height: 340px; display: grid; place-items: center; padding: clamp(20px, 3vw, 40px); }
.pm-media img { width: 100%; height: auto; max-height: 76vh; object-fit: contain; cursor: zoom-in;
  background: var(--shell); border: 6px solid var(--shell); border-radius: 3px; box-shadow: var(--shadow-md); }
.pm-badge, .pm-zoom { position: absolute; z-index: 3; }
.pm-zoom { position: absolute; right: 14px; bottom: 14px; width: 40px; height: 40px; border-radius: 50%; border: none; cursor: pointer; background: rgba(15, 39, 48, .7); color: #fff; font-size: 1.05rem; transition: background .2s; }
.pm-zoom:hover { background: var(--ink-deep); }
.pm-badge { position: absolute; top: 14px; left: 14px; font-size: .64rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 700; padding: 5px 11px; border-radius: 999px; color: #fff; }
.pm-badge.new { background: var(--sea-deep); } .pm-badge.loved { background: var(--coral); }
.pm-info { padding: clamp(24px, 3.5vw, 42px); overflow-y: auto; }
.pm-coll { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--sea-deep); font-weight: 600; margin-bottom: 8px; cursor: pointer; }
.pm-coll:hover { text-decoration: underline; }
.pm-title { font-family: var(--serif); font-weight: 420; font-size: clamp(1.7rem, 3vw, 2.4rem); margin-bottom: 8px; }
.pm-price { font-family: var(--serif); font-size: 1.2rem; color: var(--mute); margin-bottom: 12px; }
.pm-price strong { color: var(--ink); font-weight: 500; }
.pm-trust { list-style: none; display: flex; flex-wrap: wrap; gap: 6px 14px; margin: 0 0 16px; padding: 0; }
.pm-trust li { font-size: .8rem; color: var(--ink); display: flex; align-items: center; gap: 6px; }
.pm-trust li::before { content: "✓"; color: var(--sea); font-weight: 700; }
.pm-blurb { color: var(--mute); margin-bottom: 14px; }
.pm-gift { font-size: .9rem; line-height: 1.5; color: var(--ink); background: var(--sand); border-radius: 12px; padding: 12px 14px; margin-bottom: 22px; }
.pm-gift span { display: inline-block; font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 700; color: var(--coral); margin-right: 6px; }
.pm-label { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--mute); font-weight: 600; margin-bottom: 10px; }
.pm-sizes { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 22px; }
.size-pill { padding: 9px 15px; border-radius: 10px; cursor: pointer; border: 1.5px solid var(--line); background: var(--shell); color: var(--ink); display: flex; flex-direction: column; align-items: center; gap: 1px; transition: border-color .2s, background .2s, transform .2s; }
.size-pill small { color: var(--mute); font-size: .76rem; }
.size-pill:hover { border-color: var(--ink); }
.size-pill.on { border-color: var(--coral); background: #fcf0ec; transform: translateY(-1px); }
.pm-buy { display: flex; gap: 10px; align-items: stretch; margin-bottom: 22px; flex-wrap: wrap; }
.qty { display: flex; align-items: center; border: 1.5px solid var(--line); border-radius: 999px; padding: 2px; }
.qty button { width: 38px; height: 38px; border-radius: 50%; border: none; background: none; cursor: pointer; font-size: 1.15rem; color: var(--ink); transition: background .2s; }
.qty button:hover { background: rgba(24, 49, 59, .08); }
.qty span { min-width: 28px; text-align: center; font-weight: 600; }
.pm-add { flex: 1; min-width: 190px; }
.pm-add.added { background: var(--sea-deep); border-color: var(--sea-deep); }
.heart { width: 46px; border-radius: 999px; cursor: pointer; border: 1.5px solid var(--line); background: none; color: var(--ink); display: grid; place-items: center; transition: color .25s, border-color .25s, transform .2s; }
.heart svg { width: 20px; height: 20px; }
.heart:hover { transform: translateY(-1px); border-color: var(--coral); color: var(--coral); }
.heart.on { color: var(--coral); border-color: var(--coral); }
.heart.on svg { fill: var(--coral); }
.pm-meta { border-top: 1px solid var(--line); margin-top: 4px; }
.pm-meta details { border-bottom: 1px solid var(--line); }
.pm-meta summary { padding: 14px 0; cursor: pointer; font-weight: 600; font-size: .9rem; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.pm-meta summary::-webkit-details-marker { display: none; }
.pm-meta summary::after { content: "+"; color: var(--coral); font-size: 1.2rem; transition: transform .2s; }
.pm-meta details[open] summary::after { transform: rotate(45deg); }
.pm-meta p { font-size: .88rem; color: var(--mute); padding-bottom: 14px; }
.pm-ctas { display: flex; gap: 10px; flex-wrap: wrap; margin: 20px 0; }
.pm-ctas button { flex: 1; min-width: 150px; font-size: .8rem; }
.pm-related p.pm-label { margin-top: 6px; }
.pm-related-row { display: flex; gap: 10px; }
.pm-related-row button { flex: 0 0 72px; aspect-ratio: 4/5; border-radius: 8px; overflow: hidden; border: 1px solid var(--line); padding: 0; cursor: pointer; background: var(--sand-deep); transition: transform .3s var(--ease), box-shadow .3s; }
.pm-related-row button:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.pm-related-row img { width: 100%; height: 100%; object-fit: cover; }

/* collection / favorites / generic list modal */
.list-modal { padding: clamp(24px, 4vw, 46px); overflow-y: auto; max-height: inherit; }
.list-head { margin-bottom: 24px; max-width: 640px; }
.list-head h3 { font-family: var(--serif); font-weight: 400; font-size: clamp(1.9rem, 4vw, 3rem); margin: 6px 0 8px; }
.list-head p { color: var(--mute); }
.list-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 18px; }
.list-empty { color: var(--mute); font-family: var(--serif); font-style: italic; font-size: 1.1rem; padding: 30px 0; display: none; }

/* commission builder */
.cb { padding: clamp(24px, 4vw, 46px); overflow-y: auto; max-height: inherit; }
.cb-head { text-align: center; margin-bottom: 28px; }
.cb-head h3 { font-family: var(--serif); font-weight: 400; font-size: clamp(1.9rem, 4vw, 2.8rem); margin: 6px 0 10px; }
.cb-head p { color: var(--mute); max-width: 52ch; margin: 0 auto; }
.cb-steps { display: flex; gap: 8px; justify-content: center; margin-bottom: 30px; flex-wrap: wrap; }
.cb-steps span { display: flex; align-items: center; gap: 7px; font-size: .76rem; color: var(--mute); }
.cb-steps span b { width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; background: var(--sand-deep); color: var(--mute); font-size: .72rem; font-weight: 700; }
.cb-steps span.on b { background: var(--coral); color: #fff; }
.cb-steps span.done b { background: var(--sea-deep); color: #fff; }
.cb-panel { display: none; }
.cb-panel.on { display: block; animation: cbFade .4s var(--ease); }
@keyframes cbFade { from { opacity: 0; transform: translateY(10px); } }
.cb-types { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 12px; }
.cb-type { text-align: left; padding: 20px; border-radius: 12px; border: 1.5px solid var(--line); background: var(--shell); cursor: pointer; transition: border-color .25s, transform .25s, background .25s; }
.cb-type:hover { transform: translateY(-3px); border-color: var(--ink); }
.cb-type.on { border-color: var(--coral); background: #fcf0ec; }
.cb-type strong { font-family: var(--serif); font-weight: 500; font-size: 1.15rem; display: block; margin-bottom: 5px; }
.cb-type span { font-size: .86rem; color: var(--mute); }
.cb-field { margin-bottom: 16px; }
.cb-field label { display: block; font-size: .8rem; font-weight: 600; margin-bottom: 7px; letter-spacing: .02em; }
.cb-field input, .cb-field select, .cb-field textarea {
  width: 100%; padding: 12px 15px; border-radius: 10px; border: 1.5px solid var(--line);
  background: var(--shell); color: var(--ink); font-family: var(--sans); font-size: .92rem; outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.cb-field input:focus, .cb-field select:focus, .cb-field textarea:focus { border-color: var(--sea); box-shadow: 0 0 0 3px rgba(90, 157, 149, .14); }
.cb-field textarea { resize: vertical; min-height: 90px; }
.cb-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.cb-chiprow { display: flex; flex-wrap: wrap; gap: 8px; }
.cb-upload { border: 1.5px dashed var(--line); border-radius: 10px; padding: 22px; text-align: center; color: var(--mute); font-size: .88rem; cursor: pointer; transition: border-color .2s, background .2s; }
.cb-upload:hover { border-color: var(--sea); background: var(--shell); }
.cb-nav { display: flex; justify-content: space-between; gap: 12px; margin-top: 24px; }
.cb-soft { text-align: center; margin-top: 18px; font-size: .86rem; color: var(--mute); }
.cb-soft button { background: none; border: none; color: var(--coral); font-weight: 600; cursor: pointer; text-decoration: underline; font-family: inherit; font-size: inherit; }

/* quiz */
.quiz { padding: clamp(28px, 4vw, 52px); text-align: center; overflow-y: auto; max-height: inherit; }
.quiz-progress { display: flex; gap: 6px; justify-content: center; margin-bottom: 26px; }
.quiz-progress span { width: 34px; height: 4px; border-radius: 2px; background: var(--sand-deep); transition: background .3s; }
.quiz-progress span.on { background: var(--coral); }
.quiz-q { font-family: var(--serif); font-weight: 400; font-size: clamp(1.6rem, 3.2vw, 2.4rem); margin-bottom: 28px; }
.quiz-opts { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 12px; max-width: 640px; margin: 0 auto; }
.quiz-opt { padding: 22px 18px; border-radius: 14px; border: 1.5px solid var(--line); background: var(--shell); cursor: pointer; font-size: .95rem; font-weight: 500; transition: transform .25s, border-color .25s, background .25s; }
.quiz-opt:hover { transform: translateY(-4px); border-color: var(--coral); background: #fcf0ec; }
.quiz-back { margin-top: 22px; background: none; border: none; color: var(--mute); cursor: pointer; font-size: .85rem; font-family: inherit; }
.quiz-back:hover { color: var(--ink); }
.quiz-results-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 16px; margin-top: 24px; }

/* cart drawer */
.cart-scrim { position: fixed; inset: 0; z-index: 9600; background: rgba(15, 39, 48, .5); opacity: 0; pointer-events: none; transition: opacity .35s; }
.cart-scrim.open { opacity: 1; pointer-events: auto; }
.cart { position: fixed; top: 0; right: 0; bottom: 0; z-index: 9700; width: min(430px, 94vw); background: var(--sand); color: var(--ink); display: flex; flex-direction: column; transform: translateX(102%); transition: transform .45s var(--ease); box-shadow: -30px 0 80px -30px rgba(0,0,0,.5); }
.cart.open { transform: none; }
.cart-head { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px 14px; }
.cart-head h3 { font-family: var(--serif); font-weight: 500; font-size: 1.45rem; }
.cart-head .overlay-close { position: static; background: none; }
.ship-bar { padding: 0 24px 16px; border-bottom: 1px solid var(--line); }
.ship-bar p { font-size: .8rem; color: var(--mute); margin-bottom: 8px; }
.ship-bar p strong { color: var(--coral); }
.ship-track { height: 6px; border-radius: 3px; background: rgba(24,49,59,.1); overflow: hidden; }
.ship-track span { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--sea), var(--coral)); border-radius: 3px; transition: width .6s var(--ease); }
.cart-items { flex: 1; overflow-y: auto; padding: 8px 24px; }
.cart-item { display: grid; grid-template-columns: 60px 1fr auto; gap: 14px; align-items: center; padding: 14px 0; border-bottom: 1px solid var(--line); }
.cart-item img { width: 60px; aspect-ratio: 4/5; object-fit: cover; border-radius: 8px; }
.ci-info strong { font-family: var(--serif); font-weight: 500; display: block; font-size: .96rem; }
.ci-info span { font-size: .78rem; color: var(--mute); }
.ci-qty { display: flex; align-items: center; gap: 6px; margin-top: 6px; }
.ci-qty button { width: 24px; height: 24px; border-radius: 50%; border: 1px solid var(--line); background: none; cursor: pointer; font-size: .85rem; color: var(--ink); }
.ci-qty button:hover { background: rgba(24,49,59,.08); }
.ci-qty em { font-style: normal; font-size: .85rem; font-weight: 600; min-width: 16px; text-align: center; }
.ci-right { text-align: right; display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.ci-right strong { font-family: var(--serif); }
.ci-remove { background: none; border: none; color: var(--mute); cursor: pointer; font-size: .75rem; text-decoration: underline; padding: 0; }
.ci-remove:hover { color: var(--coral); }
.cart-empty { padding: 40px 24px; color: var(--mute); font-family: var(--serif); font-style: italic; display: none; }
.cart-foot { padding: 16px 24px 22px; border-top: 1px solid var(--line); }
.cart-total { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 14px; }
.cart-total span { font-size: .85rem; letter-spacing: .1em; text-transform: uppercase; color: var(--mute); }
.cart-total strong { font-family: var(--serif); font-size: 1.6rem; font-weight: 500; }
.cart-note { font-size: .78rem; color: var(--mute); margin-top: 12px; text-align: center; }

/* command palette */
.palette-scrim { position: fixed; inset: 0; z-index: 9800; background: rgba(15, 39, 48, .45); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); opacity: 0; pointer-events: none; transition: opacity .3s; }
.palette-scrim.open { opacity: 1; pointer-events: auto; }
.palette { position: fixed; left: 50%; top: 13vh; z-index: 9900; width: min(620px, 92vw); transform: translateX(-50%) translateY(-12px); background: var(--sand); border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-lg); opacity: 0; pointer-events: none; transition: opacity .3s var(--ease), transform .3s var(--ease); }
.palette.open { opacity: 1; pointer-events: auto; transform: translateX(-50%); }
.palette-input { display: flex; align-items: center; gap: 12px; padding: 16px 18px; border-bottom: 1px solid var(--line); }
.palette-input svg { width: 19px; height: 19px; color: var(--mute); flex: none; }
.palette-input input { flex: 1; border: none; background: none; outline: none; font-family: var(--sans); font-size: 1rem; color: var(--ink); }
.palette-input kbd { font-size: .68rem; border: 1px solid var(--line); border-radius: 5px; padding: 2px 6px; color: var(--mute); }
.palette-results { max-height: 54vh; overflow-y: auto; padding: 8px; }
.palette-item { display: flex; align-items: center; gap: 14px; width: 100%; text-align: left; padding: 9px 10px; background: none; border: none; border-radius: 10px; cursor: pointer; }
.palette-item img { width: 42px; aspect-ratio: 4/5; object-fit: cover; border-radius: 6px; }
.palette-item .pi-text { flex: 1; min-width: 0; }
.palette-item strong { font-family: var(--serif); font-weight: 500; display: block; font-size: .98rem; }
.palette-item span { font-size: .74rem; color: var(--mute); letter-spacing: .06em; text-transform: uppercase; }
.palette-item em { font-style: normal; font-family: var(--serif); color: var(--mute); }
.palette-item.sel, .palette-item:hover { background: rgba(224, 106, 79, .1); }
.palette-empty { padding: 28px 16px; text-align: center; color: var(--mute); font-family: var(--serif); font-style: italic; }
.palette-foot { display: flex; gap: 16px; padding: 10px 18px; border-top: 1px solid var(--line); font-size: .72rem; color: var(--mute); }
.palette-foot span { display: flex; align-items: center; gap: 5px; }
.palette-foot kbd { font-size: .66rem; border: 1px solid var(--line); border-radius: 4px; padding: 1px 5px; }

/* lightbox */
.lightbox { position: fixed; inset: 0; z-index: 9990; background: rgba(15, 39, 48, .94); display: flex; align-items: center; justify-content: center; padding: clamp(16px, 4vw, 56px); opacity: 0; pointer-events: none; transition: opacity .35s var(--ease); }
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox figure { display: flex; flex-direction: column; align-items: center; gap: 14px; max-width: 100%; max-height: 100%; }
.lightbox img { max-width: 100%; max-height: calc(100vh - 150px); border-radius: 8px; box-shadow: var(--shadow-lg); background: var(--shell); transform: scale(.96); transition: transform .35s var(--ease); }
.lightbox.open img { transform: scale(1); }
.lightbox figcaption { color: rgba(253, 250, 244, .85); font-family: var(--serif); font-style: italic; font-size: 1.05rem; }
.lightbox-close { position: absolute; top: 22px; right: 26px; background: none; border: none; color: var(--shell); font-size: 2.3rem; line-height: 1; cursor: pointer; opacity: .8; }
.lightbox-close:hover { opacity: 1; }

/* toast */
.toast { position: fixed; left: 50%; bottom: 28px; z-index: 9950; transform: translateX(-50%) translateY(16px); background: var(--ink-deep); color: var(--shell); padding: 13px 22px; border-radius: 999px; font-size: .9rem; font-weight: 500; box-shadow: var(--shadow-md); opacity: 0; pointer-events: none; transition: opacity .3s var(--ease), transform .3s var(--ease); display: flex; align-items: center; gap: 10px; }
.toast.show { opacity: 1; transform: translateX(-50%); }
.toast i { font-style: normal; color: var(--blush); }

body.locked { overflow: hidden; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .paths { grid-template-columns: repeat(2, 1fr); }
  .process { grid-template-columns: 1fr; }
  .journal-grid { grid-template-columns: 1fr; max-width: 520px; }
}
@media (max-width: 920px) {
  .hero { grid-template-columns: 1fr; padding-top: 100px; gap: 26px; }
  /* lead with art on mobile (IG visitors see the work first) — keep the framed,
     slightly-rotated gallery-wall feel as a salon 2×2, not a flat thumbnail strip */
  .hero-gallery { height: auto; order: -1; display: grid; grid-template-columns: 1fr 1fr;
    gap: 14px; padding: 6px 4px 16px; }
  .hero-frame, .hero-frame.f1, .hero-frame.f2, .hero-frame.f3, .hero-frame.f4 {
    position: static; width: auto; inset: auto; animation: none;
    aspect-ratio: 4 / 5; border-width: 6px; box-shadow: var(--shadow-md);
  }
  .hero-frame.f1 { transform: rotate(-2.5deg); }
  .hero-frame.f2 { transform: rotate(2.5deg); margin-top: 16px; }
  .hero-frame.f3 { transform: rotate(2deg); }
  .hero-frame.f4 { display: block; transform: rotate(-2deg); margin-top: -16px; }
  .hero-swatches { display: none; }
  .gwall { grid-template-columns: 1fr; }
  .band { grid-template-columns: 1fr; }
  .band-visual { max-width: 360px; margin: 0 auto; }
  .about { grid-template-columns: 1fr; }
  .coll-card, .coll-card.span6, .coll-card.span8 { grid-column: span 6; aspect-ratio: 4/5; }
  .pm { grid-template-columns: 1fr; overflow-y: auto; }
  .pm-media { min-height: 0; }
  .pm-media img { position: static; aspect-ratio: 4/5; }
  /* shop: filters become a drawer */
  .shop { grid-template-columns: 1fr; }
  .filter-mobile-toggle { display: inline-flex; }
  .shop-filters {
    position: fixed; top: 0; left: 0; bottom: 0; z-index: 9650; width: min(330px, 90vw);
    background: var(--sand); padding: 78px 24px 24px; overflow-y: auto;
    transform: translateX(-102%); transition: transform .4s var(--ease); box-shadow: var(--shadow-lg);
  }
  .shop-filters.open { transform: none; }
  .shop-filters-scrim { display: block; position: fixed; inset: 0; z-index: 9640; background: rgba(15,39,48,.5); opacity: 0; pointer-events: none; transition: opacity .3s; }
  .shop-filters-scrim.open { opacity: 1; pointer-events: auto; }
}
@media (max-width: 760px) {
  .nav-links {
    position: fixed; inset: 0; z-index: -1; background: var(--ink-deep);
    flex-direction: column; align-items: center; justify-content: center; gap: 26px;
    opacity: 0; pointer-events: none; transition: opacity .35s;
  }
  .nav-links a { font-size: 1.2rem; color: var(--shell); opacity: .9; }
  .nav.menu-open .nav-links { opacity: 1; pointer-events: auto; z-index: 99; display: flex; }
  .nav-burger { display: flex; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; z-index: 100; }
  .nav-burger span { width: 24px; height: 2px; background: currentColor; transition: transform .3s var(--ease); }
  .nav.menu-open .nav-burger span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .nav.menu-open .nav-burger span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .nav.menu-open { color: var(--shell); }
  .paths { grid-template-columns: 1fr; }
  .coll-card, .coll-card.span6, .coll-card.span8 { grid-column: span 12; }
  .news form { flex-direction: column; }
  .pm-ctas button { min-width: 0; }
  .cb-row { grid-template-columns: 1fr; }
  .to-top { right: 14px; bottom: 14px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .grain, .marquee-track, .hero-frame { animation: none !important; }
  .hero-title .line span { animation-duration: .01s; animation-delay: 0s; }
  .loader { display: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { animation-duration: .01s !important; }
}

/* ---------- Honeypot (spam trap — visually hidden) ---------- */
.hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; pointer-events: none; }

/* ---------- Cart contact fields ---------- */
.cart-fields { display: grid; gap: 8px; margin-bottom: 12px; }
.cart-fields input:not(.hp) {
  width: 100%; padding: 11px 14px; border-radius: 10px; border: 1.5px solid var(--line);
  background: var(--shell); color: var(--ink); font-family: var(--sans); font-size: .92rem; outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.cart-fields input:focus { border-color: var(--sea); box-shadow: 0 0 0 3px rgba(90, 157, 149, .14); }

/* Gift options in the bag */
.cart-gift { border: 1.5px solid var(--line); border-radius: 12px; margin-bottom: 12px; background: var(--sand); overflow: hidden; }
.cart-gift > summary { list-style: none; cursor: pointer; padding: 12px 14px; font-size: .9rem; font-weight: 600; color: var(--ink); display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.cart-gift > summary::-webkit-details-marker { display: none; }
.cart-gift-ic { color: var(--coral); }
.cart-gift-hint { font-weight: 400; font-size: .8rem; color: var(--mute); }
.cart-gift[open] > summary { border-bottom: 1px solid var(--line); }
.cart-gift-fields { display: grid; gap: 8px; padding: 12px 14px; }
.cart-gift-fields input, .cart-gift-fields select, .cart-gift-fields textarea {
  width: 100%; padding: 10px 12px; border-radius: 9px; border: 1.5px solid var(--line);
  background: var(--shell); color: var(--ink); font-family: var(--sans); font-size: .9rem; outline: none;
  transition: border-color .2s, box-shadow .2s; resize: vertical;
}
.cart-gift-fields input:focus, .cart-gift-fields select:focus, .cart-gift-fields textarea:focus { border-color: var(--sea); box-shadow: 0 0 0 3px rgba(90, 157, 149, .14); }

/* ---------- Good to know: trust + FAQ ---------- */
.trust-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; max-width: var(--maxw); margin: 0 auto clamp(40px, 6vw, 64px); }
.trust { background: var(--shell); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 22px; }
.trust-ic { color: var(--sea); font-size: 1rem; }
.trust strong { display: block; font-family: var(--serif); font-weight: 500; font-size: 1.08rem; margin: 10px 0 6px; }
.trust span { font-size: .9rem; color: var(--mute); }
.faq { max-width: 760px; margin: 0 auto; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { padding: 18px 0; cursor: pointer; font-family: var(--serif); font-size: clamp(1.05rem, 1.6vw, 1.2rem); list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--coral); font-size: 1.4rem; line-height: 1; transition: transform .25s var(--ease); flex: none; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq p { padding: 0 0 18px; color: var(--mute); max-width: 64ch; }
.faq a { color: var(--coral); text-decoration: underline; text-decoration-color: rgba(224,106,79,.4); }
@media (max-width: 900px) { .trust-row { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .trust-row { grid-template-columns: 1fr; } }

/* ---------- Social-proof strip ---------- */
.press-strip {
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
  gap: 14px; padding: 16px clamp(18px, 5vw, 56px);
  background: var(--sand); border-bottom: 1px solid var(--line);
  font-size: .84rem; color: var(--mute); letter-spacing: .01em;
}
.press-strip strong { color: var(--ink); font-weight: 600; }
.press-strip a:hover strong { color: var(--coral); }
.press-strip i { font-style: normal; color: var(--sea); font-size: .7rem; }
@media (max-width: 600px) { .press-strip i { display: none; } .press-strip { gap: 4px 16px; font-size: .78rem; } }

/* ---------- Guided finder (shop by room / occasion) ---------- */
.finder-label { max-width: var(--maxw); margin: 0 auto 12px; font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--mute); font-weight: 600; }
.finder-row { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; max-width: var(--maxw); margin: 0 auto 34px; }
.finder-row:last-child { margin-bottom: 0; }
.finder-tile { position: relative; border: none; padding: 0; cursor: pointer; border-radius: 12px; overflow: hidden; aspect-ratio: 3 / 4; background: var(--ink); color: var(--shell); text-align: left; }
.finder-tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .8; transition: transform .6s var(--ease), opacity .3s; }
.finder-tile:hover img { transform: scale(1.06); opacity: 1; }
.finder-tile .ov { position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,39,48,.82), transparent 65%); }
.finder-tile strong { position: absolute; left: 12px; right: 12px; bottom: 11px; z-index: 2; font-family: var(--serif); font-weight: 500; font-size: 1rem; line-height: 1.15; }
@media (max-width: 900px) { .finder-row { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 520px) { .finder-row { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Personalized / made-to-order gift cards ---------- */
.gift-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; max-width: var(--maxw); margin: 0 auto; }
.gift-card { display: flex; flex-direction: column; text-align: left; padding: 0; cursor: pointer; background: var(--shell); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform .4s var(--ease), box-shadow .4s, border-color .4s; }
.gift-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.gift-card img { width: 100%; aspect-ratio: 16 / 11; object-fit: cover; }
.gift-body { padding: 18px 20px 22px; }
.gift-body strong { display: block; font-family: var(--serif); font-weight: 500; font-size: 1.25rem; margin-bottom: 7px; }
.gift-body span { display: block; font-size: .92rem; color: var(--mute); margin-bottom: 14px; }
.gift-body em { font-style: normal; font-weight: 600; font-size: .82rem; letter-spacing: .03em; color: var(--coral); }
.gift-card:hover .gift-body em { text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 900px) { .gift-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .gift-grid { grid-template-columns: 1fr; } }

/* ---------- Hannah's handwritten sign-off (humanizing) ---------- */
.about-signoff { font-family: 'Caveat', cursive; font-size: 1.55rem; color: var(--ink-soft); margin: 20px 0 -2px; }
.about-sign { font-family: 'Caveat', cursive; font-size: 2.6rem; color: var(--coral); line-height: 1; margin: 0; }

/* ---------- Shop "show more" ---------- */
.shop-more { display: block; margin: 30px auto 0; }

/* ---------- Hannah's favorites (featured strip) ---------- */
.feature-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; max-width: var(--maxw); margin: 0 auto 24px; }
.feature-head h2 { margin: 0; }
.feature-all { font-size: .84rem; font-weight: 600; letter-spacing: .03em; color: var(--coral); white-space: nowrap; }
.feature-all:hover { text-decoration: underline; }
.feature-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; max-width: var(--maxw); margin: 0 auto; }
.feature-card { border: none; padding: 0; cursor: pointer; background: var(--shell); border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-sm); text-align: left; transition: transform .4s var(--ease), box-shadow .4s; }
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.feature-card img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; transition: transform .6s var(--ease); }
.feature-card:hover img { transform: scale(1.05); }
.feature-name { display: block; padding: 11px 12px 14px; font-family: var(--serif); font-weight: 500; font-size: .96rem; line-height: 1.25; }
@media (max-width: 1040px) { .feature-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 720px)  { .feature-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px)  { .feature-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } }

/* ---------- Customer love (testimonials) ---------- */
.love-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; max-width: var(--maxw); margin: 0 auto; }
.love-card { margin: 0; background: var(--shell); border: 1px solid var(--line); border-radius: 16px; padding: 26px 26px 24px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 14px; }
.love-stars { color: var(--coral); letter-spacing: 3px; font-size: .9rem; }
.love-card blockquote { margin: 0; font-family: var(--serif); font-size: 1.08rem; line-height: 1.5; color: var(--ink); }
.love-card figcaption { display: flex; flex-direction: column; gap: 2px; margin-top: auto; }
.love-name { font-weight: 600; font-size: .92rem; }
.love-city { font-size: .82rem; color: var(--mute); }
@media (max-width: 860px) { .love-grid { grid-template-columns: 1fr; max-width: 540px; } }

/* ---------- Instagram studio grid ---------- */
.insta-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; max-width: var(--maxw); margin: 0 auto; }
.insta-tile { position: relative; border: none; padding: 0; cursor: pointer; border-radius: 12px; overflow: hidden; background: var(--sand); aspect-ratio: 1 / 1; box-shadow: var(--shadow-sm); }
.insta-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.insta-tile:hover img, .insta-tile:focus-visible img { transform: scale(1.06); }
.insta-shop { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: .82rem; font-weight: 600; letter-spacing: .04em; color: #fff; background: rgba(15, 39, 48, .42); opacity: 0; transition: opacity .3s var(--ease); }
.insta-tile:hover .insta-shop, .insta-tile:focus-visible .insta-shop { opacity: 1; }
.insta-cta { text-align: center; margin-top: 30px; }
@media (max-width: 720px) { .insta-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; } }
@media (max-width: 460px) { .insta-grid { grid-template-columns: repeat(2, 1fr); } .insta-shop { opacity: 1; background: linear-gradient(to top, rgba(15,39,48,.55), transparent 55%); align-items: flex-end; padding-bottom: 10px; } }

/* ============================================================
   MOBILE-FIRST REFINEMENTS — 85% of traffic is phone / Instagram
   ============================================================ */
.m-cta { display: none; }
@media (max-width: 760px) {
  .m-cta {
    display: flex; gap: 10px; align-items: center;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 96;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom, 0px));
    background: rgba(253, 250, 244, .94);
    backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    border-top: 1px solid var(--line);
  }
  .m-cta .btn { flex: 1; padding: 15px; }
  .to-top { bottom: 80px; }
  body { padding-bottom: 64px; }   /* room for the sticky bar */
}
@media (max-width: 540px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .pcard-info { padding: 12px 13px 15px; }
  .pcard-quick { opacity: 1; transform: none; }        /* no hover on touch */
  .pcard-fav { opacity: 1; transform: none; }
}
@media (max-width: 520px) {
  .hero-title { font-size: clamp(2.6rem, 11vw, 3.4rem); line-height: 1.0; letter-spacing: -.02em; }
  .hero-title em { font-size: 1.06em; display: inline-block; }
  h2 { font-size: clamp(1.9rem, 7.5vw, 2.5rem); }
  .section { padding: 58px 18px; }
  .section-head { margin-bottom: 34px; }
}
@media (max-width: 920px) {
  .fchip { padding: 10px 16px; min-height: 40px; }
  .fsw { width: 38px; height: 38px; }
  .favail input { width: 20px; height: 20px; }
  .qty button { width: 42px; height: 42px; }
  .nav-burger { margin-left: 4px; width: 42px; height: 42px; align-items: center; justify-content: center; }
  /* stop iOS auto-zoom on focus — inputs must be ≥16px */
  .cb-field input, .cb-field select, .cb-field textarea,
  .cart input, .fsearch input, .news input, .footer-news input,
  .palette-input input, .gift-field input, .gift-field textarea, .gift-field select { font-size: 16px; }
}
@media (max-width: 500px) { .cart { width: min(370px, 88vw); } }
@media (max-width: 480px) { .pm-media img { max-height: 46svh; } }

/* ============================================================
   EMAIL / SMS CAPTURE POPUP
   ============================================================ */
.signup-scrim { position: fixed; inset: 0; background: rgba(15, 39, 48, .5); backdrop-filter: blur(3px); z-index: 9600; opacity: 0; transition: opacity .4s var(--ease); }
.signup-scrim.show { opacity: 1; }
.signup {
  position: fixed; z-index: 9650; left: 50%; top: 50%; transform: translate(-50%, -46%) scale(.98);
  width: min(440px, 92vw); background: var(--shell); border-radius: 22px; overflow: hidden;
  box-shadow: 0 40px 90px -30px rgba(15, 39, 48, .55); opacity: 0; pointer-events: none;
  transition: opacity .45s var(--ease), transform .45s var(--ease);
}
.signup.show { opacity: 1; transform: translate(-50%, -50%) scale(1); pointer-events: auto; }
.signup-close {
  position: absolute; top: 12px; right: 12px; z-index: 2; width: 34px; height: 34px; border-radius: 50%;
  border: none; background: rgba(253, 250, 244, .85); color: var(--ink); font-size: 1.4rem; line-height: 1;
  cursor: pointer; display: grid; place-items: center; transition: background .2s, transform .2s;
}
.signup-close:hover { background: #fff; transform: rotate(90deg); }
.signup-art { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; height: 150px; overflow: hidden; }
.signup-art img { width: 100%; height: 150px; object-fit: cover; display: block; }
.signup-body { padding: 22px 26px 26px; text-align: center; }
.signup-body .kicker { justify-content: center; }
.signup-body h3 { font-family: var(--serif); font-size: 1.55rem; font-weight: 500; margin: 6px 0 8px; line-height: 1.1; }
.signup-sub { font-size: .9rem; color: var(--mute); line-height: 1.55; margin-bottom: 16px; }
.signup form { display: grid; gap: 9px; }
.signup form input:not(.hp) {
  width: 100%; padding: 13px 15px; border-radius: 11px; border: 1.5px solid var(--line);
  background: #fff; color: var(--ink); font-family: var(--sans); font-size: 16px; outline: none;
  transition: border-color .2s, box-shadow .2s; text-align: center;
}
.signup form input:focus { border-color: var(--sea); box-shadow: 0 0 0 3px rgba(90, 157, 149, .16); }
.signup-dismiss { margin-top: 12px; background: none; border: none; color: var(--mute); font-size: .82rem; cursor: pointer; text-decoration: underline; text-underline-offset: 2px; }
.signup-dismiss:hover { color: var(--ink); }
.signup-fine { font-size: .72rem; color: var(--mute); margin-top: 14px; opacity: .85; }
.signup-success { padding: 40px 26px; text-align: center; }
.signup-success h3 { font-family: var(--serif); font-size: 1.5rem; font-weight: 500; margin-bottom: 8px; }
.signup-success p { color: var(--mute); font-size: .92rem; }
.signup-success .signup-check { font-size: 2.2rem; color: var(--sea); display: block; margin-bottom: 8px; }
@media (max-width: 540px) {
  /* bottom sheet on phones — thumb-friendly, less intrusive */
  .signup { top: auto; bottom: 0; left: 0; transform: translateY(100%); width: 100%;
    border-radius: 22px 22px 0 0; max-height: 92svh; overflow-y: auto; }
  .signup.show { transform: translateY(0); }
  .signup-art { height: 124px; }
  .signup-body { padding: 20px 20px 26px; }
}
@media (prefers-reduced-motion: reduce) {
  .signup, .signup-scrim, .signup-close { transition: opacity .2s linear; }
  .signup.show { transform: translate(-50%, -50%); }
}

/* ============================================================
   FOOTER LEGAL ROW + POLICY DOC OVERLAY
   ============================================================ */
.footer-legal { display: flex; flex-wrap: wrap; gap: 8px 22px; justify-content: center; padding: 22px 0 4px; margin-top: 14px; border-top: 1px solid rgba(253, 250, 244, .12); }
.footer-legal button, .footer-legal a { background: none; border: none; cursor: pointer; font-family: var(--sans); font-size: .8rem; color: rgba(253, 250, 244, .6); padding: 0; transition: color .2s; text-decoration: none; }
.footer-legal button:hover, .footer-legal a:hover { color: rgba(253, 250, 244, .95); text-decoration: underline; text-underline-offset: 3px; }
.doc-modal { max-width: 640px; }
.doc-modal > .kicker { justify-content: flex-start; }
.doc-modal h3 { font-family: var(--serif); font-size: clamp(1.7rem, 3vw, 2.1rem); font-weight: 500; margin: 6px 0 18px; }
.doc-body { color: var(--ink); line-height: 1.65; }
.doc-body h4 { font-family: var(--serif); font-size: 1.12rem; font-weight: 600; margin: 22px 0 6px; }
.doc-body h4:first-child { margin-top: 0; }
.doc-body p { margin: 0 0 12px; color: var(--mute); }
.doc-body p strong { color: var(--ink); font-weight: 600; }
.doc-body ul { margin: 0 0 14px; padding-left: 20px; color: var(--mute); }
.doc-body li { margin-bottom: 7px; }
.doc-body a { color: var(--coral); }
.doc-body a:hover { text-decoration: underline; }
.doc-note { font-size: .82rem; font-style: italic; color: var(--sea-deep); background: var(--sand); border-radius: 10px; padding: 10px 14px; margin-bottom: 16px !important; }

/* Honest proof cards (shown until real customer quotes exist) */
.love-grid.proof-grid { grid-template-columns: repeat(3, 1fr); }
.proof-card { text-align: center; align-items: center; }
.proof-card .proof-stat { font-family: var(--serif); font-size: 1.5rem; font-weight: 500; color: var(--ink); line-height: 1.1; }
.proof-card .proof-label { font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--coral); font-weight: 700; margin: 6px 0 12px; }
.proof-card .proof-note { font-size: .92rem; line-height: 1.55; color: var(--mute); margin: 0; }
@media (max-width: 860px) { .love-grid.proof-grid { grid-template-columns: 1fr; max-width: 460px; } }

/* ============================================================
   CART: trust strip, pickup, privacy, confirmation, nudges
   ============================================================ */
.ship-nudge { background: none; border: none; color: var(--coral); font-weight: 600; font-size: .82rem; cursor: pointer; padding: 0; text-decoration: underline; text-underline-offset: 2px; }
.ship-nudge:hover { color: var(--coral-deep); }
.gift-deadline-note { font-size: .8rem; line-height: 1.5; color: var(--sea-deep); background: var(--shell); border-radius: 9px; padding: 9px 11px; margin: 2px 0 0; }
.cart-pickup { display: flex; gap: 9px; align-items: flex-start; font-size: .85rem; color: var(--ink); margin-bottom: 12px; cursor: pointer; line-height: 1.4; }
.cart-pickup input { margin-top: 2px; width: 17px; height: 17px; accent-color: var(--sea); flex: 0 0 auto; }
.cart-pickup em { color: var(--mute); font-style: normal; }
.cart-privacy { font-size: .76rem; color: var(--mute); text-align: center; margin: 0 0 12px; }
.cart-trust { display: flex; align-items: center; justify-content: center; gap: 8px; flex-wrap: wrap; margin: 12px 0 6px; font-size: .76rem; color: var(--sea-deep); font-weight: 600; }
.cart-trust i { color: var(--line); font-style: normal; }
.cart-note { font-size: .82rem; color: var(--mute); line-height: 1.55; margin-top: 10px; background: var(--sand); border-radius: 11px; padding: 12px 14px; text-align: left; }
.cart-note strong { color: var(--ink); }
.cart-note-sig { font-family: 'Caveat', cursive; font-size: 1.15rem; color: var(--coral); }
.cart-qa { margin-top: 10px; }
.cart-qa summary { font-size: .82rem; font-weight: 600; color: var(--sea-deep); cursor: pointer; list-style: none; padding: 4px 0; }
.cart-qa summary::-webkit-details-marker { display: none; }
.cart-qa ul { margin: 8px 0 0; padding-left: 16px; font-size: .8rem; color: var(--mute); line-height: 1.5; }
.cart-qa li { margin-bottom: 6px; }
.cart-qa li strong { color: var(--ink); }
/* confirmation state */
.cart-confirm { padding: 30px 24px 26px; text-align: center; }
.cart-confirm-mark { width: 52px; height: 52px; margin: 0 auto 14px; border-radius: 50%; background: var(--sea); color: #fff; display: grid; place-items: center; font-size: 1.5rem; }
.cart-confirm h3 { font-family: var(--serif); font-size: 1.5rem; font-weight: 500; margin-bottom: 8px; }
.cart-confirm-sub { font-size: .92rem; color: var(--mute); line-height: 1.6; margin-bottom: 18px; }
.cart-confirm-sub strong { color: var(--ink); }
.cart-confirm-items { list-style: none; text-align: left; background: var(--sand); border-radius: 12px; padding: 14px 16px; margin: 0 0 16px; font-size: .85rem; }
.cart-confirm-items li { padding: 4px 0; color: var(--ink); border-bottom: 1px solid var(--line); }
.cart-confirm-items li:last-child { border-bottom: none; }
.cart-confirm-help { font-size: .8rem; color: var(--mute); line-height: 1.6; margin-bottom: 18px; }
.cart-confirm-help a { color: var(--coral); font-weight: 600; }

/* ============================================================
   PASS B/D — conversion + design polish (audit-driven)
   ============================================================ */
/* Hero price anchor */
.hero-price-note { font-size: .92rem; color: var(--mute); margin: 14px 0 0; }
.hero-price-note strong { color: var(--coral-deep); font-weight: 700; }

/* Product card: reason-to-tap blurb + stronger price */
.pcard-blurb { font-size: .82rem; line-height: 1.4; color: var(--mute); margin: 4px 0 7px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.pcard-price strong { color: var(--ink); font-weight: 700; font-family: var(--serif); }
.pcard-sizes { color: var(--mute); font-weight: 500; }
/* differentiated, lighter hover (less of the uniform -6px everywhere) */
.pcard { transition: transform .45s var(--ease), box-shadow .45s, border-color .45s; }
.pcard:hover { transform: translateY(-4px) scale(1.012); box-shadow: 0 30px 60px -34px rgba(15,39,48,.5), inset 0 0 0 1.5px var(--blush); }

/* "Most loved" badge on the 11x14 size pill */
.pm-sizes { gap: 8px; }
.size-pill-pop { position: relative; overflow: visible; }
.size-pop { position: absolute; top: -9px; left: 50%; transform: translateX(-50%); white-space: nowrap;
  background: var(--coral); color: #fff; font-size: .56rem; letter-spacing: .06em; text-transform: uppercase;
  font-weight: 700; padding: 2px 7px; border-radius: 999px; }

/* Product modal free-shipping nudge */
.pm-ship-nudge { font-size: .84rem; color: var(--sea-deep); background: var(--sand); border-radius: 9px;
  padding: 8px 12px; margin: 0 0 14px; }
.pm-ship-nudge strong { color: var(--ink); }

/* Feature (best-seller) cards: shoppable, not decorative */
.feature-card { position: relative; }
.feature-badge { position: absolute; top: 10px; left: 10px; z-index: 2; background: var(--coral); color: #fff;
  font-size: .6rem; letter-spacing: .06em; text-transform: uppercase; font-weight: 700; padding: 4px 9px; border-radius: 999px; }
.feature-price { display: block; padding: 0 12px 14px; margin-top: -4px; font-size: .82rem; color: var(--mute); }
.feature-price::before { content: ''; }

/* Palette of accents instead of coral everywhere */
#collections h2 em, #gallery h2 em, #love h2 em { color: var(--sea-deep); }
#personalized h2 em { color: var(--gold); }
#gift-finder h2 em { color: var(--sun); }

/* Primary button: hand-mixed warmth + a hint of depth (excludes outline/ink) */
.btn:not(.btn-outline):not(.btn-ink) {
  background: linear-gradient(135deg, #e87559 0%, var(--coral) 55%, var(--coral-deep) 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.18), var(--shadow-sm);
}
.btn:not(.btn-outline):not(.btn-ink):hover { letter-spacing: .03em; }

/* Personalized-section reassurance line */
.gift-reassure { font-size: .92rem; line-height: 1.55; color: var(--mute); max-width: 600px; margin: 12px auto 0; }

/* Journal card: clearer "this opens Instagram" affordance */
.jcard-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 12px; }
.jread { font-style: normal; font-size: .78rem; font-weight: 600; color: var(--coral); white-space: nowrap; transition: transform .25s var(--ease); }
.jcard:hover .jread { transform: translateX(3px); }

/* ============================================================
   PASS F — final de-AI design polish (rhythm + hand-hung wall)
   ============================================================ */
/* Section rhythm: give the emotional peaks more room to breathe */
.section.airy { padding-block: clamp(104px, 13vw, 184px); }

/* Gallery wall feels hand-arranged: subtle hover rotation + uneven frames */
.gwall-art figure { cursor: pointer; transition: transform .45s var(--ease), box-shadow .45s; }
.gwall-art figure img { transition: transform .6s var(--ease); }
.gwall-art figure:hover { transform: rotate(-1.5deg) scale(1.03); box-shadow: var(--shadow-md); z-index: 3; }
.gwall-art figure:hover img { transform: scale(1.05); }
.gwall-art figure:nth-child(3) { border-width: 6px; }
.gwall-art figure:nth-child(5) { border-width: 5px; }
.gwall-art figure:nth-child(2) { transform: rotate(.6deg); }
.gwall-art figure:nth-child(4) { transform: rotate(-.6deg); }
.gwall-art figure:nth-child(2):hover, .gwall-art figure:nth-child(4):hover { transform: rotate(-1.5deg) scale(1.03); }

/* Favorites → "build a wall" CTA (repeat-buyer / AOV engine) */
.fav-wall-cta { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; justify-content: space-between;
  background: var(--sand); border: 1px solid var(--line); border-radius: 14px; padding: 16px 20px; margin-bottom: 22px; }
.fav-wall-cta p { margin: 0; font-size: .92rem; color: var(--mute); line-height: 1.5; flex: 1 1 280px; }
.fav-wall-cta p strong { color: var(--ink); font-family: var(--serif); font-weight: 600; }
.fav-wall-cta .btn { white-space: nowrap; }

/* Reassurance line on lead forms */
.form-reassure { font-size: .8rem; color: var(--mute); line-height: 1.5; margin: 4px 0 0; }

/* Express "Buy it now" (one-tap Apple Pay / cards) in the product modal */
.pm-buynow { margin-top: 10px; }
.pm-buynow::before { content: ""; }

/* Post-payment "order confirmed" overlay */
.paid-overlay { position: fixed; inset: 0; z-index: 9800; display: grid; place-items: center; padding: 22px;
  background: rgba(15, 39, 48, .55); backdrop-filter: blur(3px); opacity: 0; transition: opacity .35s var(--ease); }
.paid-overlay.show { opacity: 1; }
.paid-card { background: var(--shell); border-radius: 22px; max-width: 460px; width: 100%; text-align: center;
  padding: 38px 30px 32px; box-shadow: 0 40px 90px -30px rgba(15, 39, 48, .6); transform: translateY(10px) scale(.98);
  transition: transform .4s var(--ease); }
.paid-overlay.show .paid-card { transform: none; }
.paid-mark { width: 60px; height: 60px; margin: 0 auto 16px; border-radius: 50%; background: var(--sea); color: #fff;
  display: grid; place-items: center; font-size: 1.8rem; }
.paid-card h2 { font-family: var(--serif); font-size: 1.7rem; font-weight: 500; margin-bottom: 12px; line-height: 1.15; }
.paid-card p { color: var(--mute); line-height: 1.6; margin-bottom: 12px; }
.paid-sig { font-family: 'Caveat', cursive; font-size: 1.35rem; color: var(--coral); margin-bottom: 20px !important; }
.paid-card .btn { width: 100%; }
@media (prefers-reduced-motion: reduce) { .paid-overlay, .paid-card { transition: opacity .2s linear; } .paid-overlay.show .paid-card { transform: none; } }

/* Accepted-payment-method badges (shown at checkout when payments are live) */
.pay-methods { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; margin-top: 12px; }
.pay-badge { height: 22px; min-width: 34px; padding: 0 7px; border-radius: 4px; display: inline-flex; align-items: center; justify-content: center;
  font-size: .6rem; font-weight: 800; letter-spacing: .03em; color: #fff; background: #1a1f36; }
.pay-badge.visa { background: #1a1f71; }
.pay-badge.amex { background: #2e77bb; }
.pay-badge.disc { background: #e9730c; }
.pay-badge.apple { background: #000; }
.pay-badge.gpay { background: #fff; color: #5f6368; border: 1px solid var(--line); }
.pay-badge.more { background: var(--sand); color: var(--mute); }
.pay-badge.mc { background: #fff; border: 1px solid var(--line); padding: 0 6px; }
.pay-badge.mc i { width: 13px; height: 13px; border-radius: 50%; display: block; }
.pay-badge.mc i:first-child { background: #eb001b; }
.pay-badge.mc i:last-child { background: #f79e1b; margin-left: -6px; mix-blend-mode: multiply; }
