/* ============================================================
   SHOWTECH 2027 — Main CSS
   Premium Minimalist · Light Mode · Navy Accents
   ============================================================ */

/* ------------------------------------------------------------
   1. DESIGN TOKENS
   ------------------------------------------------------------ */
:root {
  /* Palette */
  --clr-bg:          #f8f6f2;       /* warm off-white page bg */
  --clr-bg-alt:      #ffffff;       /* pure white for cards */
  --clr-bg-dark:     #0c1a2e;       /* deep navy — hero, footer, dark sections */
  --clr-bg-dark-2:   #122340;       /* slightly lighter navy */
  --clr-navy:        #0c1a2e;
  --clr-navy-mid:    #1a3560;

  --clr-accent:      #d63a3a;       /* red — primary CTA */
  --clr-accent-h:    #b52e2e;
  --clr-blue:        #2e7eff;       /* blue — links, tags, highlights */
  --clr-blue-light:  #e8f0ff;       /* blue tint for light section tags */

  --clr-text:        #0c1a2e;       /* body text */
  --clr-text-2:      #4a5872;       /* secondary text */
  --clr-text-3:      #8a96a8;       /* tertiary / captions */
  --clr-text-inv:    #ffffff;       /* text on dark bg */
  --clr-text-inv-2:  rgba(255,255,255,0.65);

  --clr-border:      rgba(12,26,46,0.10);
  --clr-border-dark: rgba(255,255,255,0.10);

  /* Typography */
  --font-display:    'DM Serif Display', Georgia, serif;
  --font-body:       'DM Sans', system-ui, sans-serif;

  --fs-xs:   0.75rem;   /* 12px */
  --fs-sm:   0.875rem;  /* 14px */
  --fs-base: 1rem;      /* 16px */
  --fs-md:   1.125rem;  /* 18px */
  --fs-lg:   1.375rem;  /* 22px */
  --fs-xl:   1.75rem;   /* 28px */
  --fs-2xl:  2.25rem;   /* 36px */
  --fs-3xl:  3rem;      /* 48px */
  --fs-4xl:  4rem;      /* 64px */
  --fs-5xl:  5.5rem;    /* 88px */

  --fw-regular: 400;
  --fw-medium:  500;
  --fw-bold:    700;

  --lh-tight:  1.1;
  --lh-snug:   1.3;
  --lh-base:   1.6;
  --lh-loose:  1.8;

  /* Spacing */
  --sp-1:  0.25rem;
  --sp-2:  0.5rem;
  --sp-3:  0.75rem;
  --sp-4:  1rem;
  --sp-5:  1.25rem;
  --sp-6:  1.5rem;
  --sp-8:  2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;
  --sp-32: 8rem;

  /* Layout */
  --max-w: 1280px;
  --max-w-text: 680px;
  --gutter: clamp(1rem, 4vw, 2rem);

  /* Radii */
  --r-sm:   6px;
  --r-md:   12px;
  --r-lg:   20px;
  --r-xl:   32px;
  --r-full: 9999px;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(12,26,46,0.08), 0 1px 2px rgba(12,26,46,0.04);
  --shadow-md:  0 4px 16px rgba(12,26,46,0.10), 0 2px 6px rgba(12,26,46,0.06);
  --shadow-lg:  0 16px 48px rgba(12,26,46,0.14), 0 4px 16px rgba(12,26,46,0.08);
  --shadow-xl:  0 32px 80px rgba(12,26,46,0.18);

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur-fast:  150ms;
  --dur-base:  250ms;
  --dur-slow:  400ms;
}

