:root {
  --orange: #ffa806;
  --green:  #64bc41;
  --sage:   #afccaa;
  --black:  #111111;
  --gray:   #888888;
  --muted:  #f5f3f0;
  --white:  #ffffff;
  --border: #e8e5e0;
  --hero-text-shift: 0px;
  --hero-visual-shift: 0px;
  --hero-photo-shift: 0px;
  --hero-line-shift: 0px;
  --hero-copy-opacity: 1;
  --hero-copy-blur: 0px;
  --hero-photo-scale: 1.03;
  --hero-transition-opacity: 1;
  --hero-full-photo-opacity: 0;
  --hero-full-photo-shift: 0px;
  --hero-text-bridge-opacity: 1;
  --hero-visual-edge-opacity: 1;
  --hero-stack-progress: 0;
  --hero-split-opacity: 1;
  --hero-right-photo-opacity: 1;
  --hero-photo-clip-left: 52%;
  --nearest-shift: 0px;
  --nearest-opacity: 1;
  --spotlight-shift: 0px;
  --spotlight-opacity: 1;
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body { font-family:'Poppins',sans-serif; background:var(--white); color:var(--black); overflow-x:hidden; -webkit-font-smoothing:antialiased; }
h1,h2,h3,h4 { font-family:'Archivo Black',sans-serif; }
a { text-decoration:none; color:inherit; }

.nav,
.hero,
.event-strip,
.spotlight,
.featuring,
.section,
.footer {
  opacity: 1;
  transform: translateY(100vh);
  animation: pageScrollUp 1.18s cubic-bezier(.7,0,.2,1) 1.68s forwards;
}
@keyframes pageScrollUp {
  0% {
    opacity: 1;
    transform: translateY(100vh);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ═══════════════════════════════════
   SMOOTH INTRO
═══════════════════════════════════ */
#intro {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background:
    radial-gradient(circle at 18% 20%, rgba(255,168,6,.18), transparent 26%),
    radial-gradient(circle at 82% 22%, rgba(100,188,65,.14), transparent 24%),
    linear-gradient(180deg, rgba(255,253,250,.98) 0%, rgba(246,241,231,.98) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  pointer-events: none;
  animation: introLiftAway 1.18s cubic-bezier(.7,0,.2,1) 1.68s forwards;
}
@keyframes introLiftAway {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(-100%);
    visibility: hidden;
  }
}

.intro-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity:.9;
}

.intro-orb {
  transform-origin:center;
  animation: orbFloat 5s ease-in-out infinite;
}
.intro-orb.alt { animation-delay:-1.8s; }
@keyframes orbFloat {
  0%,100% { transform: translateY(0) scale(1); opacity:.78; }
  50% { transform: translateY(-12px) scale(1.05); opacity:1; }
}

.intro-grid {
  opacity:.28;
  animation: gridDrift 10s linear infinite;
}
@keyframes gridDrift {
  from { transform: translateX(0); }
  to { transform: translateX(26px); }
}

.intro-sweep {
  opacity:0;
  animation: sweepIn 1.2s cubic-bezier(.4,0,.2,1) .2s forwards;
}
@keyframes sweepIn {
  0% { opacity:0; transform: translateX(-80px); }
  100% { opacity:1; transform: translateX(0); }
}

.intro-center {
  position: relative;
  z-index: 2;
  text-align: center;
  opacity: 0;
  animation:
    introCenterIn .9s cubic-bezier(.22,1,.36,1) .24s forwards,
    introCenterLift 1s cubic-bezier(.7,0,.2,1) 1.6s forwards;
}
@keyframes introCenterIn {
  0% {
    opacity:0;
    transform: translateY(120px) scale(.92);
  }
  100% {
    opacity:1;
    transform: translateY(0) scale(1);
  }
}
@keyframes introCenterLift {
  0% {
    opacity:1;
    transform: translateY(0) scale(1);
  }
  100% {
    opacity:0;
    transform: translateY(-185px) scale(.9);
  }
}

.intro-center::before {
  content:none;
}
.intro-mark {
  display:block;
  margin:0 auto .8rem;
  font-family:'Archivo Black',sans-serif;
  font-size:1.25rem;
  letter-spacing:.18em;
  color:var(--black);
  text-transform:uppercase;
  text-shadow:0 14px 32px rgba(17,17,17,.08);
}
.intro-center span {
  display: block;
  font-family: 'Archivo Black', sans-serif;
  font-size: .65rem;
  letter-spacing: .22em;
  color: rgba(17,17,17,.4);
  text-transform: uppercase;
}
.intro-center p {
  margin-top:.55rem;
  font-size:.76rem;
  color:#7d776f;
  letter-spacing:.04em;
}

/* ═══════════════════════════════════
   NAV
═══════════════════════════════════ */
.nav {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  padding: .9rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: box-shadow .3s;
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.07); }
.nav-logo {
  display:inline-flex;
  align-items:center;
  font-family:'Archivo Black',sans-serif;
  font-size:.9rem;
  letter-spacing:.16em;
  color:var(--black);
  text-transform:uppercase;
}
.nav-links { display:flex; gap:2.5rem; list-style:none; }
.nav-links a { font-size:.82rem; color:var(--gray); font-weight:500; transition:color .2s; }
.nav-links a:hover { color:var(--black); }
.nav-cta {
  background: var(--orange);
  color: var(--white);
  padding: .55rem 1.5rem;
  border-radius: 4px;
  font-size: .82rem;
  font-weight: 700;
  transition: background .25s, transform .2s;
}
.nav-cta:hover { background: #e89400; transform: translateY(-1px); }
.nav-toggle { display:none; background:none; border:none; cursor:pointer; padding:.3rem; }

/* ═══════════════════════════════════
   HERO — UNIFIED COMPOSITION
═══════════════════════════════════ */
.hero-stack {
  position: relative;
  z-index: 1;
}

.hero {
  display: grid;
  grid-template-columns: 52% 48%;
  min-height: calc(100vh - 66px - 88px);
  background:
    linear-gradient(90deg, #fffdfa 0%, #fff7ef 36%, #f6f1e7 68%, #f3efe8 100%);
  position: sticky;
  top: 66px;
  overflow: hidden;
  z-index: 1;
}

.hero-full-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  opacity: 1;
  clip-path: inset(0 0 0 var(--hero-photo-clip-left));
  transform: translateY(var(--hero-full-photo-shift)) scale(1.02);
  z-index: 0;
  pointer-events: none;
  transition: clip-path .12s linear, transform .12s linear;
  filter: saturate(1.02) contrast(1.01);
}

.hero-full-photo::after {
  content: none;
}

/* Shared accent line that physically spans both halves */
.hero-accent-line {
  position: absolute;
  top: 42%;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--orange) 30%, var(--green) 70%, transparent 100%);
  opacity: .18;
  pointer-events: none;
  z-index: 2;
  transform: translateY(var(--hero-line-shift));
  transition: transform .12s linear;
}

