/* ==========================================================================
   P3ACE — Building a Stronger Kissimmee
   Clean corporate-modern · Archivo display + Figtree body
   ========================================================================== */

:root {
  --bg:      #FAFAF7;
  --ink:     #0E2A23;
  --ink-70:  rgba(14, 42, 35, 0.72);
  --ink-40:  rgba(14, 42, 35, 0.4);
  --ink-12:  rgba(14, 42, 35, 0.12);
  --accent:  #FF6B35;
  --accent-2:#E5551F;
  --teal:    #0F766E;
  --sand:    #EFEAE0;
  --dark:    #0E2A23;
  --light-70: rgba(250, 250, 247, 0.75);
  --light-12: rgba(250, 250, 247, 0.14);

  --font-display: "Archivo", "Helvetica Neue", sans-serif;
  --font-body: "Figtree", -apple-system, sans-serif;

  --container: min(1240px, 92vw);
  --nav-h: 72px;

  /* hero + nav dark-glass tokens (scoped to .hero and .nav only) */
  --hero-bg: #050506;
  --glass-bg: rgba(0, 0, 0, 0.4);
  --glass-border: rgba(255, 255, 255, 0.14);
  --glass-border-soft: rgba(255, 255, 255, 0.08);
  --glass-white: rgba(255, 255, 255, 0.92);
  --glass-white-70: rgba(255, 255, 255, 0.72);
  --glass-white-40: rgba(255, 255, 255, 0.4);
  --nav-glass-bg: rgba(10, 12, 12, 0.55);
  --font-hero: "Inter", -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3 { font-family: var(--font-display); }

.container { max-width: var(--container); margin: 0 auto; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 1000;
  background: var(--ink); color: var(--bg); padding: 0.75rem 1.25rem;
}
.skip-link:focus { left: 0; }

/* -------------------- buttons -------------------- */
.btn {
  display: inline-block; text-decoration: none;
  font-family: var(--font-display); font-weight: 700; font-size: 0.95rem;
  padding: 0.85rem 1.75rem; border-radius: 6px;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-sm { padding: 0.55rem 1.2rem; font-size: 0.85rem; }
.btn-lg { padding: 1.05rem 2.4rem; font-size: 1.1rem; }
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: var(--accent-2); }
.btn-dark { background: var(--ink); color: var(--bg); }
.btn-dark:hover { background: #1B4437; }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--ink-12); }
.btn-ghost:hover { border-color: var(--ink); }
.btn-ghost-light { background: transparent; color: var(--bg); border: 1.5px solid var(--light-12); }
.btn-ghost-light:hover { border-color: var(--bg); }

/* -------------------- nav -------------------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: var(--nav-glass-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--glass-border-soft);
}
.nav-inner {
  max-width: var(--container); margin: 0 auto;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
}
.nav-logo {
  font-family: var(--font-display); font-weight: 900; font-size: 1.5rem;
  letter-spacing: -0.01em; text-decoration: none; color: var(--glass-white);
}
.nav-logo span { color: var(--accent); }
.nav-links { display: flex; gap: 2rem; }
.nav-links a {
  text-decoration: none; font-weight: 600; font-size: 0.95rem; color: var(--glass-white-70);
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--glass-white); }
.nav-right { display: flex; align-items: center; gap: 1rem; }

.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 40px; height: 40px; padding: 10px;
  flex-direction: column; justify-content: center; gap: 6px;
}
.nav-toggle span { display: block; height: 2px; background: var(--glass-white); transition: transform 0.25s ease; }
.nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-links {
    position: absolute; top: var(--nav-h); left: 0; right: 0;
    background: var(--nav-glass-bg);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--glass-border-soft);
    flex-direction: column; gap: 0; padding: 0.5rem 4vw 1rem;
    display: none;
  }
  .nav-links.is-open { display: flex; }
  .nav-links a { padding: 0.85rem 0; border-bottom: 1px solid var(--glass-border-soft); }
  .nav-links a:last-child { border-bottom: none; }
  .nav-toggle { display: flex; }
}

/* -------------------- hero (dark-glass, video background) -------------------- */
.hero {
  position: relative;
  height: 100svh;
  min-height: 620px;
  overflow: hidden;
  background: var(--hero-bg);
  color: var(--glass-white);
  --hero-ticker-h: 3.2rem;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.1) 40%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding-top: var(--nav-h);
}

.hero-bottom {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 4vw calc(clamp(2rem, 6vh, 4rem) + var(--hero-ticker-h));
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: end;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr 1fr; }
}

