:root {
    --color-bg-primary: #0a0c10;
    --color-bg-secondary: #12151b;
    --color-text-main: #f0f0f2;
    --color-text-muted: #9aa0a6;
    --color-accent-gold: #d4af37;
    --color-accent-gold-hover: #e0be50;
    --color-surface: rgba(255, 255, 255, 0.03);
    --color-border: rgba(255, 255, 255, 0.1);
    
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Base & Mobile First Styles --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 300;
    line-height: 1.1;
    color: var(--color-text-main);
}

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

h3 {
    font-size: 1.5rem;
    color: var(--color-accent-gold);
    margin-bottom: 1rem;
}

p {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

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

.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }

/* Layout Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background-color: var(--color-accent-gold);
    color: #000;
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 1.1rem 1.5rem;
    text-decoration: none;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-size: 0.85rem;
    width: 100%;
}

.btn-primary:hover {
    background-color: var(--color-accent-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.15);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: var(--color-text-main);
    font-family: var(--font-body);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 1rem 1.5rem;
    text-decoration: none;
    border: 1px solid var(--color-border);
    border-radius: 2px;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-size: 0.85rem;
    width: 100%;
}

.btn-secondary:hover {
    border-color: var(--color-accent-gold);
    color: var(--color-accent-gold);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    transition: background-color 0.4s ease;
    background-color: rgba(10, 12, 16, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
}

.logo {
    display: flex;
    align-items: center;
}

.nav-logo-img {
    height: 35px; /* Proportioned height for navbar */
    width: auto;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.2)); /* Subtle glow for contrast */
}

.cta-nav {
    color: #000;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--color-accent-gold);
    padding: 0.6rem 1rem;
    border-radius: 2px;
    transition: var(--transition-smooth);
}

.cta-nav:hover {
    background: var(--color-accent-gold-hover);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 8rem 0 4rem;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10, 12, 16, 0.95) 0%, rgba(10, 12, 16, 0.8) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    text-align: center;
}

.hero-title {
    font-size: clamp(2.5rem, 10vw, 5rem);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin: 0 auto 2.5rem;
    max-width: 90%;
}

/* Urgency Bar */
.urgency-bar {
    background-color: var(--color-accent-gold);
    color: #000;
    padding: 1.2rem 0;
    text-align: center;
    position: relative;
    z-index: 10;
}

.urgency-bar p {
    margin-bottom: 0;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #000;
}

.urgency-bar i {
    margin-right: 0.5rem;
}

.hero-contact-info {
    font-size: 0.85rem;
    color: var(--color-accent-gold);
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Trust & Psychology Elements */
.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--color-accent-gold);
    margin-bottom: 1.5rem;
}

.pratfall-notice {
    background: rgba(255, 255, 255, 0.02);
    border-left: 3px solid var(--color-border);
    padding: 1.5rem;
    font-size: 0.95rem;
    font-style: italic;
    margin: 2rem 0;
}

.milestone {
    border-color: var(--color-accent-gold) !important;
    background: rgba(212, 175, 55, 0.05) !important;
}

