:root {
--bg: #fff0f5;
--surface: #ffffff;
--sand: #e8ddd2;
--sand-dark: #d5c3b4;
--ink: #1f1b18;
--muted: #6e655d;
--line: #e7ded6;
--white: #ffffff;
--charcoal: #1f1b18;
}

* {
  box-sizing: border-box;
  }

body {
margin: 0;
font-family: Arial, Helvetica, sans-serif;
background: var(--bg);
color: var(--ink);
}

a {
color: inherit;
text-decoration: none;
}

.topbar {
background: #1c1815;
color: var(--white);
text-align: center;
padding: 11px 16px;
font-size: 11px;
letter-spacing: 0.18em;
text-transform: uppercase;
}

.navbar {
display: grid;
grid-template-columns: 1fr auto 1fr;
align-items: center;
gap: 20px;
padding: 18px 32px;
background: rgba(251, 247, 242, 0.94);
border-bottom: 1px solid var(--line);
position: sticky;
top: 0;
z-index: 20;
backdrop-filter: blur(10px);
}

.nav-left,
.nav-right {
display: flex;
gap: 18px;
font-size: 14px;
color: var(--muted);
}

.nav-right {
justify-content: flex-end;
}

.logo {
font-size: 24px;
font-weight: 900;
letter-spacing: 0.26em;
}

/* 🔥 UPDATED HERO SECTION */
.hero-split {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 16px;
padding: 20px;
max-width: 1200px;
margin: 0 auto;
}

.hero-split {
    padding: 10px 20px 20px;
}

.hero-panel {
    height: calc(100vh - 280px);
    border-radius: 26px;
    position: relative;
    overflow: hidden;
    display: block;
}

