/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-black: #0a0a0a;
    --color-dark: #1a1a1a;
    --color-gold: #c5a572;
    --color-gold-light: #d4b68a;
    --color-gold-dark: #a88b5e;
    --color-green-dark: #1e2a24;
    --color-wood: #3a2e24;
    --color-stone: #4a3e35;
    --color-text: #e0dcd5;
    --color-text-muted: #a8a39c;
    --font-logo: 'Cormorant Garamond', serif;
    --font-main: 'Montserrat', sans-serif;
}

body {
    font-family: var(--font-main);
    background-color: var(--color-black);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-logo);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.section-title {
    font-size: 3rem;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
    position: relative;
    text-align: center;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    margin: 1rem auto;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(197, 165, 114, 0.2);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-family: var(--font-logo);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-gold);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--color-text);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--color-gold);
}

.nav-cta {
    background: var(--color-gold);
    color: var(--color-black) !important;
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
}

.nav-cta:hover {
    background: var(--color-gold-light);
    color: var(--color-black) !important;
}

.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.burger span {
    width: 25px;
    height: 2px;
    background: var(--color-gold);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%233a2e24"/><path d="M0 0 L100 100 M100 0 L0 100" stroke="%23c5a572" stroke-width="0.5" opacity="0.1"/></svg>');
    background-size: cover, 50px 50px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, transparent 0%, rgba(0,0,0,0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--color-text);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border: none;
    cursor: pointer;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.btn-primary {
    background: var(--color-gold);
    color: var(--color-black);
    border: 2px solid var(--color-gold);
}

.btn-primary:hover {
    background: transparent;
    color: var(--color-gold);
}

.btn-large {
    padding: 1rem 3rem;
    font-size: 1.1rem;
}

/* For Whom Section */
.for-whom {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--color-black) 0%, var(--color-dark) 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.feature-card {
    background: rgba(197, 165, 114, 0.05);
    padding: 2rem;
    border: 1px solid rgba(197, 165, 114, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-gold);
    background: rgba(197, 165, 114, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--color-gold);
}

.feature-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--color-text);
}

.profile-box {
    background: rgba(197, 165, 114, 0.1);
    padding: 2rem;
    border-left: 4px solid var(--color-gold);
    margin-top: 2rem;
}

.gold-text {
    color: var(--color-gold);
    font-weight: 600;
}

/* Legend Section */
.legend {
    padding: 100px 0;
    background: var(--color-dark);
    position: relative;
}

.legend::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.05"><path d="M20 20 L80 20 L80 80 L20 80 Z" fill="none" stroke="%23c5a572" stroke-width="1"/><path d="M30 30 L70 30 L70 70 L30 70 Z" fill="none" stroke="%23c5a572" stroke-width="1"/></svg>');
    background-size: 100px 100px;
}

.legend-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.legend-quote {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--color-text);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.legend-return {
    font-size: 2rem;
    color: var(--color-gold);
    font-family: var(--font-logo);
    font-weight: 600;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

.value-item {
    text-align: center;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(197, 165, 114, 0.3);
}

.value-item h3 {
    color: var(--color-gold);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.value-item p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

/* Mastermind Section */
.mastermind {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--color-black) 0%, var(--color-green-dark) 100%);
}

.mastermind-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.no-water {
    color: var(--color-gold);
    font-weight: 600;
    margin-top: 1rem;
}

.program-part {
    margin-bottom: 4rem;
}

.program-part h3 {
    font-size: 2rem;
    color: var(--color-gold);
    margin-bottom: 0.5rem;
}

.program-part h3 span {
    font-size: 1rem;
    color: var(--color-text-muted);
    font-family: var(--font-main);
}