/* ── LEFT: TEXT ── */
.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 3rem 5rem 4rem;
  position: relative;
  z-index: 3;
  transform: translateY(var(--hero-text-shift));
  opacity: var(--hero-copy-opacity);
  filter: blur(var(--hero-copy-blur));
  transition: transform .12s linear;
}

.hero-text::after {
  content:'';
  position:absolute;
  top:7%;
  right:-10%;
  width:46%;
  height:86%;
  border-radius:28px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.94) 0%, rgba(255,255,255,.72) 44%, rgba(255,255,255,0) 100%),
    radial-gradient(circle at 20% 22%, rgba(255,168,6,.12), transparent 34%);
  pointer-events:none;
  z-index:-1;
  opacity: var(--hero-text-bridge-opacity);
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: .7rem;
  font-size: .68rem;
  letter-spacing: .18em;
  color: var(--orange);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 1.5rem;
  opacity:0;
  transform: translateY(24px);
  animation: heroReveal .9s cubic-bezier(.22,1,.36,1) 2.2s forwards;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--orange);
  flex-shrink: 0;
}

.hero-h1 {
  font-size: clamp(2.6rem, 4.2vw, 4rem);
  line-height: 1.04;
  letter-spacing: -.025em;
  color: var(--black);
  margin-bottom: 1.4rem;
  opacity:0;
  transform: translateY(28px);
  animation: heroReveal .95s cubic-bezier(.22,1,.36,1) 2.32s forwards;
}
.hero-h1 .hl {
  color: var(--orange);
  position: relative;
  display: inline-block;
}
/* underline bridge that extends toward the right */
.hero-h1 .hl::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 130%;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), rgba(100,188,65,.4), transparent);
}

.hero-sub {
  font-size: .97rem;
  color: #68635c;
  font-weight: 400;
  line-height: 1.7;
  max-width: 360px;
  margin-bottom: .9rem;
  opacity:0;
  transform: translateY(24px);
  animation: heroReveal .95s cubic-bezier(.22,1,.36,1) 2.44s forwards;
}

/* small proof chips under subtitle — connecting concept to right side */
.hero-chips {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
  margin-bottom: 2.4rem;
  opacity:0;
  transform: translateY(20px);
  animation: heroReveal .95s cubic-bezier(.22,1,.36,1) 2.56s forwards;
}
.hero-chip {
  font-size: .7rem;
  font-weight: 600;
  padding: .3rem .8rem;
  border-radius: 3px;
  border: 1px solid var(--border);
  color: var(--gray);
  letter-spacing: .03em;
}
.hero-chip.active { background: var(--orange); color: var(--white); border-color: var(--orange); }
.hero-chip.green  { background: var(--green);  color: var(--white); border-color: var(--green); }

.hero-actions {
  display:flex;
  gap:.9rem;
  flex-wrap:wrap;
  opacity:0;
  transform: translateY(20px);
  animation: heroReveal 1s cubic-bezier(.22,1,.36,1) 2.68s forwards;
}
.btn-fill {
  background: var(--black);
  color: var(--white);
  padding: .85rem 2rem;
  border-radius: 4px;
  font-weight: 700;
  font-size: .88rem;
  border: 2px solid var(--black);
  cursor: pointer;
  transition: all .25s;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}
.btn-fill:hover { background: var(--orange); border-color: var(--orange); }
.btn-line {
  background: transparent;
  color: var(--black);
  padding: .85rem 2rem;
  border-radius: 4px;
  font-weight: 700;
  font-size: .88rem;
  border: 2px solid var(--border);
  cursor: pointer;
  transition: all .25s;
}
.btn-line:hover { border-color: var(--black); }

.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 4rem;
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .72rem;
  color: #bbb;
  letter-spacing: .06em;
  opacity:0;
  transform: translateY(20px);
  animation: heroReveal 1s cubic-bezier(.22,1,.36,1) 2.84s forwards;
}
.scroll-arrow {
  width: 26px;
  height: 26px;
  border: 1px solid #ddd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: arrowBounce 2.2s ease-in-out infinite;
}
@keyframes arrowBounce { 0%,100% { transform:translateY(0); } 50% { transform:translateY(6px); } }

/* ── RIGHT: VISUAL ── */
.hero-visual {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,.16) 0%, rgba(255,255,255,.04) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  overflow: hidden;
  transform: translateY(var(--hero-visual-shift));
  opacity: var(--hero-split-opacity);
  transition: transform .12s linear;
}

.hero-visual::before {
  content:'';
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(255,248,240,.96) 0%, rgba(255,248,240,.3) 16%, rgba(255,255,255,0) 32%),
    linear-gradient(180deg, rgba(255,255,255,.06) 0%, rgba(255,255,255,0) 28%);
  z-index:1;
  pointer-events:none;
  opacity: var(--hero-visual-edge-opacity);
}

.hero-visual::after {
  content:'';
  position:absolute;
  inset:0;
  background:
    linear-gradient(135deg, rgba(17,17,17,.05) 0%, rgba(17,17,17,0) 38%, rgba(255,255,255,.1) 100%),
    radial-gradient(circle at 24% 18%, rgba(255,168,6,.16), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.16) 100%);
  z-index:1;
  pointer-events:none;
}

.hero-photo {
  display: none;
}

/* Soft warm blob — same canvas, different feel */
.hero-blob {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,168,6,.14) 0%, rgba(100,188,65,.08) 48%, transparent 75%);
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  animation: blobPulse 6s ease-in-out infinite;
}
@keyframes blobPulse { 0%,100%{transform:translate(-50%,-50%) scale(1);} 50%{transform:translate(-50%,-50%) scale(1.08);} }
@keyframes heroReveal {
  0% {
    opacity:0;
    transform: translateY(24px);
  }
  100% {
    opacity:1;
    transform: translateY(0);
  }
}
@keyframes heroPhotoIn {
  0% {
    opacity:0;
    transform: translateY(calc(var(--hero-photo-shift) + 30px)) scale(1.08);
  }
  100% {
    opacity:1;
    transform: translateY(var(--hero-photo-shift)) scale(1.03);
  }
}

