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

:root {
    --navy: #1a2742;
    --navy-light: #2c3e5a;
    --navy-dark: #0f1929;
    --gold: #d4af37;
    --gold-light: #e6c757;
    --gold-dark: #b8941f;
    --ivory: #faf8f5;
    --ivory-dark: #f5f2ed;
    --text-dark: #2c2c2c;
    --text-light: #6c6c6c;
    --white: #ffffff;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--ivory);
}

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

/* Typography */
h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.2;
}

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

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    line-height: 1.4;
    margin-bottom: 1rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 39, 66, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 2px;
}

.nav-logo {
    height: 40px;
    width: auto;
    display: block;
    transition: opacity 0.3s ease;
}

.nav-logo:hover {
    opacity: 0.9;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-menu a {
    color: var(--ivory);
    text-decoration: none;
    font-weight: 400;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--gold);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
}

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

.hero-logo {
    max-width: 200px;
    width: 100%;
    height: auto;
    margin: 0 auto 1.5rem;
    display: block;
    opacity: 0.95;
}

.hero-title {
    color: var(--ivory);
    margin-bottom: 1rem;
    letter-spacing: 3px;
}

.hero-subtitle {
    color: var(--gold);
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

.hero-description p {
    color: var(--ivory);
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-weight: 300;
    opacity: 0.9;
}

/* Sections */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    color: var(--navy);
    letter-spacing: 2px;
}

.section-header p {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--text-light);
}

/* Founder Section */
.founder-section {
    background: var(--white);
}

.founder-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.founder-image .placeholder-image {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.2rem;
    font-weight: 500;
}

.founder-text h2 {
    color: var(--navy);
    margin-bottom: 2rem;
    letter-spacing: 2px;
}

.founder-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

/* About Section */
.about-section {
    background: var(--ivory-dark);
}

.lead-text {
    text-align: center;
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    font-weight: 300;
    color: var(--navy);
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.standards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.standard-item {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(26, 39, 66, 0.1);
}

.standard-item h3 {
    color: var(--navy);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.standard-item h4 {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.standard-item p {
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.coming-soon {
    color: var(--gold) !important;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem !important;
}

.waitlist-btn {
    display: inline-block;
    background: var(--navy);
    color: var(--ivory);
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.waitlist-btn:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-2px);
}

/* Services Section */
.services-section {
    background: var(--navy);
    color: var(--ivory);
}

.services-section .section-header h2 {
    color: var(--gold);
}

.services-section .section-header p {
    color: var(--ivory);
}

/* Membership Section */
.membership-section {
    background: var(--white);
}

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

.membership-card {
    background: var(--ivory);
    border: 2px solid var(--ivory-dark);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.membership-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(26, 39, 66, 0.15);
}

.membership-card.featured {
    border-color: var(--gold);
    transform: scale(1.05);
}

.membership-card.featured::before {
    content: 'MOST POPULAR';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--navy);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.membership-card.premium {
    background: var(--navy);
    color: var(--ivory);
    border-color: var(--gold);
}

.membership-card.premium h3,
.membership-card.premium h4 {
    color: var(--gold);
}

.tier-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--ivory-dark);
}

.membership-card.premium .tier-header {
    border-bottom-color: rgba(250, 248, 245, 0.2);
}

.tier-header h3 {
    color: var(--navy);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

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

.price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-light);
}

.membership-card.premium .price span {
    color: var(--ivory);
}

.tier-description {
    font-weight: 500;
    color: var(--navy);
    text-align: center;
    margin-bottom: 1.5rem;
}

.membership-card.premium .tier-description {
    color: var(--ivory);
}

.tier-detail {
    margin-bottom: 2rem;
    line-height: 1.7;
}

