/* ═══════════════════════════════════════════════
   STRENGTHFORFUTURE — EVENT DETAIL PAGES
   Shared design system (mirrors index.html tokens)
═══════════════════════════════════════════════ */
:root {
  --navy:       #1b3a6b;
  --navy-deep:  #0f2447;
  --navy-mid:   #254a82;
  --navy-light: #e8eef7;
  --amber:      #e8920a;
  --amber-lt:   #f5aa30;
  --amber-pale: #fef3e0;
  --white:      #ffffff;

  --bg-01:      #f8f5ee;
  --bg-02:      #ffffff;
  --bg-dark:    #0f2447;

  --text-primary:   #1f1f1f;
  --text-secondary: #4a5568;
  --text-muted:     #718096;

  --border:         rgba(33,51,67,0.12);
  --divider:        rgba(33,51,67,0.08);

  --sp-xs:   16px;
  --sp-sm:   40px;
  --sp-md:   64px;
  --sp-lg:   96px;
  --sp-xl:   120px;

  --r-sm:    4px;
  --r-md:    8px;
  --r-lg:    16px;

  --shadow-sm:  0 2px 4px rgba(33,51,67,0.10);
  --shadow-md:  0 4px 16px rgba(33,51,67,0.12);
  --shadow-lg:  0 8px 32px rgba(33,51,67,0.14);

  --font-sans:  'Plus Jakarta Sans', system-ui, sans-serif;
  --font-serif: 'Lora', Georgia, serif;

  --max-w: 1080px;
}

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--text-primary);
  background: var(--bg-01);
  overflow-x: hidden;
  cursor: none;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }

/* ── Custom cursor ── */
.cursor-dot {
  position: fixed; top: 0; left: 0;
  width: 8px; height: 8px;
  background: var(--amber);
  border-radius: 50%; pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
  transition: width .2s, height .2s;
}
.cursor-ring {
  position: fixed; top: 0; left: 0;
  width: 36px; height: 36px;
  border: 1.5px solid rgba(232,146,10,.4);
  border-radius: 50%; pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%);
  transition: width .25s ease, height .25s ease, border-color .25s;
}
.cursor-ring.hovered { width: 52px; height: 52px; border-color: var(--amber); }
.cursor-dot.hovered  { width: 5px; height: 5px; }
@media (hover: none) { .cursor-dot, .cursor-ring { display: none; } body { cursor: auto; } }

/* ── Scroll progress ── */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--navy), var(--amber));
  z-index: 9997; pointer-events: none;
  border-radius: 0 2px 2px 0;
}

/* ── Container / section ── */
.hs-container { max-width: var(--max-w); margin-inline: auto; padding-inline: 1.75rem; }
.hs-section { padding-block: var(--sp-lg); }

/* ── Typography ── */
.hs-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-sans);
  font-size: .75rem; font-weight: 500; letter-spacing: .1rem;
  text-transform: uppercase; color: var(--amber);
  margin-bottom: 1rem;
}
.hs-eyebrow::before { content: ''; display: block; width: 20px; height: 2px; background: var(--amber); border-radius: 1px; }
.hs-eyebrow.-white { color: var(--amber-lt); }

.hs-display {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5.5vw, 4.25rem);
  font-weight: 500; line-height: 1.1;
  letter-spacing: -.03em;
  color: var(--navy);
}
.hs-display em { font-style: italic; color: var(--amber); }
.hs-display.-white { color: var(--white); }
.hs-display.-white em { color: var(--amber-lt); }

.hs-h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 500; line-height: 1.125;
  letter-spacing: -.015em; color: var(--navy);
}
.hs-h2 em { font-style: italic; color: var(--amber); }

.hs-h3 {
  font-family: var(--font-sans);
  font-size: 1.0625rem; font-weight: 600;
  line-height: 1.4; color: var(--navy);
  margin-bottom: .875rem;
}

.hs-body { font-family: var(--font-sans); font-size: 1rem; font-weight: 300; line-height: 1.8; color: var(--text-secondary); }
.hs-body + .hs-body { margin-top: 1.125rem; }
.hs-small { font-size: .875rem; font-weight: 300; line-height: 1.65; color: var(--text-muted); }