/* Floating stat/event cards — same purpose as left text */
.hf-card {
  position: absolute;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.68);
  border-radius: 10px;
  padding: 1rem 1.3rem;
  box-shadow: 0 14px 36px rgba(0,0,0,.16);
  z-index:2;
  backdrop-filter: blur(8px);
  opacity:0;
}
.hf-card .fc-tag {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: .35rem;
}
.hf-card.green-card .fc-tag { color: var(--green); }
.hf-card .fc-name {
  font-family: 'Archivo Black', sans-serif;
  font-size: .88rem;
  color: var(--black);
  margin-bottom: .25rem;
}
.hf-card .fc-meta { font-size: .73rem; color: var(--gray); }
.hf-card .fc-dot { width:6px; height:6px; border-radius:50%; background:var(--green); display:inline-block; margin-right:.3rem; vertical-align:middle; }

.hf-card.card-a {
  top: 12%;
  right: 8%;
  width: 196px;
  animation:
    heroCardIn .9s cubic-bezier(.22,1,.36,1) 2.42s forwards,
    floatA 5s ease-in-out 3.34s infinite;
}
.hf-card.card-b {
  bottom: 15%;
  left: 4%;
  width: 178px;
  animation:
    heroCardIn .95s cubic-bezier(.22,1,.36,1) 2.58s forwards,
    floatB 6s ease-in-out 3.53s infinite;
}
.hf-card.card-c {
  top: 52%;
  right: 3%;
  width: 160px;
  animation:
    heroCardIn 1s cubic-bezier(.22,1,.36,1) 2.74s forwards,
    floatA 7s ease-in-out 3.74s infinite;
}
@keyframes heroCardIn {
  0% { opacity:0; transform: translateY(32px) scale(.92); }
  100% { opacity:1; transform: translateY(0) scale(1); }
}
@keyframes floatA { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-10px);} }
@keyframes floatB { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-8px);} }

/* ═══════════════════════════════════
   EVENT STRIP
═══════════════════════════════════ */
.event-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.35rem 2.4rem 1.5rem;
  width: 100%;
  margin: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,.6) 0%, rgba(255,255,255,.22) 100%),
    linear-gradient(90deg, rgba(255,168,6,.14) 0%, rgba(255,255,255,.08) 30%, rgba(100,188,65,.12) 100%);
  border-top: 1px solid rgba(255,255,255,.4);
  border-bottom: 1px solid rgba(17,17,17,.06);
  backdrop-filter: blur(18px) saturate(145%);
  flex-wrap: wrap;
  cursor: pointer;
  transition: background .25s, transform .25s, box-shadow .25s;
  overflow: hidden;
  position: relative;
  text-align:center;
  z-index: 3;
  opacity: var(--nearest-opacity);
  transform: translateY(var(--nearest-shift));
  transition: background .25s, transform .25s, box-shadow .25s, opacity .18s linear;
}
.event-strip::after {
  content:'';
  position:absolute;
  top:0;left:-60%;width:40%;height:100%;
  background:linear-gradient(90deg,transparent,rgba(255,255,255,.24),transparent);
  animation:stripShimmer 3.5s ease-in-out infinite;
}
@keyframes stripShimmer { to { left:130%; } }
.event-strip:hover {
  background:
    linear-gradient(180deg, rgba(255,255,255,.68) 0%, rgba(255,255,255,.28) 100%),
    linear-gradient(90deg, rgba(255,168,6,.16) 0%, rgba(255,255,255,.1) 30%, rgba(100,188,65,.14) 100%);
}
.strip-left {
  display:flex;
  align-items:center;
  justify-content:center;
  gap:1.1rem;
  flex-wrap:wrap;
  width:100%;
}
.strip-tag  { font-size:.65rem; letter-spacing:.16em; color:#d77d00; text-transform:uppercase; font-weight:700; }
.strip-div  { width:1px; height:18px; background:rgba(17,17,17,.1); }
.strip-name { font-family:'Archivo Black',sans-serif; font-size:1rem; color:var(--black); }
.strip-meta { font-size:.8rem; color:rgba(17,17,17,.56); }
.strip-chip {
  background:rgba(255,168,6,.14);
  color:#c56f00;
  border:1px solid rgba(255,168,6,.2);
  padding:.22rem .7rem;
  border-radius:999px;
  font-size:.68rem;
  font-weight:700;
}
.strip-cta  {
  display:flex;
  align-items:center;
  justify-content:center;
  gap:.4rem;
  width:100%;
  font-size:.82rem;
  font-weight:700;
  color:#d77d00;
  white-space:nowrap;
}
.strip-cta svg { transition:transform .25s; }
.event-strip:hover .strip-cta svg { transform:translateX(4px); }

/* ═══════════════════════════════════
   FEATURING SECTION
═══════════════════════════════════ */
.featuring-stage {
  position: relative;
  min-height: calc(100vh - 66px + 160px);
  z-index: 2;
}

.featuring {
  padding: 6rem 4rem 11rem;
  background:
    linear-gradient(180deg, rgba(245,243,240,.44) 0%, rgba(245,243,240,.58) 100%),
    linear-gradient(120deg, rgba(255,255,255,.08) 0%, rgba(255,255,255,.18) 100%),
    var(--tpe-featuring-bg) center/cover no-repeat;
  position: sticky;
  top: 66px;
  overflow:hidden;
  min-height: calc(100vh - 66px);
  display: flex;
  align-items: center;
}
.featuring::before {
  content:'';
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(245,243,240,.46) 0%, rgba(245,243,240,.22) 34%, rgba(245,243,240,.34) 100%),
    radial-gradient(circle at top left, rgba(255,168,6,.1), transparent 28%),
    radial-gradient(circle at bottom right, rgba(100,188,65,.08), transparent 24%);
  pointer-events:none;
}
.featuring::after {
  content:'';
  position:absolute;
  inset:auto 0 0 0;
  height:120px;
  background:linear-gradient(180deg, rgba(245,243,240,0) 0%, rgba(245,243,240,.52) 100%);
  pointer-events:none;
}
.featuring-inner {
  max-width: 1200px;
  margin: 0 auto;
  position:relative;
  z-index:1;
}
.featuring-head { text-align:center; margin-bottom:3.5rem; }
.featuring-head h2 { font-size:clamp(1.6rem,3vw,2.4rem); letter-spacing:-.02em; margin-bottom:.6rem; }
.featuring-head p {
  font-size:.96rem;
  color:#3f3a34;
  max-width:520px;
  margin:0 auto;
  line-height:1.72;
  font-weight:500;
  background:rgba(255,255,255,.46);
  border:1px solid rgba(255,255,255,.32);
  border-radius:18px;
  padding:.75rem 1rem;
  backdrop-filter: blur(4px);
  box-shadow:0 10px 26px rgba(17,17,17,.08);
}

