/* ── Energy Nexus Magazine — Public Site Styles ───────────── */
:root {
  --gold:        #c8a04d;
  --gold-light:  #d4aa5a;
  --dark-1:      #0b1320;
  --dark-2:      #111827;
  --dark-3:      #1a2535;
  --dark-4:      #232f45;
  --text:        #e8eaf0;
  --text-muted:  #8892a4;
  --text-light:  #cbd5e1;
  --border:      rgba(200,160,77,.18);
  --white:       #ffffff;
  --font-serif:  'Playfair Display', Georgia, serif;
  --font-sans:   'DM Sans', system-ui, sans-serif;
  --radius:      6px;
  --shadow:      0 4px 24px rgba(0,0,0,.35);
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-sans); background: var(--dark-1); color: var(--text); line-height: 1.6; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 4rem 0; }
.section-dark { background: var(--dark-2); }
.btn { display: inline-flex; align-items: center; gap: .4rem; padding: .65rem 1.4rem; border-radius: var(--radius); font-weight: 500; font-size: .9rem; border: none; cursor: pointer; transition: all .2s; white-space: nowrap; }
.btn-gold { background: var(--gold); color: var(--dark-1); font-weight: 600; }
.btn-gold:hover { background: var(--gold-light); }
.btn-outline { border: 1.5px solid var(--gold); color: var(--gold); background: transparent; }
.btn-outline:hover { background: rgba(200,160,77,.12); }
.btn-outline-light { border: 1.5px solid rgba(255,255,255,.5); color: var(--white); background: transparent; }
.btn-outline-light:hover { border-color: var(--gold); color: var(--gold); }

/* ── NAV ── */
.site-nav { position: sticky; top: 0; z-index: 100; background: rgba(11,19,32,.97); border-bottom: 1px solid var(--border); backdrop-filter: blur(10px); }
.nav-inner { max-width: 1240px; margin: 0 auto; padding: 0 1.5rem; display: flex; align-items: center; gap: 2rem; height: 64px; }
.nav-brand { display: flex; flex-direction: column; line-height: 1; }
.nav-brand-main { font-family: var(--font-serif); font-weight: 700; font-size: 1.15rem; color: var(--white); letter-spacing: .06em; }
.nav-brand-sub { font-size: .6rem; letter-spacing: .18em; color: var(--gold); text-transform: uppercase; }
.nav-links { display: flex; gap: .25rem; flex: 1; }
.nav-link { padding: .45rem .85rem; border-radius: 4px; font-size: .875rem; color: var(--text-muted); transition: color .15s; }
.nav-link:hover,.nav-link.active { color: var(--white); }
.nav-link.active { background: rgba(200,160,77,.1); color: var(--gold); }
.nav-actions { display: flex; align-items: center; gap: .75rem; }
.nav-search-btn { background: none; border: none; cursor: pointer; color: var(--text-muted); padding: .5rem; border-radius: 4px; }
.nav-search-btn:hover { color: var(--white); }
.btn-nav-subscribe { background: var(--gold); color: var(--dark-1); padding: .4rem 1rem; border-radius: var(--radius); font-size: .8rem; font-weight: 600; }
.nav-hamburger { display: none; flex-direction: column; gap: 4px; background: none; border: none; cursor: pointer; padding: .5rem; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all .25s; }
.nav-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 99; }

/* ── HERO ── */
.hero { position: relative; min-height: 78vh; display: flex; align-items: center; overflow: hidden; background: var(--dark-1); }
.hero-bg { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(11,19,32,1) 0%, rgba(18,30,55,1) 100%); }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c8a04d' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.hero-content { position: relative; max-width: 700px; padding: 6rem 1.5rem; margin: 0 auto; text-align: center; }
.hero-kicker { display: inline-block; padding: .35rem .9rem; background: rgba(200,160,77,.15); border: 1px solid var(--border); border-radius: 20px; color: var(--gold); font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 1.5rem; }
.hero-title { font-family: var(--font-serif); font-size: clamp(2.4rem,5vw,4rem); font-weight: 900; line-height: 1.1; color: var(--white); margin-bottom: 1.25rem; }
.hero-title em { color: var(--gold); font-style: normal; }
.hero-sub { color: var(--text-muted); font-size: 1.1rem; max-width: 560px; margin: 0 auto 2rem; }
.hero-actions { display: flex; gap: .75rem; justify-content: center; flex-wrap: wrap; }

