/* ========================================================================
   AETERNUM — shared stylesheet
   Loaded by every page. Edit tokens in :root to reskin the whole site.
   ======================================================================== */

:root {
  --bg:       #07090F;
  --bg2:      #0C0F1C;
  --bg3:      #12162A;
  --accent:   #4EFFC8;
  --accent2:  #A78BFA;
  --text:     #DCE4F5;
  --muted:    #7884A0;
  --border:   rgba(255,255,255,0.07);
  --card:     rgba(255,255,255,0.035);
  --fd: 'Cormorant Garamond', serif;
  --fb: 'DM Sans', sans-serif;
}

* , *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--fb);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

a { color: inherit; }
img { max-width: 100%; display: block; }

/* ── NAV ── */
.aet-nav {
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 64px;
  background: rgba(7,9,15,0);
  border-bottom: 1px solid rgba(255,255,255,0);
  transition: background .4s ease, border-color .4s ease, backdrop-filter .4s ease;
}
.aet-nav.scrolled {
  background: rgba(7,9,15,0.88);
  border-color: var(--border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.aet-nav-logo {
  font-family: var(--fd);
  font-size: 22px;
  font-weight: 400;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.02em;
}
.aet-nav-logo em { font-style: italic; color: var(--accent); }
.aet-nav-links { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.aet-nav-links a {
  font-family: var(--fb);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-decoration: none;
  color: var(--muted);
  padding: 8px 14px;
  border-radius: 6px;
  transition: color .2s, background .2s;
  white-space: nowrap;
}
.aet-nav-links a:hover, .aet-nav-links a.active { color: var(--text); background: rgba(255,255,255,0.06); }
.aet-nav-links a.aet-nav-cta {
  color: var(--accent);
  border: 1px solid rgba(78,255,200,0.3);
  background: rgba(78,255,200,0.06);
  margin-left: 8px;
}
.aet-nav-links a.aet-nav-cta:hover { background: rgba(78,255,200,0.14); }
.aet-nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.aet-nav-burger span { display: block; width: 22px; height: 1.5px; background: var(--text); transition: all .3s; }
.aet-mobile-menu {
  display: none;
  position: absolute;
  top: 64px; left: 0; right: 0;
  background: rgba(7,9,15,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 16px 24px 32px;
  z-index: 998;
  border-bottom: 1px solid var(--border);
  flex-direction: column;
  gap: 0;
}
.aet-mobile-menu.open { display: flex; }
.aet-mobile-menu a {
  font-family: var(--fb);
  font-size: 15px;
  color: var(--muted);
  text-decoration: none;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color .2s;
}
.aet-mobile-menu a:last-child { border-bottom: none; color: var(--accent); }
.aet-mobile-menu a:hover, .aet-mobile-menu a.active { color: var(--accent); }
@media(max-width:780px){
  .aet-nav-links { display: none; }
  .aet-nav-burger { display: flex; }
  .aet-nav { padding: 0 20px; }
}

/* ── BUTTONS ── */
.aet-btn {
  font-family: var(--fb);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 14px 32px;
  border-radius: 6px;
  text-decoration: none;
  transition: all .25s ease;
  display: inline-block;
  border: none;
  cursor: pointer;
}
.aet-btn-primary { background: var(--accent); color: #07090F; }
.aet-btn-primary:hover { background: #7FFFD4; transform: translateY(-1px); box-shadow: 0 8px 32px rgba(78,255,200,0.25); }
.aet-btn-ghost { background: transparent; color: var(--text); border: 1px solid var(--border); }
.aet-btn-ghost:hover { border-color: rgba(255,255,255,0.2); background: rgba(255,255,255,0.04); }
.aet-hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── BIG HOME HERO ── */
.aet-hero {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 24px 80px;
  overflow: hidden;
}
#aet-canvas { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 0; }
.aet-hero-inner { position: relative; z-index: 2; max-width: 840px; }
.aet-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
  padding: 8px 18px;
  border: 1px solid rgba(78,255,200,0.2);
  border-radius: 99px;
  background: rgba(78,255,200,0.06);
}
.aet-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  animation: aet-pulse 2s ease-in-out infinite;
}
@keyframes aet-pulse { 0%,100%{opacity:1} 50%{opacity:.4} }
.aet-hero h1 {
  font-family: var(--fd);
  font-size: clamp(56px, 9vw, 110px);
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  color: #fff;
}
.aet-hero h1 em { font-style: italic; color: var(--accent); }
.aet-hero-sub {
  font-family: var(--fd);
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 300;
  font-style: italic;
  color: var(--muted);
  margin: 20px 0 48px;
  line-height: 1.5;
}
.aet-scroll {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 2;
}
.aet-scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: aet-line 1.8s ease-in-out infinite;
}
@keyframes aet-line { 0%,100%{opacity:.2;transform:scaleY(.5);transform-origin:top} 50%{opacity:1;transform:scaleY(1)} }

/* ── SMALL PAGE HERO (About / Team / Projects / Contact) ──
   isolation + overflow:hidden let this double as a canvas container on
   pages that include <canvas id="aet-canvas">, same as the home hero. */
.aet-page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 160px 24px 80px;
  text-align: center;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(78,255,200,0.08), transparent 70%),
    var(--bg);
  border-bottom: 1px solid var(--border);
}
.aet-page-hero-inner { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; }
.aet-page-hero h1 {
  font-family: var(--fd);
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 300;
  line-height: 1;
  color: #fff;
  margin: 0 0 18px;
}
.aet-page-hero h1 em { font-style: italic; color: var(--accent); }
.aet-page-hero p {
  font-family: var(--fd);
  font-size: clamp(16px, 2vw, 20px);
  font-style: italic;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}
.aet-page-hero-note {
  font-family: var(--fd);
  font-style: italic;
  font-size: 16px;
  font-weight: 300;
  color: var(--text);
  line-height: 1.6;
  margin: 18px 0 0;
}
.aet-page-hero-note u { text-decoration-color: rgba(78,255,200,0.5); }
.aet-page-hero-note {
  font-family: var(--fd);
  font-style: italic;
  font-size: 17px;
  color: var(--text);
  margin-top: 18px !important;
}
.aet-page-hero-note a { color: var(--accent); text-decoration-color: rgba(78,255,200,0.5); }

/* ── STATS ── */
.aet-stats { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 60px 24px; background: var(--bg2); }
.aet-stats-grid { max-width: 900px; margin: 0 auto; display: grid; grid-template-columns: repeat(3,1fr); gap: 0; }
.aet-stat { text-align: center; padding: 32px 24px; position: relative; }
.aet-stat + .aet-stat::before { content: ''; position: absolute; left: 0; top: 20%; bottom: 20%; width: 1px; background: var(--border); }
.aet-stat-num { font-family: var(--fd); font-size: clamp(48px, 6vw, 72px); font-weight: 300; color: #fff; line-height: 1; margin-bottom: 10px; }
.aet-stat-num span { color: var(--accent); }
.aet-stat-label { font-size: 12px; font-weight: 400; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }

/* ── SECTION SCAFFOLDING ── */
.aet-section { padding: 100px 24px; max-width: 1100px; margin: 0 auto; }
.aet-section.narrow { max-width: 760px; }
.aet-section-tag {
  font-size: 11px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 20px; display: flex; align-items: center; gap: 12px;
}
.aet-section-tag::after { content: ''; flex: 0 0 40px; height: 1px; background: var(--accent); opacity: 0.4; }
.aet-section-tag.center { justify-content: center; }
.aet-section-heading { font-family: var(--fd); font-size: clamp(36px, 5vw, 58px); font-weight: 300; line-height: 1.1; color: #fff; margin: 0 0 24px; }
.aet-section-heading em { font-style: italic; color: var(--accent); }
.aet-section-heading.small { font-size: clamp(30px, 4vw, 44px); }
.aet-body-text { font-size: 17px; line-height: 1.8; color: var(--muted); max-width: 680px; }
.aet-body-text + .aet-body-text { margin-top: 20px; }
.aet-mission-text { font-size: 17px; line-height: 1.8; color: var(--muted); max-width: 640px; margin-bottom: 64px; }

/* ── CARD GRIDS ── */
.aet-cards-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.aet-cards-grid.cols-2 { grid-template-columns: repeat(2,1fr); }
.aet-card {
  background: var(--card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px 28px;
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
}
.aet-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0; transition: opacity .3s;
}
.aet-card:hover { border-color: rgba(78,255,200,0.2); transform: translateY(-4px); background: rgba(255,255,255,0.06); }
.aet-card:hover::before { opacity: 1; }
.aet-card-icon { font-size: 28px; margin-bottom: 20px; display: block; }
.aet-card h3 { font-family: var(--fd); font-size: 22px; font-weight: 400; color: #fff; margin: 0 0 12px; }
.aet-card p { font-size: 14px; line-height: 1.7; color: var(--muted); margin: 0 0 20px; }
.aet-card-link {
  font-size: 12px; font-weight: 500; letter-spacing: 0.08em; color: var(--accent);
  text-decoration: none; text-transform: uppercase; display: flex; align-items: center; gap: 6px; transition: gap .2s;
}
.aet-card-link:hover { gap: 10px; }

/* ── EVENT / PROGRAM CARDS ── */
.aet-events-preview { padding: 100px 24px; background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.aet-events-preview-inner { max-width: 1100px; margin: 0 auto; }
.aet-events-preview-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: 48px; }
.aet-events-preview-head-left { max-width: 640px; }
.aet-events-view-all {
  font-size: 12px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent);
  text-decoration: none; border: 1px solid rgba(78,255,200,0.3); padding: 12px 24px; border-radius: 6px;
  white-space: nowrap; transition: background .2s;
}
.aet-events-view-all:hover { background: rgba(78,255,200,0.1); }
.aet-events-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.aet-event-card {
  background: var(--card); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border); border-radius: 12px; padding: 28px; transition: all .3s ease;
  position: relative; overflow: hidden;
}
.aet-event-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent); opacity: 0; transition: opacity .3s;
}
.aet-event-card:hover { border-color: rgba(78,255,200,0.2); transform: translateY(-4px); background: rgba(255,255,255,0.06); }
.aet-event-card:hover::before { opacity: 1; }
.aet-event-date { font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); display: block; margin-bottom: 12px; }
.aet-event-card h3 { font-family: var(--fd); font-size: 22px; font-weight: 400; color: #fff; margin: 0 0 12px; line-height: 1.2; }
.aet-event-card p { font-size: 14px; line-height: 1.7; color: var(--muted); margin: 0; }
.aet-event-tag {
  display: inline-block; font-size: 10px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--accent2); border: 1px solid rgba(167,139,250,0.3); background: rgba(167,139,250,0.08);
  padding: 4px 10px; border-radius: 99px; margin-bottom: 14px;
}