/* ------------------------------------------------------------
   2. RESET & BASE
   ------------------------------------------------------------ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--clr-bg);
  color: var(--clr-text);
  line-height: var(--lh-base);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color var(--dur-base) var(--ease); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ------------------------------------------------------------
   3. TYPOGRAPHY
   ------------------------------------------------------------ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: var(--fw-regular);
  line-height: var(--lh-tight);
  color: var(--clr-text);
}

h1 { font-size: clamp(var(--fs-3xl), 7vw, var(--fs-5xl)); }
h2 { font-size: clamp(var(--fs-2xl), 4vw, var(--fs-4xl)); }
h3 { font-size: clamp(var(--fs-lg), 2.5vw, var(--fs-2xl)); }
h4 { font-size: var(--fs-lg); }

p { color: var(--clr-text-2); line-height: var(--lh-loose); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-blue);
}

/* ------------------------------------------------------------
   4. LAYOUT UTILS
   ------------------------------------------------------------ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: clamp(var(--sp-16), 8vw, var(--sp-32));
}

.section--dark {
  background-color: var(--clr-bg-dark);
  color: var(--clr-text-inv);
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--clr-text-inv);
}

.section--dark p {
  color: var(--clr-text-inv-2);
}

/* ------------------------------------------------------------
   5. BUTTONS
   ------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 0.875rem 1.75rem;
  border-radius: var(--r-full);
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  letter-spacing: 0.02em;
  transition: all var(--dur-base) var(--ease);
  white-space: nowrap;
}

.btn--primary {
  background: var(--clr-accent);
  color: #fff;
  box-shadow: 0 4px 20px rgba(214,58,58,0.30);
}
.btn--primary:hover {
  background: var(--clr-accent-h);
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(214,58,58,0.40);
}

.btn--outline {
  background: transparent;
  color: var(--clr-text-inv);
  border: 1.5px solid rgba(255,255,255,0.35);
}
.btn--outline:hover {
  border-color: rgba(255,255,255,0.80);
  background: rgba(255,255,255,0.08);
}

.btn--outline-dark {
  background: transparent;
  color: var(--clr-navy);
  border: 1.5px solid var(--clr-navy);
}
.btn--outline-dark:hover {
  background: var(--clr-navy);
  color: #fff;
}

.btn--sm {
  padding: 0.5rem 1.25rem;
  font-size: var(--fs-xs);
}

/* ------------------------------------------------------------
   6. HEADER & NAV
   ------------------------------------------------------------ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: var(--sp-5) 0;
  transition: background var(--dur-slow) var(--ease),
              padding var(--dur-slow) var(--ease),
              box-shadow var(--dur-slow) var(--ease);
}

.site-header.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: var(--sp-3) 0;
  box-shadow: 0 1px 0 var(--clr-border);
}

.site-header.scrolled .logo-default { display: none; }
.site-header.scrolled .logo-sticky  { display: block; }
.site-header.scrolled .nav-link     { color: var(--clr-text); }
.site-header.scrolled .btn--outline { color: var(--clr-navy); border-color: var(--clr-navy); }
.site-header.scrolled .btn--outline:hover { background: var(--clr-navy); color: #fff; }
.site-header.scrolled .lang-btn     { color: var(--clr-text-2); }
.site-header.scrolled .lang-btn.active { color: var(--clr-navy); }

.header-inner {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
}

.logo-link { display: flex; align-items: center; }
.logo-img  { height: 36px; width: auto; }
.logo-sticky { display: none; }

.header-nav {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  margin-inline: auto;
}

.nav-link {
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: rgba(255,255,255,0.85);
  position: relative;
  padding-bottom: 2px;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1.5px;
  background: var(--clr-accent);
  transition: width var(--dur-base) var(--ease);
}
.nav-link:hover::after { width: 100%; }
.nav-link:hover { color: #fff; }

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  margin-left: auto;
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}
.lang-btn {
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.55);
  transition: color var(--dur-base) var(--ease);
  padding: 2px 0;
}
.lang-btn.active { color: #fff; }
.lang-sep { color: rgba(255,255,255,0.25); font-size: var(--fs-xs); }

/* Mobile menu toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px; height: 28px;
  padding: 2px;
}
.mobile-menu-toggle span {
  display: block;
  height: 1.5px;
  background: #fff;
  border-radius: 2px;
  transition: all var(--dur-base) var(--ease);
  transform-origin: center;
}
.site-header.scrolled .mobile-menu-toggle span { background: var(--clr-navy); }
.mobile-menu-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.mobile-menu-toggle.open span:nth-child(2) { transform: translateY(-6.5px) rotate(-45deg); }

/* Nav Overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--clr-bg-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-slow) var(--ease);
}
.nav-overlay.open { opacity: 1; pointer-events: all; }

.nav-overlay-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-4);
  margin-bottom: var(--sp-12);
}
.nav-overlay-link {
  font-family: var(--font-display);
  font-size: clamp(var(--fs-2xl), 5vw, var(--fs-4xl));
  color: var(--clr-text-inv);
  opacity: 0.7;
  transition: opacity var(--dur-base) var(--ease), transform var(--dur-base) var(--ease);
}
.nav-overlay-link:hover { opacity: 1; transform: translateX(8px); }

.nav-overlay-footer {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
  justify-content: center;
}

/* ------------------------------------------------------------
   7. HERO SECTION
   ------------------------------------------------------------ */
