/* ============================================================
   Money Matters Conference — style.css
   Brand: Deep Emerald + Rich Gold · Light theme
   ============================================================ */

/* ── TOKENS ── */
:root {
    --green-deep:    #0F3D2E;
    --green-darker:  #0b2e22;
    --near-black:    #0E110F;
    --gold:          #D4A017;
    --gold-bright:   #F2B705;
    --gold-light:    #E6B84C;
    --gold-dark:     #C99700;
    --white:         #FFFFFF;
    --off-white:     #F8F8F8;
    --text-dark:     #1A1A1A;
    --text-body:     #444;
    --text-muted:    #777;
    --border-light:  #E0E0E0;
    --border:        rgba(212,160,23,.2);

    --font-heading:  'Montserrat', sans-serif;
    --font-body:     'Inter', sans-serif;

    --radius:        8px;
    --radius-lg:     16px;
    --shadow:        0 4px 24px rgba(0,0,0,.1);
    --shadow-lg:     0 8px 40px rgba(0,0,0,.15);
    --shadow-sm:     0 2px 8px rgba(0,0,0,.06);

    --header-h:      92px;
    --container:     1200px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); background: var(--white); color: var(--text-body); line-height: 1.7; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-bright); }
ul { list-style: none; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    line-height: 1.2;
    font-weight: 700;
    color: var(--text-dark);
}
h2 { color: var(--green-deep); }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: 1.2rem; }
p  { margin-bottom: 1rem; }
.text-gold { color: var(--gold); }
.lead { font-size: 1.15rem; color: var(--text-body); }
.prose p { margin-bottom: 1.2rem; color: var(--text-body); }

/* Force white text inside dark/coloured sections */
.hero h1, .hero h2, .hero h3, .hero p,
.cta-banner h1, .cta-banner h2, .cta-banner p { color: var(--white); }