/* ── TEAM ── */
.aet-team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.aet-team-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 28px 22px;
  text-align: center; transition: all .3s ease;
}
.aet-team-card:hover { border-color: rgba(78,255,200,0.2); transform: translateY(-4px); background: rgba(255,255,255,0.06); }
.aet-avatar {
  width: 72px; height: 72px; border-radius: 50%; margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--fd); font-size: 24px; font-weight: 400; color: #07090F;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
}
.aet-team-card h3 { font-family: var(--fd); font-size: 19px; font-weight: 400; color: #fff; margin: 0 0 4px; }
.aet-team-role { font-size: 11px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; display: block; }
.aet-team-card p { font-size: 13px; line-height: 1.6; color: var(--muted); margin: 0; }

/* ── FLAGS ── */
.aet-flags-section { padding: 80px 24px; border-top: 1px solid var(--border); text-align: center; }
.aet-flags-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 40px; max-width: 700px; margin-left: auto; margin-right: auto; }
.aet-flag-item { display: flex; flex-direction: column; align-items: center; gap: 6px; opacity: 0.7; transition: opacity .2s, transform .2s; }
.aet-flag-item:hover { opacity: 1; transform: translateY(-3px); }
.aet-flag-item img { width: 40px; height: 27px; border-radius: 3px; object-fit: cover; border: 1px solid var(--border); }
.aet-flag-label { font-size: 10px; color: var(--muted); letter-spacing: 0.06em; }