.hero {
  min-height: 100svh;
  background: var(--clr-bg-dark);
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 100px;
  padding-bottom: var(--sp-16);
  overflow: hidden;
}

/* Subtle background texture */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 80% 60% at 60% 50%, rgba(46,126,255,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 15% 80%, rgba(214,58,58,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-12);
  align-items: center;
}

/* Left: Text */
.hero-text { }

.hero-meta {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-8);
  flex-wrap: wrap;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-4);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-full);
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.04em;
  backdrop-filter: blur(8px);
}
.hero-pill--blue {
  background: rgba(46,126,255,0.15);
  border-color: rgba(46,126,255,0.30);
  color: #90b8ff;
}
.hero-pill svg { flex-shrink: 0; }

.hero-title {
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  color: var(--clr-text-inv);
  margin-bottom: var(--sp-6);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.hero-title em {
  font-style: italic;
  color: var(--clr-blue);
  background: linear-gradient(135deg, #5ba8ff 0%, #2e7eff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(var(--fs-base), 2vw, var(--fs-md));
  color: var(--clr-text-inv-2);
  line-height: var(--lh-loose);
  margin-bottom: var(--sp-10);
  max-width: 480px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

/* Right: Visual Collage */
.hero-visual { position: relative; }

.hero-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: var(--sp-3);
  position: relative;
}

.collage-item {
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  background: var(--clr-bg-dark-2);
}

.collage-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.collage-item:hover img { transform: scale(1.04); }

.collage-item--tall {
  grid-row: span 2;
}

.collage-item:nth-child(1) { aspect-ratio: 4/3; }
.collage-item:nth-child(2) { aspect-ratio: 4/3; }
.collage-item--tall { aspect-ratio: auto; min-height: 340px; }

/* Hero bottom logos */
.hero-logos {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: var(--sp-6) 0;
  border-top: 1px solid var(--clr-border-dark);
}
.logos-inner {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
  overflow-x: auto;
}
.logo-item {
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.30);
  white-space: nowrap;
  text-transform: uppercase;
}

/* ------------------------------------------------------------
   8. NEWS SECTION
   ------------------------------------------------------------ */
.section-news {
  background: var(--clr-bg-alt);
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--sp-6);
  margin-bottom: var(--sp-12);
}
.section-header-text { }
.section-header-text .eyebrow { margin-bottom: var(--sp-3); }
.section-header-text h2 { margin-bottom: var(--sp-3); }
.section-header-text p  { max-width: 400px; }

.view-all-link {
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  color: var(--clr-blue);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  white-space: nowrap;
  flex-shrink: 0;
}
.view-all-link:hover { gap: var(--sp-3); }

.news-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
}