/* ── LAYOUT ── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; background: var(--white); }
.section-alt, .bg-dark-alt { background: #E2E2E2; }
.content-narrow { max-width: 760px; margin: 0 auto; }
.section-label {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}
.section-header { text-align: center; margin-bottom: 48px; }
.section-header h2 { margin-bottom: 12px; }
.section-header p { color: var(--text-muted); max-width: 600px; margin: 0 auto; }
.section-cta { text-align: center; margin-top: 40px; }
.section-back { padding: 40px 0; }
.page-header { padding: 120px 0 40px; }

/* Two-column layouts */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.two-col-equal { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.col-text .section-label { display: block; }
.col-text h2 { margin-bottom: 16px; }
.col-text p { color: var(--text-muted); margin-bottom: 24px; }
.rounded-img { border-radius: var(--radius-lg); box-shadow: var(--shadow); }
/* Section two-col images fill their column flush */
.two-col .col-media { overflow: hidden; align-self: stretch; }
.two-col .col-media img { border-radius: 0; box-shadow: none; width: 100%; height: 100%; object-fit: cover; object-position: center; }

/* ── BUTTONS ── */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: .875rem;
    letter-spacing: .05em;
    text-transform: uppercase;
    padding: 12px 28px;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all .2s ease;
    text-decoration: none;
    white-space: nowrap;
}
.btn-gold     { background: var(--gold); color: var(--white); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-bright); border-color: var(--gold-bright); color: var(--white); }
.btn-outline  { background: transparent; color: var(--text-dark); border-color: var(--border-light); }
.btn-outline:hover { border-color: var(--green-deep); color: var(--green-deep); }
.btn-outline-white { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline-white:hover { background: var(--white); color: var(--near-black); }
.btn-danger   { background: #c0392b; color: var(--white); border-color: #c0392b; }
.btn-danger:hover { background: #a93226; }
.btn-lg { padding: 16px 40px; font-size: 1rem; }
.btn-sm { padding: 8px 16px; font-size: .8rem; }
.btn-full { width: 100%; justify-content: center; }

/* ── HEADER ── */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: var(--header-h);
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: background .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.site-header.scrolled {
    background: var(--green-deep);
    box-shadow: 0 4px 20px rgba(0,0,0,.25);
    border-bottom: 1px solid rgba(212,160,23,.15);
}
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.site-logo .logo-img { height: 76px; width: auto; }
.primary-nav { display: flex; align-items: center; gap: 8px; }
.nav-link {
    font-family: var(--font-heading);
    font-size: .85rem;
    font-weight: 600;
    color: rgba(255,255,255,.92);
    padding: 8px 14px;
    border-radius: var(--radius);
    transition: color .2s, background .2s;
    letter-spacing: .03em;
}
.nav-link:hover, .nav-link.active { color: var(--gold); }
.nav-cta { padding: 10px 22px; }

.nav-toggle {
    display: none;
    flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: .3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ── */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex; align-items: center;
    background-size: cover;
    background-position: center;
    padding-top: var(--header-h);
    padding-bottom: 100px;
}
.hero-page  { min-height: 55vh; }
.hero-short { min-height: 42vh; }
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(15,61,46,0.9) 0%, rgba(10,14,12,0.45) 100%);
}
.hero-content { position: relative; z-index: 1; }
.hero-eyebrow {
    font-family: var(--font-heading);
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    display: block;
}
.breadcrumb-link { color: var(--gold); }
.hero-title { margin-bottom: 20px; color: var(--white); }
.hero-sub { color: rgba(255,255,255,.85); font-size: 1.1rem; max-width: 600px; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.post-meta { color: var(--text-muted); font-size: .9rem; }

/* ── HOME HERO BRAND BLOCK ── */
.hero-home {
    align-items: flex-start;
    padding-top: calc(var(--header-h) + 50px);
}
.hero-mm-title {
    font-family: var(--font-heading);
    font-size: clamp(3.8rem, 11vw, 8.5rem);
    font-weight: 900;
    text-transform: uppercase;
    color: var(--white);
    letter-spacing: -0.02em;
    line-height: 0.92;
    margin-bottom: 32px;
    transform: rotate(-2.5deg);
    display: block;
}
/* $ in O circle */
.hero-o-dollar {
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0.06em solid var(--gold);
    border-radius: 50%;
    width: 1.15em;
    height: 1.15em;
    font-size: 0.6em;
    vertical-align: 0.1em;
    letter-spacing: 0;
    line-height: 1;
}
/* ₦ Naira and £ Pound currency symbols */
.hero-naira, .hero-pound { color: var(--gold); }
.hero-conf-badge {
    display: block;
    background: var(--gold);
    color: var(--green-deep);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: clamp(1.1rem, 3vw, 2rem);
    padding: 7px 24px;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 28px;
    transform: rotate(-4deg);
    transform-origin: left center;
    width: fit-content;
    margin-top: 0;
}
.hero-theme-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(1rem, 2.2vw, 1.5rem);
    letter-spacing: .04em;
    text-transform: uppercase;
    color: rgba(255,255,255,.88);
    margin-bottom: 32px;
    line-height: 1.3;
    display: block;
}

/* ── SPEAKER CARDS ── */
.speakers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 24px;
}
.speakers-grid-lg { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
.speaker-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-decoration: none;
    transition: transform .3s, box-shadow .3s, border-color .3s;
    color: var(--text-dark);
    box-shadow: var(--shadow-sm);
}
.speaker-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--gold); color: var(--text-dark); }
.speaker-photo { aspect-ratio: 3/4; overflow: hidden; background: var(--off-white); }
.speaker-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform .4s; }
.speaker-card:hover .speaker-photo img { transform: scale(1.04); }
.speaker-photo-placeholder, .speaker-photo-placeholder-lg {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-size: 3rem; color: var(--border-light);
}
.speaker-info { padding: 20px; }
.speaker-info h3 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; color: var(--green-deep); }
.speaker-info p { font-size: .85rem; font-weight: 700; color: var(--gold); margin: 0; }
.speaker-company { font-size: .8rem; font-weight: 600; color: var(--near-black); margin-top: 4px; display: block; }
.speaker-topic { font-size: .8rem; font-weight: 600; color: var(--near-black); margin-top: 8px; display: block; }
.badge-featured { display: inline-block; font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--near-black); background: var(--gold); padding: 2px 8px; border-radius: 20px; margin-bottom: 6px; }