.milestone small {
    display: block;
    color: var(--color-accent-gold);
    font-size: 0.75rem;
    margin-top: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-content {
    display: flex;
    flex-direction: column;
}

/* Micro Commitment */
.micro-commitment {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.checkbox-container {
    display: block;
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    font-size: 1rem;
    user-select: none;
    color: var(--color-text-main);
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 22px;
    width: 22px;
    background-color: transparent;
    border: 2px solid var(--color-accent-gold);
    border-radius: 3px;
}

.checkbox-container:hover input ~ .checkmark {
    background-color: rgba(212, 175, 55, 0.1);
}

.checkbox-container input:checked ~ .checkmark {
    background-color: var(--color-accent-gold);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid #000;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}

.btn-primary.disabled {
    opacity: 0.5;
    pointer-events: none;
    filter: grayscale(1);
}

.hero-avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    border: 2px solid var(--color-accent-gold);
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.hero-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(30%) contrast(1.1);
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0 1rem;
}

/* Philosophy Section */
.philosophy {
    padding: 5rem 0;
    background-color: var(--color-bg-primary);
}

.philosophy-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.philosophy-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.stat-box {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    padding: 2rem 1.5rem;
    text-align: center;
}

.stat-box h3 {
    font-size: 3rem;
    margin-bottom: 0.3rem;
    color: var(--color-accent-gold);
}

.stat-box p {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    margin-bottom: 0;
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background-color: var(--color-bg-secondary);
}

.mini-socials {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.mini-socials a {
    color: var(--color-text-main);
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-smooth);
}

.mini-socials a:hover {
    color: var(--color-accent-gold);
}

/* Syllabus Summary */
.syllabus-summary {
    padding: 6rem 0;
    background-color: var(--color-bg-primary);
}

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

.syllabus-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.syllabus-card span {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-accent-gold);
    opacity: 0.5;
}

.syllabus-card p {
    margin-bottom: 0;
    font-size: 1rem;
    color: var(--color-text-main);
}

/* Pricing Anchor */
.pricing-anchor {
    padding: 6rem 0;
    background-color: var(--color-bg-secondary);
}

.pricing-box {
    max-width: 900px;
    margin: 0 auto;
    background: var(--color-bg-primary);
    border: 1px solid var(--color-accent-gold);
    padding: 3rem 1.5rem;
    text-align: center;
}

.pricing-comparison {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 3rem 0;
}

.compare-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.price-old {
    font-size: 1.8rem;
    text-decoration: line-through;
    color: #666;
}

.price-new {
    font-size: 2.5rem;
    color: var(--color-accent-gold);
    font-weight: 700;
}

.compare-divider {
    font-size: 1.5rem;
    color: var(--color-border);
}

.compare-item.highlight {
    background: rgba(212, 175, 55, 0.05);
    padding: 2rem;
    border: 1px dashed var(--color-accent-gold);
}

.pricing-note {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-style: italic;
}

/* Guarantee Section */
.guarantee-section {
    padding: 6rem 0;
    background-color: var(--color-bg-primary);
}

.guarantee-box {
    max-width: 700px;
    margin: 0 auto;
    border: 1px solid var(--color-border);
    padding: 3rem 2rem;
}

.guarantee-box i {
    font-size: 3rem;
    color: var(--color-accent-gold);
    margin-bottom: 1.5rem;
}

/* Community Section */
.community-section {
    padding: 8rem 0;
    position: relative;
    background-size: cover;
    background-position: center;
}

.community-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 12, 16, 0.85);
}

.community-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background-color: var(--color-bg-secondary);
}

.about-grid {
    display: flex;
    flex-direction: column-reverse;
    gap: 4rem;
}

.about-image-wrapper {
    position: relative;
    width: 90%;
    margin: 0 auto;
}

.about-image-wrapper::after {
    content: '';
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--color-accent-gold);
    z-index: 0;
}

.about-img {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 1;
    filter: grayscale(80%) contrast(1.2);
}

.about-quote {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-style: italic;
    color: var(--color-text-main);
    border-left: 2px solid var(--color-accent-gold);
    padding-left: 1.5rem;
    margin-top: 2rem;
}

/* Methodology Section */
.methodology-section {
    padding: 5rem 0;
    background-color: var(--color-bg-primary);
}

.methodology-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}

.method-card {
    padding: 3rem 1.5rem;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    text-align: center;
    transition: var(--transition-smooth);
}

.method-card:hover {
    border-color: var(--color-accent-gold);
}

.method-card i {
    font-size: 2.5rem;
    color: var(--color-accent-gold);
    margin-bottom: 1.5rem;
}

.methodology-conclusion p {
    font-size: 1.4rem;
    font-family: var(--font-heading);
    font-style: italic;
}

/* Bonus Section */
.bonus-section {
    padding: 6rem 0;
    background-color: var(--color-bg-secondary);
}

.bonus-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
}

.bonus-image-wrapper {
    width: 70%;
    max-width: 350px;
}

.book-img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.5));
    transition: transform 0.5s ease;
}

.book-img:hover {
    transform: rotate(3deg) scale(1.05);
}

.bonus-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--color-accent-gold);
    color: var(--color-accent-gold);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.bonus-cta-text {
    color: var(--color-text-main);
    font-weight: 500;
    margin-top: 1rem;
    border-top: 1px solid var(--color-border);
    padding-top: 1.5rem;
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    position: relative;
    background-size: cover;
    background-position: center;
}

.testimonials::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 12, 16, 0.9);
}