/* ── PAGE HEADER ── */
.page-header { padding: 3.5rem 0 2.5rem; background: var(--dark-3); border-bottom: 1px solid var(--border); }
.page-header-dark { background: var(--dark-2); }
.page-kicker { display: block; color: var(--gold); font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: .5rem; }
.page-title { font-family: var(--font-serif); font-size: clamp(1.8rem,4vw,3rem); font-weight: 700; color: var(--white); margin-bottom: .5rem; }
.page-sub { color: var(--text-muted); max-width: 600px; }

/* ── SECTION HEADERS ── */
.section-header { display: flex; align-items: baseline; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }
.section-kicker { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); }
.section-kicker.light { color: var(--gold); }
.section-title { font-family: var(--font-serif); font-size: 1.6rem; font-weight: 700; color: var(--white); flex: 1; }
.section-link { color: var(--gold); font-size: .85rem; margin-left: auto; }
.section-link:hover { text-decoration: underline; }
.section-link.light { color: var(--gold-light); }

/* ── ARTICLE CARDS ── */
.articles-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }
.articles-grid-3 { grid-template-columns: repeat(3, 1fr); }
.article-card { background: var(--dark-3); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); transition: transform .2s, box-shadow .2s; }
.article-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.article-card a { display: block; height: 100%; }
.article-img-wrap { height: 200px; overflow: hidden; }
.article-img { height: 200px; background-size: cover; background-position: center; background-color: var(--dark-4); }
.article-img-placeholder { background: linear-gradient(135deg, var(--dark-4), var(--dark-3)); display: flex; align-items: center; justify-content: center; font-size: 2rem; }
.article-body { padding: 1.1rem 1.2rem; }
.article-cat { display: inline-block; padding: .2rem .6rem; background: rgba(200,160,77,.15); color: var(--gold); border-radius: 3px; font-size: .7rem; letter-spacing: .05em; text-transform: uppercase; margin-bottom: .6rem; }
.article-cat-sm { font-size: .65rem; color: var(--gold); }
.article-title { font-size: 1rem; font-weight: 600; color: var(--white); line-height: 1.35; margin-bottom: .4rem; }
.article-title-lg { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 700; color: var(--white); line-height: 1.25; margin-bottom: .75rem; }
.article-excerpt { font-size: .85rem; color: var(--text-muted); line-height: 1.5; }
.article-meta { display: flex; gap: .75rem; font-size: .75rem; color: var(--text-muted); margin-top: .75rem; flex-wrap: wrap; }
.article-date { font-size: .75rem; color: var(--text-muted); }

/* ── FEATURED GRID ── */
.featured-grid { display: grid; grid-template-columns: 1fr 380px; gap: 1.5rem; }
.featured-hero .article-img { height: 380px; border-radius: var(--radius) var(--radius) 0 0; }
.featured-hero .article-body { background: var(--dark-3); border-radius: 0 0 var(--radius) var(--radius); border: 1px solid var(--border); border-top: none; padding: 1.5rem; }
.featured-side { display: flex; flex-direction: column; gap: 1rem; }
.article-card-sm { background: var(--dark-3); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); transition: transform .2s; }
.article-card-sm:hover { transform: translateY(-2px); }
.article-card-sm a { display: flex; gap: .75rem; padding: .75rem; }
.article-img-sm { width: 80px; height: 70px; flex-shrink: 0; background-size: cover; background-position: center; border-radius: 4px; background-color: var(--dark-4); }
.article-body-sm { flex: 1; }
.article-title-sm { font-size: .88rem; font-weight: 600; color: var(--white); line-height: 1.3; }