.part-desc {
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

.week-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.week-card {
    background: rgba(0, 0, 0, 0.5);
    padding: 2rem;
    border: 1px solid rgba(197, 165, 114, 0.2);
    transition: all 0.3s ease;
}

.week-card:hover {
    border-color: var(--color-gold);
    transform: translateY(-5px);
}

.week-card h4 {
    color: var(--color-gold);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(197, 165, 114, 0.3);
}

.week-card ul {
    list-style: none;
}

.week-card li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

.week-card li::before {
    content: '•';
    color: var(--color-gold);
    position: absolute;
    left: 0;
}

.program-format {
    text-align: center;
    margin-top: 3rem;
}

.program-format h3 {
    color: var(--color-gold);
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.format-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    list-style: none;
    margin-bottom: 3rem;
}

.format-list li {
    padding: 0.5rem 1rem;
    background: rgba(197, 165, 114, 0.1);
    border: 1px solid rgba(197, 165, 114, 0.3);
    color: var(--color-text);
}

/* Life Section */
.life {
    padding: 100px 0;
    background: var(--color-dark);
}

.pillars {
    display: grid;
    gap: 3rem;
}

.pillar {
    background: rgba(0, 0, 0, 0.3);
    padding: 2rem;
    border: 1px solid rgba(197, 165, 114, 0.2);
}

.pillar h3 {
    color: var(--color-gold);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.pillar p {
    color: var(--color-text);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.pillar ul {
    list-style: none;
}

.pillar li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--color-text-muted);
}

.pillar li::before {
    content: '—';
    color: var(--color-gold);
    position: absolute;
    left: 0;
}

.hierarchy {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.hierarchy-item {
    padding: 0.3rem 1rem;
    background: rgba(197, 165, 114, 0.1);
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    font-size: 0.9rem;
}

.rituals-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

/* Concierge Section */
.concierge {
    padding: 100px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.1"><circle cx="50" cy="50" r="40" fill="none" stroke="%23c5a572" stroke-width="1"/><circle cx="50" cy="50" r="20" fill="none" stroke="%23c5a572" stroke-width="1"/></svg>');
    background-size: cover, 200px 200px;
}

.concierge-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.concierge-content h3 {
    color: var(--color-gold);
    font-size: 2rem;
    margin-bottom: 2rem;
}

.concierge-content p {
    color: var(--color-text);
    margin-bottom: 3rem;
    font-size: 1.2rem;
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 3rem;
}

.example {
    background: rgba(197, 165, 114, 0.1);
    padding: 1.5rem;
    border: 1px solid rgba(197, 165, 114, 0.3);
    color: var(--color-text);
    font-size: 0.95rem;
    position: relative;
    transition: all 0.3s ease;
}

.example:hover {
    transform: scale(1.05);
    border-color: var(--color-gold);
    background: rgba(197, 165, 114, 0.15);
}

.concierge-tagline {
    font-size: 2rem;
    color: var(--color-gold);
    font-family: var(--font-logo);
    font-weight: 600;
    margin-top: 2rem;
}

/* Founders Quote */
.founders-quote {
    padding: 100px 0;
    background: var(--color-black);
}

.quote-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
    background: rgba(197, 165, 114, 0.05);
    border: 1px solid var(--color-gold);
    position: relative;
}

.quote-box::before,
.quote-box::after {
    content: '"';
    font-size: 5rem;
    color: var(--color-gold);
    opacity: 0.3;
    position: absolute;
    font-family: serif;
}

.quote-box::before {
    top: -10px;
    left: 10px;
}

.quote-box::after {
    bottom: -40px;
    right: 10px;
    transform: rotate(180deg);
}

.quote {
    font-size: 1.5rem;
    line-height: 1.8;
    color: var(--color-text);
    text-align: center;
    margin-bottom: 2rem;
}

.quote-author {
    color: var(--color-gold);
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
}

/* How to Enter */
.how-to-enter {
    padding: 100px 0;
    background: var(--color-dark);
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin: 4rem 0;
}

.step {
    text-align: center;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(197, 165, 114, 0.2);
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background: var(--color-gold);
    color: var(--color-black);
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
}

.step h3 {
    color: var(--color-gold);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.step p {
    color: var(--color-text-muted);
}

.important-note {
    text-align: center;
    color: var(--color-gold);
    font-size: 1.2rem;
    margin-top: 3rem;
    padding: 1rem;
    border: 1px dashed var(--color-gold);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: var(--color-black);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: rgba(197, 165, 114, 0.05);
    padding: 2rem;
    border: 1px solid rgba(197, 165, 114, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--color-gold);
    transform: translateY(-5px);
}

.faq-item h3 {
    color: var(--color-gold);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(197, 165, 114, 0.3);
}

.faq-item p {
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* Application Form */
.application {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-black) 100%);
}

.application-form {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.5);
    padding: 3rem;
    border: 1px solid var(--color-gold);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--color-gold);
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 0.8rem;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(197, 165, 114, 0.3);
    color: var(--color-text);
    font-family: var(--font-main);
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--color-gold);
    background: rgba(0, 0, 0, 0.8);
}

.form-control.error {
    border-color: #ff4444;
}

textarea.form-control {
    resize: vertical;
}

.checkbox {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.checkbox input {
    width: auto;
}

.checkbox label {
    margin-bottom: 0;
    color: var(--color-text);
    font-weight: normal;
}

.error-message {
    color: #ff4444;
    font-size: 0.85rem;
    margin-top: 0.3rem;
}

.form-submit {
    text-align: center;
    margin-top: 3rem;
}

.form-note {
    text-align: center;
    margin-top: 2rem;
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

/* Thank You Page */
.thank-you-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-black) 0%, var(--color-dark) 100%);
    text-align: center;
}

.thank-you-content {
    max-width: 600px;
    padding: 3rem;
    background: rgba(197, 165, 114, 0.05);
    border: 1px solid var(--color-gold);
}

.thank-you-content h1 {
    color: var(--color-gold);
    font-size: 3rem;
    margin-bottom: 2rem;
}

.thank-you-content p {
    color: var(--color-text);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

/* Footer */
.footer {
    padding: 3rem 0;
    background: var(--color-black);
    border-top: 1px solid rgba(197, 165, 114, 0.2);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logo {
    font-family: var(--font-logo);
    font-size: 2rem;
    color: var(--color-gold);
}

.footer-info p {
    color: var(--color-text-muted);
    margin: 0.3rem 0;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-gold);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card,
.week-card,
.pillar,
.step,
.faq-item {
    animation: fadeIn 0.6s ease-out forwards;
}

/* Mobile Menu */
@media (max-width: 768px) {
    .burger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--color-black);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 2rem;
        transition: 0.3s;
        border-top: 1px solid rgba(197, 165, 114, 0.2);
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

    .format-list {
        flex-direction: column;
        align-items: center;
    }
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--color-black);
}

::-webkit-scrollbar-thumb {
    background: var(--color-gold-dark);
    border: 2px solid var(--color-black);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-gold);
}