.highlights h4 {
    color: var(--navy);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.membership-card.premium .highlights h4 {
    color: var(--gold);
}

.highlights ul {
    list-style: none;
    padding-left: 0;
}

.highlights li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.highlights li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

/* Add-ons Section */
.addons-section {
    margin-top: 4rem;
    padding: 3rem;
    background: var(--ivory-dark);
    border-radius: 20px;
}

.addons-section h3 {
    color: var(--navy);
    text-align: center;
    margin-bottom: 2rem;
    letter-spacing: 2px;
}

.addons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.addon-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: var(--white);
    border-radius: 10px;
    border-left: 4px solid var(--gold);
}

.addon-service {
    font-weight: 500;
    color: var(--navy);
}

.addon-price {
    font-weight: 600;
    color: var(--gold);
    font-size: 1.1rem;
}

/* Onboarding Section */
.onboarding-section {
    background: var(--navy);
    color: var(--ivory);
}

.onboarding-section .section-header h2 {
    color: var(--gold);
}

.onboarding-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.onboarding-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* FAQ Section */
.faq-section {
    background: var(--ivory-dark);
}

.faq-content {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(26, 39, 66, 0.08);
}

.faq-item h4 {
    color: var(--navy);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.faq-item p {
    line-height: 1.7;
    color: var(--text-dark);
}

/* Contact Section */
.contact-section {
    background: var(--navy);
    color: var(--ivory);
    text-align: center;
}

.contact-content h2 {
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.contact-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.email-link {
    display: inline-block;
    color: var(--gold);
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: 1px;
    padding: 1rem 2rem;
    border: 2px solid var(--gold);
    border-radius: 30px;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

.email-link:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-2px);
}

.contact-note {
    font-size: 0.9rem;
    opacity: 0.8;
    font-style: italic;
}

/* Footer */
.footer {
    background: var(--navy-dark);
    color: var(--ivory);
    padding: 2rem 0;
    text-align: center;
}

.footer-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--gold);
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.footer-tagline {
    font-size: 0.9rem;
    opacity: 0.8;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .founder-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .membership-grid {
        grid-template-columns: 1fr;
    }
    
    .membership-card.featured {
        transform: none;
    }
    
    .addons-grid {
        grid-template-columns: 1fr;
    }
    
    .addon-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    section {
        padding: 3rem 0;
    }
}

/* Contact Form Styles */
.contact-form-wrapper {
    max-width: 600px;
    margin: 3rem auto 0;
}

.contact-form {
    background: rgba(250, 248, 245, 0.05);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--gold);
    font-weight: 500;
    letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    background: rgba(250, 248, 245, 0.1);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--ivory);
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(250, 248, 245, 0.5);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(250, 248, 245, 0.15);
}

.form-group select {
    cursor: pointer;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--gold);
    color: var(--navy);
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.submit-btn:hover:not(:disabled) {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    display: none;
}

.form-message.success {
    display: block;
    background: rgba(76, 175, 80, 0.2);
    border: 1px solid rgba(76, 175, 80, 0.5);
    color: #4caf50;
}

.form-message.error {
    display: block;
    background: rgba(244, 67, 54, 0.2);
    border: 1px solid rgba(244, 67, 54, 0.5);
    color: #f44336;
}

.contact-alternative {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.contact-alternative p {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Thank You Message Styles */
.thank-you-message {
    background: rgba(250, 248, 245, 0.05);
    padding: 3rem 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    text-align: center;
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.thank-you-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gold);
    color: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: bold;
}

.thank-you-message h3 {
    color: var(--gold);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.thank-you-message p {
    color: var(--ivory);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.thank-you-check {
    font-style: italic;
    opacity: 0.9;
    font-size: 0.95rem !important;
    margin-top: 1.5rem !important;
}

.reset-btn {
    margin-top: 2rem;
    padding: 0.8rem 2rem;
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.reset-btn:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-2px);
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .membership-card,
    .standard-item,
    .faq-item {
        padding: 1.5rem;
    }

    .contact-form {
        padding: 1.5rem;
    }
}