/* -------------------- glass utility (ported from test-landscape .liquid-glass) -------------------- */
.glass {
  position: relative;
  background: var(--glass-bg);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1);
  overflow: hidden;
}
.glass::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.4px;
  background: linear-gradient(180deg,
    rgba(255,255,255,0.3) 0%, rgba(255,255,255,0.1) 20%,
    rgba(255,255,255,0) 40%, rgba(255,255,255,0) 60%,
    rgba(255,255,255,0.1) 80%, rgba(255,255,255,0.3) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* -------------------- headline: letter-reveal -------------------- */
.hero-title {
  margin: 0 0 1rem;
  font-family: var(--font-hero);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.05;
  font-size: clamp(2.25rem, 5.5vw, 4.5rem);
}
.hero-line { display: block; }
.hero-char {
  display: inline-block;
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.hero-sub {
  margin: 0 0 1.25rem;
  max-width: 46ch;
  font-size: 1rem;
  color: var(--glass-white-70);
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; }

.btn-hero-solid {
  background: #fff; color: #050506;
}
.btn-hero-solid:hover { background: #eee; }

.btn-hero-glass {
  color: var(--glass-white);
  border: 1px solid var(--glass-border);
}
.btn-hero-glass:hover { background: rgba(255,255,255,0.12); }

.hero-badge-col { display: flex; justify-content: flex-start; }
@media (min-width: 1024px) { .hero-badge-col { justify-content: flex-end; } }

.hero-badge {
  border-radius: 14px;
  padding: 0.85rem 1.4rem;
  border: 1px solid var(--glass-border-soft);
}
.hero-badge span {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(1rem, 1.6vw, 1.35rem);
  color: var(--glass-white);
}

@media (max-width: 640px) {
  .hero { min-height: 100svh; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { text-align: center; }
}

/* -------------------- hero feature markers (video hotspots) --------------------
   Positioned by eye against the background.mp4 footage (static-camera street
   scene: canopies top, storefronts mid, cars/pavement lower). Desktop-only —
   below 1024px the stacked hero copy covers most of the frame, leaving no
   clear space for callouts. ------------------------------------------------- */
.hero-markers {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}
@media (max-width: 1023px) {
  .hero-markers { display: none; }
}

/* Each marker anchors its DOT exactly at left/top (the calibrated point) —
   the line and label extend outward from there, never shifting the anchor. */
.hero-marker {
  position: absolute;
  pointer-events: auto;
  --rise: 16px;      /* vertical climb of the diagonal segment */
  --diag: 22.63px;   /* diagonal segment length (rise * sqrt(2), i.e. a 45deg climb) */
  --run: 34px;       /* horizontal segment length */
}

.marker-dot {
  position: absolute;
  top: 0; left: 0;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 13px; height: 13px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.25), 0 0 14px 2px rgba(255, 255, 255, 0.5);
}

/* elbow leader: diagonal climbs from the dot, then a horizontal run to the label */
.marker-diag {
  position: absolute;
  top: 0; left: 0;
  width: var(--diag);
  height: 1.75px;
  z-index: 1;
  transform-origin: 0 50%;
  transform: rotate(-45deg); /* climbs up-and-right by default */
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 4px rgba(255, 255, 255, 0.5);
}

.marker-horiz {
  position: absolute;
  top: calc(-1 * var(--rise));
  left: var(--rise);
  width: var(--run);
  height: 1.75px;
  z-index: 1;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.25));
  box-shadow: 0 0 4px rgba(255, 255, 255, 0.4);
}

.marker-label {
  position: absolute;
  top: calc(-1 * var(--rise));
  left: calc(var(--rise) + var(--run));
  transform: translateY(-50%);
  z-index: 2;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--glass-white);
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  white-space: nowrap;
  border: 1px solid var(--glass-border);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1), 0 4px 18px rgba(0, 0, 0, 0.35);
}

/* markers near the right edge point left instead, so the label never runs off-frame */
.hero-marker.marker-flip .marker-diag {
  transform: rotate(-135deg); /* climbs up-and-left */
}
.hero-marker.marker-flip .marker-horiz {
  left: calc(-1 * (var(--rise) + var(--run)));
  background: linear-gradient(to left, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.15));
}
.hero-marker.marker-flip .marker-label {
  left: calc(-1 * (var(--rise) + var(--run)));
  transform: translate(-100%, -50%);
}

.marker-shade    { left: 25.9%; top: 27.6%; }
.marker-business { left: 91.7%; top: 50.7%; }
.marker-ev       { left: 74.9%; top: 69.7%; }
.marker-walk     { left: 42.3%; top: 87.7%; }

