:root {
    /* Color Palette */
    --bg-color: #F7F4EE;
    --bg-alt: #EFE9DE;
    --text-main: #292824;
    --text-sec: #666157;
    --accent: #37372F;
    --warm-brown: #806C59;
    --border: #DED7CB;
    --white: #FFFFFF;
    
    /* Scent Accents */
    --scent-lights-out: #9A8E9E;
    --scent-golden-hour: #C39B61;
    --scent-clear-mind: #8D9A82;

    /* Typography */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing & Sizes */
    --max-width: 1200px;
    --read-width: 800px;
    --radius: 8px;
    --radius-lg: 16px;
    
    /* Safe Area */
    --safe-bottom: env(safe-area-inset-bottom, 16px);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, .logo {
    font-family: var(--font-heading);
    color: var(--text-main);
    font-weight: 600;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.75rem, 6vw, 6.5rem);
    margin-bottom: 1rem;
}

h2 {
    font-size: clamp(2rem, 4vw, 4rem);
    margin-bottom: 1.5rem;
}

h3 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

.subheadline {
    font-size: clamp(1.25rem, 2vw, 1.75rem);
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--text-sec);
    margin-bottom: 1.5rem;
}

.lead-text {
    font-size: 1.125rem;
    color: var(--text-sec);
}

.strong {
    font-weight: 600;
    color: var(--text-main);
}

.microcopy {
    font-size: 0.875rem;
    color: var(--text-sec);
}

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-800 { max-width: var(--read-width); }
.w-full { width: 100%; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 2rem; }

/* Utilities */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.bg-alt {
    background-color: var(--bg-alt);
}

section {
    padding: 5rem 0;
}

/* Images */
.img-placeholder {
    background-color: var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    overflow: hidden;
    color: var(--text-sec);
    font-size: 0.875rem;
    text-align: center;
    padding: 1rem;
    border: 1px dashed var(--warm-brown);
}

.aspect-portrait { aspect-ratio: 4/5; }
.aspect-landscape { aspect-ratio: 16/9; }
.aspect-square { aspect-ratio: 1/1; }
.aspect-wide { aspect-ratio: 21/9; }
.content-image { display: block; width: 100%; height: auto; object-fit: cover; border-radius: var(--radius-lg); box-shadow: 0 18px 45px rgba(45,36,27,.1); }
.content-image.aspect-square, .content-image.aspect-portrait, .content-image.aspect-landscape { height: auto; }
.hero-product-image { box-shadow: 0 28px 70px rgba(72,48,31,.18); }
.refill-sequence-image { aspect-ratio: 3 / 1; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 1rem;
    padding: 1rem 2rem;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    min-height: 48px;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #4a4a40;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--accent);
    color: var(--accent);
}

.btn-outline:hover {
    background-color: rgba(55,55,47,0.05);
}

.btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Header */
.site-header {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
    background-color: var(--bg-color);
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}
.logo {
    font-size: 1.5rem;
}
.header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.header-perk {
    font-size: 0.875rem;
    color: var(--text-sec);
    display: none;
}
.header-cta {
    font-weight: 500;
    color: var(--accent);
    text-decoration: none;
    font-size: 0.9rem;
}

/* Hero */
.hero-container {
    display: grid;
    gap: 3rem;
    align-items: center;
}
.eyebrow {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--warm-brown);
    font-weight: 600;
    display: block;
    margin-bottom: 1rem;
}
.trust-strip {
    background: var(--bg-alt);
    padding: 0.75rem;
    border-radius: var(--radius);
    display: inline-block;
    margin: 1.5rem 0;
    font-size: 0.9rem;
}

/* Steps Grid */
.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 3rem 0;
}
.step-card {
    text-align: center;
}
.step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--bg-color);
    border: 1px solid var(--border);
    font-weight: 600;
    margin-bottom: 1rem;
}

.closing-statement {
    margin-top: 3rem;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 1.2rem;
}

/* Problem Section */
.problem-content {
    display: grid;
    gap: 3rem;
    margin-top: 3rem;
}
.highlight-text {
    font-size: 1.5rem;
    margin-top: 1.5rem;
    color: var(--accent);
}
.problem-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.prob-card {
    background: var(--bg-color);
    padding: 1.5rem;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid var(--border);
}
.prob-title { color: var(--text-sec); flex: 1; }
.prob-arrow { color: var(--border); }
.prob-sol { font-weight: 600; flex: 1; text-align: right; }

/* Concentration */
.concentration-container {
    display: grid;
    gap: 3rem;
    align-items: center;
}
.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}
.stat-card {
    border-left: 2px solid var(--warm-brown);
    padding-left: 1rem;
}
.stat-number {
    display: block;
    font-size: 2.5rem;
    font-family: var(--font-heading);
    line-height: 1;
    margin-bottom: 0.5rem;
}
.stat-label {
    font-size: 0.875rem;
    color: var(--text-sec);
}