/* ── Buttons ── */
.hs-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--font-sans); font-size: .9375rem; font-weight: 500;
  line-height: 1; text-decoration: none;
  border-radius: var(--r-md);
  padding: .8125rem 1.5rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background .15s linear, border-color .15s linear, color .15s linear,
              box-shadow .15s linear, transform .15s ease;
  position: relative; overflow: hidden;
  white-space: nowrap;
}
.hs-btn.-primary { background: var(--amber); color: var(--white); border-color: var(--amber); }
.hs-btn.-primary:hover { background: #cc7d08; border-color: #cc7d08; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(232,146,10,.3); }
.hs-btn.-primary:active { transform: translateY(0); box-shadow: none; }
.hs-btn.-secondary { background: transparent; color: var(--navy); border-color: rgba(27,58,107,.3); }
.hs-btn.-secondary:hover { background: var(--navy-light); border-color: var(--navy); transform: translateY(-1px); }
.hs-btn.-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,.35); }
.hs-btn.-ghost:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.6); transform: translateY(-1px); }
.hs-btn.-lg { padding: 1rem 2.25rem; font-size: 1rem; }
.ripple-wave { position: absolute; border-radius: 50%; background: rgba(255,255,255,.28); transform: scale(0); animation: rippleGrow .6s linear; pointer-events: none; }
@keyframes rippleGrow { to { transform: scale(4); opacity: 0; } }

/* ── Card ── */
.hs-card { background: var(--bg-02); border-radius: var(--r-lg); border: 1px solid var(--border); box-shadow: var(--shadow-sm); padding: 1.75rem; }

/* ── Reveal animations ── */
.reveal       { opacity: 0; transform: translateY(28px); transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1); }
.reveal-left  { opacity: 0; transform: translateX(-36px); transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1); }
.reveal-right { opacity: 0; transform: translateX(36px); transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1); }
.reveal.visible, .reveal-left.visible, .reveal-right.visible { opacity: 1; transform: none; }
.d1 { transition-delay: .08s !important; }
.d2 { transition-delay: .16s !important; }
.d3 { transition-delay: .24s !important; }