.feat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.feat-card {
  background: rgba(255,255,255,.8);
  border: 1px solid rgba(255,255,255,.38);
  border-radius: 12px;
  padding: 2rem 1.5rem 1.8rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  transition: transform .3s, box-shadow .3s;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(6px);
  box-shadow: 0 18px 42px rgba(0,0,0,.1);
}
.feat-card::before {
  content:'';
  position:absolute;
  bottom:0;left:0;right:0;
  height:3px;
  background:linear-gradient(90deg,var(--orange),var(--green));
  transform:scaleX(0);
  transform-origin:left;
  transition:transform .4s ease;
}
.feat-card:hover { transform:translateY(-4px); box-shadow:0 12px 40px rgba(0,0,0,.08); }
.feat-card:hover::before { transform:scaleX(1); }

.feat-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
}
.feat-card h3 { font-size:1rem; letter-spacing:-.01em; }
.feat-card p  { font-size:.82rem; color:var(--gray); line-height:1.6; }

/* ── SVG ICON: NETWORKING ── */
.icon-net .node { animation: nodePulse 2.4s ease-in-out infinite; }
.icon-net .node:nth-child(2) { animation-delay:.4s; }
.icon-net .node:nth-child(3) { animation-delay:.8s; }
.icon-net .node:nth-child(4) { animation-delay:1.2s; }
.icon-net .node:nth-child(5) { animation-delay:1.6s; }
@keyframes nodePulse { 0%,100%{opacity:1;r:4;} 50%{opacity:.5;r:5.5;} }

.icon-net .edge {
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
  animation: edgeDraw 1.6s ease-in-out infinite alternate;
}
.icon-net .edge:nth-child(6)  { animation-delay:.2s; }
.icon-net .edge:nth-child(7)  { animation-delay:.5s; }
.icon-net .edge:nth-child(8)  { animation-delay:.8s; }
.icon-net .edge:nth-child(9)  { animation-delay:1.1s; }
.icon-net .edge:nth-child(10) { animation-delay:1.4s; }
@keyframes edgeDraw { to { stroke-dashoffset:0; } }

/* ── SVG ICON: GROWTH ── */
.icon-grow .bar {
  transform-origin: bottom;
  animation: barGrow 1.8s cubic-bezier(.4,0,.2,1) infinite alternate;
}
.icon-grow .bar:nth-child(1) { animation-delay:0s; }
.icon-grow .bar:nth-child(2) { animation-delay:.2s; }
.icon-grow .bar:nth-child(3) { animation-delay:.4s; }
.icon-grow .bar:nth-child(4) { animation-delay:.6s; }
@keyframes barGrow { 0%{transform:scaleY(.3);opacity:.5;} 100%{transform:scaleY(1);opacity:1;} }

.icon-grow .trend {
  stroke-dasharray: 80;
  stroke-dashoffset: 80;
  animation: trendDraw 2s ease-in-out infinite;
}
@keyframes trendDraw { 0%{stroke-dashoffset:80;} 60%{stroke-dashoffset:0;} 100%{stroke-dashoffset:0;} }

.icon-grow .trend-dot { animation: dotAppear 2s ease-in-out infinite; }
@keyframes dotAppear { 0%,50%{opacity:0;} 80%,100%{opacity:1;} }

/* ── SVG ICON: CROSS-SELL ── */
.icon-cross .prod { animation: prodBob 2s ease-in-out infinite; }
.icon-cross .prod:nth-child(1) { animation-delay:0s; }
.icon-cross .prod:nth-child(2) { animation-delay:.8s; }
@keyframes prodBob { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-4px);} }

.icon-cross .arrow-path {
  stroke-dasharray: 36;
  stroke-dashoffset: 36;
  animation: arrowSlide 1.6s ease-in-out infinite alternate;
}
.icon-cross .arrow-path.rev { animation-delay:.5s; }
@keyframes arrowSlide { to { stroke-dashoffset: 0; } }

/* ── SVG ICON: MARKETING ── */
.icon-mkt .wave {
  opacity: 0;
  animation: waveExpand 2s ease-out infinite;
}
.icon-mkt .wave:nth-child(2) { animation-delay:.4s; }
.icon-mkt .wave:nth-child(3) { animation-delay:.8s; }
.icon-mkt .wave:nth-child(4) { animation-delay:1.2s; }
@keyframes waveExpand { 0%{opacity:0;transform:scale(.6);} 30%{opacity:.9;} 100%{opacity:0;transform:scale(1.3);} }

.icon-mkt .mega { animation: megaTilt 3s ease-in-out infinite; }
@keyframes megaTilt { 0%,100%{transform:rotate(-3deg);} 50%{transform:rotate(3deg);} }

/* ═══════════════════════════════════
   SECTIONS + CARDS
═══════════════════════════════════ */
.section { padding: 6rem 4rem; }
.section.alt { background: var(--muted); }
.section-inner { max-width: 1200px; margin: 0 auto; }

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
  gap: 1rem;
  flex-wrap: wrap;
}
.section-head h2 { font-size:clamp(1.8rem,3vw,2.5rem); letter-spacing:-.02em; }
.section-head a  { font-size:.82rem; color:var(--gray); text-decoration:underline; text-underline-offset:4px; transition:color .2s; }
.section-head a:hover { color:var(--black); }

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.ev-card {
  background: var(--white);
  padding: 2rem 1.8rem 1.6rem;
  position: relative;
  cursor: pointer;
  transition: background .25s;
  display: flex;
  flex-direction: column;
  gap: .45rem;
  border-right: 1px solid var(--border);
}
.ev-thumb {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: .6rem;
  background: #efe9df;
}
.ev-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ev-card:last-child { border-right: none; }
.section.alt .ev-card { background: var(--muted); }
.ev-card:hover { background: var(--white); }

.ev-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 0;
  transition: height .4s ease;
}
.ev-card.orange-ev::before { background: var(--orange); }
.ev-card.green-ev::before  { background: var(--green); }
.ev-card:hover::before { height: 100%; }

.ev-status { font-size:.63rem; letter-spacing:.12em; text-transform:uppercase; font-weight:700; margin-bottom:.2rem; }
.ev-card.orange-ev .ev-status { color:var(--orange); }
.ev-card.green-ev  .ev-status { color:var(--green); }

.ev-name { font-family:'Archivo Black',sans-serif; font-size:1.1rem; color:var(--black); line-height:1.2; }
.ev-date { font-size:.8rem; color:var(--gray); }
.ev-loc  { font-size:.77rem; color:var(--gray); }

.ev-link {
  margin-top: auto;
  padding-top: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .77rem;
  font-weight: 600;
  color: var(--black);
  border-top: 1px solid var(--border);
}
.ev-link svg { transition: transform .25s; flex-shrink:0; }
.ev-card:hover .ev-link svg { transform: translateX(4px); }