/* ── EVENTS ── */
.events-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }
.event-card { background: var(--dark-3); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); transition: transform .2s; }
.event-card:hover { transform: translateY(-3px); }
.event-card a { display: block; }
.event-img { height: 180px; background-size: cover; background-position: center; background-color: var(--dark-4); }
.event-img-placeholder { background: linear-gradient(135deg, var(--dark-4), var(--dark-2)); display: flex; align-items: center; justify-content: center; font-size: 3rem; }
.event-body { padding: 1.1rem 1.2rem; }
.event-type { display: inline-block; padding: .15rem .5rem; background: rgba(200,160,77,.15); color: var(--gold); border-radius: 3px; font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; margin-bottom: .5rem; }
.event-title { font-size: 1.05rem; font-weight: 600; color: var(--white); margin-bottom: .5rem; }
.event-date,.event-location { display: flex; align-items: center; gap: .35rem; font-size: .8rem; color: var(--text-muted); margin-top: .35rem; }
.event-cta { display: inline-block; margin-top: .75rem; color: var(--gold); font-size: .82rem; font-weight: 600; }
.event-meta-bar { display: flex; flex-wrap: wrap; gap: 1.25rem; margin-top: 1rem; font-size: .9rem; color: var(--text-light); }

/* ── ARTICLE DETAIL ── */
.article-hero-img { height: 420px; background-size: cover; background-position: center; background-color: var(--dark-4); }
.article-layout { display: grid; grid-template-columns: 1fr 300px; gap: 2.5rem; max-width: 1100px; }
.article-main { min-width: 0; }
.article-cat-link { display: inline-block; color: var(--gold); font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; margin-bottom: .75rem; }
.article-page-title { font-family: var(--font-serif); font-size: clamp(1.8rem,3.5vw,2.6rem); font-weight: 800; line-height: 1.15; color: var(--white); margin-bottom: 1rem; }
.article-lead { font-size: 1.15rem; color: var(--text-light); margin-bottom: 1.5rem; line-height: 1.6; }
.article-byline { display: flex; flex-wrap: wrap; gap: 1rem; font-size: .8rem; color: var(--text-muted); margin-bottom: 2rem; padding-bottom: 1.25rem; border-bottom: 1px solid var(--border); }
.article-content { font-size: 1rem; line-height: 1.85; color: var(--text-light); }
.article-content h2 { font-family: var(--font-serif); font-size: 1.4rem; color: var(--white); margin: 2rem 0 .75rem; }
.article-content h3 { font-size: 1.15rem; color: var(--white); margin: 1.5rem 0 .5rem; }
.article-content p { margin-bottom: 1.25rem; }
.article-content ul,.article-content ol { margin: 1rem 0 1rem 1.5rem; }
.article-content li { margin-bottom: .4rem; }
.article-tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 2rem; }
.tag-pill { padding: .25rem .65rem; background: var(--dark-4); border-radius: 20px; font-size: .78rem; color: var(--text-muted); transition: color .15s; }
.tag-pill:hover { color: var(--gold); }
.article-share { display: flex; align-items: center; gap: .75rem; margin-top: 1.5rem; font-size: .85rem; color: var(--text-muted); }
.share-btn { padding: .3rem .75rem; border: 1px solid var(--border); border-radius: 4px; font-size: .8rem; transition: border-color .15s; }
.share-btn:hover { border-color: var(--gold); color: var(--gold); }
.article-sidebar { min-width: 0; }

/* ── SIDEBAR ── */
.sidebar-widget { background: var(--dark-3); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; margin-bottom: 1.5rem; }
.widget-title { font-size: .9rem; font-weight: 700; color: var(--white); letter-spacing: .04em; text-transform: uppercase; margin-bottom: .75rem; }
.widget-text { font-size: .85rem; color: var(--text-muted); margin-bottom: 1rem; }
.widget-form { display: flex; flex-direction: column; gap: .5rem; }
.widget-input,.form-field { width: 100%; padding: .6rem .85rem; background: var(--dark-4); border: 1px solid var(--border); border-radius: var(--radius); color: var(--text); font-family: var(--font-sans); font-size: .85rem; }
.widget-input:focus,.form-field:focus { outline: none; border-color: var(--gold); }