/* ── SPEAKER PROFILE ── */
.speaker-profile { display: grid; grid-template-columns: 360px 1fr; gap: 60px; align-items: start; }
.profile-photo-lg { border-radius: var(--radius-lg); overflow: hidden; }
.profile-photo-lg img { width: 100%; border-radius: var(--radius-lg); }
.profile-details h1 { margin: 12px 0 4px; }
.profile-title { color: var(--green-deep); font-size: 1rem; margin-bottom: 4px; }
.profile-company { color: var(--text-muted); margin-bottom: 16px; }
.profile-topic { background: var(--off-white); border: 1px solid var(--border-light); padding: 10px 16px; border-radius: var(--radius); margin-bottom: 20px; font-size: .9rem; color: var(--text-body); }
.profile-bio { color: var(--text-body); margin-bottom: 24px; }
.profile-social { display: flex; gap: 12px; margin-bottom: 24px; flex-wrap: wrap; }
.profile-social a { display: flex; align-items: center; gap: 6px; padding: 8px 16px; border: 1px solid var(--border-light); border-radius: var(--radius); font-size: .85rem; color: var(--text-body); transition: border-color .2s, color .2s; }
.profile-social a:hover { border-color: var(--green-deep); color: var(--green-deep); }

/* ── FEATURES ── */
.features-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 24px; }
.feature-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: transform .3s, box-shadow .3s;
    box-shadow: var(--shadow-sm);
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.feature-icon { font-size: 2rem; color: var(--gold); margin-bottom: 16px; }
.feature-card p { color: var(--text-body); margin: 0; font-size: .95rem; }

/* ── LEARN GRID ── */
.learn-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
.learn-item { display: flex; gap: 16px; align-items: flex-start; padding: 24px; background: var(--white); border-radius: var(--radius); border: 1px solid var(--border-light); box-shadow: var(--shadow-sm); }
.learn-num { font-family: var(--font-heading); font-size: 2rem; font-weight: 800; color: var(--gold); opacity: .5; min-width: 40px; }
.learn-item p { margin: 0; color: var(--text-body); }

/* ── WHY ATTEND ── */
.why-attend { background: var(--white); }
.why-attend .section-label { color: var(--green-deep); }
.why-attend .text-gold { color: var(--green-deep); }
.why-attend .feature-card {
    background: var(--green-deep);
    border-color: var(--green-deep);
    box-shadow: var(--shadow);
}
.why-attend .feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); opacity: .92; }
.why-attend .feature-card p { color: rgba(255,255,255,.9); }
.why-attend .feature-icon { color: var(--gold); }

/* ── TESTIMONIALS ── */
.testimonials-section { background: var(--white); }
.testimonials-section .section-label { color: var(--green-deep); }
.testimonials-section h2 { color: var(--green-deep); }
.testimonials-slider { position: relative; overflow: hidden; }
.testimonial-item { display: none; text-align: center; max-width: 700px; margin: 0 auto; padding: 20px; }
.testimonial-item.active { display: block; }
.quote-icon { color: var(--green-deep); font-size: 2rem; margin-bottom: 16px; opacity: .55; }
.quote-text { font-size: 1.2rem; font-style: italic; color: var(--green-deep); margin-bottom: 16px; }
.quote-author { color: var(--green-deep); font-size: .9rem; font-weight: 700; opacity: .8; }
.slider-dots { display: flex; justify-content: center; gap: 8px; margin-top: 24px; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(15,61,46,.25); cursor: pointer; transition: background .2s; border: none; }
.dot.active { background: var(--green-deep); }