.news-card {
  background: var(--clr-bg);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--clr-border);
  transition: transform var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease);
}
.news-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.news-card__img {
  aspect-ratio: 16/10;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.news-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.news-card:hover .news-card__img img { transform: scale(1.05); }

.news-card__badge {
  position: absolute;
  top: var(--sp-3);
  left: var(--sp-3);
  padding: 3px 10px;
  border-radius: var(--r-full);
  font-size: 10px;
  font-weight: var(--fw-bold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.badge--red  { background: var(--clr-accent); color: #fff; }
.badge--blue { background: var(--clr-blue); color: #fff; }
.badge--teal { background: #0d9488; color: #fff; }
.badge--ghost { background: rgba(255,255,255,0.15); color: #fff; border: 1px solid rgba(255,255,255,0.25); backdrop-filter: blur(4px); }

.news-card__body { padding: var(--sp-5); }

.news-card__date {
  display: block;
  font-size: var(--fs-xs);
  color: var(--clr-text-3);
  margin-bottom: var(--sp-2);
}

.news-card h3 {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: var(--fw-bold);
  line-height: var(--lh-snug);
  color: var(--clr-text);
  margin-bottom: var(--sp-3);
}

.news-card p {
  font-size: var(--fs-sm);
  color: var(--clr-text-2);
  line-height: var(--lh-base);
  margin-bottom: var(--sp-4);
}

.news-card__link {
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  color: var(--clr-blue);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--dur-fast) var(--ease);
}
.news-card__link:hover { gap: 8px; }

/* Coming soon card */
.news-card--dark {
  background: var(--clr-bg-dark);
}
.news-card--dark .news-card__img {
  background: var(--clr-bg-dark-2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.coming-soon-icon {
  font-size: 3rem;
  color: rgba(255,255,255,0.10);
  font-weight: 300;
  line-height: 1;
}
.news-card--dark h3 { color: var(--clr-text-inv); }
.news-card--dark p  { color: var(--clr-text-inv-2); }
.news-card--dark .news-card__link { color: #90b8ff; }

/* ------------------------------------------------------------
   9. WHY ATTEND (STATS)
   ------------------------------------------------------------ */
.section-why {
  background: var(--clr-bg);
}

.why-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--sp-8);
  margin-bottom: var(--sp-12);
  flex-wrap: wrap;
}

.audience-toggle {
  display: flex;
  background: rgba(12,26,46,0.06);
  border-radius: var(--r-full);
  padding: 4px;
  gap: 2px;
  flex-shrink: 0;
}
.audience-btn {
  padding: var(--sp-2) var(--sp-5);
  border-radius: var(--r-full);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--clr-text-2);
  transition: all var(--dur-base) var(--ease);
}
.audience-btn.active {
  background: var(--clr-navy);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.why-panel { display: none; }
.why-panel.active { display: block; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-4);
  margin-bottom: var(--sp-8);
}

.stat-card {
  background: var(--clr-bg-alt);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-lg);
  padding: var(--sp-8) var(--sp-6);
  text-align: center;
  transition: transform var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease);
}
.stat-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.stat-icon {
  width: 44px; height: 44px;
  background: var(--clr-blue-light);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-4);
  color: var(--clr-blue);
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(var(--fs-2xl), 3.5vw, var(--fs-3xl));
  color: var(--clr-navy);
  line-height: 1;
  margin-bottom: var(--sp-2);
}

.stat-label {
  font-size: var(--fs-sm);
  color: var(--clr-text-2);
  font-weight: var(--fw-medium);
}

/* Testimonial */
.testimonial {
  background: var(--clr-bg-dark);
  border-radius: var(--r-xl);
  padding: var(--sp-10) var(--sp-12);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--sp-8);
  align-items: center;
  position: relative;
  overflow: hidden;
}
.testimonial::before {
  content: '\201C';
  position: absolute;
  top: -20px; right: var(--sp-10);
  font-family: var(--font-display);
  font-size: 14rem;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  pointer-events: none;
}

.testimonial-quote {
  font-family: var(--font-display);
  font-size: clamp(var(--fs-lg), 2.5vw, var(--fs-xl));
  color: var(--clr-text-inv);
  line-height: var(--lh-snug);
  font-style: italic;
  margin-bottom: var(--sp-6);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
}

.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: var(--r-full);
  background: linear-gradient(135deg, var(--clr-blue), var(--clr-navy-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  color: #fff;
  flex-shrink: 0;
}
.testimonial-name {
  font-weight: var(--fw-bold);
  color: var(--clr-text-inv);
  font-size: var(--fs-sm);
}
.testimonial-role {
  font-size: var(--fs-xs);
  color: var(--clr-text-inv-2);
}

/* ------------------------------------------------------------
   10. TIMELINE
   ------------------------------------------------------------ */
.section-timeline {
  background: var(--clr-bg-dark);
  overflow: hidden;
}

.section-timeline h2 { color: var(--clr-text-inv); }
.section-timeline p  { color: var(--clr-text-inv-2); }

.timeline-header {
  text-align: center;
  margin-bottom: var(--sp-16);
}
.timeline-header .eyebrow { margin-bottom: var(--sp-4); }

.timeline-accent { color: var(--clr-blue); }

.timeline-track-wrap {
  position: relative;
  overflow-x: auto;
  padding-bottom: var(--sp-4);
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.15) transparent;
}
.timeline-track-wrap::-webkit-scrollbar { height: 4px; }
.timeline-track-wrap::-webkit-scrollbar-track { background: transparent; }
.timeline-track-wrap::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.15); border-radius: 2px; }