/* ═══════════════════════════════════
   GALLERY
═══════════════════════════════════ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.5rem;
}
.gallery-card {
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  aspect-ratio: 4/3;
  background: var(--border);
  transition: transform .35s;
}
.gallery-card:hover { transform: translateY(-4px); }
.gallery-card:hover .gc-overlay { opacity:1; }
.gc-thumb-ph {
  width:100%; height:100%;
  display:flex; flex-direction:column;
  align-items:center; justify-content:center;
  gap:.5rem;
  font-size:.8rem; font-weight:600; color:rgba(0,0,0,.3);
  letter-spacing:.04em;
}
.gc-thumb-ph.has-image {
  background: #efe9df;
}
.gc-thumb-ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gc-overlay {
  position:absolute;inset:0;
  background:rgba(17,17,17,.78);
  display:flex;flex-direction:column;align-items:center;justify-content:center;gap:.5rem;
  opacity:0;transition:opacity .3s;
}
.gc-overlay h3 { font-family:'Archivo Black',sans-serif;font-size:.95rem;color:var(--white);text-align:center;padding:0 1rem; }
.gc-overlay span { font-size:.73rem;color:rgba(255,255,255,.5); }
.gc-overlay .vbtn { margin-top:.4rem;background:var(--orange);color:var(--white);padding:.4rem 1.1rem;border-radius:3px;font-size:.73rem;font-weight:700; }

/* ═══════════════════════════════════
   MODAL
═══════════════════════════════════ */
.modal-overlay {
  position:fixed;inset:0;
  background:rgba(0,0,0,.88);backdrop-filter:blur(8px);
  z-index:5000;display:flex;align-items:center;justify-content:center;
  opacity:0;pointer-events:none;transition:opacity .3s;
}
.modal-overlay.open { opacity:1;pointer-events:all; }
.modal-box {
  background:var(--white);border-radius:16px;
  width:90%;max-width:780px;max-height:88vh;overflow-y:auto;padding:2rem;
  transform:scale(.95) translateY(16px);transition:transform .3s;
}
.modal-overlay.open .modal-box { transform:scale(1) translateY(0); }
.modal-top { display:flex;align-items:center;justify-content:space-between;margin-bottom:1.5rem; }
.modal-top h2 { font-size:1.35rem; }
.modal-close { background:none;border:1px solid var(--border);border-radius:50%;width:34px;height:34px;cursor:pointer;font-size:1.1rem;display:flex;align-items:center;justify-content:center;transition:all .2s; }
.modal-close:hover { background:var(--black);color:var(--white);border-color:var(--black); }
.photo-grid { display:grid;grid-template-columns:repeat(3,1fr);gap:1rem; }
.photo-item { aspect-ratio:4/3;border-radius:8px;display:flex;align-items:center;justify-content:center;font-size:.73rem;font-weight:600;color:rgba(255,255,255,.7);letter-spacing:.04em; }
.photo-item-image {
  padding: 0;
  overflow: hidden;
  background: #f4efe7;
}
.photo-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ═══════════════════════════════════
   FOOTER
═══════════════════════════════════ */
.footer {
  border-top: 1px solid var(--border);
  padding: 3rem 4rem;
  display:flex;align-items:flex-end;justify-content:space-between;flex-wrap:wrap;gap:1.5rem;
  position: relative;
  z-index: 10;
  background: var(--white);
  box-shadow: 0 -18px 36px rgba(17,17,17,.06);
}
.footer-brand { display:flex;flex-direction:column;align-items:flex-start;gap:.4rem; }
.footer-brand strong {
  font-family:'Archivo Black',sans-serif;
  font-size:.82rem;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--black);
}
.footer-brand p { font-size:.77rem;color:var(--gray); line-height:1.6; }
.footer-brand p strong { color: var(--black); font-weight: 600; }
.footer-links { display:flex;gap:2rem; }
.footer-links a { font-size:.77rem;color:var(--gray);transition:color .2s; }
.footer-links a:hover { color:var(--black); }
.footer-copy { font-size:.73rem;color:#b4b0aa; }

/* ═══════════════════════════════════
   RESPONSIVE
═══════════════════════════════════ */
@media(max-width:1024px) {
  .feat-grid { grid-template-columns:repeat(2,1fr); }
}
@media(max-width:900px) {
  .hero { grid-template-columns:1fr; }
  .hero-visual { height:60vw;min-height:300px; }
  .hero-text { padding:4rem 2rem 3rem; }
  .scroll-hint { left:2rem; }
  .section,.featuring { padding:4rem 2rem; }
  .event-strip { width:min(100% - 32px, 1240px); padding:1.15rem 1.4rem; margin:-1.4rem auto 0; }
  .events-grid { grid-template-columns:1fr; }
  .ev-card { border-right:none; border-bottom:1px solid var(--border); }
  .ev-card:last-child { border-bottom:none; }
  .gallery-grid { grid-template-columns:1fr 1fr; }
  .footer { padding:2.5rem 2rem; }
  .nav { padding:.8rem 1.5rem; }
  .nav-links,.nav-cta { display:none; }
  .nav-toggle { display:block; }
  .hf-card.card-c { display:none; }
}
@media(max-width:560px) {
  .gallery-grid { grid-template-columns:1fr; }
  .photo-grid { grid-template-columns:1fr 1fr; }
  .feat-grid { grid-template-columns:1fr; }
  .hf-card { display:none; }
}

/* ═══════════════════════════════════
   EVENT SPOTLIGHT SECTION
═══════════════════════════════════ */
.spotlight {
  padding: 4.5rem 4rem 5rem;
  background: var(--white);
  margin-top: -1px;
  position: relative;
  z-index: 6;
  border-top-left-radius: 34px;
  border-top-right-radius: 34px;
  box-shadow: 0 -18px 50px rgba(17,17,17,.08);
  transform: translateY(var(--spotlight-shift));
  opacity: var(--spotlight-opacity);
  transition: transform .18s linear, opacity .18s linear;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.spotlight-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.section {
  position: relative;
  z-index: 8;
  background: var(--white);
}

#spotlight-section {
  z-index: 6;
}

#events.section {
  z-index: 8;
  margin-top: -140px;
  background: var(--white);
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  box-shadow: 0 -26px 46px rgba(17,17,17,.12);
}

#past.section,
#gallery.section {
  box-shadow: 0 -22px 44px rgba(17,17,17,.1);
}

#past.section,
#gallery.section {
  z-index: 9;
}
.spotlight-label {
  display: flex;
  align-items: center;
  gap: .7rem;
  font-size: .68rem;
  letter-spacing: .18em;
  color: var(--orange);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 1.2rem;
}
.spotlight-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--orange);
}

/* The iframe-like snapshot frame */
.spotlight-frame-wrap {
  position: relative;
  border: 1px solid var(--border);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(0,0,0,.07);
  cursor: pointer;
  transition: box-shadow .3s, transform .3s;
  background: #fff;
}
.spotlight-frame-wrap:hover {
  box-shadow: 0 20px 64px rgba(0,0,0,.12);
  transform: translateY(-3px);
}