/* ═══════════════════════════════════════════════
   NAV
═══════════════════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(248,245,238,.7);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background .3s, border-color .3s, box-shadow .3s;
}
.nav-inner {
  max-width: var(--max-w); margin-inline: auto; padding-inline: 1.75rem;
  height: 76px; display: flex; align-items: center; justify-content: space-between;
}
nav.scrolled { background: rgba(248,245,238,.92); border-bottom-color: var(--border); box-shadow: var(--shadow-sm); }
.nav-logo { display: flex; flex-direction: column; text-decoration: none; }
.nav-logo-name { font-family: var(--font-sans); font-size: 1.25rem; font-weight: 700; color: var(--navy); letter-spacing: -.01em; }
.nav-logo-name span { color: var(--amber); }
.nav-logo-arc { width: 34px; height: 3px; margin-top: 2px; background: linear-gradient(90deg, var(--navy) 0%, var(--amber) 100%); border-radius: 2px; }
.nav-links { display: flex; align-items: center; gap: 2.25rem; list-style: none; }
.nav-links a { font-size: .875rem; font-weight: 500; color: var(--text-primary); text-decoration: none; transition: color .2s; }
.nav-links a:hover { color: var(--amber); }
.nav-actions { display: flex; align-items: center; gap: .75rem; }
.nav-cta {
  font-family: var(--font-sans); font-size: .875rem; font-weight: 500;
  background: var(--amber); color: var(--white);
  border: none; border-radius: var(--r-md);
  padding: .5625rem 1.25rem; cursor: pointer;
  transition: background .15s, transform .15s, box-shadow .15s;
}
.nav-cta:hover { background: #cc7d08; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(232,146,10,.3); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; z-index: 201; }
.hamburger span { width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: all .3s; display: block; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.mob-overlay { display: none; position: fixed; inset: 0; background: rgba(15,36,71,.55); backdrop-filter: blur(4px); z-index: 198; opacity: 0; transition: opacity .4s; }
.mob-overlay.open { display: block; }
.mob-overlay.visible { opacity: 1; }
.mobile-menu {
  position: fixed; top: 0; right: 0; bottom: 0; width: 80%; max-width: 360px;
  background: var(--bg-02); z-index: 199;
  display: flex; flex-direction: column; justify-content: center;
  padding: 60px 2.5rem; gap: 4px;
  transform: translateX(100%);
  transition: transform .45s cubic-bezier(.16,1,.3,1);
  box-shadow: -20px 0 60px rgba(27,58,107,.16);
}
.mobile-menu::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--navy), var(--amber)); }
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  font-size: 1.75rem; font-family: var(--font-serif); color: var(--navy); text-decoration: none;
  padding: .875rem 0; border-bottom: 1px solid var(--border);
  opacity: 0; transform: translateX(20px);
  transition: color .2s, opacity .4s, transform .4s cubic-bezier(.16,1,.3,1);
  cursor: pointer;
}
.mobile-menu.open a { opacity: 1; transform: none; }
.mobile-menu.open a:nth-child(1) { transition-delay: .1s; }
.mobile-menu.open a:nth-child(2) { transition-delay: .16s; }
.mobile-menu.open a:nth-child(3) { transition-delay: .22s; }
.mobile-menu.open a:nth-child(4) { transition-delay: .28s; }
.mobile-menu a:hover { color: var(--amber); }
.mobile-cta-btn {
  margin-top: 1.25rem !important;
  background: var(--amber) !important; color: white !important;
  text-align: center; border-radius: var(--r-md) !important;
  border-bottom: none !important;
  font-family: var(--font-sans) !important; font-size: .9375rem !important;
  font-weight: 500 !important; padding: .875rem 0 !important;
}

/* ═══════════════════════════════════════════════
   EVENT HERO (page header)
═══════════════════════════════════════════════ */
.event-hero {
  background: var(--navy-deep);
  position: relative; overflow: hidden;
  padding-top: calc(76px + var(--sp-lg));
  padding-bottom: var(--sp-md);
}
.event-hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse at 70% 20%, black 15%, transparent 65%);
  -webkit-mask-image: radial-gradient(ellipse at 70% 20%, black 15%, transparent 65%);
}
.event-hero::after {
  content: ''; position: absolute; top: -160px; right: -100px; width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(232,146,10,.1) 0%, transparent 65%);
  pointer-events: none;
}
.event-hero-inner { max-width: var(--max-w); margin-inline: auto; padding-inline: 1.75rem; position: relative; z-index: 1; }
.ev-back {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .8125rem; font-weight: 500; color: rgba(255,255,255,.5);
  text-decoration: none; margin-bottom: 2.25rem; transition: color .2s;
}
.ev-back:hover { color: var(--amber-lt); }
.ev-back svg { width: 14px; height: 14px; stroke: currentColor; }
.ev-hero-top { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
.ev-hero-date {
  display: inline-flex; flex-direction: column; align-items: center;
  background: var(--amber); border-radius: var(--r-md);
  padding: .625rem 1.125rem; line-height: 1;
}
.ev-hero-date .d { font-family: var(--font-serif); font-size: 1.875rem; font-weight: 500; color: var(--white); letter-spacing: -.02em; }
.ev-hero-date .m { font-size: .6875rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.85); margin-top: .2rem; }
.ev-type-pill {
  display: inline-flex; align-items: center;
  font-size: .6875rem; font-weight: 600; letter-spacing: .09em;
  text-transform: uppercase; color: var(--amber-lt);
  background: rgba(232,146,10,.14); border: 1px solid rgba(232,146,10,.25);
  border-radius: 100px; padding: .4rem .875rem;
}
.ev-hero-title { max-width: 720px; margin-bottom: 1.5rem; }
.ev-hero-sub { font-size: 1.0625rem; color: rgba(255,255,255,.6); line-height: 1.75; max-width: 620px; margin-bottom: 2rem; }
.ev-hero-meta { display: flex; flex-wrap: wrap; gap: 1.75rem; margin-bottom: 2.25rem; }
.ev-hero-meta-item { display: flex; align-items: center; gap: .625rem; font-size: .9375rem; color: rgba(255,255,255,.72); }
.ev-hero-meta-item svg { width: 16px; height: 16px; stroke: var(--amber-lt); flex-shrink: 0; }
.ev-hero-actions { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════
   EVENT CONTENT
═══════════════════════════════════════════════ */
.ev-content { background: var(--bg-01); }
.ev-grid { display: grid; grid-template-columns: 1fr 340px; gap: 3.5rem; align-items: start; }
.ev-main > .hs-h3 { margin-top: 2.75rem; }
.ev-main > .hs-h3:first-child { margin-top: 0; }

.ev-list { list-style: none; display: flex; flex-direction: column; gap: .875rem; }
.ev-list li { display: flex; align-items: flex-start; gap: .75rem; font-size: 1rem; color: var(--text-secondary); line-height: 1.6; }
.ev-list .ev-dot {
  flex-shrink: 0; width: 8px; height: 8px; border-radius: 50%;
  background: var(--amber); margin-top: .5rem;
}

/* Agenda timeline (mirrors .help-steps) */
.ev-agenda { display: flex; flex-direction: column; position: relative; }
.ev-agenda::before { content: ''; position: absolute; left: 19px; top: 30px; bottom: 0; width: 2px; background: rgba(27,58,107,.1); border-radius: 2px; }
.ev-agenda-fill { position: absolute; left: 19px; top: 30px; width: 2px; height: 0; background: var(--amber); border-radius: 2px; box-shadow: 0 0 10px rgba(232,146,10,.5); transition: height .08s linear; pointer-events: none; }
.ev-agenda-step { display: flex; gap: 1.25rem; padding: 1.125rem 0; border-bottom: 1px solid var(--divider); }
.ev-agenda-step:last-child { border-bottom: none; }
.ev-agenda-time {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: var(--bg-02); border: 1.5px solid rgba(232,146,10,.4);
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1; transition: background .2s, border-color .2s;
}
.ev-agenda-time svg { width: 16px; height: 16px; stroke: var(--amber); transition: stroke .2s; }
.ev-agenda-step:hover .ev-agenda-time { background: var(--amber); border-color: var(--amber); }
.ev-agenda-step:hover .ev-agenda-time svg { stroke: var(--white); }
.ev-agenda-body { padding-top: .25rem; }
.ev-agenda-title { font-size: .9375rem; font-weight: 600; color: var(--navy); margin-bottom: .2rem; }
.ev-agenda-text { font-size: .875rem; color: var(--text-secondary); line-height: 1.6; }

/* Sidebar */
.ev-sidebar { display: flex; flex-direction: column; gap: 1.25rem; position: sticky; top: 96px; }
.ev-info-card-title { font-family: var(--font-serif); font-size: 1.1875rem; font-weight: 500; color: var(--navy); margin-bottom: 1.375rem; }
.ev-info-row { display: flex; align-items: flex-start; gap: .875rem; padding-bottom: 1.125rem; margin-bottom: 1.125rem; border-bottom: 1px solid var(--divider); }
.ev-info-row:last-of-type { border-bottom: none; margin-bottom: 1.5rem; padding-bottom: 0; }
.ev-info-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: var(--amber-pale); border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
}
.ev-info-icon svg { width: 16px; height: 16px; stroke: var(--amber); }
.ev-info-label { font-size: .6875rem; letter-spacing: .08em; text-transform: uppercase; color: var(--text-muted); margin-bottom: .2rem; font-weight: 500; }
.ev-info-value { font-size: .9375rem; color: var(--text-primary); line-height: 1.5; font-weight: 500; }
.ev-quote-card { background: var(--navy-deep); border: none; }
.ev-quote-card p { font-family: var(--font-serif); font-style: italic; font-size: 1.0625rem; line-height: 1.6; color: rgba(255,255,255,.85); }
.ev-quote-card .ev-quote-attr { margin-top: 1rem; font-family: var(--font-sans); font-style: normal; font-size: .8125rem; color: var(--amber-lt); }

