/* =====================================================
   Klisu — Luxury Beauty Center
   Pixel-perfect adaptation of the v1 design
   ===================================================== */

:root {
  --bg: #fbf4ef;
  --bg-soft: #fcf6f1;
  --bg-rose: #eccdc0;
  --bg-rose-deep: #d8a596;
  --hero-overlay: rgba(107, 66, 58, 0.45);
  --rose-100: #f7e7de;
  --rose-200: #edd4c6;
  --rose-300: #dfb3a0;
  --rose-400: #c59182;
  --rose-500: #9a6b60;
  --rose-600: #7a4c44;
  --ink: #0c0c0c;
  --ink-2: #1a1a1a;
  --muted: #8d8d8d;
  --line: #ececec;
}

/* Page-level pinkish gradient backdrop that mirrors the design */
html, body { min-height: 100%; }
body {
  background:
    radial-gradient(1200px 600px at 85% 8%, #efc8ba 0%, transparent 55%),
    radial-gradient(1200px 700px at 0% 35%, #f3d2c2 0%, transparent 60%),
    radial-gradient(1000px 700px at 50% 120%, #e8bdac 0%, transparent 60%),
    linear-gradient(180deg, #faf1ea 0%, #f6e6dc 100%);
  background-attachment: fixed;
}

/* =====================================================
   HERO
   ===================================================== */
.hero-wrap { position: relative; }
.hero-card {
  min-height: 640px;
  display: flex;
  flex-direction: column;
  color: #fff;
  box-shadow: 0 30px 80px -40px rgba(90, 40, 30, .35);
}
.hero-bg {
  position: absolute; inset: 0;
  background-image:
    url('../../stock/ai-images/02-korean-model-applying-cream.jpg');
  background-size: cover;
  background-position: center 20%;
  filter: saturate(1.02) brightness(.95);
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(96,52,44,.78) 0%, rgba(110,62,54,.52) 42%, rgba(128,72,62,.20) 72%, rgba(148,92,78,.05) 100%),
    linear-gradient(180deg, rgba(80,40,32,.35) 0%, rgba(80,40,32,.20) 50%, rgba(80,40,32,.55) 100%);
}

/* Nav pills and icons */
.nav-pill {
  padding: 11px 22px;
  border-radius: 999px;
  font-size: 14px;
  color: #fff;
  background: rgba(255,255,255,.13);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.18);
  transition: .2s ease;
  font-weight: 500;
}
.nav-pill:hover { background: rgba(255,255,255,.22); }
.nav-pill-active {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
  box-shadow: 0 8px 30px -12px rgba(0,0,0,.25);
}
.nav-icon-btn {
  width: 42px; height: 42px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px;
  color: #fff;
  background: rgba(255,255,255,.13);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.nav-icon-btn:hover { background: rgba(255,255,255,.22); }
.nav-icon-btn-white {
  width: 42px; height: 42px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 8px 30px -14px rgba(0,0,0,.35);
  position: relative;
}
.cart-dot {
  position: absolute; top: -4px; right: -4px;
  min-width: 18px; height: 18px; padding: 0 5px;
  background: #111; color: #fff;
  border-radius: 999px;
  font-size: 10px; font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center;
  border: 2px solid #fff;
}

/* Hero typography */
.hero-title {
  font-size: clamp(30px, 3.8vw, 54px);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 30px rgba(40, 10, 6, .25);
}
.hero-soft {
  font-weight: 300;
  font-style: normal;
  color: rgba(255,255,255,.88);
}
.hero-sub {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,.8);
  font-weight: 400;
}

/* Gallery play button */
.gallery-btn {
  display: inline-flex; align-items: center; gap: 14px;
  color: #fff;
  background: transparent;
}
.gallery-play {
  width: 56px; height: 56px;
  border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1.5px solid rgba(255,255,255,.45);
  position: relative;
}
.gallery-play::before {
  content: ''; position: absolute; inset: -6px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.2);
}
.gallery-label {
  font-size: 13px;
  line-height: 1.2;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,.85);
}