/* ── CONTACT ── */
.aet-contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; max-width: 1100px; margin: 0 auto; padding: 100px 24px; }
.aet-contact-info h2 { font-family: var(--fd); font-size: clamp(30px,4vw,40px); font-weight: 300; color: #fff; margin: 0 0 16px; }
.aet-contact-info h2 em { font-style: italic; color: var(--accent); }
.aet-contact-info p { color: var(--muted); font-size: 15px; line-height: 1.7; margin: 0 0 32px; }
.aet-contact-row { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 22px; }
.aet-contact-row .ic { font-size: 18px; width: 24px; flex-shrink: 0; }
.aet-contact-row a, .aet-contact-row span { color: var(--text); font-size: 14px; text-decoration: none; line-height: 1.6; }
.aet-contact-row a:hover { color: var(--accent); }
.aet-social-row { display: flex; gap: 12px; margin-top: 32px; }
.aet-social-row a {
  width: 38px; height: 38px; border-radius: 8px; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; text-decoration: none;
  color: var(--muted); font-size: 14px; transition: all .2s;
}
.aet-social-row a:hover { color: var(--accent); border-color: rgba(78,255,200,0.3); background: rgba(78,255,200,0.06); }

.aet-form { display: flex; flex-direction: column; gap: 18px; }
.aet-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.aet-field { display: flex; flex-direction: column; gap: 8px; }
.aet-field label { font-size: 12px; font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; color: var(--muted); }
.aet-field input, .aet-field textarea, .aet-field select {
  background: var(--card); border: 1px solid var(--border); border-radius: 8px; padding: 13px 14px;
  color: var(--text); font-family: var(--fb); font-size: 14px; resize: vertical; outline: none;
  transition: border-color .2s, background .2s;
}
.aet-field input:focus, .aet-field textarea:focus, .aet-field select:focus { border-color: rgba(78,255,200,0.4); background: rgba(255,255,255,0.05); }
.aet-field textarea { min-height: 130px; }
.aet-form-note { font-size: 12px; color: var(--muted); line-height: 1.6; }
.aet-form-note code { color: var(--accent); background: rgba(78,255,200,0.08); padding: 2px 6px; border-radius: 4px; }

/* ── FOOTER CTA ── */
.aet-cta-section { padding: 120px 24px; text-align: center; border-top: 1px solid var(--border); }
.aet-cta-section h2 { font-family: var(--fd); font-size: clamp(42px, 6vw, 76px); font-weight: 300; color: #fff; margin: 0 0 20px; line-height: 1; }
.aet-cta-section h2 em { font-style: italic; color: var(--accent); }
.aet-cta-section p { color: var(--muted); font-size: 16px; max-width: 480px; margin: 0 auto 40px; line-height: 1.7; }

/* ── SITE FOOTER ── */
.aet-footer { border-top: 1px solid var(--border); padding: 56px 24px 32px; background: var(--bg2); }
.aet-footer-inner {
  max-width: 1100px; margin: 0 auto; display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 40px; padding-bottom: 32px;
}
.aet-footer-brand .aet-nav-logo { display: inline-block; margin-bottom: 12px; }
.aet-footer-brand p { color: var(--muted); font-size: 13px; max-width: 260px; line-height: 1.6; margin: 0; }
.aet-footer-col h4 { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text); margin: 0 0 16px; }
.aet-footer-col a { display: block; font-size: 13px; color: var(--muted); text-decoration: none; margin-bottom: 10px; transition: color .2s; }
.aet-footer-col a:hover { color: var(--accent); }
.aet-footer-bottom {
  max-width: 1100px; margin: 0 auto; padding-top: 24px; border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 12px; color: var(--muted);
}

/* ── FADE-IN UTILITY (JS toggles .in) ── */
.aet-fade { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.aet-fade.in { opacity: 1; transform: translateY(0); }

/* ── EVENT TIMELINE (Projects / Programs calendar) ── */
.aeternum-timeline-container {
  position: relative;
  max-width: 1100px;
  margin: 0 auto 100px;
  padding: 40px 24px 20px;
}
.aeternum-timeline-container::after {
  content: '';
  position: absolute;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--accent) 5%, var(--accent) 95%, transparent);
  opacity: 0.35;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -0.5px;
  z-index: 0;
}
.event-row { padding: 10px 40px; position: relative; width: 50%; z-index: 1; margin-bottom: 20px; }
.event-row::after {
  content: '';
  position: absolute;
  width: 14px; height: 14px;
  right: -7px;
  background-color: var(--bg);
  border: 2px solid var(--accent);
  top: 40px;
  border-radius: 50%;
  z-index: 2;
  box-shadow: 0 0 10px rgba(78,255,200,0.5);
}
.left-event { left: 0; text-align: right; }
.right-event { left: 50%; text-align: left; }
.right-event::after { left: -7px; }