/* ═══════════════════════════════════════════════
   CONTACT (mirrors index.html contact-section)
═══════════════════════════════════════════════ */
.contact-section { background: var(--navy-deep); position: relative; overflow: hidden; padding-block: var(--sp-lg); }
.contact-section::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse at 60% 50%, black 15%, transparent 65%);
  -webkit-mask-image: radial-gradient(ellipse at 60% 50%, black 15%, transparent 65%);
}
.contact-section::after {
  content: ''; position: absolute; top: -160px; right: -80px; width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(232,146,10,.07) 0%, transparent 65%); pointer-events: none;
}
.contact-inner {
  max-width: var(--max-w); margin-inline: auto; padding-inline: 1.75rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start;
  position: relative; z-index: 1;
}
.contact-eyebrow { font-size: .6875rem; letter-spacing: .18rem; text-transform: uppercase; color: var(--amber); opacity: .9; margin-bottom: 1.25rem; display: flex; align-items: center; gap: .625rem; }
.contact-eyebrow::before { content: ''; width: 20px; height: 2px; background: var(--amber); border-radius: 1px; }
.contact-body { font-size: .9375rem; color: rgba(255,255,255,.42); line-height: 1.85; max-width: 380px; margin-bottom: 2.75rem; }
.contact-items { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-item-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: rgba(232,146,10,.1); border: 1px solid rgba(232,146,10,.18);
  border-radius: var(--r-md); display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.contact-item:hover .contact-item-icon { background: rgba(232,146,10,.18); }
.contact-item-icon svg { width: 16px; height: 16px; stroke: var(--amber); }
.contact-item-label { font-size: .6875rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.28); margin-bottom: .2rem; font-weight: 500; }
.contact-item-value { font-size: .9375rem; color: rgba(255,255,255,.65); line-height: 1.5; }
.contact-form-wrap {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-lg); padding: 2.5rem;
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.contact-form-title { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 500; color: var(--white); margin-bottom: .5rem; }
.contact-form-sub { font-size: .875rem; color: rgba(255,255,255,.32); line-height: 1.65; margin-bottom: 2rem; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.cf-field { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1rem; }
.cf-label { font-size: .6875rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.32); }
.cf-input, .cf-textarea, .cf-select {
  background: rgba(255,255,255,.06); border: 1.5px solid rgba(255,255,255,.10);
  color: var(--white); padding: .875rem 1rem;
  font-size: .9375rem; font-family: var(--font-sans); font-weight: 300;
  border-radius: var(--r-md); outline: none; width: 100%;
  transition: border-color .15s, background .15s;
}
.cf-input::placeholder, .cf-textarea::placeholder { color: rgba(255,255,255,.2); }
.cf-input:focus, .cf-textarea:focus, .cf-select:focus { border-color: rgba(232,146,10,.5); background: rgba(255,255,255,.09); }
.cf-textarea { resize: vertical; min-height: 120px; }
.cf-select {
  appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,.3)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center;
}
.cf-select option { background: var(--navy-deep); color: var(--white); }
.cf-submit {
  width: 100%; background: var(--amber); color: var(--white); border: none;
  padding: 1rem; font-size: .9375rem; font-family: var(--font-sans); font-weight: 600;
  border-radius: var(--r-md); cursor: pointer; letter-spacing: .01em;
  position: relative; overflow: hidden;
  transition: background .15s, transform .15s, box-shadow .15s;
}
.cf-submit::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 25%, rgba(255,255,255,.18) 50%, transparent 75%);
  transform: translateX(-120%); transition: transform .5s;
}
.cf-submit:hover::before { transform: translateX(120%); }
.cf-submit:hover { background: #cc7d08; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(232,146,10,.35); }
.cf-note { text-align: center; font-size: .6875rem; color: rgba(255,255,255,.2); margin-top: .875rem; line-height: 1.5; }
.cf-success { display: none; text-align: center; padding: 2rem 1rem; }
.cf-success-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(232,146,10,.15); border: 1.5px solid rgba(232,146,10,.3);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem;
}
.cf-success-icon svg { width: 22px; height: 22px; stroke: var(--amber); }
.cf-success-title { font-family: var(--font-serif); font-size: 1.375rem; color: var(--white); margin-bottom: .5rem; }
.cf-success-msg { font-size: .9375rem; color: rgba(255,255,255,.4); line-height: 1.65; }