/* ticker — pinned to the bottom of the hero video, inside the initial viewport */
.hero-ticker {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  background: #030303; color: var(--glass-white-70);
  overflow: hidden;
  padding: 0.8rem 0;
}
.ticker-track {
  display: flex; align-items: center; gap: 2rem;
  width: max-content; white-space: nowrap;
  animation: ticker 30s linear infinite;
  font-family: var(--font-display); font-weight: 700;
  font-size: 0.9rem; letter-spacing: 0.12em; text-transform: uppercase;
}
.ticker-track i { color: var(--accent); font-style: normal; }
.ticker-track span { display: inline-flex; align-items: center; }
.ticker-icon {
  width: 15px; height: 15px;
  margin-right: 0.4em;
  flex: 0 0 auto;
}
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .ticker-track { animation: none; } }

/* -------------------- sections -------------------- */
.section { padding: clamp(4.5rem, 9vw, 7.5rem) 4vw; }
.section-sand { background: var(--sand); }
.section-dark { background: var(--dark); color: var(--bg); }

.section-label {
  font-family: var(--font-display); font-weight: 700;
  font-size: 0.85rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--ink-12);
}
.section-dark .section-label { border-color: var(--light-12); }

.section-title {
  font-weight: 900; font-stretch: 105%;
  font-size: clamp(2rem, 4.6vw, 3.6rem);
  line-height: 1.02; letter-spacing: -0.02em;
  margin: 0 0 1rem;
}
.section-intro {
  color: var(--ink-70); max-width: 60ch; margin: 0 0 3rem;
  font-size: 1.1rem;
}
.section-dark .section-intro { color: var(--light-70); }

.statement {
  font-weight: 800; font-stretch: 105%;
  font-size: clamp(1.6rem, 3.4vw, 2.7rem);
  line-height: 1.2; letter-spacing: -0.015em;
  max-width: 26ch;
  margin: 0 0 3.5rem;
}
.statement em { font-style: normal; color: var(--accent); }

.col-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
@media (max-width: 860px) { .col-3 { grid-template-columns: 1fr; gap: 2rem; } }

.mission-cols h3 {
  font-size: 1.1rem; font-weight: 800; margin: 0 0 0.6rem;
  padding-top: 1rem; border-top: 3px solid var(--ink);
}
.mission-cols p { margin: 0; color: var(--ink-70); font-size: 0.98rem; }

/* -------------------- focus areas: expanding cards -------------------- */
.focus-num {
  font-family: var(--font-display); font-weight: 900;
  font-size: 0.85rem; color: var(--accent); letter-spacing: 0.1em;
}

.fc-carousel {
  position: relative;
  margin-top: 0.5rem;
}

.fc-wash {
  position: absolute; inset: -10% -5%;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at 70% 50%, rgba(255, 107, 53, 0.08) 0%, transparent 70%);
}

.fc-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3rem);
  min-height: clamp(320px, 42vh, 440px);
}

.fc-title-row { display: flex; align-items: baseline; gap: 0.85rem; margin: 0 0 0.6rem; }
.fc-num-text {
  font-family: var(--font-display); font-weight: 700;
  font-size: 0.75rem; letter-spacing: 0.1em; color: var(--ink-40);
  white-space: nowrap; font-variant-numeric: tabular-nums;
  flex: none; margin-left: auto;
}

.fc-title {
  font-family: var(--font-display); font-weight: 900; font-stretch: 105%;
  font-size: clamp(1.6rem, 3vw, 2.3rem); line-height: 1.08; letter-spacing: -0.01em;
  margin: 0; flex: 1 1 auto; min-width: 0;
}
.fc-subtitle {
  font-family: var(--font-display); font-weight: 700;
  font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.9rem;
}
.fc-desc {
  font-size: 0.95rem; line-height: 1.55; color: var(--ink-70);
  max-width: 48ch; margin: 0 0 1.25rem;
}