/* ── RANKINGS ── */
.rankings-preview { display: flex; flex-direction: column; gap: .75rem; }
.rank-item { display: flex; align-items: center; gap: 1rem; background: var(--dark-3); padding: .85rem 1.2rem; border-radius: var(--radius); border: 1px solid var(--border); }
.rank-num { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 800; color: var(--gold); min-width: 35px; }
.rank-photo { width: 44px; height: 44px; border-radius: 50%; background-size: cover; background-position: center; flex-shrink: 0; }
.rank-photo-placeholder { background: var(--dark-4); display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--gold); font-size: .9rem; }
.rank-info { flex: 1; }
.rank-name { font-weight: 600; color: var(--white); font-size: .95rem; }
.rank-role { font-size: .78rem; color: var(--text-muted); }
.rank-sector { display: inline-block; margin-top: .25rem; padding: .1rem .5rem; background: rgba(200,160,77,.12); color: var(--gold); border-radius: 3px; font-size: .68rem; }
.ranking-tabs { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.5rem; }
.ranking-tab { padding: .35rem .8rem; border-radius: 20px; background: var(--dark-3); border: 1px solid var(--border); color: var(--text-muted); font-size: .8rem; cursor: pointer; transition: all .15s; }
.ranking-tab.active { background: var(--gold); border-color: var(--gold); color: var(--dark-1); font-weight: 600; }
.rankings-list { display: flex; flex-direction: column; gap: .75rem; }
.rank-row { display: flex; align-items: center; gap: 1.25rem; background: var(--dark-3); padding: 1rem 1.5rem; border-radius: var(--radius); border: 1px solid var(--border); }
.rank-num-lg { font-family: var(--font-serif); font-size: 1.3rem; font-weight: 800; min-width: 40px; color: var(--text-muted); }
.rank-details { flex: 1; }
.rank-name-lg { font-weight: 700; color: var(--white); }
.rank-role-lg { font-size: .8rem; color: var(--text-muted); }
.rank-country { font-size: .75rem; color: var(--text-muted); margin-top: .2rem; }
.rank-sector-badge { padding: .2rem .6rem; background: rgba(200,160,77,.12); color: var(--gold); border-radius: 3px; font-size: .7rem; }

/* ── MAGAZINE ── */
.magazine-featured { display: grid; grid-template-columns: auto 1fr; gap: 3rem; align-items: center; background: var(--dark-3); padding: 2.5rem; border-radius: var(--radius); border: 1px solid var(--border); margin-bottom: 3rem; }
.mag-cover-lg { width: 220px; box-shadow: 0 8px 32px rgba(0,0,0,.5); border-radius: 4px; }
.magazine-featured-info h2 { font-family: var(--font-serif); font-size: 1.8rem; color: var(--white); margin: .5rem 0 1rem; }
.magazine-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1.5rem; }
.magazine-card { background: var(--dark-3); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); transition: transform .2s; }
.magazine-card:hover { transform: translateY(-3px); }
.mag-thumb { width: 100%; height: 240px; object-fit: cover; }
.mag-thumb-placeholder { height: 240px; background: var(--dark-4); display: flex; align-items: center; justify-content: center; font-size: 3rem; }
.magazine-card-info { padding: 1rem; }
.magazine-card-info h3 { font-size: .95rem; font-weight: 600; color: var(--white); }
.mag-date,.mag-downloads { display: block; font-size: .75rem; color: var(--text-muted); margin-top: .25rem; }
.mag-detail-layout { display: grid; grid-template-columns: 260px 1fr; gap: 2.5rem; }
.mag-detail-info h3 { font-size: 1.15rem; font-weight: 700; color: var(--white); margin-bottom: 1rem; }
.mag-detail-info p { font-size: .9rem; margin-bottom: .5rem; color: var(--text-muted); }
.mag-gate { background: var(--dark-3); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; }
.mag-gate h3 { margin-bottom: 1rem; }