.event-card {
  padding: 28px;
  background: var(--card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  position: relative;
  border-radius: 12px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease, border-color .3s ease, background .3s ease;
  overflow: hidden;
}
.event-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0; transition: opacity .3s;
}
.event-card.is-visible { opacity: 1; transform: translateY(0); }
.event-card:hover { border-color: rgba(78,255,200,0.25); background: rgba(255,255,255,0.055); }
.event-card:hover::before { opacity: 1; }

.event-date {
  color: var(--accent);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  display: block;
  font-family: var(--fb);
  text-transform: uppercase;
}
.event-title { color: #fff; font-family: var(--fd); font-size: 1.6rem; font-weight: 400; margin: 4px 0 18px 0; line-height: 1.15; }

.details-trigger {
  background: transparent;
  border: 1px solid rgba(78,255,200,0.3);
  color: var(--accent);
  padding: 8px 18px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: var(--fb);
  transition: 0.25s;
}
.details-trigger:hover { background: rgba(78,255,200,0.14); border-color: var(--accent); }

.session-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, margin-top 0.4s ease;
  text-align: left;
  background: rgba(0,0,0,0.25);
  border-radius: 10px;
}
.session-content.open { max-height: 500px; margin-top: 15px; padding: 16px; border: 1px dashed rgba(78,255,200,0.2); }
.session-content p { color: var(--muted); font-size: 14px; margin: 0; line-height: 1.7; }

@media screen and (max-width: 768px) {
  .aeternum-timeline-container::after { left: 24px; }
  .event-row { width: 100%; padding-left: 60px; padding-right: 16px; text-align: left !important; left: 0 !important; }
  .event-row::after { left: 17px; right: auto; }
}

/* ── RESPONSIVE ── */
@media(max-width:900px){
  .aet-team-grid { grid-template-columns: repeat(2,1fr); }
  .aet-contact-grid { grid-template-columns: 1fr; gap: 48px; }
}
@media(max-width:768px){
  .aet-stats-grid { grid-template-columns: repeat(2,1fr); }
  .aet-cards-grid, .aet-cards-grid.cols-2 { grid-template-columns: 1fr; }
  .aet-events-grid { grid-template-columns: 1fr; }
  .aet-stat + .aet-stat::before { display: none; }
  .aet-form-row { grid-template-columns: 1fr; }
  .aet-footer-inner { flex-direction: column; }
}
@media(max-width:480px){
  .aet-stats-grid { grid-template-columns: 1fr; }
  .aet-team-grid { grid-template-columns: 1fr; }
}