.timeline-track {
  display: flex;
  gap: 0;
  position: relative;
  min-width: max-content;
  padding: var(--sp-12) var(--gutter);
}

/* The connecting line */
.timeline-track::before {
  content: '';
  position: absolute;
  top: 50%;
  left: var(--gutter);
  right: var(--gutter);
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255,255,255,0.15) 5%,
    rgba(255,255,255,0.15) 95%,
    transparent 100%
  );
  transform: translateY(-50%);
  z-index: 0;
}

.timeline-item {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 220px;
  flex-shrink: 0;
  padding: 0 var(--sp-4);
  opacity: 0.4;
  transition: opacity var(--dur-slow) var(--ease);
}
.timeline-item.past,
.timeline-item.event,
.timeline-item:hover {
  opacity: 1;
}

.timeline-dot {
  width: 36px; height: 36px;
  border-radius: var(--r-full);
  background: var(--clr-bg-dark-2);
  border: 2px solid rgba(255,255,255,0.20);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.40);
  margin-bottom: var(--sp-6);
  transition: all var(--dur-base) var(--ease);
  position: relative;
  z-index: 1;
}

.timeline-item.past .timeline-dot {
  background: var(--clr-navy-mid);
  border-color: var(--clr-blue);
  color: var(--clr-blue);
}
.timeline-item.event .timeline-dot {
  background: var(--clr-accent);
  border-color: var(--clr-accent);
  color: #fff;
  box-shadow: 0 0 0 6px rgba(214,58,58,0.18), 0 0 0 12px rgba(214,58,58,0.08);
  width: 44px; height: 44px;
}

/* Content below/above line alternating */
.timeline-item:nth-child(even) {
  flex-direction: column-reverse;
}
.timeline-item:nth-child(even) .timeline-dot {
  margin-bottom: 0;
  margin-top: var(--sp-6);
}
.timeline-item:nth-child(even) .timeline-content {
  margin-bottom: var(--sp-6);
  text-align: center;
}

.timeline-content { text-align: center; }

.timeline-date {
  display: block;
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-blue);
  margin-bottom: var(--sp-2);
}
.timeline-item.event .timeline-date { color: #ff8080; }

.timeline-content h4 {
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  color: var(--clr-text-inv);
  margin-bottom: var(--sp-2);
}

.timeline-content p {
  font-size: var(--fs-xs);
  color: var(--clr-text-inv-2);
  line-height: var(--lh-base);
}

/* ------------------------------------------------------------
   11. VENUE SECTION
   ------------------------------------------------------------ */
.section-venue {
  background: var(--clr-bg-alt);
}

.venue-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--sp-8), 5vw, var(--sp-16));
  align-items: start;
}

.venue-info { }
.venue-info .eyebrow { margin-bottom: var(--sp-4); }
.venue-info h2 { margin-bottom: var(--sp-4); }

.venue-address {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  margin-bottom: var(--sp-8);
  color: var(--clr-text-2);
  font-size: var(--fs-sm);
}
.venue-address svg { flex-shrink: 0; margin-top: 2px; color: var(--clr-blue); }

/* Venue Accordion */
.venue-acc { border-top: 1px solid var(--clr-border); }