/* ── AWARDS ── */
.awards-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }
.award-card { background: var(--dark-3); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); transition: transform .2s; }
.award-card:hover { transform: translateY(-3px); }
.award-card a { display: block; }
.award-img { height: 200px; background-size: cover; background-position: center; background-color: var(--dark-4); }
.award-img-placeholder { display: flex; align-items: center; justify-content: center; font-size: 4rem; }
.award-body { padding: 1.25rem; }
.award-title { font-family: var(--font-serif); font-size: 1.2rem; color: var(--white); margin-bottom: .4rem; }
.award-edition { display: inline-block; font-size: .73rem; color: var(--gold); letter-spacing: .06em; text-transform: uppercase; }
.award-excerpt { font-size: .85rem; color: var(--text-muted); margin-top: .5rem; }
.badge-nominations-open { display: inline-block; margin-top: .75rem; padding: .2rem .6rem; background: rgba(31,107,79,.2); border: 1px solid rgba(31,107,79,.4); color: #4caf50; border-radius: 3px; font-size: .72rem; }
.award-detail-layout { display: grid; grid-template-columns: 1fr 320px; gap: 2.5rem; }
.award-cats-list { display: flex; flex-direction: column; gap: .5rem; }
.award-cat-item { padding: .65rem 1rem; background: var(--dark-3); border: 1px solid var(--border); border-radius: var(--radius); font-size: .9rem; color: var(--text-light); }
.award-criteria { color: var(--text-muted); line-height: 1.7; }
.award-detail-meta { background: var(--dark-3); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.25rem; margin-top: 1.5rem; }
.award-detail-meta p { font-size: .9rem; color: var(--text-muted); margin-bottom: .4rem; }

/* ── REPORTS ── */
.reports-featured-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }
.report-card-featured { display: flex; gap: 1.25rem; background: var(--dark-3); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); padding: 1.25rem; transition: transform .2s; }
.report-card-featured:hover { transform: translateY(-2px); }
.report-thumb { width: 100px; height: 140px; object-fit: cover; border-radius: 4px; flex-shrink: 0; }
.report-thumb-sm { width: 70px; height: 96px; object-fit: cover; border-radius: 4px; flex-shrink: 0; }
.report-thumb-placeholder { background: var(--dark-4); display: flex; align-items: center; justify-content: center; font-size: 2rem; }
.report-info h3 { font-size: 1rem; font-weight: 600; color: var(--white); margin: .4rem 0; }
.report-cta { display: inline-block; margin-top: .75rem; color: var(--gold); font-size: .82rem; font-weight: 600; }
.reports-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1rem; }
.report-card { display: flex; gap: 1rem; background: var(--dark-3); border-radius: var(--radius); border: 1px solid var(--border); padding: 1rem; transition: transform .2s; }
.report-card:hover { transform: translateY(-2px); }
.report-info-sm h3 { font-size: .92rem; font-weight: 600; color: var(--white); }
.report-author,.report-date { font-size: .75rem; color: var(--text-muted); display: block; margin-top: .2rem; }

/* ── EXECUTIVES ── */
.exec-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1.25rem; }
.exec-card { background: var(--dark-3); border-radius: var(--radius); padding: 1.25rem; border: 1px solid var(--border); text-align: center; }
.exec-photo { width: 72px; height: 72px; border-radius: 50%; background-size: cover; background-position: center; margin: 0 auto .75rem; }
.exec-photo-placeholder { background: var(--dark-4); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; font-weight: 700; color: var(--gold); }
.exec-name { font-weight: 700; color: var(--white); font-size: .95rem; }
.exec-title,.exec-company { font-size: .78rem; color: var(--text-muted); }

/* ── GALLERY ── */
.gallery-grid { columns: 3 240px; gap: 1rem; }
.gallery-item { break-inside: avoid; margin-bottom: 1rem; position: relative; border-radius: var(--radius); overflow: hidden; }
.gallery-item img { width: 100%; display: block; }
.gallery-caption { padding: .5rem .75rem; background: var(--dark-3); font-size: .8rem; color: var(--text-muted); }

/* ── MAGAZINE CTA ── */
.magazine-cta { display: grid; grid-template-columns: 1fr auto; gap: 3rem; align-items: center; }
.magazine-cta-text h2 { font-family: var(--font-serif); font-size: 1.8rem; color: var(--white); margin: .5rem 0 1rem; }
.magazine-cta-desc { color: var(--text-muted); margin-bottom: 1.5rem; }
.magazine-cover-img { width: 180px; box-shadow: 0 12px 40px rgba(0,0,0,.6); border-radius: 4px; }

/* ── SPONSORS ── */
.sponsors-row { display: flex; flex-wrap: wrap; gap: 1.5rem; align-items: center; justify-content: center; }
.sponsor-item img { height: 48px; max-width: 140px; object-fit: contain; opacity: .7; filter: grayscale(30%); transition: opacity .2s; }
.sponsor-item:hover img { opacity: 1; }
.sponsor-text { padding: .5rem 1rem; background: var(--dark-3); border-radius: 4px; font-size: .85rem; color: var(--text-muted); }