/* ── SPONSORS ── */
.sponsors-strip { background: var(--white); }
.sponsors-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 24px; align-items: center; }
.sponsor-logo { display: flex; align-items: center; justify-content: center; padding: 20px; background: var(--off-white); border-radius: var(--radius); border: 1px solid var(--border-light); min-height: 80px; }
.sponsor-logo img { max-height: 60px; object-fit: contain; opacity: .8; transition: opacity .2s; }
.sponsor-logo:hover img { opacity: 1; }
.sponsor-logo span { color: var(--text-muted); font-size: .9rem; text-align: center; }

/* Tiered sponsors page */
.sponsor-tier { margin-bottom: 60px; }
.tier-label { font-family: var(--font-heading); color: var(--green-deep); font-size: 1.1rem; margin-bottom: 24px; padding-bottom: 8px; border-bottom: 2px solid var(--border-light); }
.sponsors-gold .sponsor-logo-card { padding: 30px; }
.sponsor-logo-card { display: flex; align-items: center; justify-content: center; padding: 20px; background: var(--white); border: 1px solid var(--border-light); border-radius: var(--radius-lg); min-height: 100px; transition: border-color .2s, box-shadow .2s; box-shadow: var(--shadow-sm); }
.sponsor-logo-card:hover { border-color: var(--gold); box-shadow: var(--shadow); }
.sponsor-logo-card img { max-height: 80px; object-fit: contain; }
.sponsor-logo-card span { color: var(--text-muted); font-weight: 600; }

/* ── PARALLAX SECTION ── */
.parallax-section {
    position: relative;
    background-attachment: fixed;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 120px 0;
    overflow: hidden;
}
/* iOS / touch fallback — fixed attachment doesn't work on mobile */
@media (max-width: 768px), (hover: none) {
    .parallax-section { background-attachment: scroll; }
}
.parallax-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15,61,46,0.82) 0%, rgba(0,0,0,0.65) 100%);
    z-index: 0;
}
.parallax-content {
    position: relative;
    z-index: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}
.section-label-light { color: var(--gold-light); }
.parallax-heading {
    font-size: clamp(2rem, 5vw, 3.2rem);
    color: var(--white);
    margin: 0;
    font-weight: 800;
}
.parallax-sub {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255,255,255,.8);
    max-width: 560px;
    margin: 0;
    line-height: 1.7;
}
.parallax-stats {
    display: flex;
    gap: 56px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 32px 0;
    border-top: 1px solid rgba(255,255,255,.15);
    border-bottom: 1px solid rgba(255,255,255,.15);
    width: 100%;
    max-width: 640px;
}
.parallax-stat { text-align: center; }
.parallax-stat-num {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}
.parallax-stat-label {
    display: block;
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: rgba(255,255,255,.65);
    margin-top: 6px;
}

/* ── CTA BANNER ── */
.cta-banner {
    background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-darker) 100%);
    padding: 80px 0;
    text-align: center;
}
.cta-banner h2 { margin-bottom: 24px; color: var(--white); }
.cta-banner p { color: rgba(255,255,255,.75); margin-bottom: 32px; max-width: 500px; margin-left: auto; margin-right: auto; }

/* ── EDITION DETAIL FLYER ── */
.edition-flyer-section { padding-top: 60px; }
.edition-flyer-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    line-height: 0;
}
.edition-flyer-full {
    width: 100%;
    display: block;
    border-radius: var(--radius-lg);
}
.edition-flyer-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent 0%, rgba(10,20,15,0.82) 35%, rgba(10,20,15,0.95) 100%);
    padding: 60px 48px 48px;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}
.edition-flyer-overlay .prose {
    color: rgba(255,255,255,.9);
    font-size: 1rem;
    line-height: 1.75;
    max-width: 680px;
}
.edition-flyer-overlay .prose p { color: rgba(255,255,255,.9); }
@media (max-width: 768px) {
  .edition-flyer-overlay { padding: 32px 24px 28px; }
  .edition-flyer-overlay .prose { font-size: .9rem; }
}