.fc-arrows { display: flex; gap: 0.65rem; }
.fc-arrow {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid var(--ink-12); background: #fff;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink); cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.fc-arrow:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); transform: scale(1.06); }
.fc-arrow:focus-visible { box-shadow: 0 0 0 3px var(--bg), 0 0 0 5px var(--accent); }

.fc-tap-zone {
  display: none;
  position: absolute; top: 0; bottom: 0; width: 40%;
  align-items: center;
  background: none; border: none; padding: 0 0.9rem; margin: 0;
  color: #fff; cursor: pointer; z-index: 5;
}
.fc-tap-zone-prev { left: 0; justify-content: flex-start; }
.fc-tap-zone-next { right: 0; justify-content: flex-end; }
.fc-tap-zone svg { filter: drop-shadow(0 1px 5px rgba(0, 0, 0, 0.55)); }
.fc-tap-zone-prev svg { animation: fcTapPulseLeft 1.8s ease-in-out infinite; }
.fc-tap-zone-next svg { animation: fcTapPulseRight 1.8s ease-in-out infinite; }

@keyframes fcTapPulseLeft {
  0%, 100% { opacity: 0.5; transform: translateX(0); }
  50% { opacity: 1; transform: translateX(-5px); }
}
@keyframes fcTapPulseRight {
  0%, 100% { opacity: 0.5; transform: translateX(0); }
  50% { opacity: 1; transform: translateX(5px); }
}

.fc-media { position: relative; }
.fc-frame {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  box-shadow: 0 30px 60px rgba(14, 42, 35, 0.15);
}
.fc-frame img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.fc-corner {
  position: absolute; width: 32px; height: 32px;
  border: 2px solid var(--accent);
  pointer-events: none;
}
.fc-corner-tl { top: -10px; left: -10px; border-right: none; border-bottom: none; }
.fc-corner-br { bottom: -10px; right: -10px; border-left: none; border-top: none; }

.fc-content, .fc-media { transition: opacity 0.35s ease, transform 0.35s ease; }
.fc-content.fc-fade-out, .fc-media.fc-fade-out { opacity: 0; transform: translateY(8px); }

.fc-progress {
  position: relative; z-index: 1;
  display: flex; gap: 0.5rem;
  margin-top: clamp(1.25rem, 3vw, 2rem);
  padding-top: 1rem;
  border-top: 1px solid var(--ink-12);
  overflow-x: auto;
}
.fc-progress-item {
  flex: 1 1 0; min-width: 0;
  display: flex; flex-direction: column; gap: 0.5rem;
  background: none; border: none; padding: 0.25rem 0 0;
  cursor: pointer; text-align: left;
}
.fc-progress-track {
  display: block; height: 2px; border-radius: 2px;
  background: var(--ink-12); overflow: hidden; position: relative;
}
.fc-progress-fill { display: block; height: 100%; width: 0%; background: var(--accent); }
.fc-progress-label {
  font-family: var(--font-display); font-weight: 700;
  font-size: 0.68rem; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--ink-40);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  transition: color 0.2s ease;
}
.fc-progress-item.is-active .fc-progress-label { color: var(--ink); }
.fc-progress-item:hover .fc-progress-label { color: var(--ink-70); }
.fc-progress-item:focus-visible .fc-progress-track { box-shadow: 0 0 0 3px var(--bg), 0 0 0 5px var(--accent); }

@media (max-width: 900px) {
  .fc-inner { grid-template-columns: 1fr; min-height: auto; }
  .fc-media { order: -1; }
  .fc-frame { aspect-ratio: 16 / 10; }
}

@media (max-width: 640px) {
  .fc-progress-label { display: none; }
  .fc-progress-item { min-height: 44px; justify-content: center; }
  .fc-arrows { display: none; }
  .fc-tap-zone { display: flex; }
}

@media (prefers-reduced-motion: reduce) {
  .fc-tap-zone-prev svg, .fc-tap-zone-next svg { animation: none; opacity: 0.85; }
}

@media (prefers-reduced-motion: reduce) {
  .fc-content, .fc-media { transition: none !important; }
}

/* -------------------- education: pinned video hero -------------------- */
.edu-pin {
  position: relative;
  height: 100vh;
  min-height: 520px;
  overflow: hidden;
  background: var(--bg);
  z-index: 1; /* well under .nav's z-index: 200 */
}

.edu-text-group {
  position: absolute; inset: 0; z-index: 30; margin: 0; pointer-events: none;
}
.edu-word {
  position: absolute; display: block;
  line-height: 1; letter-spacing: -0.03em;
  will-change: opacity, transform, filter;
}
.edu-word-top,
.edu-word-right {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-weight: 900;
  font-size: clamp(3.5rem, 11vw, 11rem);
}
.edu-word-top { top: calc(var(--nav-h) + 1rem); left: 0; right: 0; text-align: center; color: var(--accent); }
.edu-word-right { top: 38%; right: 3%; text-align: right; color: var(--ink); }
.edu-word-bottom {
  bottom: 2%; left: 0; right: 0; text-align: center;
  font-family: Georgia, "Times New Roman", Cambria, serif;
  font-weight: 400; font-style: italic;
  font-size: clamp(4rem, 14vw, 13rem);
  color: var(--accent);
}

.edu-video {
  position: absolute;
  top: 18%; left: 22%; right: 18%; bottom: 18%;
  border-radius: 0.75rem;
  overflow: hidden;
  z-index: 20;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  will-change: top, left, right, bottom, border-radius;
}
.edu-video-el { width: 100%; height: 100%; object-fit: cover; display: block; }

