/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --cream: #F5F1E8;
    --beige: #E8DCC8;
    --gold: #B8860B;
    --rose-gold: #B87667;
    --dark: #2C2420;
    --white: #FFFFFF;
    --gray: #6B6B6B;
    --light-gray: #F9F7F4;

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

    --transition: all 0.3s ease;
}

body {
    font-family: var(--font-body);
    color: var(--dark);
    background-color: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 60px; /* Space for sticky bar */
}

/* Sticky FOMO Bar */
.fomo-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--dark) 0%, rgba(44, 36, 32, 0.98) 100%);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.fomo-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.875rem 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.fomo-text {
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.fomo-icon {
    font-size: 1rem;
    line-height: 1;
    display: flex;
    align-items: center;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.fomo-message {
    font-size: 0.875rem;
    color: var(--white);
    font-weight: 500;
    line-height: 1.4;
    display: flex;
    align-items: baseline;
    gap: 0.375rem;
}

.fomo-message strong {
    font-size: 1.125rem;
    color: var(--gold);
    font-weight: 700;
    font-family: var(--font-heading);
    line-height: 1;
    animation: countPulse 3s infinite;
}

@keyframes countPulse {
    0%, 100% {
        color: var(--gold);
    }
    50% {
        color: var(--rose-gold);
    }
}

.fomo-cta {
    padding: 0.5rem 1.25rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--dark);
    background: linear-gradient(135deg, var(--gold) 0%, var(--rose-gold) 100%);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(184, 134, 11, 0.25);
    line-height: 1;
}

.fomo-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 12px rgba(184, 134, 11, 0.4);
}

.fomo-cta:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    body {
        padding-top: 110px;
    }

    .fomo-content {
        flex-direction: column;
        padding: 0.875rem 20px;
        gap: 0.875rem;
    }

    .fomo-text {
        justify-content: center;
        gap: 0.5rem;
    }

    .fomo-message {
        font-size: 0.875rem;
        text-align: center;
    }

    .fomo-cta {
        width: 100%;
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .fomo-message {
        font-size: 0.8125rem;
        flex-direction: column;
        align-items: center;
        gap: 0.25rem;
    }

    .fomo-message strong {
        font-size: 1.25rem;
    }
}

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

/* Typography */
.headline {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.subheadline {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 1.5rem;
    text-align: center;
}

.intro-text {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: var(--gray);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 0;
    background: linear-gradient(135deg, var(--cream) 0%, var(--beige) 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text {
    animation: fadeInUp 1s ease-out;
}

.hero-image {
    position: relative;
    animation: fadeInRight 1s ease-out;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* Email Form */
.email-form {
    margin-top: 3rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
}

.email-input,
.phone-input {
    padding: 18px 24px;
    font-size: 1rem;
    border: 2px solid rgba(184, 134, 11, 0.2);
    border-radius: 12px;
    background: var(--white);
    color: var(--dark);
    font-family: var(--font-body);
    transition: var(--transition);
}

.email-input:focus,
.phone-input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(184, 134, 11, 0.1);
}

.email-input::placeholder,
.phone-input::placeholder {
    color: var(--gray);
}

.cta-button {
    width: 100%;
    padding: 20px 40px;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--white);
    background: linear-gradient(135deg, var(--gold) 0%, var(--rose-gold) 100%);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(184, 134, 11, 0.3);
}

.cta-button:active {
    transform: translateY(0);
}

.privacy-note {
    font-size: 0.875rem;
    color: var(--gray);
    text-align: center;
    margin-top: 1rem;
}

.social-proof-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding: 1rem 1.5rem;
    background: rgba(184, 134, 11, 0.1);
    border-left: 3px solid var(--gold);
    border-radius: 4px;
    font-size: 0.95rem;
    color: var(--gray);
}

.social-proof-badge svg {
    flex-shrink: 0;
}

.social-proof-badge strong {
    color: var(--gold);
    font-weight: 600;
}

.form-responses {
    margin-top: 1rem;
}

.response {
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
}

#mce-error-response {
    background-color: #fee;
    color: #c33;
    border: 1px solid #fcc;
}

#mce-success-response {
    background-color: #efe;
    color: #3c3;
    border: 1px solid #cfc;
}

/* Problem Solution Section */
.problem-solution {
    padding: 120px 0;
    background: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 4rem;
}

.benefit-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--light-gray);
    border-radius: 20px;
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 50%;
}

.benefit-card h3 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 1rem;
}

.benefit-card p {
    color: var(--gray);
    line-height: 1.8;
}

/* Exclusivity Section */
.exclusivity {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--beige) 0%, var(--cream) 100%);
}

.exclusivity-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.exclusivity-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.exclusivity-text .section-title {
    text-align: left;
}

.exclusivity-text .intro-text {
    text-align: left;
    margin: 0 0 2rem;
}