/* ── PAST EDITIONS ── */
.edition-card { display: flex; gap: 32px; align-items: flex-start; }
.edition-year-badge {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    color: var(--gold);
    opacity: .35;
    min-width: 100px;
    line-height: 1;
    text-align: center;
}
.edition-content { flex: 1; }
.edition-theme { font-style: italic; color: var(--green-deep); font-size: .9rem; margin-bottom: 8px; font-weight: 600; }
.edition-speakers { margin-top: 20px; }
.speakers-label { color: var(--text-muted); font-size: .85rem; margin-bottom: 12px; }
.edition-speakers-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 12px; }
.edition-speaker-item { display: flex; gap: 12px; align-items: center; }
.mini-avatar { width: 40px; height: 40px; border-radius: 50%; overflow: hidden; flex-shrink: 0; background: var(--off-white); border: 2px solid var(--border-light); }
.mini-avatar img { width: 100%; height: 100%; object-fit: cover; }
.mini-avatar-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: var(--gold); font-weight: 700; }
.edition-speaker-item small { color: var(--text-muted); font-size: .8rem; }
.edition-actions { margin-top: 24px; }

/* ── ABOUT ── */
.vm-card { background: var(--white); border: 1px solid var(--border-light); border-radius: var(--radius-lg); padding: 40px 32px; text-align: center; box-shadow: var(--shadow-sm); }
.vm-icon { font-size: 2.5rem; color: var(--gold); margin-bottom: 16px; }
.vm-card h3 { margin-bottom: 12px; }
.vm-card p { color: var(--text-body); margin: 0; }
.values-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; }
.value-item { background: var(--white); border: 1px solid var(--border-light); padding: 20px; border-radius: var(--radius); display: flex; gap: 12px; align-items: center; color: var(--text-body); box-shadow: var(--shadow-sm); }
.value-item i { color: var(--green-deep); }
.profile-card { display: flex; gap: 40px; align-items: flex-start; }
.profile-photo { width: 200px; height: 200px; border-radius: 50%; overflow: hidden; flex-shrink: 0; border: 3px solid var(--gold); }
.profile-photo img { width: 100%; height: 100%; object-fit: cover; }
.profile-info h3 { margin-bottom: 6px; }
.profile-info .profile-title { color: var(--green-deep); font-size: .9rem; margin-bottom: 12px; }
.profile-bio { color: var(--text-body); }

/* ── VENUE ── */
.venue-card { background: var(--off-white); border: 1px solid var(--border-light); border-radius: var(--radius-lg); overflow: hidden; display: grid; grid-template-columns: 1fr 1fr; min-height: 380px; }
.venue-details { padding: 40px; }
.venue-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 20px; }
.venue-item i { color: var(--green-deep); font-size: 1.2rem; min-width: 24px; margin-top: 3px; }
.venue-actions { margin-top: 24px; }
.venue-map { position: relative; min-height: 320px; }
.venue-map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
@media (max-width: 768px) {
  .venue-card { grid-template-columns: 1fr; }
  .venue-map { min-height: 280px; }
}