/* -------------------- education: copy grid -------------------- */
.edu-panel { position: relative; z-index: 0; overflow: hidden; }
.edu-panel-num {
  position: absolute;
  top: 50%; right: clamp(-1rem, 3vw, 3rem);
  transform: translateY(-50%);
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(9rem, 24vw, 20rem); line-height: 1;
  color: rgba(250, 250, 247, 0.05);
  z-index: -1; pointer-events: none; user-select: none;
}

.edu-copy {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}

.edu-copy-main p { color: var(--light-70); max-width: 48ch; }
.edu-copy-main .btn { margin-top: 0.5rem; }

.edu-lede {
  font-weight: 800; font-stretch: 105%;
  font-size: clamp(1.4rem, 2.6vw, 2.05rem);
  line-height: 1.28; letter-spacing: -0.01em;
  margin: 0 0 1.25rem;
}
.edu-lede em { font-style: normal; color: var(--accent); }
.edu-copy-main p.edu-lede { color: var(--bg); max-width: none; }

.edu-copy-facts {
  border: 1px solid var(--light-12);
  background: rgba(250, 250, 247, 0.04);
  border-radius: 12px;
  padding: clamp(1.5rem, 2.2vw, 2rem);
}
.edu-facts-label {
  font-family: var(--font-display); font-weight: 800;
  font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent); margin: 0 0 1.1rem;
}
.edu-facts-list { list-style: none; margin: 0; padding: 0; }
.edu-facts-list li {
  display: grid; grid-template-columns: 1.75rem 1fr; gap: 0.75rem;
  align-items: baseline;
  padding: 0.85rem 0;
  border-top: 1px solid var(--light-12);
  font-size: 0.95rem; font-weight: 600;
}
.edu-facts-list li:first-child { border-top: none; padding-top: 0; }
.edu-facts-list li:last-child { padding-bottom: 0; }
.edu-facts-num {
  font-family: var(--font-display); font-weight: 800; font-size: 0.8rem;
  color: var(--accent);
}

.edu-outlook {
  margin-top: clamp(2.5rem, 4vw, 3.5rem);
  border: 1px solid var(--light-12);
  border-radius: 12px;
  padding: clamp(1.25rem, 2vw, 1.75rem) clamp(1.5rem, 2.2vw, 2rem);
}
.edu-outlook-label {
  font-family: var(--font-display); font-weight: 800;
  font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent); margin: 0 0 0.6rem;
}
.edu-outlook p { margin: 0; font-size: 0.88rem; color: var(--light-70); max-width: 66ch; }

@media (max-width: 900px) {
  .edu-panel-num { display: none; }
  .edu-copy { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 640px) {
  .edu-pin { min-height: 460px; }
  .edu-word-top, .edu-word-right, .edu-word-bottom { font-size: clamp(2.8rem, 15vw, 4.5rem); }
  .edu-word-top { top: calc(var(--nav-h) + 0.5rem); }
  .edu-word-right { top: 34%; right: 6%; }
  .edu-word-bottom { bottom: 16%; }
  .edu-video { top: 16%; left: 12%; right: 10%; bottom: 16%; }
}

@media (max-width: 380px) {
  .edu-video { left: 6%; right: 6%; }
  .edu-word-top, .edu-word-right, .edu-word-bottom { font-size: clamp(2.2rem, 13vw, 3.4rem); }
  .edu-word-right { right: 4%; }
}

@media (prefers-reduced-motion: reduce) {
  .edu-pin { position: static; height: auto; min-height: 0; overflow: visible; padding: clamp(2.5rem, 6vw, 4rem) 4vw; }
  .edu-video { position: relative; inset: auto; top: auto; left: auto; right: auto; bottom: auto; width: 100%; max-width: 720px; aspect-ratio: 16/10; margin: 0 auto; border-radius: 10px; box-shadow: none; border: 1px solid var(--ink-12); }
  .edu-text-group { position: static; inset: auto; display: block; text-align: center; margin: 1.5rem auto 0; pointer-events: auto; }
  .edu-word {
    position: static; display: inline; font-size: clamp(1.6rem, 4vw, 2.4rem) !important;
    transform: none; filter: none; opacity: 1;
  }
  .edu-word-bottom { display: block; }
  .edu-word + .edu-word::before { content: "\00a0"; }
}

/* -------------------- pathways: staggered pin-card trail (faithful port) -------------------- */
.path-section { position: relative; overflow: hidden; }
.path-bg-grid {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  opacity: 0.06;
  background-image: linear-gradient(var(--ink) 1px, transparent 1px);
  background-size: 100% 32px;
}
.path-outer { position: relative; z-index: 1; padding: 3rem 4vw 0; }
.path-outer::before, .path-outer::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 10%; z-index: 2; pointer-events: none;
}
.path-outer::before { left: 0; background: linear-gradient(to right, var(--bg), transparent); }
.path-outer::after { right: 0; background: linear-gradient(to left, var(--bg), transparent); }