.testimonials .container {
    position: relative;
    z-index: 2;
}

.carousel-container {
    position: relative;
    margin: 3rem auto 0;
    width: 100%;
}

.carousel-track-wrapper {
    overflow: hidden;
    width: 100%;
}

.carousel-track {
    display: flex;
    list-style: none;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    padding-bottom: 2rem; /* Space for dots */
}

.carousel-slide {
    min-width: 88%; /* Peek effect on mobile */
    padding: 0 10px;
    transition: opacity 0.4s ease;
}

.carousel-slide:not(.active-slide) {
    opacity: 0.5;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 1rem;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--color-border);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.dot.active {
    background-color: var(--color-accent-gold);
    transform: scale(1.3);
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--color-border);
    padding: 3rem 1.5rem;
    backdrop-filter: blur(10px);
    height: 100%;
}

.testimonial-text {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-style: italic;
    color: var(--color-text-main);
    margin-bottom: 1.5rem;
}

.testimonial-author {
    color: var(--color-accent-gold);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.carousel-btn {
    display: none;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background-color: var(--color-bg-secondary);
}

.faq-grid {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border: 1px solid var(--color-border);
    background-color: var(--color-surface);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 500;
}

.faq-question i {
    font-size: 0.8rem;
    color: var(--color-accent-gold);
    transition: transform 0.4s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    padding: 0 1.5rem;
}

.faq-answer p {
    padding-bottom: 1.5rem;
    margin-bottom: 0;
}

.faq-item.active {
    border-color: var(--color-accent-gold);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Final CTA */
.final-cta {
    padding: 6rem 0;
    background-color: var(--color-bg-primary);
}

/* Footer (Mirrored from Hero structure) */
.footer-video-section {
    position: relative;
    padding: 6rem 0 4rem;
    overflow: hidden;
    background: transparent; /* No background color to avoid blocking video */
}

.footer-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 0;
    filter: grayscale(100%) brightness(0.7);
    opacity: 0.25;
}

.footer-video-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10, 12, 16, 0.8) 0%, rgba(10, 12, 16, 0.6) 100%);
    z-index: 1;
}

.footer-container {
    position: relative;
    z-index: 2;
}

.footer-brand-img {
    max-width: 200px;
    height: auto;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.15));
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.social-links a {
    color: var(--color-text-muted);
    font-size: 1.5rem;
    transition: var(--transition-smooth);
}

.social-links a:hover {
    color: var(--color-accent-gold);
    transform: translateY(-3px);
}

.copyright {
    font-size: 0.8rem;
    color: #666;
    letter-spacing: 1px;
}

/* Modal */
.modal {
    border: none;
    background: transparent;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    margin: 0;
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
}

.modal::backdrop {
    background: rgba(10, 12, 16, 0.98);
    backdrop-filter: blur(15px);
}

.modal-content {
    background: var(--color-bg-primary);
    width: 100%;
    height: 100%;
    padding: 5rem 1.5rem 3rem;
    overflow-y: auto;
    position: relative;
    display: flex;
    flex-direction: column;
}