.venue-acc-item { border-bottom: 1px solid var(--clr-border); }

.venue-acc-trigger {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  width: 100%;
  padding: var(--sp-5) 0;
  text-align: left;
  transition: color var(--dur-base) var(--ease);
}
.venue-acc-trigger:hover { color: var(--clr-blue); }

.venue-acc-icon {
  width: 36px; height: 36px;
  background: var(--clr-blue-light);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--clr-blue);
  transition: background var(--dur-base) var(--ease);
}
.venue-acc-item.open .venue-acc-icon {
  background: var(--clr-navy);
  color: #fff;
}

.venue-acc-label {
  flex: 1;
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  color: var(--clr-text);
}
.venue-acc-trigger:hover .venue-acc-label { color: var(--clr-blue); }

.venue-acc-chevron {
  color: var(--clr-text-3);
  transition: transform var(--dur-base) var(--ease);
  flex-shrink: 0;
}
.venue-acc-item.open .venue-acc-chevron { transform: rotate(180deg); }

.venue-acc-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height var(--dur-slow) var(--ease);
  padding: 0;
}
.venue-acc-item.open .venue-acc-body { max-height: 400px; }
.venue-acc-body-inner {
  padding-bottom: var(--sp-5);
  padding-left: 52px;
}
.venue-acc-body p {
  font-size: var(--fs-sm);
  margin-bottom: var(--sp-3);
}
.venue-acc-body a {
  color: var(--clr-blue);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
}

/* Venue Slider */
.venue-slider-wrap {
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-xl);
  background: var(--clr-bg-dark);
}

.venue-slider {
  position: relative;
  aspect-ratio: 4/3;
}

.venue-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity var(--dur-slow) var(--ease);
}
.venue-slide.active { opacity: 1; z-index: 1; }
.venue-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.venue-slide-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: var(--sp-6);
  background: linear-gradient(to top, rgba(12,26,46,0.85) 0%, transparent 100%);
  color: #fff;
}
.venue-slide-caption strong { display: block; font-size: var(--fs-sm); font-weight: var(--fw-bold); }
.venue-slide-caption span   { font-size: var(--fs-xs); color: rgba(255,255,255,0.65); }

/* Slider Controls */
.venue-controls {
  position: absolute;
  bottom: var(--sp-4);
  right: var(--sp-4);
  z-index: 5;
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.venue-ctrl-btn {
  width: 36px; height: 36px;
  border-radius: var(--r-full);
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--dur-base) var(--ease);
}
.venue-ctrl-btn:hover { background: rgba(255,255,255,0.30); }

.venue-dots {
  display: flex;
  gap: 6px;
}
.venue-dot {
  width: 6px; height: 6px;
  border-radius: var(--r-full);
  background: rgba(255,255,255,0.30);
  transition: all var(--dur-base) var(--ease);
}
.venue-dot.active {
  background: #fff;
  width: 20px;
}

/* Video slide */
.venue-video-thumb {
  position: relative;
  width: 100%; height: 100%;
}
.venue-video-thumb img { width: 100%; height: 100%; object-fit: cover; }
.venue-play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px;
  border-radius: var(--r-full);
  background: rgba(255,255,255,0.95);
  color: var(--clr-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--dur-base) var(--ease-bounce), background var(--dur-base) var(--ease);
  padding-left: 4px;
}
.venue-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
}
.venue-video-frame {
  position: absolute;
  inset: 0;
}
.venue-video-frame iframe {
  width: 100%; height: 100%;
  border: none;
}

/* ------------------------------------------------------------
   12. FAQ SECTION
   ------------------------------------------------------------ */
.section-faq {
  background: var(--clr-bg-dark);
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: clamp(var(--sp-10), 6vw, var(--sp-20));
  align-items: start;
}

.faq-sidebar h2 { color: var(--clr-text-inv); margin-bottom: var(--sp-8); }

.contact-nodes { display: flex; flex-direction: column; gap: var(--sp-5); }