.path-track { position: relative; max-width: 1000px; margin: 0 auto; }
.path-spine { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; color: var(--ink-40); }

.path-card {
  --rot: 0deg;
  position: relative; z-index: 1;
  width: 100%; margin: 0 0 2rem;
  transform: rotate(var(--rot));
  transition: transform 0.3s ease;
}
.path-card:last-child { margin-bottom: 0; }
.path-card:hover { transform: rotate(var(--rot)) scale(1.05); z-index: 30; }

.path-card-outer {
  background: #fff; padding: 0.5rem; border-radius: 25px;
  border: 1px solid var(--ink-12);
  box-shadow: 0 10px 20px 0 rgba(14, 42, 35, 0.14);
}
.path-pin { display: block; width: 30px; height: 30px; margin: 0.4rem auto 1.25rem; }
.path-card-inner { border-radius: 15px; padding: 15px; border: 1px solid; }
.path-num {
  display: block; font-size: 2.25rem; line-height: 1; margin-bottom: 1rem;
  font-family: "Comic Sans MS", "Chalkboard SE", var(--font-display), sans-serif;
}
.path-card-inner h3 { font-size: 1.4rem; font-weight: 700; line-height: 1; margin: 0 0 0.6rem; color: var(--ink); }
.path-card-inner p { font-size: 0.88rem; color: var(--ink-70); margin: 0; }

.path-theme-teal { color: var(--teal); background: rgba(15, 118, 110, 0.08); border-color: rgba(15, 118, 110, 0.25); }
.path-theme-accent { color: var(--accent-2); background: rgba(255, 107, 53, 0.08); border-color: rgba(255, 107, 53, 0.25); }
.path-theme-dark { color: var(--ink); background: rgba(14, 42, 35, 0.06); border-color: var(--ink-12); }
svg.path-pin.path-theme-teal, svg.path-pin.path-theme-accent, svg.path-pin.path-theme-dark { background: none; border: none; }

@media (min-width: 861px) {
  .path-track { height: 1130px; }
  .path-card { position: absolute; width: 280px; margin: 0; }
  .path-pos-1 { top: 0; left: 15%; --rot: 8deg; }
  .path-pos-2 { top: 120px; right: 15%; --rot: -8deg; }
  .path-pos-3 { top: 450px; left: 15%; --rot: 8deg; }
  .path-pos-4 { top: 570px; right: 10%; --rot: -8deg; }
  .path-pos-5 { top: 850px; left: 15%; --rot: 8deg; }
}
@media (max-width: 860px) {
  .path-spine { display: none; }
  .path-outer::before, .path-outer::after { display: none; }
  .path-outer { padding-top: 2rem; }
}

/* -------------------- economic impact: brutalist stat cards -------------------- */
.impact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}
@media (max-width: 700px) { .impact-grid { grid-template-columns: 1fr; } }
@media (max-width: 480px) {
  .impact-card { padding: 1.35rem; box-shadow: 5px 5px 0 var(--ink); }
  .impact-card:hover { transform: translate(-3px, -3px); box-shadow: 8px 8px 0 var(--accent); }
}

.impact-card {
  background: var(--bg);
  border: 3px solid var(--ink);
  box-shadow: 8px 8px 0 var(--ink);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  display: flex; flex-direction: column;
  transition: transform 0.2s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.impact-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 12px 12px 0 var(--accent);
}

.impact-card-label {
  font-family: var(--font-display); font-weight: 800;
  font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-70);
  margin-bottom: 0.75rem;
}
.impact-card-num {
  font-family: var(--font-display); font-weight: 900; font-stretch: 105%;
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  line-height: 1; letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 0.75rem;
}
.impact-card p { margin: 0; font-size: 0.92rem; color: var(--ink-70); line-height: 1.5; }

.impact-source {
  margin-top: 1.75rem;
  font-size: 0.82rem; color: var(--ink-40);
}
.impact-source a { color: var(--ink); font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }
.impact-source a:hover { color: var(--accent); }