.close-btn {
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    width: 45px;
    height: 45px;
    background: var(--color-accent-gold);
    border: none;
    color: #000;
    font-size: 1.5rem;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 110;
    transition: var(--transition-smooth);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.close-btn:hover {
    transform: rotate(90deg) scale(1.1);
    background: var(--color-accent-gold-hover);
}

.modal-title {
    font-size: 2.2rem;
    color: var(--color-accent-gold);
    margin-bottom: 0.5rem;
}

.modal-subtitle {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 3rem;
    opacity: 0.7;
}

.syllabus-modules {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.module {
    border-left: 1px solid var(--color-accent-gold);
    padding-left: 2rem;
    padding-bottom: 1rem;
}

.module h3 {
    font-size: 1.6rem;
    color: var(--color-text-main);
    margin-bottom: 0.8rem;
}

/* Animations */
.reveal, .fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.revealed, .fade-up.visible, .fade-in.revealed, .zoom-in.revealed {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }

/* --- Desktop Enhancements --- */
@media (min-width: 992px) {
    .container { padding: 0 2rem; }

    .btn-primary, .btn-secondary {
        width: auto;
        padding: 1.1rem 2.5rem;
    }

    .navbar { padding: 1.5rem 5%; }
    .logo { font-size: 1.5rem; }

    .cta-nav {
        background: transparent;
        color: var(--color-text-main);
        padding: 0;
        font-size: 0.9rem;
    }

    .nav-logo-img {
        height: 45px;
    }

    .hero-content { text-align: left; max-width: 800px; }
    .hero::before {
        background: linear-gradient(to right, rgba(10, 12, 16, 0.95) 0%, rgba(10, 12, 16, 0.6) 50%, rgba(10, 12, 16, 0.2) 100%);
    }

    .hero-actions { flex-direction: row; padding: 0; }
    .hero-subtitle { margin: 0 0 2.5rem; }

    .philosophy-grid { grid-template-columns: 1fr 1fr; gap: 5rem; }
    .about-grid { display: grid; grid-template-columns: 5fr 7fr; gap: 6rem; flex-direction: row; }
    .about-image-wrapper { width: 100%; }

    .methodology-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; }

    .carousel-container { display: flex; align-items: center; max-width: 1000px; }
    .carousel-btn {
        display: block;
        background: transparent;
        border: none;
        color: var(--color-text-muted);
        font-size: 1.8rem;
        cursor: pointer;
        padding: 1rem;
        transition: var(--transition-smooth);
    }
    .carousel-btn:hover { color: var(--color-accent-gold); }
    .carousel-track { padding-bottom: 0; }
    .carousel-slide { min-width: 100%; opacity: 1 !important; }
    .carousel-dots { display: none; }
    .testimonial-card { padding: 4rem 5rem; }

    .bonus-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
        align-items: center;
    }

    .bonus-image-wrapper {
        width: 100%;
        max-width: 450px;
    }

    .pricing-comparison {
        flex-direction: row;
        align-items: center;
        justify-content: space-around;
    }

    .hero-avatar { margin: 0 0 2rem 0; width: 120px; height: 120px; }
    .urgency-bar p { font-size: 1.1rem; }
    .hero-contact-info { justify-content: flex-start; }
}

/* Refined Save the Date Section */
.save-the-date {
    padding: 8rem 0;
    background-color: var(--color-bg-main);
    position: relative;
}

.save-date-card {
    max-width: 750px;
    margin: 0 auto;
    padding: 4rem 3rem;
    background: linear-gradient(135deg, rgba(20, 24, 31, 0.8) 0%, rgba(10, 12, 16, 0.9) 100%);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 2px; /* Square/Minimalist luxury */
    position: relative;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.card-glass-effect {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.urgency-badge {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-accent-gold);
    border: 1px solid var(--color-accent-gold);
    padding: 0.5rem 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.save-date-header {
    margin-bottom: 2rem;
}

.urgency-icon {
    font-size: 2rem;
    color: var(--color-accent-gold);
    margin-bottom: 1rem;
    opacity: 0.6;
}

.save-date-card h3 {
    font-size: 2.2rem;
    font-family: var(--font-heading);
    color: var(--color-text-main);
    margin-bottom: 0;
}

.save-date-description {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    max-width: 550px;
    margin: 0 auto 3rem auto;
    font-style: italic;
}

.calendar-actions {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.btn-calendar-luxury {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-text-main);
    padding: 1rem 2rem;
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.btn-calendar-luxury:hover {
    border-color: var(--color-accent-gold);
    color: var(--color-accent-gold);
    background: rgba(212, 175, 55, 0.05);
    transform: translateY(-5px);
}

.spots-indicator {
    font-size: 0.9rem;
    color: var(--color-text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    opacity: 0.8;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-accent-gold);
    border-radius: 50%;
    position: relative;
}

.pulse-dot::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: inherit;
    border-radius: inherit;
    animation: pulse 2s infinite;
}

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

@media (max-width: 768px) {
    .calendar-actions {
        flex-direction: column;
        gap: 1rem;
    }
    .btn-calendar-luxury {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .modal-content {
        width: 85%;
        height: 85%;
        max-width: 900px;
        margin: auto;
        border: 1px solid var(--color-border);
        border-radius: 4px;
        padding: 4rem;
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    }

    .close-btn {
        position: absolute;
    }

    .faq-grid { max-width: 800px; margin-left: auto; margin-right: auto; }

    .footer-brand-img { max-width: 250px; }
}