.contact-node {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
}
.contact-node__icon {
  width: 44px; height: 44px;
  border-radius: var(--r-md);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.60);
  flex-shrink: 0;
}
.contact-node__label {
  display: block;
  font-size: var(--fs-xs);
  color: var(--clr-text-inv-2);
  margin-bottom: 2px;
}
.contact-node__value {
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--clr-text-inv);
}
.contact-node__value a { color: var(--clr-text-inv); }
.contact-node__value a:hover { color: #90b8ff; }

/* FAQ Accordion (dark) */
.faq-tabs {
  display: flex;
  gap: var(--sp-2);
  margin-bottom: var(--sp-6);
}
.faq-tab {
  padding: var(--sp-2) var(--sp-5);
  border-radius: var(--r-full);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--clr-text-inv-2);
  border: 1px solid rgba(255,255,255,0.12);
  transition: all var(--dur-base) var(--ease);
}
.faq-tab.active,
.faq-tab:hover {
  background: rgba(255,255,255,0.10);
  color: var(--clr-text-inv);
  border-color: rgba(255,255,255,0.25);
}
.faq-tab.active {
  background: var(--clr-blue);
  border-color: var(--clr-blue);
  color: #fff;
}

.faq-group { display: none; }
.faq-group.active { display: block; }

.faq-acc-item {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.faq-acc-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  width: 100%;
  padding: var(--sp-5) 0;
  text-align: left;
}

.faq-acc-trigger h3 {
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--clr-text-inv);
  line-height: var(--lh-snug);
}

.faq-acc-icon {
  width: 28px; height: 28px;
  border-radius: var(--r-full);
  border: 1px solid rgba(255,255,255,0.20);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.50);
  font-size: var(--fs-md);
  line-height: 1;
  flex-shrink: 0;
  transition: all var(--dur-base) var(--ease);
}
.faq-acc-item.active .faq-acc-icon {
  background: var(--clr-blue);
  border-color: var(--clr-blue);
  color: #fff;
}

.faq-acc-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height var(--dur-slow) var(--ease);
}
.faq-acc-item.active .faq-acc-body { max-height: 300px; }
.faq-acc-body p {
  padding-bottom: var(--sp-5);
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.55);
  line-height: var(--lh-loose);
}

/* ------------------------------------------------------------
   13. CONTACT / CTA
   ------------------------------------------------------------ */
.section-cta {
  background: var(--clr-bg);
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-6);
}

/* Newsletter card */
.card-newsletter {
  background: var(--clr-bg-dark);
  border-radius: var(--r-xl);
  padding: var(--sp-10) var(--sp-10);
  position: relative;
  overflow: hidden;
}
.card-newsletter::before {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: calc(var(--r-xl) - 1px);
  background: linear-gradient(135deg, rgba(46,126,255,0.10) 0%, transparent 60%);
  pointer-events: none;
}

.card-newsletter h3 {
  font-family: var(--font-body);
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  color: var(--clr-text-inv);
  margin-bottom: var(--sp-3);
}
.card-newsletter p {
  color: var(--clr-text-inv-2);
  font-size: var(--fs-sm);
  margin-bottom: var(--sp-6);
}

.newsletter-form {
  display: flex;
  gap: var(--sp-3);
  flex-wrap: wrap;
}

.newsletter-input {
  flex: 1;
  min-width: 200px;
  padding: 0.875rem 1.25rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-full);
  color: #fff;
  font-size: var(--fs-sm);
  transition: border-color var(--dur-base) var(--ease);
  outline: none;
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-input:focus { border-color: var(--clr-blue); }

.newsletter-submit {
  padding: 0.875rem 1.5rem;
  background: var(--clr-accent);
  color: #fff;
  border-radius: var(--r-full);
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  transition: background var(--dur-base) var(--ease), transform var(--dur-base) var(--ease);
  white-space: nowrap;
}
.newsletter-submit:hover {
  background: var(--clr-accent-h);
  transform: translateY(-1px);
}