/* browser chrome bar */
.spotlight-chrome {
  display: none;
}
.chrome-dots { display:flex; gap:.4rem; }
.chrome-dot  { width:11px; height:11px; border-radius:50%; }
.chrome-dot.r { background:#ff5f57; }
.chrome-dot.y { background:#febc2e; }
.chrome-dot.g { background:#28c840; }
.chrome-bar {
  flex: 1;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: .28rem .9rem;
  font-size: .72rem;
  color: #999;
  font-family: monospace;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* the rendered HTML block lives here */
.spotlight-content {
  min-height: 320px;
  max-height: none;
  overflow: visible;
  position: relative;
}
.spotlight-content::after {
  display: none;
}

/* CTA that sits over the fade */
.spotlight-cta-bar {
  padding: 1.2rem 1.5rem;
  background: var(--white);
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.spotlight-cta-bar .sc-info h3 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 1rem;
  margin-bottom: .15rem;
}
.spotlight-cta-bar .sc-info p { font-size: .8rem; color: var(--gray); }
.spotlight-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--orange);
  color: var(--white);
  padding: .75rem 1.8rem;
  border-radius: 4px;
  font-weight: 700;
  font-size: .88rem;
  transition: background .25s, transform .2s;
  white-space: nowrap;
}
.spotlight-cta-btn:hover { background: #e89400; transform: translateY(-1px); }

/* empty state */
.spotlight-empty {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .8rem;
  color: #bbb;
  font-size: .9rem;
}
.spotlight-empty .se-icon { font-size: 2.5rem; }

.tpe-featured-snapshot {
  font-family: 'Poppins', sans-serif;
  background: #fff;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  min-height: 420px;
}

.tpe-featured-snapshot__copy {
  padding: 2.2rem 2.3rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tpe-featured-snapshot__tag {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: #fff7ed;
  color: #ffa806;
  border: 1px solid rgba(255,168,6,.25);
  padding: .35rem .8rem;
  border-radius: 999px;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  width: max-content;
}

.tpe-featured-snapshot__title {
  font-family: 'Archivo Black', sans-serif;
  font-size: 2.15rem;
  line-height: 1.05;
  color: #111;
  margin-bottom: 1rem;
}

.tpe-featured-snapshot__meta {
  display: flex;
  align-items: center;
  gap: .8rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
  color: #666;
  font-size: .82rem;
}

.tpe-featured-snapshot__chip {
  background: #fff7ed;
  color: #ffa806;
  border: 1px solid rgba(255,168,6,.3);
  padding: .35rem .9rem;
  border-radius: 999px;
  font-size: .74rem;
  font-weight: 700;
}

.tpe-featured-snapshot__summary {
  font-size: .9rem;
  line-height: 1.78;
  color: #666;
  max-width: 34rem;
}

.tpe-featured-snapshot__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .8rem;
  margin-top: 1.4rem;
}

.tpe-featured-snapshot__stat {
  background: #f5f3f0;
  border-radius: 8px;
  padding: 1rem .85rem;
}

.tpe-featured-snapshot__stat strong {
  display: block;
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.15rem;
  color: #111;
  margin-bottom: .2rem;
}

.tpe-featured-snapshot__stat:first-child strong { color:#ffa806; }
.tpe-featured-snapshot__stat:nth-child(2) strong { color:#64bc41; }

.tpe-featured-snapshot__stat span {
  display: block;
  font-size: .68rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #888;
}

.tpe-featured-snapshot__note {
  margin-top: 1.1rem;
  padding: 1rem 1.1rem;
  border-radius: 10px;
  background: #fcfaf6;
  border: 1px solid #eee4d6;
}

.tpe-featured-snapshot__note-label {
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #9a8f82;
  font-weight: 700;
  margin-bottom: .45rem;
}

.tpe-featured-snapshot__note-copy {
  font-size: .84rem;
  line-height: 1.75;
  color: #666;
}

.tpe-featured-snapshot__visual {
  display: flex;
  flex-direction: column;
  border-left: 1px solid #ece5da;
  position: relative;
  overflow: hidden;
}

.tpe-featured-snapshot__image-wrap {
  flex: 1;
  min-height: 0;
  position: relative;
  background:
    radial-gradient(circle at top left, rgba(255,168,6,.14), transparent 24%),
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(244,239,232,.98));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.tpe-featured-snapshot__image {
  max-width: 100%;
  max-height: 360px;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 18px 26px rgba(0,0,0,.12));
}

.tpe-featured-snapshot__image-wrap--hero {
  align-items: center;
  justify-content: center;
}

.tpe-featured-snapshot__image--hero {
  width: min(100%, 420px);
  max-width: 100%;
  max-height: 380px;
  height: auto;
  object-fit: contain;
  object-position: center;
  transform: none;
  margin: 0 auto;
}

.tpe-featured-snapshot--hero {
  grid-template-columns: minmax(0, 1.08fr) minmax(440px, .92fr);
  min-height: 560px;
  background:
    radial-gradient(circle at top left, rgba(255,168,6,.12), transparent 24%),
    radial-gradient(circle at bottom right, rgba(100,188,65,.08), transparent 28%),
    linear-gradient(180deg, #fffefb 0%, #f7f1e4 100%);
}

.tpe-featured-snapshot--hero .tpe-featured-snapshot__copy {
  min-height: 100%;
  padding: 3.2rem 3rem 2.8rem;
  justify-content: space-between;
}

.tpe-featured-snapshot__eyebrow {
  font-size: .72rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: #d79d00;
  font-weight: 800;
  margin-bottom: 1rem;
}

.tpe-featured-snapshot__hero-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2.9rem, 4.75vw, 5.2rem);
  line-height: .93;
  color: #171412;
  letter-spacing: -.04em;
  margin-bottom: 1.25rem;
  max-width: 11ch;
}

.tpe-featured-snapshot__hero-accent {
  color: #f2bf1a;
}

.tpe-featured-snapshot--hero .tpe-featured-snapshot__summary {
  max-width: 34rem;
  font-size: 1rem;
  line-height: 1.78;
}

.tpe-featured-snapshot__hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-top: 1.65rem;
}

.tpe-featured-snapshot__hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: .85rem 1.25rem;
  border-radius: 6px;
  border: 1px solid #e7dccb;
  background: #fff;
  color: #171412;
  font-size: .84rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
}

.tpe-featured-snapshot__hero-btn--gold {
  background: #f2bf1a;
  border-color: #f2bf1a;
}

.tpe-featured-snapshot__hero-btn--ghost {
  background: rgba(255,255,255,.7);
}

.tpe-featured-snapshot__hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .95rem 1.1rem;
  margin-top: 1.65rem;
}

