:root {
  --jbelle-rose: #b96679;
  --jbelle-rose-dark: #7d3e4d;
  --jbelle-pink: #f8e5e8;
  --jbelle-blush: #f3d8d5;
  --jbelle-cream: #fff8f3;
  --jbelle-ivory: #fffdf9;
  --jbelle-lilac: #ded9e4;
  --jbelle-charcoal: #282124;
  --jbelle-soft-text: #695e61;
  --jbelle-white: #ffffff;
  --line: rgba(70, 45, 51, 0.16);
  --shadow: 0 22px 70px rgba(87, 52, 61, 0.12);
  --radius-lg: 36px;
  --radius-md: 24px;
  --radius-sm: 14px;
  --max-width: 1240px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Manrope", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--jbelle-charcoal);
  background: var(--jbelle-ivory);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, video, picture { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }
button { color: inherit; }
:focus-visible { outline: 3px solid rgba(185, 102, 121, 0.5); outline-offset: 4px; }
[hidden] { display: none !important; }

.skip-link {
  position: fixed; left: 16px; top: -80px; z-index: 1000;
  padding: 12px 18px; background: var(--jbelle-charcoal); color: white; border-radius: 8px;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: absolute; z-index: 20; top: 0; left: 50%; transform: translateX(-50%);
  width: min(calc(100% - 36px), var(--max-width)); min-height: 88px;
  display: flex; align-items: center; justify-content: space-between; gap: 28px;
  border-bottom: 1px solid rgba(40, 33, 36, 0.16);
}
.brand {
  position: relative;
  display: block;
  flex: 0 0 auto;
  width: 132px;
  height: 70px;
  overflow: hidden;
  text-decoration: none;
}
.brand-logo {
  position: absolute;
  top: -18px;
  left: -40px;
  width: 220px;
  max-width: none;
  height: auto;
}
.header-nav { display: flex; gap: 32px; margin-left: auto; }
.header-nav a { font-size: 13px; font-weight: 700; text-decoration: none; }
.header-nav a:hover { color: var(--jbelle-rose-dark); }

.button {
  min-height: 50px; display: inline-flex; justify-content: center; align-items: center; gap: 10px;
  border: 1px solid transparent; border-radius: 999px; padding: 13px 22px;
  font-size: 13px; font-weight: 700; text-decoration: none; cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--jbelle-rose-dark); color: var(--jbelle-white); box-shadow: 0 12px 28px rgba(125, 62, 77, .22); }
