:root {
    /* Colors */
    --bg-color: #FCFBF4;
    /* Luxury Cream/Ivory */
    --text-color: #1A1A1A;
    /* Dark text for contrast */
    --accent-color: #D6BD96;
    /* Keep Gold accent */
    --accent-bg: #8E7676;
    --button-bg: #000000;
    /* Black buttons for contrast on light bg */
    --button-text: #FFFFFF;
    --accordion-bg: #FFFFFF;
    --accordion-cherry: #720e1e;
    /* ~Cherry Color */
    --gray-light: #F2EFE9;
    /* Warm light gray/beige */

    /* Fonts */
    --font-heading: 'Cormorant Infant', serif;
    --font-body: 'Poppins', sans-serif;
}

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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1,
h2,
h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.1;
}

.section__title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;

    /* Premium "Cartier" Gold Gradient */
    background: linear-gradient(to right, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: var(--accent-color);
    animation: shine 3s linear infinite;
    text-shadow: 0px 0px 1px rgba(191, 149, 63, 0.3);
}

/* Header */
.header {
    padding: 20px 0;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.header__text {
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Hero */
.hero {
    position: relative;
    text-align: center;
    padding: 60px 0 100px;
    overflow: hidden;
}

.hero__title {
    font-size: 4rem;
    margin: 20px 0;

    /* Premium "Cartier" Gold Gradient */
    background: linear-gradient(to right, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: var(--accent-color);
    animation: shine 4s linear infinite;
    filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.1));
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

.hero__subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.8;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: var(--accent-color);
    color: #000;
    font-weight: 700;
    font-size: 1.2rem;
    position: absolute;
    top: 40px;
    right: 10%;
    transform: rotate(15deg);
    z-index: 10;
}

.hero__image-wrapper {
    width: 100%;
    max-width: 450px;
    height: 500px;
    margin: 0 auto 40px;
    background-color: #EEE;
    border-radius: 24px;
    /* Fully rounded / Pill shape */
    /* Arch shape removed, now fully rounded */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

/* Buttons */
.button {
    display: inline-block;
    background-color: var(--button-bg);
    color: var(--button-text);
    padding: 16px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Sections */
.section {
    padding: 80px 0;
}

.section--dark-alt {
    background-color: var(--gray-light);
    /* Warmer contrast section */
}

/* Grid List (For Whom) */
.grid-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.grid-card {
    background: #FFF;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 30px;
    border-radius: 10px;
    transition: 0.3s;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.grid-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.grid-card h3 {
    color: #000;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.grid-card p {
    font-size: 0.95rem;
    opacity: 0.8;
}

/* Check List (Why Needed) - Round Items */
.check-list {
    list-style: none;
    max-width: 800px;
    margin: 0 auto 40px;
}

.check-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.check-list li::before {
    content: '';
    width: 10px;
    height: 10px;
    background-color: var(--accent-color);
    border-radius: 50%;
    position: absolute;
    left: 8px;
    top: 10px;
}

/* About Me Split */
.about__content {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.about__text {
    flex: 1;
    min-width: 300px;
}

.about__image {
    flex: 1;
    min-width: 300px;
    height: 400px;
    background: #EEE;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.subtitle {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: #555;
}

.stats-list {
    list-style: none;
    margin-bottom: 30px;
}

.stats-list li {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.stats-list strong {
    color: #000;
    /* Strong text black */
    font-size: 1.2rem;
}

/* Gift Section */
.gift-card {
    background: #FFF;
    border: 2px solid var(--accent-color);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    box-shadow: 0 5px 30px rgba(214, 189, 150, 0.2);
}

.gift-card h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #000;
}

.gift-card p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

/* CTA Wrapper */
.cta-wrapper {
    text-align: center;
    margin-top: 40px;
}

.cta-text {
    margin-bottom: 20px;
    font-size: 1.1rem;
    font-weight: 500;
}

/* Accordion (Program) - Default Colors */
.program .accordion__item {
    background-color: var(--accordion-bg);
}

.program .accordion__header {
    color: var(--text-color);
}

.program .accordion__content {
    color: var(--text-color);
}

/* General Accordion Styles */
.accordion__item {
    margin-bottom: 10px;
    background-color: var(--accordion-bg);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.accordion__header {
    width: 100%;
    padding: 20px;
    background: none;
    border: none;
    color: var(--text-color);
    text-align: left;
    font-family: var(--font-body);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion__content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 20px;
}

.accordion__content p {
    padding-bottom: 20px;
    opacity: 0.9;
}

/* Footer */
.footer {
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 0.9rem;
    opacity: 0.6;
}

.footer__legal {
    margin-top: 10px;
    font-size: 0.8rem;
}

/* Instagram Reviews */
.reviews-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 20px 5px;
    scroll-snap-type: x mandatory;
}

.review-card {
    flex: 0 0 300px;
    background: #FFF;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    scroll-snap-align: start;
    border: 1px solid #EEE;
    font-size: 0.9rem;
    position: relative;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    /* System font for native feel */
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #EEE;
    margin-right: 12px;
    background-image: linear-gradient(120deg, #a6c0fe 0%, #f68084 100%);
    /* Placeholder avatar gradient */
}

.review-user {
    font-weight: 600;
    color: #262626;
}

.review-bubble {
    background-color: #F1F1F1;
    border-radius: 18px;
    padding: 12px 16px;
    color: #262626;
    line-height: 1.4;
}

/* Outcomes Section */
.outcomes__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.outcomes__item {
    background: #FFF;
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid var(--accent-color);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    font-size: 1.05rem;
}

.outcomes__serious {
    background: linear-gradient(135deg, #FFF 0%, #FAFAFA 100%);
    color: var(--text-color);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 40px;
    border: 1px solid var(--accent-color);
    box-shadow: 0 10px 40px rgba(214, 189, 150, 0.15);
    /* Soft gold glow */
}

.outcomes__serious h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;

    /* Gold Gradient for Title */
    background: linear-gradient(to right, #bf953f, #aa771c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.outcomes__final-note {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.15rem;
    font-style: italic;
    color: #555;
}

@media (max-width: 768px) {
    .hero__title {
        font-size: 2.8rem;
    }

    .hero__badge {
        width: 80px;
        height: 80px;
        font-size: 1rem;
        right: 5%;
    }
}