        :root {
            --forest: #0f2d1f;
            --forest-mid: #1b4332;
            --forest-light: #2d6a4f;
            --sage: #52b788;
            --sage-pale: #b7e4c7;
            --cream: #f8f5ef;
            --warm-white: #fdfcfa;
            --ember: #c1440e;
            --ember-light: #e85d27;
            --gold: #d4a853;
            --gold-pale: #f5e6c3;
            --slate: #4a5568;
            --ink: #1a1a1a;
            --line: rgba(15,45,31,0.12);
        }

        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

        html { scroll-behavior: smooth; }

        body {
            font-family: 'DM Sans', sans-serif;
            background-color: var(--cream);
            color: var(--ink);
            line-height: 1.7;
            font-size: 15px;
            overflow-x: hidden;
        }

        /* ─── NAV ─── */
        nav {
            position: fixed;
            top: 0; left: 0; right: 0;
            z-index: 100;
            background: rgba(15, 45, 31, 0.96);
            backdrop-filter: blur(10px);
            padding: 0 5%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 64px;
            border-bottom: 1px solid rgba(255,255,255,0.08);
        }

        .nav-logo {
            font-family: 'DM Mono', monospace;
            color: var(--sage-pale);
            font-size: 12px;
            letter-spacing: 0.15em;
            text-transform: uppercase;
        }

        .nav-links {
            display: flex;
            gap: 36px;
            list-style: none;
        }

        .nav-links a {
            color: rgba(255,255,255,0.65);
            text-decoration: none;
            font-size: 13px;
            font-weight: 500;
            letter-spacing: 0.04em;
            transition: color 0.2s;
        }

        .nav-links a:hover { color: var(--sage); }

        .nav-cta {
            background: var(--ember);
            color: white !important;
            padding: 8px 18px;
            border-radius: 3px;
            font-weight: 600 !important;
            letter-spacing: 0.06em !important;
            transition: background 0.2s !important;
        }

        .nav-cta:hover { background: var(--ember-light) !important; color: white !important; }

        /* ─── HERO ─── */
        .hero {
            min-height: 100vh;
            background: var(--forest);
            position: relative;
            display: flex;
            align-items: center;
            overflow: hidden;
            padding: 100px 5% 80px;
        }

        .hero-geo {
            position: absolute;
            inset: 0;
            opacity: 0.06;
            background-image:
                repeating-linear-gradient(0deg, transparent, transparent 59px, rgba(82,183,136,0.5) 59px, rgba(82,183,136,0.5) 60px),
                repeating-linear-gradient(90deg, transparent, transparent 59px, rgba(82,183,136,0.5) 59px, rgba(82,183,136,0.5) 60px);
        }

        .hero-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            pointer-events: none;
        }

        .orb-1 {
            width: 600px; height: 600px;
            background: radial-gradient(circle, rgba(45,106,79,0.5) 0%, transparent 70%);
            top: -100px; right: -100px;
            animation: drift1 12s ease-in-out infinite alternate;
        }

        .orb-2 {
            width: 400px; height: 400px;
            background: radial-gradient(circle, rgba(193,68,14,0.3) 0%, transparent 70%);
            bottom: 0; left: 30%;
            animation: drift2 9s ease-in-out infinite alternate;
        }

        @keyframes drift1 { from { transform: translate(0,0); } to { transform: translate(-40px, 40px); } }
        @keyframes drift2 { from { transform: translate(0,0); } to { transform: translate(30px, -30px); } }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 820px;
        }

        .hero-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(82,183,136,0.15);
            border: 1px solid rgba(82,183,136,0.3);
            color: var(--sage);
            padding: 6px 14px;
            border-radius: 2px;
            font-family: 'DM Mono', monospace;
            font-size: 11px;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            margin-bottom: 28px;
            animation: fadeUp 0.8s ease both;
        }

        .hero-eyebrow::before {
            content: '';
            width: 6px; height: 6px;
            background: var(--sage);
            border-radius: 50%;
            animation: pulse 2s ease infinite;
        }

        @keyframes pulse { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:0.4; transform:scale(0.7); } }

        .hero-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(38px, 6vw, 72px);
            font-weight: 900;
            color: #ffffff;
            line-height: 1.1;
            letter-spacing: -0.02em;
            margin-bottom: 8px;
            animation: fadeUp 0.8s 0.1s ease both;
        }

        .hero-title-span {
            font-family: 'Playfair Display', serif;
            font-size: clamp(18px, 6vw, 35px);
            font-weight: 900;
            color: var(--gold);
            font-style: italic;
        }

        .hero-abbr {
            font-family: 'DM Mono', monospace;
            font-size: clamp(14px, 2vw, 20px);
            color: rgba(255,255,255,0.35);
            letter-spacing: 0.3em;
            margin-bottom: 24px;
            animation: fadeUp 0.8s 0.15s ease both;
        }

        .hero-subtitle {
            font-size: clamp(15px, 1.8vw, 18px);
            color: rgba(255,255,255,0.65);
            max-width: 580px;
            margin-bottom: 44px;
            font-weight: 300;
            animation: fadeUp 0.8s 0.2s ease both;
        }

        .hero-meta {
            display: flex;
            gap: 32px;
            flex-wrap: wrap;
            margin-bottom: 44px;
            animation: fadeUp 0.8s 0.25s ease both;
        }

        .hero-meta-item {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .hero-meta-label {
            font-family: 'DM Mono', monospace;
            font-size: 10px;
            color: var(--sage);
            letter-spacing: 0.15em;
            text-transform: uppercase;
        }

        .hero-meta-value {
            font-size: 16px;
            font-weight: 600;
            color: white;
        }

        .meta-divider {
            width: 1px;
            background: rgba(255,255,255,0.15);
            align-self: stretch;
        }

        .hero-actions {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            animation: fadeUp 0.8s 0.3s ease both;
        }

        .btn-primary {
            background: var(--ember);
            color: white;
            padding: 14px 28px;
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            letter-spacing: 0.04em;
            border-radius: 3px;
            transition: background 0.2s, transform 0.15s;
            display: inline-block;
        }

        .btn-primary:hover { background: var(--ember-light); transform: translateY(-1px); }

        .btn-outline {
            background: transparent;
            color: rgba(255,255,255,0.8);
            padding: 14px 28px;
            text-decoration: none;
            font-weight: 500;
            font-size: 14px;
            letter-spacing: 0.04em;
            border-radius: 3px;
            border: 1px solid rgba(255,255,255,0.25);
            transition: border-color 0.2s, color 0.2s;
            display: inline-block;
        }

        .btn-outline:hover { border-color: rgba(255,255,255,0.6); color: white; }

        @keyframes fadeUp {
            from { opacity: 0; transform: translateY(20px); }
            to   { opacity: 1; transform: translateY(0); }
        }

        /* ─── SCROLL TICKER ─── */
        .ticker {
            background: var(--ember);
            padding: 12px 0;
            overflow: hidden;
            white-space: nowrap;
        }

        .ticker-inner {
            display: inline-flex;
            gap: 60px;
            animation: ticker 25s linear infinite;
        }

        .ticker-item {
            color: white;
            font-size: 13px;
            font-weight: 500;
            letter-spacing: 0.04em;
        }

        .ticker-sep { color: rgba(255,255,255,0.5); }

        @keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

        /* ─── SECTIONS ─── */
        .section {
            padding: 96px 5%;
        }

        .section-alt { background: var(--warm-white); }

        .section-dark {
            background: var(--forest);
            color: white;
        }

        .section-inner {
            max-width: 1100px;
            margin: 0 auto;
        }

        .section-tag {
            font-family: 'DM Mono', monospace;
            font-size: 11px;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--ember);
            margin-bottom: 12px;
            display: block;
        }

        .section-dark .section-tag { color: var(--sage); }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(28px, 4vw, 46px);
            font-weight: 700;
            line-height: 1.15;
            letter-spacing: -0.02em;
            margin-bottom: 16px;
            color: var(--forest);
        }

        .section-dark .section-title { color: white; }

        .section-lead {
            font-size: 16px;
            color: var(--slate);
            max-width: 600px;
            font-weight: 300;
            margin-bottom: 56px;
        }

        .section-dark .section-lead { color: rgba(255,255,255,0.6); }

        /* ─── ABOUT ─── */
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 64px;
            align-items: start;
        }

        .about-text p {
            color: var(--slate);
            margin-bottom: 16px;
            line-height: 1.8;
        }

        .about-text p strong { color: var(--forest); font-weight: 600; }

        .about-stats {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2px;
        }

        .stat-box {
            background: var(--forest);
            color: white;
            padding: 32px 24px;
            position: relative;
            overflow: hidden;
        }

        .stat-box::after {
            content: '';
            position: absolute;
            bottom: 0; right: 0;
            width: 60px; height: 60px;
            background: rgba(82,183,136,0.15);
            border-radius: 60px 0 0 0;
        }

        .stat-box:nth-child(2) { background: var(--forest-light); }
        .stat-box:nth-child(3) { background: var(--ember); }
        .stat-box:nth-child(4) { background: var(--forest-mid); }

        .stat-number {
            font-family: 'Playfair Display', serif;
            font-size: 48px;
            font-weight: 900;
            line-height: 1;
            margin-bottom: 6px;
        }

        .stat-label {
            font-size: 12px;
            font-weight: 500;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            opacity: 0.75;
        }

        /* ─── THEMES ─── */
        .themes-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
        }

        .theme-card {
            background: white;
            border: 1px solid var(--line);
            padding: 32px;
            border-radius: 4px;
            position: relative;
            overflow: hidden;
            transition: transform 0.2s, box-shadow 0.2s;
        }

        .theme-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 16px 48px rgba(15,45,31,0.1);
        }

        .theme-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0;
            width: 4px; height: 100%;
            background: var(--forest-light);
        }

        .theme-card:nth-child(2)::before { background: var(--ember); }
        .theme-card:nth-child(3)::before { background: var(--gold); }
        .theme-card:nth-child(4)::before { background: var(--sage); }

        .theme-number {
            font-family: 'Playfair Display', serif;
            font-size: 60px;
            font-weight: 900;
            color: rgba(15,45,31,0.06);
            position: absolute;
            top: 16px; right: 24px;
            line-height: 1;
        }

        .theme-label {
            font-family: 'DM Mono', monospace;
            font-size: 10px;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--forest-light);
            margin-bottom: 10px;
        }

        .theme-card:nth-child(2) .theme-label { color: var(--ember); }
        .theme-card:nth-child(3) .theme-label { color: #b07a1a; }
        .theme-card:nth-child(4) .theme-label { color: var(--sage); }

        .theme-title {
            font-family: 'Playfair Display', serif;
            font-size: 20px;
            font-weight: 700;
            color: var(--forest);
            margin-bottom: 12px;
            line-height: 1.3;
        }

        .theme-desc {
            font-size: 14px;
            color: var(--slate);
            line-height: 1.7;
        }

        /* ─── TIMELINE ─── */
        .timeline {
            position: relative;
            padding-left: 40px;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 8px; top: 0; bottom: 0;
            width: 2px;
            background: rgba(255,255,255,0.15);
        }

        .timeline-item {
            position: relative;
            margin-bottom: 36px;
        }

        .timeline-item::before {
            content: '';
            position: absolute;
            left: -36px; top: 6px;
            width: 12px; height: 12px;
            border-radius: 50%;
            background: var(--sage);
            border: 3px solid var(--forest);
            box-shadow: 0 0 0 3px rgba(82,183,136,0.3);
        }

        .timeline-item.highlight::before {
            background: var(--gold);
            box-shadow: 0 0 0 4px rgba(212,168,83,0.3);
            width: 16px; height: 16px;
            left: -38px; top: 4px;
        }

        .timeline-date {
            font-family: 'DM Mono', monospace;
            font-size: 11px;
            color: var(--sage);
            letter-spacing: 0.1em;
            margin-bottom: 4px;
        }

        .timeline-item.highlight .timeline-date { color: var(--gold); }

        .timeline-title {
            font-size: 16px;
            font-weight: 600;
            color: white;
            margin-bottom: 4px;
        }

        .timeline-desc {
            font-size: 13px;
            color: rgba(255,255,255,0.5);
        }

        /* ─── SPEAKERS ─── */
        .speakers-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
        }

        .speaker-card {
            background: white;
            border: 1px solid var(--line);
            border-radius: 4px;
            padding: 32px;
            display: flex;
            gap: 24px;
            align-items: flex-start;
            transition: transform 0.2s, box-shadow 0.2s;
        }

        .speaker-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 36px rgba(15,45,31,0.1);
        }

        .speaker-avatar {
            width: 72px; height: 72px;
            border-radius: 50%;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Playfair Display', serif;
            font-size: 26px;
            font-weight: 700;
            color: white;
        }

        .avatar-green { background: linear-gradient(135deg, var(--forest-mid), var(--forest-light)); }
        .avatar-ember { background: linear-gradient(135deg, var(--ember), #ff7043); }

        .speaker-info {}

        .speaker-name {
            font-family: 'Playfair Display', serif;
            font-size: 20px;
            font-weight: 700;
            color: var(--forest);
            margin-bottom: 2px;
        }

        .speaker-inst {
            font-size: 12px;
            color: var(--ember);
            font-weight: 600;
            letter-spacing: 0.03em;
            margin-bottom: 10px;
        }

        .speaker-bio {
            font-size: 13px;
            color: var(--slate);
            line-height: 1.7;
        }

        /* ─── FEES ─── */
        .fees-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2px;
        }

        .fee-header {
            background: var(--forest-mid);
            color: rgba(255,255,255,0.7);
            padding: 16px 24px;
            font-family: 'DM Mono', monospace;
            font-size: 11px;
            letter-spacing: 0.1em;
            text-transform: uppercase;
        }

        .fee-card {
            background: white;
            border: 1px solid var(--line);
            padding: 28px 24px;
        }

        .fee-category {
            font-size: 13px;
            font-weight: 600;
            color: var(--forest);
            margin-bottom: 4px;
        }

        .fee-note {
            font-size: 11px;
            color: var(--slate);
        }

        .fee-price {
            font-family: 'Playfair Display', serif;
            font-size: 28px;
            font-weight: 700;
            color: var(--forest);
        }

        .fee-price.free { color: var(--forest-light); }
        .fee-price.ember { color: var(--ember); }

        .fee-currency {
            font-family: 'DM Mono', monospace;
            font-size: 12px;
            color: var(--slate);
            margin-top: 4px;
        }

        .fee-disclaimer {
            margin-top: 20px;
            font-size: 13px;
            color: var(--slate);
            display: flex;
            align-items: flex-start;
            gap: 8px;
        }

        .fee-disclaimer::before {
            content: 'ℹ';
            flex-shrink: 0;
            color: var(--sage);
            font-size: 15px;
        }

        /* ─── VENUE ─── */
        .venue-box {
            background: var(--gold-pale);
            border: 1px solid rgba(212,168,83,0.3);
            border-radius: 4px;
            padding: 32px;
            display: flex;
            gap: 32px;
            align-items: center;
        }

        .venue-icon {
            font-size: 48px;
            flex-shrink: 0;
        }

        .venue-title {
            font-family: 'Playfair Display', serif;
            font-size: 22px;
            font-weight: 700;
            color: var(--forest);
            margin-bottom: 6px;
        }

        .venue-detail {
            font-size: 14px;
            color: var(--slate);
            line-height: 1.8;
        }

        .venue-tags {
            display: flex;
            gap: 8px;
            margin-top: 14px;
            flex-wrap: wrap;
        }

        .venue-tag {
            background: rgba(45,106,79,0.12);
            color: var(--forest-light);
            font-size: 11px;
            font-weight: 600;
            padding: 4px 10px;
            border-radius: 2px;
            letter-spacing: 0.05em;
        }

        /* ─── FOOTER ─── */
        footer {
            background: #0a1f12;
            color: rgba(255,255,255,0.5);
            padding: 64px 5% 40px;
        }

        .footer-inner {
            max-width: 1100px;
            margin: 0 auto;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 48px;
            margin-bottom: 48px;
            padding-bottom: 48px;
            border-bottom: 1px solid rgba(255,255,255,0.08);
        }

        .footer-brand-name {
            font-family: 'Playfair Display', serif;
            font-size: 20px;
            font-weight: 700;
            color: white;
            margin-bottom: 8px;
        }

        .footer-brand-sub {
            font-size: 13px;
            color: rgba(255,255,255,0.4);
            margin-bottom: 20px;
            line-height: 1.7;
        }

        .footer-link-email {
            font-family: 'DM Mono', monospace;
            font-size: 13px;
            color: var(--sage);
            text-decoration: none;
        }

        .footer-col-title {
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: rgba(255,255,255,0.35);
            margin-bottom: 16px;
        }

        .footer-col ul { list-style: none; }
        .footer-col ul li { margin-bottom: 10px; }

        .footer-col ul a {
            color: rgba(255,255,255,0.55);
            text-decoration: none;
            font-size: 14px;
            transition: color 0.2s;
        }

        .footer-col ul a:hover { color: white; }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 12px;
            flex-wrap: wrap;
            gap: 12px;
        }

        .footer-url {
            font-family: 'DM Mono', monospace;
            color: rgba(255,255,255,0.3);
            font-size: 11px;
        }

        /* ─── UTILITIES ─── */
        .divider {
            height: 1px;
            background: var(--line);
            margin: 0 5%;
        }

        .text-center { text-align: center; }
        .mx-auto { margin-left: auto; margin-right: auto; }

        @media (max-width: 768px) {
            .nav-links { display: none; }
            .about-grid, .themes-grid, .speakers-grid, .fees-grid { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr; }
            .hero-meta { gap: 20px; }
            .about-stats { grid-template-columns: 1fr 1fr; }
        }