/* -------------------- community -------------------- */
/* -------------------- live here (fits one screen) -------------------- */
.section-fit { padding-top: clamp(2.5rem, 5vw, 4rem); padding-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-fit .section-title { font-size: clamp(1.7rem, 3.4vw, 2.6rem); margin-bottom: 0.6rem; }
.section-fit .section-intro { margin-bottom: 1.5rem; font-size: 1rem; }

.live-layout {
  display: grid; grid-template-columns: 1.35fr 1fr; gap: 1.1rem;
  height: clamp(440px, 56vh, 560px);
}

.live-feature {
  display: grid; grid-template-columns: 1.1fr 1fr;
  align-items: stretch; gap: 0;
  background: #fff; border-radius: 12px; overflow: hidden;
  border: 1px solid var(--ink-12);
  height: 100%;
}
.live-feature img { width: 100%; height: 100%; object-fit: cover; }
.live-feature-body { padding: clamp(1.25rem, 2.4vw, 2.25rem); display: flex; flex-direction: column; justify-content: center; min-height: 0; }
.live-feature-body .focus-num { display: block; margin-bottom: 0.5rem; }
.live-feature-body h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 800; letter-spacing: -0.01em; margin: 0 0 0.6rem; line-height: 1.15; }
.live-feature-body p { font-size: 0.92rem; color: var(--ink-70); margin: 0; max-width: 44ch; }

.live-column {
  display: flex; flex-direction: column; gap: 0.85rem;
  height: 100%; min-height: 0;
}

.live-card {
  flex: 1 1 0;
  min-height: 0;
  display: flex; flex-direction: column; justify-content: center;
  background: #fff; border: 1px solid var(--ink-12); border-radius: 12px;
  padding: 1.1rem 1.3rem;
  overflow: hidden;
}
.live-card .focus-num { display: block; margin-bottom: 0.3rem; font-size: 0.72rem; }
.live-card h3 { font-size: 1rem; font-weight: 800; margin: 0 0 0.3rem; line-height: 1.2; }
.live-card p { font-size: 0.82rem; line-height: 1.4; color: var(--ink-70); margin: 0; }
.live-card-accent { background: var(--ink); border-color: var(--ink); color: var(--bg); }
.live-card-accent .focus-num { color: var(--accent); }
.live-card-accent p { color: var(--light-70); }

@media (max-width: 900px) {
  .live-layout { grid-template-columns: 1fr; height: auto; }
  .live-feature { grid-template-columns: 1fr; height: auto; }
  .live-feature img { aspect-ratio: 16/9; }
  .live-column { height: auto; }
  .live-card { flex: none; min-height: auto; padding: 1.5rem 1.6rem; }
  .live-card .focus-num { font-size: 0.85rem; }
  .live-card h3 { font-size: 1.15rem; }
  .live-card p { font-size: 0.92rem; }
}

@media (max-width: 380px) {
  .live-card { padding: 1.25rem 1.3rem; }
  .live-feature-body { padding: 1.25rem; }
}

/* -------------------- roles -------------------- */
.roles-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
  margin-top: 2.5rem;
}
@media (max-width: 900px) { .roles-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .roles-grid { grid-template-columns: 1fr; } }
@media (max-width: 480px) { .role-card { padding: 1.35rem; } }

.role-card {
  display: block;
  background: var(--sand);
  border-radius: 14px;
  padding: 1.75rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.role-card:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(14, 42, 35, 0.1); }
.role-icon {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(255, 107, 53, 0.12);
  color: var(--accent);
  margin-bottom: 1.1rem;
}
.role-card h3 { font-size: 1.15rem; font-weight: 800; margin: 0 0 0.5rem; }
.role-card p { font-size: 0.92rem; line-height: 1.5; color: var(--ink-70); margin: 0; }

/* -------------------- CTA -------------------- */
.cta-inner { text-align: center; max-width: 760px; }
.cta-title {
  font-weight: 900; font-stretch: 108%;
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  line-height: 1.0; letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0 0 1.25rem;
}
.cta-title em { font-style: normal; color: var(--accent); }
.cta p { color: var(--light-70); max-width: 52ch; margin: 0 auto 2.25rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* -------------------- footer -------------------- */
.footer {
  background: var(--dark); color: var(--bg);
  border-top: 1px solid var(--light-12);
  padding: 2.5rem 4vw;
}
.footer-inner { text-align: center; }
.footer-logo {
  font-family: var(--font-display); font-weight: 900; font-size: 1.6rem;
  margin: 0 0 0.4rem;
}
.footer-logo span { color: var(--accent); }
.footer-tag {
  font-family: var(--font-display); font-weight: 600; font-size: 0.85rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--light-70); margin: 0 0 0.75rem;
}
.footer-copy { font-size: 0.82rem; color: var(--light-70); opacity: 0.7; margin: 0; }

/* -------------------- downtown & lakefront: reusable tile cards -------------------- */
.tile-grid { display: grid; gap: 1.5rem; margin-top: 0.5rem; }
.tile-grid-2 { grid-template-columns: repeat(2, 1fr); }
.tile-grid-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 860px) { .tile-grid-3 { grid-template-columns: 1fr; } }
@media (max-width: 700px) { .tile-grid-2 { grid-template-columns: 1fr; } }