.tpe-featured-snapshot__hero-meta-item {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  color: #5f574e;
  font-size: .84rem;
}

.tpe-featured-snapshot__hero-meta-item strong {
  color: #2d2a26;
  font-weight: 700;
}

.tpe-featured-snapshot__hero-countdown {
  margin-top: 1.8rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(231,220,203,.72);
}

.tpe-featured-snapshot__hero-countdown-label {
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(23,20,18,.46);
  font-weight: 700;
  margin-bottom: .8rem;
}

.tpe-featured-snapshot__hero-countdown-row {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  flex-wrap: wrap;
}

.tpe-featured-snapshot__hero-countdown-unit {
  text-align: center;
  min-width: 74px;
}

.tpe-featured-snapshot__hero-countdown-num {
  min-width: 74px;
  padding: .72rem .82rem;
  border: 1px solid rgba(242,191,26,.22);
  border-radius: 10px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 10px 24px rgba(23,20,18,.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 2.15rem;
  line-height: 1;
  color: #171412;
  font-variant-numeric: tabular-nums;
}

.tpe-featured-snapshot__hero-countdown-text {
  margin-top: .34rem;
  font-size: .56rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(23,20,18,.42);
  font-weight: 700;
}

.tpe-featured-snapshot--hero .tpe-featured-snapshot__visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 32%, rgba(242,191,26,.16), transparent 30%),
    radial-gradient(circle at 78% 72%, rgba(20,150,182,.08), transparent 28%);
  pointer-events: none;
}

.tpe-featured-snapshot--hero .tpe-featured-snapshot__image-wrap {
  align-items: center;
  justify-content: center;
  padding: 2.1rem 1.8rem 1.25rem 1.2rem;
  background: transparent;
}

.tpe-featured-snapshot--hero .tpe-featured-snapshot__image--hero {
  width: min(100%, 680px);
  max-height: 520px;
  transform: translateX(3%) translateY(1%);
  transform-origin: center center;
  filter: drop-shadow(0 24px 34px rgba(0,0,0,.14));
}

.tpe-featured-snapshot__footer {
  padding: 1.1rem 1.35rem;
  background: #fff;
  border-top: 1px solid #ece5da;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.tpe-featured-snapshot__footer-label {
  font-size: .74rem;
  color: #888;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.tpe-featured-snapshot__footer-cta {
  font-size: .78rem;
  font-weight: 700;
  color: #ffa806;
}

@media(max-width:900px) {
  .hero-stack { z-index: 1; }
  .hero {
    min-height: calc(100vh - 58px - 82px);
    top: 58px;
  }
  .spotlight {
    padding: 3.2rem 2rem 4rem;
    min-height: 100svh;
  }
  .featuring {
    top: 58px;
    min-height: calc(100svh - 58px);
    display: block;
    padding-bottom: 6rem;
  }
  .featuring-stage {
    min-height: calc(100svh - 58px + 96px);
  }
  .featuring-inner {
    padding: 0;
    border-radius: 0;
  }
  .spotlight-content { max-height: 400px; }
  #events.section { margin-top: -72px; }
}