/* ── FORMS ── */
.form-wrapper { max-width: 680px; margin: 0 auto; }
/* Register page two-column layout */
.register-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.register-flyer-col { position: sticky; top: calc(var(--header-h) + 24px); }
.register-flyer-img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); display: block; }
.event-meta { display: flex; flex-wrap: wrap; gap: 16px; padding: 24px; background: var(--off-white); border: 1px solid var(--border-light); border-radius: var(--radius); margin-bottom: 40px; }
.event-meta-item { display: flex; align-items: center; gap: 8px; font-size: .9rem; color: var(--text-body); }
.event-meta-item i { color: var(--green-deep); }
.registration-form, .contact-form-col form { background: var(--off-white); border: 1px solid var(--border-light); border-radius: var(--radius-lg); padding: 40px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: .85rem; font-weight: 600; margin-bottom: 6px; color: var(--text-dark); }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; background: var(--white); border: 1px solid #D0D0D0;
    border-radius: var(--radius); padding: 12px 16px; color: var(--text-dark);
    font-family: var(--font-body); font-size: .95rem; transition: border-color .2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none; border-color: var(--green-deep);
}
.form-group select option { background: var(--white); color: var(--text-dark); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.radio-group { display: flex; gap: 20px; flex-wrap: wrap; }
.radio-label { display: flex; align-items: center; gap: 8px; cursor: pointer; color: var(--text-body); }
.radio-label input { width: auto; }
.req { color: var(--gold); }
.checkbox-label { display: flex !important; align-items: center; gap: 8px; cursor: pointer; font-weight: 400 !important; color: var(--text-body); }
.checkbox-label input { width: auto; }
.consent-group { margin-top: 8px; padding: 16px; background: rgba(15,61,46,0.05); border: 1px solid rgba(15,61,46,0.12); border-radius: var(--radius); }
.consent-label { display: flex !important; align-items: flex-start; gap: 12px; cursor: pointer; font-size: .875rem; color: var(--text-body); font-weight: 400 !important; line-height: 1.5; }
.consent-label input[type="checkbox"] { width: 16px; height: 16px; margin-top: 2px; flex-shrink: 0; accent-color: var(--green-deep); cursor: pointer; }
.form-feedback { margin-top: 12px; font-size: .9rem; }
.form-feedback.success { color: #2e7d32; }
.form-feedback.error { color: #c62828; }

/* ── CONTACT ── */
.contact-layout { display: grid; grid-template-columns: 1fr 400px; gap: 60px; align-items: start; }
.contact-info-col h3 { margin-bottom: 24px; }
.info-items { display: flex; flex-direction: column; gap: 20px; }
.info-item { display: flex; gap: 16px; align-items: flex-start; }
.info-icon { width: 40px; height: 40px; background: var(--off-white); border: 1px solid var(--border-light); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; color: var(--green-deep); flex-shrink: 0; }
.info-item strong { display: block; font-size: .8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 4px; }

/* ── BLOG ── */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 28px; }
.blog-card { background: var(--white); border: 1px solid var(--border-light); border-radius: var(--radius-lg); overflow: hidden; text-decoration: none; color: var(--text-dark); transition: transform .3s, box-shadow .3s; box-shadow: var(--shadow-sm); }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--gold); color: var(--text-dark); }
.blog-image { aspect-ratio: 16/9; overflow: hidden; background: var(--off-white); }
.blog-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.blog-card:hover .blog-image img { transform: scale(1.04); }
.blog-image-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 2rem; color: var(--border-light); }
.blog-body { padding: 24px; }
.blog-category { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--green-deep); }
.blog-body h3 { margin: 8px 0; color: var(--text-dark); }
.blog-body p { color: var(--text-muted); font-size: .9rem; margin: 0 0 12px; }
.blog-meta { display: flex; justify-content: space-between; font-size: .8rem; color: var(--text-muted); }
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 40px; }
.page-btn { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: var(--radius); border: 1px solid var(--border-light); color: var(--text-dark); transition: .2s; }
.page-btn.active, .page-btn:hover { background: var(--green-deep); border-color: var(--green-deep); color: var(--white); }
.post-footer { margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--border-light); }
.blog-body .prose { color: var(--text-body); }

/* ── GALLERY ── */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 8px; }
.gallery-item { position: relative; aspect-ratio: 1; overflow: hidden; border-radius: var(--radius); cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.4); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity .2s; color: var(--white); font-size: 1.5rem; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-year-label { font-family: var(--font-heading); font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--text-muted); margin-bottom: 16px; padding-bottom: 8px; border-bottom: 1px solid var(--border-light); }
.tab-nav { display: flex; gap: 4px; margin-bottom: 32px; border-bottom: 2px solid var(--border-light); }
.tab-btn { padding: 12px 24px; background: none; border: none; cursor: pointer; font-family: var(--font-heading); font-weight: 600; font-size: .9rem; color: var(--text-muted); border-bottom: 2px solid transparent; margin-bottom: -2px; transition: .2s; }
.tab-btn.active, .tab-btn:hover { color: var(--green-deep); border-bottom-color: var(--green-deep); }
.tab-content { display: none; }
.tab-content.active { display: block; }