/* Fresh Reeds */
.reeds-container {
    display: grid;
    gap: 3rem;
    align-items: center;
}
.reeds-compare {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 0;
}
.compare-item .label {
    font-weight: 600;
    display: block;
    margin-bottom: 0.25rem;
}

/* Discovery */
.fragrance-cards {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
    text-align: left;
}
.fragrance-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border-top: 4px solid var(--accent);
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}
.theme-lights-out { border-color: var(--scent-lights-out); }
.theme-golden-hour { border-color: var(--scent-golden-hour); }
.theme-clear-mind { border-color: var(--scent-clear-mind); }
.fragrance-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.5rem;
}
.fragrance-header h3 { margin: 0; }
.mood-tags {
    font-size: 0.75rem;
    color: var(--text-sec);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.tagline {
    font-style: italic;
    color: var(--text-sec);
    margin-bottom: 1.5rem;
}
.fragrance-notes {
    background: var(--bg-alt);
    padding: 1rem;
    border-radius: var(--radius);
    margin: 1.5rem 0;
    font-size: 0.875rem;
}
.best-for { font-size: 0.875rem; margin-bottom: 1.5rem; }

/* Lifestyle Layout */
.lifestyle-grid {
    display: grid;
    gap: 4rem;
    margin-top: 2.25rem;
}
.lifestyle-heading h2 { margin-bottom: 0; }
.lifestyle-item {
    display: grid;
    gap: 2rem;
    align-items: center;
}
.lifestyle-copy h3 { margin-bottom: 0.5rem; }

/* How To Use */
.how-to-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 3rem 0;
    text-align: left;
}
.ht-step {
    padding: 1.5rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
}
.ht-num {
    font-weight: 600;
    color: var(--warm-brown);
    display: block;
    margin-bottom: 0.5rem;
}
.ht-note {
    font-size: 0.875rem;
    color: var(--text-sec);
}

/* Social Proof */
.testimonials-scroll {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding-bottom: 1.5rem;
    margin-top: 3rem;
    snap-type: x mandatory;
}
.testimonial-card {
    min-width: 300px;
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    scroll-snap-align: start;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}
.testimonial-card p {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-style: italic;
}
.customer-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-sec);
}

/* Offers */
.package-grid {
    display: grid;
    gap: 1.5rem;
    margin-top: 3rem;
    text-align: left;
}
.package-overview {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: .75rem;
    margin-top: 2.25rem;
    text-align: left;
}
.overview-option {
    min-width: 0;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--white);
    color: var(--text-main);
    text-decoration: none;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.overview-option:hover { transform: translateY(-2px); border-color: var(--warm-brown); box-shadow: 0 10px 24px rgba(45,36,27,.07); }
.overview-option:focus-visible { outline: 3px solid rgba(160,111,63,.3); outline-offset: 3px; }
.overview-name { font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.overview-option strong { margin-top: .45rem; font-family: var(--font-heading); font-size: 1.55rem; line-height: 1; }
.overview-option small { margin-top: .4rem; color: var(--warm-brown); font-size: .7rem; font-weight: 600; }
.overview-option.featured { border-color: var(--accent); background: var(--accent); color: var(--white); }
.overview-option.featured small { color: #f2d9b5; }
.overview-label { align-self: flex-start; margin: -.25rem 0 .55rem; padding: .2rem .4rem; border-radius: 999px; background: rgba(255,255,255,.13); color: inherit; font-size: .52rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.overview-label.value-label { background: rgba(160,111,63,.13); color: var(--warm-brown); }
.overview-hint { display: none; }
.package-card { scroll-margin-top: 1rem; }
.upgrade-prompt {
    margin: 0 0 1rem;
    padding: .9rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    border: 1px solid rgba(160,111,63,.25);
    border-radius: 12px;
    background: rgba(160,111,63,.08);
    color: var(--text-sec);
    text-decoration: none;
    font-size: .75rem;
    line-height: 1.45;
}
.upgrade-prompt strong { display: block; color: var(--text-main); font-size: .8rem; }
.upgrade-arrow { flex: 0 0 auto; color: var(--warm-brown); font-size: 1.25rem; transition: transform .2s ease; }
.upgrade-prompt:hover .upgrade-arrow { transform: translateX(3px); }
.package-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.package-card.selected {
    border-color: var(--accent);
    box-shadow: 0 0 0 2px var(--accent);
}
.pkg-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    letter-spacing: 1px;
}
.pkg-badge.alt { background: var(--warm-brown); }
.package-card.popular { border-color: var(--accent); }
.package-card.value { border-color: var(--warm-brown); }
.pkg-header h3 { margin-bottom: 0; }
.pkg-desc { font-size: 0.875rem; color: var(--text-sec); margin-bottom: 1rem; }
.pkg-value { font-weight: 600; color: var(--warm-brown); margin-bottom: 1rem; }
.pkg-includes {
    list-style: none;
    margin-bottom: 1.5rem;
}
.pkg-includes li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}
.pkg-includes li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--warm-brown);
}
.bonus { color: var(--accent); font-weight: 500; }
.pkg-callout {
    background: var(--bg-alt);
    padding: 1rem;
    border-radius: var(--radius);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}
