/* ============ Cherise brand system ============ */
:root {
  --brown: #3A2B23;
  --brown-soft: #4A382E;
  --pink: #F1B6C1;
  --pink-soft: #F8D9DF;
  --pink-bg: #FBEEF0;
  --cream: #FFFFFF;
  --cream-warm: #FFFFFF;
  --rose: #C0798A;        /* accent, replaces most gold usage */
  --rose-deep: #A45D6E;
  --gold: #D4AF37;        /* reserved: logo & rare fine details only */
  --ink: #3A2B23;
  --ink-soft: #7A685C;
  --ink-dim: #B8AA9E;

  --font-serif: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  --font-serif-italic: "Times New Roman", Times, Georgia, serif;
  --font-brand: "Grand Hotel", "Snell Roundhand", "Brush Script MT", cursive;
  --font-sans: "Montserrat", "Jost", "Helvetica Neue", Arial, sans-serif;

  --radius: 22px;
  --shadow: 0 24px 60px -24px rgba(58, 43, 35, 0.22);
  --maxw: 1240px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  clip: rect(0 0 0 0); overflow: hidden; white-space: nowrap;
}

/* ============ Type ============ */
h1, h2, h3, .wordmark {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.05;
  color: var(--ink);
}
h1 { font-size: clamp(2.9rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h1 em, h2 em { font-style: italic; color: var(--rose); }
/* Brand blend: every italic serif moment renders in Times New Roman */
em, h1 em, h2 em, h3 em,
.tiltcard__line, .plan h3,
.mosaic__item .chip, .boxshow__note,
.story__copy blockquote p, .appsec__points strong { font-family: var(--font-serif-italic); }
h2 .dim { color: var(--ink-dim); }

.eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 1.1rem;
}
.eyebrow--light { color: var(--pink); }

.wordmark { font-family: var(--font-brand); font-style: normal; font-weight: 400;
  font-size: 2rem; letter-spacing: 0.01em; line-height: 1; }
.wordmark--light { color: var(--cream); }

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.95rem 1.9rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  text-align: center;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -14px rgba(58,43,35,0.45); }
.btn--lg { padding: 1.15rem 2.3rem; font-size: 0.85rem; }
.btn__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--pink); }

.btn--dark { background: var(--brown); color: var(--cream); }
.btn--dark:hover { background: var(--brown-soft); }
.btn--blush { background: var(--pink); color: var(--brown); }
.btn--blush:hover { background: #EDA6B4; }
.btn--glass {
  background: rgba(253, 251, 249, 0.28);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(10px);
}
.btn--glass:hover { background: rgba(253, 251, 249, 0.45); box-shadow: none; }
.btn--soft { background: var(--pink-bg); color: var(--ink); }
.btn--ghost { background: transparent; color: var(--ink); border-color: rgba(58, 43, 35, 0.35); }
.btn--ghost:hover { border-color: var(--rose); color: var(--rose); box-shadow: none; }
.btn--light { background: var(--cream); color: var(--brown); }

/* ============ Nav ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 1.4rem;
  padding: 0.9rem clamp(1.2rem, 4vw, 3rem);
  transition: background 0.35s ease, box-shadow 0.35s ease;
}
.nav.is-solid, .nav--page {
  background: rgba(253, 251, 249, 0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(58, 43, 35, 0.08);
}
.nav--page { position: sticky; }
.nav__brand { display: flex; align-items: center; gap: 0.55rem; }
.nav__mark { width: 38px; height: 38px; }
.nav .wordmark { transition: color 0.35s ease; }
.nav--hero:not(.is-solid) .wordmark { color: #fff; text-shadow: 0 2px 14px rgba(58,43,35,0.35); }

/* All Products trigger + mega menu */
.menuwrap { position: relative; }
.menuwrap__trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 0.6rem 0.4rem;
}
.nav--hero:not(.is-solid) .menuwrap__trigger { color: #fff; text-shadow: 0 2px 10px rgba(58,43,35,0.35); }
.menuwrap__trigger::after {
  content: "";
  width: 7px; height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.2s ease;
}
.menuwrap:hover .menuwrap__trigger::after,
.menuwrap:focus-within .menuwrap__trigger::after { transform: rotate(225deg) translateY(-1px); }

.megamenu {
  position: absolute;
  top: calc(100% + 14px);
  left: -80px;
  width: min(920px, calc(100vw - 3rem));
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 40px 90px -30px rgba(58, 43, 35, 0.35);
  padding: 2rem 2.2rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  z-index: 110;
}
.megamenu::before { /* hover bridge so the panel doesn't close crossing the gap */
  content: "";
  position: absolute;
  top: -16px; left: 0; right: 0;
  height: 16px;
}
.menuwrap:hover .megamenu,
.menuwrap:focus-within .megamenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.megamenu__label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 1.3rem;
}
.megamenu__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem 2rem;
}
.megamenu h4 {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 0.7rem;
}
.megamenu h4 span { color: var(--rose); font-weight: 400; }
.megaitem {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  border-radius: 14px;
  padding: 0.5rem;
  margin: 0 -0.5rem;
  transition: background 0.2s ease;
}
.megaitem:hover { background: var(--pink-bg); }
.megaitem img {
  width: 58px; height: 58px;
  object-fit: cover;
  border-radius: 12px;
  flex: none;
}
.megaitem strong { display: block; font-weight: 500; font-size: 0.92rem; line-height: 1.3; }
.megaitem span { font-size: 0.78rem; color: var(--ink-soft); line-height: 1.45; display: block; margin-top: 0.15rem; }

.nav__pill {
  display: flex;
  gap: 0.3rem;
  margin: 0 auto;
  padding: 0.35rem;
  border-radius: 999px;
  background: rgba(253, 251, 249, 0.55);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 26px -18px rgba(58, 43, 35, 0.5);
}
.nav__pill a {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 0.55rem 1.05rem;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}
.nav__pill a:hover { background: rgba(241, 182, 193, 0.35); }
.nav__pill a.is-active { background: var(--brown); color: var(--cream); }

.nav__right { display: flex; align-items: center; gap: 0.8rem; }
.nav__cta { padding: 0.7rem 1.5rem; }
.nav__burger { display: none; }

/* ============ Hero (home) ============ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero__media, .hero__media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero__media { background: linear-gradient(140deg, #E8C9CF, #F1B6C1 45%, #D9A6AE); }
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(58,43,35,0.30) 0%, transparent 26%),
    linear-gradient(180deg, transparent 42%, rgba(58, 43, 35, 0.62) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 clamp(1.2rem, 5vw, 4rem) clamp(2.6rem, 6vh, 4.5rem);
  max-width: 60rem;
}
.hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--pink-soft);
  margin-bottom: 1rem;
}
.hero__content h1 { color: #fff; text-shadow: 0 4px 30px rgba(58,43,35,0.35); }
.hero__content h1 em { color: var(--pink); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2rem; }

.hero__chat {
  position: absolute;
  right: clamp(1.2rem, 4vw, 3rem);
  bottom: clamp(2.6rem, 6vh, 4.5rem);
  z-index: 3;
  width: 60px; height: 60px;
  border-radius: 20px;
  background: rgba(253, 251, 249, 0.92);
  display: grid;
  place-items: center;
  color: var(--brown);
  box-shadow: var(--shadow);
  transition: transform 0.25s ease;
}
.hero__chat:hover { transform: translateY(-3px); }
.hero__chat svg { width: 26px; height: 26px; }

/* ============ Page hero (inner pages) ============ */
.pagehero {
  background:
    radial-gradient(900px 420px at 85% -20%, var(--pink-bg) 0%, transparent 62%),
    var(--cream);
  padding: clamp(3rem, 7vw, 5.5rem) clamp(1.2rem, 4vw, 3rem) clamp(2rem, 4vw, 3rem);
  text-align: center;
}
.pagehero h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
.pagehero p { color: var(--ink-soft); max-width: 40rem; margin: 1rem auto 0; }

/* ============ Sections ============ */
.section { padding: clamp(4rem, 8vw, 7rem) clamp(1.2rem, 4vw, 3rem); }
.section--tight { padding-block: clamp(2.6rem, 5vw, 4rem); }
.section__head { max-width: 52rem; margin: 0 auto 3.2rem; text-align: center; }
.section__sub { color: var(--ink-soft); margin-top: 1.1rem; font-size: 1.02rem; }