.button-primary:hover { background: #6e3442; box-shadow: 0 16px 34px rgba(125, 62, 77, .3); }
.button-secondary { border-color: rgba(40, 33, 36, .28); background: rgba(255,255,255,.45); }
.button-secondary:hover, .button-ghost:hover { background: var(--jbelle-white); border-color: var(--jbelle-rose); }
.button-ghost { border-color: rgba(40,33,36,.22); background: transparent; }
.button-small { min-height: 42px; padding: 9px 18px; }
.button-wide { width: 100%; }
.button-light { background: var(--jbelle-ivory); color: var(--jbelle-rose-dark); box-shadow: 0 14px 34px rgba(54, 26, 33, .25); }
.button-select { width: 100%; background: transparent; border-color: var(--line); }
.section-order { display: flex; justify-content: center; margin-top: 34px; }
.section-order .button { min-width: 220px; }
.text-link { border: 0; background: none; padding: 0 0 5px; border-bottom: 1px solid currentColor; font-weight: 700; cursor: pointer; }
.text-link span { margin-left: 7px; }

.hero {
  position: relative; min-height: min(900px, 100vh); overflow: hidden;
  display: grid; grid-template-columns: .88fr 1.12fr; align-items: center; gap: clamp(20px, 4vw, 80px);
  padding: 130px max(24px, calc((100% - var(--max-width)) / 2)) 64px;
  background:
    radial-gradient(circle at 75% 22%, rgba(255,255,255,.95) 0 16%, transparent 42%),
    radial-gradient(circle at 10% 82%, rgba(222,217,228,.55), transparent 30%),
    linear-gradient(125deg, #fff9f3 0%, #f8e5e8 58%, #efd6d6 100%);
}
.hero::before { content: ""; position: absolute; width: 340px; height: 340px; border: 1px solid rgba(125,62,77,.15); border-radius: 50%; left: -170px; bottom: 10%; }
.hero-copy { position: relative; z-index: 2; max-width: 610px; }
.eyebrow { margin: 0 0 14px; color: var(--jbelle-rose-dark); font-size: 11px; font-weight: 800; letter-spacing: 3px; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--font-display); line-height: .96; }
h1 { margin-bottom: 22px; font-size: clamp(58px, 6.3vw, 104px); font-weight: 600; letter-spacing: -4px; }
h1 em, h2 em { color: var(--jbelle-rose-dark); font-weight: 500; }
.hero-lede { max-width: 550px; margin-bottom: 22px; color: var(--jbelle-soft-text); font-size: clamp(16px, 1.4vw, 19px); }
.hero-lede strong { color: var(--jbelle-charcoal); font-weight: 800; }
.hero-quality { max-width: 500px; display: grid; grid-template-columns: 44px 1fr; align-items: center; gap: 14px; margin-bottom: 24px; padding: 14px 17px; border: 1px solid rgba(125,62,77,.16); border-radius: 18px; background: rgba(255,255,255,.48); box-shadow: 0 12px 34px rgba(87,52,61,.07); backdrop-filter: blur(8px); }
.hero-quality > span { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 50%; background: var(--jbelle-rose-dark); color: white; font-family: var(--font-display); font-size: 20px; }
.hero-quality p { margin: 0; line-height: 1.35; }
.hero-quality strong, .hero-quality small { display: block; }
.hero-quality strong { font-size: 13px; }
.hero-quality small { margin-top: 3px; color: var(--jbelle-soft-text); font-size: 10px; letter-spacing: .3px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.benefit-chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 26px 0 0; padding: 0; list-style: none; }
.benefit-chips li { padding: 8px 12px; border: 1px solid rgba(125,62,77,.15); border-radius: 999px; background: rgba(255,255,255,.4); font-size: 11px; font-weight: 700; }
.benefit-chips li::before { content: "•"; margin-right: 7px; color: var(--jbelle-rose); }
.benefit-chips .benefit-featured { border-color: rgba(125,62,77,.3); background: rgba(255,255,255,.75); color: var(--jbelle-rose-dark); }
.hero-visual { position: relative; min-height: 560px; display: grid; place-items: center; }
.hero-visual picture { position: relative; z-index: 2; width: min(105%, 690px); filter: drop-shadow(0 35px 40px rgba(97,54,62,.14)); }
.hero-visual img { width: 100%; border-radius: 38% 38% 15% 15% / 30% 30% 10% 10%; }
.hero-orbit { position: absolute; width: min(88%, 560px); aspect-ratio: 1; border: 1px solid rgba(125,62,77,.22); border-radius: 50%; }
.hero-orbit::after { content: ""; position: absolute; inset: 9%; border-radius: 50%; background: rgba(255,255,255,.36); backdrop-filter: blur(3px); }
.floating-note { position: absolute; z-index: 3; padding: 10px 16px; border: 1px solid rgba(255,255,255,.75); border-radius: 999px; background: rgba(255,253,249,.75); box-shadow: var(--shadow); font-size: 11px; font-weight: 700; backdrop-filter: blur(12px); }
.note-one { left: 0; top: 25%; }
.note-two { right: 1%; bottom: 18%; }

.trust-strip { min-height: 84px; display: grid; grid-template-columns: repeat(4, 1fr); align-items: center; gap: 20px; padding: 18px max(24px, calc((100% - var(--max-width)) / 2)); background: var(--jbelle-charcoal); color: white; }
.trust-strip p { margin: 0; font-size: 12px; font-weight: 600; }
.trust-strip p span { margin-right: 10px; color: #d79aa8; font-family: var(--font-display); font-size: 20px; }
.trust-strip .text-link { justify-self: end; color: white; }

.section { padding: clamp(78px, 10vw, 140px) max(24px, calc((100% - var(--max-width)) / 2)); }
.section-heading { max-width: 760px; margin-bottom: clamp(40px, 6vw, 74px); }
.section-heading h2, .kit-copy h2, .real-copy h2, .faq-intro h2, .closing-copy h2 { margin-bottom: 20px; font-size: clamp(48px, 5vw, 78px); letter-spacing: -2px; }
.section-heading > p:last-child, .split > p, .kit-copy > p, .real-copy > p, .faq-intro > p { color: var(--jbelle-soft-text); }
.section-heading.split { max-width: none; display: grid; grid-template-columns: 1.15fr .55fr; align-items: end; gap: 10%; }
.section-heading.split > p { margin-bottom: 10px; }

.how { background: var(--jbelle-ivory); }
.how-grid { display: block; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 0; padding: 0; list-style: none; }
.steps li { min-height: 200px; display: block; padding: 30px; border: 1px solid var(--line); border-radius: 24px; background: linear-gradient(145deg, rgba(248,229,232,.78), rgba(255,255,255,.92)); box-shadow: 0 16px 44px rgba(87,52,61,.06); }
.steps li > span { display: block; margin-bottom: 30px; color: var(--jbelle-rose); font-family: var(--font-display); font-size: 28px; }
.steps h3 { margin-bottom: 9px; font-size: 31px; }
.steps p { margin-bottom: 0; color: var(--jbelle-soft-text); font-size: 14px; }

.advisor { background: linear-gradient(130deg, #f5dfe2, #eadfe7); }
.advisor-shell { position: relative; max-width: var(--max-width); min-height: 680px; display: grid; grid-template-columns: .75fr 1.25fr; overflow: hidden; border: 1px solid rgba(255,255,255,.7); border-radius: 44px; background: rgba(255,253,249,.7); box-shadow: var(--shadow); backdrop-filter: blur(14px); }
.advisor-intro { position: relative; min-height: 680px; overflow: hidden; padding: clamp(36px, 5vw, 70px); background: var(--jbelle-charcoal); color: white; }
.advisor-intro .eyebrow { color: #dfa6b2; }
.advisor-intro h2 { position: relative; z-index: 2; margin-bottom: 20px; font-size: clamp(45px, 4.5vw, 69px); }
.advisor-intro > p { position: relative; z-index: 2; color: rgba(255,255,255,.72); }
.advisor-portrait { position: absolute; inset: auto 0 0; height: 58%; overflow: hidden; opacity: .94; }
.advisor-portrait::after { content: ""; position: absolute; inset: 0; background: linear-gradient(var(--jbelle-charcoal), rgba(40,33,36,.48) 12%, transparent 34%); }
.advisor-portrait img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 50%; }
.quiz-card, .recommendation-card { align-self: center; padding: clamp(34px, 6vw, 82px); }
.quiz-progress { display: flex; align-items: center; gap: 18px; margin-bottom: 54px; color: var(--jbelle-soft-text); font-size: 12px; font-weight: 700; }
.progress-track { flex: 1; height: 3px; overflow: hidden; background: rgba(125,62,77,.14); }
.progress-track span { display: block; width: 33.333%; height: 100%; background: var(--jbelle-rose-dark); transition: width .35s ease; }
.quiz-question { margin-bottom: 32px; font-size: clamp(36px, 3.8vw, 56px); }
.quiz-options { display: grid; gap: 12px; }
.quiz-option { min-height: 58px; display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 14px 20px; border: 1px solid var(--line); border-radius: 14px; background: rgba(255,255,255,.55); text-align: left; cursor: pointer; transition: .2s ease; }
.quiz-option::after { content: "→"; color: var(--jbelle-rose-dark); font-size: 20px; }
.quiz-option:hover { border-color: var(--jbelle-rose); background: white; transform: translateX(4px); }
.quiz-back { margin-top: 24px; border: 0; background: none; color: var(--jbelle-soft-text); cursor: pointer; text-decoration: underline; }
.recommendation-card { display: grid; grid-template-columns: .9fr 1.1fr; gap: 34px; align-items: center; }
.recommendation-image { height: 390px; overflow: hidden; border-radius: 24px; background: var(--jbelle-pink); }
.recommendation-image img { width: 200%; max-width: none; height: 100%; object-fit: cover; object-position: left 18%; }
.recommendation-copy h3 { margin-bottom: 15px; font-size: clamp(40px, 4vw, 62px); }
.recommendation-copy h3 span { display: block; color: var(--jbelle-rose-dark); font-size: .52em; }
.recommendation-copy p { color: var(--jbelle-soft-text); }
.recommendation-meta { display: flex; gap: 20px; margin: 22px 0; }
.recommendation-meta span { padding-right: 20px; border-right: 1px solid var(--line); }
.recommendation-meta span:last-child { border: 0; }
.recommendation-meta small { display: block; color: var(--jbelle-soft-text); }
.recommendation-actions { display: flex; flex-wrap: wrap; gap: 10px; }

.styles-section { background: linear-gradient(180deg, var(--jbelle-ivory), #fbefee); }
.style-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.style-card { position: relative; overflow: hidden; border: 1px solid var(--line); border-radius: 28px; background: white; box-shadow: 0 14px 45px rgba(80,50,56,.06); cursor: pointer; transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease; }
.style-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.style-card.is-selected { border-color: var(--jbelle-rose-dark); box-shadow: 0 0 0 3px rgba(185,102,121,.14), var(--shadow); }
.style-image-wrap { position: relative; aspect-ratio: 1.42; overflow: hidden; background: var(--jbelle-pink); }
.style-image-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.style-card:hover .style-image-wrap img { transform: scale(1.025); }
.style-check { position: absolute; right: 14px; top: 14px; width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: white; color: var(--jbelle-rose-dark); opacity: 0; transform: scale(.7); transition: .25s ease; }
.style-card.is-selected .style-check { opacity: 1; transform: scale(1); }
.style-card-body { padding: 26px; }
.style-card-body > div:first-child { display: flex; flex-direction: column; }
.style-kicker { margin-bottom: 7px; color: var(--jbelle-rose-dark); font-size: 10px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; }
.style-card h3 { margin-bottom: 12px; font-size: 38px; }
.style-card h3 span { margin-left: 7px; color: var(--jbelle-rose-dark); font-family: var(--font-body); font-size: 12px; letter-spacing: 1px; }
.style-card-body > p { min-height: 52px; color: var(--jbelle-soft-text); font-size: 13px; }
.card-actions { display: grid; grid-template-columns: 1fr 50px; gap: 8px; margin-top: 20px; }
.icon-button { width: 50px; height: 50px; border: 0; border-radius: 50%; background: var(--jbelle-charcoal); color: white; font-size: 20px; cursor: pointer; }
.style-card.is-selected .button-select { background: var(--jbelle-pink); border-color: var(--jbelle-rose); color: var(--jbelle-rose-dark); }
.compare { margin-top: 80px; }
.compare h3 { margin-bottom: 25px; font-size: 32px; }
.compare-scroll { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.compare article { display: grid; grid-template-columns: 35px 1fr auto; align-items: center; gap: 8px 15px; padding: 24px; border-right: 1px solid var(--line); }
.compare article:last-child { border-right: 0; }
.compare article span { grid-row: 1 / 3; color: var(--jbelle-rose); font-family: var(--font-display); font-size: 23px; }
.compare article strong { font-family: var(--font-display); font-size: 25px; }
.compare article small { color: var(--jbelle-soft-text); }
.compare article b { font-weight: 700; }
.compare article p { margin: 0; color: var(--jbelle-rose-dark); font-size: 12px; font-weight: 700; }

.kit-section { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: clamp(40px, 8vw, 110px); background: var(--jbelle-cream); }
.kit-visual { position: relative; padding: clamp(12px, 3vw, 34px); border-radius: 48% 48% 24px 24px; background: linear-gradient(145deg, white, var(--jbelle-blush)); }
.kit-visual img { width: 100%; border-radius: inherit; }
.kit-visual > span { position: absolute; right: -20px; bottom: 12%; width: 110px; aspect-ratio: 1; display: grid; place-items: center; border-radius: 50%; background: var(--jbelle-rose-dark); color: white; font-family: var(--font-display); font-size: 22px; transform: rotate(8deg); }
.kit-list { margin: 32px 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.kit-list li { display: grid; grid-template-columns: 45px 1fr; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.kit-list li span { color: var(--jbelle-rose); font-family: var(--font-display); font-size: 22px; }
.kit-offer { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 26px; }
.kit-offer p { margin: 0; padding: 17px; border-radius: 16px; background: white; }
.kit-offer strong, .kit-offer small { display: block; }
.kit-offer strong { font-family: var(--font-display); font-size: 28px; }
.kit-offer small { color: var(--jbelle-soft-text); font-size: 10px; text-transform: uppercase; }

.real-look { display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: 10%; background: #efe9ee; }
.real-copy { max-width: 460px; }
.before-after { position: relative; max-height: 720px; margin: 0; overflow: hidden; border-radius: var(--radius-lg); background: #cdb8ac; }
.before-after img { width: 100%; height: 100%; max-height: 720px; object-fit: cover; object-position: center 20%; }
.before-after figcaption { position: absolute; inset: auto 16px 16px; display: flex; justify-content: space-between; gap: 10px; }
.before-after figcaption span { padding: 9px 14px; border-radius: 999px; background: rgba(255,255,255,.78); font-size: 10px; font-weight: 800; text-transform: uppercase; backdrop-filter: blur(9px); }

.videos-section { background: var(--jbelle-charcoal); color: white; }
.videos-section .eyebrow { color: #dfa6b2; }
.videos-section .section-heading > p { color: rgba(255,255,255,.65); }
.video-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 430px)); justify-content: center; gap: 26px; }
.video-card { overflow: hidden; border: 1px solid rgba(255,255,255,.13); border-radius: 26px; background: #151214; }
.video-card video { width: 100%; aspect-ratio: 9 / 16; max-height: 680px; object-fit: cover; background: #120f11; }
.video-card > div { display: flex; gap: 18px; align-items: center; padding: 18px 20px; }
.video-card > div > span { color: #dfa6b2; font-family: var(--font-display); font-size: 24px; }
.video-card p, .video-card small, .video-card strong { display: block; margin: 0; }
.video-card small { margin-top: 2px; color: rgba(255,255,255,.58); }
.tutorial-panel { display: grid; grid-template-columns: minmax(250px, .72fr) minmax(0, 1.55fr); gap: clamp(28px, 5vw, 72px); align-items: center; margin-top: 80px; padding-top: 54px; border-top: 1px solid rgba(255,255,255,.13); }
.tutorial-copy h3 { margin-bottom: 16px; font-size: clamp(38px, 4vw, 58px); }
.tutorial-copy > p:not(.eyebrow) { margin-bottom: 28px; color: rgba(255,255,255,.68); }
.tutorial-video { position: relative; display: block; overflow: hidden; aspect-ratio: 16 / 9; border: 1px solid rgba(255,255,255,.16); border-radius: 28px; background: #120f11; box-shadow: 0 24px 70px rgba(0,0,0,.28); text-decoration: none; }
.tutorial-video > img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.tutorial-video:hover > img { transform: scale(1.025); }
.tutorial-play { position: absolute; inset: 0; display: grid; place-content: center; justify-items: center; padding: 24px; background: linear-gradient(180deg, rgba(18,15,17,.08), rgba(18,15,17,.62)); color: white; text-align: center; }
.tutorial-play > span { display: grid; place-items: center; width: 72px; aspect-ratio: 1; margin-bottom: 14px; border: 1px solid rgba(255,255,255,.65); border-radius: 50%; background: rgba(125,62,77,.88); box-shadow: 0 12px 32px rgba(0,0,0,.28); font-size: 25px; padding-left: 4px; }
.tutorial-play strong, .tutorial-play small { display: block; }
.tutorial-play strong { font-size: 17px; }
.tutorial-play small { margin-top: 3px; color: rgba(255,255,255,.78); }

.faq-section { display: grid; grid-template-columns: .65fr 1.35fr; gap: 10%; background: var(--jbelle-ivory); }
.faq-intro { position: sticky; top: 40px; align-self: start; }
.accordion { border-top: 1px solid var(--line); }
.accordion details { border-bottom: 1px solid var(--line); }
.accordion summary { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 16px 4px; font-weight: 700; cursor: pointer; list-style: none; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after { content: "+"; width: 34px; height: 34px; display: grid; flex: 0 0 auto; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--jbelle-rose-dark); font-size: 20px; transition: transform .2s ease; }
.accordion details[open] summary::after { transform: rotate(45deg); }
.accordion details p { max-width: 690px; padding: 0 48px 22px 4px; color: var(--jbelle-soft-text); }

.closing-cta { display: grid; grid-template-columns: 1fr .7fr; align-items: end; gap: 8%; padding: clamp(80px, 11vw, 150px) max(24px, calc((100% - var(--max-width)) / 2)); background: linear-gradient(130deg, #8a4354, #68313f); color: white; }
.closing-copy { max-width: 760px; }
.closing-copy .eyebrow { color: #f3c8d1; }
.closing-copy h2 em { color: #f7dce1; }
.closing-copy > p { color: rgba(255,255,255,.75); }
.social-links { display: grid; gap: 8px; }
.social-link { display: grid; grid-template-columns: 46px 1fr auto; align-items: center; gap: 14px; padding: 14px; border: 1px solid rgba(255,255,255,.2); border-radius: 16px; text-decoration: none; transition: background .2s ease; }
.social-link:hover { background: rgba(255,255,255,.08); }
.social-link > span:first-child { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.12); font-family: var(--font-display); font-size: 18px; }
.social-link strong, .social-link small { display: block; }
.social-link small { color: rgba(255,255,255,.62); }

.site-footer { min-height: 190px; display: grid; grid-template-columns: .7fr 1fr 1.5fr auto; align-items: center; gap: 30px; padding: 40px max(24px, calc((100% - var(--max-width)) / 2)); background: #1d191b; color: rgba(255,255,255,.65); font-size: 11px; }
.site-footer p { margin: 0; }
.site-footer a { color: white; }
.footer-brand { width: 168px; height: 92px; }
.footer-brand .brand-logo { top: -23px; left: -51px; width: 278px; }
.footer-note { max-width: 430px; }
.mobile-order { display: none; }

.image-fallback { min-height: 240px; display: grid; place-items: center; padding: 30px; background: linear-gradient(145deg, var(--jbelle-pink), var(--jbelle-cream)); color: var(--jbelle-rose-dark); text-align: center; }
.image-fallback strong { font-family: var(--font-display); font-size: 28px; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .site-header { min-height: 74px; }
  .header-nav { display: none; }
  .site-header > .button { display: none; }
  .hero { min-height: auto; grid-template-columns: 1fr; padding-top: 108px; }
  .hero-copy { max-width: 720px; }
  .hero-visual { min-height: 440px; }
  .hero-visual picture { width: min(82vw, 590px); }
  .trust-strip { grid-template-columns: repeat(3, 1fr); }
  .trust-strip .text-link { grid-column: 1 / -1; justify-self: start; }
  .kit-section, .real-look, .faq-section { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .advisor-shell { grid-template-columns: 1fr; }
  .advisor-intro { min-height: 340px; }
  .advisor-portrait { height: 64%; }
  .style-grid { grid-template-columns: 1fr; }
  .style-card { display: grid; grid-template-columns: 1.1fr .9fr; }
  .style-image-wrap { height: 100%; aspect-ratio: auto; }
  .style-card-body > p { min-height: 0; }
  .kit-visual { max-width: 720px; }
  .real-copy { max-width: 700px; }
  .faq-intro { position: static; }
  .closing-cta { grid-template-columns: 1fr; }
  .social-links { margin-top: 40px; }
  .site-footer { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  body { padding-bottom: 76px; }
  .site-header { width: calc(100% - 32px); }
  .site-header .brand { width: 114px; height: 62px; }
  .site-header .brand-logo { top: -16px; left: -35px; width: 192px; }
  .hero { padding: 104px 20px 48px; background: radial-gradient(circle at 78% 29%, white, transparent 35%), linear-gradient(155deg, #fff9f3, #f7e0e4); }
  h1 { font-size: clamp(54px, 16vw, 72px); letter-spacing: -3px; }
  .hero-lede { font-size: 15px; }
  .hero-quality { margin-bottom: 20px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .benefit-chips { margin-top: 20px; }
  .benefit-chips li { font-size: 10px; }
  .hero-visual { min-height: 370px; margin-top: 16px; }
  .hero-visual picture { width: 96vw; max-width: 470px; }
  .floating-note { font-size: 9px; }
  .note-one { left: 0; top: 18%; }
  .note-two { right: 0; bottom: 12%; }
  .trust-strip { grid-template-columns: 1fr 1fr; padding: 22px 20px; }
  .trust-strip p:nth-child(3) { grid-column: 1 / -1; }
  .section { padding: 82px 20px; }
  .section-heading { margin-bottom: 38px; }
  .section-heading h2, .kit-copy h2, .real-copy h2, .faq-intro h2, .closing-copy h2 { font-size: clamp(46px, 13vw, 62px); }
  .section-heading.split { grid-template-columns: 1fr; gap: 0; }
  .steps li { min-height: 0; padding: 24px; }
  .steps li > span { margin-bottom: 16px; }
  .steps h3 { font-size: 27px; }
  .advisor { padding-inline: 12px; }
  .advisor-shell { border-radius: 28px; }
  .advisor-intro { min-height: 390px; padding: 35px 28px; }
  .advisor-portrait { height: 66%; }
  .advisor-portrait img { object-position: 50% 50%; }
  .quiz-card, .recommendation-card { padding: 34px 24px; }
  .quiz-progress { margin-bottom: 32px; }
  .quiz-question { font-size: 37px; }
  .recommendation-card { grid-template-columns: 1fr; }
  .recommendation-image { height: 250px; }
  .recommendation-actions { flex-direction: column; }
  .recommendation-actions .button { width: 100%; }
  .style-card { display: block; }
  .style-image-wrap { aspect-ratio: 1.42; }
  .style-card-body { padding: 22px; }
  .compare { margin-top: 52px; }
  .compare-scroll { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; border: 0; gap: 10px; padding-bottom: 10px; }
  .compare article { flex: 0 0 82%; min-width: 270px; border: 1px solid var(--line); border-radius: 18px; scroll-snap-align: start; }
  .kit-visual { border-radius: 48% 48% 18px 18px; }
  .kit-visual > span { right: -5px; width: 86px; font-size: 18px; }
  .kit-offer { grid-template-columns: 1fr; }
  .real-look { gap: 44px; }
  .before-after { max-height: 600px; }
  .video-grid { grid-template-columns: 1fr; }
  .video-card video { max-height: none; }
  .tutorial-panel { grid-template-columns: 1fr; margin-top: 58px; padding-top: 42px; }
  .tutorial-copy .button { width: 100%; }
  .closing-cta { padding: 82px 20px; }
  .site-footer { grid-template-columns: 1fr; padding: 50px 20px; }
  .mobile-order { position: fixed; z-index: 80; left: 12px; right: 12px; bottom: 10px; min-height: 56px; display: flex; align-items: center; justify-content: center; gap: 10px; border: 1px solid rgba(255,255,255,.2); border-radius: 999px; background: var(--jbelle-charcoal); color: white; box-shadow: 0 15px 35px rgba(30,18,22,.32); font-size: 13px; font-weight: 800; }
  .mobile-order span { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; background: #fff; color: var(--jbelle-charcoal); font-size: 9px; }
}

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