/* ── LIGHTBOX ── */
.lightbox { position: fixed; inset: 0; z-index: 9000; background: rgba(0,0,0,.95); display: flex; align-items: center; justify-content: center; }
.lightbox-close { position: fixed; top: 20px; right: 24px; background: none; border: none; color: var(--white); font-size: 2rem; cursor: pointer; z-index: 9001; line-height: 1; }
.lightbox-close:hover { color: var(--gold); }
.lightbox-img-wrap { position: relative; display: flex; flex-direction: column; align-items: center; }
#lightboxImg { max-width: 90vw; max-height: 85vh; border-radius: var(--radius); display: block; }
.lightbox-counter { margin-top: 12px; color: rgba(255,255,255,.6); font-size: .85rem; letter-spacing: .05em; text-align: center; }
.lightbox-nav { position: fixed; background: rgba(255,255,255,.1); border: none; color: var(--white); font-size: 1.5rem; padding: 16px 20px; cursor: pointer; border-radius: var(--radius); top: 50%; transform: translateY(-50%); transition: background .2s; z-index: 9001; }
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-nav:hover { background: rgba(212,160,23,.4); color: var(--gold); }
@media (max-width: 600px) {
  .lightbox-nav { padding: 10px 14px; font-size: 1.2rem; }
  .lightbox-prev { left: 6px; }
  .lightbox-next { right: 6px; }
}

/* ── RESOURCES ── */
.resources-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.resource-card { background: var(--white); border: 1px solid var(--border-light); border-radius: var(--radius-lg); padding: 28px; display: flex; flex-direction: column; gap: 16px; box-shadow: var(--shadow-sm); }
.resource-icon { font-size: 2rem; color: var(--gold); }
.resource-info { flex: 1; }
.resource-cat { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--green-deep); display: block; margin-bottom: 6px; }
.resource-info h3 { font-size: 1rem; margin-bottom: 8px; color: var(--text-dark); }
.resource-info p { color: var(--text-muted); font-size: .9rem; margin: 0; }
.filter-bar { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; }
.filter-btn { padding: 8px 20px; border-radius: 20px; border: 1px solid var(--border-light); color: var(--text-muted); font-size: .85rem; transition: .2s; background: var(--white); cursor: pointer; }
.filter-btn.active, .filter-btn:hover { background: var(--green-deep); border-color: var(--green-deep); color: var(--white); }

/* ── FOOTER ── */
.site-footer { background: #081f17; border-top: 1px solid rgba(255,255,255,.07); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; padding-bottom: 40px; }
.footer-logo { height: 80px; margin-bottom: 16px; }
.footer-about { font-size: .88rem; color: rgba(255,255,255,.55); max-width: 280px; margin-bottom: 14px; line-height: 1.65; }
.footer-tagline { font-size: .8rem; color: rgba(255,255,255,.35); max-width: 280px; margin-bottom: 20px; font-style: italic; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,.15); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.45); transition: .2s; }
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-links h4, .footer-contact h4 { font-size: .85rem; text-transform: uppercase; letter-spacing: .1em; color: var(--gold); margin-bottom: 16px; }
.footer-links ul li { margin-bottom: 10px; }
.footer-links ul li a { color: rgba(255,255,255,.45); font-size: .9rem; transition: color .2s; }
.footer-links ul li a:hover { color: var(--gold); }
.footer-contact p { display: flex; align-items: flex-start; gap: 10px; color: rgba(255,255,255,.45); font-size: .9rem; margin-bottom: 10px; }
.footer-address { display: block; font-size: .82rem; line-height: 1.4; margin-top: 4px; color: rgba(255,255,255,.35); }
.footer-contact i { color: var(--gold); margin-top: 3px; }
.footer-contact a { color: rgba(255,255,255,.45); }
.footer-contact a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding: 20px 0; text-align: center; }
.footer-bottom p { color: rgba(255,255,255,.3); font-size: .85rem; margin: 0; }