@media(max-width:640px) {
  .nav {
    padding: .8rem 1rem;
  }
  .nav-logo {
    font-size: .78rem;
    letter-spacing: .12em;
  }
  .hero {
    min-height: calc(100svh - 58px - 70px);
    grid-template-columns: 1fr;
    top: 58px;
  }
  .hero-text {
    min-height: auto;
    justify-content: flex-start;
    padding: 2.25rem 1rem .7rem;
    align-items: center;
    text-align: center;
    background: rgba(255,255,255,.84);
    border-bottom: 1px solid rgba(17,17,17,.06);
  }
  .hero-text::after {
    display: none;
  }
  .hero-eyebrow {
    margin-bottom: .8rem;
    justify-content: center;
  }
  .hero-eyebrow::before {
    width: 24px;
  }
  .hero-h1 {
    font-size: clamp(2.1rem, 9.5vw, 3rem);
    line-height: .98;
    margin-bottom: .65rem;
  }
  .hero-h1 .hl::after {
    width: 100%;
  }
  .hero-sub {
    font-size: .88rem;
    line-height: 1.58;
    max-width: 32rem;
    margin-bottom: .7rem;
  }
  .hero-pills {
    gap: .5rem;
  }
  .hero-chips {
    justify-content: center;
    margin-bottom: .95rem;
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: .65rem;
  }
  .hero-actions a {
    width: 100%;
    justify-content: center;
  }
  .hero-visual {
    height: auto;
    min-height: 0;
    padding: .55rem 1rem 1.25rem;
    align-items: center;
    justify-content: center;
    background:
      radial-gradient(circle at top center, rgba(255,190,52,.18), transparent 56%),
      rgba(255,255,255,.74);
  }
  .hero-visual::before,
  .hero-visual::after {
    display: none;
  }
  .hero-photo {
    width: min(100%, 430px);
    height: clamp(260px, 34svh, 360px);
    object-fit: cover;
    object-position: center;
    transform: scale(1.02);
    border-radius: 22px;
    box-shadow: 0 24px 50px rgba(17,17,17,.14);
  }
  .hero-blob {
    width: 72%;
    height: 66%;
    bottom: .8rem;
    right: 50%;
    transform: translateX(50%);
    filter: blur(26px);
  }
  .hf-card {
    display: none;
  }
  .event-strip {
    width: calc(100% - 20px);
    padding: 1rem 1rem;
    margin: -.6rem auto 0;
    border-radius: 18px;
    box-shadow: 0 18px 38px rgba(17,17,17,.08);
  }
  .event-strip-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: .7rem;
  }
  .strip-cta {
    width: 100%;
    justify-content: center;
  }
  .section,
  .featuring,
  .spotlight,
  .footer {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .section-head {
    margin-bottom: 1.3rem;
    align-items: flex-start;
  }
  .section-head a { font-size: .76rem; }
  .spotlight {
    padding-top: 2.5rem;
    padding-bottom: 3rem;
    min-height: auto;
  }
  .spotlight-frame-wrap {
    border-radius: 20px;
    box-shadow: 0 18px 40px rgba(17,17,17,.08);
  }
  .spotlight-chrome {
    padding: .55rem .75rem;
  }
  .chrome-bar {
    display: none;
  }
  .spotlight-content {
    min-height: 0;
    max-height: none;
    overflow: visible;
  }
  .spotlight-content::after {
    display: none;
  }
  .spotlight-cta-bar {
    padding: 1rem;
    flex-direction: column;
    align-items: stretch;
  }
  .spotlight-cta-btn {
    width: 100%;
    justify-content: center;
  }
  .tpe-featured-snapshot {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .tpe-featured-snapshot--hero {
    min-height: 0;
  }
  .tpe-featured-snapshot__copy {
    padding: 1.3rem 1.1rem 1.05rem;
    overflow: hidden;
  }
  .tpe-featured-snapshot__title {
    font-size: clamp(1.65rem, 8.3vw, 1.98rem);
    margin-bottom: .8rem;
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
    text-wrap: balance;
  }
  .tpe-featured-snapshot__meta {
    flex-direction: column;
    align-items: flex-start;
    gap: .55rem;
  }
  .tpe-featured-snapshot__meta span {
    max-width: 100%;
  }
  .tpe-featured-snapshot__summary {
    max-width: none;
    font-size: .84rem;
    line-height: 1.7;
  }
  .tpe-featured-snapshot__hero-title {
    max-width: 100%;
    font-size: clamp(1.9rem, 9vw, 2.55rem);
    line-height: .98;
  }
  .tpe-featured-snapshot__hero-actions {
    flex-direction: column;
  }
  .tpe-featured-snapshot__hero-btn {
    width: 100%;
  }
  .tpe-featured-snapshot__hero-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: .65rem;
  }
  .tpe-featured-snapshot__hero-countdown-row {
    gap: .55rem;
  }
  .tpe-featured-snapshot__hero-countdown-unit {
    flex: 1 1 calc(50% - .55rem);
  }
  .tpe-featured-snapshot__hero-countdown-num {
    min-width: 0;
    width: 100%;
    font-size: 1.7rem;
  }
  .tpe-featured-snapshot__stats {
    display: flex;
    overflow-x: auto;
    gap: .7rem;
    padding-bottom: .2rem;
    padding-right: .1rem;
    margin-top: 1rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
  }
  .tpe-featured-snapshot__stats::-webkit-scrollbar { display:none; }
  .tpe-featured-snapshot__stat {
    flex: 0 0 42vw;
    min-width: 42vw;
    scroll-snap-align: start;
  }
  .tpe-featured-snapshot__note {
    margin-top: .9rem;
  }
  .tpe-featured-snapshot__visual {
    border-left: none;
    border-top: 1px solid #ece5da;
    min-height: 0;
  }
  .tpe-featured-snapshot__image-wrap,
  .tpe-featured-snapshot--hero .tpe-featured-snapshot__image-wrap {
    min-height: 250px;
    padding: .8rem .8rem .6rem;
    align-items: center;
    justify-content: center;
  }
  .tpe-featured-snapshot__image {
    width: min(100%, 290px);
    max-width: 100%;
    max-height: none;
    height: auto;
    transform: translateX(-2%);
  }
  .tpe-featured-snapshot__image--hero {
    width: min(100%, 340px);
    max-width: 100%;
    height: auto;
    max-height: none;
    transform: translateY(-1%);
    margin: 0 auto;
  }
  #events.section {
    margin-top: -42px;
  }
  .events-grid {
    display: flex;
    gap: .9rem;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding: .15rem .05rem .75rem;
    margin: 0 -.05rem;
    border: none;
    border-radius: 0;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
  }
  .events-grid::-webkit-scrollbar { display:none; }
  .ev-card {
    flex: 0 0 82vw;
    min-width: 82vw;
    border: 1px solid var(--border);
    border-radius: 18px;
    border-right: 1px solid var(--border);
    border-bottom: none;
    padding: 1.45rem 1.1rem 1.2rem;
    scroll-snap-align: start;
    box-shadow: 0 16px 34px rgba(17,17,17,.07);
  }
  .ev-card:last-child {
    border-bottom: none;
    border-right: 1px solid var(--border);
  }
  .featuring {
    padding-top: 2.9rem;
    padding-bottom: 3.4rem;
  }
  .featuring-head {
    margin-bottom: 1.6rem;
    text-align: left;
  }
  .featuring-head p {
    max-width: none;
    font-size: .92rem;
    line-height: 1.62;
  }
  .feat-grid {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding: .2rem .1rem 1rem;
    margin: 0 -.1rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
  }
  .feat-grid::-webkit-scrollbar {
    display: none;
  }
  .feat-card {
    flex: 0 0 82vw;
    min-width: 82vw;
    scroll-snap-align: start;
    padding: 1.35rem 1.15rem 1.25rem;
    border-radius: 18px;
    box-shadow: 0 18px 34px rgba(17,17,17,.1);
  }
  .feat-grid::after {
    content: "";
    flex: 0 0 .1rem;
  }
  .feat-card h3 {
    font-size: 1.02rem;
  }
  .feat-card p {
    font-size: .84rem;
    line-height: 1.62;
  }
  .feat-icon {
    width: 50px;
    height: 50px;
  }
  .gallery-card {
    min-height: 240px;
    border-radius: 18px;
    box-shadow: 0 16px 34px rgba(17,17,17,.08);
  }
  .gallery-grid {
    display: flex;
    overflow-x: auto;
    flex-wrap: nowrap;
    gap: .9rem;
    padding: .15rem .05rem .75rem;
    margin: 0 -.05rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
  }
  .gallery-grid::-webkit-scrollbar { display:none; }
  .gallery-card {
    flex: 0 0 82vw;
    min-width: 82vw;
    aspect-ratio: 4/4.7;
    scroll-snap-align: start;
  }
  .modal-box {
    width: min(100%, 94vw);
    padding: 1rem;
  }
  .photo-grid {
    grid-template-columns: 1fr;
  }
  .footer {
    padding-top: 2.2rem;
    padding-bottom: 2rem;
    align-items: center;
    text-align: center;
    justify-content: center;
  }
  .footer-brand {
    align-items: center;
  }
  .footer-links {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: .8rem 1rem;
  }
}

@media(max-width:420px) {
  .hero {
    min-height: calc(100svh - 58px - 68px);
  }
  .hero-h1 {
    font-size: 1.9rem;
  }
  .hero-visual {
    padding-left: .85rem;
    padding-right: .85rem;
    padding-bottom: 1rem;
  }
  .hero-text {
    padding: 2rem .85rem .55rem;
  }
  .hero-photo {
    height: clamp(230px, 30svh, 320px);
    width: 100%;
  }
  .hero-sub {
    font-size: .84rem;
  }
  .tpe-featured-snapshot__stat {
    flex-basis: 56vw;
    min-width: 56vw;
  }
  .tpe-featured-snapshot__image {
    width: min(100%, 270px);
    transform: translateX(-1%);
  }
  .feat-card {
    flex-basis: 86vw;
    min-width: 86vw;
  }
  .ev-card,
  .gallery-card {
    flex-basis: 86vw;
    min-width: 86vw;
  }
  .ev-card,
  .feat-card {
    padding: 1.3rem 1rem 1.15rem;
  }
}