/* Book call card */
.card-book-call {
  background: #0c1a2e;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-xl);
  padding: var(--sp-10);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.card-book-call::after {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  border-radius: var(--r-full);
  background: radial-gradient(circle, rgba(46,126,255,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.card-book-call h3 {
  font-family: var(--font-body);
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  color: var(--clr-text-inv);
  margin-bottom: var(--sp-3);
}
.card-book-call p {
  color: var(--clr-text-inv-2);
  font-size: var(--fs-sm);
  margin-bottom: var(--sp-8);
  flex: 1;
}

.cta-link {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  font-weight: var(--fw-bold);
  font-size: var(--fs-sm);
  color: var(--clr-text-inv);
  transition: gap var(--dur-fast) var(--ease);
}
.cta-link__arrow {
  width: 32px; height: 32px;
  border-radius: var(--r-full);
  background: var(--clr-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  transition: background var(--dur-base) var(--ease), transform var(--dur-base) var(--ease-bounce);
}
.cta-link:hover { gap: var(--sp-4); }
.cta-link:hover .cta-link__arrow { background: var(--clr-accent-h); transform: scale(1.1); }

/* ------------------------------------------------------------
   14. FOOTER
   ------------------------------------------------------------ */
.site-footer {
  background: var(--clr-navy);
  color: var(--clr-text-inv);
  padding: var(--sp-16) 0 var(--sp-8);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--sp-16);
  padding-bottom: var(--sp-12);
  border-bottom: 1px solid var(--clr-border-dark);
  margin-bottom: var(--sp-8);
}

.footer-brand {}
.footer-brand .brand-name {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  color: var(--clr-text-inv);
  margin-bottom: var(--sp-4);
}
.footer-brand p {
  font-size: var(--fs-sm);
  color: var(--clr-text-inv-2);
  max-width: 260px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-8);
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-text-inv-2);
  margin-bottom: var(--sp-5);
}
.footer-col li + li { margin-top: var(--sp-3); }
.footer-col a {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.45);
  transition: color var(--dur-base) var(--ease);
}
.footer-col a:hover { color: var(--clr-text-inv); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-6);
  flex-wrap: wrap;
}
.footer-copy {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.30);
}

.social-links {
  display: flex;
  gap: var(--sp-3);
}
.social-link {
  width: 36px; height: 36px;
  border-radius: var(--r-full);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  color: rgba(255,255,255,0.40);
  transition: all var(--dur-base) var(--ease);
}
.social-link:hover {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border-color: rgba(255,255,255,0.25);
}

/* ------------------------------------------------------------
   15. RESPONSIVE
   ------------------------------------------------------------ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: var(--sp-12); }
  .hero-title { max-width: 640px; }
  .hero-sub { max-width: none; }
  .hero-collage { max-width: 560px; margin-inline: auto; }

  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  .venue-grid { grid-template-columns: 1fr; }
  .venue-slider-wrap { max-width: 600px; }

  .faq-layout { grid-template-columns: 1fr; gap: var(--sp-10); }

  .cta-grid { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr; gap: var(--sp-10); }
}

@media (max-width: 768px) {
  .header-nav { display: none; }
  .mobile-menu-toggle { display: flex; }

  .hero { min-height: auto; padding-top: 80px; padding-bottom: var(--sp-12); }
  .hero-collage { grid-template-columns: 1fr 1fr; }
  .collage-item--tall { min-height: 200px; }

  .news-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  .testimonial {
    grid-template-columns: 1fr;
    padding: var(--sp-8);
  }

  .why-header { flex-direction: column; align-items: flex-start; }

  .section-header { flex-direction: column; align-items: flex-start; }

  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-collage { grid-template-columns: 1fr; }
  .collage-item--tall { display: none; }
}

/* ------------------------------------------------------------
   16. ANIMATIONS
   ------------------------------------------------------------ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.animate-fade-up {
  opacity: 0;
  animation: fadeUp 0.6s var(--ease) forwards;
}
.animate-fade-up.delay-1 { animation-delay: 0.1s; }
.animate-fade-up.delay-2 { animation-delay: 0.2s; }
.animate-fade-up.delay-3 { animation-delay: 0.3s; }
.animate-fade-up.delay-4 { animation-delay: 0.4s; }

/* WordPress admin bar offset */
.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) {
  .admin-bar .site-header { top: 46px; }
}
