/* ===== Reset & Base ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #C8A55C;
    --gold-light: #E8D5A3;
    --gold-dark: #A07A30;
    --bg-dark: #0D0D0D;
    --bg-section: #141414;
    --bg-card: #1A1A1A;
    --text-primary: #F0EDE6;
    --text-secondary: #A8A296;
    --text-muted: #6B665E;
    --accent: #D4A843;
    --border: #2A2520;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.7;
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

h1, h2, h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    line-height: 1.2;
}

/* ===== Hero ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: radial-gradient(ellipse at center top, #1a1408 0%, var(--bg-dark) 70%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(200, 165, 92, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 60px 24px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 24px;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.hero h1 {
    font-size: clamp(42px, 8vw, 72px);
    color: var(--text-primary);
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero h1 .accent {
    color: var(--gold);
    font-style: italic;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-meta {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: var(--text-secondary);
}

.meta-icon {
    font-size: 18px;
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: #0D0D0D;
    padding: 16px 48px;
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(200, 165, 92, 0.2);
}

.btn-secondary {
    background: transparent;
    color: var(--gold);
    padding: 16px 48px;
    border: 1px solid var(--gold);
}

.btn-secondary:hover {
    background: rgba(200, 165, 92, 0.1);
    transform: translateY(-2px);
}

.btn-large {
    padding: 20px 64px;
    font-size: 16px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 0;
}

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

.section-dark {
    background: var(--bg-section);
}

.section-icon {
    text-align: center;
    font-size: 24px;
    margin-bottom: 16px;
}

.section h2 {
    text-align: center;
    font-size: clamp(28px, 5vw, 40px);
    color: var(--text-primary);
    margin-bottom: 48px;
}

.section-text {
    text-align: center;
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 640px;
    margin: 0 auto 24px;
    line-height: 1.8;
}

.section-text.highlight {
    color: var(--gold-light);
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-style: italic;
    font-weight: 400;
    margin-top: 32px;
}

/* ===== Cards ===== */
.cards {
    display: grid;
    gap: 20px;
}

.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 32px;
    transition: border-color 0.3s;
}

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

.card p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.8;
}

.card em {
    color: var(--gold-light);
    font-style: normal;
}

/* ===== Steps ===== */
.steps {
    display: grid;
    gap: 32px;
}

.step {
    border-left: 2px solid var(--gold-dark);
    padding: 0 0 0 32px;
}

.step-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    color: var(--gold);
    margin-bottom: 8px;
    font-weight: 600;
}

.step h3 {
    font-size: 24px;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.step p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.step-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px;
    font-style: italic;
    color: var(--gold-light);
    padding-left: 16px;
    border-left: 1px solid var(--gold-dark);
}

/* ===== Speakers ===== */
.speakers {
    display: flex;
    justify-content: center;
}

.speaker {
    text-align: center;
}

.speaker-photo {
    width: 160px;
    height: 160px;
    margin: 0 auto 24px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--gold-dark);
}

.speaker-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.speaker-photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    color: var(--gold);
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 600;
}

.speaker h3 {
    font-size: 22px;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.speaker p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
}

/* ===== Learn List ===== */
.learn-list {
    list-style: none;
    max-width: 640px;
    margin: 0 auto;
}

.learn-list li {
    padding: 16px 0 16px 32px;
    position: relative;
    color: var(--text-secondary);
    font-size: 16px;
    border-bottom: 1px solid var(--border);
}

.learn-list li:last-child {
    border-bottom: none;
}

.learn-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 12px;
    top: 20px;
}

/* ===== For Whom ===== */
.for-whom {
    max-width: 640px;
    margin: 0 auto;
}

.whom-item {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}

.whom-item:last-child {
    border-bottom: none;
}

.whom-icon {
    color: var(--gold);
    font-size: 14px;
    margin-top: 4px;
    flex-shrink: 0;
}

.whom-item p {
    color: var(--text-secondary);
    font-size: 16px;
}

/* ===== Stats ===== */
.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    text-align: center;
}

.stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 4px;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ===== CTA ===== */
.cta-section {
    text-align: center;
    background: radial-gradient(ellipse at center, #1a1408 0%, var(--bg-dark) 70%);
    padding: 120px 0;
}

.cta-ornament {
    font-size: 48px;
    margin-bottom: 24px;
}

.cta-text {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto 24px;
    line-height: 1.8;
}

.cta-details {
    color: var(--gold-light);
    font-size: 15px;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.cta-note {
    margin-top: 24px;
    font-size: 14px;
    color: var(--text-muted);
}

/* ===== Footer ===== */
.footer {
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid var(--border);
}

.footer p {
    color: var(--text-muted);
    font-size: 13px;
    margin-bottom: 12px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 13px;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--gold);
}

/* ===== Focus styles ===== */
.btn:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 4px;
}

a:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

/* ===== Mobile ===== */
@media (max-width: 600px) {

    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn,
    .cta-buttons .btn {
        width: 100%;
        text-align: center;
    }
    .section {
        padding: 64px 0;
    }

    .speakers {
        flex-direction: column;
        align-items: center;
    }

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

    .hero-meta {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .btn-large {
        padding: 16px 40px;
        font-size: 15px;
    }

    .cta-section {
        padding: 80px 0;
    }
}