/* ── ALERTS ── */
.alert { padding: 14px 20px; border-radius: var(--radius); margin-bottom: 20px; display: flex; align-items: flex-start; gap: 10px; }
.alert-success { background: #e8f5e9; border: 1px solid #a5d6a7; color: #2e7d32; }
.alert-danger  { background: #ffebee; border: 1px solid #ef9a9a; color: #c62828; }

/* ── SCROLL TO TOP ── */
#scroll-top {
    position: fixed; bottom: 24px; right: 24px; z-index: 999;
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--gold); color: var(--near-black);
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    opacity: 0; pointer-events: none;
    transition: opacity .3s, transform .3s;
    box-shadow: 0 4px 12px rgba(212,160,23,.4);
}
#scroll-top.visible { opacity: 1; pointer-events: auto; }
#scroll-top:hover { transform: translateY(-3px); color: var(--near-black); }

/* ── CONFERENCE OVERVIEW ── */
.conference-overview { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.conference-overview-text { display: flex; flex-direction: column; gap: 24px; align-items: flex-start; }
.conference-flyer { }
.conference-flyer-img { width: 100%; display: block; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }

/* ── VIDEO EMBED ── */
.video-embed { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); background: #000; }
.video-embed iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }

/* ── SPEAKER NAV ── */
.speaker-nav { border-top: 1px solid var(--border-light); padding: 32px 0; background: var(--white); }
.speaker-nav-inner { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 16px; }
.speaker-nav-prev { justify-self: start; }
.speaker-nav-next { justify-self: end; }
.speaker-nav-link { display: flex; flex-direction: column; gap: 4px; text-decoration: none; padding: 12px 16px; border-radius: var(--radius); border: 1px solid var(--border-light); transition: border-color .2s, background .2s; }
.speaker-nav-link:hover { border-color: var(--gold); background: var(--off-white); }
.speaker-nav-link-right { text-align: right; }
.speaker-nav-dir { font-size: .8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .07em; }
.speaker-nav-name { font-size: .95rem; font-weight: 600; color: var(--green-deep); }

/* ── MISC ── */
.empty-state { text-align: center; color: var(--text-muted); padding: 60px 20px; }
.mb-4 { margin-bottom: 24px; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .speaker-profile { grid-template-columns: 280px 1fr; gap: 40px; }
    .register-layout { grid-template-columns: 1fr; }
    .register-flyer-col { position: static; }
    .conference-overview { grid-template-columns: 1fr; }
    .speaker-nav-inner { grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; }
    .speaker-nav-inner .btn-outline { grid-column: 1 / -1; justify-self: center; order: -1; }
}

@media (max-width: 768px) {
    :root { --header-h: 68px; }
    .section { padding: 60px 0; }
    .two-col, .two-col-equal { grid-template-columns: 1fr; }
    .col-media { order: -1; }
    .footer-grid { grid-template-columns: 1fr; }
    .contact-layout { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .hero { min-height: 75vh; }
    .hero-page { min-height: 45vh; }
    .speakers-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 16px; }
    .speaker-profile { grid-template-columns: 1fr; }
    .profile-card { flex-direction: column; align-items: center; text-align: center; }
    .edition-card { flex-direction: column; }
    .edition-year-badge { font-size: 2.5rem; }

    .primary-nav {
        display: none;
        position: absolute;
        top: var(--header-h);
        left: 0; right: 0;
        background: var(--green-deep);
        flex-direction: column;
        padding: 16px;
        border-bottom: 1px solid rgba(212,160,23,.2);
        gap: 4px;
        box-shadow: 0 8px 24px rgba(0,0,0,.2);
    }
    .primary-nav.open { display: flex; }
    .nav-toggle { display: flex; }
    .nav-link { padding: 12px 16px; }
    .nav-cta { margin-top: 8px; }
}

@media (max-width: 480px) {
    .hero-actions { flex-direction: column; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