/* Chips */
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.35);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(6px);
}
.chip-active { background: rgba(255,255,255,.18); }
.chip-x {
  display: inline-block;
  font-weight: 700;
  transform: rotate(45deg);
  font-size: 11px;
  color: #fff;
}

/* Overlay mini cards (glassmorphic) */
.overlay-cards {
  position: absolute;
  right: 3.5rem; bottom: 7rem;
  display: flex; gap: 14px;
  z-index: 15;
}
.mini-card {
  position: relative;
  width: 160px; height: 180px;
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255,255,255,.14);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.25);
  box-shadow: 0 20px 50px -20px rgba(40, 10, 6, .45);
  padding: 14px;
  color: #fff;
  transition: transform .25s ease;
}
.mini-card:hover { transform: translateY(-4px); }
.mini-card--image {
  background-size: cover;
  background-position: center;
  width: 140px;
}
.mini-card--label { background: rgba(255, 230, 220, .12); }
.mini-card--cream {
  background:
    linear-gradient(180deg, rgba(230, 150, 130, .5), rgba(180, 90, 70, .4)),
    rgba(255,255,255,.10);
}
.mini-arrow {
  position: absolute; top: 10px; right: 10px;
  width: 30px; height: 30px;
  background: #fff; color: #111;
  border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
}
.mini-text { position: absolute; left: 14px; right: 14px; bottom: 14px; }
.mini-text h4 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.mini-text p { font-size: 10.5px; line-height: 1.35; color: rgba(255,255,255,.82); }