.vip-benefits h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 12px;
    transition: var(--transition);
}

.benefits-list li:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.benefit-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    min-width: 60px;
}

.benefit-text {
    font-size: 1.125rem;
    color: var(--dark);
}

.availability-counter {
    background: rgba(184, 134, 11, 0.1);
    border: 2px solid var(--gold);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.counter-text {
    text-align: center;
    margin-bottom: 1rem;
}

.spots-remaining {
    font-size: 1.125rem;
    color: var(--dark);
}

.spots-remaining strong {
    font-size: 1.5rem;
    color: var(--gold);
    font-weight: 700;
}

.progress-bar {
    height: 12px;
    background: rgba(184, 134, 11, 0.2);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 0.75rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold) 0%, var(--rose-gold) 100%);
    border-radius: 20px;
    transition: width 0.8s ease;
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

.counter-warning {
    text-align: center;
    font-size: 0.875rem;
    color: var(--rose-gold);
    font-weight: 500;
    margin: 0;
}

/* Social Proof Section */
.social-proof {
    padding: 120px 0;
    background: var(--white);
}

.founder-story {
    max-width: 900px;
    margin: 0 auto;
}

.story-content {
    text-align: center;
    margin-bottom: 3rem;
}

.story-text {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    font-style: italic;
    color: var(--dark);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.founder-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--gold);
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin: 3rem 0;
}

.stat-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--light-gray);
    border-radius: 20px;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.6;
}

.disclaimer {
    text-align: center;
    font-size: 0.875rem;
    color: var(--gray);
    font-style: italic;
}

/* Blog Section */
.blog-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--cream) 0%, var(--beige) 100%);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 4rem;
}

.blog-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.blog-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.1) 0%, rgba(184, 118, 103, 0.1) 100%);
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

.blog-category {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
}

.blog-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-excerpt {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.blog-benefit {
    background: var(--light-gray);
    border-left: 3px solid var(--gold);
    border-radius: 8px;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
}

.benefit-badge {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gold);
    background: rgba(184, 134, 11, 0.1);
    padding: 0.375rem 0.875rem;
    border-radius: 20px;
    margin-bottom: 0.75rem;
}

.benefit-description {
    font-size: 0.875rem;
    color: var(--dark);
    line-height: 1.6;
    margin: 0;
}

.blog-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    background: linear-gradient(135deg, var(--gold) 0%, var(--rose-gold) 100%);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
}

.blog-cta:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(184, 134, 11, 0.3);
}

.blog-cta svg {
    transition: var(--transition);
}

.blog-cta:hover svg {
    transform: translateX(3px);
}

/* Final CTA Section */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--gold) 0%, var(--rose-gold) 100%);
    text-align: center;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.countdown-timer {
    margin: 2rem auto;
    max-width: 600px;
}

.countdown-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    text-align: center;
}

.countdown-display {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.countdown-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 1rem 1.25rem;
    border-radius: 12px;
    min-width: 80px;
}

.countdown-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.countdown-text {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

.countdown-separator {
    font-size: 2rem;
    color: var(--white);
    font-weight: 700;
    opacity: 0.6;
}

@media (max-width: 768px) {
    .countdown-unit {
        min-width: 60px;
        padding: 0.75rem 1rem;
    }

    .countdown-number {
        font-size: 1.75rem;
    }

    .countdown-text {
        font-size: 0.65rem;
    }

    .countdown-separator {
        font-size: 1.5rem;
    }
}

.cta-button-secondary {
    padding: 20px 50px;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--dark);
    background: var(--white);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
    padding: 60px 0 40px;
    background: var(--dark);
    color: var(--white);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--gold);
}

.brand-tagline {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--gold);
    transform: translateY(-3px);
}

.footer-legal {
    text-align: center;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.legal-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--transition);
}

.legal-link:hover {
    color: var(--gold);
}

.separator {
    margin: 0 1rem;
}

/* Lifestyle Gallery Section */
.lifestyle-gallery {
    padding: 0;
    background: var(--dark);
    overflow: hidden;
}

.gallery-content {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 500px;
    max-height: 700px;
}

.gallery-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(44, 36, 32, 0.3) 0%,
        rgba(44, 36, 32, 0.7) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

.gallery-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.gallery-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .gallery-content {
        height: 50vh;
        min-height: 400px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-content,
    .exclusivity-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-image {
        order: -1;
    }

    .exclusivity-text .section-title,
    .exclusivity-text .intro-text {
        text-align: center;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .form-group {
        flex-direction: column;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .stats {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-card {
        padding: 2rem;
    }

    .blog-title {
        font-size: 1.25rem;
    }

    .hero {
        padding: 40px 0;
    }

    .problem-solution,
    .exclusivity,
    .social-proof,
    .blog-section {
        padding: 80px 0;
    }
}