/* ═══════════════════════════════════════════════
   BOLD CTA (mirrors index.html cta-section)
═══════════════════════════════════════════════ */
.cta-section { background: var(--amber); position: relative; overflow: hidden; padding-block: var(--sp-xl); }
.cta-section::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 64px 64px;
}
.cta-section::after {
  content: ''; position: absolute; top: -160px; right: -80px; width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(255,255,255,.14) 0%, transparent 65%); pointer-events: none;
}
.cta-inner { max-width: var(--max-w); margin-inline: auto; padding-inline: 1.75rem; text-align: center; position: relative; z-index: 1; }
.cta-eyebrow { font-size: .75rem; letter-spacing: .15rem; text-transform: uppercase; color: rgba(255,255,255,.7); font-weight: 600; margin-bottom: 1.75rem; display: flex; align-items: center; justify-content: center; gap: .75rem; }
.cta-eyebrow::before, .cta-eyebrow::after { content: ''; width: 48px; height: 1px; background: rgba(255,255,255,.3); }
.cta-heading { font-family: var(--font-serif); font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 500; line-height: 1.15; letter-spacing: -.02em; color: var(--white); margin-bottom: 1.25rem; }
.cta-heading em { font-style: italic; color: var(--navy-deep); }
.cta-sub { font-size: 1.0625rem; color: rgba(255,255,255,.85); line-height: 1.7; max-width: 520px; margin: 0 auto 2.5rem; }
.cta-actions { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.cta-btn-dark {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-sans); font-size: 1rem; font-weight: 600;
  background: var(--navy-deep); color: var(--white);
  border: none; border-radius: var(--r-md);
  padding: 1.0625rem 2.5rem; cursor: pointer; text-decoration: none;
  transition: background .15s, transform .15s, box-shadow .15s;
  letter-spacing: .01em; white-space: nowrap;
  position: relative; overflow: hidden;
}
.cta-btn-dark:hover { background: var(--navy); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(15,36,71,.4); }
.cta-btn-outline {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-sans); font-size: 1rem; font-weight: 500;
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,.45); border-radius: var(--r-md);
  padding: 1rem 2.5rem; cursor: pointer; text-decoration: none;
  transition: background .15s, border-color .15s, transform .15s; white-space: nowrap;
}
.cta-btn-outline:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.7); transform: translateY(-2px); }

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
footer { background: var(--navy-deep); padding-block: var(--sp-md) var(--sp-sm); }
.footer-inner { max-width: var(--max-w); margin-inline: auto; padding-inline: 1.75rem; display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; }
.footer-logo-name { font-family: var(--font-sans); font-size: 1.125rem; font-weight: 700; color: var(--white); }
.footer-logo-name span { color: var(--amber); }
.footer-logo-arc { width: 100px; height: 3px; margin: .375rem 0 1rem; background: linear-gradient(90deg, var(--navy-mid) 0%, var(--amber) 65%, transparent 100%); border-radius: 2px; opacity: .4; }
.footer-desc { font-size: .875rem; color: rgba(255,255,255,.32); line-height: 1.75; max-width: 260px; }
.footer-col-title { font-size: .6875rem; letter-spacing: .14rem; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 1.25rem; font-weight: 500; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: .625rem; }
.footer-links a { font-size: .875rem; color: rgba(255,255,255,.55); text-decoration: none; transition: color .2s, padding-left .2s; }
.footer-links a:hover { color: var(--white); padding-left: .375rem; }
.footer-bottom { max-width: var(--max-w); margin-inline: auto; padding-inline: 1.75rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.08); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: .75rem; }
.footer-copy { font-size: .6875rem; color: rgba(255,255,255,.22); }
.footer-heart { font-size: .6875rem; color: var(--amber); opacity: .55; }

/* ═══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .ev-grid { grid-template-columns: 1fr; }
  .ev-sidebar { position: static; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
}
@media (max-width: 600px) {
  .event-hero { padding-top: calc(76px + var(--sp-sm)); padding-bottom: var(--sp-sm); }
  .hs-container, .event-hero-inner { padding-inline: 1.25rem; }
  .ev-hero-meta { gap: 1rem; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .cta-actions { flex-direction: column; align-items: stretch; }
  .cta-actions .cta-btn-dark, .cta-actions .cta-btn-outline { justify-content: center; }
  .contact-inner { padding-inline: 1rem; }
  .contact-form-wrap { padding: 1.5rem; }
  .cf-row { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