/* ── NEWSLETTER CTA ── */
.newsletter-cta { text-align: center; max-width: 540px; margin: 0 auto; }
.newsletter-cta h2 { font-family: var(--font-serif); font-size: 1.8rem; color: var(--white); margin-bottom: .75rem; }
.newsletter-cta p { color: var(--text-muted); margin-bottom: 1.5rem; }
.newsletter-cta-form { display: flex; gap: .5rem; max-width: 440px; margin: 0 auto; }
.newsletter-cta-form input { flex: 1; padding: .65rem .9rem; background: var(--dark-3); border: 1px solid var(--border); border-radius: var(--radius); color: var(--text); font-size: .9rem; }
.sub-confirm { font-size: .85rem; color: #4caf50; margin-top: .5rem; }

/* ── CONTACT ── */
.contact-layout { display: grid; grid-template-columns: 1fr 280px; gap: 3rem; }
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-form .form-group { margin-bottom: 1rem; }
.contact-form label { display: block; font-size: .82rem; color: var(--text-muted); margin-bottom: .35rem; }
.form-control { width: 100%; padding: .65rem .85rem; background: var(--dark-3); border: 1px solid var(--border); border-radius: var(--radius); color: var(--text); font-family: var(--font-sans); font-size: .9rem; }
.form-control:focus { outline: none; border-color: var(--gold); }
textarea.form-control { resize: vertical; }
.contact-info h3 { font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 1.25rem; }
.contact-detail { margin-bottom: 1.25rem; }
.contact-detail strong { display: block; font-size: .75rem; text-transform: uppercase; letter-spacing: .08em; color: var(--gold); margin-bottom: .25rem; }
.contact-detail a,.contact-detail p { color: var(--text-muted); font-size: .9rem; }
.alert { padding: .85rem 1.1rem; border-radius: var(--radius); margin-bottom: 1.25rem; font-size: .9rem; }
.alert-success { background: rgba(31,107,79,.15); border: 1px solid rgba(76,175,80,.3); color: #4caf50; }
.alert-error { background: rgba(200,50,50,.15); border: 1px solid rgba(229,57,53,.3); color: #ef5350; }

/* ── PAGINATION ── */
.pagination { display: flex; justify-content: center; gap: .5rem; margin-top: 3rem; flex-wrap: wrap; }

/* ── EMPTY STATE ── */
.empty-state { text-align: center; padding: 4rem 2rem; color: var(--text-muted); }
.empty-state p { margin-bottom: 1rem; }

/* ── FOOTER ── */
.site-footer { background: var(--dark-2); border-top: 1px solid var(--border); padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(4, 1fr); gap: 2.5rem; margin-bottom: 3rem; }
.footer-logo { font-family: var(--font-serif); font-size: 1.3rem; font-weight: 700; color: var(--white); }
.footer-logo span { display: block; font-size: .65rem; letter-spacing: .2em; color: var(--gold); font-family: var(--font-sans); text-transform: uppercase; margin-top: .1rem; }
.footer-tagline { font-size: .82rem; color: var(--text-muted); margin: .75rem 0; line-height: 1.5; }
.footer-copy { font-size: .78rem; color: var(--text-muted); }
.footer-col h4 { font-size: .75rem; text-transform: uppercase; letter-spacing: .1em; color: var(--gold); margin-bottom: .85rem; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: .4rem; }
.footer-col a { font-size: .85rem; color: var(--text-muted); transition: color .15s; }
.footer-col a:hover { color: var(--white); }
.footer-input { width: 100%; padding: .55rem .85rem; background: var(--dark-3); border: 1px solid var(--border); border-radius: var(--radius); color: var(--text); font-size: .85rem; margin-bottom: .5rem; }
.footer-input:focus { outline: none; border-color: var(--gold); }
.btn-footer-sub { width: 100%; padding: .55rem; background: var(--gold); color: var(--dark-1); border: none; border-radius: var(--radius); font-weight: 600; font-size: .85rem; cursor: pointer; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 1.5rem; border-top: 1px solid var(--border); font-size: .8rem; color: var(--text-muted); flex-wrap: wrap; gap: 1rem; }
.footer-legal { display: flex; gap: 1.25rem; }
.footer-legal a { color: var(--text-muted); transition: color .15s; }
.footer-legal a:hover { color: var(--white); }

/* ── SEARCH OVERLAY ── */
.search-overlay { position: fixed; inset: 0; background: rgba(11,19,32,.97); z-index: 200; display: flex; align-items: flex-start; justify-content: center; padding-top: 10vh; opacity: 0; pointer-events: none; transition: opacity .25s; }
.search-overlay.active { opacity: 1; pointer-events: all; }
.search-inner { width: 100%; max-width: 640px; padding: 0 1.5rem; position: relative; }
.search-input { width: 100%; background: transparent; border: none; border-bottom: 2px solid var(--gold); color: var(--white); font-size: 2rem; font-family: var(--font-serif); padding: .5rem 0; outline: none; }
.search-input::placeholder { color: var(--text-muted); }
.search-close { position: absolute; top: -2rem; right: 1.5rem; background: none; border: none; color: var(--text-muted); font-size: 1.5rem; cursor: pointer; }

/* ── SCROLL TOP ── */
.scroll-top { position: fixed; bottom: 1.5rem; right: 1.5rem; width: 40px; height: 40px; background: var(--gold); color: var(--dark-1); border: none; border-radius: 50%; cursor: pointer; font-size: 1.1rem; font-weight: 700; opacity: 0; transform: translateY(10px); transition: all .25s; z-index: 90; }
.scroll-top.visible { opacity: 1; transform: translateY(0); }

/* ── EVENT DETAIL ── */
.event-detail-layout { display: grid; grid-template-columns: 1fr 320px; gap: 2.5rem; }
.event-detail-main .event-lead { font-size: 1.1rem; color: var(--text-light); margin-bottom: 1.5rem; }
.event-content { color: var(--text-muted); line-height: 1.8; }
.speakers-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 1rem; }
.speaker-card { background: var(--dark-3); border-radius: var(--radius); padding: 1rem; border: 1px solid var(--border); }
.speaker-name { font-weight: 700; color: var(--white); }
.speaker-title { font-size: .8rem; color: var(--text-muted); margin-top: .2rem; }

/* ── ABOUT ── */
.about-intro .lead { font-size: 1.1rem; color: var(--text-light); margin-bottom: 2.5rem; line-height: 1.7; }
.about-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1.25rem; }
.about-card { background: var(--dark-3); border-radius: var(--radius); padding: 1.5rem; border: 1px solid var(--border); }
.about-icon { font-size: 2rem; margin-bottom: .75rem; }
.about-card h3 { font-weight: 700; color: var(--white); margin-bottom: .5rem; }
.about-card p { font-size: .875rem; color: var(--text-muted); }

/* ── TIER GRID ── */
.tier-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1.25rem; margin-top: 1.5rem; }
.tier-card { background: var(--dark-3); border-radius: var(--radius); padding: 1.5rem; border: 1px solid var(--border); }
.tier-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: .5rem; }
.tier-card p { font-size: .875rem; color: var(--text-muted); }