.tile {
  background: #fff;
  border: 1px solid var(--ink-12);
  border-radius: 14px;
  padding: clamp(1.5rem, 2.4vw, 2rem);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.tile:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(14, 42, 35, 0.1); }
.tile-label {
  display: block;
  font-family: var(--font-display); font-weight: 800;
  font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent); margin: 0 0 0.75rem;
}
.tile h3 { font-size: 1.2rem; font-weight: 800; letter-spacing: -0.01em; margin: 0 0 0.65rem; }
.tile p { font-size: 0.95rem; line-height: 1.55; color: var(--ink-70); margin: 0; }
.tile-tint { background: rgba(15, 118, 110, 0.08); border-color: rgba(15, 118, 110, 0.25); }

/* -------------------- downtown & lakefront: visitor corridor -------------------- */
.corridor { display: flex; align-items: stretch; gap: 1rem; margin-top: 1rem; }
.corridor-node {
  flex: 1 1 0; min-width: 0;
  border-radius: 14px;
  padding: clamp(1.25rem, 2.2vw, 1.75rem) 1.25rem;
  color: #fff;
  display: flex; flex-direction: column; justify-content: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.corridor-node:hover { transform: translateY(-6px); box-shadow: 0 16px 32px rgba(14, 42, 35, 0.18); }
.corridor-node-num {
  display: block; margin-bottom: 0.6rem;
  font-family: var(--font-display); font-weight: 700;
  font-size: 0.68rem; letter-spacing: 0.09em; text-transform: uppercase;
  opacity: 0.65;
}
.corridor-node-icon { width: 26px; height: 26px; margin-bottom: 0.85rem; fill: none; stroke: currentColor; stroke-width: 1.8; opacity: 0.95; }
.corridor-node h4 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(0.95rem, 1.3vw, 1.1rem); line-height: 1.2;
  margin: 0;
}
.corridor-node-tag {
  display: block; margin-top: 0.5rem;
  font-family: var(--font-display); font-weight: 700;
  font-size: 0.68rem; letter-spacing: 0.07em; text-transform: uppercase;
  opacity: 0.75;
}
.corridor-node p {
  margin: 0.85rem 0 0;
  font-size: 0.85rem; line-height: 1.45;
  opacity: 0.85;
}
.corridor-node-1 { background: var(--dark); }
.corridor-node-2 { background: var(--teal); }
.corridor-node-3 { background: var(--accent); }
.corridor-node-4 { background: rgba(15, 118, 110, 0.16); color: var(--ink); }

/* animated route bar: a literal traveler slides along it as you scroll */
.corridor-route { margin-top: 2.25rem; padding: 0 0.5rem; }
.corridor-route-track { position: relative; height: 4px; border-radius: 4px; background: var(--ink-12); }
.corridor-route-fill { position: absolute; top: 0; left: 0; height: 100%; width: 0%; border-radius: 4px; background: var(--accent); }
.corridor-route-dot {
  position: absolute; top: 50%; width: 9px; height: 9px; margin: -4.5px 0 0 -4.5px;
  border-radius: 50%; background: var(--bg); border: 2px solid var(--ink-40);
}
.corridor-route-dot-1 { left: 0%; }
.corridor-route-dot-2 { left: 33.333%; }
.corridor-route-dot-3 { left: 66.666%; }
.corridor-route-dot-4 { left: 100%; }
.corridor-route-traveler {
  position: absolute; top: 50%; left: 0%;
  width: 34px; height: 34px; margin: -17px 0 0 -17px;
  border-radius: 50%; background: var(--accent); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 16px rgba(255, 107, 53, 0.4);
}
.corridor-route-traveler svg { width: 18px; height: 18px; }
@media (max-width: 780px) {
  .corridor { flex-direction: column; }
  .corridor-route { display: none; }
}

/* -------------------- animation initial states -------------------- */
.js .hero-line .hero-char { opacity: 0; transform: translateX(-18px); }
.js .anim-fade { opacity: 0; }
.js .reveal { opacity: 0; transform: translateY(32px); }

.js .corridor-node { opacity: 0; transform: translateY(16px) scale(0.94); }

@media (prefers-reduced-motion: reduce) {
  .corridor-route-fill { width: 100% !important; }
  .corridor-route-traveler { left: 100% !important; }
  .js .hero-line .hero-char { opacity: 1; transform: none; }
  .js .anim-fade, .js .reveal { opacity: 1; transform: none; }
  .js .corridor-node { opacity: 1; transform: none; }
}