.hero-panel-left {
    background-image: url("https://i.pinimg.com/1200x/ab/fa/d6/abfad6b980a6a5c990028153e1d77e66.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-panel-right {
    background-image: url("https://i.pinimg.com/736x/38/f0/a2/38f0a256324e07d0e9d1a5aa8fcd06c1.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-panel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.55),
        rgba(0, 0, 0, 0.1)
    );
}

.hero-panel-content {
position: absolute;
left: 30px;
bottom: 30px;
z-index: 2;
color: var(--white);
max-width: 420px;
}

.hero-kicker,
.eyebrow,
.modal-eyebrow {
margin: 0 0 12px;
font-size: 11px;
letter-spacing: 0.2em;
text-transform: uppercase;
}

.hero-panel h1 {
margin: 0 0 14px;
font-size: clamp(40px, 6vw, 78px);
line-height: 0.95;
font-weight: 900;
}

.hero-link {
display: inline-block;
padding-bottom: 2px;
border-bottom: 1px solid rgba(255,255,255,0.7);
font-size: 14px;
font-weight: 600;
}

.quick-links {
display: flex;
gap: 12px;
flex-wrap: wrap;
padding: 8px 20px 0;
}

.quick-link {
background: var(--surface);
border: 1px solid var(--line);
border-radius: 999px;
padding: 12px 16px;
font-size: 13px;
color: var(--ink);
}

.section-block {
padding: 40px 20px 70px;
}

.section-top {
display: flex;
justify-content: space-between;
align-items: end;
margin-bottom: 18px;
}

.section-top h2,
.editorial-copy h2 {
margin: 0;
font-size: clamp(28px, 4vw, 48px);
}

.section-top a,
.editorial-copy a {
text-decoration: underline;
text-underline-offset: 4px;
font-size: 14px;
color: var(--muted);
}

.product-row {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 16px;
}

.clean-card {
background: transparent;
border-radius: 22px;
overflow: hidden;
}

.product-card {
transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.product-card:hover {
transform: translateY(-4px);
}

.product-image,
.product-image-real {
width: 100%;
aspect-ratio: 4 / 5;
border-radius: 22px;
display: flex;
align-items: center;
justify-content: center;
background: linear-gradient(135deg, #ede2d7, #d5c1b1);
color: var(--muted);
object-fit: cover;
}

.product-badge,
.product-card h3,
.price {
padding-left: 4px;
padding-right: 4px;
}

.product-badge {
margin: 14px 0 0;
font-size: 11px;
letter-spacing: 0.16em;
text-transform: uppercase;
color: var(--muted);
}

.product-card h3 {
margin: 8px 0 0;
font-size: 18px;
}

.price {
margin: 8px 0 0;
font-weight: 700;
}

.editorial-banner {
padding: 0 20px 20px;
}

.editorial-copy {
background: linear-gradient(135deg, #eadfd4, #f6efe9);
border-radius: 28px;
padding: 36px;
}

.eyebrow.dark {
color: var(--muted);
}

.editorial-copy p:last-of-type {
color: var(--muted);
max-width: 520px;
line-height: 1.6;
}

.shop-by-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 16px;
padding: 0 20px 70px;
}

.shop-panel {
border-radius: 28px;
padding: 28px;
}

.neutral-panel {
background: #efe4d9;
color: var(--ink);
}

.dark-panel {
background: #221d19;
color: var(--white);
}

.chip-row {
display: flex;
gap: 10px;
flex-wrap: wrap;
margin-top: 18px;
}

.chip-row span {
display: inline-block;
padding: 11px 14px;
border-radius: 999px;
background: rgba(255,255,255,0.55);
color: inherit;
font-size: 13px;
}

.dark-panel .chip-row span {
background: rgba(255,255,255,0.1);
}

.footer {
border-top: 1px solid var(--line);
padding: 28px 20px 36px;
display: flex;
justify-content: space-between;
gap: 20px;
color: var(--muted);
}

.footer-logo {
font-size: 22px;
letter-spacing: 0.22em;
font-weight: 900;
color: var(--ink);
margin-bottom: 10px;
}

.footer-links {
display: grid;
gap: 10px;
text-align: right;
}

.modal-overlay {
position: fixed;
inset: 0;
background: rgba(15, 12, 10, 0.42);
display: flex;
align-items: center;
justify-content: center;
z-index: 100;
padding: 22px;
}

.modal-card {
width: min(500px, 100%);
background: #fffdfb;
border-radius: 28px;
padding: 34px 28px 28px;
position: relative;
box-shadow: 0 24px 60px rgba(0, 0, 0, 0.16);
}

.modal-close {
position: absolute;
top: 14px;
right: 18px;
border: 0;
background: transparent;
font-size: 30px;
cursor: pointer;
color: var(--muted);
}

.modal-card h2 {
margin: 0;
font-size: 38px;
}

.modal-text {
margin: 12px 0 0;
color: var(--muted);
}

.modal-form {
display: flex;
gap: 10px;
margin-top: 22px;
}

.modal-form input {
flex: 1;
padding: 15px 16px;
border: 1px solid var(--line);
border-radius: 999px;
font-size: 14px;
outline: none;
}

.modal-form button {
border: 0;
background: var(--ink);
color: var(--white);
border-radius: 999px;
padding: 15px 20px;
font-weight: 700;
cursor: pointer;
}

.modal-note {
margin-top: 12px;
font-size: 12px;
color: var(--muted);
}

.quiz-box {
    margin-top: 18px;
    padding: 16px;
    border-radius: 20px;
    background: #fff7fb;
    border: 1px solid #f1dce6;
    text-align: left;
}

.quiz-title {
    margin: 0 0 6px;
    font-size: 14px;
    font-weight: 700;
    color: var(--ink);
}

.quiz-copy {
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
    color: var(--muted);
}

.quiz-button {
    display: inline-block;
    margin-top: 12px;
    padding: 11px 16px;
    border-radius: 999px;
    background: #f6dfe8;
    color: var(--ink);
    font-size: 13px;
    font-weight: 700;
}

.quiz-box {
    margin-top: 18px;
    padding: 16px;
    border-radius: 20px;
    background: #fff5f7;
    border: 1px solid #f3dbe3;
}

.quiz-title {
    margin: 0 0 6px;
    font-size: 14px;
    font-weight: 700;
}

.quiz-copy {
    margin: 0;
    font-size: 13px;
    color: var(--muted);
}

.quiz-sub {
    margin: 6px 0 0;
    font-size: 12px;
    color: var(--muted);
}

.quiz-button {
    display: inline-block;
    margin-top: 12px;
    padding: 10px 16px;
    border-radius: 999px;
    background: #f8dce6;
    font-size: 13px;
    font-weight: 700;
}

.pretty-explore {
    background: linear-gradient(135deg, #fff0f5, #fff8fb);
    min-height: 550px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 80px 20px;
}

.pretty-explore h1 {
    font-size: clamp(42px, 8vw, 90px);
    line-height: 0.95;
    letter-spacing: -3px;
    margin: 15px 0;
    max-width: 900px;
}

.pretty-explore .explore-text {
    max-width: 600px;
    font-size: 18px;
    line-height: 1.7;
    color: #5f5056;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    margin-top: 30px;
}

.primary-cta,
.secondary-cta {
    padding: 14px 24px;
    border-radius: 999px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
}

.primary-cta {
    background: #111;
    color: white;
}

.secondary-cta {
    background: white;
    color: #111;
    border: 1px solid #ead4dc;
}

.cute-steps {
    padding: 80px 6%;
    background: #fff8fb;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.how-card {
    background: white;
    border-radius: 28px;
    padding: 35px;
    border: 1px solid #f1dce4;
    box-shadow: 0 20px 40px rgba(0,0,0,0.04);
}

.how-card span {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #ffe4ef;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 18px;
}

.how-card h3 {
    margin-bottom: 12px;
}

.how-card p {
    color: #6b5b61;
    line-height: 1.6;
}

.tiers-section {
    background: #fff8fb;
    padding: 40px 6% 100px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.tier-card {
    background: white;
    border-radius: 32px;
    padding: 40px;
    border: 1px solid #f1dce4;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.featured-tier {
    background: #111;
    color: white;
    transform: translateY(-20px);
}

.featured-tier .tier-label,
.featured-tier .tier-sub,
.featured-tier .tier-list li {
    color: #f6e8ee;
}

.tier-badge {
    display: inline-block;
    background: #ffe4ef;
    color: #111;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 11px;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.tier-button {
    display: inline-block;
    margin-top: 24px;
    padding: 14px 24px;
    border-radius: 999px;
    background: #111;
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
}

.dark-tier-button {
    background: white;
    color: #111;
}

.pretty-explore {
    background: rgb(241, 149, 219) !important;
}