.pkg-price-area { margin-bottom: 1.5rem; }
.price { font-size: 2rem; font-family: var(--font-heading); font-weight: 600; display: block; }
.savings { font-size: 0.875rem; color: var(--warm-brown); font-weight: 500; }
.ultimate-statement { font-weight: 600; letter-spacing: 1px; margin: 1rem 0; }

/* Urgency & Delivery */
.callout-box {
    border: 1px solid var(--border);
    padding: 1.5rem;
    border-radius: var(--radius);
    margin-top: 2rem;
    font-size: 0.9rem;
}
.delivery-steps { margin-bottom: 2rem; }
.reassurance-strip-large {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.zero-payment { font-size: 1.25rem; font-weight: 600; }
.free-delivery { color: var(--text-sec); }

/* FAQ */
.faq-accordion { margin-top: 3rem; text-align: left; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 1.5rem 0;
    font-size: 1.1rem;
    font-weight: 500;
    font-family: var(--font-heading);
    color: var(--text-main);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-question::after { content: "+"; font-size: 1.5rem; }
.faq-question[aria-expanded="true"]::after { content: "−"; }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.faq-answer p { padding-bottom: 1.5rem; color: var(--text-sec); }

/* Order Form */
.order-section {
    background-color: var(--white);
    border-top: 1px solid var(--border);
}
.order-summary {
    background: var(--bg-alt);
    padding: 1.5rem;
    border-radius: var(--radius);
    margin-bottom: 2rem;
    border: 1px solid transparent;
    transition: background-color .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.order-summary.package-changed { background: #e4ede5; border-color: #a8bead; box-shadow: 0 12px 30px rgba(23,61,42,.08); }
.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}
.summary-row.total {
    border-top: 1px solid var(--border);
    padding-top: 0.5rem;
    margin-top: 0.5rem;
    font-size: 1.1rem;
}
.summary-package-value { display: inline-flex; align-items: center; gap: .65rem; }
.summary-includes { margin: .45rem 0 1rem; padding: .75rem .85rem; border-radius: 10px; background: rgba(255,253,248,.65); text-align: left; }
.summary-includes > span { display: block; margin-bottom: .4rem; color: var(--text-sec); font-size: .66rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.summary-includes ul { margin: 0; padding: 0; display: grid; gap: .25rem; list-style: none; }
.summary-includes li { position: relative; padding-left: 1.15rem; color: var(--text-main); font-size: .76rem; line-height: 1.45; }
.summary-includes li::before { content: "✓"; position: absolute; left: 0; color: var(--warm-brown); font-weight: 600; }
.package-change-status { min-height: 0; margin: -.35rem 0 .8rem; color: var(--accent); font-size: .7rem; font-weight: 600; }
.package-change-status:empty { display: none; }
.change-package-btn { padding: .25rem .45rem; border: 0; border-radius: 999px; background: rgba(23,61,42,.1); color: var(--accent); font-family: var(--font-body); font-size: .62rem; font-weight: 600; letter-spacing: .07em; cursor: pointer; }
.change-package-btn:hover { background: rgba(23,61,42,.17); }
.change-package-btn:focus-visible, .summary-package-options button:focus-visible, .summary-upgrade button:focus-visible { outline: 3px solid rgba(160,111,63,.3); outline-offset: 2px; }
.summary-package-picker { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--border); }
.summary-package-picker[hidden] { display: none; }
.summary-package-picker > p { margin: 0 0 .65rem; color: var(--text-sec); font-size: .72rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.summary-package-options { display: grid; grid-template-columns: repeat(2, 1fr); gap: .55rem; }
.summary-package-options button { padding: .7rem; display: flex; flex-direction: column; align-items: flex-start; border: 1px solid var(--border); border-radius: 10px; background: var(--white); color: var(--text-main); font-family: var(--font-body); cursor: pointer; }
.summary-package-options button span { font-size: .7rem; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; }
.summary-package-options button strong { margin-top: .15rem; font-family: var(--font-heading); font-size: 1.25rem; line-height: 1; }
.summary-package-options button small { margin-top: .3rem; color: var(--warm-brown); font-size: .62rem; }
.summary-package-options button.active { border-color: var(--accent); box-shadow: inset 0 0 0 1px var(--accent); background: rgba(23,61,42,.05); }
.summary-upgrade { margin-top: 1rem; padding: 1rem; display: flex; align-items: flex-end; justify-content: space-between; gap: .85rem; border-radius: 12px; background: var(--accent); color: white; text-align: left; }
.upgrade-kicker { display: block; margin-bottom: .35rem; color: #e2bb85; font-size: .57rem; font-weight: 600; letter-spacing: .11em; }
.summary-upgrade strong { color: white; font-size: .9rem; }
.summary-upgrade p { margin: .25rem 0 0; color: #d5ddd6; font-size: .72rem; line-height: 1.45; }
.summary-upgrade button { flex: 0 0 auto; padding: .55rem .65rem; border: 1px solid rgba(255,255,255,.22); border-radius: 999px; background: rgba(255,255,255,.1); color: white; font-family: var(--font-body); font-size: .58rem; font-weight: 600; letter-spacing: .07em; white-space: nowrap; cursor: pointer; }
.summary-upgrade.top-tier { background: rgba(160,111,63,.1); color: var(--text-main); }
.summary-upgrade.top-tier .upgrade-kicker { display: none; }
.summary-upgrade.top-tier strong { color: var(--text-main); }
.summary-upgrade.top-tier p { color: var(--text-sec); }
.summary-upgrade.top-tier button { display: none; }
.summary-upgrade.next-offer { background: #8c6038; box-shadow: 0 10px 24px rgba(140,96,56,.16); }
.summary-upgrade.next-offer .upgrade-kicker { color: #ffe2ba; }
.form-section { margin-bottom: 2.5rem; text-align: left; }
.form-section h3 { margin-bottom: 1.5rem; border-bottom: 1px solid var(--border); padding-bottom: 0.5rem; }
.form-group { margin-bottom: 1.25rem; display: flex; flex-direction: column; }
.form-row { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 1.25rem; }
.form-row .form-group { margin-bottom: 0; }
label { font-weight: 500; font-size: 0.9rem; margin-bottom: 0.5rem; }
input, select, textarea {
    padding: 0.8rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 16px;
    background: var(--white);
    color: var(--text-main);
}
input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--accent);
}
.error-text { color: #d32f2f; font-size: 0.8rem; margin-top: 0.25rem; display: none; }
.input-error { border-color: #d32f2f; }
.consent-text { font-size: 0.8rem; color: var(--text-sec); text-align: center; margin-bottom: 1.5rem; }

.fragrance-select-group {
    margin-bottom: 1rem;
    padding: 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--bg-alt);
}
.fragrance-select-group.bonus-bottle {
    border-color: var(--accent);
    background: rgba(55,55,47,0.05);
}

/* Success State */
.success-state {
    padding: 4rem 1.5rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--bg-alt);
}
.success-details {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    text-align: left;
    margin: 2rem auto;
    max-width: 500px;
}
.success-details p { margin-bottom: 0.5rem; border-bottom: 1px solid var(--border); padding-bottom: 0.5rem; }
.success-details p:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0;}

/* Footer */
.site-footer {
    padding: 4rem 1.5rem;
    background: var(--white);
    border-top: 1px solid var(--border);
}
.footer-logo { font-family: var(--font-heading); font-size: 2rem; margin-bottom: 1rem; font-weight: 600; }
.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem 0;
}
.footer-links a { color: var(--text-sec); text-decoration: none; font-size: 0.9rem; }
.copyright { font-size: 0.8rem; color: var(--border); }

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(247, 244, 238, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--border);
    padding: 1rem 1.5rem;
    padding-bottom: calc(1rem + var(--safe-bottom));
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: 100;
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-content {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.sticky-price { font-weight: 600; }

/* Responsive adjustments */
@media (min-width: 768px) {
    .header-perk { display: block; }
    .hero-container, .problem-content, .concentration-container, .reeds-container, .lifestyle-item {
        grid-template-columns: 1fr 1fr;
    }
    .lifestyle-item.reverse .lifestyle-copy { grid-column: 1; grid-row: 1; }
    .lifestyle-item.reverse .img-placeholder,
    .lifestyle-item.reverse .content-image { grid-column: 2; grid-row: 1; }
    
    .steps-grid { grid-template-columns: repeat(3, 1fr); }
    .fragrance-cards { grid-template-columns: repeat(3, 1fr); }
    .package-grid { grid-template-columns: 1fr 1fr; }
    .how-to-steps { grid-template-columns: repeat(4, 1fr); }
    .form-row { flex-direction: row; }
    .form-group.half { width: 50%; }
}
@media (min-width: 1024px) {
    .package-grid { grid-template-columns: repeat(4, 1fr); }
    .package-card { justify-content: flex-start; }
    .pkg-price-area { margin-top: auto; }
}

/* 2026 visual refresh */
:root {
    --bg-color: #f3efe7;
    --bg-alt: #e9e1d4;
    --text-main: #18221d;
    --text-sec: #625f56;
    --accent: #173d2a;
    --warm-brown: #a06f3f;
    --border: #d8cfc1;
    --white: #fffdf8;
    --radius: 12px;
    --radius-lg: 24px;
    --max-width: 1240px;
}

body { letter-spacing: -0.01em; }
section { padding: clamp(4.5rem, 9vw, 8rem) 0; }
h1, h2, h3 { letter-spacing: -0.035em; }
h1 { font-size: clamp(3.45rem, 6.8vw, 6.75rem); line-height: .9; font-weight: 500; }
h1 em { color: var(--warm-brown); font-weight: 500; }
h2 { font-weight: 500; line-height: 1; }
p { max-width: 68ch; }

.announcement-bar {
    background: var(--accent);
    color: #f8f2e7;
    text-align: center;
    padding: .55rem 1rem;
    font-size: .72rem;
    letter-spacing: .13em;
    text-transform: uppercase;
}
.announcement-bar span { color: #d9a565; padding: 0 .55rem; }
.site-header {
    position: relative;
    z-index: 60;
    padding: .9rem 0;
    background: rgba(243,239,231,.88);
    backdrop-filter: blur(18px);
}
.logo { font-family: var(--font-body); font-size: 1.05rem; font-weight: 600; letter-spacing: .22em; }
.logo-dot { color: var(--warm-brown); }
.header-cta {
    background: var(--accent);
    color: white;
    padding: .7rem 1rem;
    border-radius: 999px;
    font-family: var(--font-body);
    font-size: .75rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: .09em;
    text-transform: uppercase;
}
.header-perk { letter-spacing: .02em; }

.hero { padding-top: clamp(3rem, 7vw, 6rem); overflow: hidden; position: relative; }
.hero::before {
    content: "";
    position: absolute;
    width: 36rem;
    height: 36rem;
    border: 1px solid rgba(160,111,63,.18);
    border-radius: 50%;
    left: -22rem;
    top: 8rem;
}
.hero-container { gap: clamp(3rem, 7vw, 7rem); }
.hero-actions { text-align: center; margin-top: -1.5rem; }
.hero-actions .microcopy { margin: .9rem auto 0; }
.hero-content > p { font-size: 1.06rem; color: var(--text-sec); }
.hero-lead { font-size: clamp(1.05rem, 1.8vw, 1.25rem) !important; margin: 1.4rem 0 2rem; }
.hero-contrast {
    max-width: 31rem;
    margin: 1.5rem 0 0;
}
.contrast-row { display: flex; align-items: center; justify-content: center; gap: .6rem; padding: .22rem 0; font-size: 1rem; }
.contrast-no { color: var(--text-sec); }
.contrast-yes { color: var(--accent); }
.contrast-icon { display: inline-flex; flex: 0 0 26px; width: 26px; height: 26px; align-items: center; justify-content: center; border-radius: 50%; font-size: 1rem; font-weight: 700; }
.contrast-no .contrast-icon { color: #8b5448; background: rgba(139, 84, 72, .1); }
.contrast-yes .contrast-icon { color: white; background: var(--accent); }
.eyebrow { color: var(--accent); letter-spacing: .22em; margin-bottom: 1.6rem; }
.hero-benefits { display: flex; flex-wrap: wrap; gap: .6rem; margin: 1.8rem 0 2rem; }
.hero-benefits span { border: 1px solid var(--border); border-radius: 999px; padding: .5rem .75rem; font-size: .72rem; text-transform: uppercase; letter-spacing: .06em; }
.btn { border-radius: 999px; font-size: .82rem; letter-spacing: .09em; padding: 1.05rem 1.75rem; box-shadow: none; }
.btn-primary { background: var(--accent); }
.btn-primary:hover { background: #24543b; box-shadow: 0 10px 28px rgba(23,61,42,.18); }
.hero-content .microcopy { margin-top: .9rem; }

.hero-image-placeholder {
    width: 100%;
    min-height: 0;
    background: linear-gradient(145deg, #ddcbb4, #ad825e);
    border-radius: 28px;
    box-shadow: 0 28px 70px rgba(72,48,31,.18);
}
.hero-image-placeholder::before { inset: 8%; border-radius: 50%; }
.placeholder-copy { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; max-width: 260px; }
.placeholder-copy strong { color: var(--accent); font-size: .75rem; letter-spacing: .16em; }
.placeholder-copy span { margin-top: .65rem; color: var(--text-main); font-family: var(--font-heading); font-size: 1.3rem; line-height: 1.15; text-transform: none; letter-spacing: -.01em; }
.placeholder-copy small { margin-top: .75rem; color: rgba(24,34,29,.62); font-size: .65rem; letter-spacing: .08em; }

.hero-visual {
    position: relative;
    min-height: 660px;
    border-radius: 180px 180px 28px 28px;
    overflow: hidden;
    background: linear-gradient(150deg, #dbc4a7 0%, #b98758 46%, #755136 100%);
    box-shadow: 0 32px 80px rgba(72,48,31,.22);
    isolation: isolate;
}
.hero-visual::before { content:""; position:absolute; inset:0; background: linear-gradient(115deg, rgba(255,255,255,.28), transparent 34%, rgba(29,28,18,.18)); }
.hero-visual::after { content:""; position:absolute; left:8%; right:8%; bottom:12%; height:3%; border-radius:50%; background:rgba(31,25,18,.32); filter:blur(12px); z-index:-1; }
.visual-kicker { position:absolute; top:8%; left:50%; transform:translateX(-50%); color:rgba(255,255,255,.8); font-size:.65rem; letter-spacing:.22em; white-space:nowrap; }
.sun-glow { position:absolute; width:330px; height:330px; border-radius:50%; background:rgba(255,225,174,.34); top:14%; left:-10%; filter:blur(2px); }
.product-bottle { position:absolute; width:37%; height:53%; left:19%; bottom:12%; border-radius:18px 18px 30px 30px; background:linear-gradient(105deg,#1c3e2c,#102b1d 65%,#07170f); box-shadow:18px 26px 42px rgba(32,21,13,.35); color:#eee5d5; display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center; }
.product-bottle::before { content:""; position:absolute; width:56%; height:15%; top:-13%; border-radius:6px 6px 3px 3px; background:linear-gradient(90deg,#191914,#575143,#171814); }
.product-bottle::after { content:""; position:absolute; left:10%; top:4%; bottom:8%; width:5%; border-radius:50%; background:rgba(255,255,255,.11); filter:blur(3px); }
.bottle-mark { font-family:var(--font-heading); font-size:clamp(1.5rem,4vw,2.7rem); letter-spacing:.07em; }
.product-bottle small { font-size:.55rem; letter-spacing:.18em; line-height:1.6; margin:1rem 0 2.5rem; }
.product-bottle b { font-size:.62rem; font-weight:400; letter-spacing:.12em; }
.diffuser-vessel { position:absolute; width:30%; height:26%; right:13%; bottom:13%; border-radius:10px 10px 28px 28px; background:linear-gradient(110deg,rgba(255,246,226,.8),rgba(198,158,111,.8)); border:1px solid rgba(255,255,255,.55); box-shadow:12px 20px 30px rgba(34,24,16,.23); display:flex; align-items:center; justify-content:center; }
.diffuser-vessel span { font-size:.58rem; letter-spacing:.22em; color:#4c3b2c; }
.reed-set { position:absolute; width:30%; height:48%; right:13%; bottom:35%; }
.reed-set i { display:block; position:absolute; width:2px; height:100%; bottom:0; left:50%; transform-origin:bottom; background:#31251c; }
.reed-set i:nth-child(1){transform:rotate(-15deg)} .reed-set i:nth-child(2){transform:rotate(-7deg)} .reed-set i:nth-child(3){transform:rotate(1deg)} .reed-set i:nth-child(4){transform:rotate(9deg)} .reed-set i:nth-child(5){transform:rotate(17deg)}
.visual-caption { position:absolute; right:6%; bottom:4%; color:rgba(255,255,255,.75); font-family:var(--font-heading); font-size:.85rem; line-height:1.25; text-align:right; }

.already-have { background: var(--white); }
.steps-grid { position:relative; }
.step-card { padding:2rem; }
.step-num { width:52px; height:52px; background:var(--accent); color:white; border:0; }
.step-card h3 { font-size:1.6rem; }
.closing-statement { font-family:var(--font-heading); font-size:clamp(1.5rem,3vw,2.4rem); color:var(--warm-brown); }

.img-placeholder { border:0; border-radius:var(--radius-lg); background:linear-gradient(145deg,#d8c4aa,#b99b77); color:rgba(24,34,29,.62); position:relative; box-shadow:inset 0 0 0 1px rgba(255,255,255,.35); letter-spacing:.08em; text-transform:uppercase; font-size:.7rem; }
.img-placeholder::before { content:""; position:absolute; inset:12%; border:1px solid rgba(255,255,255,.35); border-radius:999px; }
.fragrance-card .img-placeholder { overflow:hidden; }
.theme-lights-out .img-placeholder { background:radial-gradient(circle at 30% 30%,#aaa7ba,#464459); color:#f5f0f7; }
.theme-golden-hour .img-placeholder { background:radial-gradient(circle at 25% 30%,#f2d18c,#a96235); color:#fff8e9; }
.theme-clear-mind .img-placeholder { background:radial-gradient(circle at 25% 30%,#c9d3bc,#62775d); color:#f1f7ed; }

.problem-section { background:var(--accent); color:#e8e3d8; }
.problem-section h2, .problem-section h3, .problem-section .strong { color:#fffdf8; }
.problem-section p { color:#c7c9c1; }
.problem-section .prob-card { background:rgba(255,255,255,.055); border-color:rgba(255,255,255,.13); }
.problem-section .prob-title { color:#b8c1b9; }
.problem-section .prob-sol { color:#fff; }
.problem-section .prob-arrow { color:#d8a064; }

.stats-grid { gap:0; border-top:1px solid var(--border); border-left:1px solid var(--border); }
.stat-card { border:0; border-right:1px solid var(--border); border-bottom:1px solid var(--border); padding:1.4rem; }
.stat-number { color:var(--accent); }
.fragrance-card { padding:1.2rem; border-top:0; box-shadow:0 20px 50px rgba(44,36,26,.08); transition:transform .25s ease, box-shadow .25s ease; }
.fragrance-card:hover { transform:translateY(-6px); box-shadow:0 28px 65px rgba(44,36,26,.13); }
.fragrance-header, .fragrance-card > p, .fragrance-notes, .fragrance-card > .btn { margin-left:.6rem; margin-right:.6rem; }
.fragrance-header { padding-top:.7rem; }
.fragrance-notes { background:#f3efe7; }

.ht-step { border:0; border-top:1px solid var(--warm-brown); border-radius:0; padding:1.5rem 0; }
.testimonial-card { border-radius:22px; box-shadow:none; border:1px solid var(--border); }
.package-card { border-radius:26px; padding:1.8rem; box-shadow:0 12px 35px rgba(45,36,27,.06); }
.package-image-placeholder {
    width: 100%;
    aspect-ratio: 4 / 3;
    margin: .75rem 0 1.4rem;
    overflow: hidden;
    background: linear-gradient(145deg, #e5d6c3, #b9906b);
}
.package-card-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    margin: .75rem 0 1.4rem;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: none;
}
.package-image-placeholder > span { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: .25rem; line-height: 1.35; text-align: center; }
.package-image-placeholder strong { color: var(--accent); font-size: .68rem; letter-spacing: .13em; }
.package-image-placeholder small { margin-top: .3rem; color: rgba(24,34,29,.55); font-size: .56rem; letter-spacing: .06em; }
.old-price { display: block; color: var(--text-sec); font-size: .95rem; text-decoration: line-through; text-decoration-thickness: 1.5px; }
.pkg-price-area .price { display: inline-block; margin-right: .45rem; line-height: 1.05; }
.pkg-price-area .savings { display: inline-flex; vertical-align: .35rem; padding: .32rem .5rem; border-radius: 999px; background: rgba(160,111,63,.12); font-size: .67rem; letter-spacing: .02em; }
.package-perks { display: flex; justify-content: center; flex-wrap: wrap; gap: .35rem .8rem; margin-top: .9rem; padding-top: .85rem; border-top: 1px solid var(--border); color: var(--text-sec); font-size: .72rem; font-weight: 500; }
.package-card.popular { background:var(--accent); color:#ece9df; transform:translateY(-10px); }
.package-card.popular h3, .package-card.popular .pkg-value, .package-card.popular .price { color:white; }
.package-card.popular .pkg-desc { color:#bfc9c1; }
.package-card.popular .pkg-callout { background:rgba(255,255,255,.09); }
.package-card.popular .old-price { color:#bfc9c1; }
.package-card.popular .savings { color:#f5dfbd; background:rgba(255,255,255,.1); }
.package-card.popular .bonus { color:#f3d6a8; }
.package-card.popular .package-perks { color:#d5ddd6; border-color:rgba(255,255,255,.16); }
.package-card.popular .btn-primary { background:#f2e9da; color:var(--accent); }
.package-card:hover { transform:translateY(-5px); }
.package-card.popular:hover { transform:translateY(-14px); }
.price { font-size:2.5rem; }
.reassurance-strip-large { border-radius:999px; flex-direction:row; justify-content:center; gap:2rem; }
.faq-question { font-family:var(--font-body); font-size:1rem; padding:1.35rem .25rem; }
.order-section { background:var(--white); }
input, select, textarea { min-height:52px; border-radius:10px; }
.site-footer { background:var(--accent); color:#bfc7c0; }
.site-footer .footer-logo { color:white; }
.site-footer .footer-links a { color:#d6d9d4; }
.sticky-cta { background:rgba(243,239,231,.94); }

@media (max-width: 767px) {
    .announcement-bar { font-size:.61rem; letter-spacing:.08em; }
    .header-perk { display:none; }
    .hero { padding-top:2.8rem; }
    .hero-content { text-align:center; }
    .hero-container { gap: 1.25rem; }
    .hero-contrast { margin: 1.25rem auto 0; text-align: center; }
    .contrast-row { padding: .2rem 0; font-size: .9rem; }
    .hero-image { margin-top: .15rem; }
    .hero-actions { margin-top: .25rem; }
    .lifestyle-layout { padding: 4rem 0; }
    .lifestyle-grid { margin-top: 1.75rem; gap: 2.75rem; }
    .lifestyle-item { gap: 1.1rem; }
    .lifestyle-copy h3 { margin-bottom: .35rem; }
    .lifestyle-copy p { margin-bottom: 0; }
    .hero-content > p { margin-left:auto; margin-right:auto; }
    .hero-benefits { justify-content:center; }
    .hero-visual { min-height:510px; border-radius:120px 120px 24px 24px; }
    .visual-caption { display:none; }
    .product-bottle { width:42%; left:13%; }
    .diffuser-vessel,.reed-set { right:9%; width:33%; }
    .fragrance-header { display:block; }
    .mood-tags { display:block; margin-top:.4rem; }
    .reassurance-strip-large { border-radius:18px; flex-direction:column; gap:.25rem; }
    .package-card.popular { transform:none; }
    .package-card.popular:hover { transform:translateY(-5px); }
    .offer-section .subheadline { margin-bottom: 0; }
    .package-overview {
        display: flex;
        gap: .65rem;
        width: calc(100% + 1.5rem);
        margin-top: 1.75rem;
        padding: .25rem 1.5rem .7rem 0;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }
    .package-overview::-webkit-scrollbar { display: none; }
    .overview-option { flex: 0 0 43%; min-width: 136px; padding: .85rem; scroll-snap-align: start; }
    .overview-option strong { font-size: 1.35rem; }
    .overview-hint { display: block; margin: .25rem 0 0; color: var(--text-sec); font-size: .68rem; text-align: left; }
    .overview-hint span { color: var(--warm-brown); }
    .package-grid { margin-top: 1.75rem; gap: 2rem; }
    .package-card { padding: 1.25rem; border-radius: 22px; }
    .pkg-header { padding: .25rem .15rem 0; }
    .pkg-desc { margin-bottom: .4rem; }
    .package-image-placeholder, .package-card-image { margin: .65rem 0 1.2rem; }
    .pkg-includes { margin-bottom: 1.15rem; }
    .pkg-price-area { margin-bottom: 1.15rem; }
    .price { font-size: 2.35rem; }
    .order-summary { padding: 1.15rem; }
    .summary-row { gap: 1rem; font-size: .82rem; }
    .summary-package-options { grid-template-columns: 1fr 1fr; }
    .summary-upgrade { align-items: stretch; flex-direction: column; }
    .summary-upgrade button { width: 100%; min-height: 38px; }
    .sticky-cta { padding-left: .85rem; padding-right: .85rem; }
    .sticky-content { gap: .65rem; }
    .sticky-price { flex: 0 0 auto; font-size: .84rem; white-space: nowrap; }
    .sticky-content .btn { min-height: 42px; padding: .72rem .9rem; font-size: .66rem; letter-spacing: .06em; white-space: nowrap; }
    .already-have { padding: 3.5rem 0; }
    .already-have h2 { margin-bottom: .85rem; }
    .already-have .lead-text { margin-bottom: 0; }
    .already-have .steps-grid { gap: .9rem; margin: 1.75rem 0; }
    .already-have .step-card { padding: .35rem .75rem; }
    .already-have .step-num { width: 38px; height: 38px; margin-bottom: .55rem; }
    .already-have .step-card h3 { margin-bottom: .25rem; font-size: 1.35rem; }
    .already-have .step-card p { margin: 0 auto; font-size: .86rem; }
    .already-have .closing-statement { margin-top: 1.5rem; margin-bottom: 0; }
    .already-have .mt-4 { margin-top: 1.25rem; }
    .already-have .center-cta { margin-top: 1.35rem; }
}

@media (min-width: 768px) {
    .hero-container {
        grid-template-areas: "copy image" "actions image";
        grid-template-rows: auto 1fr;
        column-gap: clamp(3rem, 7vw, 7rem);
        row-gap: 1.5rem;
    }
    .hero-content { grid-area: copy; align-self: end; }
    .hero-image { grid-area: image; }
    .hero-actions { grid-area: actions; align-self: start; text-align: left; margin-top: 0; }
    .hero-actions .microcopy { margin-left: 0; }
}

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