/* Progress bar */
.hero-progress {
  position: relative; z-index: 15;
  margin-top: auto;
  padding: 20px 2.5rem 26px;
  display: flex; align-items: center; gap: 18px;
}
.hero-progress-num { color: #fff; font-size: 13px; font-weight: 600; letter-spacing: 1px; }
.hero-progress-track {
  flex: 1; height: 2px;
  background: rgba(255,255,255,.25);
  position: relative;
}
.hero-progress-fill { position: absolute; inset: 0; width: 25%; background: #fff; }
.hero-arrows { display: inline-flex; gap: 6px; }
.hero-arrow {
  width: 42px; height: 42px;
  border-radius: 999px 0 0 999px;
  display: inline-flex; align-items: center; justify-content: center;
  transition: .2s ease;
}
.hero-arrow--ghost {
  background: rgba(255,255,255,.18);
  color: #fff;
  border: 1px solid rgba(255,255,255,.3);
}
.hero-arrow--dark {
  background: #0e0e0e;
  color: #fff;
  border-radius: 0 999px 999px 0;
}
.hero-arrow:hover { transform: translateX(2px); }

/* =====================================================
   SECTIONS — light
   ===================================================== */
.section { position: relative; }
.section-title {
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -0.015em;
}
.section-title strong { font-weight: 800; }
.sub-title {
  font-size: clamp(20px, 1.9vw, 28px);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.muted { color: var(--muted); font-size: 14px; font-weight: 400; }
.caption { color: #3a3a3a; font-size: 15px; max-width: 320px; }

/* Circle CTA with rose background */
.circle-cta {
  width: 96px; height: 96px;
  border-radius: 999px;
  background: #f4d9cd;
  display: inline-flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 4px;
  font-size: 12px; color: var(--ink);
  position: relative;
  flex-shrink: 0;
}
.circle-cta svg {
  position: absolute; top: 18px; right: 24px;
}
.circle-cta span { margin-top: 16px; font-weight: 500; }
.circle-cta:hover { background: #eec7b6; }

/* Pill button - outlined */
.pill-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
  font-size: 13px;
  font-weight: 500;
  transition: .2s ease;
  cursor: pointer;
}
.pill-btn:hover { background: var(--ink); color: #fff; }

/* Photo cards */
.photo-card {
  width: 100%;
  background-size: cover;
  background-position: center;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
}
.photo-card--landscape { aspect-ratio: 4/3; }
.photo-card--tall { aspect-ratio: 3/5; height: 100%; }
.photo-card--wide { aspect-ratio: 16/10; }
.photo-card--feature { aspect-ratio: 16/11; min-height: 320px; }
.photo-card--portrait { aspect-ratio: 3/5; min-height: 320px; }
.photo-card--portraitTall { aspect-ratio: 2/3; min-height: 380px; }

/* "More Details" glass circle over image */
.more-details {
  position: absolute; top: 22px; right: 22px;
  width: 92px; height: 92px;
  border-radius: 999px;
  background: rgba(0,0,0,.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: inline-flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 4px;
  color: #fff;
  font-size: 11px;
  border: 1px solid rgba(255,255,255,.15);
}
.more-details svg { margin-bottom: 2px; }
.more-details--lg { width: 100px; height: 100px; font-size: 12px; }

/* Service list */
.service-list {
  display: flex; flex-direction: column; gap: 0;
  border-top: 1px solid var(--line);
}
.service-item {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 8px;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  transition: .2s ease;
  position: relative;
}
.service-avatar {
  width: 46px; height: 46px;
  border-radius: 999px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}
.service-name { font-size: 22px; font-weight: 600; letter-spacing: -0.01em; flex: 1; }
.service-go {
  width: 34px; height: 34px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink);
  transition: .2s ease;
}
.service-item.active .service-go {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.service-item.active .service-name { font-weight: 700; }
.service-item:hover { padding-left: 14px; }

/* =====================================================
   PRODUCT LAUNCH
   ===================================================== */
.tab-pill {
  padding: 12px 24px;
  border-radius: 999px;
  border: 1.5px solid var(--ink);
  background: transparent;
  color: var(--ink);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: .2s ease;
}
.tab-pill.tab-active { background: var(--ink); color: #fff; }
.tab-pill:hover { background: var(--ink); color: #fff; }

.capsule-thumb {
  width: 92px; height: 136px;
  border-radius: 999px;
  background-size: 78%;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #f2e3d7;
  box-shadow: 0 20px 40px -22px rgba(100, 60, 40, .3);
  border: 1px solid rgba(255,255,255,.6);
}

.product-disc {
  position: relative;
  width: 380px; height: 380px;
  display: flex; align-items: center; justify-content: center;
}
.product-disc__ring {
  position: absolute; inset: 0;
  border-radius: 999px;
  border: 1px solid #e8d3c5;
}
.product-disc__ring svg {
  position: absolute; inset: 20px;
  width: calc(100% - 40px); height: calc(100% - 40px);
  animation: spin 40s linear infinite;
}
.spin-slow { animation: spin 40s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.product-disc__image {
  position: absolute; inset: 40px;
  border-radius: 999px;
  background-size: 78%;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #f5e5d8;
  background-image-rendering: crisp-edges;
  box-shadow: inset 0 0 80px rgba(170, 110, 85, .25), 0 30px 60px -30px rgba(120, 70, 50, .35);
  transition: background-image .4s ease;
}

.product-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
}
.product-title span { font-weight: 400; color: var(--muted); font-size: 18px; }
.product-price {
  font-size: 38px;
  font-weight: 800;
  color: var(--ink);
}
.add-to-cart {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 30px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: .2s ease;
}
.add-to-cart:hover { background: var(--rose-600); }

/* =====================================================
   TRANSFORMATION
   ===================================================== */
.transform-card {
  position: relative;
  min-height: 480px;
  border-radius: 32px;
  background-size: cover;
  background-position: center 25%;
  overflow: hidden;
  color: #fff;
}
.transform-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(120,50,40,.10) 0%, rgba(90,30,25,.70) 100%);
}
.transform-card__content {
  position: absolute; left: 32px; bottom: 100px;
  z-index: 2;
  max-width: 60%;
}
.transform-card__content h4 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
}
.transform-card__content p {
  font-size: 13px;
  color: rgba(255,255,255,.85);
  max-width: 280px;
}
.transform-card__chip {
  position: absolute; right: 32px; bottom: 32px;
  z-index: 2;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.3);
  color: #fff; font-size: 13px; font-weight: 500;
}

/* =====================================================
   CATALOGUE
   ===================================================== */
.search-bar {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 24px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  color: var(--muted);
  min-width: 280px;
}
.search-bar input {
  background: transparent;
  border: none; outline: none;
  font-size: 14px;
  width: 100%;
  color: var(--ink);
}
.search-bar input::placeholder { color: #bdbdbd; }

.catalog-card {
  position: relative;
  background: transparent;
  border-radius: 28px;
}
/* Klisu heart dot — single colored accent per SKU */
.catalog-heart {
  position: absolute;
  top: 22px;
  left: 22px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  z-index: 4;
  background: #f2c8a8;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, .85), 0 4px 10px rgba(0, 0, 0, .12);
}
.catalog-heart--peach    { background: #f2c8a8; }
.catalog-heart--midnight { background: #6878a0; }
.catalog-heart--gold     { background: #d9b36a; }
.catalog-heart--aqua     { background: #7ecec8; }
.catalog-heart--blush    { background: #ebcfc8; }
.catalog-img {
  aspect-ratio: 1/1;
  width: 100%;
  background-size: 72%;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #f4e1d1;
  border-radius: 28px;
  position: relative;
  transition: transform .35s ease;
}
.catalog-card:hover .catalog-img { transform: translateY(-4px); }
.fav-btn {
  position: absolute; top: 20px; right: 20px;
  width: 36px; height: 36px;
  border-radius: 999px;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(8px);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink);
  border: none;
  z-index: 2;
  cursor: pointer;
}
.fav-btn:hover { background: #fff; color: var(--rose-500); }
.catalog-body {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 6px 0;
}
.catalog-body h4 { font-size: 20px; font-weight: 600; color: var(--ink); }
.product-price-sm { font-size: 14px; color: var(--muted); margin-top: 4px; }
.round-arrow {
  width: 44px; height: 44px;
  border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--line);
  color: var(--ink);
  transition: .2s ease;
}
.round-arrow--dark { background: var(--ink); color: #fff; border-color: var(--ink); }
.round-arrow:hover { transform: translate(2px,-2px); }

/* =====================================================
   REVIEWS
   ===================================================== */
.avatar-stack { display: inline-flex; align-items: center; }
.av {
  width: 48px; height: 48px;
  border-radius: 999px;
  background-size: cover;
  background-position: center;
  border: 3px solid #fff;
  margin-left: -12px;
  flex-shrink: 0;
}
.av:first-child { margin-left: 0; }
.av--count {
  background: var(--ink);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700;
}
.review-card {
  padding: 24px;
  border-radius: 20px;
  display: flex; flex-direction: column; justify-content: space-between;
  gap: 20px;
  min-height: 180px;
}
.review-card--light { background: #f8f2ed; }
.review-card--tint { background: #f1dbcc; }
.review-card p {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.55;
  font-weight: 500;
}
.review-footer { display: flex; align-items: center; gap: 14px; }
.review-footer .av { width: 42px; height: 42px; border-width: 2px; margin: 0; }
.review-footer h5 { font-size: 14px; font-weight: 600; }
.stars { font-size: 12px; color: var(--muted); }

/* =====================================================
   FOOTER
   ===================================================== */
.footer-wrap {
  background: linear-gradient(180deg, rgba(247,231,222,0) 0%, #efd2c1 100%);
  margin-top: 40px;
  color: var(--ink);
}
.footer-lead { color: #5a5a5a; font-size: 15px; line-height: 1.6; }
.footer-wrap h5 { font-size: 14px; color: var(--ink); font-weight: 600; margin-bottom: 18px; }
.footer-list { display: flex; flex-direction: column; gap: 10px; }
.footer-list a { color: #555; font-size: 14px; }
.footer-list a:hover { color: var(--ink); }
.social {
  width: 38px; height: 38px;
  border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(0,0,0,.15);
  color: var(--ink);
  transition: .2s ease;
}
.social--dark { background: var(--ink); color: #fff; border-color: var(--ink); }
.social:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.footer-bottom {
  padding-top: 26px;
  border-top: 1px solid rgba(0,0,0,.12);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 16px;
  font-size: 13px; color: #5a5a5a;
}
.footer-bottom a { color: var(--ink); font-weight: 500; }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 900px) {
  .hero-card { min-height: 520px; }
  .overlay-cards { display: none !important; }
  .product-disc { width: 300px; height: 300px; }
  .circle-cta { width: 80px; height: 80px; }
  .circle-cta svg { top: 14px; right: 20px; }
  .transform-card__content { left: 24px; bottom: 80px; max-width: 75%; }
  .transform-card__chip { right: 24px; bottom: 24px; }
}
@media (max-width: 640px) {
  .section { padding-left: 1rem; padding-right: 1rem; }
  .hero-title { font-size: 32px; }
  .product-title { font-size: 22px; }
  .product-price { font-size: 30px; }
}

/* =====================================================
   mainv3 — Showroom · variant-only additions
   ===================================================== */
.feature-strip { position: relative; border-radius: 36px; overflow: hidden; aspect-ratio: 16/7; background-size: cover; background-position: center 40%; color: #fff; min-height: 380px; }
.feature-strip::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(60,30,24,.7) 0%, rgba(70,34,28,.35) 50%, rgba(88,44,36,.05) 100%); }
.feature-strip-body { position: absolute; left: 56px; top: 56px; right: 56px; z-index: 2; max-width: 520px; }
.feature-strip-body .kicker { font-size: 11px; letter-spacing: .28em; text-transform: uppercase; color: rgba(255,255,255,.75); font-weight: 600; margin-bottom: 14px; }
.feature-strip-body h2 { font-size: clamp(34px, 4vw, 62px); font-weight: 400; line-height: 0.98; letter-spacing: -0.02em; color: #fff; margin-bottom: 18px; }
.feature-strip-body h2 strong { font-weight: 800; }
.feature-strip-body p { font-size: 15px; color: rgba(255,255,255,.82); max-width: 380px; line-height: 1.6; }
.feature-strip-cta { position: absolute; right: 48px; bottom: 48px; z-index: 2; }

.ingredients { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.ing-card { background: #fff; border-radius: 28px; padding: 32px; display: grid; grid-template-columns: 84px 1fr; gap: 22px; align-items: start; box-shadow: 0 18px 40px -28px rgba(122,76,68,.22); }
.ing-card .ing-img { width: 84px; height: 84px; border-radius: 999px; background: var(--bg-color, var(--rose-100)) center/60% no-repeat; border: 1px solid rgba(0,0,0,.06); }
.ing-card .ing-body h4 { font-size: 20px; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 4px; }
.ing-card .ing-body .sub { font-size: 11px; letter-spacing: .24em; text-transform: uppercase; color: var(--rose-600); font-weight: 600; margin-bottom: 14px; }
.ing-card .ing-body p { font-size: 14px; color: #3a3a3a; line-height: 1.55; }

.scroll-strip { display: flex; gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 4px 4px 28px; -webkit-overflow-scrolling: touch; }
.scroll-strip::-webkit-scrollbar { height: 6px; }
.scroll-strip::-webkit-scrollbar-track { background: transparent; }
.scroll-strip::-webkit-scrollbar-thumb { background: var(--rose-300); border-radius: 999px; }
.scroll-card { flex: 0 0 320px; scroll-snap-align: start; background: #fff; border-radius: 30px; padding: 22px; box-shadow: 0 18px 40px -28px rgba(122,76,68,.22); position: relative; }
.scroll-card .heart { position: absolute; top: 22px; left: 22px; width: 16px; height: 16px; border-radius: 50%; background: var(--color); box-shadow: 0 0 0 4px #fff, 0 0 0 5px rgba(0,0,0,.08); z-index: 2; }
.scroll-card .sc-img { aspect-ratio: 4/5; border-radius: 22px; background: radial-gradient(circle at 50% 60%, var(--rose-100), #fff 72%); display: grid; place-items: center; padding: 18px; }
.scroll-card .sc-img img { max-height: 82%; max-width: 78%; object-fit: contain; filter: drop-shadow(0 16px 18px rgba(120,70,50,.18)); }
.scroll-card h4 { font-size: 19px; font-weight: 700; margin-top: 16px; }
.scroll-card .role { font-size: 12px; color: var(--muted); margin-top: 2px; }
.scroll-card .foot { display: flex; align-items: center; justify-content: space-between; margin-top: 12px; }
.scroll-card .price { font-size: 16px; font-weight: 700; }

.ritual-grid4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.ritual-card4 { background: #fff; border-radius: 24px; padding: 24px 24px 28px; box-shadow: 0 12px 30px -22px rgba(122,76,68,.2); display: flex; flex-direction: column; gap: 14px; min-height: 240px; }
.ritual-card4 .num { font-size: 11px; letter-spacing: .25em; color: var(--rose-600); font-weight: 700; }
.ritual-card4 h4 { font-size: 20px; font-weight: 700; letter-spacing: -0.01em; }
.ritual-card4 p { font-size: 13px; color: var(--muted); line-height: 1.55; flex: 1; }
.ritual-card4 .cta { align-self: flex-start; font-size: 12px; font-weight: 600; color: var(--ink); display: inline-flex; align-items: center; gap: 6px; }
.ritual-card4 .cta::after { content: '→'; transition: transform .2s; }
.ritual-card4:hover .cta::after { transform: translateX(4px); }

.revcar { background: #f8f2ed; border-radius: 32px; padding: 56px 48px; position: relative; }
.revcar .q { font-size: clamp(22px, 2.4vw, 34px); font-weight: 400; line-height: 1.3; letter-spacing: -0.01em; color: var(--ink); max-width: 880px; }
.revcar .q::before, .revcar .q::after { content: '"'; color: var(--rose-500); }
.revcar .who { font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-top: 26px; font-weight: 600; }
.revcar .who b { color: var(--ink); font-weight: 700; letter-spacing: 0; text-transform: none; font-size: 15px; }
.revcar .dots { position: absolute; bottom: 32px; right: 48px; display: flex; gap: 8px; }
.revcar .rdot { width: 10px; height: 10px; border-radius: 50%; background: rgba(122,76,68,.25); border: 0; cursor: pointer; transition: .2s; padding: 0; }
.revcar .rdot.active { background: var(--rose-600); transform: scale(1.3); }

.visit-card { background: var(--ink); color: #fff; border-radius: 36px; padding: 56px 48px; display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: center; position: relative; overflow: hidden; }
.visit-card::before { content: ''; position: absolute; right: -80px; top: -80px; width: 260px; height: 260px; background: radial-gradient(circle, rgba(232, 173, 152, 0.35), transparent 70%); border-radius: 50%; pointer-events: none; }
.visit-card h3 { font-size: clamp(32px, 3.6vw, 52px); font-weight: 400; line-height: 1; letter-spacing: -0.02em; color: #fff; }
.visit-card h3 strong { font-weight: 800; }
.visit-card p { color: rgba(255,255,255,.78); font-size: 15px; max-width: 360px; margin-top: 14px; line-height: 1.6; }
.visit-card .info { display: grid; gap: 16px; }
.visit-card .info div { display: grid; grid-template-columns: 90px 1fr; align-items: start; gap: 14px; padding-bottom: 14px; border-bottom: 1px solid rgba(255,255,255,.15); }
.visit-card .info .k { font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--rose-300); font-weight: 600; padding-top: 2px; }
.visit-card .info .v { font-size: 15px; color: #fff; }
.visit-card .cta-row { margin-top: 26px; display: flex; gap: 12px; flex-wrap: wrap; }
.visit-card .cta-pill { display: inline-flex; align-items: center; gap: 10px; padding: 14px 22px; border-radius: 999px; font-size: 13px; font-weight: 500; border: 1.5px solid rgba(255,255,255,.3); color: #fff; transition: .2s; }
.visit-card .cta-pill:hover { background: #fff; color: var(--ink); border-color: #fff; }
.visit-card .cta-pill--light { background: #fff; color: var(--ink); border-color: #fff; }
.visit-card .cta-pill--light:hover { background: var(--rose-200); border-color: var(--rose-200); }

@media (max-width: 900px) {
  .feature-strip-body { left: 28px; top: 28px; right: 28px; }
  .feature-strip-cta { right: 22px; bottom: 22px; }
  .ingredients { grid-template-columns: 1fr; }
  .scroll-card { flex: 0 0 260px; }
  .ritual-grid4 { grid-template-columns: 1fr 1fr; }
  .visit-card { grid-template-columns: 1fr; padding: 36px 28px; }
}