/* ── PARTNERS ── */
.partners-grid { display: flex; flex-wrap: wrap; gap: 1.5rem; align-items: center; margin-bottom: 3rem; }
.partner-card img { height: 50px; max-width: 150px; object-fit: contain; }
.partner-card span { color: var(--text-muted); }

/* ── SEARCH BAR ── */
.search-bar-form { display: flex; gap: .75rem; margin-bottom: 2rem; }
.search-bar-input { flex: 1; max-width: 500px; padding: .65rem 1rem; background: var(--dark-3); border: 1px solid var(--border); border-radius: var(--radius); color: var(--text); font-size: .95rem; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .featured-grid { grid-template-columns: 1fr; }
  .featured-side { display: grid; grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { display: none; }
}
@media (max-width: 768px) {
  .nav-links { display: none; position: fixed; top: 64px; left: 0; right: 0; bottom: 0; background: var(--dark-1); flex-direction: column; padding: 1.5rem; gap: .25rem; overflow-y: auto; z-index: 100; }
  .nav-links.open { display: flex; }
  .nav-hamburger { display: flex; }
  .articles-grid-3 { grid-template-columns: 1fr; }
  .featured-side { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .award-detail-layout,.event-detail-layout { grid-template-columns: 1fr; }
  .magazine-featured { grid-template-columns: 1fr; }
  .magazine-cta { grid-template-columns: 1fr; }
  .mag-detail-layout { grid-template-columns: 1fr; }
  .gallery-grid { columns: 2 160px; }
  .newsletter-cta-form { flex-direction: column; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 2rem; }
  .gallery-grid { columns: 1; }
  .articles-grid { grid-template-columns: 1fr; }
}