/* ============ Concern carousel ============ */
.partner { max-width: calc(var(--maxw) + 4rem); margin: 0 auto; }
.partner__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.4rem;
}
.partner__head h2 { text-align: left; }
.partner__arrows { display: flex; gap: 0.7rem; flex: none; }
.arrow {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: none;
  background: var(--pink-bg);
  color: var(--brown);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.arrow:hover { background: var(--pink-soft); transform: translateY(-2px); }
.arrow svg { width: 22px; height: 22px; }

.carousel {
  display: flex;
  gap: 1.3rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 0.5rem;
}
.carousel::-webkit-scrollbar { display: none; }

.ccard {
  position: relative;
  flex: 0 0 clamp(240px, 24vw, 310px);
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  overflow: hidden;
  scroll-snap-align: start;
  box-shadow: 0 20px 44px -30px rgba(58,43,35,0.45);
  transition: transform 0.3s ease;
}
.ccard:hover { transform: translateY(-6px); }
.ccard img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.ccard:hover img { transform: scale(1.04); }

.chip {
  position: absolute;
  left: 1rem; bottom: 1rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 0.5rem 1.2rem;
  border-radius: 999px;
  backdrop-filter: blur(6px);
  color: var(--brown);
}
.chip--pink { background: rgba(248, 217, 223, 0.92); }
.chip--lav { background: rgba(201, 203, 232, 0.92); }
.chip--sand { background: rgba(233, 223, 210, 0.92); }
.chip--sage { background: rgba(206, 224, 205, 0.92); }
.chip--brown { background: rgba(92, 68, 51, 0.88); color: #F5E5D5; }
.chip--sky { background: rgba(199, 220, 232, 0.92); }

.ccard--cta {
  background: linear-gradient(165deg, var(--pink-bg), var(--pink-soft));
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1.6rem;
}
.ccard--cta .ccard__mark { width: 56px; height: 56px; margin: 0 auto 1rem; }
.ccard--cta h3 { font-size: 1.7rem; margin-bottom: 0.4rem; }
.ccard--cta h3 em { color: var(--rose); }
.ccard--cta p { font-size: 0.85rem; color: var(--ink-soft); margin-bottom: 1.4rem; }

/* ============ How it works ============ */
#how { background: #FFFFFF; }
.how { max-width: calc(var(--maxw) + 4rem); margin: 0 auto; }
.how__track {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 60rem;
  margin: 0 auto 2.6rem;
  padding: 0 2rem;
}
.how__num {
  flex: none;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-soft);
  background: var(--cream-warm);
  border: 1px solid rgba(58, 43, 35, 0.12);
}
.how__num.is-on { background: var(--pink-soft); color: var(--brown); box-shadow: 0 0 0 6px var(--pink-bg); }
.how__dots {
  flex: 1;
  height: 6px;
  background-image: radial-gradient(circle, var(--ink-dim) 2.2px, transparent 2.6px);
  background-size: 22px 6px;
  background-repeat: repeat-x;
  background-position: center;
  opacity: 0.55;
}
.how__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.howcard {
  background: var(--cream-warm);
  border: 1px solid rgba(58, 43, 35, 0.08);
  border-radius: var(--radius);
  padding: 2.6rem 2rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.howcard:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.howcard__icon {
  width: 120px; height: 120px;
  margin: 0 auto 1.6rem;
  border-radius: 50%;
  border: 1.5px dashed var(--rose);
  background: #fff;
  display: grid;
  place-items: center;
  color: var(--rose);
}
.howcard__icon svg { width: 46px; height: 46px; }
.howcard h3 { font-size: 1.55rem; margin-bottom: 0.6rem; }
.howcard p { font-size: 0.92rem; color: var(--ink-soft); max-width: 26rem; margin: 0 auto; }

/* ============ Why Cherise ============ */
.why { background: #FFFFFF; }
.scanwhy { max-width: 46rem; margin: 0 auto; text-align: center; }
.scanwhy h2 { text-align: center; }
.scanwhy__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.16));
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  color: var(--brown);
  border: 1px solid rgba(58, 43, 35, 0.14);
  border-radius: 999px;
  padding: 0.4rem 1.3rem 0.4rem 0.45rem;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85), 0 10px 26px -16px rgba(58, 43, 35, 0.3);
  margin-bottom: 1.3rem;
}
.scanwhy__pillIcon {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(58, 43, 35, 0.1);
  color: var(--brown);
  display: grid;
  place-items: center;
  flex: none;
}
.scanwhy__pillIcon svg { width: 16px; height: 16px; }
.scanwhy__sub { color: var(--ink-soft); margin-top: 1rem; line-height: 1.65; }
.scanwhy__factors {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 2.2rem auto 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}
.chipline {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: #fff;
  border: 1px solid rgba(58, 43, 35, 0.12);
  border-radius: 999px;
  padding: 0.42rem 1rem;
  font-weight: 500;
  color: var(--brown);
}
.scanwhy__stage {
  position: relative;
  max-width: var(--maxw);
  margin: 2.8rem auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(0.5rem, 2.5vw, 2.5rem);
}
.scanwhy__blob { position: absolute; border-radius: 50%; filter: blur(70px); opacity: 0.6; z-index: 0; }
.scanwhy__blob--l { left: 8%; bottom: 4%; width: 320px; height: 320px; background: var(--pink-soft); }
.scanwhy__blob--r { right: 6%; top: 2%; width: 360px; height: 360px; background: #E4DCF6; }
.tiltcard {
  position: relative;
  z-index: 1;
  background: #fff;
  border: 1px solid rgba(58, 43, 35, 0.08);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 1.5rem 1.7rem 1.7rem;
  width: clamp(220px, 25vw, 300px);
}
.tiltcard--left { transform: rotate(-11deg); margin-right: -2.4rem; }
.tiltcard--right { transform: rotate(10deg); margin-left: -2.4rem; text-align: right; }
.tiltcard--right .tiltcard__name { transform: rotate(4deg); }
.tiltcard--right .tiltcard__line { transform: rotate(2deg); }
.tiltcard__name { font-family: var(--font-serif); font-size: 1.45rem; font-weight: 600; color: var(--brown); line-height: 1.15; transform: rotate(-4deg); margin-bottom: 0.5rem; }
.tiltcard__img { width: 100%; aspect-ratio: 1 / 1.05; object-fit: contain; }
.tiltcard__price { font-family: var(--font-serif); font-size: 2rem; color: var(--brown); line-height: 1; margin-top: 0.5rem; }
.tiltcard__price span { font-size: 0.95rem; color: var(--ink-soft); }
.tiltcard__line { font-family: var(--font-serif); font-style: italic; font-size: 0.98rem; color: var(--ink-soft); margin-top: 0.45rem; line-height: 1.4; transform: rotate(-2deg); }
.scanwhy__tones { display: flex; align-items: center; justify-content: center; gap: 0.8rem; flex-wrap: wrap; margin: 2.1rem auto 0; color: var(--ink-soft); font-size: 0.92rem; text-align: center; }
.scanwhy__tones .floatcard__avatars { margin-top: 0; }
.scanphone {
  position: relative;
  z-index: 2;
  width: clamp(270px, 30vw, 330px);
  aspect-ratio: 9 / 18.5;
  background: #241C18;
  border-radius: 46px;
  padding: 12px;
  box-shadow: 0 46px 90px -34px rgba(58, 43, 35, 0.5);
}
.scanphone__screen { position: relative; width: 100%; height: 100%; border-radius: 36px; overflow: hidden; background: #1C1512; }
.scanphone__face { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.scanphone__notch { position: absolute; top: 24px; left: 50%; transform: translateX(-50%); width: 34%; height: 21px; background: #241C18; border-radius: 999px; }
.scanphone__chip {
  position: absolute;
  top: 58px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  background: rgba(36, 28, 24, 0.55);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  white-space: nowrap;
}
.scanphone__overlay { position: absolute; top: 0; left: 0; width: 100%; height: 66%; z-index: 2; }
.scandots circle { animation: scanpulse 2.2s ease-in-out infinite; transform-origin: center; }
.scandots circle:nth-child(2n) { animation-delay: -0.7s; }
.scandots circle:nth-child(3n) { animation-delay: -1.4s; }
@keyframes scanpulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }
.scanphone__sheet {
  position: absolute;
  left: 10px; right: 10px; bottom: 10px;
  z-index: 3;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(6px);
  border-radius: 24px;
  padding: 0.9rem 0.95rem 0.75rem;
  text-align: left;
}
.scanphone__sheetTitle { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 0.35rem; }
.scanprod { display: flex; gap: 0.7rem; align-items: center; padding: 0.5rem 0; }
.scanprod + .scanprod { border-top: 1px solid rgba(58, 43, 35, 0.08); }
.scanprod img { width: 42px; height: 42px; border-radius: 10px; object-fit: cover; flex: none; }
.scanprod b { font-size: 0.8rem; display: block; line-height: 1.25; color: var(--ink); }
.scanprod span { font-size: 0.75rem; color: var(--rose-deep); font-weight: 600; }
.scanwhy__cards {
  max-width: var(--maxw);
  margin: 2.4rem auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.scanwhy__ctas { display: flex; justify-content: center; gap: 0.8rem; flex-wrap: wrap; margin-top: 2.2rem; }
.floatcard__label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.3rem;
}
.floatcard__title { font-family: var(--font-serif); font-size: 1.15rem; font-weight: 600; }
.floatcard__wave { width: 120px; margin: 0.7rem 0 0.4rem; color: var(--rose); }
.floatcard__big { font-family: var(--font-serif); font-size: 1.7rem; color: var(--brown); line-height: 1; }
.floatcard__big span { font-family: var(--font-sans); font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-soft); }
.floatcard__avatars { display: flex; margin-top: 0.7rem; }
.floatcard__avatars i {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -8px;
}
.floatcard__avatars i:first-child { margin-left: 0; background: #E3B49A; }
.floatcard__avatars i:nth-child(2) { background: #F0D5C0; }
.floatcard__avatars i:nth-child(3) { background: #8A5B41; }
.floatcard__avatars i:nth-child(4) { background: #5C4433; }
.glasscard {
  background: #fff;
  border: 1px solid rgba(58, 43, 35, 0.09);
  border-radius: 18px;
  padding: 1.6rem 1.5rem;
  color: var(--ink);
  box-shadow: 0 14px 34px -20px rgba(58, 43, 35, 0.18);
}
.glasscard__icon {
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--pink-bg);
  color: var(--rose-deep);
  font-size: 1.1rem;
  margin-bottom: 0.9rem;
}
.glasscard h3 { font-size: 1.35rem; color: var(--brown); margin-bottom: 0.4rem; }
.glasscard p { font-size: 0.88rem; line-height: 1.55; color: var(--ink-soft); }

/* ============ Transformation ============ */
.transform {
  background: #FFFFFF;
}
.transform__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 1.4rem;
  align-items: stretch;
}
.tcard { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.tcard--story { padding: 2.4rem 2.2rem 2rem; display: flex; flex-direction: column; gap: 1.6rem; }
.tcard__name { font-family: var(--font-serif); font-size: 1.4rem; font-weight: 600; text-align: center; }
.tcard__result {
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose);
  margin-top: 0.2rem;
}
.tcard__quote { text-align: center; font-size: 0.95rem; color: var(--ink-soft); max-width: 30rem; margin: 0.9rem auto 0; }
.tcard__note {
  text-align: center;
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-top: 0.7rem;
}
.tcard__concerns { background: #FFFFFF; border: 1px solid rgba(58, 43, 35, 0.08); border-radius: 16px; padding: 1.3rem 1.4rem; }
.tcard__concerns > p {
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.9rem;
}
.tcard__concerns a {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: #fff;
  border: 1px solid #EEEEF1;
  border-radius: 999px;
  padding: 0.7rem 1.2rem;
  margin-top: 0.55rem;
  font-size: 0.9rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.tcard__concerns a:hover { transform: translateX(4px); border-color: var(--pink-soft); box-shadow: 0 8px 20px -12px rgba(58,43,35,0.4); }
.tcard__concerns a span { color: var(--rose); }
.tcard__concerns a i { margin-left: auto; font-style: normal; color: var(--ink-soft); }
.tcard__footer { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.tcard__product { display: flex; align-items: center; gap: 0.8rem; }
.tcard__product svg, .tcard__product img { width: 44px; height: 44px; }
.tcard__product strong { display: block; font-weight: 500; font-size: 0.95rem; }
.tcard__product span { font-size: 0.75rem; color: var(--ink-soft); }

.tcard--slider { position: relative; min-height: 460px; }
.baslider { position: relative; width: 100%; height: 100%; min-height: 460px; overflow: hidden; --pos: 50%; }
.baslider img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.baslider__before { position: absolute; inset: 0; clip-path: inset(0 calc(100% - var(--pos)) 0 0); }
.baslider__before img { filter: saturate(0.55) brightness(0.88) contrast(0.92) sepia(0.12); }
.baslider__bar {
  position: absolute;
  top: 0; bottom: 0;
  left: var(--pos);
  width: 2px;
  background: rgba(255, 255, 255, 0.95);
  z-index: 3;
}
.baslider__handle {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  color: var(--brown);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  box-shadow: 0 8px 22px -8px rgba(58,43,35,0.5);
  white-space: nowrap;
}
.baslider__tag {
  position: absolute;
  bottom: 1.1rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  background: rgba(58, 43, 35, 0.55);
  color: #fff;
  backdrop-filter: blur(6px);
  z-index: 3;
}
.baslider__tag--before { left: 1.1rem; }
.baslider__tag--after { right: 1.1rem; }
.baslider input[type="range"] {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 4;
  margin: 0;
}
.gauge {
  position: absolute;
  top: 1.2rem; right: 1.2rem;
  z-index: 5;
  background: rgba(253, 251, 249, 0.94);
  border-radius: 16px;
  padding: 0.9rem 1.2rem;
  text-align: center;
  box-shadow: var(--shadow);
}
.gauge p { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); }
.gauge svg { width: 90px; margin: 0.3rem auto 0; }
.gauge strong { font-family: var(--font-serif); font-size: 1.3rem; display: block; margin-top: -1.6rem; }

/* ============ Product cards (catalog, bestsellers, featured) ============ */
.products {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.3rem;
}
.pcard {
  background: #fff;
  border: 1px solid rgba(58, 43, 35, 0.07);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pcard:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.pcard__media { position: relative; aspect-ratio: 4 / 5; background: var(--cream-warm); }
.pcard__media img { width: 100%; height: 100%; object-fit: cover; }
.pcard__tag {
  position: absolute;
  top: 0.9rem; left: 0.9rem;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(253, 251, 249, 0.92);
  color: var(--brown);
  border-radius: 999px;
  padding: 0.3rem 0.85rem;
}
.pcard__body { padding: 1.2rem 1.3rem 1.4rem; display: flex; flex-direction: column; flex: 1; }
.pcard__body h3 { font-size: 1.3rem; margin-bottom: 0.25rem; }
.pcard__body p { font-size: 0.84rem; color: var(--ink-soft); flex: 1; }
.pcard__row { display: flex; align-items: center; justify-content: space-between; margin-top: 1rem; gap: 0.8rem; }
.pcard__price { font-family: var(--font-serif); font-size: 1.25rem; font-weight: 600; color: var(--brown); }
.pcard__price span { font-family: var(--font-sans); font-size: 0.66rem; letter-spacing: 0.12em; color: var(--ink-soft); }
.pcard__btn {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--brown);
  color: var(--cream);
  border: none;
  border-radius: 999px;
  padding: 0.6rem 1.2rem;
  cursor: pointer;
  transition: background 0.2s ease;
}
.pcard__btn:hover { background: var(--brown-soft); }

.cathead {
  max-width: var(--maxw);
  margin: 0 auto 1.6rem;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}
.cathead h2 { font-size: 1.9rem; }
.cathead p { font-size: 0.85rem; color: var(--ink-soft); }

/* Catalog search + category filters */
.catbar {
  max-width: var(--maxw);
  margin: 0 auto 1.8rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem;
}
.catbar__search {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  background: #fff;
  border: 1px solid var(--pink-soft);
  border-radius: 999px;
  padding: 0.6rem 1.1rem;
  min-width: 240px;
  flex: 1 1 240px;
  max-width: 340px;
  color: var(--ink-soft);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.catbar__search:focus-within { border-color: var(--rose); box-shadow: 0 0 0 4px rgba(192, 121, 138, 0.12); }
.catbar__search svg { width: 17px; height: 17px; flex: none; }
.catbar__search input {
  border: 0;
  outline: 0;
  background: transparent;
  font: inherit;
  font-size: 0.9rem;
  color: var(--ink);
  width: 100%;
}
.catbar__search input::placeholder { color: var(--ink-dim); }
.catbar__chips { display: flex; flex-wrap: wrap; gap: 0.45rem; }
.catchip {
  border: 1px solid var(--pink-soft);
  background: #fff;
  color: var(--ink-soft);
  font: inherit;
  font-size: 0.82rem;
  border-radius: 999px;
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: all 0.18s ease;
}
.catchip:hover { border-color: var(--rose); color: var(--rose-deep); }
.catchip.is-active { background: var(--brown); border-color: var(--brown); color: #fff; }

/* ============ Plans / pricing ============ */
.plans {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  align-items: stretch;
}
.plan {
  background: #fff;
  border: 1px solid rgba(58, 43, 35, 0.08);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  text-align: center;
  box-shadow: 0 22px 50px -36px rgba(58,43,35,0.35);
}
.plan h3 { font-size: 1.7rem; font-style: italic; }
.plan__price { font-family: var(--font-serif); font-size: 2.5rem; color: var(--brown); margin: 0.8rem 0 0.2rem; }
.plan__price span { font-family: var(--font-sans); font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-soft); }
.plan__tagline { font-size: 0.85rem; color: var(--rose); margin-bottom: 1.2rem; }
.plan__billnote { font-size: 0.74rem; color: var(--ink-soft); margin: -0.4rem 0 0.6rem; }
.plan--featured .plan__billnote { color: rgba(253,251,249,0.65); }

.planstoggle {
  display: flex;
  justify-content: center;
  gap: 0.3rem;
  max-width: fit-content;
  margin: 0 auto 2.4rem;
  background: #fff;
  border: 1px solid rgba(58, 43, 35, 0.08);
  border-radius: 999px;
  padding: 0.3rem;
  box-shadow: 0 14px 30px -22px rgba(58,43,35,0.3);
}
.planstoggle__btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.6rem 1.3rem;
  font-size: 0.85rem;
  color: var(--ink-soft);
  transition: background 0.2s ease, color 0.2s ease;
}
.planstoggle__btn.is-on { background: var(--brown); color: var(--cream); }
.planstoggle__save {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  background: var(--pink);
  color: var(--brown);
  border-radius: 999px;
  padding: 0.15rem 0.55rem;
}
.planstoggle__btn.is-on .planstoggle__save { background: rgba(255,255,255,0.2); color: var(--cream); }
.plan ul { flex: 1; margin-bottom: 1.8rem; }
.plan li {
  font-size: 0.92rem;
  color: var(--ink-soft);
  padding: 0.5rem 0;
  border-bottom: 1px dashed rgba(58, 43, 35, 0.12);
}
.plan li:last-child { border-bottom: none; }
.plan--featured { background: var(--brown); border-color: var(--brown); transform: scale(1.03); }
.plan--featured h3 { color: var(--pink-soft); }
.plan--featured .plan__price { color: var(--cream); }
.plan--featured .plan__price span { color: rgba(253,251,249,0.6); }
.plan--featured .plan__tagline { color: var(--pink); }
.plan--featured li { color: rgba(253, 251, 249, 0.82); border-color: rgba(253, 251, 249, 0.14); }
.plan__badge {
  align-self: center;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--brown);
  background: var(--pink);
  border-radius: 999px;
  padding: 0.3rem 1rem;
  margin-bottom: 1.1rem;
}
.plans__note {
  max-width: 42rem;
  margin: 2.8rem auto 0;
  text-align: center;
  font-size: 0.9rem;
  color: var(--ink-soft);
  font-style: italic;
}

/* ============ Story ============ */
.story {
  background:
    radial-gradient(900px 500px at 110% 0%, rgba(241, 182, 193, 0.14), transparent 60%),
    var(--brown);
  color: rgba(253, 251, 249, 0.86);
}
.story h2 { color: var(--cream); }
.story h2 em { color: var(--pink); }
.story__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
.story__copy p { margin-top: 1.3rem; max-width: 33rem; }
.story__copy strong { color: var(--cream); font-weight: 500; }
.story__copy em { color: var(--pink); }
.story__copy blockquote { margin-top: 2.2rem; border-left: 2px solid var(--pink); padding-left: 1.4rem; }
.story__copy blockquote p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.5rem;
  line-height: 1.35;
  color: var(--cream);
  margin: 0;
}
.story__copy cite {
  display: block;
  margin-top: 0.9rem;
  font-size: 0.75rem;
  font-style: normal;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pink);
}
.story__roadmap h3 { font-size: 1.4rem; color: var(--cream); margin-bottom: 1.6rem; }
.roadmap { position: relative; }
.roadmap::before {
  content: "";
  position: absolute;
  left: 10px; top: 8px; bottom: 8px;
  width: 1px;
  background: rgba(241, 182, 193, 0.4);
}
.roadmap__item { position: relative; display: flex; gap: 1.2rem; padding: 0 0 1.7rem; }
.roadmap__dot {
  flex: none;
  width: 21px; height: 21px;
  border-radius: 50%;
  border: 1px solid var(--pink);
  background: var(--brown);
  margin-top: 3px;
  z-index: 1;
}
.roadmap__item--now .roadmap__dot {
  background: radial-gradient(circle at 32% 30%, #F8D9DF, var(--pink));
  box-shadow: 0 0 0 5px rgba(241, 182, 193, 0.18);
}
.roadmap__item h4 { font-family: var(--font-serif); font-size: 1.2rem; font-weight: 600; color: var(--cream); }
.roadmap__item--now h4::after {
  content: "Now";
  font-family: var(--font-sans);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brown);
  background: var(--pink);
  border-radius: 999px;
  padding: 0.18rem 0.6rem;
  margin-left: 0.6rem;
  vertical-align: middle;
}
.roadmap__item p { font-size: 0.88rem; color: rgba(253, 251, 249, 0.62); }

/* ============ Waitlist / CTA band ============ */
.waitlist { background: #FFFFFF; }
.waitlist__card {
  max-width: 56rem;
  margin: 0 auto;
  background: #fff;
  border: 1px solid rgba(58, 43, 35, 0.08);
  border-radius: 26px;
  box-shadow: var(--shadow);
  padding: clamp(1.6rem, 3.2vw, 2.4rem) clamp(2rem, 5vw, 3.6rem);
  text-align: center;
}
.waitlist__mark { width: 52px; height: 52px; margin: 0 auto 0.6rem; }
.waitlist__card p { color: var(--ink-soft); margin-top: 0.7rem; }
.waitlist__form { display: flex; gap: 0.7rem; margin-top: 1.3rem; }
.waitlist__gift { margin-top: 0.7rem; color: var(--rose); font-weight: 600; font-size: 0.95rem; }
.waitlist__form--full { flex-direction: column; }
.waitlist__form--full .btn { width: 100%; }
.waitlist__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem; width: 100%; }
@media (max-width: 640px) { .waitlist__grid { grid-template-columns: 1fr; } }
.waitlist__form input {
  flex: 1;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  padding: 0.95rem 1.3rem;
  border: 1px solid rgba(58, 43, 35, 0.2);
  border-radius: 999px;
  background: var(--cream);
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.waitlist__form input:focus { border-color: var(--rose); box-shadow: 0 0 0 4px rgba(192, 121, 138, 0.15); }
.waitlist__form input.is-invalid { border-color: #C96B6B; }
.waitlist__success { margin-top: 1.4rem; color: var(--rose); font-weight: 400; }
.waitlist__small {
  margin-top: 1.2rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ============ Blog ============ */
.bloggrid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.bpost {
  background: #fff;
  border: 1px solid rgba(58, 43, 35, 0.07);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.bpost:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.bpost__media { aspect-ratio: 16 / 10; overflow: hidden; }
.bpost__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.bpost:hover .bpost__media img { transform: scale(1.05); }
.bpost__body { padding: 1.4rem 1.5rem 1.6rem; display: flex; flex-direction: column; flex: 1; }
.bpost__meta {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 0.6rem;
}
.bpost__body h3 { font-size: 1.45rem; line-height: 1.15; margin-bottom: 0.5rem; }
.bpost__body p { font-size: 0.88rem; color: var(--ink-soft); flex: 1; }
.bpost__more { margin-top: 1rem; font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--brown); }
.bpost__more::after { content: " →"; }

/* Article page */
.article {
  max-width: 44rem;
  margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1.2rem, 4vw, 2rem) 4rem;
}
.article__meta {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 1rem;
}
.article h1 { font-size: clamp(2.2rem, 4.5vw, 3.2rem); margin-bottom: 1.2rem; }
.article__lead { font-size: 1.12rem; color: var(--ink-soft); margin-bottom: 2rem; }
.article__cover { border-radius: 20px; overflow: hidden; margin-bottom: 2.4rem; }
.article__cover img { width: 100%; aspect-ratio: 16/8; object-fit: cover; }
.article h2 { font-size: 1.7rem; margin: 2.2rem 0 0.8rem; }
.article h3 { font-size: 1.25rem; margin: 1.6rem 0 0.5rem; }
.article p { margin-bottom: 1rem; color: #55453B; }
.article ul, .article ol { margin: 0 0 1.2rem 1.2rem; color: #55453B; }
.article ul { list-style: disc; }
.article ol { list-style: decimal; }
.article li { margin-bottom: 0.4rem; }
.article strong { font-weight: 500; color: var(--ink); }
.article__cta {
  margin-top: 2.5rem;
  background: var(--pink-bg);
  border-radius: 18px;
  padding: 1.8rem;
  text-align: center;
}
.article__cta p { color: var(--ink-soft); margin-bottom: 1.1rem; }

/* ============ Contact ============ */
.contactgrid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
  align-items: start;
}
.contactcard {
  background: #fff;
  border: 1px solid rgba(58, 43, 35, 0.08);
  border-radius: 22px;
  padding: 2.2rem;
  box-shadow: 0 18px 40px -32px rgba(58,43,35,0.35);
}
.contactcard h2 { font-size: 1.8rem; margin-bottom: 1.2rem; }
.contactrow { display: flex; gap: 1rem; align-items: flex-start; padding: 0.8rem 0; border-bottom: 1px dashed rgba(58,43,35,0.12); }
.contactrow:last-of-type { border-bottom: none; }
.contactrow__icon {
  flex: none;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--pink-bg);
  display: grid;
  place-items: center;
  color: var(--rose);
}
.contactrow__icon svg { width: 20px; height: 20px; }
.contactrow strong { display: block; font-weight: 500; font-size: 0.95rem; }
.contactrow span, .contactrow a { font-size: 0.88rem; color: var(--ink-soft); }
.contactrow a:hover { color: var(--rose); }

.form { display: grid; gap: 1rem; }
.form label { font-size: 0.78rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); }
.form input, .form textarea, .form select {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  padding: 0.9rem 1.2rem;
  border: 1px solid rgba(58, 43, 35, 0.2);
  border-radius: 14px;
  background: var(--cream);
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  resize: vertical;
}
.form input:focus, .form textarea:focus { border-color: var(--rose); box-shadow: 0 0 0 4px rgba(192, 121, 138, 0.13); }
.form__success { color: var(--rose); font-weight: 400; }

/* ============ About: manifesto & mosaic ============ */
.manifesto { background: linear-gradient(180deg, var(--cream), var(--pink-bg)); }
.manifesto__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.manifesto__copy h2 { text-align: left; margin-bottom: 1.2rem; }
.manifesto__copy p { color: var(--ink-soft); max-width: 28rem; margin-bottom: 1rem; }
.manifesto__copy strong { color: var(--ink); font-weight: 500; }
.manifesto__sign {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--ink) !important;
  margin: 1.4rem 0 1.8rem !important;
}
.manifesto__sign em { color: var(--rose); }

.mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 130px;
  gap: 0.8rem;
}
.mosaic__item {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 40px -30px rgba(58,43,35,0.5);
}
.mosaic__item--tall { grid-row: span 2; }
.mosaic__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.mosaic__item:hover img { transform: scale(1.05); }
.mosaic__item .chip { left: 0.7rem; bottom: 0.7rem; padding: 0.3rem 0.85rem; font-size: 0.7rem; font-style: italic; font-family: var(--font-serif); }

/* ============ About: box showcase ============ */
.boxshow { background: var(--cream); }
.boxshow__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.boxshow__copy h2 { text-align: left; margin-bottom: 1rem; }
.boxshow__copy > p { color: var(--ink-soft); max-width: 30rem; }
.boxshow__list { margin: 1.4rem 0; display: grid; gap: 0.9rem; }
.boxshow__list li { display: flex; gap: 0.9rem; align-items: flex-start; }
.boxshow__list span {
  flex: none;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--pink-bg);
  color: var(--rose);
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  margin-top: 2px;
}
.boxshow__list strong { display: block; font-weight: 500; }
.boxshow__list div { font-size: 0.92rem; color: var(--ink-soft); }
.boxshow__note { font-size: 0.85rem; font-style: italic; color: var(--ink-soft); }

.boxscene {
  background:
    radial-gradient(560px 340px at 60% 20%, #F8E3E7 0%, transparent 70%),
    linear-gradient(180deg, #FBEEF0, #F4E6DC);
  border-radius: 28px;
  padding: clamp(2rem, 4vw, 3rem);
  min-height: 460px;
  display: grid;
  place-items: center;
}
.boxscene__stage { position: relative; width: min(400px, 100%); height: 400px; }
.bigbox {
  position: absolute;
  left: 4%; top: 4%;
  width: 210px; height: 300px;
  background: linear-gradient(165deg, #3D2C22, #241A14 70%);
  border-radius: 14px 14px 12px 12px;
  box-shadow: 18px 26px 44px -18px rgba(58,43,35,0.55), inset -12px 0 24px -14px rgba(0,0,0,0.5), inset 2px 2px 6px rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3rem 1rem 1.4rem;
  z-index: 2;
}
.bigbox svg { width: 92px; height: 92px; }
.bigbox__word {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: #F5EDE4;
  line-height: 1;
  margin-top: 0.8rem;
  letter-spacing: 0.02em;
}
.bigbox__caption {
  margin-top: auto;
  font-size: 0.5rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245, 237, 228, 0.55);
  text-align: center;
  line-height: 1.7;
}
.drawerbox {
  position: absolute;
  right: 0; bottom: 14%;
  width: 220px; height: 140px;
  background: linear-gradient(170deg, #F3C3CE, #E9AEBC);
  border-radius: 10px;
  box-shadow: 14px 22px 40px -18px rgba(58,43,35,0.4), inset 0 -14px 22px -16px rgba(120, 70, 84, 0.45);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.drawerbox svg { width: 54px; height: 54px; }
.drawerbox__word {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: #FDF6F1;
  line-height: 1;
  margin-top: 0.4rem;
}
.drawerbox__lid {
  position: absolute;
  left: 0; right: 0; top: 14px;
  height: 1.5px;
  background: rgba(120, 70, 84, 0.35);
}
.goldroller {
  position: absolute;
  left: 10%; bottom: 5%;
  width: 130px; height: 7px;
  border-radius: 999px;
  background: linear-gradient(90deg, #B8912B, #EBD388 45%, #C9A53B);
  transform: rotate(-18deg);
  box-shadow: 6px 10px 16px -8px rgba(58,43,35,0.5);
  z-index: 3;
}
.goldroller::after {
  content: "";
  position: absolute;
  right: -18px; top: 50%;
  transform: translateY(-50%);
  width: 26px; height: 26px;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 30%, #EBD388, #C9A53B 60%, #A8821F);
}
.boxscene__shadow {
  position: absolute;
  left: 6%; right: 6%; bottom: 2%;
  height: 22px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(58,43,35,0.22), transparent);
  z-index: 0;
}

/* ============ Blog article CTA row ============ */
.article__ctarow { display: flex; flex-wrap: wrap; gap: 0.8rem; justify-content: center; }

#world { background: #FFFFFF; }
#bestsellers { background: #FFFFFF; }

/* ============ Duo (image + copy split) ============ */
.duo {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.duo__media { position: relative; }
.duo__media img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow);
}
.duo__tag {
  position: absolute;
  top: 1.1rem; left: 1.1rem;
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: rgba(253, 251, 249, 0.92);
  color: var(--brown);
  border-radius: 999px;
  padding: 0.4rem 1rem;
}
.duo__copy h2 { text-align: left; margin-bottom: 1rem; }
.duo__copy p { color: var(--ink-soft); max-width: 30rem; margin-bottom: 1rem; }
.duo__points { display: grid; gap: 0.55rem; margin: 1.4rem 0 1.8rem; }
.duo__points li { display: flex; gap: 0.8rem; align-items: baseline; font-size: 0.95rem; color: var(--ink-soft); }
.duo__points li::before { content: "✦"; color: var(--rose); flex: none; }
.duo--flip .duo__media { order: 2; }
@media (max-width: 880px) {
  .duo, .duo--flip { grid-template-columns: 1fr; }
  .duo--flip .duo__media { order: 0; }
}

/* ============ Contact hero ============ */
.chero {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  padding: clamp(2.5rem, 6vw, 5rem) clamp(1.2rem, 4vw, 3rem) clamp(1.5rem, 3vw, 2.5rem);
}
.chero__copy h1 { font-size: clamp(2.6rem, 5vw, 4rem); margin-bottom: 0.8rem; }
.chero__lead { color: var(--ink-soft); max-width: 30rem; margin-bottom: 2rem; }

.cinfo { display: grid; gap: 0.7rem; max-width: 30rem; }
.cinfo__row {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #fff;
  border: 1px solid rgba(58, 43, 35, 0.08);
  border-radius: 18px;
  padding: 0.9rem 1.2rem;
  box-shadow: 0 14px 30px -26px rgba(58,43,35,0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
a.cinfo__row:hover { transform: translateX(4px); box-shadow: 0 16px 34px -22px rgba(58,43,35,0.45); }
.cinfo__icon {
  flex: none;
  width: 44px; height: 44px;
  border-radius: 14px;
  background: var(--brown);
  display: grid;
  place-items: center;
  color: #fff;
}
.cinfo__icon svg { width: 20px; height: 20px; }
.cinfo__row strong { display: block; font-weight: 500; font-size: 0.92rem; color: var(--ink); }
.cinfo__row > span:not(.cinfo__icon) { font-size: 0.85rem; color: var(--ink-soft); }
.cinfo__row i { margin-left: auto; font-style: normal; color: var(--ink-dim); }

.chero__visual { position: relative; }
.chero__visual img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow);
}
.chero__badge {
  position: absolute;
  left: -1.2rem; bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(253, 251, 249, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 0.9rem 1.2rem;
  box-shadow: var(--shadow);
  animation: floaty 5.5s ease-in-out infinite;
}
.chero__dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: #7FB069;
  box-shadow: 0 0 0 4px rgba(127, 176, 105, 0.25);
}
.chero__badge strong { display: block; font-weight: 500; font-size: 0.92rem; }
.chero__badge span:last-child { font-size: 0.75rem; color: var(--ink-soft); }

.cformwrap { background: linear-gradient(180deg, var(--cream), var(--pink-bg)); }
.cform {
  max-width: 44rem;
  margin: 0 auto;
  background: #fff;
  border: 1px solid rgba(58, 43, 35, 0.08);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: clamp(2rem, 5vw, 3.2rem);
}
.cform__head { text-align: center; margin-bottom: 1.8rem; }
.cform__head h2 { font-size: 2rem; }
.cform__head p { color: var(--ink-soft); margin-top: 0.5rem; font-size: 0.95rem; }
.form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* Contact form, aside + form composition */
.cform2 {
  max-width: 62rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  background: #fff;
  border: 1px solid rgba(58, 43, 35, 0.08);
  border-radius: 28px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.cform2__aside {
  background: linear-gradient(165deg, var(--pink-bg) 0%, var(--pink-soft) 100%);
  padding: clamp(1.8rem, 4vw, 2.8rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.cform2__aside h2 { font-size: clamp(1.9rem, 3vw, 2.4rem); line-height: 1.05; }
.cform2__aside h2 em { color: var(--rose-deep); }
.cform2__lead { color: var(--ink-soft); font-size: 0.95rem; max-width: 22rem; }
.cform2__points { display: grid; gap: 0.7rem; margin-top: 0.4rem; list-style: none; padding: 0; }
.cform2__points li { display: flex; gap: 0.6rem; font-size: 0.9rem; color: var(--ink); align-items: baseline; }
.cform2__points span { color: var(--rose-deep); }
.cform2__sig { margin-top: auto; display: flex; gap: 0.8rem; align-items: center; padding-top: 1.6rem; }
.cform2__sig img { width: 42px; }
.cform2__sig strong { display: block; font-weight: 500; font-size: 0.92rem; }
.cform2__sig span { font-size: 0.78rem; color: var(--ink-soft); }
.cform2 .form { padding: clamp(1.8rem, 4vw, 2.8rem); }

/* ============ FAQ / legal ============ */
.faq { max-width: 46rem; margin: 0 auto; }
.faq details {
  background: #fff;
  border: 1px solid rgba(58, 43, 35, 0.08);
  border-radius: 18px;
  margin-bottom: 0.8rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.faq details[open] { border-color: var(--rose); box-shadow: 0 12px 30px -24px rgba(58, 43, 35, 0.45); }
.faq summary {
  font-weight: 400;
  font-size: 1rem;
  cursor: pointer;
  color: var(--ink);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 1.4rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-family: var(--font-serif);
  font-size: 1.5rem;
  line-height: 1;
  color: var(--rose-deep);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details[open] summary { color: var(--rose-deep); }
.faq details p { padding: 0 1.4rem 1.2rem; font-size: 0.92rem; color: var(--ink-soft); }

.legal { max-width: 44rem; margin: 0 auto; padding: 2rem clamp(1.2rem, 4vw, 2rem) 4rem; }
.legal h2 { font-size: 1.6rem; margin: 2.2rem 0 0.7rem; }
.legal p, .legal li { color: #55453B; font-size: 0.95rem; margin-bottom: 0.8rem; }
.legal ul { margin-left: 1.2rem; list-style: disc; }

/* ============ Footer (dark, 4-col) ============ */
.footer { background: #241A14; color: rgba(253, 251, 249, 0.72); }
.footer__top {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr 1.2fr;
  gap: 2.5rem;
  padding: 4rem clamp(1.2rem, 4vw, 3rem) 3rem;
}
.footer__mark { width: 44px; height: 44px; margin-bottom: 0.7rem; }
.footer__brand p { margin: 0.8rem 0 1.4rem; font-size: 0.95rem; max-width: 16rem; }
.footer__col h4 {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 1.1rem;
}
.footer__col a { display: block; font-size: 0.9rem; padding: 0.3rem 0; transition: color 0.2s ease; }
.footer__col a:hover { color: var(--pink); }
.footer__news p { font-size: 0.9rem; margin-bottom: 1.1rem; }
.footer__newsform { display: flex; flex-direction: column; gap: 0.9rem; margin-bottom: 1.6rem; }
.footer__newsform input {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(253, 251, 249, 0.35);
  padding: 0.6rem 0.1rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--cream);
  outline: none;
  transition: border-color 0.2s ease;
}
.footer__newsform input::placeholder { color: rgba(253, 251, 249, 0.45); }
.footer__newsform input:focus { border-color: var(--pink); }
.footer__newsform .btn { align-self: flex-start; }
.footer__contact strong { display: block; color: var(--cream); font-weight: 500; margin-bottom: 0.4rem; }
.footer__contact a { font-size: 0.92rem; }
.footer__contact a:hover { color: var(--pink); }
.footer__socials { display: flex; gap: 0.7rem; margin-top: 1rem; }
.footer__socials a {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(253, 251, 249, 0.25);
  display: grid;
  place-items: center;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.footer__socials a:hover { background: rgba(241, 182, 193, 0.15); border-color: var(--pink); }
.footer__socials svg { width: 18px; height: 18px; fill: currentColor; }
.footer__legal {
  border-top: 1px solid rgba(253, 251, 249, 0.1);
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 1.4rem clamp(1.2rem, 4vw, 3rem) 2.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 2.5rem;
  justify-content: space-between;
  font-size: 0.74rem;
  color: rgba(253, 251, 249, 0.45);
}
.footer__legal p:last-child { max-width: 44rem; }

/* ============ Reveal ============ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .floatcard { animation: none; }
  html { scroll-behavior: auto; }
}

/* ============ Responsive ============ */
@media (max-width: 900px) {
  .chero { grid-template-columns: 1fr; }
  .cform2 { grid-template-columns: 1fr; }
  .chero__badge { left: 1rem; }
  .form__grid { grid-template-columns: 1fr; }
  .manifesto__grid, .boxshow__grid { grid-template-columns: 1fr; }
  .boxscene__stage { transform: scale(0.85); transform-origin: center; }
}

@media (max-width: 1080px) {
  .nav__pill { display: none; }
  .menuwrap { display: none; }
  .nav__right { margin-left: auto; }
  .seasons, .how__grid { grid-template-columns: repeat(2, 1fr); }
  .how__track { display: none; }
  .scanwhy__cards { grid-template-columns: repeat(3, 1fr); }
  .transform__grid { grid-template-columns: 1fr; }
  .products { grid-template-columns: repeat(3, 1fr); }
  .bloggrid { grid-template-columns: repeat(2, 1fr); }
  .contactgrid { grid-template-columns: 1fr; }
}

@media (max-width: 880px) {
  .nav__cta { display: none; }
  .nav__burger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: rgba(253, 251, 249, 0.75);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    padding: 12px 10px;
  }
  .nav__burger span { width: 22px; height: 2px; background: var(--ink); transition: transform 0.25s ease, opacity 0.25s ease; }
  .nav.is-open .nav__pill {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    position: absolute;
    top: calc(100% + 8px);
    left: clamp(1.2rem, 4vw, 3rem);
    right: clamp(1.2rem, 4vw, 3rem);
    background: rgba(253, 251, 249, 0.97);
    border-radius: 20px;
    padding: 1rem;
    box-shadow: var(--shadow);
    z-index: 120;
  }
  .nav.is-open .nav__burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav.is-open .nav__burger span:nth-child(2) { opacity: 0; }
  .nav.is-open .nav__burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .partner__head { flex-direction: column; align-items: flex-start; }
  .scanwhy__stage { flex-direction: column; }
  .tiltcard { transform: none; width: min(320px, 86vw); margin: 0; }
  .scanwhy__cards { grid-template-columns: 1fr; }
  .plans { grid-template-columns: 1fr; max-width: 30rem; margin-inline: auto; }
  .plan--featured { transform: none; }
  .story__grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .products { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .how__grid { grid-template-columns: 1fr; }
  .waitlist__form { flex-direction: column; }
  .footer__top { grid-template-columns: 1fr; }
  .hero__actions .btn { width: 100%; }
  .tcard__footer { flex-direction: column; align-items: stretch; text-align: center; }
  .tcard__product { justify-content: center; }
  .products { grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }
  .pcard__body { padding: 0.85rem; }
  .pcard__body h3 { font-size: 0.88rem; }
  .pcard__body p { font-size: 0.75rem; }
  .pcard__price { font-size: 0.85rem; }
  .pcard__btn { font-size: 0.72rem; padding: 0.45rem 0.8rem; }
  .bloggrid { grid-template-columns: 1fr; }
}

/* ============ Empty product/blog states ============ */
.empty-products {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--ink-soft);
  background: #fff;
  border: 1px dashed rgba(58, 43, 35, 0.2);
  border-radius: 20px;
  padding: 3rem 1.5rem;
  font-size: 0.95rem;
  max-width: var(--maxw);
  margin: 0 auto;
}
.empty-products b {
  display: block;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--ink);
  margin-bottom: 0.4rem;
}

/* ============ Language toggle ============ */
.langbtn {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  background: rgba(253, 251, 249, 0.55);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(58, 43, 35, 0.14);
  border-radius: 999px;
  padding: 4px;
  cursor: pointer;
}
.langbtn span {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}
.langbtn span.on { background: var(--brown); color: var(--cream); }

/* The Cherise world: packaging composition shows uncropped */
#world .duo__media img { aspect-ratio: auto; }

/* ============ Shop: nav cart, product page, cart page ============ */
.cartlink {
  position: relative;
  display: grid;
  place-items: center;
  width: 42px; height: 42px;
  border-radius: 999px;
  border: 1px solid var(--pink-soft);
  background: #fff;
  color: var(--brown);
  transition: border-color 0.2s ease;
}
.cartlink:hover { border-color: var(--rose); }
.cartlink svg { width: 19px; height: 19px; }
.cartlink__count {
  position: absolute;
  top: -5px; right: -5px;
  min-width: 18px; height: 18px;
  border-radius: 999px;
  background: var(--rose-deep);
  color: #fff;
  font-size: 0.66rem;
  font-weight: 600;
  display: grid;
  place-items: center;
  padding: 0 4px;
}
.pcard__media { display: block; }
.pcard__body h3 a { color: inherit; }
/* Product names always read in Times New Roman, regular weight */
.pcard__body h3, .pcard__body h3 a, .pdp__name, .tiltcard__name, .scanprod b {
  font-family: var(--font-serif-italic);
  font-weight: 400;
  font-style: normal;
}
.pcard__btn.is-out { opacity: 0.55; }

.pdpwrap { max-width: var(--maxw); margin: 0 auto; }
.pdp__crumb { font-size: 0.85rem; color: var(--ink-soft); margin-bottom: 1.6rem; }
.pdp__crumb a { color: var(--rose-deep); }
.pdp__crumb span { margin: 0 0.4rem; }
.pdp__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: start;
}
.pdp__media {
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
}
.pdp__media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; display: block; }
.pdp__info h1 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); margin: 0.7rem 0 0.5rem; }
.pdp__price { font-family: var(--font-serif); font-size: 1.7rem; color: var(--rose-deep); }
.pdp__price span { font-size: 0.95rem; color: var(--ink-soft); }
.pdp__desc { color: var(--ink-soft); margin: 1rem 0 1.1rem; max-width: 34rem; }
.pdp__stock { font-size: 0.85rem; margin-bottom: 1.4rem; }
.pdp__stock.ok { color: #3E6B4A; }
.pdp__stock.out { color: #A45D6E; }
.pdp__qty { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.4rem; font-size: 0.9rem; }
.qtybox {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  border: 1px solid var(--pink-soft);
  border-radius: 999px;
  background: #fff;
  padding: 0.25rem;
}
.qtybox button {
  width: 34px; height: 34px;
  border: 0;
  border-radius: 999px;
  background: var(--pink-bg);
  color: var(--brown);
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.15s ease;
}
.qtybox button:hover { background: var(--pink-soft); }
.qtybox b { min-width: 34px; text-align: center; font-weight: 500; }
.pdp__actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-bottom: 1.2rem; }
.pdp__note { font-size: 0.8rem; color: var(--ink-soft); max-width: 32rem; line-height: 1.6; }
.pdprelated { max-width: var(--maxw); margin: 4rem auto 0; }
.pdprelated h2 { font-size: 1.7rem; margin-bottom: 1.4rem; }

.cartwrap { max-width: var(--maxw); margin: 0 auto; }
.cart__grid { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); gap: 2.2rem; align-items: start; }
.cart__lines { display: grid; gap: 0.9rem; }
.cartline {
  display: grid;
  grid-template-columns: 72px 1fr auto auto;
  gap: 1rem;
  align-items: center;
  background: #fff;
  border: 1px solid var(--pink-soft);
  border-radius: 18px;
  padding: 0.9rem 1.1rem;
}
.cartline img { width: 72px; height: 72px; border-radius: 12px; object-fit: cover; }
.cartline__info { display: grid; gap: 0.15rem; }
.cartline__info a { color: inherit; }
.cartline__info span { font-size: 0.78rem; color: var(--ink-soft); }
.cartline__remove {
  border: 0; background: none; padding: 0;
  font: inherit; font-size: 0.75rem;
  color: var(--rose-deep);
  cursor: pointer;
  width: fit-content;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cartline__amt { font-weight: 500; white-space: nowrap; }
.cartline__amt small, .cart__total small { font-size: 0.7rem; color: var(--ink-soft); }
.cart__total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: var(--pink-bg);
  font-size: 1.05rem;
}
.cart__total b { font-family: var(--font-serif); font-size: 1.5rem; }
.cart__form {
  background: #fff;
  border: 1px solid var(--pink-soft);
  border-radius: 22px;
  padding: 1.6rem;
  display: grid;
  gap: 1rem;
}
.cart__form h3 { font-size: 1.4rem; }
.cart__formnote { font-size: 0.83rem; color: var(--ink-soft); line-height: 1.6; }
.form__error { color: #A4433F; font-size: 0.85rem; }
.cart__done {
  max-width: 32rem;
  margin: 2rem auto;
  text-align: center;
  background: #fff;
  border: 1px solid var(--pink-soft);
  border-radius: 24px;
  padding: 3rem 2rem;
  display: grid;
  gap: 0.9rem;
  justify-items: center;
}
.cart__doneMark { font-size: 2rem; color: var(--rose); }
.cart__done h3 { font-size: 1.6rem; }
.cart__done p { color: var(--ink-soft); font-size: 0.92rem; line-height: 1.65; }
.cart__doneRef { font-size: 0.85rem; }

@media (max-width: 860px) {
  .pdp__grid { grid-template-columns: 1fr; gap: 1.6rem; }
  .cart__grid { grid-template-columns: 1fr; }
  .cartline { grid-template-columns: 56px 1fr; grid-template-rows: auto auto; }
  .cartline img { width: 56px; height: 56px; }
  .cartline .qtybox { grid-column: 1 / 2; justify-self: start; }
  .cartline__amt { grid-column: 2 / 3; justify-self: end; margin-top: -34px; }
}

/* Product gallery thumbnails */
.pdp__thumbs { display: flex; gap: 0.6rem; margin-top: 0.8rem; flex-wrap: wrap; }
.pdp__thumb {
  width: 64px; height: 64px;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid transparent;
  padding: 0;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.15s ease;
}
.pdp__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pdp__thumb.is-on, .pdp__thumb:hover { border-color: var(--rose); }
.cartlink__count[hidden] { display: none; }

/* ============ The Cherise app section ============ */
.appsec {
  background: #FFFFFF;
}
.appsec__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 3rem;
  align-items: center;
}
.appsec__lead { color: var(--ink-soft); max-width: 30rem; margin: 1rem 0 1.8rem; }
.appsec__points { display: grid; gap: 1.1rem; margin-bottom: 2.2rem; }
.appsec__points li { list-style: none; display: grid; gap: 0.2rem; padding-left: 1.6rem; position: relative; }
.appsec__points li::before {
  content: "✦";
  position: absolute;
  left: 0; top: 0.1rem;
  color: var(--rose);
  font-size: 0.85rem;
}
.appsec__points strong {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 1.3rem;
  line-height: 1.25;
  color: var(--brown);
}
.appsec__points span { font-size: 0.88rem; color: var(--ink-soft); line-height: 1.55; }
.appsec__stores { display: flex; flex-wrap: wrap; gap: 0.8rem; }
.storebadge {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  background: var(--brown);
  color: #fff;
  border-radius: 14px;
  padding: 0.65rem 1.2rem;
}
.storebadge svg { width: 24px; height: 24px; }
.storebadge small { display: block; font-size: 0.62rem; opacity: 0.75; letter-spacing: 0.04em; }
.storebadge b { font-size: 1rem; font-weight: 500; line-height: 1.15; }
.appsec__visual { display: flex; justify-content: center; }
.appsec__shot { width: 100%; max-width: 860px; height: auto; border-radius: 22px; }
.phone {
  width: 280px;
  border-radius: 42px;
  background: var(--brown);
  padding: 12px;
  box-shadow: 0 40px 80px -30px rgba(58, 43, 35, 0.45);
  transform: rotate(3deg);
}
.phone__screen {
  border-radius: 32px;
  background: linear-gradient(175deg, #FFFFFF, #F6F3F8);
  padding: 1.5rem 1.2rem 1.3rem;
  display: grid;
  gap: 1rem;
}
.phone__top { display: flex; justify-content: space-between; align-items: baseline; }
.phone__hello { font-family: var(--font-serif); font-size: 1.15rem; color: var(--brown); }
.phone__day { font-size: 0.68rem; color: var(--ink-dim); }
.phone__ring {
  width: 118px; height: 118px;
  margin: 0 auto;
  border-radius: 50%;
  display: grid;
  place-content: center;
  justify-items: center;
  background: conic-gradient(var(--rose) 0 84%, var(--pink-soft) 84% 100%);
  position: relative;
}
.phone__ring::before { content: ""; position: absolute; inset: 9px; border-radius: 50%; background: #fff; }
.phone__ring b { position: relative; font-family: var(--font-serif); font-size: 1.7rem; color: var(--brown); }
.phone__ring span { position: relative; font-size: 0.6rem; color: var(--ink-soft); letter-spacing: 0.08em; text-transform: uppercase; }
.phone__bars { display: grid; gap: 0.5rem; }
.pbar { display: grid; grid-template-columns: 74px 1fr; gap: 0.6rem; align-items: center; }
.pbar span { font-size: 0.68rem; color: var(--ink-soft); }
.pbar div { height: 6px; border-radius: 999px; background: var(--pink-bg); overflow: hidden; }
.pbar i { display: block; height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--pink), var(--rose)); }
.phone__check {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  background: #EDF6EF;
  color: #3E6B4A;
  border-radius: 12px;
  padding: 0.55rem 0.75rem;
  font-size: 0.72rem;
  line-height: 1.4;
}
.phone__check em { font-style: normal; font-weight: 700; }
.phone__cta {
  background: var(--brown);
  color: var(--cream);
  text-align: center;
  border-radius: 999px;
  padding: 0.7rem;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}
@media (max-width: 860px) {
  .appsec__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .phone { transform: none; }
}

/* About: real box packaging photo */
.boxscene--photo { display: flex; align-items: center; background: none; padding: 0; min-height: 0; }
.boxscene--photo img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}


/* Footer store badges */
.footer__stores { margin-top: 1.2rem; }
.footer__storeslabel { font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(253, 251, 249, 0.55); margin-bottom: 0.55rem; }
.footer__storesrow { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.footer .storebadge--soft {
  background: #fff;
  border: 1px solid #fff;
  color: var(--brown);
  padding: 0.5rem 0.95rem;
  border-radius: 12px;
}
.footer .storebadge--soft svg { width: 19px; height: 19px; }
.footer .storebadge--soft b { font-size: 0.85rem; font-weight: 500; white-space: nowrap; }

/* About: centered roadmap column */
.story__roadmap { place-self: center; width: 100%; max-width: 26rem; }

/* Mobile hero: show the whole cast, text on its own panel */
@media (max-width: 700px) {
  .hero {
    min-height: auto;
    flex-direction: column;
    align-items: stretch;
    background: var(--brown);
  }
  .hero__media {
    position: relative;
    inset: auto;
    height: 47svh;
    min-height: 300px;
  }
  .hero__media img { object-position: 50% 32%; }
  .hero__scrim {
    background: linear-gradient(180deg, rgba(58,43,35,0.18) 0%, transparent 30%, transparent 78%, var(--brown) 100%);
  }
  .hero__content { padding-top: 0.6rem; padding-bottom: 2.4rem; text-align: center; }
  .hero__content .btn--dark {
    background: var(--pink);
    color: var(--brown);
  }
  .hero__actions { display: grid; gap: 0.7rem; justify-items: stretch; }
  .hero__actions .btn { width: 100%; justify-content: center; text-align: center; }
}


/* App section: real app screenshot inside the phone frame */
.phone__screen--shot { padding: 0; display: block; overflow: hidden; background: #fff; }
.phone__screen--shot img { width: 100%; height: auto; display: block; }
