@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  --cyan: #1dd5ff;
  --black: #050505;
  --soft-black: #0a0b0c;
  --white: #f7fbfc;
  --muted: #8f9ba3;
  --line: rgba(255, 255, 255, 0.1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}
button, a { font: inherit; }
a { color: inherit; text-decoration: none; }
button { color: inherit; }
::selection { background: var(--cyan); color: #001116; }

.app-shell, .coming-page { min-height: 100vh; position: relative; overflow: hidden; }
main, footer, .nav-shell, .coming-content, .back-link, .coming-corner { position: relative; z-index: 3; }
.site-background { position: fixed; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; background: radial-gradient(circle at 50% 0%, #0b1114 0%, #050505 45%, #030303 100%); }
.noise { position: absolute; inset: 0; opacity: .08; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E"); }
.grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(29,213,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(29,213,255,.035) 1px, transparent 1px); background-size: 72px 72px; mask-image: linear-gradient(to bottom, rgba(0,0,0,.9), transparent 88%); }
.glow { position: absolute; width: 50vw; height: 50vw; border-radius: 50%; filter: blur(120px); opacity: .08; background: var(--cyan); animation: drift 16s ease-in-out infinite alternate; }
.glow-one { top: -20vw; left: -12vw; }
.glow-two { bottom: -20vw; right: -20vw; animation-delay: -6s; }
.scan-line { position: absolute; width: 1px; height: 60vh; background: linear-gradient(transparent, var(--cyan), transparent); opacity: .45; box-shadow: 0 0 24px rgba(29,213,255,.65); animation: slideLine 12s linear infinite; }
.line-one { left: 17%; top: -70vh; }
.line-two { left: 63%; top: -85vh; animation-delay: -4s; }
.line-three { left: 88%; top: -95vh; animation-delay: -7s; }
@keyframes slideLine { to { transform: translateY(190vh); } }
@keyframes drift { from { transform: translate3d(0,0,0) scale(1); } to { transform: translate3d(8vw,6vw,0) scale(1.15); } }

.scroll-progress { position: fixed; top: 0; left: 0; height: 2px; z-index: 100; background: var(--cyan); box-shadow: 0 0 14px rgba(29,213,255,.95); }
.section-pad { width: min(1440px, calc(100% - 64px)); margin: 0 auto; padding: 130px 0; }

.nav-shell { position: fixed; top: 18px; left: 50%; transform: translateX(-50%); width: min(1440px, calc(100% - 36px)); display: flex; align-items: center; justify-content: space-between; padding: 12px 14px 12px 18px; border: 1px solid rgba(255,255,255,.08); background: rgba(5,5,5,.66); backdrop-filter: blur(18px); border-radius: 18px; z-index: 50; box-shadow: 0 18px 60px rgba(0,0,0,.22); }
.brand-mark { display: flex; gap: 10px; align-items: center; }
.brand-orb { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid var(--cyan); border-radius: 50%; color: var(--cyan); font-family: 'Space Grotesk'; font-weight: 800; box-shadow: inset 0 0 20px rgba(29,213,255,.08), 0 0 20px rgba(29,213,255,.1); }
.brand-mark strong { display: block; font-size: 12px; letter-spacing: .13em; }
.brand-mark small { color: var(--muted); font-size: 9px; letter-spacing: .08em; }
.desktop-nav { display: flex; align-items: center; gap: 6px; }
.desktop-nav button, .nav-article-link { border: 0; background: transparent; padding: 10px 12px; color: #cad2d6; font-size: 12px; cursor: pointer; display: inline-flex; align-items: center; gap: 5px; transition: .25s ease; }
.desktop-nav button:hover, .nav-article-link:hover { color: var(--cyan); }
.nav-article-link { border-left: 1px solid var(--line); margin-left: 6px; padding-left: 18px; }
.menu-toggle { display: none; border: 0; background: transparent; cursor: pointer; }

.mobile-menu { position: fixed; inset: 0; z-index: 80; background: #050505; padding: 28px; }
.menu-close { position: absolute; top: 28px; right: 28px; border: 1px solid var(--line); width: 46px; height: 46px; border-radius: 50%; background: transparent; display: grid; place-items: center; }
.mobile-menu-inner { min-height: 100%; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; gap: 12px; }
.mobile-menu-inner button, .mobile-menu-inner a { border: 0; background: transparent; font-family: 'Space Grotesk'; font-size: clamp(34px, 10vw, 64px); font-weight: 700; display: flex; gap: 16px; align-items: center; cursor: pointer; }
.mobile-menu-inner button span { color: var(--cyan); font-size: 12px; }

.hero { min-height: 100vh; padding-top: 155px; display: flex; flex-direction: column; justify-content: center; position: relative; }
.hero-kicker { color: var(--cyan); letter-spacing: .22em; font-size: 11px; margin-bottom: 34px; }
.hero-main { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 56px; align-items: end; }
.hero-mini { color: #9ca8af; font-size: clamp(14px, 1.5vw, 20px); letter-spacing: .38em; margin: 0 0 8px; }
.hero h1 { margin: 0; font-family: 'Space Grotesk'; font-size: clamp(64px, 10vw, 164px); line-height: .76; letter-spacing: -.075em; font-weight: 700; }
.hero h1 span { display: block; }
.outline-text { color: transparent; -webkit-text-stroke: 1px rgba(247,251,252,.55); }
.hero-side { padding-bottom: 8px; }
.hero-side > p { color: #d7dfe3; font-family: 'Space Grotesk'; font-size: 21px; line-height: 1.5; }
.hero-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; margin-top: 30px; }
.primary-btn { min-height: 52px; padding: 0 20px; display: inline-flex; align-items: center; gap: 12px; background: var(--cyan); color: #001014; font-weight: 800; font-size: 12px; text-transform: uppercase; letter-spacing: .09em; border-radius: 3px; transition: .3s ease; box-shadow: 0 10px 40px rgba(29,213,255,.14); }
.primary-btn:hover { transform: translateY(-3px); box-shadow: 0 18px 50px rgba(29,213,255,.26); }
.text-btn, .inline-link { display: inline-flex; align-items: center; gap: 8px; color: #c3cdd2; font-size: 13px; transition: .25s ease; }
.text-btn:hover, .inline-link:hover { color: var(--cyan); }
.hero-bottom { position: absolute; bottom: 30px; left: 0; display: flex; align-items: center; gap: 10px; color: #708087; font-size: 10px; letter-spacing: .14em; }
.hero-watermark { position: absolute; right: -4%; bottom: 1%; font-family: 'Space Grotesk'; font-size: 15vw; font-weight: 700; color: rgba(255,255,255,.018); letter-spacing: -.08em; pointer-events: none; }

.eyebrow { display: flex; align-items: center; gap: 10px; color: var(--cyan); font-size: 11px; letter-spacing: .18em; font-weight: 700; }
.eyebrow span { width: 36px; height: 1px; background: var(--cyan); box-shadow: 0 0 8px rgba(29,213,255,.55); }
.section-title { max-width: 900px; margin-bottom: 70px; }
.section-title.center { text-align: center; margin-inline: auto; }
.section-title.center .eyebrow { justify-content: center; }
.section-title h2 { margin: 18px 0 18px; font-family: 'Space Grotesk'; font-size: clamp(42px, 6vw, 92px); line-height: .95; letter-spacing: -.055em; font-weight: 700; }
.section-title p { max-width: 670px; color: var(--muted); line-height: 1.8; font-size: 15px; }
.cyan { color: var(--cyan); }

.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin-bottom: 100px; }
.stat-card { padding: 38px 28px; border-right: 1px solid var(--line); }
.stat-card:last-child { border-right: 0; }
.stat-card strong { display: block; font-family: 'Space Grotesk'; font-size: clamp(38px, 5vw, 74px); letter-spacing: -.06em; }
.stat-card span { color: var(--muted); font-size: 12px; }
.story-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 70px; align-items: center; }
.image-placeholder { border: 1px solid rgba(29,213,255,.17); background: linear-gradient(135deg, rgba(29,213,255,.1), rgba(255,255,255,.01) 50%, rgba(29,213,255,.03)), #090c0e; position: relative; overflow: hidden; }
.image-placeholder::after { content: ''; position: absolute; inset: 0; background: linear-gradient(115deg, transparent 30%, rgba(29,213,255,.09), transparent 70%); transform: translateX(-100%); animation: shimmer 6s infinite; }
@keyframes shimmer { 50%, 100% { transform: translateX(100%); } }
.large-placeholder { aspect-ratio: 4/3; display: grid; place-items: center; color: rgba(255,255,255,.3); letter-spacing: .2em; font-size: 11px; }
.index-number { color: var(--cyan); font-family: 'Space Grotesk'; font-size: 13px; margin-bottom: 24px; }
.story-copy h3 { font-family: 'Space Grotesk'; font-size: clamp(32px, 4vw, 56px); line-height: 1.05; letter-spacing: -.04em; margin: 0 0 24px; }
.story-copy p { color: var(--muted); line-height: 1.85; margin-bottom: 26px; }

.project-list { display: flex; flex-direction: column; gap: 18px; }
.project-card { display: grid; grid-template-columns: 1.45fr .55fr; min-height: 480px; border: 1px solid var(--line); background: rgba(255,255,255,.018); overflow: hidden; transition: .35s ease; }
.project-card:hover { border-color: rgba(29,213,255,.42); transform: translateY(-4px); }
.project-media { position: relative; background: radial-gradient(circle at 30% 20%, rgba(29,213,255,.18), transparent 35%), linear-gradient(135deg, #0e161a, #07090a); overflow: hidden; }
.project-a .project-media { background: radial-gradient(circle at 30% 20%, rgba(29,213,255,.22), transparent 34%), linear-gradient(130deg, #0c1215, #050505); }
.project-b .project-media { background: radial-gradient(circle at 70% 30%, rgba(29,213,255,.16), transparent 30%), linear-gradient(130deg, #101416, #050505); }
.project-c .project-media { background: linear-gradient(120deg, rgba(29,213,255,.12), transparent 40%), #081013; }
.project-number { position: absolute; top: 28px; left: 28px; color: var(--cyan); font-size: 11px; }
.placeholder-label { position: absolute; inset: 0; display: grid; place-items: center; color: rgba(255,255,255,.24); letter-spacing: .22em; font-size: 10px; }
.project-copy { padding: 44px 36px; display: flex; flex-direction: column; justify-content: flex-end; position: relative; }
.project-copy small { color: var(--cyan); font-size: 10px; letter-spacing: .16em; }
.project-copy h3 { font-family: 'Space Grotesk'; font-size: clamp(34px, 4vw, 58px); line-height: .95; margin: 14px 0 18px; letter-spacing: -.05em; }
.project-copy p { color: var(--muted); line-height: 1.7; font-size: 13px; max-width: 360px; }
.project-copy button { width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--line); background: transparent; display: grid; place-items: center; margin-top: 24px; transition: .25s ease; }
.project-card:hover .project-copy button { color: #001014; background: var(--cyan); border-color: var(--cyan); }

.events-head { display: flex; justify-content: space-between; align-items: end; }
.event-list { border-top: 1px solid var(--line); }
.event-row { display: grid; grid-template-columns: 150px 1fr 220px 40px; gap: 20px; align-items: center; padding: 28px 10px; border-bottom: 1px solid var(--line); transition: .25s ease; }
.event-row:hover { padding-left: 20px; background: rgba(29,213,255,.025); }
.event-date { display: flex; gap: 8px; align-items: baseline; }
.event-date strong { font-family: 'Space Grotesk'; font-size: 42px; }
.event-date span { color: var(--cyan); font-size: 11px; }
.event-name small { color: var(--cyan); display: flex; gap: 6px; align-items: center; font-size: 9px; letter-spacing: .12em; }
.event-name h3 { margin: 8px 0 0; font-family: 'Space Grotesk'; font-size: 22px; }
.event-place { color: var(--muted); font-size: 12px; display: flex; gap: 7px; align-items: center; }
.event-arrow { color: var(--cyan); }

.impact-statement { padding-top: 180px; padding-bottom: 180px; }
.impact-statement h2 { font-family: 'Space Grotesk'; font-size: clamp(54px, 9.2vw, 150px); line-height: .82; letter-spacing: -.07em; margin: 24px 0 0; }
.impact-statement h2 span { color: transparent; -webkit-text-stroke: 1px rgba(29,213,255,.75); }

.board { position: relative; }
.board .section-title { max-width: 820px; }
.board-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}
.board-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.025), rgba(255,255,255,.012));
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.board-card:hover {
  transform: translateY(-5px);
  border-color: rgba(29,213,255,.35);
  box-shadow: 0 24px 70px rgba(0,0,0,.28), 0 0 0 1px rgba(29,213,255,.035) inset;
}
.board-card.featured {
  grid-column: 3 / span 8;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, .88fr);
  min-height: 430px;
}
.board-card:not(.featured) { grid-column: span 3; }
.portrait-placeholder {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: linear-gradient(155deg, rgba(29,213,255,.12), transparent 46%), #0a0d0f;
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.26);
  letter-spacing: .18em;
  font-size: 10px;
}
.portrait-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.18));
}
.board-card.featured .portrait-placeholder {
  aspect-ratio: auto;
  min-height: 430px;
}
.board-info {
  position: relative;
  z-index: 1;
  padding: 20px;
  border-top: 1px solid var(--line);
  background: rgba(5,5,5,.46);
}
.board-card.featured .board-info {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 42px;
  border-top: 0;
  border-left: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(29,213,255,.055), rgba(255,255,255,.012));
}
.board-info small {
  color: var(--cyan);
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.board-info h3 {
  margin: 8px 0 0;
  font-family: 'Space Grotesk';
  font-size: 18px;
  line-height: 1.2;
  overflow-wrap: anywhere;
}
.board-card.featured .board-info small { font-size: 10px; }
.board-card.featured .board-info h3 {
  margin-top: 14px;
  max-width: 12ch;
  font-size: clamp(32px, 3.2vw, 52px);
  line-height: .98;
  letter-spacing: -.045em;
}

.gallery-grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 140px; gap: 14px; }
.gallery-item { border: 1px solid var(--line); background: linear-gradient(135deg, rgba(29,213,255,.08), transparent 60%), #0a0d0f; display: grid; place-items: center; color: rgba(255,255,255,.24); font-size: 9px; letter-spacing: .16em; overflow: hidden; }
.gallery-1 { grid-column: span 7; grid-row: span 3; }
.gallery-2 { grid-column: span 5; grid-row: span 2; }
.gallery-3 { grid-column: span 5; grid-row: span 3; }
.gallery-4 { grid-column: span 4; grid-row: span 2; }
.gallery-5 { grid-column: span 3; grid-row: span 2; }

.article-panel { min-height: 420px; padding: 60px; border: 1px solid rgba(29,213,255,.24); background: radial-gradient(circle at 80% 0%, rgba(29,213,255,.15), transparent 30%), rgba(255,255,255,.015); display: flex; align-items: end; justify-content: space-between; }
.article-panel h2 { font-family: 'Space Grotesk'; font-size: clamp(40px, 6vw, 86px); line-height: .95; letter-spacing: -.055em; margin: 20px 0 0; }
.circle-link { width: 92px; height: 92px; border-radius: 50%; display: grid; place-items: center; background: var(--cyan); color: #001014; transition: .3s ease; flex-shrink: 0; }
.circle-link:hover { transform: rotate(15deg) scale(1.06); }

.join-section { min-height: 78vh; display: grid; place-items: center; text-align: center; }
.join-inner .eyebrow { justify-content: center; }
.join-inner h2 { font-family: 'Space Grotesk'; font-size: clamp(72px, 11vw, 170px); line-height: .76; letter-spacing: -.075em; margin: 28px 0 48px; }

.footer { padding-top: 70px; padding-bottom: 30px; border-top: 1px solid var(--line); }
.footer-top { display: flex; align-items: center; justify-content: space-between; padding-bottom: 55px; }
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand strong { font-size: 10px; color: var(--cyan); letter-spacing: .14em; }
.footer-brand h3 { margin: 3px 0 0; font-family: 'Space Grotesk'; font-size: 22px; }
.footer-top > p { color: var(--muted); font-size: 11px; letter-spacing: .2em; }
.footer-bottom { border-top: 1px solid var(--line); padding-top: 24px; display: flex; justify-content: space-between; color: #66757d; font-size: 11px; }
.footer-bottom div { display: flex; gap: 22px; }
.footer-bottom a:hover { color: var(--cyan); }

.coming-page { min-height: 100vh; display: grid; place-items: center; padding: 80px 24px; }
.back-link { position: absolute; top: 34px; left: 34px; display: inline-flex; gap: 8px; align-items: center; color: #a9b5bb; font-size: 12px; }
.back-link:hover { color: var(--cyan); }
.coming-content { width: min(1100px, 100%); }
.coming-content h1 { font-family: 'Space Grotesk'; font-size: clamp(74px, 13vw, 200px); line-height: .75; letter-spacing: -.075em; margin: 30px 0 40px; }
.coming-copy { max-width: 650px; color: var(--muted); line-height: 1.85; font-size: 15px; }
.coming-badge { margin-top: 44px; display: inline-flex; align-items: center; gap: 10px; border: 1px solid rgba(29,213,255,.25); padding: 12px 16px; color: var(--cyan); font-size: 10px; letter-spacing: .16em; }
.coming-badge span { width: 7px; height: 7px; background: var(--cyan); border-radius: 50%; box-shadow: 0 0 12px var(--cyan); animation: pulse 1.6s infinite; }
@keyframes pulse { 50% { opacity: .3; transform: scale(.7); } }
.coming-corner { position: absolute; right: 34px; bottom: 30px; color: #4d5b62; font-size: 9px; letter-spacing: .15em; }

@media (max-width: 1024px) {
  .section-pad { width: min(100% - 40px, 1100px); padding: 100px 0; }
  .desktop-nav { display: none; }
  .menu-toggle { display: grid; }
  .hero-main { grid-template-columns: 1fr; }
  .hero-side { max-width: 420px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-card:nth-child(2) { border-right: 0; }
  .stat-card:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .story-grid { grid-template-columns: 1fr; }
  .project-card { grid-template-columns: 1fr; }
  .project-media { min-height: 420px; }
  .board-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .board-card.featured {
    grid-column: 1 / -1;
    grid-template-columns: minmax(0, 1.05fr) minmax(250px, .95fr);
  }
  .board-card:not(.featured) { grid-column: auto; }
  .event-row { grid-template-columns: 120px 1fr 160px 30px; }
}

@media (max-width: 700px) {
  .section-pad { width: calc(100% - 30px); padding: 78px 0; }
  .nav-shell { top: 10px; width: calc(100% - 18px); }
  .brand-mark strong { font-size: 10px; }
  .brand-mark small { font-size: 7px; }
  .hero { min-height: 100svh; padding-top: 120px; }
  .hero-kicker { font-size: 9px; }
  .hero h1 { font-size: clamp(56px, 20vw, 94px); line-height: .82; }
  .hero-main { gap: 34px; }
  .hero-side > p { font-size: 17px; }
  .hero-bottom { display: none; }
  .section-title { margin-bottom: 46px; }
  .section-title h2 { font-size: clamp(42px, 14vw, 68px); }
  .stats-grid { grid-template-columns: 1fr 1fr; margin-bottom: 70px; }
  .stat-card { padding: 26px 18px; }
  .stat-card strong { font-size: 44px; }
  .story-grid { gap: 34px; }
  .project-card { min-height: 0; }
  .project-media { min-height: 300px; }
  .project-copy { padding: 30px 24px; }
  .events-head { align-items: start; flex-direction: column; gap: 0; }
  .event-row { grid-template-columns: 70px 1fr 24px; gap: 14px; }
  .event-place { grid-column: 2/3; }
  .event-arrow { grid-column: 3; grid-row: 1/3; }
  .event-date strong { font-size: 30px; }
  .event-name h3 { font-size: 17px; }
  .impact-statement { padding-top: 110px; padding-bottom: 110px; }
  .board-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .board-card.featured { grid-column: 1 / -1; }
  .board-info { padding: 14px; }
  .board-info h3 { font-size: 15px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 170px; }
  .gallery-item { grid-column: auto !important; grid-row: auto !important; }
  .gallery-1 { grid-column: span 2 !important; }
  .article-panel { min-height: 460px; padding: 28px; flex-direction: column; align-items: flex-start; }
  .article-panel h2 { font-size: 46px; }
  .circle-link { width: 68px; height: 68px; }
  .join-inner h2 { font-size: clamp(66px, 22vw, 100px); line-height: .79; }
  .footer-top, .footer-bottom { flex-direction: column; align-items: flex-start; gap: 24px; }
  .footer-bottom div { flex-wrap: wrap; }
  .coming-content h1 { font-size: clamp(68px, 22vw, 110px); line-height: .78; }
  .coming-corner { left: 24px; right: auto; }
}

/* Vanilla JS animation helpers */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity .85s cubic-bezier(.22,1,.36,1), transform .85s cubic-bezier(.22,1,.36,1);
  transition-delay: var(--delay, 0s);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.hero-intro { opacity: 0; transform: translateY(60px); animation: heroRise 1s .15s cubic-bezier(.22,1,.36,1) forwards; }
.hero-side { opacity: 0; transform: translateX(40px); animation: heroSide 1s .45s cubic-bezier(.22,1,.36,1) forwards; }
.nav-shell { opacity: 0; animation: navDrop .8s cubic-bezier(.22,1,.36,1) forwards; }
@keyframes heroRise { to { opacity: 1; transform: translateY(0); } }
@keyframes heroSide { to { opacity: 1; transform: translateX(0); } }
@keyframes navDrop { from { opacity: 0; margin-top: -80px; } to { opacity: 1; margin-top: 0; } }
.icon { width: 1em; height: 1em; display: inline-block; vertical-align: -0.125em; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.menu-toggle, .menu-close { align-items: center; justify-content: center; }
.mobile-menu { display: none; opacity: 0; transition: opacity .3s ease; }
.mobile-menu.open { display: block; opacity: 1; }
.mobile-menu-inner > * { opacity: 0; transform: translateY(30px); transition: opacity .45s ease, transform .45s ease; }
.mobile-menu.open .mobile-menu-inner > * { opacity: 1; transform: translateY(0); }
.mobile-menu.open .mobile-menu-inner > *:nth-child(1) { transition-delay: .05s; }
.mobile-menu.open .mobile-menu-inner > *:nth-child(2) { transition-delay: .10s; }
.mobile-menu.open .mobile-menu-inner > *:nth-child(3) { transition-delay: .15s; }
.mobile-menu.open .mobile-menu-inner > *:nth-child(4) { transition-delay: .20s; }
.mobile-menu.open .mobile-menu-inner > *:nth-child(5) { transition-delay: .25s; }
.mobile-menu.open .mobile-menu-inner > *:nth-child(6) { transition-delay: .30s; }
body.menu-open { overflow: hidden; }
.project-copy button { cursor: pointer; }
.coming-content { opacity: 0; transform: translateY(40px); animation: heroRise 1s cubic-bezier(.22,1,.36,1) forwards; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* =========================================================
   DEMO ASSETS + MOBILE RESPONSIVE UPGRADE
   Replace the local demo SVG files later with official assets.
   ========================================================= */

img { max-width: 100%; }
.brand-logo {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border-radius: 50%;
  object-fit: cover;
  filter: drop-shadow(0 0 14px rgba(29, 213, 255, .18));
}
.footer-logo { width: 48px; height: 48px; flex-basis: 48px; }
.content-image,
.project-media > img,
.portrait-placeholder > img,
.gallery-item > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.large-placeholder { display: block; }
.large-placeholder .content-image { position: absolute; inset: 0; }
.project-media > img {
  position: absolute;
  inset: 0;
  transition: transform .7s cubic-bezier(.22, 1, .36, 1), filter .45s ease;
}
.project-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.03), rgba(0,0,0,.28));
  pointer-events: none;
}
.project-card:hover .project-media > img { transform: scale(1.045); filter: saturate(1.08); }
.project-number { z-index: 2; }
.demo-chip {
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 2;
  padding: 7px 9px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(4,7,8,.58);
  backdrop-filter: blur(10px);
  color: rgba(255,255,255,.68);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .14em;
}
.portrait-placeholder { overflow: hidden; position: relative; }
.portrait-placeholder > img { transition: transform .6s cubic-bezier(.22, 1, .36, 1); }
.board-card:hover .portrait-placeholder > img { transform: scale(1.035); }
.gallery-item { position: relative; }
.gallery-item > img {
  transition: transform .65s cubic-bezier(.22, 1, .36, 1), filter .4s ease;
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(0,0,0,.72));
  pointer-events: none;
}
.gallery-item:hover > img { transform: scale(1.04); filter: saturate(1.12); }
.gallery-caption {
  position: absolute;
  z-index: 2;
  left: 18px;
  bottom: 16px;
  color: var(--white);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .16em;
}

/* Better touch behaviour and viewport safety */
button, a { -webkit-tap-highlight-color: transparent; }
.menu-toggle,
.menu-close,
.project-copy button,
.circle-link { min-width: 44px; min-height: 44px; }
.mobile-menu {
  min-height: 100dvh;
  padding-top: max(28px, env(safe-area-inset-top));
  padding-right: max(24px, env(safe-area-inset-right));
  padding-bottom: max(28px, env(safe-area-inset-bottom));
  padding-left: max(24px, env(safe-area-inset-left));
}
body.menu-open { touch-action: none; }

@media (max-width: 1024px) {
  .hero { min-height: 100svh; }
  .hero-main { gap: 42px; }
  .hero-side { padding-bottom: 0; }
  .project-card { min-height: auto; }
  .project-media { aspect-ratio: 16 / 9; min-height: 0; }
}

@media (max-width: 700px) {
  :root { --mobile-gutter: 16px; }

  body { overflow-wrap: anywhere; }
  .app-shell { overflow: clip; }
  .section-pad {
    width: calc(100% - (var(--mobile-gutter) * 2));
    padding: 72px 0;
  }

  .nav-shell {
    top: max(8px, env(safe-area-inset-top));
    width: calc(100% - 16px);
    min-height: 58px;
    padding: 8px 9px 8px 10px;
    border-radius: 15px;
  }
  .brand-mark { min-width: 0; gap: 8px; }
  .brand-logo { width: 36px; height: 36px; flex-basis: 36px; }
  .brand-mark > span { min-width: 0; }
  .brand-mark strong {
    max-width: 190px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 9px;
  }
  .brand-mark small {
    max-width: 190px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 6.5px;
  }
  .menu-toggle {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,.08);
    background: rgba(255,255,255,.025);
  }

  .mobile-menu { background: radial-gradient(circle at 100% 0%, rgba(29,213,255,.12), transparent 30%), #050505; }
  .menu-close { top: max(16px, env(safe-area-inset-top)); right: 16px; }
  .mobile-menu-inner { gap: 4px; padding-top: 58px; }
  .mobile-menu-inner button,
  .mobile-menu-inner a {
    width: 100%;
    min-height: 58px;
    padding: 8px 0;
    font-size: clamp(32px, 11vw, 52px);
    line-height: 1;
    border-bottom: 1px solid rgba(255,255,255,.06);
  }

  .hero {
    min-height: 100svh;
    padding-top: 108px;
    padding-bottom: 54px;
    justify-content: center;
  }
  .hero-kicker { margin-bottom: 22px; }
  .hero-main { gap: 28px; }
  .hero-mini { letter-spacing: .25em; font-size: 11px; }
  .hero h1 {
    font-size: clamp(49px, 17.5vw, 84px);
    line-height: .84;
    letter-spacing: -.065em;
    word-break: normal;
  }
  .hero-side { max-width: 100%; }
  .hero-side > p { margin-top: 0; font-size: 16px; line-height: 1.45; }
  .hero-actions { width: 100%; margin-top: 22px; gap: 14px; }
  .hero-actions .primary-btn {
    width: 100%;
    min-height: 54px;
    justify-content: space-between;
    padding-inline: 18px;
  }
  .hero-actions .text-btn { min-height: 44px; }
  .hero-watermark { font-size: 30vw; right: -10%; bottom: 6%; }

  .section-title { margin-bottom: 38px; }
  .section-title h2 {
    font-size: clamp(38px, 12.6vw, 62px);
    line-height: .96;
    margin-top: 15px;
  }
  .section-title p { font-size: 14px; line-height: 1.7; }
  .eyebrow { font-size: 9px; gap: 8px; }
  .eyebrow span { width: 26px; }

  .stats-grid { margin-bottom: 62px; }
  .stat-card { min-height: 130px; padding: 24px 16px; }
  .stat-card strong { font-size: clamp(38px, 13vw, 52px); }
  .stat-card span { display: block; margin-top: 4px; line-height: 1.45; }

  .story-grid { gap: 30px; }
  .large-placeholder { aspect-ratio: 1 / .78; }
  .story-copy h3 { font-size: clamp(30px, 9vw, 46px); }
  .story-copy p { font-size: 14px; }

  .project-list { gap: 14px; }
  .project-card { border-radius: 2px; }
  .project-media { aspect-ratio: 4 / 3; min-height: 0; }
  .project-number { top: 16px; left: 16px; }
  .demo-chip { top: 12px; right: 12px; }
  .project-copy { padding: 26px 20px 24px; }
  .project-copy h3 { font-size: clamp(34px, 11vw, 48px); margin: 10px 0 14px; }
  .project-copy p { font-size: 13px; }

  .events-head .section-title { margin-bottom: 20px; }
  .event-list { border-top: 0; display: grid; gap: 10px; }
  .event-row {
    grid-template-columns: 64px 1fr 24px;
    gap: 12px;
    padding: 18px 14px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,.018);
  }
  .event-row:hover { padding-left: 14px; }
  .event-date { align-self: start; flex-direction: column; gap: 0; }
  .event-date strong { font-size: 34px; line-height: .95; }
  .event-name small { font-size: 8px; }
  .event-name h3 { margin-top: 6px; font-size: 16px; line-height: 1.2; }
  .event-place { grid-column: 2 / 3; font-size: 11px; }
  .event-arrow { align-self: center; }

  .impact-statement { padding-top: 96px; padding-bottom: 96px; }
  .impact-statement h2 {
    font-size: clamp(48px, 15vw, 76px);
    line-height: .86;
    letter-spacing: -.06em;
  }

  .board-grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    align-items: stretch;
    width: calc(100vw - var(--mobile-gutter));
    margin-right: calc(var(--mobile-gutter) * -1);
    padding-right: var(--mobile-gutter);
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
  }
  .board-grid::-webkit-scrollbar { display: none; }
  .board-card,
  .board-card.featured {
    flex: 0 0 min(78vw, 310px);
    width: min(78vw, 310px);
    grid-column: auto;
    scroll-snap-align: start;
  }
  .board-card.featured {
    display: block;
    min-height: 0;
  }
  .board-card.featured .board-info {
    display: block;
    padding: 16px;
    border-left: 0;
    border-top: 1px solid var(--line);
    background: rgba(5,5,5,.46);
  }
  .board-card.featured .board-info h3 {
    max-width: none;
    margin-top: 8px;
    font-size: 17px;
    line-height: 1.2;
    letter-spacing: normal;
  }
  .board-card.featured .portrait-placeholder,
  .portrait-placeholder { aspect-ratio: 4 / 5; }
  .board-info { padding: 16px; }
  .board-info h3 { font-size: 17px; }

  .gallery-grid { gap: 8px; grid-auto-rows: 148px; }
  .gallery-caption { left: 12px; bottom: 11px; font-size: 8px; }

  .article-panel {
    min-height: 410px;
    gap: 34px;
    padding: 26px 22px;
  }
  .article-panel h2 { font-size: clamp(40px, 12vw, 56px); }
  .circle-link { margin-left: auto; }

  .join-section { min-height: 68svh; }
  .join-inner { width: 100%; }
  .join-inner h2 {
    font-size: clamp(58px, 19vw, 92px);
    margin: 24px 0 36px;
  }
  .join-inner .primary-btn { width: 100%; justify-content: space-between; }

  .footer { padding-top: 54px; }
  .footer-top { padding-bottom: 34px; }
  .footer-brand { max-width: 100%; }
  .footer-brand h3 { font-size: clamp(17px, 5.8vw, 22px); overflow-wrap: anywhere; }
  .footer-bottom { width: 100%; line-height: 1.6; }
  .footer-bottom div { gap: 16px; }

  .coming-page {
    min-height: 100svh;
    padding: 110px 18px 70px;
  }
  .back-link { top: max(20px, env(safe-area-inset-top)); left: 18px; min-height: 44px; }
  .coming-content h1 { font-size: clamp(58px, 20vw, 100px); }
  .coming-copy { font-size: 14px; }
  .coming-corner { bottom: max(18px, env(safe-area-inset-bottom)); left: 18px; }
}

@media (max-width: 520px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat-card,
  .stat-card:nth-child(2),
  .stat-card:nth-child(-n+2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .stat-card:last-child { border-bottom: 0; }

  .gallery-grid { display: flex; flex-direction: column; gap: 10px; }
  .gallery-item,
  .gallery-item.gallery-1,
  .gallery-item.gallery-2,
  .gallery-item.gallery-3,
  .gallery-item.gallery-4,
  .gallery-item.gallery-5 {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
  }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(3) { aspect-ratio: 16 / 10; }

  .article-panel br { display: none; }
  .footer-bottom div { display: grid; grid-template-columns: 1fr 1fr; }
}

@media (max-width: 390px) {
  :root { --mobile-gutter: 13px; }
  .nav-shell { width: calc(100% - 12px); }
  .brand-mark strong { max-width: 148px; }
  .brand-mark small { max-width: 148px; }
  .hero h1 { font-size: clamp(45px, 16.4vw, 64px); }
  .hero-mini { letter-spacing: .18em; }
  .section-title h2 { font-size: clamp(36px, 12.5vw, 48px); }
  .event-row { grid-template-columns: 56px 1fr 22px; padding-inline: 11px; }
  .event-date strong { font-size: 30px; }
  .board-card,
  .board-card.featured { flex-basis: 84vw; width: 84vw; }
  .coming-content h1 { font-size: 18vw; }
}

.nav-shell.scrolled {
  background: rgba(5,5,5,.84);
  border-color: rgba(29,213,255,.14);
  box-shadow: 0 16px 55px rgba(0,0,0,.34), 0 0 0 1px rgba(29,213,255,.025) inset;
}

/* =========================================================
   BOARD OF DIRECTORS: balanced premium desktop composition
   ========================================================= */
@media (min-width: 1025px) {
  .board-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
  }

  .board-card.featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(420px, .82fr) minmax(0, 1.18fr);
    min-height: 460px;
  }

  .board-card.featured .portrait-placeholder {
    min-height: 460px;
    aspect-ratio: auto;
  }

  .board-card.featured .board-info {
    padding: 54px 58px;
    justify-content: flex-end;
    border-left: 1px solid var(--line);
    border-top: 0;
    background:
      radial-gradient(circle at 12% 12%, rgba(29,213,255,.12), transparent 34%),
      linear-gradient(145deg, rgba(29,213,255,.045), rgba(255,255,255,.01));
  }

  .board-card.featured .board-info::before {
    content: '01';
    position: absolute;
    top: 38px;
    right: 46px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 13px;
    letter-spacing: .18em;
    color: rgba(29,213,255,.7);
  }

  .board-card.featured .board-info h3 {
    max-width: 11ch;
    font-size: clamp(42px, 4.2vw, 68px);
    line-height: .94;
    letter-spacing: -.055em;
  }

  .board-card:not(.featured) {
    grid-column: span 3;
    min-height: 0;
  }

  .board-card:not(.featured) .portrait-placeholder {
    aspect-ratio: 4 / 4.45;
  }

  .board-card:not(.featured) .board-info {
    min-height: 104px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 18px 20px 20px;
  }

  .board-card:not(.featured) .board-info h3 {
    font-size: clamp(15px, 1.25vw, 19px);
    line-height: 1.2;
  }
}

@media (min-width: 701px) and (max-width: 1024px) {
  .board-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .board-card.featured {
    grid-column: 1 / -1;
    min-height: 390px;
    grid-template-columns: minmax(0, 1fr) minmax(280px, .9fr);
  }

  .board-card.featured .portrait-placeholder {
    min-height: 390px;
  }

  .board-card.featured .board-info {
    padding: 34px;
  }

  .board-card.featured .board-info h3 {
    max-width: 10ch;
    font-size: clamp(34px, 5vw, 48px);
  }
}

/* =========================================================
   MOBILE + NEON VISUAL UPGRADE v2
   ========================================================= */

/* Rich animated background without extra assets */
.site-background {
  background:
    radial-gradient(circle at 12% 18%, rgba(29, 213, 255, .10), transparent 30%),
    radial-gradient(circle at 88% 72%, rgba(29, 213, 255, .075), transparent 34%),
    linear-gradient(180deg, #020405 0%, #050708 42%, #020304 100%);
}
.site-background::before,
.site-background::after {
  content: '';
  position: absolute;
  width: 70vw;
  height: 70vw;
  border-radius: 48% 52% 62% 38% / 44% 32% 68% 56%;
  border: 1px solid rgba(29, 213, 255, .09);
  box-shadow:
    0 0 90px rgba(29, 213, 255, .045),
    inset 0 0 110px rgba(29, 213, 255, .028);
  filter: blur(.2px);
  opacity: .7;
  will-change: transform;
}
.site-background::before {
  top: -34vw;
  right: -20vw;
  animation: bgOrbitOne 28s linear infinite;
}
.site-background::after {
  bottom: -42vw;
  left: -26vw;
  animation: bgOrbitTwo 34s linear infinite reverse;
}
.grid {
  animation: gridDrift 22s linear infinite;
  will-change: background-position;
}
.glow {
  opacity: .12;
  filter: blur(105px);
}
.scan-line {
  width: 2px;
  opacity: .52;
  box-shadow: 0 0 18px rgba(29,213,255,.78), 0 0 44px rgba(29,213,255,.28);
}
@keyframes gridDrift {
  to { background-position: 72px 72px; }
}
@keyframes bgOrbitOne {
  0% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.1) translate3d(-2vw, 3vw, 0); }
  100% { transform: rotate(360deg) scale(1); }
}
@keyframes bgOrbitTwo {
  0% { transform: rotate(0deg) scale(.92); }
  50% { transform: rotate(180deg) scale(1.08) translate3d(3vw, -2vw, 0); }
  100% { transform: rotate(360deg) scale(.92); }
}

/* Neon image system */
.image-placeholder,
.project-media,
.portrait-placeholder,
.gallery-item {
  border-color: rgba(29, 213, 255, .42) !important;
  box-shadow:
    0 0 0 1px rgba(29, 213, 255, .08),
    0 0 22px rgba(29, 213, 255, .10),
    inset 0 0 24px rgba(29, 213, 255, .045);
}
.image-placeholder,
.project-media,
.portrait-placeholder,
.gallery-item {
  position: relative;
}
.image-placeholder::before,
.project-media::before,
.portrait-placeholder::before,
.gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  border: 1px solid rgba(29, 213, 255, .54);
  box-shadow:
    inset 0 0 18px rgba(29, 213, 255, .08),
    0 0 18px rgba(29, 213, 255, .09);
}
.image-placeholder::before,
.project-media::before,
.portrait-placeholder::before,
.gallery-item::before {
  clip-path: polygon(0 0, 28% 0, 28% 1px, 100% 1px, 100% 100%, 72% 100%, 72% calc(100% - 1px), 0 calc(100% - 1px));
}
.project-card:hover .project-media,
.board-card:hover .portrait-placeholder,
.gallery-item:hover,
.story-visual:hover .image-placeholder {
  border-color: rgba(29, 213, 255, .78) !important;
  box-shadow:
    0 0 0 1px rgba(29, 213, 255, .14),
    0 0 34px rgba(29, 213, 255, .19),
    inset 0 0 28px rgba(29, 213, 255, .07);
}

/* Slightly stronger section rhythm */
.section-title h2 { text-wrap: balance; }
.section-title p { text-wrap: pretty; }

/* Improved mobile layout and footer */
@media (max-width: 700px) {
  :root { --mobile-gutter: 16px; }

  body {
    min-width: 320px;
    overflow-x: hidden;
  }

  .site-background::before {
    width: 118vw;
    height: 118vw;
    top: -48vw;
    right: -64vw;
    opacity: .48;
  }
  .site-background::after {
    width: 125vw;
    height: 125vw;
    left: -78vw;
    bottom: -60vw;
    opacity: .42;
  }
  .grid {
    background-size: 42px 42px;
    opacity: .76;
    animation-duration: 16s;
  }
  .glow { filter: blur(78px); opacity: .10; }
  .line-one { left: 12%; }
  .line-two { left: 68%; }
  .line-three { display: none; }

  .section-pad {
    width: min(100% - 32px, 640px);
    padding: 76px 0;
  }

  .nav-shell {
    width: calc(100% - 16px);
    min-height: 62px;
    padding: 8px 8px 8px 10px;
    border-color: rgba(29, 213, 255, .20);
    box-shadow: 0 12px 38px rgba(0,0,0,.42), 0 0 22px rgba(29,213,255,.045);
  }
  .brand-logo {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
    border-radius: 10px;
    object-fit: cover;
  }
  .brand-mark strong { font-size: 9px; letter-spacing: .11em; }
  .brand-mark small { font-size: 6.5px; }
  .menu-toggle {
    display: grid;
    place-items: center;
    border-color: rgba(29, 213, 255, .24);
    box-shadow: inset 0 0 16px rgba(29,213,255,.045);
  }

  .hero {
    min-height: 100svh;
    padding-top: 112px;
    padding-bottom: 56px;
    justify-content: center;
  }
  .hero-kicker {
    max-width: 100%;
    margin-bottom: 18px;
    line-height: 1.5;
  }
  .hero-main { gap: 26px; }
  .hero h1 {
    font-size: clamp(48px, 17vw, 82px);
    line-height: .86;
    letter-spacing: -.065em;
  }
  .hero-side > p {
    font-size: 15px;
    color: #cbd6db;
  }
  .hero-actions { gap: 10px; }
  .hero-actions .primary-btn {
    min-height: 56px;
    border-radius: 7px;
    box-shadow: 0 12px 34px rgba(29,213,255,.20);
  }
  .hero-actions .text-btn {
    width: 100%;
    justify-content: space-between;
    padding: 0 2px;
  }

  .stats-grid {
    border: 1px solid rgba(29,213,255,.12);
    background: rgba(255,255,255,.012);
  }
  .stat-card { min-height: 116px; }

  .large-placeholder {
    aspect-ratio: 4 / 3;
    border-radius: 4px;
  }

  .project-card {
    border-color: rgba(29,213,255,.16);
    background: linear-gradient(180deg, rgba(29,213,255,.022), rgba(255,255,255,.012));
  }
  .project-media {
    aspect-ratio: 4 / 3;
    border-left: 0 !important;
    border-right: 0 !important;
    border-top: 0 !important;
  }
  .project-copy { padding: 24px 18px 22px; }
  .project-copy h3 {
    font-size: clamp(32px, 10vw, 46px);
    overflow-wrap: normal;
  }

  .event-row {
    border-color: rgba(29,213,255,.16);
    border-radius: 5px;
    box-shadow: inset 0 0 24px rgba(29,213,255,.018);
  }

  .board-grid {
    width: calc(100vw - var(--mobile-gutter));
    margin-right: calc(var(--mobile-gutter) * -1);
    padding-right: var(--mobile-gutter);
    gap: 12px;
  }
  .board-card,
  .board-card.featured {
    flex-basis: min(82vw, 318px);
    width: min(82vw, 318px);
    border-color: rgba(29,213,255,.18);
    background: rgba(255,255,255,.014);
  }
  .portrait-placeholder {
    aspect-ratio: 3 / 4 !important;
  }
  .portrait-placeholder > img {
    object-position: center top;
  }
  .board-info h3 {
    font-size: 16px;
    line-height: 1.22;
  }

  .gallery-grid { gap: 10px; }
  .gallery-item {
    border-radius: 3px;
    box-shadow: 0 0 20px rgba(29,213,255,.08), inset 0 0 18px rgba(29,213,255,.04);
  }

  .article-panel {
    border-radius: 5px;
    border-color: rgba(29,213,255,.35);
    box-shadow: 0 0 32px rgba(29,213,255,.07), inset 0 0 36px rgba(29,213,255,.035);
  }

  .join-section {
    min-height: 62svh;
    padding-top: 96px;
    padding-bottom: 96px;
  }

  .footer {
    width: calc(100% - 24px);
    margin: 0 auto;
    padding: 18px 0 max(22px, env(safe-area-inset-bottom));
    border-top: 0;
  }
  .footer-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 22px 18px;
    border: 1px solid rgba(29,213,255,.24);
    border-radius: 10px 10px 0 0;
    background:
      radial-gradient(circle at 100% 0%, rgba(29,213,255,.10), transparent 42%),
      rgba(6,9,10,.82);
    box-shadow: 0 0 28px rgba(29,213,255,.065), inset 0 0 28px rgba(29,213,255,.025);
  }
  .footer-brand {
    width: 100%;
    min-width: 0;
    align-items: center;
    gap: 12px;
  }
  .footer-logo {
    width: 54px;
    height: 54px;
    flex-basis: 54px;
    border-radius: 12px;
  }
  .footer-brand > div { min-width: 0; }
  .footer-brand strong {
    font-size: 9px;
    letter-spacing: .13em;
  }
  .footer-brand h3 {
    margin-top: 5px;
    font-size: clamp(16px, 5.2vw, 21px);
    line-height: 1.08;
    overflow-wrap: normal;
    word-break: normal;
  }
  .footer-top > p {
    width: fit-content;
    margin: 0;
    padding: 8px 10px;
    border: 1px solid rgba(29,213,255,.14);
    border-radius: 999px;
    color: #9eb1b9;
    font-size: 8px;
    line-height: 1;
    letter-spacing: .16em;
  }
  .footer-bottom {
    display: flex;
    flex-direction: column-reverse;
    align-items: stretch;
    gap: 16px;
    padding: 18px 14px 0;
    border-top: 0;
    text-align: center;
  }
  .footer-bottom > span {
    display: block;
    padding-top: 14px;
    border-top: 1px solid rgba(255,255,255,.065);
    color: #64747b;
    font-size: 9px;
    line-height: 1.6;
  }
  .footer-bottom div {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
    width: 100%;
  }
  .footer-bottom a {
    min-width: 0;
    min-height: 42px;
    padding: 0 6px;
    border: 1px solid rgba(29,213,255,.16);
    border-radius: 6px;
    display: grid;
    place-items: center;
    background: rgba(29,213,255,.025);
    color: #9aabb2;
    font-size: 9px;
  }
}

@media (max-width: 520px) {
  .section-pad { width: calc(100% - 28px); }

  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-card,
  .stat-card:nth-child(2),
  .stat-card:nth-child(-n+2) {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .stat-card:nth-child(even) { border-right: 0; }
  .stat-card:nth-child(n+3) { border-bottom: 0; }

  .gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .gallery-item,
  .gallery-item.gallery-1,
  .gallery-item.gallery-2,
  .gallery-item.gallery-3,
  .gallery-item.gallery-4,
  .gallery-item.gallery-5 {
    width: 100%;
    aspect-ratio: 4 / 3;
  }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(3) { aspect-ratio: 16 / 10; }

  .footer { width: calc(100% - 16px); }
  .footer-top { padding: 20px 14px; }
  .footer-brand { gap: 10px; }
  .footer-logo {
    width: 50px;
    height: 50px;
    flex-basis: 50px;
  }
  .footer-brand h3 { font-size: clamp(15px, 5vw, 19px); }
}

@media (max-width: 390px) {
  :root { --mobile-gutter: 12px; }

  .section-pad { width: calc(100% - 24px); }
  .brand-mark strong { max-width: 142px; }
  .brand-mark small { max-width: 142px; }
  .hero h1 { font-size: clamp(44px, 16.1vw, 61px); }
  .hero-kicker { font-size: 8px; }

  .stats-grid { grid-template-columns: 1fr; }
  .stat-card,
  .stat-card:nth-child(2),
  .stat-card:nth-child(-n+2),
  .stat-card:nth-child(even),
  .stat-card:nth-child(n+3) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .stat-card:last-child { border-bottom: 0; }

  .board-card,
  .board-card.featured {
    flex-basis: min(86vw, 304px);
    width: min(86vw, 304px);
  }

  .footer-bottom div { gap: 5px; }
  .footer-bottom a { font-size: 8px; padding-inline: 3px; }
}

@media (prefers-reduced-motion: reduce) {
  .site-background::before,
  .site-background::after,
  .grid { animation: none !important; }
}

/* =========================================================
   CREATIVE MOBILE EXPERIENCE v3
   Editorial mobile hero, cinematic project photos and a
   purpose-built executive board layout.
   ========================================================= */

.mobile-hero-art,
.mobile-impact-ticker,
.mobile-board-heading,
.board-photo-tag,
.board-signature,
.board-mini-arrow {
  display: none;
}

.project-photo-label {
  position: absolute;
  z-index: 5;
  left: 18px;
  bottom: 16px;
  color: rgba(255,255,255,.82);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  text-shadow: 0 1px 16px rgba(0,0,0,.8);
}
.project-focus-dot {
  position: absolute;
  z-index: 5;
  right: 18px;
  bottom: 17px;
  width: 11px;
  height: 11px;
  border: 1px solid rgba(29,213,255,.9);
  border-radius: 50%;
  box-shadow: 0 0 14px rgba(29,213,255,.5);
}
.project-focus-dot::before,
.project-focus-dot::after {
  content: '';
  position: absolute;
  background: rgba(29,213,255,.86);
}
.project-focus-dot::before { width: 17px; height: 1px; left: -4px; top: 4px; }
.project-focus-dot::after { width: 1px; height: 17px; left: 4px; top: -4px; }

/* Keep the 5-image gallery balanced after removing demo 6. */
.gallery-5 { grid-column: span 3; grid-row: span 2; }

@media (max-width: 700px) {
  /* ---------- Mobile home / hero ---------- */
  .hero {
    min-height: 100svh;
    padding-top: 112px;
    padding-bottom: 36px;
    isolation: isolate;
  }
  .hero::before {
    content: '';
    position: absolute;
    z-index: -1;
    top: 94px;
    right: -28%;
    width: 86%;
    height: 58%;
    background: linear-gradient(122deg, transparent 28%, rgba(29,213,255,.06) 49%, transparent 70%);
    transform: skewX(-12deg);
    animation: mobileHeroBeam 6.5s ease-in-out infinite alternate;
    pointer-events: none;
  }
  .hero::after {
    content: '01 / HOME';
    position: absolute;
    right: -29px;
    top: 47%;
    color: rgba(29,213,255,.46);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .28em;
    transform: rotate(90deg);
    pointer-events: none;
  }
  @keyframes mobileHeroBeam {
    from { transform: translate3d(-8px, -8px, 0) skewX(-12deg); opacity: .55; }
    to { transform: translate3d(12px, 18px, 0) skewX(-12deg); opacity: 1; }
  }

  .mobile-hero-art {
    display: block;
    position: absolute;
    z-index: -1;
    width: 188px;
    height: 188px;
    top: 92px;
    right: -34px;
    opacity: .72;
    transform: translate3d(0, var(--hero-shift, 0px), 0);
    transition: transform .08s linear;
    pointer-events: none;
  }
  .mobile-orbit {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid rgba(29,213,255,.18);
    box-shadow: 0 0 28px rgba(29,213,255,.08), inset 0 0 22px rgba(29,213,255,.04);
  }
  .mobile-orbit::after {
    content: '';
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 14px rgba(29,213,255,.9);
    top: 11px;
    left: 50%;
  }
  .orbit-a { animation: mobileOrbit 12s linear infinite; }
  .orbit-b { inset: 20px; border-style: dashed; animation: mobileOrbit 9s linear infinite reverse; }
  .mobile-logo-core {
    position: absolute;
    inset: 42px;
    border-radius: 26px;
    overflow: hidden;
    transform: rotate(8deg);
    border: 1px solid rgba(29,213,255,.42);
    box-shadow: 0 0 35px rgba(29,213,255,.13);
  }
  .mobile-logo-core img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .mobile-art-code {
    position: absolute;
    left: 7px;
    bottom: 22px;
    color: rgba(255,255,255,.45);
    font-size: 7px;
    letter-spacing: .2em;
  }
  @keyframes mobileOrbit { to { transform: rotate(360deg); } }

  .hero-kicker {
    position: relative;
    z-index: 2;
    width: fit-content;
    padding: 7px 10px;
    border: 1px solid rgba(29,213,255,.22);
    background: rgba(3,8,10,.5);
    backdrop-filter: blur(10px);
  }
  .hero-main { position: relative; z-index: 2; gap: 24px; }
  .hero-intro {
    position: relative;
    padding-top: 18px;
  }
  .hero-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 74px;
    height: 2px;
    background: linear-gradient(90deg, var(--cyan), transparent);
    box-shadow: 0 0 14px rgba(29,213,255,.7);
  }
  .hero h1 {
    text-shadow: 0 0 42px rgba(29,213,255,.055);
  }
  .hero h1 .outline-text {
    -webkit-text-stroke-color: rgba(29,213,255,.66);
    filter: drop-shadow(0 0 20px rgba(29,213,255,.08));
  }
  .hero-side {
    padding: 16px 16px 15px;
    border-left: 1px solid rgba(29,213,255,.48);
    background: linear-gradient(90deg, rgba(29,213,255,.055), transparent 78%);
  }
  .hero-side > p {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    letter-spacing: -.02em;
  }

  .mobile-impact-ticker {
    display: block;
    width: 100vw;
    margin-top: 30px;
    margin-left: calc(var(--mobile-gutter) * -1);
    overflow: hidden;
    border-top: 1px solid rgba(29,213,255,.16);
    border-bottom: 1px solid rgba(29,213,255,.16);
    background: rgba(2,7,9,.58);
    backdrop-filter: blur(9px);
    transform: rotate(-1.5deg);
  }
  .mobile-impact-track {
    width: max-content;
    min-height: 42px;
    display: flex;
    align-items: center;
    gap: 16px;
    padding-inline: 16px;
    animation: mobileTicker 18s linear infinite;
  }
  .mobile-impact-track span {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .18em;
    white-space: nowrap;
  }
  .mobile-impact-track i {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 10px rgba(29,213,255,.8);
  }
  @keyframes mobileTicker { to { transform: translateX(-50%); } }

  /* ---------- Mobile bento stats ---------- */
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0,1fr)) !important;
    gap: 8px;
    border: 0;
  }
  .stat-card,
  .stat-card:nth-child(2),
  .stat-card:nth-child(-n+2),
  .stat-card:last-child {
    position: relative;
    min-height: 136px;
    border: 1px solid rgba(29,213,255,.13) !important;
    background:
      radial-gradient(circle at 100% 0%, rgba(29,213,255,.08), transparent 42%),
      rgba(255,255,255,.018);
    overflow: hidden;
  }
  .stat-card::after {
    position: absolute;
    right: 10px;
    top: 9px;
    color: rgba(29,213,255,.3);
    font-size: 8px;
    letter-spacing: .16em;
  }
  .stat-card:nth-child(1)::after { content: '01'; }
  .stat-card:nth-child(2)::after { content: '02'; }
  .stat-card:nth-child(3)::after { content: '03'; }
  .stat-card:nth-child(4)::after { content: '04'; }

  /* ---------- Cinematic mobile project photos ---------- */
  .projects .section-title { margin-bottom: 44px; }
  .project-list { gap: 34px; }
  .project-card {
    position: relative;
    display: block;
    border: 0;
    background: transparent;
    overflow: visible;
    transform: none;
  }
  .project-card:hover { transform: none; }
  .project-media {
    position: relative;
    min-height: 0;
    aspect-ratio: 4 / 4.65;
    border-radius: 20px;
    overflow: hidden;
    background: #070a0b;
  }
  .project-b .project-media { aspect-ratio: 16 / 11.5; }
  .project-c .project-media { aspect-ratio: 4 / 4.25; }
  .project-media > img {
    filter: saturate(.92) contrast(1.04);
    transform: scale(1.015);
  }
  .project-media::after {
    background:
      linear-gradient(180deg, rgba(0,0,0,.04) 34%, rgba(0,0,0,.72) 100%),
      linear-gradient(115deg, rgba(29,213,255,.08), transparent 42%);
  }
  .project-number {
    top: 13px;
    left: 13px;
    min-width: 46px;
    min-height: 46px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 1px solid rgba(29,213,255,.45);
    background: rgba(2,7,9,.58);
    backdrop-filter: blur(12px);
    color: var(--cyan);
    font-size: 11px;
    box-shadow: 0 0 24px rgba(29,213,255,.1);
  }
  .project-photo-label { left: 16px; bottom: 18px; }
  .project-focus-dot { right: 19px; bottom: 21px; }
  .demo-chip { display: none !important; }
  .project-copy {
    position: relative;
    z-index: 6;
    width: calc(100% - 24px);
    margin: -54px 12px 0;
    padding: 22px 20px 20px;
    border: 1px solid rgba(29,213,255,.22);
    border-radius: 16px;
    background:
      radial-gradient(circle at 100% 0%, rgba(29,213,255,.09), transparent 44%),
      rgba(5,8,10,.84);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 60px rgba(0,0,0,.34), inset 0 0 24px rgba(29,213,255,.025);
  }
  .project-copy::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    width: 46px;
    height: 1px;
    background: var(--cyan);
    box-shadow: 0 0 10px rgba(29,213,255,.8);
  }
  .project-copy h3 {
    font-size: clamp(35px, 10.5vw, 48px);
    max-width: 8ch;
  }
  .project-copy p { max-width: 32ch; }
  .project-copy button {
    position: absolute;
    right: 16px;
    top: 17px;
    margin: 0;
    border-color: rgba(29,213,255,.32);
    color: var(--cyan);
    background: rgba(29,213,255,.04);
  }
  .project-list > div:nth-child(2) .project-copy {
    width: calc(100% - 38px);
    margin-left: 26px;
  }

  /* ---------- Purpose-built creative mobile board ---------- */
  .board {
    position: relative;
    padding-top: 88px;
  }
  .board::before {
    content: '';
    position: absolute;
    width: 78vw;
    height: 78vw;
    right: -46vw;
    top: 22%;
    border: 1px solid rgba(29,213,255,.08);
    border-radius: 50%;
    box-shadow: 0 0 70px rgba(29,213,255,.035), inset 0 0 70px rgba(29,213,255,.025);
    pointer-events: none;
  }
  .mobile-board-heading {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 10px 0 12px;
    margin: -14px 0 14px;
    border-top: 1px solid rgba(29,213,255,.16);
    border-bottom: 1px solid rgba(29,213,255,.16);
    color: rgba(255,255,255,.42);
    font-size: 7px;
    font-weight: 700;
    letter-spacing: .14em;
  }
  .mobile-board-heading span:last-child { text-align: right; color: rgba(29,213,255,.55); }

  .board-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 13px;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: visible;
    scroll-snap-type: none;
  }
  .board-card,
  .board-card.featured {
    width: 100%;
    min-width: 0;
    max-width: none;
    flex: none;
    border-radius: 18px;
    border-color: rgba(29,213,255,.18);
    background: rgba(4,7,9,.72);
    box-shadow: 0 18px 55px rgba(0,0,0,.24);
  }
  .board-card::after {
    content: attr(data-board-number);
    position: absolute;
    z-index: 5;
    pointer-events: none;
    color: rgba(29,213,255,.18);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    line-height: 1;
  }
  .board-card.in-focus {
    border-color: rgba(29,213,255,.5);
    box-shadow: 0 18px 60px rgba(0,0,0,.3), 0 0 28px rgba(29,213,255,.09);
  }

  .board-card.featured {
    position: relative;
    display: block;
    min-height: 0;
    overflow: hidden;
    border-radius: 24px;
    transform: none;
  }
  .board-card.featured::after {
    top: 16px;
    right: 16px;
    font-size: 70px;
  }
  .board-card.featured .portrait-placeholder {
    width: 100%;
    min-height: 0;
    aspect-ratio: 4 / 5.15;
    border: 0 !important;
    box-shadow: none !important;
  }
  .board-card.featured .portrait-placeholder::before {
    border-radius: 23px;
  }
  .board-card.featured .portrait-placeholder::after {
    background:
      linear-gradient(180deg, transparent 42%, rgba(3,5,7,.22) 58%, rgba(3,5,7,.95) 100%),
      linear-gradient(120deg, rgba(29,213,255,.08), transparent 44%);
  }
  .board-card.featured .board-info {
    position: absolute;
    z-index: 6;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 92px 20px 22px;
    border: 0;
    background: linear-gradient(180deg, transparent, rgba(3,5,7,.96) 72%);
  }
  .board-card.featured .board-info small {
    display: inline-flex;
    width: fit-content;
    padding: 6px 8px;
    border: 1px solid rgba(29,213,255,.35);
    border-radius: 999px;
    background: rgba(2,10,13,.52);
  }
  .board-card.featured .board-info h3 {
    margin-top: 10px;
    max-width: 11ch;
    font-size: clamp(29px, 8.8vw, 42px);
    line-height: .96;
    letter-spacing: -.045em;
  }
  .board-signature {
    display: block;
    margin-top: 13px;
    color: rgba(255,255,255,.42);
    font-size: 7px;
    font-weight: 700;
    letter-spacing: .18em;
  }

  .board-photo-tag {
    display: block;
    position: absolute;
    z-index: 6;
    left: 13px;
    top: 13px;
    padding: 6px 8px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 999px;
    background: rgba(3,7,9,.58);
    backdrop-filter: blur(10px);
    color: rgba(255,255,255,.7);
    font-size: 7px;
    font-weight: 700;
    letter-spacing: .12em;
  }

  .board-card:not(.featured) {
    display: grid;
    grid-template-columns: 108px minmax(0, 1fr);
    min-height: 132px;
    overflow: hidden;
  }
  .board-card:not(.featured)::after {
    right: 10px;
    bottom: -8px;
    font-size: 64px;
  }
  .board-card:not(.featured):nth-child(even) { transform: translateX(5px); }
  .board-card:not(.featured):nth-child(odd) { transform: translateX(-3px); }
  .board-card:not(.featured) .portrait-placeholder {
    width: 108px;
    height: 132px;
    min-height: 132px;
    aspect-ratio: auto;
    border: 0 !important;
    border-right: 1px solid rgba(29,213,255,.18) !important;
    box-shadow: none !important;
  }
  .board-card:not(.featured) .portrait-placeholder::before { border: 0; }
  .board-card:not(.featured) .portrait-placeholder::after {
    background: linear-gradient(90deg, transparent 58%, rgba(3,5,7,.24));
  }
  .board-card:not(.featured) .board-photo-tag {
    left: 8px;
    top: 8px;
    max-width: 92px;
    padding: 4px 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 5px;
  }
  .board-card:not(.featured) .board-info {
    position: relative;
    z-index: 6;
    min-height: 132px;
    padding: 17px 42px 16px 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 0;
    background:
      radial-gradient(circle at 100% 0%, rgba(29,213,255,.07), transparent 50%),
      rgba(4,7,9,.76);
  }
  .board-card:not(.featured) .board-info h3 {
    position: relative;
    z-index: 2;
    max-width: 16ch;
    margin-top: 7px;
    font-size: 16px;
    line-height: 1.13;
  }
  .board-mini-arrow {
    display: grid;
    place-items: center;
    position: absolute;
    z-index: 8;
    right: 12px;
    top: 12px;
    width: 28px;
    height: 28px;
    border: 1px solid rgba(29,213,255,.22);
    border-radius: 50%;
    color: var(--cyan);
    font-size: 12px;
    background: rgba(29,213,255,.03);
  }

  /* ---------- Five-image mobile gallery ---------- */
  .gallery-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    grid-auto-rows: 150px;
    gap: 8px;
  }
  .gallery-item,
  .gallery-item.gallery-1,
  .gallery-item.gallery-2,
  .gallery-item.gallery-3,
  .gallery-item.gallery-4,
  .gallery-item.gallery-5 {
    width: auto;
    height: auto;
    aspect-ratio: auto;
    grid-column: auto !important;
    grid-row: auto !important;
    border-radius: 12px;
  }
  .gallery-item:nth-child(1) { grid-column: 1 / -1 !important; grid-row: span 2 !important; }
  .gallery-item:nth-child(2) { grid-row: span 2 !important; }
  .gallery-item:nth-child(3) { grid-row: span 1 !important; }
  .gallery-item:nth-child(4) { grid-row: span 1 !important; }
  .gallery-item:nth-child(5) { grid-column: 1 / -1 !important; grid-row: span 2 !important; }
}

@media (max-width: 520px) {
  /* Preserve the creative 2x2 stat bento and mosaic gallery on small phones. */
  .stats-grid { grid-template-columns: repeat(2, minmax(0,1fr)) !important; }
  .gallery-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 8px;
  }
  .gallery-item,
  .gallery-item.gallery-1,
  .gallery-item.gallery-2,
  .gallery-item.gallery-3,
  .gallery-item.gallery-4,
  .gallery-item.gallery-5 {
    width: auto;
    height: auto;
    aspect-ratio: auto;
  }
}

@media (max-width: 380px) {
  .mobile-hero-art { width: 164px; height: 164px; right: -38px; }
  .mobile-logo-core { inset: 38px; }
  .project-copy { width: calc(100% - 16px); margin-inline: 8px; }
  .project-list > div:nth-child(2) .project-copy { width: calc(100% - 22px); margin-left: 14px; }
  .board-card:not(.featured) { grid-template-columns: 96px minmax(0, 1fr); }
  .board-card:not(.featured) .portrait-placeholder { width: 96px; }
  .board-card:not(.featured) .board-info { padding-left: 13px; }
  .board-card:not(.featured) .board-info h3 { font-size: 14px; }
}

@media (max-width: 700px) {
  .board-card.featured .board-info h3 {
    max-width: none;
    font-size: clamp(27px, 8vw, 38px);
    overflow-wrap: normal;
    word-break: normal;
  }
}

@media (min-width: 1025px) {
  .board-card.featured .board-info h3 {
    max-width: 15ch;
    font-size: clamp(40px, 3.7vw, 60px);
    overflow-wrap: normal;
    word-break: normal;
  }
}


/* =========================================================
   MOBILE REFINEMENT v4
   Cleaner hero spacing, editorial full-image projects,
   hidden board number tags and stronger scroll choreography.
   ========================================================= */

@media (max-width: 700px) {
  /* Remove the mobile homepage logo while retaining light orbit detail. */
  .mobile-logo-core { display: none !important; }
  .mobile-hero-art {
    width: 126px;
    height: 126px;
    top: 106px;
    right: -42px;
    opacity: .46;
  }
  .orbit-b { inset: 15px; }
  .mobile-art-code {
    left: -2px;
    bottom: 8px;
    opacity: .58;
  }

  /* Remove excess empty space between the hero and About section. */
  .hero {
    min-height: auto;
    padding-top: 108px;
    padding-bottom: 26px;
    justify-content: flex-start;
  }
  .hero-main { gap: 20px; }
  .hero-kicker { margin-bottom: 14px; }
  .hero-intro { padding-top: 15px; }
  .hero-side { padding-top: 13px; padding-bottom: 12px; }
  .hero-actions { margin-top: 22px; }
  .mobile-impact-ticker { margin-top: 24px; }
  .hero-bottom { display: none; }
  .about {
    padding-top: 44px;
    padding-bottom: 66px;
  }
  .about .section-title { margin-bottom: 46px; }

  /* -------------------------------------------------------
     New editorial project layout
     Full photo card with cinematic information overlay.
     ------------------------------------------------------- */
  .projects { padding-top: 68px; }
  .projects .section-title { margin-bottom: 32px; }
  .project-list {
    gap: 24px;
  }
  .project-list > div,
  .project-list > div:nth-child(2) {
    width: 100%;
  }
  .project-card {
    position: relative;
    display: block;
    min-height: 0;
    overflow: hidden;
    border: 1px solid rgba(29,213,255,.24);
    border-radius: 20px;
    background: #050708;
    box-shadow:
      0 20px 58px rgba(0,0,0,.34),
      0 0 0 1px rgba(29,213,255,.025),
      inset 0 0 34px rgba(29,213,255,.025);
    isolation: isolate;
  }
  .project-card::before,
  .project-card::after {
    content: '';
    position: absolute;
    z-index: 9;
    pointer-events: none;
  }
  .project-card::before {
    width: 48px;
    height: 48px;
    top: 0;
    left: 0;
    border-top: 1px solid var(--cyan);
    border-left: 1px solid var(--cyan);
    border-radius: 20px 0 0 0;
    opacity: .75;
  }
  .project-card::after {
    width: 48px;
    height: 48px;
    right: 0;
    bottom: 0;
    border-right: 1px solid rgba(29,213,255,.55);
    border-bottom: 1px solid rgba(29,213,255,.55);
    border-radius: 0 0 20px 0;
  }
  .project-media,
  .project-b .project-media,
  .project-c .project-media {
    width: 100%;
    min-height: 0;
    aspect-ratio: 4 / 5;
    border-radius: 0;
    overflow: hidden;
  }
  .project-b .project-media { aspect-ratio: 16 / 13; }
  .project-c .project-media { aspect-ratio: 4 / 4.6; }
  .project-media > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.07);
    filter: saturate(.9) contrast(1.05) brightness(.82);
    transition: transform 1.15s cubic-bezier(.22,1,.36,1), filter .7s ease;
  }
  .project-media::after {
    background:
      linear-gradient(180deg, rgba(0,0,0,.03) 20%, rgba(0,0,0,.18) 44%, rgba(1,4,6,.96) 100%),
      linear-gradient(120deg, rgba(29,213,255,.09), transparent 42%);
  }
  .project-number {
    top: 14px;
    left: auto;
    right: 14px;
    min-width: 42px;
    min-height: 42px;
    border-radius: 10px;
    font-size: 10px;
    background: rgba(2,7,9,.68);
  }
  .project-photo-label {
    top: 17px;
    bottom: auto;
    left: 15px;
    padding: 5px 7px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 999px;
    background: rgba(3,7,9,.4);
    backdrop-filter: blur(9px);
    font-size: 6px;
  }
  .project-focus-dot { display: none; }
  .project-copy,
  .project-list > div:nth-child(2) .project-copy {
    position: absolute;
    z-index: 7;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    margin: 0;
    padding: 104px 62px 22px 18px;
    border: 0;
    border-radius: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(2,5,7,.64) 34%, rgba(2,5,7,.98) 100%);
    backdrop-filter: none;
    box-shadow: none;
  }
  .project-copy::before {
    left: 18px;
    top: 84px;
    width: 38px;
  }
  .project-copy small {
    display: inline-flex;
    width: fit-content;
    padding: 5px 7px;
    border: 1px solid rgba(29,213,255,.28);
    border-radius: 999px;
    background: rgba(29,213,255,.045);
  }
  .project-copy h3 {
    max-width: 10ch;
    margin: 10px 0 10px;
    font-size: clamp(32px, 10vw, 46px);
    line-height: .92;
  }
  .project-copy p {
    margin: 0;
    max-width: 31ch;
    color: rgba(220,231,236,.68);
    line-height: 1.55;
    font-size: 12px;
  }
  .project-copy button {
    right: 16px;
    top: auto;
    bottom: 18px;
    width: 42px;
    height: 42px;
    border-color: rgba(29,213,255,.44);
    background: rgba(29,213,255,.07);
  }

  /* Scroll choreography for project cards. */
  .project-card.mobile-scroll-item {
    opacity: 0;
    transform: translate3d(0, 54px, 0) scale(.965);
    transition:
      opacity .78s cubic-bezier(.22,1,.36,1),
      transform .95s cubic-bezier(.22,1,.36,1),
      border-color .35s ease,
      box-shadow .35s ease;
  }
  .project-list > div:nth-child(even) .project-card.mobile-scroll-item {
    transform: translate3d(26px, 54px, 0) scale(.965);
  }
  .project-list > div:nth-child(odd) .project-card.mobile-scroll-item {
    transform: translate3d(-18px, 54px, 0) scale(.965);
  }
  .project-card.mobile-scroll-item.scroll-active {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
  .project-card.mobile-scroll-item.scroll-active .project-media > img {
    transform: scale(1.015);
    filter: saturate(.95) contrast(1.03) brightness(.9);
  }

  /* -------------------------------------------------------
     Board cleanup and mobile scroll choreography
     ------------------------------------------------------- */
  .board-photo-tag,
  .board-card::after {
    display: none !important;
    content: none !important;
  }
  .board-card:not(.featured):nth-child(even),
  .board-card:not(.featured):nth-child(odd) {
    transform: none;
  }
  .board-card.mobile-scroll-item {
    opacity: 0;
    transform: translate3d(-34px, 26px, 0);
    transition:
      opacity .7s cubic-bezier(.22,1,.36,1),
      transform .9s cubic-bezier(.22,1,.36,1),
      border-color .35s ease,
      box-shadow .35s ease;
  }
  .board-card.featured.mobile-scroll-item {
    transform: translate3d(0, 56px, 0) scale(.97);
  }
  .board-card:not(.featured):nth-child(even).mobile-scroll-item {
    transform: translate3d(34px, 26px, 0);
  }
  .board-card.mobile-scroll-item.scroll-active,
  .board-card.featured.mobile-scroll-item.scroll-active,
  .board-card:not(.featured):nth-child(even).mobile-scroll-item.scroll-active {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }

  /* Copyright is easier to read on small screens. */
  .footer-bottom > span {
    color: #71838a;
    font-size: 9px;
    letter-spacing: .01em;
  }
}

@media (max-width: 390px) {
  .mobile-hero-art {
    width: 108px;
    height: 108px;
    top: 110px;
    right: -42px;
  }
  .project-copy,
  .project-list > div:nth-child(2) .project-copy {
    padding: 94px 56px 18px 15px;
  }
  .project-copy::before { left: 15px; top: 76px; }
  .project-copy h3 { font-size: clamp(29px, 9.5vw, 39px); }
  .project-copy p { font-size: 11px; }
  .about { padding-top: 36px; }
}

@media (prefers-reduced-motion: reduce) {
  .project-card.mobile-scroll-item,
  .board-card.mobile-scroll-item {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .project-card.mobile-scroll-item .project-media > img {
    transform: scale(1.015) !important;
    transition: none !important;
  }
}

/* =========================================================
   MINIMAL MOBILE HOME + MODERN LOADER v5
   Clean, restrained mobile hero with responsive typography.
   ========================================================= */

body.loading {
  overflow: hidden;
}

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 44%, rgba(29,213,255,.075), transparent 28%),
    #030506;
  opacity: 1;
  visibility: visible;
  transition: opacity .65s cubic-bezier(.22,1,.36,1), visibility .65s ease;
}

.site-loader::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 49.8%, rgba(29,213,255,.055) 50%, transparent 50.2%);
  transform: scaleY(0);
  transform-origin: center;
  animation: loaderLineGrow .75s cubic-bezier(.22,1,.36,1) .05s forwards;
}

.site-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-inner {
  position: relative;
  width: min(280px, calc(100vw - 56px));
  display: flex;
  flex-direction: column;
  align-items: center;
}

.loader-mark {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(34px, 10vw, 52px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.08em;
  color: #f6fbfd;
}

.loader-mark i {
  width: 1px;
  height: 42px;
  display: block;
  background: var(--cyan);
  box-shadow: 0 0 16px rgba(29,213,255,.85);
  transform: scaleY(.15);
  animation: loaderDivider 1.15s cubic-bezier(.22,1,.36,1) infinite alternate;
}

.loader-mark span:first-child {
  animation: loaderLetterLeft .8s cubic-bezier(.22,1,.36,1) both;
}

.loader-mark span:last-child {
  animation: loaderLetterRight .8s cubic-bezier(.22,1,.36,1) both;
}

.loader-progress {
  width: 100%;
  height: 1px;
  margin-top: 24px;
  background: rgba(255,255,255,.09);
  overflow: hidden;
}

.loader-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--cyan), #ecfbff);
  box-shadow: 0 0 16px rgba(29,213,255,.75);
  transform: scaleX(0);
  transform-origin: left;
  animation: loaderProgress 1.05s cubic-bezier(.65,0,.35,1) .08s forwards;
}

.loader-inner p {
  margin: 13px 0 0;
  color: rgba(221,237,243,.52);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .19em;
  text-align: center;
}

@keyframes loaderLineGrow {
  to { transform: scaleY(1); }
}
@keyframes loaderDivider {
  to { transform: scaleY(1); opacity: .65; }
}
@keyframes loaderLetterLeft {
  from { opacity: 0; transform: translate3d(18px, 0, 0); }
  to { opacity: 1; transform: none; }
}
@keyframes loaderLetterRight {
  from { opacity: 0; transform: translate3d(-18px, 0, 0); }
  to { opacity: 1; transform: none; }
}
@keyframes loaderProgress {
  0% { transform: scaleX(0); }
  68% { transform: scaleX(.76); }
  100% { transform: scaleX(1); }
}

.hero-kicker-dot,
.mobile-hero-meta {
  display: none;
}

@media (max-width: 700px) {
  /* Strip away previous decorative mobile hero artwork. */
  .mobile-hero-art,
  .mobile-impact-ticker {
    display: none !important;
  }

  .hero {
    width: calc(100% - 32px);
    min-height: 100svh;
    padding-top: clamp(106px, 17svh, 132px);
    padding-bottom: 28px;
    justify-content: flex-start;
    isolation: isolate;
    overflow: hidden;
  }

  .hero::before {
    content: '';
    position: absolute;
    z-index: -1;
    width: 72vw;
    height: 72vw;
    max-width: 340px;
    max-height: 340px;
    right: -42%;
    top: 18%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(29,213,255,.105) 0%, rgba(29,213,255,.025) 38%, transparent 69%);
    filter: blur(2px);
    opacity: .92;
    transform: none;
    animation: minimalHeroGlow 6s ease-in-out infinite alternate;
    pointer-events: none;
  }

  .hero::after {
    content: '';
    position: absolute;
    z-index: -1;
    right: 4px;
    top: 15%;
    width: 1px;
    height: 48%;
    background: linear-gradient(180deg, transparent, rgba(29,213,255,.52), transparent);
    box-shadow: 0 0 14px rgba(29,213,255,.22);
    opacity: .55;
    transform: none;
    animation: minimalHeroLine 4.8s ease-in-out infinite;
    pointer-events: none;
  }

  @keyframes minimalHeroGlow {
    from { transform: translate3d(0, -8px, 0) scale(.96); opacity: .62; }
    to { transform: translate3d(-12px, 12px, 0) scale(1.06); opacity: 1; }
  }

  @keyframes minimalHeroLine {
    0%, 100% { opacity: .18; transform: scaleY(.72); }
    50% { opacity: .72; transform: scaleY(1); }
  }

  .hero-kicker {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    width: fit-content;
    margin: 0 0 24px;
    padding: 0;
    border: 0;
    background: transparent;
    backdrop-filter: none;
    color: rgba(212,230,236,.66);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .17em;
  }

  .hero-kicker-dot {
    display: block;
    width: 6px;
    height: 6px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 12px rgba(29,213,255,.85);
    animation: minimalDotPulse 2s ease-in-out infinite;
  }

  @keyframes minimalDotPulse {
    50% { opacity: .45; transform: scale(.78); }
  }

  .hero-main {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 28px;
  }

  .hero-intro {
    padding: 0;
  }

  .hero-intro::before {
    display: none;
  }

  .hero-mini {
    margin: 0 0 7px;
    color: rgba(218,232,237,.62);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .26em;
  }

  .hero h1 {
    max-width: 100%;
    margin: 0;
    font-size: clamp(43px, 15.5vw, 71px);
    line-height: .84;
    letter-spacing: -.067em;
    text-shadow: none;
  }

  .hero h1 span {
    white-space: nowrap;
  }

  .hero h1 .outline-text {
    margin-top: 4px;
    color: rgba(255,255,255,.025);
    -webkit-text-stroke: 1px rgba(29,213,255,.68);
    filter: none;
  }

  .hero-side {
    max-width: 100%;
    padding: 20px 0 0;
    border: 0;
    border-top: 1px solid rgba(255,255,255,.10);
    background: transparent;
  }

  .hero-side::before {
    content: '';
    display: block;
    width: 54px;
    height: 1px;
    margin-top: -21px;
    margin-bottom: 20px;
    background: var(--cyan);
    box-shadow: 0 0 13px rgba(29,213,255,.72);
  }

  .hero-side > p {
    margin: 0;
    color: rgba(236,245,248,.9);
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(17px, 5vw, 20px);
    font-weight: 500;
    line-height: 1.38;
    letter-spacing: -.025em;
  }

  .hero-actions {
    width: 100%;
    margin-top: 24px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    align-items: center;
  }

  .hero-actions .primary-btn {
    width: 100%;
    min-height: 50px;
    justify-content: space-between;
    padding: 0 17px;
    border-radius: 0;
    background: var(--cyan);
    color: #021015;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .08em;
    box-shadow: 0 10px 36px rgba(29,213,255,.13);
  }

  .hero-actions .text-btn {
    width: 50px;
    min-width: 50px;
    height: 50px;
    padding: 0;
    justify-content: center;
    border: 1px solid rgba(29,213,255,.24);
    color: var(--cyan);
    font-size: 0;
  }

  .hero-actions .text-btn .icon {
    width: 18px;
    height: 18px;
  }

  .mobile-hero-meta {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: auto;
    padding-top: 28px;
    color: rgba(198,216,222,.44);
    font-size: 7px;
    font-weight: 700;
    letter-spacing: .13em;
    white-space: nowrap;
  }

  .mobile-hero-meta i {
    width: 3px;
    height: 3px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: rgba(29,213,255,.62);
    box-shadow: 0 0 8px rgba(29,213,255,.55);
  }

  .hero-watermark,
  .hero-bottom {
    display: none;
  }

  /* Tight mobile transition into About. */
  .about {
    padding-top: 46px !important;
  }

  .about .section-title {
    margin-bottom: 40px;
  }
}

@media (max-width: 520px) {
  .hero {
    width: calc(100% - 28px);
    padding-top: clamp(102px, 15svh, 120px);
  }

  .hero-main { gap: 24px; }
  .hero-kicker { margin-bottom: 20px; }

  .mobile-hero-meta {
    gap: 7px;
    font-size: 6.5px;
    letter-spacing: .09em;
  }
}

@media (max-width: 390px) {
  .hero {
    width: calc(100% - 24px);
    padding-top: 96px;
    padding-bottom: 22px;
  }

  .hero h1 {
    font-size: clamp(39px, 15.8vw, 59px);
  }

  .hero-actions {
    grid-template-columns: minmax(0, 1fr) 48px;
  }

  .hero-actions .primary-btn,
  .hero-actions .text-btn {
    min-height: 48px;
    height: 48px;
  }

  .mobile-hero-meta {
    flex-wrap: wrap;
    row-gap: 7px;
  }
}

@media (max-width: 340px) {
  .hero h1 {
    font-size: 38px;
  }

  .hero-kicker {
    font-size: 7px;
    letter-spacing: .12em;
  }

  .mobile-hero-meta {
    font-size: 6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-loader::before,
  .loader-mark i,
  .loader-mark span,
  .loader-progress span,
  .hero::before,
  .hero::after,
  .hero-kicker-dot {
    animation: none !important;
  }
}

/* Hold entrance motion until the loader has handed control back to the page. */
body.loading .hero-intro,
body.loading .hero-side,
body.loading .coming-content {
  animation-play-state: paused !important;
}

/* =========================================================
   CENTERED MOBILE HERO + EXTENDED CINEMATIC LOADER v6
   ========================================================= */

.loader-corners {
  position: absolute;
  inset: 22px;
  pointer-events: none;
  opacity: .72;
}

.loader-corners span {
  position: absolute;
  width: 22px;
  height: 22px;
  border-color: rgba(29,213,255,.34);
  filter: drop-shadow(0 0 7px rgba(29,213,255,.16));
}

.loader-corners span:nth-child(1) { left: 0; top: 0; border-left: 1px solid; border-top: 1px solid; }
.loader-corners span:nth-child(2) { right: 0; top: 0; border-right: 1px solid; border-top: 1px solid; }
.loader-corners span:nth-child(3) { left: 0; bottom: 0; border-left: 1px solid; border-bottom: 1px solid; }
.loader-corners span:nth-child(4) { right: 0; bottom: 0; border-right: 1px solid; border-bottom: 1px solid; }

.loader-inner {
  width: min(330px, calc(100vw - 54px));
}

.loader-eyebrow {
  margin-bottom: 18px;
  color: rgba(206,229,236,.45);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: .28em;
  text-align: center;
  animation: loaderSoftReveal .9s .22s cubic-bezier(.22,1,.36,1) both;
}

.loader-words {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
  color: rgba(235,248,251,.52);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: .18em;
}

.loader-words span {
  animation: loaderWordPulse 1.8s ease-in-out infinite;
}

.loader-words span:nth-of-type(2) { animation-delay: .3s; }
.loader-words span:nth-of-type(3) { animation-delay: .6s; }
.loader-words b { color: rgba(29,213,255,.72); font-size: 8px; }

.loader-progress {
  margin-top: 28px;
}

.loader-progress span {
  animation-duration: 3.25s;
  animation-timing-function: cubic-bezier(.2,.72,.16,1);
}

.loader-status {
  width: 100%;
  margin-top: 13px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.loader-status p {
  margin: 0;
  color: rgba(221,237,243,.48);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: .15em;
  text-align: left;
}

.loader-percent {
  color: var(--cyan);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .08em;
  text-shadow: 0 0 12px rgba(29,213,255,.48);
}

.site-loader.is-complete .loader-mark {
  transform: scale(1.04);
  text-shadow: 0 0 22px rgba(29,213,255,.24);
  transition: transform .42s cubic-bezier(.22,1,.36,1), text-shadow .42s ease;
}

.site-loader.is-complete .loader-progress span {
  transform: scaleX(1) !important;
}

@keyframes loaderSoftReveal {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}

@keyframes loaderWordPulse {
  0%, 100% { opacity: .28; }
  50% { opacity: 1; color: rgba(239,251,255,.92); }
}

.mobile-hero-signature {
  display: none;
}

@media (max-width: 700px) {
  .hero {
    width: calc(100% - 28px);
    margin-inline: auto;
    min-height: 100svh;
    padding-top: clamp(112px, 16svh, 138px);
    padding-bottom: 28px;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
  }

  /* No circles. A quiet centered light spine keeps the hero alive. */
  .hero::before {
    width: min(76vw, 420px);
    height: 1px;
    max-width: none;
    max-height: none;
    left: 50%;
    right: auto;
    top: 36%;
    border-radius: 0;
    background: linear-gradient(90deg, transparent, rgba(29,213,255,.42), transparent);
    filter: none;
    opacity: .6;
    transform: translateX(-50%);
    animation: centerHeroBeam 4.8s ease-in-out infinite;
  }

  .hero::after {
    width: 1px;
    height: 190px;
    left: 50%;
    right: auto;
    top: 16%;
    background: linear-gradient(180deg, transparent, rgba(29,213,255,.26), transparent);
    box-shadow: 0 0 20px rgba(29,213,255,.12);
    opacity: .42;
    transform: translateX(-50%);
    animation: centerHeroSpine 5.4s ease-in-out infinite;
  }

  @keyframes centerHeroBeam {
    0%, 100% { opacity: .22; transform: translateX(-50%) scaleX(.68); }
    50% { opacity: .72; transform: translateX(-50%) scaleX(1); }
  }

  @keyframes centerHeroSpine {
    0%, 100% { opacity: .18; transform: translateX(-50%) scaleY(.72); }
    50% { opacity: .55; transform: translateX(-50%) scaleY(1); }
  }

  .hero-kicker {
    margin: 0 auto 25px;
    justify-content: center;
    color: rgba(215,233,239,.7);
  }

  .hero-main {
    width: 100%;
    align-items: center;
    gap: 30px;
  }

  .hero-intro {
    width: 100%;
    text-align: center;
  }

  .hero-mini {
    margin-bottom: 9px;
    text-align: center;
    letter-spacing: .3em;
  }

  .hero h1 {
    width: 100%;
    margin-inline: auto;
    text-align: center;
    font-size: clamp(44px, 15.6vw, 72px);
    line-height: .86;
  }

  .hero h1 span {
    width: 100%;
    text-align: center;
  }

  .mobile-hero-signature {
    width: min(290px, 84%);
    margin: 20px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: rgba(213,231,237,.38);
    font-size: 6.5px;
    font-weight: 700;
    letter-spacing: .19em;
  }

  .mobile-hero-signature span {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(29,213,255,.4));
  }

  .mobile-hero-signature span:last-child {
    background: linear-gradient(90deg, rgba(29,213,255,.4), transparent);
  }

  .mobile-hero-signature b {
    font: inherit;
    white-space: nowrap;
  }

  .hero-side {
    width: min(100%, 390px);
    margin-inline: auto;
    padding: 23px 0 0;
    border-top: 1px solid rgba(255,255,255,.08);
    text-align: center;
  }

  .hero-side::before {
    width: 58px;
    margin: -24px auto 20px;
  }

  .hero-side > p {
    max-width: 320px;
    margin-inline: auto;
    text-align: center;
    font-size: clamp(17px, 5vw, 20px);
  }

  .hero-actions {
    width: min(100%, 360px);
    margin: 25px auto 0;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-actions .primary-btn,
  .hero-actions .text-btn {
    width: 100%;
    min-width: 0;
    height: 50px;
    min-height: 50px;
    padding-inline: 17px;
    justify-content: center;
  }

  .hero-actions .primary-btn {
    gap: 12px;
  }

  .hero-actions .text-btn {
    border: 1px solid rgba(29,213,255,.18);
    background: rgba(29,213,255,.025);
    color: rgba(224,243,248,.76);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .12em;
  }

  .hero-actions .text-btn .icon {
    width: 15px;
    height: 15px;
  }

  .mobile-hero-meta {
    width: 100%;
    margin-top: auto;
    justify-content: center;
    padding-top: 28px;
    text-align: center;
  }
}

@media (max-width: 520px) {
  .hero {
    width: calc(100% - 24px);
    padding-top: clamp(104px, 15svh, 124px);
  }

  .hero-main { gap: 26px; }
  .hero-kicker { margin-bottom: 22px; }
  .hero-side { width: min(100%, 350px); }
  .hero-actions { width: min(100%, 330px); }
}

@media (max-width: 390px) {
  .hero {
    width: calc(100% - 20px);
    padding-top: 96px;
    padding-bottom: 22px;
  }

  .hero h1 {
    font-size: clamp(39px, 15.7vw, 60px);
  }

  .mobile-hero-signature {
    margin-top: 17px;
    font-size: 6px;
    gap: 8px;
  }

  .hero-side {
    padding-top: 20px;
  }

  .hero-actions .primary-btn,
  .hero-actions .text-btn {
    height: 48px;
    min-height: 48px;
  }
}

@media (max-width: 340px) {
  .hero h1 { font-size: 38px; }
  .hero-actions { width: 100%; }
  .mobile-hero-signature { width: 94%; }
}

@media (prefers-reduced-motion: reduce) {
  .loader-words span,
  .hero::before,
  .hero::after {
    animation: none !important;
  }
}


/* ============================================================
   MOBILE HERO TRUE VERTICAL CENTER FIX
   Keeps the complete home composition in the visual center of
   the phone screen instead of clustering it near the top.
   ============================================================ */
@media (max-width: 700px) {
  .hero {
    min-height: 100svh;
    height: auto;
    padding-top: max(82px, env(safe-area-inset-top));
    padding-bottom: max(24px, env(safe-area-inset-bottom));
    justify-content: center !important;
    align-items: center;
  }

  .hero-kicker {
    margin-top: 0;
  }

  .hero-main {
    flex: 0 0 auto;
    justify-content: center;
  }

  .mobile-hero-meta {
    margin-top: 24px !important;
    padding-top: 0 !important;
  }
}

@media (max-width: 520px) {
  .hero {
    padding-top: max(78px, env(safe-area-inset-top));
    padding-bottom: max(20px, env(safe-area-inset-bottom));
  }
}

@media (max-width: 390px) {
  .hero {
    padding-top: max(74px, env(safe-area-inset-top));
    padding-bottom: max(18px, env(safe-area-inset-bottom));
  }
}

/* =========================================================
   MODERN EXECUTIVE BOARD SLIDER v6
   Horizontal cinematic board carousel with desktop peeks,
   mobile swipe, active-card focus and minimal neon chrome.
   ========================================================= */

.board {
  overflow: hidden;
}

.board .section-title {
  margin-bottom: clamp(34px, 5vw, 72px);
}

.mobile-board-heading,
.board-grid {
  display: none !important;
}

.board-slider {
  position: relative;
  width: 100%;
  padding: 0;
}

.board-slider-topbar,
.board-slider-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.board-slider-topbar {
  padding: 0 0 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid rgba(29, 213, 255, .16);
}

.board-slider-label {
  color: rgba(255,255,255,.46);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .16em;
}

.board-slider-controls {
  display: flex;
  gap: 8px;
}

.board-slider-btn {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(29,213,255,.24);
  border-radius: 50%;
  background: rgba(29,213,255,.025);
  color: var(--cyan);
  cursor: pointer;
  transition: transform .28s ease, background .28s ease, border-color .28s ease, box-shadow .28s ease, opacity .28s ease;
}

.board-slider-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  background: rgba(29,213,255,.09);
  border-color: rgba(29,213,255,.55);
  box-shadow: 0 0 24px rgba(29,213,255,.12);
}

.board-slider-btn:disabled {
  opacity: .28;
  cursor: default;
}

.board-slider-btn svg {
  width: 17px;
  height: 17px;
}

.board-slider-viewport {
  position: relative;
  overflow: hidden;
  outline: none;
  touch-action: pan-y;
  cursor: grab;
  mask-image: linear-gradient(90deg, transparent 0, #000 3.5%, #000 96.5%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 3.5%, #000 96.5%, transparent 100%);
}

.board-slider-viewport:active {
  cursor: grabbing;
}

.board-slider-track {
  display: flex;
  gap: clamp(14px, 1.6vw, 24px);
  padding: 4px clamp(18px, 4vw, 64px) 20px;
  will-change: transform;
  transition: transform .78s cubic-bezier(.22,1,.36,1);
}

.board-slide.board-card,
.board-slide.board-card.featured,
.board-slide.board-card:not(.featured) {
  position: relative;
  flex: 0 0 clamp(290px, 31vw, 430px);
  width: auto;
  min-width: 0;
  max-width: none;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(29,213,255,.16);
  border-radius: 22px;
  background: rgba(4,7,9,.82);
  transform: scale(.93);
  opacity: .52;
  filter: saturate(.68) brightness(.72);
  transition: transform .72s cubic-bezier(.22,1,.36,1), opacity .55s ease, filter .55s ease, border-color .45s ease, box-shadow .45s ease;
  scroll-snap-align: center;
}

.board-slide.board-card::after,
.board-slide .board-photo-tag,
.board-slide .board-signature,
.board-slide .board-mini-arrow {
  display: none !important;
}

.board-slide.board-card.is-active {
  transform: scale(1);
  opacity: 1;
  filter: saturate(1) brightness(1);
  border-color: rgba(29,213,255,.54);
  box-shadow: 0 24px 80px rgba(0,0,0,.38), 0 0 38px rgba(29,213,255,.1), inset 0 0 0 1px rgba(29,213,255,.05);
}

.board-slide .portrait-placeholder,
.board-slide.board-card.featured .portrait-placeholder,
.board-slide.board-card:not(.featured) .portrait-placeholder {
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 3 / 4;
  border: 0 !important;
  background: #070a0c;
  box-shadow: none !important;
}

.board-slide .portrait-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  border: 1px solid rgba(29,213,255,.14);
  border-radius: 20px 20px 0 0;
}

.board-slide .portrait-placeholder::after,
.board-slide.board-card.featured .portrait-placeholder::after,
.board-slide.board-card:not(.featured) .portrait-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 48%, rgba(3,5,7,.08) 66%, rgba(3,5,7,.96) 100%),
    linear-gradient(120deg, rgba(29,213,255,.08), transparent 36%);
}

.board-slide .portrait-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.035);
  transition: transform 1.1s cubic-bezier(.22,1,.36,1), filter .55s ease;
}

.board-slide.is-active .portrait-placeholder img {
  transform: scale(1);
}

.board-slide .board-info,
.board-slide.board-card.featured .board-info,
.board-slide.board-card:not(.featured) .board-info {
  position: absolute;
  z-index: 5;
  left: 0;
  right: 0;
  bottom: 0;
  min-height: 0;
  padding: 72px 22px 22px;
  display: block;
  border: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(3,5,7,.72) 42%, rgba(3,5,7,.98) 100%);
}

.board-slide .board-info small,
.board-slide.board-card.featured .board-info small {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 9px;
  border: 1px solid rgba(29,213,255,.32);
  border-radius: 999px;
  background: rgba(2,9,12,.64);
  color: var(--cyan);
  font-size: 8px;
  letter-spacing: .15em;
  backdrop-filter: blur(10px);
}

.board-slide .board-info small::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px rgba(29,213,255,.85);
}

.board-slide .board-info h3,
.board-slide.board-card.featured .board-info h3,
.board-slide.board-card:not(.featured) .board-info h3 {
  max-width: 15ch;
  margin: 12px 0 0;
  font-family: 'Space Grotesk';
  font-size: clamp(22px, 2.1vw, 32px);
  line-height: .98;
  letter-spacing: -.045em;
  color: #fff;
}

.board-slider-footer {
  margin-top: 15px;
}

.board-slider-dots {
  display: flex;
  align-items: center;
  gap: 7px;
}

.board-slider-dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.2);
  cursor: pointer;
  transition: width .35s ease, background .35s ease, box-shadow .35s ease;
}

.board-slider-dot.is-active {
  width: 30px;
  background: var(--cyan);
  box-shadow: 0 0 14px rgba(29,213,255,.5);
}

.board-slider-counter {
  display: flex;
  align-items: baseline;
  gap: 5px;
  font-family: 'Space Grotesk';
}

.board-slider-counter strong {
  color: var(--cyan);
  font-size: 24px;
  line-height: 1;
}

.board-slider-counter span {
  color: rgba(255,255,255,.34);
  font-size: 11px;
}

.board-auto-progress {
  width: 100%;
  height: 1px;
  margin-top: 14px;
  overflow: hidden;
  background: rgba(255,255,255,.08);
}

.board-auto-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, transparent, var(--cyan));
  box-shadow: 0 0 12px rgba(29,213,255,.65);
}

.board-slider.is-running .board-auto-progress span {
  animation: boardAutoProgress 5.6s linear forwards;
}

@keyframes boardAutoProgress {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@media (max-width: 700px) {
  .board {
    padding-top: 72px;
  }

  .board::before {
    display: none !important;
  }

  .board .section-title {
    margin-bottom: 28px;
    text-align: center;
  }

  .board .section-title .eyebrow {
    justify-content: center;
  }

  .board .section-title p {
    margin-inline: auto;
  }

  .board-slider-topbar {
    margin-bottom: 11px;
    padding-bottom: 11px;
  }

  .board-slider-label {
    font-size: 7px;
  }

  .board-slider-btn {
    width: 39px;
    height: 39px;
  }

  .board-slider-viewport {
    margin-inline: -14px;
    mask-image: none;
    -webkit-mask-image: none;
  }

  .board-slider-track {
    gap: 12px;
    padding: 4px 14px 18px;
  }

  .board-slide.board-card,
  .board-slide.board-card.featured,
  .board-slide.board-card:not(.featured) {
    flex-basis: calc(100vw - 58px);
    max-width: 390px;
    border-radius: 20px;
    transform: scale(.965);
    opacity: .48;
  }

  .board-slide.board-card.is-active {
    transform: scale(1);
    opacity: 1;
  }

  .board-slide .portrait-placeholder,
  .board-slide.board-card.featured .portrait-placeholder,
  .board-slide.board-card:not(.featured) .portrait-placeholder {
    aspect-ratio: 3 / 4;
  }

  .board-slide .board-info,
  .board-slide.board-card.featured .board-info,
  .board-slide.board-card:not(.featured) .board-info {
    padding: 82px 18px 19px;
  }

  .board-slide .board-info h3,
  .board-slide.board-card.featured .board-info h3,
  .board-slide.board-card:not(.featured) .board-info h3 {
    font-size: clamp(24px, 7.7vw, 34px);
    max-width: 13ch;
  }

  .board-slider-footer {
    margin-top: 8px;
  }

  .board-slider-counter strong {
    font-size: 21px;
  }
}

@media (max-width: 390px) {
  .board-slide.board-card,
  .board-slide.board-card.featured,
  .board-slide.board-card:not(.featured) {
    flex-basis: calc(100vw - 44px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .board-slider-track,
  .board-slide.board-card,
  .board-slide .portrait-placeholder img,
  .board-slider-dot {
    transition: none !important;
  }
  .board-slider.is-running .board-auto-progress span {
    animation: none !important;
    transform: scaleX(1);
  }
}

/* ============================================================
   WHAT IS LEO PAGE + HOME PHOTO BACKDROP
   ============================================================ */

.nav-page-link {
  border: 0;
  background: transparent;
  padding: 10px 12px;
  color: #cad2d6;
  font-size: 12px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color .25s ease;
}

.nav-page-link:hover { color: var(--cyan); }

.mobile-page-link > span:first-child {
  color: var(--cyan);
  font-size: 12px;
}

.what-is-leo-link {
  margin-top: 20px;
  color: var(--cyan);
}

.hero-photo-backdrop {
  position: absolute;
  inset: 90px -6vw 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5,5,5,.98) 0%, rgba(5,5,5,.78) 32%, rgba(5,5,5,.38) 64%, rgba(5,5,5,.92) 100%),
    linear-gradient(180deg, rgba(5,5,5,.34), rgba(5,5,5,.95) 88%),
    url('assets/images/leo/home-faded-background-demo.webp') center 28% / cover no-repeat;
  opacity: .48;
  filter: saturate(.7) contrast(1.08);
  mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,.88) 14%, #000 56%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,.88) 14%, #000 56%, transparent 100%);
}

.hero > *:not(.hero-photo-backdrop) {
  position: relative;
  z-index: 2;
}

.leo-info-page main,
.leo-info-page footer,
.leo-info-page .nav-shell {
  position: relative;
  z-index: 3;
}

.leo-info-body {
  background: #030405;
}

.leo-page-hero {
  min-height: 100vh;
  padding-top: 150px;
  display: flex;
  align-items: center;
  position: relative;
  isolation: isolate;
}

.leo-page-hero::before {
  content: '';
  position: absolute;
  inset: 0 -8vw;
  background:
    linear-gradient(90deg, rgba(3,4,5,.99) 0%, rgba(3,4,5,.84) 42%, rgba(3,4,5,.48) 70%, rgba(3,4,5,.96) 100%),
    linear-gradient(180deg, rgba(3,4,5,.3), rgba(3,4,5,.95) 92%),
    url('assets/images/leo/leo-service-demo.webp') center / cover no-repeat;
  opacity: .32;
  filter: saturate(.65) contrast(1.12);
  mask-image: linear-gradient(to bottom, transparent, #000 12%, #000 86%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 12%, #000 86%, transparent);
  z-index: -2;
}

.leo-page-hero::after {
  content: '';
  position: absolute;
  width: 56vw;
  height: 56vw;
  right: -20vw;
  top: 10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(29,213,255,.12), transparent 64%);
  filter: blur(30px);
  z-index: -1;
  pointer-events: none;
}

.leo-page-hero-grid {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .62fr);
  align-items: center;
  gap: clamp(54px, 8vw, 130px);
}

.leo-page-hero-copy {
  max-width: 880px;
}

.leo-page-hero-copy .eyebrow {
  margin-bottom: 26px;
}

.leo-hero-mini {
  margin: 0 0 10px;
  color: rgba(224,240,245,.5);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .28em;
}

.leo-page-hero h1 {
  margin: 0;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(86px, 11.3vw, 176px);
  font-weight: 700;
  line-height: .78;
  letter-spacing: -.075em;
}

.leo-hero-lead {
  max-width: 700px;
  margin: 34px 0 0;
  color: #aab8bf;
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.72;
}

.leo-hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 34px;
}

.leo-hero-emblem {
  min-height: 520px;
  display: grid;
  place-items: center;
  position: relative;
}

.leo-emblem-card {
  width: min(340px, 80%);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  padding: 48px;
  border: 1px solid rgba(29,213,255,.28);
  border-radius: 50%;
  background:
    radial-gradient(circle at 38% 30%, rgba(29,213,255,.16), transparent 42%),
    rgba(5,10,12,.72);
  backdrop-filter: blur(18px);
  box-shadow:
    0 0 0 18px rgba(29,213,255,.018),
    0 0 90px rgba(29,213,255,.12),
    inset 0 0 70px rgba(29,213,255,.06);
  position: relative;
  z-index: 2;
}

.leo-emblem-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 24px rgba(29,213,255,.18));
}

.leo-emblem-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(29,213,255,.16);
  pointer-events: none;
}

.orbit-one {
  width: 410px;
  height: 410px;
  animation: leoOrbit 18s linear infinite;
}

.orbit-one::before {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  top: 46px;
  left: 54px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 18px var(--cyan);
}

.orbit-two {
  width: 490px;
  height: 490px;
  border-style: dashed;
  opacity: .42;
  animation: leoOrbit 28s linear infinite reverse;
}

@keyframes leoOrbit { to { transform: rotate(360deg); } }

.leo-emblem-caption {
  position: absolute;
  right: 0;
  bottom: 28px;
  min-width: 210px;
  padding: 14px 16px;
  border-left: 1px solid var(--cyan);
  background: rgba(2,6,8,.68);
  backdrop-filter: blur(12px);
}

.leo-emblem-caption span,
.leo-emblem-caption strong {
  display: block;
}

.leo-emblem-caption span {
  color: #6f8088;
  font-size: 8px;
  letter-spacing: .18em;
}

.leo-emblem-caption strong {
  margin-top: 5px;
  font-family: 'Space Grotesk';
  font-size: 14px;
  letter-spacing: .08em;
}

.leo-about-section {
  padding-top: 100px;
}

.leo-acronym-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 110px;
}

.leo-letter-card {
  min-height: 420px;
  padding: 34px;
  border: 1px solid rgba(255,255,255,.09);
  background:
    linear-gradient(145deg, rgba(29,213,255,.055), transparent 38%),
    rgba(255,255,255,.018);
  position: relative;
  overflow: hidden;
  transition: transform .4s ease, border-color .4s ease, background .4s ease;
}

.leo-letter-card::after {
  content: '';
  position: absolute;
  width: 170px;
  height: 170px;
  right: -85px;
  bottom: -85px;
  border: 1px solid rgba(29,213,255,.18);
  transform: rotate(45deg);
  transition: transform .5s ease;
}

.leo-letter-card:hover {
  transform: translateY(-8px);
  border-color: rgba(29,213,255,.42);
  background:
    linear-gradient(145deg, rgba(29,213,255,.11), transparent 42%),
    rgba(255,255,255,.025);
}

.leo-letter-card:hover::after {
  transform: rotate(62deg) scale(1.15);
}

.leo-letter {
  font-family: 'Space Grotesk';
  font-size: 132px;
  font-weight: 700;
  line-height: .8;
  letter-spacing: -.08em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(29,213,255,.48);
  text-shadow: 0 0 40px rgba(29,213,255,.06);
}

.leo-letter-card small {
  display: block;
  margin: 38px 0 16px;
  color: var(--cyan);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .18em;
}

.leo-letter-card h3 {
  margin: 0 0 18px;
  font-family: 'Space Grotesk';
  font-size: clamp(28px, 2.5vw, 42px);
  line-height: 1.02;
  letter-spacing: -.045em;
}

.leo-letter-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
  font-size: 14px;
}

.leo-photo-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, .8fr);
  gap: clamp(42px, 6vw, 88px);
  align-items: center;
  margin-bottom: 92px;
}

.leo-photo-panel {
  min-height: 610px;
  position: relative;
  border: 1px solid rgba(29,213,255,.24);
  overflow: hidden;
  box-shadow: 0 0 60px rgba(29,213,255,.06);
}

.leo-photo-panel::before,
.leo-history-visual::before,
.club-history-photo.main-photo::before,
.leo-banner-image::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 48%, rgba(2,5,7,.88) 100%),
    linear-gradient(135deg, rgba(29,213,255,.11), transparent 34%);
}

.leo-photo-panel img,
.leo-history-visual img,
.club-history-photo img,
.leo-banner-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.leo-photo-caption {
  position: absolute;
  z-index: 3;
  left: 24px;
  right: 24px;
  bottom: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.leo-photo-caption span {
  color: var(--cyan);
  font-family: 'Space Grotesk';
  font-size: 44px;
  font-weight: 700;
}

.leo-photo-caption p {
  margin: 0;
  color: #e8f4f8;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.leo-photo-copy h3 {
  margin: 18px 0 20px;
  font-family: 'Space Grotesk';
  font-size: clamp(42px, 5vw, 76px);
  line-height: .95;
  letter-spacing: -.055em;
}

.leo-photo-copy > p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 28px;
}

.leo-global-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.leo-stat {
  padding: 38px 26px;
  border-right: 1px solid var(--line);
}

.leo-stat:last-child { border-right: 0; }

.leo-stat strong,
.leo-stat span {
  display: block;
}

.leo-stat strong {
  font-family: 'Space Grotesk';
  font-size: clamp(38px, 4.6vw, 68px);
  line-height: 1;
  letter-spacing: -.06em;
}

.leo-stat span {
  margin-top: 9px;
  color: var(--muted);
  font-size: 11px;
}

.leo-source-note {
  margin: 16px 0 0;
  color: #56666e;
  font-size: 10px;
  letter-spacing: .04em;
}

.leo-history-section {
  position: relative;
}

.leo-history-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .55fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 76px;
}

.leo-history-heading h2 {
  margin: 18px 0 0;
  font-family: 'Space Grotesk';
  font-size: clamp(52px, 7vw, 104px);
  line-height: .9;
  letter-spacing: -.065em;
}

.leo-history-heading > p {
  margin: 0;
  color: var(--muted);
  line-height: 1.9;
}

.leo-history-layout {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(380px, .75fr);
  gap: clamp(52px, 7vw, 110px);
  align-items: start;
}

.leo-history-visual {
  min-height: 720px;
  position: sticky;
  top: 120px;
  border: 1px solid rgba(29,213,255,.22);
  overflow: hidden;
}

.history-year-watermark {
  position: absolute;
  left: 26px;
  bottom: 18px;
  z-index: 3;
  color: transparent;
  -webkit-text-stroke: 1px rgba(29,213,255,.6);
  font-family: 'Space Grotesk';
  font-size: clamp(92px, 12vw, 180px);
  font-weight: 700;
  line-height: .8;
  letter-spacing: -.08em;
}

.leo-history-timeline {
  position: relative;
  padding-left: 42px;
}

.leo-history-timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 12px;
  bottom: 26px;
  width: 1px;
  background: linear-gradient(var(--cyan), rgba(29,213,255,.06));
}

.leo-history-point {
  min-height: 230px;
  padding: 0 0 52px 20px;
  position: relative;
}

.history-dot {
  position: absolute;
  left: -39px;
  top: 8px;
  width: 12px;
  height: 12px;
  border: 2px solid var(--cyan);
  border-radius: 50%;
  background: #050505;
  box-shadow: 0 0 20px rgba(29,213,255,.55);
}

.leo-history-point > span {
  color: var(--cyan);
  font-family: 'Space Grotesk';
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
}

.leo-history-point h3 {
  margin: 14px 0 15px;
  font-family: 'Space Grotesk';
  font-size: clamp(30px, 3vw, 48px);
  line-height: 1;
  letter-spacing: -.045em;
}

.leo-history-point p {
  margin: 0;
  color: var(--muted);
  line-height: 1.85;
}

.club-history-section {
  position: relative;
}

.club-history-section::before {
  content: '';
  position: absolute;
  inset: 12% -10vw auto;
  height: 60%;
  background: radial-gradient(circle at 50% 40%, rgba(29,213,255,.07), transparent 60%);
  pointer-events: none;
}

.club-history-head {
  max-width: 1100px;
  margin-bottom: 86px;
}

.club-history-head h2 {
  margin: 18px 0 26px;
  font-family: 'Space Grotesk';
  font-size: clamp(72px, 10vw, 150px);
  line-height: .75;
  letter-spacing: -.075em;
}

.club-history-head > p {
  max-width: 700px;
  margin: 0;
  color: var(--muted);
  line-height: 1.9;
}

.club-history-stage {
  display: grid;
  grid-template-columns: minmax(360px, .82fr) minmax(0, 1.18fr);
  gap: clamp(54px, 7vw, 110px);
  align-items: start;
}

.club-history-photo-stack {
  min-height: 760px;
  position: sticky;
  top: 120px;
}

.club-history-photo {
  margin: 0;
  position: absolute;
  overflow: hidden;
}

.club-history-photo.main-photo {
  inset: 0 56px 80px 0;
  border: 1px solid rgba(29,213,255,.24);
  box-shadow: 0 30px 90px rgba(0,0,0,.38);
}

.club-history-photo.main-photo figcaption {
  position: absolute;
  z-index: 4;
  left: 22px;
  bottom: 20px;
  color: rgba(239,249,252,.68);
  font-size: 9px;
  letter-spacing: .18em;
}

.club-history-photo.logo-photo {
  right: 0;
  bottom: 0;
  width: 190px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  padding: 24px;
  border: 1px solid rgba(29,213,255,.32);
  background: rgba(4,8,10,.92);
  box-shadow: 0 0 50px rgba(29,213,255,.12);
}

.club-history-photo.logo-photo img {
  object-fit: contain;
}

.club-history-track {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}

.club-milestone {
  min-height: 245px;
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 26px;
  padding: 36px 0 42px;
  border-bottom: 1px solid var(--line);
  transition: border-color .3s ease, background .3s ease;
}

.club-milestone:hover {
  border-color: rgba(29,213,255,.26);
  background: linear-gradient(90deg, rgba(29,213,255,.035), transparent 60%);
}

.milestone-index {
  color: transparent;
  -webkit-text-stroke: 1px rgba(29,213,255,.5);
  font-family: 'Space Grotesk';
  font-size: 58px;
  font-weight: 700;
  line-height: .8;
}

.club-milestone small {
  color: var(--cyan);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .18em;
}

.club-milestone h3 {
  margin: 12px 0 14px;
  font-family: 'Space Grotesk';
  font-size: clamp(30px, 3vw, 48px);
  line-height: 1;
  letter-spacing: -.045em;
}

.club-milestone p {
  max-width: 690px;
  margin: 0;
  color: var(--muted);
  line-height: 1.85;
}

.archive-note {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #59676e;
  font-size: 10px;
}

.archive-note span {
  width: 30px;
  height: 1px;
  background: rgba(29,213,255,.42);
}

.archive-note p { margin: 0; }

.leo-leadership-banner {
  padding-bottom: 110px;
}

.leo-banner-image {
  min-height: 700px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(29,213,255,.22);
}

.leo-banner-image > img {
  position: absolute;
  inset: 0;
}

.leo-banner-image::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(90deg, rgba(2,5,7,.95) 0%, rgba(2,5,7,.64) 46%, rgba(2,5,7,.18) 100%);
}

.leo-banner-overlay {
  position: absolute;
  z-index: 4;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(36px, 6vw, 90px);
}

.leo-banner-overlay h2 {
  max-width: 1000px;
  margin: 24px 0 36px;
  font-family: 'Space Grotesk';
  font-size: clamp(54px, 8vw, 118px);
  line-height: .82;
  letter-spacing: -.07em;
}

@media (max-width: 1100px) {
  .desktop-nav { gap: 2px; }
  .desktop-nav button,
  .nav-page-link,
  .nav-article-link { padding-left: 8px; padding-right: 8px; font-size: 11px; }

  .leo-page-hero-grid {
    grid-template-columns: minmax(0, 1fr) 350px;
    gap: 38px;
  }

  .leo-emblem-card { width: 280px; padding: 38px; }
  .orbit-one { width: 345px; height: 345px; }
  .orbit-two { width: 410px; height: 410px; }

  .leo-acronym-grid { grid-template-columns: 1fr; }
  .leo-letter-card { min-height: 0; }
  .leo-letter { font-size: 98px; }

  .leo-global-stats { grid-template-columns: repeat(2, 1fr); }
  .leo-stat:nth-child(2) { border-right: 0; }
  .leo-stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }

  .leo-history-layout,
  .club-history-stage { grid-template-columns: 1fr; }
  .leo-history-visual,
  .club-history-photo-stack { position: relative; top: auto; }
  .leo-history-visual { min-height: 620px; }
  .club-history-photo-stack { min-height: 680px; }
}

@media (max-width: 900px) {
  .leo-page-hero-grid { grid-template-columns: 1fr; }
  .leo-hero-emblem { min-height: 420px; }
  .leo-emblem-caption { right: 8%; }
  .leo-photo-story-grid { grid-template-columns: 1fr; }
  .leo-history-heading { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 700px) {
  .hero-photo-backdrop {
    inset: 70px -14px 0;
    background:
      linear-gradient(180deg, rgba(5,5,5,.9) 0%, rgba(5,5,5,.46) 42%, rgba(5,5,5,.96) 92%),
      url('assets/images/leo/home-faded-background-demo.webp') 58% center / cover no-repeat;
    opacity: .34;
  }

  .leo-info-page .section-pad {
    width: calc(100% - 28px);
    padding: 78px 0;
  }

  .leo-page-hero {
    width: calc(100% - 28px);
    min-height: 100svh;
    padding-top: max(94px, env(safe-area-inset-top));
    padding-bottom: max(30px, env(safe-area-inset-bottom));
    text-align: center;
  }

  .leo-page-hero::before {
    inset: 56px -14px 0;
    opacity: .24;
    background:
      linear-gradient(180deg, rgba(3,4,5,.92) 0%, rgba(3,4,5,.48) 44%, rgba(3,4,5,.98) 96%),
      url('assets/images/leo/leo-service-demo.webp') 52% center / cover no-repeat;
  }

  .leo-page-hero-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 42px;
  }

  .leo-page-hero-copy {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .leo-page-hero-copy .eyebrow { justify-content: center; }

  .leo-page-hero h1 {
    font-size: clamp(68px, 23vw, 112px);
    line-height: .77;
  }

  .leo-hero-lead {
    max-width: 370px;
    font-size: 15px;
    line-height: 1.78;
  }

  .leo-hero-actions {
    width: min(100%, 360px);
    flex-direction: column;
    gap: 10px;
  }

  .leo-hero-actions .primary-btn,
  .leo-hero-actions .text-btn {
    width: 100%;
    min-height: 50px;
    justify-content: center;
    border: 1px solid rgba(29,213,255,.18);
  }

  .leo-hero-emblem {
    min-height: 330px;
    width: 100%;
  }

  .leo-emblem-card { width: 220px; padding: 30px; }
  .orbit-one { width: 268px; height: 268px; }
  .orbit-two { width: 314px; height: 314px; }
  .leo-emblem-caption {
    right: 50%;
    bottom: 2px;
    transform: translateX(50%);
    min-width: 200px;
    text-align: center;
    border-left: 0;
    border-top: 1px solid rgba(29,213,255,.36);
  }

  .leo-about-section { padding-top: 66px !important; }
  .leo-about-section .section-title,
  .leo-history-heading,
  .club-history-head { text-align: center; }
  .leo-about-section .section-title .eyebrow,
  .leo-history-heading .eyebrow,
  .club-history-head .eyebrow { justify-content: center; }
  .leo-about-section .section-title p,
  .club-history-head > p { margin-inline: auto; }

  .leo-acronym-grid {
    gap: 10px;
    margin-bottom: 68px;
  }

  .leo-letter-card {
    min-height: 0;
    padding: 26px 22px 28px;
    text-align: left;
  }

  .leo-letter {
    font-size: 84px;
  }

  .leo-letter-card small { margin-top: 28px; }
  .leo-letter-card h3 { font-size: 30px; }

  .leo-photo-story-grid {
    gap: 34px;
    margin-bottom: 58px;
  }

  .leo-photo-panel {
    min-height: 0;
    aspect-ratio: 4 / 5;
    border-radius: 18px;
  }

  .leo-photo-copy { text-align: center; }
  .leo-photo-copy .eyebrow { justify-content: center; }
  .leo-photo-copy h3 { font-size: clamp(42px, 13vw, 62px); }

  .leo-global-stats {
    grid-template-columns: 1fr 1fr;
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
  }

  .leo-stat {
    padding: 24px 16px;
    text-align: center;
  }

  .leo-stat strong { font-size: clamp(34px, 11vw, 54px); }
  .leo-stat span { font-size: 9px; }
  .leo-source-note { text-align: center; }

  .leo-history-heading h2 {
    font-size: clamp(48px, 14vw, 72px);
  }

  .leo-history-layout { gap: 38px; }
  .leo-history-visual {
    min-height: 0;
    aspect-ratio: 4 / 5;
    border-radius: 18px;
  }

  .history-year-watermark { left: 18px; bottom: 16px; font-size: 26vw; }
  .leo-history-timeline { padding-left: 32px; }
  .leo-history-timeline::before { left: 5px; }
  .history-dot { left: -32px; }
  .leo-history-point { min-height: 0; padding: 0 0 46px 14px; text-align: left; }
  .leo-history-point h3 { font-size: 32px; }

  .club-history-head h2 {
    font-size: clamp(62px, 18vw, 92px);
    line-height: .76;
  }

  .club-history-stage { gap: 42px; }
  .club-history-photo-stack { min-height: 520px; }
  .club-history-photo.main-photo { inset: 0 30px 50px 0; border-radius: 18px; }
  .club-history-photo.logo-photo { width: 126px; padding: 16px; border-radius: 16px; }

  .club-milestone {
    min-height: 0;
    grid-template-columns: 52px 1fr;
    gap: 16px;
    padding: 28px 0 32px;
    text-align: left;
  }

  .milestone-index { font-size: 38px; }
  .club-milestone h3 { font-size: 31px; }
  .club-milestone p { font-size: 13px; }
  .archive-note { align-items: flex-start; }

  .leo-banner-image {
    min-height: 620px;
    border-radius: 18px;
  }

  .leo-banner-image::after {
    background: linear-gradient(180deg, rgba(2,5,7,.2), rgba(2,5,7,.94) 76%);
  }

  .leo-banner-overlay {
    justify-content: flex-end;
    align-items: center;
    padding: 28px 22px;
    text-align: center;
  }

  .leo-banner-overlay .eyebrow { justify-content: center; }
  .leo-banner-overlay h2 {
    font-size: clamp(48px, 14vw, 72px);
    margin: 18px 0 28px;
  }

  .leo-banner-overlay .primary-btn { width: 100%; justify-content: center; }
}

@media (max-width: 390px) {
  .leo-info-page .section-pad,
  .leo-page-hero { width: calc(100% - 20px); }
  .leo-page-hero h1 { font-size: 64px; }
  .leo-hero-mini { font-size: 9px; letter-spacing: .2em; }
  .leo-emblem-card { width: 192px; }
  .orbit-one { width: 232px; height: 232px; }
  .orbit-two { width: 270px; height: 270px; }
  .leo-letter-card { padding: 22px 18px 24px; }
  .leo-letter { font-size: 74px; }
  .leo-photo-caption { left: 16px; right: 16px; bottom: 16px; }
  .leo-photo-caption p { font-size: 8px; }
  .club-history-photo-stack { min-height: 440px; }
  .club-history-photo.logo-photo { width: 108px; }
}

@media (prefers-reduced-motion: reduce) {
  .leo-emblem-orbit { animation: none !important; }
}

/* =========================================================
   REDEVELOPED HOME HERO
   Full-bleed photo, perfectly centered content on every screen
   ========================================================= */
.hero.hero-redeveloped {
  min-height: 100svh;
  width: 100%;
  max-width: none;
  padding: clamp(120px, 14vh, 170px) clamp(24px, 6vw, 96px) clamp(72px, 9vh, 110px);
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  text-align: center;
}

.hero.hero-redeveloped .hero-photo-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 1;
  filter: saturate(.88) contrast(1.05) brightness(.78);
  mask-image: none;
  -webkit-mask-image: none;
  background:
    linear-gradient(180deg, rgba(2,5,7,.56) 0%, rgba(2,5,7,.28) 34%, rgba(2,5,7,.4) 62%, rgba(2,5,7,.92) 100%),
    linear-gradient(90deg, rgba(2,5,7,.45), rgba(2,5,7,.14) 48%, rgba(2,5,7,.46)),
    url('assets/images/leo/home-faded-background-demo.webp') center center / cover no-repeat;
  transform: scale(1.015);
}

.hero.hero-redeveloped::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 46%, rgba(29,213,255,.12), transparent 31%),
    linear-gradient(180deg, rgba(0,0,0,.08), transparent 50%, rgba(0,0,0,.34));
}

.hero.hero-redeveloped::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 1;
  width: min(760px, 76vw);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(29,213,255,.75), transparent);
  box-shadow: 0 0 20px rgba(29,213,255,.45);
  pointer-events: none;
}

.hero-center {
  position: relative;
  z-index: 3;
  width: min(1180px, 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero.hero-redeveloped .hero-kicker {
  margin: 0 0 clamp(18px, 2.5vh, 30px);
  padding: 8px 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: auto;
  color: #d9f9ff;
  border: 1px solid rgba(29,213,255,.34);
  border-radius: 999px;
  background: rgba(3,9,12,.42);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 0 26px rgba(29,213,255,.08);
  letter-spacing: .2em;
}

.hero.hero-redeveloped .hero-intro {
  width: 100%;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  transform: translateY(34px);
  animation: heroCenteredRise 1.15s .2s cubic-bezier(.22,1,.36,1) forwards;
}

.hero.hero-redeveloped .hero-intro::before,
.hero.hero-redeveloped .hero-intro::after {
  display: none;
}

.hero.hero-redeveloped .hero-mini {
  margin: 0 0 clamp(8px, 1.1vh, 14px);
  color: rgba(255,255,255,.78);
  font-size: clamp(11px, 1.05vw, 16px);
  font-weight: 700;
  letter-spacing: .46em;
  text-indent: .46em;
}

.hero.hero-redeveloped h1 {
  margin: 0;
  max-width: 100%;
  font-size: clamp(62px, 9.8vw, 158px);
  line-height: .78;
  letter-spacing: -.075em;
  text-align: center;
  filter: drop-shadow(0 18px 55px rgba(0,0,0,.42));
}

.hero.hero-redeveloped h1 span {
  display: block;
}

.hero.hero-redeveloped h1 .outline-text {
  color: rgba(255,255,255,.02);
  -webkit-text-stroke: 1.5px rgba(218,250,255,.82);
  text-shadow: 0 0 30px rgba(29,213,255,.1);
}

.hero-tagline {
  margin: clamp(22px, 3vh, 34px) 0 0;
  color: rgba(255,255,255,.9);
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(16px, 1.55vw, 22px);
  font-weight: 500;
  letter-spacing: -.02em;
  line-height: 1.45;
  text-shadow: 0 8px 26px rgba(0,0,0,.55);
  opacity: 0;
  transform: translateY(20px);
  animation: heroCenteredRise .9s .52s cubic-bezier(.22,1,.36,1) forwards;
}

.hero-actions-centered {
  margin-top: clamp(22px, 3.2vh, 34px);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 14px;
  opacity: 0;
  transform: translateY(18px);
  animation: heroCenteredRise .9s .7s cubic-bezier(.22,1,.36,1) forwards;
}

.hero-actions-centered .primary-btn,
.hero-actions-centered .text-btn {
  min-height: 50px;
}

.hero-secondary-btn {
  padding: 0 18px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  background: rgba(3,8,10,.28);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero-values {
  margin-top: clamp(26px, 4vh, 46px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  color: rgba(255,255,255,.5);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  opacity: 0;
  animation: heroFadeOnly .9s .92s ease forwards;
}

.hero-values i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px rgba(29,213,255,.8);
}

.hero.hero-redeveloped .hero-scroll-cue {
  left: 50%;
  bottom: max(20px, env(safe-area-inset-bottom));
  z-index: 4;
  transform: translateX(-50%);
  color: rgba(255,255,255,.56);
  text-decoration: none;
  justify-content: center;
}

@keyframes heroCenteredRise {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes heroFadeOnly {
  to { opacity: 1; }
}

@media (max-width: 900px) {
  .hero.hero-redeveloped {
    padding-inline: 24px;
  }

  .hero.hero-redeveloped .hero-photo-backdrop {
    background:
      linear-gradient(180deg, rgba(2,5,7,.58) 0%, rgba(2,5,7,.28) 32%, rgba(2,5,7,.46) 64%, rgba(2,5,7,.94) 100%),
      radial-gradient(circle at 50% 45%, transparent 0%, rgba(2,5,7,.14) 52%, rgba(2,5,7,.44) 100%),
      url('assets/images/leo/home-faded-background-demo.webp') 50% center / cover no-repeat;
  }
}

@media (max-width: 700px) {
  .hero.hero-redeveloped {
    min-height: 100svh;
    padding: max(92px, calc(env(safe-area-inset-top) + 76px)) 18px max(74px, calc(env(safe-area-inset-bottom) + 58px));
    place-items: center;
  }

  .hero.hero-redeveloped::before {
    background:
      radial-gradient(circle at 50% 46%, rgba(29,213,255,.1), transparent 34%),
      linear-gradient(180deg, rgba(0,0,0,.12), transparent 42%, rgba(0,0,0,.44));
  }

  .hero.hero-redeveloped::after {
    width: 72vw;
  }

  .hero.hero-redeveloped .hero-photo-backdrop {
    inset: 0;
    opacity: 1;
    filter: saturate(.86) contrast(1.04) brightness(.72);
    background:
      linear-gradient(180deg, rgba(2,5,7,.62) 0%, rgba(2,5,7,.31) 30%, rgba(2,5,7,.44) 66%, rgba(2,5,7,.96) 100%),
      linear-gradient(90deg, rgba(2,5,7,.26), transparent 50%, rgba(2,5,7,.26)),
      url('assets/images/leo/home-faded-background-demo.webp') 50% center / cover no-repeat;
  }

  .hero-center {
    min-height: 0;
    justify-content: center;
  }

  .hero.hero-redeveloped .hero-kicker {
    margin-bottom: 20px;
    padding: 7px 10px;
    font-size: 8px;
    letter-spacing: .16em;
  }

  .hero.hero-redeveloped .hero-mini {
    margin-bottom: 10px;
    font-size: 10px;
    letter-spacing: .34em;
    text-indent: .34em;
  }

  .hero.hero-redeveloped h1 {
    width: 100%;
    font-size: clamp(48px, 16.1vw, 74px);
    line-height: .83;
    letter-spacing: -.065em;
    overflow-wrap: normal;
    word-break: normal;
  }

  .hero.hero-redeveloped .outline-text {
    -webkit-text-stroke-width: 1px;
  }

  .hero-tagline {
    max-width: 290px;
    margin-top: 22px;
    font-size: 15px;
    line-height: 1.5;
  }

  .hero-actions-centered {
    width: min(100%, 330px);
    margin-top: 24px;
    flex-direction: column;
    gap: 10px;
  }

  .hero-actions-centered .primary-btn,
  .hero-actions-centered .text-btn {
    width: 100%;
    min-height: 48px;
    justify-content: center;
  }

  .hero-values {
    max-width: 320px;
    margin-top: 28px;
    gap: 8px;
    font-size: 7px;
    letter-spacing: .14em;
  }

  .hero.hero-redeveloped .hero-scroll-cue {
    display: none;
  }
}

@media (max-width: 390px) {
  .hero.hero-redeveloped {
    padding-inline: 14px;
  }

  .hero.hero-redeveloped h1 {
    font-size: clamp(44px, 15.7vw, 61px);
  }

  .hero-tagline {
    max-width: 260px;
    font-size: 14px;
  }

  .hero-values {
    gap: 6px;
    font-size: 6.5px;
  }
}

@media (max-height: 720px) and (max-width: 700px) {
  .hero.hero-redeveloped {
    padding-top: max(78px, calc(env(safe-area-inset-top) + 66px));
    padding-bottom: max(34px, calc(env(safe-area-inset-bottom) + 28px));
  }

  .hero.hero-redeveloped .hero-kicker { margin-bottom: 14px; }
  .hero-tagline { margin-top: 16px; }
  .hero-actions-centered { margin-top: 18px; }
  .hero-values { margin-top: 20px; }
}

/* =========================================================
   HOME HERO SCROLL CUE: bottom-left placement
   ========================================================= */
.hero.hero-redeveloped .hero-scroll-cue {
  display: inline-flex;
  left: clamp(20px, 4vw, 64px);
  right: auto;
  bottom: max(24px, env(safe-area-inset-bottom));
  transform: none;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, .64);
  z-index: 6;
}

.hero.hero-redeveloped .hero-scroll-cue::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--cyan);
  box-shadow: 0 0 12px rgba(29, 213, 255, .9);
  animation: scrollCuePulse 1.8s ease-in-out infinite;
}

.hero.hero-redeveloped .hero-scroll-cue:hover {
  color: #fff;
}

@keyframes scrollCuePulse {
  0%, 100% { opacity: .4; transform: scaleX(.72); transform-origin: left center; }
  50% { opacity: 1; transform: scaleX(1); transform-origin: left center; }
}

@media (max-width: 700px) {
  .hero.hero-redeveloped .hero-scroll-cue {
    display: inline-flex;
    left: 18px;
    bottom: max(16px, env(safe-area-inset-bottom));
    gap: 8px;
    font-size: 7px;
    letter-spacing: .13em;
  }

  .hero.hero-redeveloped .hero-scroll-cue::before {
    width: 22px;
  }

  .hero.hero-redeveloped .hero-scroll-cue svg {
    width: 13px;
    height: 13px;
  }
}

/* =========================================================
   FINAL OVERRIDE: force Scroll to Discover into far bottom-left
   ========================================================= */
body .hero.hero-redeveloped .hero-scroll-cue {
  display: inline-flex !important;
  position: absolute !important;
  left: 42px !important;
  right: auto !important;
  bottom: 42px !important;
  transform: none !important;
  margin: 0 !important;
  z-index: 20 !important;
}

@media (max-width: 700px) {
  body .hero.hero-redeveloped .hero-scroll-cue {
    left: 16px !important;
    bottom: max(18px, env(safe-area-inset-bottom)) !important;
  }
}

/* =========================================================
   HOMEPAGE REAL PHOTO UPDATE
   Uses the uploaded MR Leos group photo as the index hero.
   ========================================================= */
.hero.hero-redeveloped .hero-photo-backdrop {
  background:
    linear-gradient(180deg, rgba(0,0,0,.50) 0%, rgba(0,0,0,.30) 32%, rgba(0,0,0,.50) 68%, rgba(0,0,0,.90) 100%),
    linear-gradient(90deg, rgba(0,0,0,.28), rgba(0,0,0,.05) 48%, rgba(0,0,0,.32)),
    url('assets/images/leo/home-main-photo.webp') center center / cover no-repeat !important;
}

@media (max-width: 700px) {
  .hero.hero-redeveloped .hero-photo-backdrop {
    background:
      linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.34) 34%, rgba(0,0,0,.58) 72%, rgba(0,0,0,.92) 100%),
      url('assets/images/leo/home-main-photo.webp') 52% center / cover no-repeat !important;
  }
}

/* =========================================================
   2026 REFINEMENT: SPLIT LOADER + MINIMAL WHAT IS LEO PAGE
   ========================================================= */

/* Full-screen split loader */
body.loading { overflow: hidden !important; }
.site-loader.split-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: transparent;
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transition: visibility 0s linear 1.15s;
}
.site-loader.split-loader::before,
.site-loader.split-loader::after { display: none !important; content: none !important; }
.loader-panel {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50.05%;
  background: #030303;
  transition: transform 1.05s cubic-bezier(.77,0,.18,1);
  will-change: transform;
}
.loader-panel-left { left: 0; transform-origin: left center; }
.loader-panel-right { right: 0; transform-origin: right center; }
.loader-seam {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: rgba(29,213,255,.78);
  box-shadow: 0 0 18px rgba(29,213,255,.72);
  transform: translateX(-50%);
  opacity: 1;
  transition: opacity .25s ease .18s;
}
.loader-center {
  position: relative;
  z-index: 3;
  width: min(360px, calc(100vw - 48px));
  text-align: center;
  transition: opacity .26s ease, transform .35s ease;
}
.split-loader-logo {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 18px;
  display: block;
  margin: 0 auto 20px;
  opacity: .96;
}
.split-loader-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(32px, 6vw, 56px);
  line-height: .9;
  font-weight: 700;
  letter-spacing: -.055em;
  color: #f7fbfc;
}
.split-loader-line {
  width: 100%;
  height: 1px;
  margin: 24px 0 14px;
  background: rgba(255,255,255,.12);
  overflow: hidden;
}
.split-loader-line span {
  display: block;
  height: 100%;
  width: 100%;
  background: var(--cyan);
  box-shadow: 0 0 18px rgba(29,213,255,.8);
  transform-origin: left center;
  animation: splitLoaderProgress 5.6s cubic-bezier(.22,.8,.24,1) both;
}
.split-loader-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255,255,255,.5);
  font-size: 9px;
  letter-spacing: .16em;
}
.split-loader-meta strong {
  color: var(--cyan);
  font-size: 10px;
  letter-spacing: .08em;
}
.site-loader.split-loader.is-complete .loader-center {
  opacity: 0;
  transform: scale(.96);
}
.site-loader.split-loader.is-complete .loader-seam { opacity: 0; }
.site-loader.split-loader.is-complete .loader-panel-left { transform: translateX(-100%); }
.site-loader.split-loader.is-complete .loader-panel-right { transform: translateX(100%); }
.site-loader.split-loader.is-hidden {
  opacity: 1 !important;
  visibility: hidden;
  pointer-events: none;
}
@keyframes splitLoaderProgress {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

/* Main hero after removing district badge */
.hero-redeveloped .hero-center { justify-content: center; }
.hero-redeveloped .hero-intro { margin-top: 0; }

/* Minimal What Is Leo page */
.leo-clean-page {
  --leo-bg: #050505;
  --leo-surface: #0a0b0c;
  --leo-text: #f4f8fa;
  --leo-muted: #8d989f;
  --leo-line: rgba(255,255,255,.11);
  background: var(--leo-bg);
}
.leo-clean-shell { background: #050505; }
.leo-clean-background {
  background: #050505 !important;
}
.leo-clean-background .glow {
  opacity: .035 !important;
  filter: blur(160px) !important;
  animation: none !important;
}
.leo-clean-page .nav-shell {
  background: rgba(5,5,5,.78);
  border-color: rgba(255,255,255,.08);
  box-shadow: none;
}
.leo-clean-page main { overflow: hidden; }

.leo-clean-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  align-items: center;
  gap: clamp(36px, 7vw, 110px);
  padding: 140px max(5vw, 28px) 88px;
  isolation: isolate;
  overflow: hidden;
}
.leo-clean-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(5,5,5,.98) 0%, rgba(5,5,5,.88) 45%, rgba(5,5,5,.64) 100%),
    url('assets/images/leo/leo-leadership-demo.webp') center 36% / cover no-repeat;
  filter: saturate(.55) contrast(1.06);
}
.leo-clean-hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(to bottom, #050505 0%, transparent 18%, transparent 70%, #050505 100%),
    radial-gradient(circle at 76% 50%, rgba(29,213,255,.06), transparent 32%);
}
.leo-clean-hero-content {
  max-width: 850px;
  align-self: center;
}
.leo-clean-kicker,
.leo-clean-label {
  margin: 0 0 18px;
  color: var(--cyan);
  font-size: 10px;
  line-height: 1.4;
  letter-spacing: .2em;
  font-weight: 700;
  text-transform: uppercase;
}
.leo-clean-hero h1 {
  margin: 0;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(72px, 11vw, 176px);
  line-height: .78;
  letter-spacing: -.075em;
  font-weight: 700;
  color: var(--leo-text);
}
.leo-clean-hero h1 span {
  display: block;
  color: transparent;
  -webkit-text-stroke: 1px rgba(247,251,252,.62);
}
.leo-clean-lead {
  max-width: 620px;
  margin: 30px 0 0;
  color: #c5ced2;
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.75;
}
.leo-clean-hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 34px;
}
.leo-clean-hero-logo {
  justify-self: center;
  width: min(320px, 30vw);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}
.leo-clean-hero-logo img {
  width: 82%;
  height: 82%;
  object-fit: contain;
  filter: grayscale(1) brightness(1.28) drop-shadow(0 20px 50px rgba(0,0,0,.46));
  opacity: .92;
}
.leo-clean-scroll {
  position: absolute;
  left: max(5vw, 28px);
  bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(255,255,255,.5);
  font-size: 9px;
  letter-spacing: .16em;
}

.leo-clean-section {
  width: min(1320px, calc(100% - 64px));
  margin: 0 auto;
  padding: 120px 0;
  position: relative;
}
.leo-clean-section + .leo-clean-section {
  border-top: 1px solid var(--leo-line);
}
.leo-clean-section-head {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) minmax(280px, 440px);
  gap: 34px;
  align-items: start;
  margin-bottom: 76px;
}
.leo-clean-index {
  color: var(--cyan);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  padding-top: 8px;
}
.leo-clean-section-head h2,
.leo-clean-service-copy h2,
.leo-clean-club-copy h2,
.leo-clean-cta h2 {
  margin: 0;
  font-family: 'Space Grotesk', sans-serif;
  color: var(--leo-text);
  font-size: clamp(44px, 6vw, 88px);
  line-height: .95;
  letter-spacing: -.055em;
  font-weight: 600;
}
.leo-clean-section-head > p,
.leo-clean-service-copy > p,
.leo-clean-club-copy > p {
  margin: 0;
  color: var(--leo-muted);
  font-size: 15px;
  line-height: 1.85;
}
.leo-clean-section-head strong { color: #dce5e8; }

.leo-clean-meaning-list {
  border-top: 1px solid var(--leo-line);
}
.leo-clean-meaning-row {
  display: grid;
  grid-template-columns: 100px minmax(240px, .75fr) minmax(300px, 1fr);
  gap: 32px;
  align-items: center;
  min-height: 180px;
  padding: 26px 0;
  border-bottom: 1px solid var(--leo-line);
}
.leo-clean-letter {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(68px, 8vw, 116px);
  line-height: 1;
  letter-spacing: -.08em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(29,213,255,.72);
}
.leo-clean-meaning-row small,
.leo-clean-path-item small {
  color: var(--cyan);
  font-size: 9px;
  letter-spacing: .18em;
}
.leo-clean-meaning-row h3,
.leo-clean-timeline-item h3,
.leo-clean-path-item h3 {
  margin: 8px 0 0;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.05;
  letter-spacing: -.035em;
}
.leo-clean-meaning-row > p,
.leo-clean-timeline-item p,
.leo-clean-path-item p {
  color: var(--leo-muted);
  font-size: 14px;
  line-height: 1.8;
  margin: 0;
}

.leo-clean-service {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: clamp(48px, 8vw, 110px);
  align-items: center;
}
.leo-clean-photo {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #0b0d0e;
}
.leo-clean-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
  pointer-events: none;
}
.leo-clean-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(.78) contrast(1.04);
}
.leo-clean-photo > span {
  position: absolute;
  left: 20px;
  bottom: 18px;
  padding: 8px 10px;
  background: rgba(5,5,5,.76);
  backdrop-filter: blur(8px);
  color: #dbe5e9;
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.leo-clean-service-copy > p { margin-top: 26px; }
.leo-clean-facts {
  margin-top: 34px;
  border-top: 1px solid var(--leo-line);
}
.leo-clean-facts > div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--leo-line);
}
.leo-clean-facts strong { color: #eef5f7; font-size: 13px; }
.leo-clean-facts span { color: var(--leo-muted); font-size: 12px; }

.leo-clean-history-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .9fr);
  gap: clamp(52px, 8vw, 100px);
  align-items: start;
}
.leo-clean-history-image {
  margin: 0;
  position: sticky;
  top: 120px;
}
.leo-clean-history-image img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(.66) contrast(1.06);
}
.leo-clean-history-image figcaption {
  padding-top: 13px;
  color: rgba(255,255,255,.42);
  font-size: 9px;
  letter-spacing: .16em;
}
.leo-clean-timeline { border-top: 1px solid var(--leo-line); }
.leo-clean-timeline-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 22px;
  padding: 32px 0;
  border-bottom: 1px solid var(--leo-line);
}
.leo-clean-timeline-item > span {
  color: var(--cyan);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  letter-spacing: .1em;
  padding-top: 6px;
}
.leo-clean-timeline-item h3 { font-size: clamp(27px, 3vw, 42px); margin: 0 0 13px; }

.leo-clean-club {
  display: grid;
  grid-template-columns: minmax(320px, .72fr) minmax(0, 1.28fr);
  gap: clamp(50px, 9vw, 120px);
  align-items: center;
}
.leo-clean-club-copy .leo-clean-index { display: block; margin-bottom: 28px; }
.leo-clean-club-copy h2 span { color: var(--cyan); }
.leo-clean-club-copy > p { margin: 28px 0 28px; max-width: 520px; }
.leo-clean-club-visual {
  position: relative;
  min-height: 560px;
}
.leo-clean-club-visual > img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  display: block;
  filter: saturate(.72) contrast(1.04);
}
.leo-clean-club-mark {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 120px;
  aspect-ratio: 1;
  padding: 12px;
  background: rgba(5,5,5,.84);
  backdrop-filter: blur(10px);
}
.leo-clean-club-mark img { width: 100%; height: 100%; object-fit: cover; }

.leo-clean-club-path {
  padding-top: 0;
  border-top: 0 !important;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.leo-clean-path-item {
  min-height: 300px;
  padding: 32px 34px 34px 0;
  border-top: 1px solid var(--leo-line);
  border-right: 1px solid var(--leo-line);
}
.leo-clean-path-item + .leo-clean-path-item { padding-left: 34px; }
.leo-clean-path-item:last-child { border-right: 0; }
.leo-clean-path-item > span {
  display: block;
  color: rgba(255,255,255,.25);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  margin-bottom: 58px;
}
.leo-clean-path-item h3 { margin: 12px 0 18px; font-size: clamp(26px, 2.5vw, 36px); }

.leo-clean-cta {
  position: relative;
  min-height: 72vh;
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
  margin-top: 40px;
}
.leo-clean-cta-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(rgba(5,5,5,.72), rgba(5,5,5,.88)),
    url('assets/images/leo/leo-leadership-demo.webp') center / cover no-repeat;
  filter: saturate(.62);
}
.leo-clean-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to bottom, #050505 0%, transparent 25%, transparent 70%, #050505 100%);
}
.leo-clean-cta-content {
  width: min(980px, calc(100% - 40px));
  padding: 80px 0;
}
.leo-clean-cta h2 { font-size: clamp(48px, 7vw, 104px); }
.leo-clean-cta .primary-btn { margin-top: 34px; }

@media (max-width: 1000px) {
  .leo-clean-hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 150px;
  }
  .leo-clean-hero-content { margin: 0 auto; }
  .leo-clean-lead { margin-inline: auto; }
  .leo-clean-hero-actions { justify-content: center; }
  .leo-clean-hero-logo {
    position: absolute;
    width: min(210px, 34vw);
    right: 4vw;
    bottom: 6vh;
    opacity: .2;
    z-index: -1;
  }
  .leo-clean-section-head {
    grid-template-columns: 50px 1fr;
  }
  .leo-clean-section-head > p {
    grid-column: 2;
    max-width: 600px;
  }
  .leo-clean-meaning-row {
    grid-template-columns: 80px 1fr;
  }
  .leo-clean-meaning-row > p {
    grid-column: 2;
    max-width: 700px;
  }
  .leo-clean-service,
  .leo-clean-history-grid,
  .leo-clean-club {
    grid-template-columns: 1fr;
  }
  .leo-clean-history-image { position: relative; top: auto; }
  .leo-clean-club-visual,
  .leo-clean-club-visual > img { min-height: 460px; }
}

@media (max-width: 700px) {
  .split-loader-logo { width: 58px; height: 58px; border-radius: 14px; }
  .split-loader-meta { font-size: 8px; letter-spacing: .1em; }
  .leo-clean-page .nav-shell { top: 10px; }
  .leo-clean-hero {
    min-height: 100svh;
    padding: 122px 20px 72px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .leo-clean-hero-bg {
    background:
      linear-gradient(rgba(5,5,5,.76), rgba(5,5,5,.88)),
      url('assets/images/leo/leo-leadership-demo.webp') 52% center / cover no-repeat;
  }
  .leo-clean-hero-shade {
    background: linear-gradient(to bottom, #050505 0%, transparent 20%, transparent 68%, #050505 100%);
  }
  .leo-clean-kicker { font-size: 8px; letter-spacing: .16em; margin-bottom: 14px; }
  .leo-clean-hero h1 { font-size: clamp(66px, 21vw, 104px); line-height: .8; }
  .leo-clean-lead { font-size: 14px; line-height: 1.65; max-width: 500px; margin-top: 22px; }
  .leo-clean-hero-actions { margin-top: 26px; gap: 14px; }
  .leo-clean-hero-actions .primary-btn { width: min(320px, 100%); justify-content: center; }
  .leo-clean-hero-logo { display: none; }
  .leo-clean-scroll { left: 20px; bottom: 18px; font-size: 8px; }
  .leo-clean-section {
    width: calc(100% - 40px);
    padding: 76px 0;
  }
  .leo-clean-section-head {
    display: block;
    margin-bottom: 44px;
  }
  .leo-clean-section-head .leo-clean-index { display: block; margin-bottom: 26px; }
  .leo-clean-section-head h2,
  .leo-clean-service-copy h2,
  .leo-clean-club-copy h2 { font-size: clamp(42px, 14vw, 66px); }
  .leo-clean-section-head > p { margin-top: 24px; font-size: 14px; }
  .leo-clean-meaning-row {
    grid-template-columns: 52px 1fr;
    gap: 18px;
    min-height: 0;
    padding: 28px 0;
    align-items: start;
  }
  .leo-clean-letter { font-size: 54px; }
  .leo-clean-meaning-row h3 { font-size: 27px; }
  .leo-clean-meaning-row > p {
    grid-column: 1 / -1;
    padding-left: 70px;
    font-size: 13px;
  }
  .leo-clean-service { gap: 36px; }
  .leo-clean-photo { aspect-ratio: 4 / 4.5; }
  .leo-clean-facts > div { grid-template-columns: 1fr; gap: 5px; }
  .leo-clean-history-grid { gap: 34px; }
  .leo-clean-history-image img { aspect-ratio: 4 / 3.3; }
  .leo-clean-timeline-item { grid-template-columns: 66px 1fr; gap: 14px; padding: 26px 0; }
  .leo-clean-timeline-item h3 { font-size: 27px; }
  .leo-clean-club { gap: 36px; }
  .leo-clean-club-copy .leo-clean-index { margin-bottom: 20px; }
  .leo-clean-club-visual,
  .leo-clean-club-visual > img { min-height: 400px; }
  .leo-clean-club-mark { width: 82px; right: 12px; bottom: 12px; padding: 8px; }
  .leo-clean-club-path {
    display: block;
    padding-top: 0;
  }
  .leo-clean-path-item,
  .leo-clean-path-item + .leo-clean-path-item {
    min-height: 0;
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid var(--leo-line);
  }
  .leo-clean-path-item > span { margin-bottom: 28px; }
  .leo-clean-path-item h3 { font-size: 28px; }
  .leo-clean-cta { min-height: 70svh; }
  .leo-clean-cta h2 { font-size: clamp(46px, 14vw, 72px); }
}

@media (prefers-reduced-motion: reduce) {
  .split-loader-line span { animation: none; transform: scaleX(1); }
  .loader-panel,
  .loader-center,
  .loader-seam { transition-duration: .01ms !important; }
}


/* =========================================================
   FINAL 2026 UPDATE: QUICK SPLIT LOADER + LOCAL STORY FLAG
   ========================================================= */

/* Keep the cinematic center split, but remove every blue line from the loader. */
.site-loader.split-loader {
  transition: visibility 0s linear .78s;
}
.loader-panel {
  transition: transform .68s cubic-bezier(.77,0,.18,1);
}
.loader-seam,
.split-loader-line {
  display: none !important;
}
.loader-center {
  width: min(340px, calc(100vw - 48px));
}
.split-loader-logo {
  margin-bottom: 18px;
}
.split-loader-meta {
  margin-top: 18px;
}
.site-loader.split-loader.is-complete .loader-center {
  transition-duration: .2s;
}

/* Redesigned local story: the supplied club flag is now the hero visual. */
.leo-local-story-redesign {
  grid-template-columns: minmax(320px, .7fr) minmax(0, 1.3fr);
  gap: clamp(58px, 9vw, 128px);
  align-items: center;
  min-height: 86vh;
}

.leo-local-story-redesign::before {
  content: '';
  position: absolute;
  inset: 7% -8% 8% 42%;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 45%, rgba(29,213,255,.095), transparent 38%),
    radial-gradient(circle at 50% 52%, rgba(255,255,255,.035), transparent 58%);
  filter: blur(12px);
}

.leo-local-story-redesign .leo-clean-club-copy {
  position: relative;
  z-index: 2;
}

.leo-local-story-redesign .leo-clean-club-copy h2 {
  font-size: clamp(52px, 6.8vw, 104px);
  line-height: .88;
  letter-spacing: -.065em;
}

.leo-local-story-redesign .leo-clean-club-copy h2 span {
  color: var(--cyan);
}

.leo-local-flag-stage {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 650px;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  isolation: isolate;
}

.leo-local-flag-glow {
  position: absolute;
  width: 74%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(29,213,255,.11);
  filter: blur(115px);
  opacity: .52;
  pointer-events: none;
}

.leo-local-flag-frame {
  position: relative;
  width: min(100%, 760px);
  min-height: 580px;
  display: grid;
  place-items: center;
  padding: 12px 18px 4px;
}

.leo-local-flag-frame::before {
  content: '';
  position: absolute;
  inset: 7% 10% 10%;
  z-index: -1;
  background: radial-gradient(circle at 50% 43%, rgba(255,255,255,.055), rgba(5,5,5,0) 66%);
}

.leo-local-flag {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 650px;
  object-fit: contain;
  filter:
    drop-shadow(0 32px 48px rgba(0,0,0,.58))
    drop-shadow(0 0 28px rgba(29,213,255,.07));
  transform: translateZ(0);
}

.leo-local-flag-stage figcaption {
  width: min(100%, 760px);
  padding: 18px 8px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255,255,255,.11);
  color: rgba(255,255,255,.42);
  font-size: 8px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.leo-local-flag-stage figcaption strong {
  color: rgba(255,255,255,.72);
  font-size: 8px;
  font-weight: 600;
  white-space: nowrap;
}

@media (max-width: 1000px) {
  .leo-local-story-redesign {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .leo-local-flag-stage {
    min-height: 560px;
  }

  .leo-local-flag-frame {
    min-height: 500px;
  }

  .leo-local-flag {
    max-height: 560px;
  }
}

@media (max-width: 700px) {
  .leo-local-story-redesign {
    gap: 30px;
  }

  .leo-local-story-redesign::before {
    inset: 38% -22% 2%;
  }

  .leo-local-story-redesign .leo-clean-club-copy h2 {
    font-size: clamp(48px, 15vw, 72px);
  }

  .leo-local-flag-stage {
    min-height: 0;
  }

  .leo-local-flag-frame {
    width: 100%;
    min-height: 0;
    padding: 0;
  }

  .leo-local-flag {
    width: 100%;
    max-height: none;
  }

  .leo-local-flag-stage figcaption {
    margin-top: 8px;
    padding-top: 14px;
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
    font-size: 7px;
  }

  .leo-local-flag-stage figcaption strong {
    font-size: 7px;
    white-space: normal;
  }
}

@media (prefers-reduced-motion: reduce) {
  .loader-panel,
  .loader-center {
    transition-duration: .01ms !important;
  }
}


/* =========================================================
   MINIMAL LOADING SCREEN
   ========================================================= */
body.loading {
  overflow: hidden !important;
}

.site-loader.minimal-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: grid;
  place-items: center;
  background: #050505;
  opacity: 1;
  visibility: visible;
  transition: opacity .42s ease, visibility 0s linear .42s;
}

.site-loader.minimal-loader::before,
.site-loader.minimal-loader::after {
  display: none !important;
  content: none !important;
}

.minimal-loader-content {
  width: min(280px, calc(100vw - 48px));
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  opacity: 1;
  transform: translateY(0);
  transition: opacity .28s ease, transform .28s ease;
}

.minimal-loader-logo {
  width: 68px;
  height: 68px;
  object-fit: contain;
  margin-bottom: 18px;
  animation: minimalLogoIn .7s cubic-bezier(.22,1,.36,1) both;
}

.minimal-loader-title {
  margin: 0;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .32em;
  line-height: 1;
  text-indent: .32em;
  animation: minimalTextIn .7s .08s cubic-bezier(.22,1,.36,1) both;
}

.minimal-loader-location {
  margin-top: 9px;
  color: rgba(255,255,255,.42);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: .18em;
  text-indent: .18em;
  animation: minimalTextIn .7s .14s cubic-bezier(.22,1,.36,1) both;
}

.minimal-loader-dots {
  display: flex;
  gap: 6px;
  margin-top: 24px;
}

.minimal-loader-dots i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255,255,255,.28);
  animation: minimalDot 1s ease-in-out infinite;
}

.minimal-loader-dots i:nth-child(2) { animation-delay: .14s; }
.minimal-loader-dots i:nth-child(3) { animation-delay: .28s; }

.site-loader.minimal-loader.is-complete {
  opacity: 0;
  pointer-events: none;
}

.site-loader.minimal-loader.is-complete .minimal-loader-content {
  opacity: 0;
  transform: translateY(-6px);
}

.site-loader.minimal-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@keyframes minimalLogoIn {
  from { opacity: 0; transform: translateY(8px) scale(.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes minimalTextIn {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes minimalDot {
  0%, 70%, 100% { opacity: .22; transform: scale(.8); }
  35% { opacity: .9; transform: scale(1); }
}

@media (max-width: 600px) {
  .minimal-loader-logo {
    width: 58px;
    height: 58px;
    margin-bottom: 16px;
  }
  .minimal-loader-title { font-size: 11px; }
  .minimal-loader-location { font-size: 7px; }
}

@media (prefers-reduced-motion: reduce) {
  .minimal-loader-logo,
  .minimal-loader-title,
  .minimal-loader-location,
  .minimal-loader-dots i {
    animation: none !important;
  }
}

/* =========================================================
   LOCAL STORY LEGACY CONTENT UPDATE
   ========================================================= */
.leo-local-story-redesign .leo-clean-club-copy > p + p {
  margin-top: -10px;
}

.leo-local-story-redesign .leo-clean-club-copy .inline-link {
  margin-top: 4px;
}

.leo-local-legacy-facts .leo-clean-path-item {
  position: relative;
  overflow: hidden;
}

.leo-local-legacy-facts .leo-clean-path-item::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(145deg, rgba(29,213,255,.045), transparent 46%);
  opacity: 0;
  transition: opacity .3s ease;
}

.leo-local-legacy-facts .leo-clean-path-item:hover::before {
  opacity: 1;
}

.leo-local-legacy-facts .leo-clean-path-item h3 {
  max-width: 360px;
}

@media (max-width: 700px) {
  .leo-local-story-redesign .leo-clean-club-copy > p {
    font-size: 13.5px;
    line-height: 1.8;
  }

  .leo-local-story-redesign .leo-clean-club-copy > p + p {
    margin-top: -8px;
  }
}

/* =========================================================
   SLEEK SIDE-WIPE PRELOADER - ALL PAGES
   Inspired by the referenced Webflow loading concept.
   ========================================================= */
body.loading {
  overflow: hidden !important;
}

.site-loader.sleek-side-loader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: #050505;
  color: #f7fbfc;
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translate3d(0, 0, 0);
  transition:
    transform .78s cubic-bezier(.76, 0, .24, 1),
    visibility 0s linear .8s;
  will-change: transform;
  isolation: isolate;
}

.site-loader.sleek-side-loader::before,
.site-loader.sleek-side-loader::after {
  display: none !important;
  content: none !important;
}

.sleek-loader-brand {
  position: absolute;
  top: clamp(24px, 4vw, 52px);
  left: clamp(24px, 4vw, 58px);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 13px;
  opacity: 0;
  transform: translateY(10px);
  animation: sleekLoaderFadeIn .7s .08s cubic-bezier(.22, 1, .36, 1) forwards;
}

.sleek-loader-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  flex: 0 0 auto;
}

.sleek-loader-brand strong {
  display: block;
  margin-bottom: 4px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  line-height: 1;
  letter-spacing: .18em;
}

.sleek-loader-brand span {
  display: block;
  color: rgba(255,255,255,.4);
  font-size: 7px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: .16em;
}

.sleek-loader-word-viewport {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  pointer-events: none;
}

.sleek-loader-word-track {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  padding-left: clamp(18px, 3.4vw, 52px);
  transform: translate3d(0, 16%, 0);
  animation: sleekLoaderWordScroll 2.05s cubic-bezier(.16, .74, .18, 1) forwards;
  will-change: transform;
}

.sleek-loader-word-track span {
  display: block;
  margin: 0;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(112px, 15vw, 250px);
  font-weight: 700;
  line-height: .69;
  letter-spacing: -.075em;
  white-space: nowrap;
  color: rgba(255,255,255,.055);
  -webkit-text-stroke: 1px rgba(255,255,255,.085);
}

.sleek-loader-word-track span:nth-child(3),
.sleek-loader-word-track span:nth-child(4) {
  color: rgba(255,255,255,.96);
  -webkit-text-stroke: 0 transparent;
}

.sleek-loader-word-track span:nth-child(2),
.sleek-loader-word-track span:nth-child(5) {
  color: rgba(255,255,255,.17);
}

.sleek-loader-counter {
  position: absolute;
  top: clamp(24px, 4vw, 50px);
  right: clamp(24px, 4vw, 58px);
  z-index: 4;
  display: flex;
  align-items: flex-start;
  font-family: 'Space Grotesk', sans-serif;
  font-variant-numeric: tabular-nums;
  opacity: 0;
  transform: translateY(10px);
  animation: sleekLoaderFadeIn .7s .14s cubic-bezier(.22, 1, .36, 1) forwards;
}

.sleek-loader-percent {
  min-width: 2.2ch;
  text-align: right;
  font-size: clamp(32px, 4.4vw, 72px);
  font-weight: 500;
  line-height: .82;
  letter-spacing: -.07em;
}

.sleek-loader-counter sup {
  margin-left: 4px;
  color: rgba(255,255,255,.48);
  font-size: clamp(10px, 1vw, 14px);
  font-weight: 600;
  line-height: 1;
}

.sleek-loader-footer {
  position: absolute;
  right: clamp(24px, 4vw, 58px);
  bottom: clamp(22px, 3.2vw, 42px);
  left: clamp(24px, 4vw, 58px);
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255,255,255,.4);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: .2em;
  opacity: 0;
  transform: translateY(8px);
  animation: sleekLoaderFadeIn .7s .2s cubic-bezier(.22, 1, .36, 1) forwards;
}

.site-loader.sleek-side-loader.is-complete {
  transform: translate3d(100%, 0, 0);
  pointer-events: none;
}

.site-loader.sleek-side-loader.is-complete .sleek-loader-brand,
.site-loader.sleek-side-loader.is-complete .sleek-loader-counter,
.site-loader.sleek-side-loader.is-complete .sleek-loader-footer {
  opacity: 0;
  transition: opacity .2s ease;
}

.site-loader.sleek-side-loader.is-complete .sleek-loader-word-track {
  animation-play-state: paused;
}

.site-loader.sleek-side-loader.is-hidden {
  visibility: hidden;
  pointer-events: none;
}

@keyframes sleekLoaderFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes sleekLoaderWordScroll {
  0% {
    transform: translate3d(0, 14%, 0);
  }
  100% {
    transform: translate3d(0, -43%, 0);
  }
}

@media (max-width: 700px) {
  .sleek-loader-brand {
    top: 22px;
    left: 20px;
    gap: 10px;
  }

  .sleek-loader-logo {
    width: 34px;
    height: 34px;
  }

  .sleek-loader-brand strong {
    font-size: 10px;
  }

  .sleek-loader-brand span {
    max-width: 185px;
    font-size: 6px;
    letter-spacing: .11em;
  }

  .sleek-loader-counter {
    top: 24px;
    right: 20px;
  }

  .sleek-loader-percent {
    font-size: 34px;
  }

  .sleek-loader-word-track {
    padding-left: 12px;
    animation-duration: 2s;
  }

  .sleek-loader-word-track span {
    font-size: clamp(72px, 23vw, 126px);
    line-height: .73;
  }

  .sleek-loader-footer {
    right: 20px;
    bottom: 20px;
    left: 20px;
    font-size: 6px;
    letter-spacing: .13em;
  }
}

@media (max-width: 440px) {
  .sleek-loader-brand span {
    display: none;
  }

  .sleek-loader-footer span:last-child {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-loader.sleek-side-loader {
    transition-duration: .01ms !important;
  }

  .sleek-loader-brand,
  .sleek-loader-counter,
  .sleek-loader-footer,
  .sleek-loader-word-track {
    animation: none !important;
    opacity: 1;
    transform: none;
  }
}


/* =========================================================
   PROJECTS LAYOUT FIX v6
   Clean responsive editorial layout for the three real projects.
   This final override intentionally replaces older experimental
   project rules above without affecting other sections.
   ========================================================= */

.projects .section-title {
  max-width: 860px;
  margin-bottom: 54px;
}

.projects .section-title p {
  max-width: 590px;
}

.project-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.project-list > .project-item {
  min-width: 0;
  width: 100%;
}

.project-list > .project-item-featured {
  grid-column: 1 / -1;
}

.project-card,
.project-card.mobile-scroll-item {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(310px, .65fr);
  min-height: 500px;
  overflow: hidden;
  border: 1px solid rgba(29, 213, 255, .17);
  border-radius: 20px;
  background:
    radial-gradient(circle at 100% 0%, rgba(29, 213, 255, .055), transparent 38%),
    rgba(255, 255, 255, .015);
  box-shadow: 0 22px 70px rgba(0, 0, 0, .24);
  isolation: isolate;
}

.project-list > .project-item:not(.project-item-featured) .project-card,
.project-list > .project-item:not(.project-item-featured) .project-card.mobile-scroll-item {
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.project-card::before,
.project-card::after {
  content: none;
  display: none;
}

.project-card:hover {
  transform: translateY(-5px);
  border-color: rgba(29, 213, 255, .42);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .34), 0 0 0 1px rgba(29, 213, 255, .03) inset;
}

.project-media,
.project-b .project-media,
.project-c .project-media {
  position: relative;
  width: 100%;
  min-height: 0;
  aspect-ratio: auto;
  border-radius: 0;
  overflow: hidden;
  background: #080b0d;
}

.project-list > .project-item-featured .project-media {
  min-height: 500px;
}

.project-list > .project-item:not(.project-item-featured) .project-media {
  aspect-ratio: 3 / 2;
  flex: 0 0 auto;
}

.project-media > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.001);
  filter: saturate(.94) contrast(1.03) brightness(.9);
  transition: transform .8s cubic-bezier(.22, 1, .36, 1), filter .45s ease;
}

.project-card:hover .project-media > img,
.project-card.mobile-scroll-item.scroll-active .project-media > img {
  transform: scale(1.04);
  filter: saturate(1) contrast(1.03) brightness(.94);
}

.project-media::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .02), rgba(0, 0, 0, .12) 62%, rgba(0, 0, 0, .5)),
    linear-gradient(120deg, rgba(29, 213, 255, .06), transparent 42%);
  pointer-events: none;
}

.project-number {
  position: absolute;
  z-index: 4;
  top: 18px;
  right: 18px;
  left: auto;
  min-width: 44px;
  min-height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(29, 213, 255, .4);
  border-radius: 50%;
  background: rgba(2, 7, 9, .66);
  backdrop-filter: blur(12px);
  color: var(--cyan);
  font-size: 10px;
  box-shadow: 0 0 24px rgba(29, 213, 255, .1);
}

.project-photo-label {
  position: absolute;
  z-index: 4;
  left: 18px;
  bottom: 17px;
  top: auto;
  padding: 6px 8px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  background: rgba(3, 7, 9, .48);
  backdrop-filter: blur(10px);
  color: rgba(255, 255, 255, .75);
  font-size: 7px;
  letter-spacing: .16em;
}

.project-focus-dot {
  display: none;
}

.project-copy,
.project-list > div:nth-child(2) .project-copy {
  position: relative;
  z-index: 3;
  width: 100%;
  margin: 0;
  padding: 38px 34px;
  border: 0;
  border-left: 1px solid rgba(29, 213, 255, .12);
  border-radius: 0;
  background:
    radial-gradient(circle at 100% 0%, rgba(29, 213, 255, .06), transparent 42%),
    rgba(5, 8, 10, .96);
  backdrop-filter: none;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.project-list > .project-item:not(.project-item-featured) .project-copy,
.project-list > .project-item:not(.project-item-featured):nth-child(2) .project-copy {
  flex: 1 1 auto;
  min-height: 250px;
  padding: 30px 28px 28px;
  border-left: 0;
  border-top: 1px solid rgba(29, 213, 255, .12);
}

.project-copy::before {
  content: '';
  position: absolute;
  left: 34px;
  top: 0;
  width: 46px;
  height: 1px;
  background: var(--cyan);
  box-shadow: 0 0 10px rgba(29, 213, 255, .72);
}

.project-list > .project-item:not(.project-item-featured) .project-copy::before {
  left: 28px;
}

.project-copy small {
  display: inline-flex;
  width: fit-content;
  max-width: calc(100% - 58px);
  padding: 6px 8px;
  border: 1px solid rgba(29, 213, 255, .24);
  border-radius: 999px;
  background: rgba(29, 213, 255, .035);
  color: var(--cyan);
  font-size: 8px;
  line-height: 1.25;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.project-copy h3 {
  max-width: 11ch;
  margin: 15px 0 15px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(36px, 4vw, 60px);
  line-height: .94;
  letter-spacing: -.05em;
}

.project-list > .project-item:not(.project-item-featured) .project-copy h3 {
  max-width: none;
  font-size: clamp(32px, 3.3vw, 48px);
}

.project-copy p {
  max-width: 34ch;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.project-copy button {
  position: static;
  width: 46px;
  height: 46px;
  margin-top: 26px;
  border: 1px solid rgba(29, 213, 255, .28);
  background: rgba(29, 213, 255, .025);
  color: var(--cyan);
}

.project-card:hover .project-copy button {
  color: #001014;
  background: var(--cyan);
  border-color: var(--cyan);
}

@media (max-width: 1024px) {
  .project-card,
  .project-card.mobile-scroll-item {
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
    min-height: 430px;
  }

  .project-list > .project-item-featured .project-media {
    min-height: 430px;
  }

  .project-copy,
  .project-list > div:nth-child(2) .project-copy {
    padding: 32px 26px;
  }

  .project-copy::before {
    left: 26px;
  }
}

@media (max-width: 700px) {
  .projects {
    padding-top: 66px;
  }

  .projects .section-title {
    margin-bottom: 34px;
  }

  .project-list {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .project-list > .project-item-featured {
    grid-column: auto;
  }

  .project-card,
  .project-card.mobile-scroll-item,
  .project-list > .project-item:not(.project-item-featured) .project-card,
  .project-list > .project-item:not(.project-item-featured) .project-card.mobile-scroll-item {
    display: flex;
    flex-direction: column;
    min-height: 0;
    overflow: hidden;
    border-radius: 16px;
    transform: none;
  }

  .project-card.mobile-scroll-item {
    opacity: 0;
    transform: translate3d(0, 32px, 0) scale(.985);
  }

  .project-card.mobile-scroll-item.scroll-active {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }

  .project-list > div:nth-child(even) .project-card.mobile-scroll-item,
  .project-list > div:nth-child(odd) .project-card.mobile-scroll-item {
    transform: translate3d(0, 32px, 0) scale(.985);
  }

  .project-list > div:nth-child(even) .project-card.mobile-scroll-item.scroll-active,
  .project-list > div:nth-child(odd) .project-card.mobile-scroll-item.scroll-active {
    transform: translate3d(0, 0, 0) scale(1);
  }

  .project-media,
  .project-b .project-media,
  .project-c .project-media,
  .project-list > .project-item-featured .project-media,
  .project-list > .project-item:not(.project-item-featured) .project-media {
    width: 100%;
    min-height: 0;
    aspect-ratio: 3 / 2;
    flex: 0 0 auto;
  }

  .project-number {
    top: 12px;
    right: 12px;
    min-width: 40px;
    min-height: 40px;
    font-size: 9px;
  }

  .project-photo-label {
    left: 12px;
    bottom: 12px;
    font-size: 6px;
  }

  .project-copy,
  .project-list > div:nth-child(2) .project-copy,
  .project-list > .project-item:not(.project-item-featured) .project-copy,
  .project-list > .project-item:not(.project-item-featured):nth-child(2) .project-copy {
    position: relative;
    width: 100%;
    min-height: 0;
    margin: 0;
    padding: 24px 62px 24px 20px;
    border: 0;
    border-top: 1px solid rgba(29, 213, 255, .12);
    background:
      radial-gradient(circle at 100% 0%, rgba(29, 213, 255, .06), transparent 44%),
      rgba(5, 8, 10, .98);
  }

  .project-copy::before,
  .project-list > .project-item:not(.project-item-featured) .project-copy::before {
    left: 20px;
    top: 0;
    width: 38px;
  }

  .project-copy small {
    max-width: 100%;
    padding: 5px 7px;
    font-size: 7px;
  }

  .project-copy h3,
  .project-list > .project-item:not(.project-item-featured) .project-copy h3 {
    max-width: 10ch;
    margin: 11px 0 10px;
    font-size: clamp(31px, 9.8vw, 42px);
    line-height: .94;
  }

  .project-copy p {
    max-width: 29ch;
    font-size: 12px;
    line-height: 1.55;
  }

  .project-copy button {
    position: absolute;
    right: 14px;
    top: 18px;
    width: 40px;
    height: 40px;
    margin: 0;
  }
}

@media (max-width: 390px) {
  .project-copy,
  .project-list > div:nth-child(2) .project-copy,
  .project-list > .project-item:not(.project-item-featured) .project-copy,
  .project-list > .project-item:not(.project-item-featured):nth-child(2) .project-copy {
    padding: 22px 58px 22px 17px;
  }

  .project-copy::before,
  .project-list > .project-item:not(.project-item-featured) .project-copy::before {
    left: 17px;
  }

  .project-copy h3,
  .project-list > .project-item:not(.project-item-featured) .project-copy h3 {
    font-size: clamp(29px, 9.3vw, 38px);
  }
}

/* =========================================================
   2026 MINIMAL LOADER + LIQUID GLASS NAVIGATION UPGRADE
   Final overrides: intentionally placed at the end.
   ========================================================= */

body.loading {
  overflow: hidden !important;
}

.site-loader.minimal-loader-v2 {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 42%, rgba(29, 213, 255, .09), transparent 28%),
    #040708;
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transition: opacity .38s ease, visibility 0s linear .4s;
  isolation: isolate;
}

.site-loader.minimal-loader-v2::before {
  content: '';
  position: absolute;
  width: min(46vw, 520px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(29, 213, 255, .04);
  filter: blur(70px);
  transform: translateY(-7%);
  pointer-events: none;
}

.minimal-loader-v2__content {
  position: relative;
  z-index: 1;
  width: min(180px, calc(100vw - 64px));
  display: grid;
  justify-items: center;
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: opacity .26s ease, transform .38s cubic-bezier(.22, 1, .36, 1);
}

.minimal-loader-v2__mark {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .11), rgba(255, 255, 255, .025)),
    rgba(6, 12, 15, .68);
  box-shadow:
    0 22px 52px rgba(0, 0, 0, .34),
    inset 0 1px 0 rgba(255, 255, 255, .16),
    0 0 36px rgba(29, 213, 255, .08);
  backdrop-filter: blur(18px) saturate(135%);
  -webkit-backdrop-filter: blur(18px) saturate(135%);
  animation: minimalLoaderMarkIn .58s cubic-bezier(.22, 1, .36, 1) both;
}

.minimal-loader-v2__mark img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  filter: drop-shadow(0 0 13px rgba(29, 213, 255, .16));
}

.minimal-loader-v2__content p {
  margin: 17px 0 0;
  color: rgba(255, 255, 255, .86);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 9px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .32em;
  text-indent: .32em;
  animation: minimalLoaderTextIn .52s .08s cubic-bezier(.22, 1, .36, 1) both;
}

.minimal-loader-v2__line {
  width: 104px;
  height: 1px;
  margin-top: 17px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, .1);
  animation: minimalLoaderTextIn .52s .13s cubic-bezier(.22, 1, .36, 1) both;
}

.minimal-loader-v2__line span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(29, 213, 255, .35), var(--cyan), #fff);
  box-shadow: 0 0 14px rgba(29, 213, 255, .75);
  transform-origin: left center;
  animation: minimalLoaderProgress .76s cubic-bezier(.22, .8, .2, 1) both;
}

.site-loader.minimal-loader-v2.is-complete {
  opacity: 0;
  pointer-events: none;
}

.site-loader.minimal-loader-v2.is-complete .minimal-loader-v2__content {
  opacity: 0;
  transform: translateY(-8px) scale(.98);
}

.site-loader.minimal-loader-v2.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@keyframes minimalLoaderMarkIn {
  from { opacity: 0; transform: translateY(10px) scale(.94); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes minimalLoaderTextIn {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes minimalLoaderProgress {
  0% { transform: scaleX(0); opacity: .35; }
  70% { transform: scaleX(.86); opacity: 1; }
  100% { transform: scaleX(1); opacity: 1; }
}

/* Floating Apple-inspired liquid glass navigation */
.nav-shell,
.leo-clean-page .nav-shell,
.leo-info-page .nav-shell {
  position: fixed;
  top: 14px;
  left: 50%;
  z-index: 100;
  width: min(1160px, calc(100% - 34px));
  min-height: 64px;
  padding: 7px 8px 7px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .095), rgba(255, 255, 255, .025) 48%, rgba(29, 213, 255, .045)),
    rgba(4, 9, 12, .62);
  box-shadow:
    0 18px 55px rgba(0, 0, 0, .3),
    inset 0 1px 0 rgba(255, 255, 255, .15),
    inset 0 -1px 0 rgba(29, 213, 255, .035);
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  opacity: 0;
  transform: translate(-50%, -14px) scale(.985);
  animation: none !important;
  transition:
    top .35s ease,
    width .35s ease,
    min-height .35s ease,
    background .35s ease,
    border-color .35s ease,
    box-shadow .35s ease,
    opacity .6s cubic-bezier(.22, 1, .36, 1),
    transform .6s cubic-bezier(.22, 1, .36, 1);
}

.nav-shell::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 15% -50%, rgba(255, 255, 255, .24), transparent 32%),
    linear-gradient(90deg, transparent, rgba(29, 213, 255, .045), transparent);
  pointer-events: none;
}

body.page-ready .nav-shell {
  opacity: 1;
  transform: translate(-50%, 0) scale(1);
}

.nav-shell.scrolled,
.leo-clean-page .nav-shell.scrolled,
.leo-info-page .nav-shell.scrolled {
  top: 8px;
  width: min(1080px, calc(100% - 26px));
  min-height: 58px;
  border-color: rgba(29, 213, 255, .16);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .085), rgba(255, 255, 255, .018) 55%, rgba(29, 213, 255, .035)),
    rgba(3, 8, 11, .79);
  box-shadow:
    0 15px 45px rgba(0, 0, 0, .38),
    inset 0 1px 0 rgba(255, 255, 255, .13);
}

.brand-mark {
  position: relative;
  z-index: 2;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 2px 12px 2px 2px;
  border-radius: 999px;
}

.brand-logo {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 14px;
  object-fit: contain;
  background: rgba(255, 255, 255, .035);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, .08),
    0 7px 18px rgba(0, 0, 0, .18);
  filter: drop-shadow(0 0 11px rgba(29, 213, 255, .13));
  transition: transform .35s cubic-bezier(.22, 1, .36, 1), background .3s ease;
}

.brand-mark:hover .brand-logo {
  transform: rotate(-3deg) scale(1.04);
  background: rgba(29, 213, 255, .055);
}

.brand-mark strong {
  display: block;
  color: rgba(255, 255, 255, .95);
  font-size: 10px;
  line-height: 1.1;
  letter-spacing: .18em;
}

.brand-mark small {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, .4);
  font-size: 6.5px;
  line-height: 1.1;
  letter-spacing: .15em;
}

.desktop-nav {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 999px;
  background: rgba(0, 0, 0, .17);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .035);
}

.desktop-nav > button,
.desktop-nav > a,
.desktop-nav .nav-page-link,
.desktop-nav .nav-article-link {
  position: relative;
  min-height: 38px;
  padding: 0 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(235, 243, 246, .62);
  font-family: inherit;
  font-size: 10px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .025em;
  white-space: nowrap;
  cursor: pointer;
  transition: color .25s ease, background .25s ease, transform .25s ease, box-shadow .25s ease;
}

.desktop-nav > button:hover,
.desktop-nav > a:hover,
.desktop-nav .nav-page-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, .055);
  transform: translateY(-1px);
}

.desktop-nav > button.is-active {
  color: #061014;
  background: var(--cyan);
  box-shadow: 0 5px 18px rgba(29, 213, 255, .24), inset 0 1px 0 rgba(255, 255, 255, .55);
}

.desktop-nav .nav-article-link {
  margin-left: 3px;
  padding-inline: 15px;
  color: var(--cyan);
  border: 1px solid rgba(29, 213, 255, .24);
  background: rgba(29, 213, 255, .055);
}

.desktop-nav .nav-article-link:hover {
  color: #041014;
  border-color: var(--cyan);
  background: var(--cyan);
  box-shadow: 0 7px 20px rgba(29, 213, 255, .2);
}

.desktop-nav .icon {
  width: 13px;
  height: 13px;
}

.menu-toggle {
  position: relative;
  z-index: 2;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 50%;
  background: rgba(255, 255, 255, .045);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
  transition: background .25s ease, border-color .25s ease, color .25s ease, transform .25s ease;
}

.menu-toggle:hover {
  color: #061014;
  border-color: var(--cyan);
  background: var(--cyan);
  transform: scale(1.03);
}

/* Refined mobile glass menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 140;
  display: grid !important;
  place-items: center;
  padding: 18px;
  background: rgba(1, 5, 7, .48);
  backdrop-filter: blur(22px) saturate(125%);
  -webkit-backdrop-filter: blur(22px) saturate(125%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .28s ease, visibility 0s linear .3s;
}

.mobile-menu::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 8%, rgba(29, 213, 255, .15), transparent 28%),
    radial-gradient(circle at 8% 90%, rgba(29, 213, 255, .07), transparent 25%);
  pointer-events: none;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

.mobile-menu-inner {
  position: relative;
  z-index: 2;
  width: min(560px, 100%);
  min-height: auto;
  max-height: calc(100dvh - 36px);
  overflow: auto;
  margin: 0;
  padding: clamp(72px, 11vh, 96px) clamp(24px, 7vw, 44px) clamp(28px, 6vh, 44px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .018)),
    rgba(4, 10, 13, .86);
  box-shadow:
    0 34px 90px rgba(0, 0, 0, .48),
    inset 0 1px 0 rgba(255, 255, 255, .13);
  transform: translateY(18px) scale(.975);
  transition: transform .45s cubic-bezier(.22, 1, .36, 1);
}

.mobile-menu.open .mobile-menu-inner {
  transform: translateY(0) scale(1);
}

.menu-close {
  position: absolute;
  z-index: 4;
  top: max(30px, env(safe-area-inset-top));
  right: 30px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
  color: #fff;
  cursor: pointer;
  transition: transform .25s ease, background .25s ease, color .25s ease;
}

.menu-close:hover {
  color: #061014;
  background: var(--cyan);
  transform: rotate(4deg);
}

.mobile-menu-inner button,
.mobile-menu-inner a {
  position: relative;
  width: 100%;
  min-height: 59px;
  padding: 0 6px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .075);
  border-radius: 0;
  background: transparent;
  color: rgba(255, 255, 255, .92);
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(24px, 7vw, 38px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -.035em;
  text-align: left;
  cursor: pointer;
  transition: color .22s ease, padding-left .3s cubic-bezier(.22, 1, .36, 1);
}

.mobile-menu-inner button:hover,
.mobile-menu-inner a:hover {
  padding-left: 13px;
  color: var(--cyan);
}

.mobile-menu-inner button > span:first-child,
.mobile-menu-inner a > span:first-child:not([data-icon]) {
  min-width: 22px;
  color: rgba(29, 213, 255, .65);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .12em;
}

.mobile-menu-inner > * {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .36s ease, transform .42s cubic-bezier(.22, 1, .36, 1), color .22s ease, padding-left .3s ease;
}

.mobile-menu.open .mobile-menu-inner > * {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .nav-shell,
  .leo-clean-page .nav-shell,
  .leo-info-page .nav-shell {
    width: min(1040px, calc(100% - 24px));
  }

  .desktop-nav > button,
  .desktop-nav > a,
  .desktop-nav .nav-page-link,
  .desktop-nav .nav-article-link {
    padding-inline: 10px;
    font-size: 9px;
  }
}

@media (max-width: 1024px) {
  .desktop-nav { display: none; }
  .menu-toggle { display: grid; }

  .nav-shell,
  .leo-clean-page .nav-shell,
  .leo-info-page .nav-shell {
    width: calc(100% - 24px);
  }
}

@media (max-width: 700px) {
  .nav-shell,
  .leo-clean-page .nav-shell,
  .leo-info-page .nav-shell,
  .nav-shell.scrolled,
  .leo-clean-page .nav-shell.scrolled,
  .leo-info-page .nav-shell.scrolled {
    top: 9px;
    width: calc(100% - 18px);
    min-height: 58px;
    padding: 6px 7px;
    border-radius: 20px;
  }

  .brand-logo {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
    border-radius: 13px;
  }

  .brand-mark {
    gap: 8px;
    padding-right: 6px;
  }

  .brand-mark strong {
    max-width: 170px;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 9px;
  }

  .brand-mark small {
    max-width: 170px;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 6px;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .minimal-loader-v2__mark {
    width: 62px;
    height: 62px;
    border-radius: 20px;
  }

  .minimal-loader-v2__mark img {
    width: 46px;
    height: 46px;
  }
}

@media (max-width: 390px) {
  .brand-mark strong { max-width: 142px; }
  .brand-mark small { max-width: 142px; }

  .mobile-menu { padding: 10px; }
  .mobile-menu-inner {
    max-height: calc(100dvh - 20px);
    padding: 68px 20px 24px;
    border-radius: 24px;
  }
  .menu-close { top: 22px; right: 22px; }
  .mobile-menu-inner button,
  .mobile-menu-inner a { min-height: 54px; }
}

@media (prefers-reduced-motion: reduce) {
  .minimal-loader-v2__mark,
  .minimal-loader-v2__content p,
  .minimal-loader-v2__line,
  .minimal-loader-v2__line span {
    animation: none !important;
  }

  .nav-shell,
  body.page-ready .nav-shell {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

/* =========================================================
   CONTINUOUS HOME BACKGROUND + BORDERLESS BLENDED NAV
   Requested update: remove the homepage photo banner, keep
   the hero content, and blend navigation into the page.
   ========================================================= */

/* Homepage hero now uses the same fixed site background as every section. */
body:not(.leo-info-page):not(.leo-clean-page) .hero.hero-redeveloped {
  background: transparent !important;
  isolation: auto;
}

body:not(.leo-info-page):not(.leo-clean-page) .hero.hero-redeveloped .hero-photo-backdrop {
  display: none !important;
  background: none !important;
  opacity: 0 !important;
}

body:not(.leo-info-page):not(.leo-clean-page) .hero.hero-redeveloped::before,
body:not(.leo-info-page):not(.leo-clean-page) .hero.hero-redeveloped::after {
  display: none !important;
  content: none !important;
}

/* Keep the typography clear without creating another banner panel. */
body:not(.leo-info-page):not(.leo-clean-page) .hero.hero-redeveloped h1,
body:not(.leo-info-page):not(.leo-clean-page) .hero-tagline {
  text-shadow: 0 12px 42px rgba(0, 0, 0, .38);
}

/* Borderless navigation that visually melts into the shared background. */
.nav-shell,
.leo-clean-page .nav-shell,
.leo-info-page .nav-shell,
.nav-shell.scrolled,
.leo-clean-page .nav-shell.scrolled,
.leo-info-page .nav-shell.scrolled {
  border: 0 !important;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .012) 54%, rgba(29, 213, 255, .022)),
    rgba(4, 9, 12, .28) !important;
  box-shadow: 0 14px 44px rgba(0, 0, 0, .16) !important;
  backdrop-filter: blur(24px) saturate(135%) !important;
  -webkit-backdrop-filter: blur(24px) saturate(135%) !important;
}

.nav-shell::before {
  opacity: .5;
  background:
    radial-gradient(circle at 16% -60%, rgba(255, 255, 255, .13), transparent 35%),
    linear-gradient(90deg, transparent, rgba(29, 213, 255, .022), transparent) !important;
}

.desktop-nav {
  border: 0 !important;
  background: rgba(0, 0, 0, .08) !important;
  box-shadow: none !important;
}

.desktop-nav .nav-article-link,
.menu-toggle,
.brand-logo {
  border: 0 !important;
  box-shadow: none !important;
}

.desktop-nav .nav-article-link {
  background: rgba(29, 213, 255, .045) !important;
}

.menu-toggle {
  background: rgba(255, 255, 255, .035) !important;
}

/* Remove line separators from the mobile navigation too. */
.mobile-menu-inner button,
.mobile-menu-inner a,
.menu-close {
  border: 0 !important;
  border-bottom: 0 !important;
}

@media (max-width: 700px) {
  .nav-shell,
  .nav-shell.scrolled,
  .leo-clean-page .nav-shell,
  .leo-info-page .nav-shell {
    background: rgba(4, 9, 12, .34) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .14) !important;
  }
}

/* =========================================================
   STATIC NAV LOGO + BALANCED HOME TITLE SPACING
   Requested update: keep the navigation logo completely still
   and separate MORATUWA / RATMALANA clearly at every width.
   ========================================================= */

/* Remove rotation, scale and any other motion from the navbar logo. */
.nav-shell .brand-logo,
.leo-clean-page .nav-shell .brand-logo,
.leo-info-page .nav-shell .brand-logo {
  animation: none !important;
  transition: none !important;
  transform: none !important;
}

.nav-shell .brand-mark:hover .brand-logo,
.leo-clean-page .nav-shell .brand-mark:hover .brand-logo,
.leo-info-page .nav-shell .brand-mark:hover .brand-logo {
  animation: none !important;
  transform: none !important;
  background: rgba(255, 255, 255, .035) !important;
}

/* Use real space between the two display lines instead of a compressed line-height. */
body:not(.leo-info-page):not(.leo-clean-page) .hero.hero-redeveloped h1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: clamp(8px, .8vw, 15px);
  line-height: 1;
}

body:not(.leo-info-page):not(.leo-clean-page) .hero.hero-redeveloped h1 span {
  display: block;
  line-height: .88;
}

@media (max-width: 700px) {
  body:not(.leo-info-page):not(.leo-clean-page) .hero.hero-redeveloped h1 {
    row-gap: clamp(7px, 2.2vw, 11px);
  }

  body:not(.leo-info-page):not(.leo-clean-page) .hero.hero-redeveloped h1 span {
    line-height: .92;
  }
}

@media (max-width: 390px) {
  body:not(.leo-info-page):not(.leo-clean-page) .hero.hero-redeveloped h1 {
    row-gap: 7px;
  }
}


/* =========================================================
   REFINED HOME TITLE TRACKING + SITE ICON SUPPORT
   Keeps the two-line title open and readable on every device.
   ========================================================= */
body:not(.leo-info-page):not(.leo-clean-page) .hero.hero-redeveloped h1 {
  letter-spacing: -0.035em !important;
  font-kerning: normal;
  text-rendering: geometricPrecision;
}

body:not(.leo-info-page):not(.leo-clean-page) .hero.hero-redeveloped h1 span {
  letter-spacing: inherit;
}

body:not(.leo-info-page):not(.leo-clean-page) .hero.hero-redeveloped h1 .outline-text {
  letter-spacing: -0.025em;
}

@media (max-width: 700px) {
  body:not(.leo-info-page):not(.leo-clean-page) .hero.hero-redeveloped h1 {
    letter-spacing: -0.025em !important;
  }

  body:not(.leo-info-page):not(.leo-clean-page) .hero.hero-redeveloped h1 .outline-text {
    letter-spacing: -0.015em;
  }
}

@media (max-width: 390px) {
  body:not(.leo-info-page):not(.leo-clean-page) .hero.hero-redeveloped h1 {
    letter-spacing: -0.018em !important;
  }
}


/* =========================================================
   OUTLINED ANIME-STYLE TEXT LOADER — ALL PAGES
   Text only. No logo or image.
   ========================================================= */
.site-loader.outline-text-loader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 48%, rgba(29, 213, 255, .07), transparent 34%),
    #030607;
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  isolation: isolate;
  transition: opacity .4s ease, visibility 0s linear .42s;
}

.site-loader.outline-text-loader::before,
.site-loader.outline-text-loader::after {
  content: '';
  position: absolute;
  left: -18vw;
  width: 136vw;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(29, 213, 255, .38), transparent);
  opacity: 0;
  transform: rotate(-8deg) translateX(-35%);
  animation: outlineLoaderSlash 1.1s cubic-bezier(.22, 1, .36, 1) both;
}

.site-loader.outline-text-loader::before { top: 38%; }
.site-loader.outline-text-loader::after {
  top: 61%;
  animation-delay: .13s;
}

.outline-loader__content {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  width: min(760px, calc(100vw - 48px));
  transform: translateY(0) scale(1);
  opacity: 1;
  transition: opacity .25s ease, transform .42s cubic-bezier(.22, 1, .36, 1);
}

.outline-loader__kicker,
.outline-loader__status {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, .42);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 9px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .48em;
  text-indent: .48em;
  opacity: 0;
  animation: outlineLoaderMetaIn .45s .08s ease forwards;
}

.outline-loader__title {
  position: relative;
  margin: 18px 0 19px;
  line-height: .9;
  overflow: hidden;
}

.outline-loader__title span {
  position: relative;
  display: block;
  color: transparent;
  -webkit-text-stroke: clamp(1px, .12vw, 2px) rgba(255, 255, 255, .8);
  font-family: 'Bebas Neue', 'Arial Narrow', sans-serif;
  font-size: clamp(74px, 13vw, 168px);
  font-weight: 400;
  letter-spacing: .075em;
  text-indent: .075em;
  white-space: nowrap;
  opacity: 0;
  transform: scaleX(1.06) translateY(12px);
  animation: outlineLoaderTitleIn .55s .06s cubic-bezier(.16, 1, .3, 1) forwards;
}

.outline-loader__title span::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  color: transparent;
  -webkit-text-stroke: clamp(1px, .12vw, 2px) #1dd5ff;
  filter: drop-shadow(0 0 8px rgba(29, 213, 255, .42));
  clip-path: inset(0 100% 0 0);
  animation: outlineLoaderScan .66s .28s cubic-bezier(.65, 0, .35, 1) forwards;
}

.outline-loader__rule {
  width: min(230px, 44vw);
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, .1);
}

.outline-loader__rule i {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, #1dd5ff, rgba(255,255,255,.9), transparent);
  transform: translateX(-100%);
  animation: outlineLoaderRule .72s .2s cubic-bezier(.22, .8, .2, 1) forwards;
}

.outline-loader__status {
  margin-top: 14px;
  font-size: 8px;
  letter-spacing: .55em;
  text-indent: .55em;
  animation-delay: .2s;
}

.site-loader.outline-text-loader.is-complete {
  opacity: 0;
  pointer-events: none;
}

.site-loader.outline-text-loader.is-complete .outline-loader__content {
  opacity: 0;
  transform: scale(1.035);
}

.site-loader.outline-text-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@keyframes outlineLoaderTitleIn {
  to { opacity: 1; transform: scaleX(1) translateY(0); }
}

@keyframes outlineLoaderMetaIn {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes outlineLoaderScan {
  0% { clip-path: inset(0 100% 0 0); }
  48% { clip-path: inset(0 0 0 0); }
  100% { clip-path: inset(0 0 0 100%); }
}

@keyframes outlineLoaderRule {
  0% { transform: translateX(-100%); opacity: .2; }
  70% { opacity: 1; }
  100% { transform: translateX(100%); opacity: .2; }
}

@keyframes outlineLoaderSlash {
  0% { opacity: 0; transform: rotate(-8deg) translateX(-35%); }
  28% { opacity: .65; }
  100% { opacity: 0; transform: rotate(-8deg) translateX(34%); }
}

@media (max-width: 600px) {
  .outline-loader__content { width: calc(100vw - 28px); }
  .outline-loader__title { margin: 16px 0 17px; }
  .outline-loader__title span {
    font-size: clamp(64px, 24vw, 112px);
    letter-spacing: .045em;
    text-indent: .045em;
  }
  .outline-loader__kicker { font-size: 8px; letter-spacing: .42em; text-indent: .42em; }
}

@media (prefers-reduced-motion: reduce) {
  .site-loader.outline-text-loader::before,
  .site-loader.outline-text-loader::after,
  .outline-loader__title span,
  .outline-loader__title span::after,
  .outline-loader__kicker,
  .outline-loader__status,
  .outline-loader__rule i {
    animation: none !important;
  }
  .outline-loader__title span,
  .outline-loader__kicker,
  .outline-loader__status { opacity: 1; transform: none; }
  .outline-loader__title span::after { display: none; }
}


/* =========================================================
   BLOCK TEXT LOADER — ALL PAGES
   Text-only loader requested by the client. No logo or image.
   ========================================================= */
.site-loader.block-text-loader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #030607;
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transition: opacity .36s ease, visibility 0s linear .38s;
}

.site-loader.block-text-loader::before,
.site-loader.block-text-loader::after {
  content: none !important;
  display: none !important;
}

.block-text-loader .loader {
  --color-1: #fff;
  --size: 1px;

  display: inline-block;
  position: relative;
  padding: 0 calc(48 * var(--size));
  color: var(--color-1);
  font-family: Arial, Helvetica, sans-serif;
  font-size: calc(48 * var(--size));
  font-weight: 500;
  line-height: calc(86 * var(--size));
  text-align: center;
  letter-spacing: -.035em;
  white-space: nowrap;
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: opacity .22s ease, transform .36s cubic-bezier(.22, 1, .36, 1);
}

.block-text-loader .loader::before,
.block-text-loader .loader::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  width: calc(15 * var(--size));
  height: calc(15 * var(--size));
  background: currentColor;
  animation: blockTextLoad .7s infinite alternate ease-in-out;
}

.block-text-loader .loader::after {
  top: auto;
  bottom: 0;
}

.site-loader.block-text-loader.is-complete {
  opacity: 0;
  pointer-events: none;
}

.site-loader.block-text-loader.is-complete .loader {
  opacity: 0;
  transform: translateY(-5px) scale(.985);
}

.site-loader.block-text-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@keyframes blockTextLoad {
  0% {
    left: 0;
    width: calc(15 * var(--size));
    height: calc(43 * var(--size));
    transform: translateX(0);
  }
  50% {
    width: calc(40 * var(--size));
    height: calc(10 * var(--size));
  }
  100% {
    left: 100%;
    width: calc(15 * var(--size));
    height: calc(43 * var(--size));
    transform: translateX(-100%);
  }
}

@media (max-width: 600px) {
  .block-text-loader .loader {
    --size: .78px;
  }
}

@media (max-width: 380px) {
  .block-text-loader .loader {
    --size: .68px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .block-text-loader .loader::before,
  .block-text-loader .loader::after {
    animation: none !important;
    height: calc(10 * var(--size));
    width: calc(40 * var(--size));
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }

  .block-text-loader .loader::after {
    top: auto;
    bottom: 0;
  }
}


/* =========================================================
   BASIC PROGRESS-ONLY LOADER — ALL PAGES
   No logo and no visible text.
   ========================================================= */
.site-loader.progress-only-loader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #030607;
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transition: opacity .3s ease, visibility 0s linear .32s;
}

.site-loader.progress-only-loader::before,
.site-loader.progress-only-loader::after {
  content: none !important;
  display: none !important;
}

.progress-only-loader__track {
  width: min(210px, 52vw);
  height: 3px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, .13);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .025);
  opacity: 1;
  transform: scale(1);
  transition: opacity .18s ease, transform .28s ease;
}

.progress-only-loader__track span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: #1dd5ff;
  box-shadow: 0 0 12px rgba(29, 213, 255, .52);
  transform: scaleX(0);
  transform-origin: left center;
  animation: progressOnlyFill .96s cubic-bezier(.22, 1, .36, 1) forwards;
}

.site-loader.progress-only-loader.is-complete {
  opacity: 0;
  pointer-events: none;
}

.site-loader.progress-only-loader.is-complete .progress-only-loader__track {
  opacity: 0;
  transform: scaleX(.98);
}

.site-loader.progress-only-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@keyframes progressOnlyFill {
  0% { transform: scaleX(0); }
  35% { transform: scaleX(.28); }
  70% { transform: scaleX(.72); }
  100% { transform: scaleX(1); }
}

@media (max-width: 480px) {
  .progress-only-loader__track {
    width: min(170px, 56vw);
    height: 2px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .progress-only-loader__track span {
    animation-duration: .01ms !important;
  }
}


/* Feature upgrade: project pages, membership and contact */
.project-copy .project-open{width:52px;height:52px;border-radius:50%;display:inline-grid;place-items:center;background:var(--cyan);color:#001015;text-decoration:none;transition:transform .25s ease,box-shadow .25s ease}.project-copy .project-open:hover{transform:translateY(-3px);box-shadow:0 10px 30px rgba(29,213,255,.28)}
.membership-contact-grid{display:grid;grid-template-columns:minmax(0,1.35fr) minmax(300px,.65fr);gap:24px;align-items:start;margin-top:52px}.membership-form,.contact-card{border-radius:30px;background:rgba(255,255,255,.045);backdrop-filter:blur(22px);-webkit-backdrop-filter:blur(22px);box-shadow:0 24px 80px rgba(0,0,0,.24);padding:32px}.form-grid{display:grid;grid-template-columns:1fr 1fr;gap:18px}.form-grid label{display:grid;gap:9px}.form-grid label span,.consent-row span{font-size:.78rem;letter-spacing:.08em;color:rgba(255,255,255,.7)}.form-wide{grid-column:1/-1}.membership-form input,.membership-form textarea{width:100%;border:0;outline:0;border-radius:15px;background:rgba(255,255,255,.075);color:#fff;padding:14px 15px;font:inherit;box-shadow:inset 0 0 0 1px rgba(255,255,255,.06)}.membership-form input:focus,.membership-form textarea:focus{box-shadow:inset 0 0 0 1px rgba(29,213,255,.55),0 0 0 4px rgba(29,213,255,.08)}.consent-row{display:flex;gap:10px;align-items:flex-start;margin:20px 0}.consent-row input{width:auto;margin-top:3px}.form-actions{display:flex;align-items:center;gap:18px;flex-wrap:wrap}.form-status{font-size:.85rem;color:var(--cyan);margin:0}.contact-card h3{font-size:clamp(2rem,4vw,3.4rem);line-height:1;margin:22px 0 30px}.contact-list{display:grid;gap:0}.contact-list>a,.contact-list>div{display:grid;gap:5px;padding:18px 0;text-decoration:none;color:#fff;border-bottom:1px solid rgba(255,255,255,.08);overflow-wrap:anywhere}.contact-list small{color:var(--cyan);text-transform:uppercase;letter-spacing:.12em}.contact-list strong{font-weight:500}.detail-hero{padding-top:190px;padding-bottom:70px}.detail-hero h1{font-size:clamp(3.5rem,10vw,9rem);line-height:.9;margin:20px 0}.detail-hero>p:last-child{font-size:1.15rem;color:rgba(255,255,255,.7)}.back-link{color:rgba(255,255,255,.65);text-decoration:none}.project-detail{display:grid;grid-template-columns:1.15fr .85fr;gap:50px;align-items:center}.project-detail-image img{display:block;width:100%;aspect-ratio:4/3;object-fit:cover;border-radius:34px}.project-detail-copy h2{font-size:clamp(2rem,4vw,4rem);line-height:1.05}.project-detail-copy p{color:rgba(255,255,255,.7);line-height:1.8}.project-next{padding-top:40px}.coming-page{min-height:100vh;display:grid;place-items:center;text-align:center;padding-top:160px}.coming-inner{max-width:850px}.coming-inner h1{font-size:clamp(5rem,16vw,13rem);line-height:.78;margin:30px 0 45px}.coming-inner>p{max-width:650px;margin:0 auto 35px;color:rgba(255,255,255,.7);line-height:1.75}
@media(max-width:900px){.membership-contact-grid,.project-detail{grid-template-columns:1fr}.form-grid{grid-template-columns:1fr}.form-wide{grid-column:auto}.membership-form,.contact-card{padding:24px}.detail-hero{padding-top:150px}.project-detail{gap:28px}}
@media(max-width:560px){.membership-form,.contact-card{border-radius:22px;padding:20px}.form-actions .primary-btn{width:100%;justify-content:center}.detail-hero h1{font-size:3.5rem}.coming-inner h1{font-size:5rem}}

/* =========================================================
   SINGLE PROJECTS PAGE + LOCAL ADMIN-CONNECTED CONTENT
   ========================================================= */
.projects-library-hero{padding-top:190px;padding-bottom:70px}.projects-library-hero h1{max-width:1200px;margin:24px 0 28px;font-size:clamp(4rem,10vw,9.5rem);line-height:.88;letter-spacing:-.065em}.projects-library-lead{max-width:680px;color:rgba(255,255,255,.67);font-size:clamp(1rem,2vw,1.25rem);line-height:1.75}.projects-library{padding-top:40px}.projects-library-list{display:grid;gap:110px}.projects-library-item{scroll-margin-top:135px;display:grid;grid-template-columns:minmax(0,1.08fr) minmax(340px,.92fr);gap:clamp(32px,6vw,90px);align-items:center;padding-bottom:100px;border-bottom:1px solid rgba(255,255,255,.08)}.projects-library-item:nth-child(even) .projects-library-media{order:2}.projects-library-media{position:relative;min-height:430px}.projects-library-media img{display:block;width:100%;height:100%;min-height:430px;aspect-ratio:4/3;object-fit:cover;border-radius:36px;box-shadow:0 30px 100px rgba(0,0,0,.36)}.projects-library-media>span{position:absolute;left:22px;bottom:18px;font-size:clamp(3rem,7vw,6rem);font-weight:800;line-height:1;color:rgba(255,255,255,.88);text-shadow:0 8px 30px rgba(0,0,0,.45)}.projects-library-copy h2{margin:22px 0 12px;font-size:clamp(2.7rem,6vw,6rem);line-height:.93;letter-spacing:-.055em}.projects-library-copy>p{color:rgba(255,255,255,.66);font-size:1rem;line-height:1.78}.projects-library-copy .projects-library-summary{color:#fff;font-size:clamp(1.12rem,2vw,1.35rem);line-height:1.5}.projects-library-copy .primary-btn{margin-top:20px}.project-contact-panel{padding-top:20px}.managed-empty{padding:34px;border-radius:26px;background:rgba(255,255,255,.045);color:rgba(255,255,255,.7);text-align:center}.coming-actions{display:flex;justify-content:center;gap:22px;margin-top:28px}.coming-actions a{color:rgba(255,255,255,.72);text-decoration:none;border-bottom:1px solid rgba(29,213,255,.4);padding-bottom:4px}.coming-actions a:hover{color:var(--cyan)}
@media(max-width:900px){.projects-library-hero{padding-top:150px}.projects-library-item{grid-template-columns:1fr;gap:28px;padding-bottom:70px}.projects-library-item:nth-child(even) .projects-library-media{order:0}.projects-library-media,.projects-library-media img{min-height:0}.projects-library-list{gap:72px}}
@media(max-width:560px){.projects-library-hero h1{font-size:3.7rem;letter-spacing:-.05em}.projects-library-media img{border-radius:24px}.projects-library-item{scroll-margin-top:100px}.coming-actions{flex-direction:column;align-items:center;gap:12px}}

/* =========================================================
   PHP CMS PUBLIC PAGES
   ========================================================= */
.cms-public-page .nav-shell{max-width:1440px}
.cms-page-hero{padding-top:190px;padding-bottom:70px;min-height:60vh;display:flex;flex-direction:column;justify-content:flex-end}
.cms-page-hero h1,.cms-empty-card h1{margin:24px 0 30px;font-size:clamp(4rem,10vw,9.5rem);line-height:.88;letter-spacing:-.065em;max-width:1250px}
.cms-page-lead{max-width:720px;margin:0;color:rgba(255,255,255,.68);font-size:clamp(1rem,2vw,1.25rem);line-height:1.75}
.cms-content-section{padding-top:35px}
.cms-project-grid{display:grid;gap:80px}
.cms-project-card{scroll-margin-top:130px;display:grid;grid-template-columns:minmax(0,1.05fr) minmax(340px,.95fr);gap:clamp(28px,6vw,80px);align-items:center;padding-bottom:80px;border-bottom:1px solid rgba(255,255,255,.08)}
.cms-project-card:nth-child(even) .cms-card-image{order:2}
.cms-card-image{position:relative;min-width:0;overflow:hidden;border-radius:32px;background:rgba(255,255,255,.05);aspect-ratio:4/3}
.cms-card-image img{width:100%;height:100%;display:block;object-fit:cover}
.cms-card-image>span{position:absolute;left:20px;bottom:14px;font-size:clamp(2.6rem,6vw,5.8rem);font-weight:900;line-height:1;text-shadow:0 8px 30px #000}
.cms-image-fallback{width:100%;height:100%;min-height:200px;display:grid;place-items:center;background:linear-gradient(135deg,rgba(29,213,255,.22),rgba(255,255,255,.03));font-size:clamp(3rem,8vw,7rem);font-weight:900;color:var(--cyan)}
.cms-card-body small,.cms-exco-copy small{color:var(--cyan);text-transform:uppercase;letter-spacing:.13em;font-weight:700}
.cms-card-body h2,.cms-exco-copy h2{margin:16px 0;font-size:clamp(2.3rem,5vw,5rem);line-height:.95;letter-spacing:-.045em}
.cms-card-body p,.cms-exco-copy p{color:rgba(255,255,255,.66);line-height:1.75}
.cms-card-body .cms-card-summary{font-size:1.15rem;color:#fff;line-height:1.5}
.cms-article-grid,.cms-award-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:24px}
.cms-article-card,.cms-award-card{min-width:0;border-radius:28px;overflow:hidden;background:rgba(255,255,255,.045);box-shadow:inset 0 0 0 1px rgba(255,255,255,.07),0 24px 70px rgba(0,0,0,.18);backdrop-filter:blur(18px)}
.cms-article-card .cms-card-image,.cms-award-card .cms-card-image{border-radius:0;aspect-ratio:16/10}
.cms-article-card .cms-card-body,.cms-award-card .cms-card-body{padding:25px}
.cms-article-card h2,.cms-award-card h2{font-size:clamp(1.7rem,3vw,2.8rem);line-height:1.04}
.cms-meta{display:flex;justify-content:space-between;gap:12px;color:rgba(255,255,255,.55);font-size:.78rem;text-transform:uppercase;letter-spacing:.09em}
.cms-meta span{color:var(--cyan)}
.cms-read-more{margin-top:22px;border-top:1px solid rgba(255,255,255,.08);padding-top:18px}
.cms-read-more summary{display:flex;align-items:center;gap:10px;color:#fff;font-weight:800;cursor:pointer;list-style:none}
.cms-read-more summary::-webkit-details-marker{display:none}.cms-read-more[open] summary{color:var(--cyan)}
.cms-read-more>div{padding-top:16px}.cms-read-more>div small{display:block;margin-top:18px;color:var(--cyan)}
.cms-exco-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:24px}
.cms-exco-card{border-radius:28px;overflow:hidden;background:rgba(255,255,255,.045);box-shadow:inset 0 0 0 1px rgba(255,255,255,.07)}
.cms-exco-image{aspect-ratio:4/5;overflow:hidden;background:rgba(255,255,255,.04)}
.cms-exco-image img{width:100%;height:100%;object-fit:cover;display:block}
.cms-exco-copy{padding:25px}.cms-exco-copy h2{font-size:clamp(1.7rem,3vw,2.7rem)}
.cms-empty-page{min-height:100vh;display:grid;place-items:center;padding-top:160px}
.cms-empty-card{width:min(1100px,100%);padding:clamp(28px,6vw,70px);border-radius:36px;background:rgba(255,255,255,.035);box-shadow:inset 0 0 0 1px rgba(255,255,255,.07);backdrop-filter:blur(20px)}
.cms-empty-card>p:not(.eyebrow){max-width:650px;color:rgba(255,255,255,.65);line-height:1.75;margin:0 0 28px}
.cms-inline-empty{margin-top:40px;padding:28px;border-radius:24px;background:rgba(255,255,255,.04);display:flex;justify-content:space-between;align-items:center;gap:20px}.cms-inline-empty a,.home-article-titles a{color:var(--cyan);text-decoration:none}
.home-article-titles{display:flex;flex-wrap:wrap;gap:10px 20px;margin-top:20px}.home-article-titles a{border-bottom:1px solid rgba(29,213,255,.35);padding-bottom:3px}
@media(max-width:1080px){.cms-article-grid,.cms-award-grid,.cms-exco-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.cms-project-card{grid-template-columns:1fr}.cms-project-card:nth-child(even) .cms-card-image{order:0}}
@media(max-width:780px){.nav-shell{left:12px!important;right:12px!important;width:auto!important}.brand-mark small{max-width:145px;white-space:normal;line-height:1.15}.cms-page-hero{padding-top:145px;min-height:52vh}.cms-page-hero h1,.cms-empty-card h1{font-size:clamp(3.4rem,14vw,6rem);letter-spacing:-.05em}.cms-article-grid,.cms-award-grid,.cms-exco-grid{grid-template-columns:1fr}.cms-project-grid{gap:55px}.cms-project-card{padding-bottom:55px}.cms-card-image{border-radius:22px}.cms-exco-card,.cms-article-card,.cms-award-card{border-radius:22px}.cms-inline-empty{align-items:flex-start;flex-direction:column}.footer-bottom{gap:20px}.footer-bottom>div{display:flex;flex-wrap:wrap;gap:12px 18px}}
@media(max-width:480px){.cms-page-hero,.cms-content-section,.cms-empty-page{padding-left:18px!important;padding-right:18px!important}.cms-page-hero h1,.cms-empty-card h1{font-size:3.35rem}.cms-card-body,.cms-exco-copy,.cms-article-card .cms-card-body,.cms-award-card .cms-card-body{padding:20px}.mobile-menu-inner{gap:4px!important}.mobile-menu-inner a,.mobile-menu-inner button{font-size:clamp(1.25rem,7vw,2rem)!important;padding:8px 0!important}.footer-top{align-items:flex-start;flex-direction:column}.footer-bottom{align-items:flex-start;flex-direction:column}}


/* 2026 project gallery, upcoming project and cleaner mobile footer */
.upcoming-project-section{padding-top:40px}
.upcoming-project-card{display:grid;grid-template-columns:minmax(0,1.25fr) minmax(320px,.75fr);min-height:520px;border-radius:32px;overflow:hidden;background:rgba(255,255,255,.035);box-shadow:inset 0 0 0 1px rgba(255,255,255,.08),0 30px 90px rgba(0,0,0,.24)}
.upcoming-project-media{position:relative;display:block;min-height:420px;overflow:hidden;background:#080b0d}
.upcoming-project-media img{width:100%;height:100%;object-fit:cover;filter:saturate(.8) contrast(1.05);transition:transform .7s cubic-bezier(.2,.8,.2,1)}
.upcoming-project-media:hover img{transform:scale(1.035)}
.upcoming-project-media>span{position:absolute;left:24px;top:24px;padding:9px 13px;border-radius:999px;background:#1dd5ff;color:#001018;font-size:10px;font-weight:900;letter-spacing:.16em}
.upcoming-project-copy{display:flex;flex-direction:column;justify-content:center;padding:clamp(30px,5vw,68px)}
.upcoming-project-copy small,.project-preview-overlay small{color:#1dd5ff;font-size:10px;font-weight:800;letter-spacing:.15em;text-transform:uppercase}
.upcoming-project-copy h3{font-family:'Space Grotesk',sans-serif;font-size:clamp(2.5rem,5vw,5.4rem);letter-spacing:-.055em;line-height:.92;margin:18px 0}
.upcoming-project-copy p{color:var(--muted);line-height:1.75;margin:0 0 30px}
.upcoming-project-copy .primary-btn{align-self:flex-start}
.project-preview-section{padding-top:10px}
.project-preview-grid{display:grid;grid-template-columns:repeat(12,1fr);gap:18px}
.project-preview-card{grid-column:span 4;position:relative;aspect-ratio:4/5;border:0;padding:0;border-radius:24px;overflow:hidden;background:#090b0d;color:#fff;cursor:pointer;text-align:left;box-shadow:inset 0 0 0 1px rgba(255,255,255,.08);transition:transform .35s ease,box-shadow .35s ease}
.project-preview-card:nth-child(5n+1),.project-preview-card:nth-child(5n+5){grid-column:span 6;aspect-ratio:16/10}
.project-preview-card:hover,.project-preview-card:focus-visible{transform:translateY(-6px);box-shadow:inset 0 0 0 1px rgba(29,213,255,.42),0 28px 70px rgba(0,0,0,.28);outline:none}
.project-preview-image,.project-preview-image img{display:block;width:100%;height:100%}
.project-preview-image img{object-fit:cover;filter:grayscale(1) contrast(1.08) brightness(.78);transition:filter .55s ease,transform .7s cubic-bezier(.2,.8,.2,1)}
.project-preview-card:hover img,.project-preview-card:focus-visible img{filter:grayscale(0) contrast(1.02) brightness(.9);transform:scale(1.045)}
.project-preview-overlay{position:absolute;inset:auto 0 0;display:grid;grid-template-columns:1fr auto;align-items:end;gap:10px;padding:70px 24px 24px;background:linear-gradient(transparent,rgba(0,0,0,.88));z-index:2}
.project-preview-overlay small{grid-column:1/-1}
.project-preview-overlay strong{font-family:'Space Grotesk',sans-serif;font-size:clamp(1.45rem,2.6vw,2.65rem);line-height:1;letter-spacing:-.04em}
.project-preview-overlay i{font-style:normal;color:#8a989f;font-size:11px;letter-spacing:.16em}
.project-modal{position:fixed;inset:0;z-index:9998;display:grid;place-items:center;padding:clamp(12px,3vw,36px);visibility:hidden;opacity:0;transition:opacity .28s ease,visibility .28s ease}
.project-modal.is-open{visibility:visible;opacity:1}
.project-modal-backdrop{position:absolute;inset:0;border:0;background:rgba(0,0,0,.78);backdrop-filter:blur(16px);cursor:default}
.project-modal-panel{position:relative;z-index:1;width:min(1120px,100%);max-height:min(850px,92vh);display:grid;grid-template-columns:minmax(0,1.08fr) minmax(360px,.92fr);overflow:auto;border-radius:30px;background:#0a0e11;box-shadow:inset 0 0 0 1px rgba(255,255,255,.1),0 35px 120px rgba(0,0,0,.55);outline:none}
.project-modal-close{position:absolute;right:18px;top:18px;z-index:4;width:44px;height:44px;border:0;border-radius:50%;background:rgba(0,0,0,.65);color:#fff;font-size:28px;cursor:pointer;backdrop-filter:blur(10px)}
.project-modal-image{min-height:580px;background:#050607}
.project-modal-image img{width:100%;height:100%;object-fit:cover}
.project-modal-copy{padding:clamp(32px,5vw,74px);align-self:center}
.project-modal-copy h2{font-family:'Space Grotesk',sans-serif;font-size:clamp(2.8rem,5vw,5.8rem);line-height:.9;letter-spacing:-.06em;margin:22px 0}
.project-modal-summary{font-size:1.12rem;color:#dce7eb;line-height:1.6}
.project-modal-description{color:var(--muted);white-space:pre-line;line-height:1.85;margin-top:24px}
body.project-modal-open{overflow:hidden}
@media(max-width:900px){.upcoming-project-card,.project-modal-panel{grid-template-columns:1fr}.upcoming-project-media{min-height:330px}.project-modal-image{min-height:310px;max-height:40vh}.project-preview-card,.project-preview-card:nth-child(5n+1),.project-preview-card:nth-child(5n+5){grid-column:span 6;aspect-ratio:4/5}}
@media(max-width:620px){.upcoming-project-section{padding-top:10px}.upcoming-project-card{border-radius:22px;min-height:0}.upcoming-project-copy{padding:26px 20px 30px}.upcoming-project-copy h3{font-size:2.65rem}.project-preview-grid{gap:10px}.project-preview-card,.project-preview-card:nth-child(5n+1),.project-preview-card:nth-child(5n+5){grid-column:span 12;aspect-ratio:5/6;border-radius:18px}.project-preview-overlay{padding:64px 18px 18px}.project-modal{padding:8px}.project-modal-panel{border-radius:22px;max-height:96vh}.project-modal-copy{padding:28px 20px 36px}.project-modal-copy h2{font-size:3rem}.project-modal-close{right:12px;top:12px}.footer{border-top:0!important;background:transparent!important;padding-top:42px!important}.footer-top,.footer-bottom{border:0!important;background:transparent!important;box-shadow:none!important;padding-left:0!important;padding-right:0!important}.footer-bottom{padding-top:8px!important}.footer-bottom div{display:flex!important;flex-wrap:wrap!important;gap:10px 16px!important}.footer-bottom a{border:0!important;background:transparent!important;padding:0!important}}

/* Image-only project previews on pointer devices */
@media (hover:hover) and (pointer:fine){
  .project-preview-overlay{opacity:0;transform:translateY(12px);transition:opacity .35s ease,transform .35s ease}
  .project-preview-card:hover .project-preview-overlay,.project-preview-card:focus-visible .project-preview-overlay{opacity:1;transform:translateY(0)}
}
@media(max-width:780px){
  .footer,.footer-top,.footer-bottom{border:0!important;box-shadow:none!important}
  .footer{background:transparent!important}
  .footer-top,.footer-bottom{padding-left:0!important;padding-right:0!important}
  .footer-bottom a{border:0!important;box-shadow:none!important}
}

/* Final mobile refinement across public pages */
@media(max-width:780px){
  html,body{max-width:100%;overflow-x:hidden}
  .nav-shell{top:8px!important;left:8px!important;right:8px!important;width:auto!important;min-height:62px;padding:8px 10px!important;border-radius:18px!important}
  .brand-mark{min-width:0;gap:9px!important}
  .brand-logo{width:40px!important;height:40px!important;flex-basis:40px!important}
  .brand-mark span{min-width:0}
  .brand-mark strong{font-size:10px!important}
  .brand-mark small{font-size:7px!important;letter-spacing:.08em!important;max-width:130px!important}
  .menu-toggle{width:44px!important;height:44px!important;flex:0 0 44px}
  .mobile-menu{padding:18px!important}
  .mobile-menu-inner{width:100%;max-height:calc(100dvh - 90px);overflow:auto;padding:72px 8px 24px!important}
  .section-pad{padding-left:max(18px,env(safe-area-inset-left))!important;padding-right:max(18px,env(safe-area-inset-right))!important}
  .section-title{max-width:100%}
  .section-title h2{overflow-wrap:anywhere}
  .cms-page-hero{padding-top:130px!important}
  .membership-contact-grid,.story-grid{gap:22px!important}
  .membership-form,.contact-card{border-radius:22px!important}
  .form-grid{grid-template-columns:1fr!important}
  .form-wide{grid-column:auto!important}
  .footer-brand h3{overflow-wrap:normal!important;word-break:normal!important}
}
@media(max-width:420px){
  .brand-mark small{display:none!important}
  .hero-values{gap:7px!important}
  .hero-values span{font-size:8px!important}
  .project-modal-image{min-height:250px}
}

/* 2026-08: Square Instagram-style upcoming preview and cleaner mobile homepage */
.upcoming-project-card {
  grid-template-columns: minmax(340px, 520px) minmax(0, 1fr);
  align-items: center;
}
.upcoming-project-media {
  width: 100%;
  min-height: 0 !important;
  height: auto;
  aspect-ratio: 1 / 1;
  align-self: center;
}
.upcoming-project-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 900px) {
  .upcoming-project-card {
    width: min(100%, 680px);
    margin-inline: auto;
    grid-template-columns: 1fr;
  }
  .upcoming-project-media {
    min-height: 0 !important;
    aspect-ratio: 1 / 1;
  }
}

@media (max-width: 620px) {
  /* Hide the two blocks shown in the supplied mobile screenshot. */
  .membership-contact-grid .contact-card,
  .footer .footer-top {
    display: none !important;
  }

  .membership-contact-grid {
    display: block !important;
    margin-top: 30px !important;
  }

  .footer {
    padding-top: 18px !important;
    padding-bottom: 24px !important;
  }

  .footer-bottom {
    padding-top: 0 !important;
    gap: 14px !important;
  }
}

/* =========================================================
   2026-08-04 — MOBILE NAVIGATION STABILITY FIX
   Removes desktop centering transforms on phones and turns
   the menu into a clean, safe-area-aware full-screen sheet.
   ========================================================= */
@media (max-width: 1024px) {
  .nav-shell,
  .leo-clean-page .nav-shell,
  .leo-info-page .nav-shell,
  .nav-shell.scrolled,
  .leo-clean-page .nav-shell.scrolled,
  .leo-info-page .nav-shell.scrolled {
    top: max(10px, env(safe-area-inset-top)) !important;
    left: max(10px, env(safe-area-inset-left)) !important;
    right: max(10px, env(safe-area-inset-right)) !important;
    width: auto !important;
    min-height: 60px !important;
    padding: 7px 8px 7px 9px !important;
    gap: 8px !important;
    border-radius: 19px !important;
    transform: translateY(-10px) scale(.985) !important;
    transform-origin: top center;
  }

  body.page-ready .nav-shell,
  body.page-ready .leo-clean-page .nav-shell,
  body.page-ready .leo-info-page .nav-shell {
    transform: none !important;
  }

  .brand-mark {
    max-width: calc(100% - 54px);
    min-width: 0 !important;
    padding: 0 !important;
    gap: 9px !important;
  }

  .brand-logo {
    width: 40px !important;
    height: 40px !important;
    flex: 0 0 40px !important;
    border-radius: 12px !important;
  }

  .brand-mark span {
    min-width: 0;
    overflow: hidden;
  }

  .brand-mark strong,
  .brand-mark small {
    max-width: 100% !important;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .brand-mark strong {
    font-size: 9px !important;
    line-height: 1.15;
    letter-spacing: .12em !important;
  }

  .brand-mark small {
    display: block !important;
    margin-top: 2px;
    color: rgba(255,255,255,.58) !important;
    font-size: 6.5px !important;
    line-height: 1.15;
    letter-spacing: .075em !important;
  }

  .menu-toggle {
    display: grid !important;
    width: 42px !important;
    height: 42px !important;
    flex: 0 0 42px !important;
    padding: 0 !important;
    border-radius: 13px !important;
    background: rgba(255,255,255,.055) !important;
    color: #fff !important;
    touch-action: manipulation;
  }

  .menu-toggle svg,
  .menu-close svg {
    width: 20px;
    height: 20px;
  }

  .mobile-menu {
    inset: 0 !important;
    display: block !important;
    padding: 0 !important;
    background:
      radial-gradient(circle at 92% 3%, rgba(29,213,255,.14), transparent 31%),
      #05090b !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    overflow: hidden;
  }

  .mobile-menu::before {
    opacity: .85;
  }

  .mobile-menu-inner {
    width: 100% !important;
    height: 100dvh;
    min-height: 100dvh !important;
    max-height: none !important;
    margin: 0 !important;
    padding:
      calc(max(88px, env(safe-area-inset-top) + 72px))
      max(22px, env(safe-area-inset-right))
      calc(max(28px, env(safe-area-inset-bottom) + 18px))
      max(22px, env(safe-area-inset-left)) !important;
    justify-content: flex-start !important;
    gap: 3px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    overscroll-behavior: contain;
    scrollbar-width: none;
  }

  .mobile-menu-inner::-webkit-scrollbar { display: none; }

  .menu-close {
    top: max(16px, env(safe-area-inset-top)) !important;
    right: max(16px, env(safe-area-inset-right)) !important;
    width: 44px !important;
    height: 44px !important;
    border-radius: 13px !important;
    background: rgba(255,255,255,.065) !important;
    color: #fff !important;
    touch-action: manipulation;
  }

  .mobile-menu-inner a,
  .mobile-menu-inner button {
    min-height: 52px !important;
    padding: 8px 4px !important;
    gap: 12px !important;
    color: rgba(255,255,255,.94) !important;
    font-size: clamp(1.28rem, 6.5vw, 2rem) !important;
    line-height: 1.05 !important;
    letter-spacing: -.035em !important;
    white-space: normal;
    touch-action: manipulation;
  }

  .mobile-menu-inner a > span:first-child:not([data-icon]),
  .mobile-menu-inner button > span:first-child {
    min-width: 25px !important;
    color: var(--cyan) !important;
    font-size: 8px !important;
    letter-spacing: .12em !important;
  }

  body.menu-open {
    overflow: hidden !important;
    overscroll-behavior: none;
    touch-action: none;
  }
}

@media (max-width: 390px) {
  .nav-shell,
  .nav-shell.scrolled,
  .leo-clean-page .nav-shell,
  .leo-info-page .nav-shell {
    left: 8px !important;
    right: 8px !important;
    min-height: 56px !important;
    padding: 6px 7px !important;
    border-radius: 17px !important;
  }

  .brand-logo {
    width: 38px !important;
    height: 38px !important;
    flex-basis: 38px !important;
  }

  .brand-mark small {
    font-size: 6px !important;
  }

  .menu-toggle {
    width: 40px !important;
    height: 40px !important;
    flex-basis: 40px !important;
  }

  .mobile-menu-inner {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }

  .mobile-menu-inner a,
  .mobile-menu-inner button {
    min-height: 49px !important;
    font-size: clamp(1.2rem, 6.2vw, 1.7rem) !important;
  }
}

/* 2026-08: Consistent Instagram-square project artwork everywhere */
.projects .project-media,
.projects .project-b .project-media,
.projects .project-c .project-media {
  width: 100%;
  min-height: 0 !important;
  height: auto !important;
  aspect-ratio: 1 / 1 !important;
  align-self: center;
}

.projects .project-media > img,
.upcoming-project-media > img,
.project-preview-image > img,
.project-modal-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-preview-card,
.project-preview-card:nth-child(5n+1),
.project-preview-card:nth-child(5n+5) {
  aspect-ratio: 1 / 1 !important;
}

.project-modal-image {
  width: 100%;
  min-height: 0 !important;
  max-height: none !important;
  height: auto;
  aspect-ratio: 1 / 1;
  align-self: center;
  overflow: hidden;
}

@media (max-width: 900px) {
  .project-preview-card,
  .project-preview-card:nth-child(5n+1),
  .project-preview-card:nth-child(5n+5) {
    aspect-ratio: 1 / 1 !important;
  }
}

@media (max-width: 620px) {
  .projects .project-media,
  .projects .project-b .project-media,
  .projects .project-c .project-media,
  .project-preview-card,
  .project-preview-card:nth-child(5n+1),
  .project-preview-card:nth-child(5n+5),
  .project-modal-image {
    aspect-ratio: 1 / 1 !important;
  }
}


/* Uniform project cards and clean typography */
:root{--mr-project-image-size:320px}
html,body,button,input,textarea,select{font-kerning:normal;font-variant-ligatures:none;text-rendering:optimizeLegibility;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}
.hero h1,.hero.hero-redeveloped h1,.section-title h2,.cms-page-hero h1,.projects-library-hero h1,.coming-inner h1,.footer-brand h3{letter-spacing:-.025em!important;word-spacing:normal!important;font-kerning:normal!important}
.brand-mark strong,.brand-mark small,.eyebrow,.hero-kicker,.project-photo-label{letter-spacing:.08em!important}
.projects .project-list{display:grid!important;grid-template-columns:repeat(auto-fit,minmax(260px,1fr))!important;gap:24px!important;align-items:stretch!important}
.projects .project-item,.projects .project-item-featured{grid-column:auto!important;width:100%!important;min-width:0!important}
.projects .project-card,.projects .project-card.mobile-scroll-item,.projects .project-list>.project-item:not(.project-item-featured) .project-card{display:flex!important;flex-direction:column!important;width:100%!important;max-width:390px!important;min-height:0!important;height:100%!important;margin-inline:auto!important;transform:none!important}
.projects .project-media,.projects .project-b .project-media,.projects .project-c .project-media,.projects .project-list>.project-item-featured .project-media,.projects .project-list>.project-item:not(.project-item-featured) .project-media{width:100%!important;min-height:0!important;height:auto!important;aspect-ratio:1/1!important;flex:0 0 auto!important}
.projects .project-copy{flex:1 1 auto!important;min-height:220px!important}
.upcoming-project-card{grid-template-columns:var(--mr-project-image-size) minmax(0,1fr)!important;gap:clamp(24px,5vw,56px)!important}
.upcoming-project-media{width:var(--mr-project-image-size)!important;height:var(--mr-project-image-size)!important;min-width:var(--mr-project-image-size)!important;min-height:var(--mr-project-image-size)!important;max-width:var(--mr-project-image-size)!important;max-height:var(--mr-project-image-size)!important;aspect-ratio:1/1!important}
.project-preview-grid{display:grid!important;grid-template-columns:repeat(auto-fit,minmax(260px,var(--mr-project-image-size)))!important;justify-content:center!important;align-items:start!important;gap:24px!important}
.project-preview-card,.project-preview-card:nth-child(5n+1),.project-preview-card:nth-child(5n+5){width:var(--mr-project-image-size)!important;max-width:100%!important;height:var(--mr-project-image-size)!important;min-height:0!important;grid-column:auto!important;grid-row:auto!important;aspect-ratio:1/1!important}
.project-preview-image{width:100%!important;height:100%!important;aspect-ratio:1/1!important}
.project-modal-panel{grid-template-columns:var(--mr-project-image-size) minmax(0,1fr)!important}
.project-modal-image{width:var(--mr-project-image-size)!important;height:var(--mr-project-image-size)!important;min-height:0!important;max-height:var(--mr-project-image-size)!important;aspect-ratio:1/1!important}
@media(max-width:760px){:root{--mr-project-image-size:min(82vw,320px)}.projects .project-list{grid-template-columns:1fr!important}.projects .project-card,.projects .project-card.mobile-scroll-item{max-width:340px!important}.projects .project-copy{min-height:0!important}.upcoming-project-card{grid-template-columns:1fr!important;justify-items:center!important}.upcoming-project-media{width:var(--mr-project-image-size)!important;height:var(--mr-project-image-size)!important;min-width:0!important;min-height:0!important}.upcoming-project-copy{width:min(100%,340px)}.project-preview-grid{grid-template-columns:1fr!important}.project-preview-card,.project-preview-card:nth-child(5n+1),.project-preview-card:nth-child(5n+5){width:var(--mr-project-image-size)!important;height:var(--mr-project-image-size)!important;margin-inline:auto!important}.project-modal-panel{grid-template-columns:1fr!important}.project-modal-image{width:var(--mr-project-image-size)!important;height:var(--mr-project-image-size)!important;margin-inline:auto!important}.hero h1,.hero.hero-redeveloped h1,.section-title h2,.cms-page-hero h1{letter-spacing:-.012em!important}}

/* =========================================================
   2026-08 PUBLIC REFINEMENTS
   Equal project previews, filled upcoming artwork, clean Leo
   history layout and reliable membership form feedback.
   ========================================================= */

/* The standard project list never gives one card special visual weight. */
.projects .project-list {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  max-width: 1180px;
  margin-inline: auto;
}

.projects .project-item,
.projects .project-item-featured,
.projects .project-list > * {
  grid-column: auto !important;
}

.projects .project-card,
.projects .project-card.mobile-scroll-item,
.projects .project-list > .project-item:not(.project-item-featured) .project-card {
  width: 100% !important;
  max-width: 370px !important;
  min-height: 100% !important;
  margin-inline: auto !important;
}

.projects .project-media,
.projects .project-b .project-media,
.projects .project-c .project-media,
.projects .project-list > .project-item-featured .project-media,
.projects .project-list > .project-item:not(.project-item-featured) .project-media {
  width: 100% !important;
  aspect-ratio: 1 / 1 !important;
}

.projects .project-media > img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

.projects .project-copy,
.projects .project-list > .project-item:not(.project-item-featured) .project-copy {
  min-height: 235px !important;
}

/* The upcoming card keeps Instagram-square artwork but fills its media side. */
.upcoming-project-card {
  grid-template-columns: minmax(320px, .9fr) minmax(0, 1.1fr) !important;
  gap: 0 !important;
  width: min(100%, 1120px);
  min-height: 440px;
  margin-inline: auto;
  align-items: stretch;
}

.upcoming-project-media {
  width: 100% !important;
  height: 100% !important;
  min-width: 0 !important;
  min-height: 440px !important;
  max-width: none !important;
  max-height: none !important;
  aspect-ratio: 1 / 1 !important;
}

.upcoming-project-media > img {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

/* Every project on the archive has the same image size and treatment. */
.project-preview-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 320px)) !important;
  justify-content: center !important;
  gap: 24px !important;
}

.project-preview-card,
.project-preview-card:nth-child(5n+1),
.project-preview-card:nth-child(5n+5) {
  grid-column: auto !important;
  width: 100% !important;
  height: auto !important;
  max-width: 320px !important;
  aspect-ratio: 1 / 1 !important;
  transform: none;
}

.project-preview-image {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
}

.project-preview-image > img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

.project-preview-card:hover,
.project-preview-card:focus-visible {
  transform: translateY(-3px);
}

/* Why Leo Matters is now a clean text-led section. */
.leo-clean-service-text-only {
  display: block !important;
}

.leo-clean-service-text-only .leo-clean-service-copy {
  width: min(100%, 900px);
  margin-inline: auto;
}

.leo-clean-service-text-only .leo-clean-service-copy > p {
  max-width: 720px;
}

.leo-clean-service-text-only .leo-clean-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}

.leo-clean-service-text-only .leo-clean-facts > div {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 22px 22px 22px 0;
}

.leo-clean-history-image {
  overflow: hidden;
}

.leo-clean-history-image img {
  aspect-ratio: 1 / 1.025;
  filter: grayscale(1) contrast(1.06) brightness(.9);
}

.leo-clean-history-stamp {
  position: absolute;
  z-index: 2;
  left: clamp(18px, 3vw, 30px);
  bottom: 48px;
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700;
  line-height: .9;
  letter-spacing: -.045em;
  text-shadow: 0 3px 24px rgba(0,0,0,.75);
}

.leo-clean-history-image::after {
  content: '';
  position: absolute;
  inset: 0 0 31px;
  background: linear-gradient(180deg, transparent 42%, rgba(0,0,0,.78));
  pointer-events: none;
}

.leo-clean-history-image figcaption {
  position: relative;
  z-index: 3;
}

.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.membership-form button[disabled] {
  cursor: wait;
  opacity: .65;
}

.form-status {
  min-height: 1.4em;
  line-height: 1.45;
}

@media (max-width: 980px) {
  .projects .project-list {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .upcoming-project-card {
    grid-template-columns: minmax(280px, .9fr) minmax(0, 1.1fr) !important;
    min-height: 390px;
  }

  .upcoming-project-media {
    min-height: 390px !important;
  }
}

@media (max-width: 700px) {
  .projects .project-list {
    grid-template-columns: 1fr !important;
  }

  .projects .project-card,
  .projects .project-card.mobile-scroll-item {
    max-width: 340px !important;
  }

  .projects .project-copy,
  .projects .project-list > .project-item:not(.project-item-featured) .project-copy {
    min-height: 0 !important;
  }

  .upcoming-project-card {
    display: flex !important;
    flex-direction: column;
    width: min(100%, 380px);
    min-height: 0;
  }

  .upcoming-project-media {
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    aspect-ratio: 1 / 1 !important;
  }

  .upcoming-project-copy {
    width: 100%;
  }

  .project-preview-grid {
    grid-template-columns: minmax(0, 320px) !important;
  }

  .leo-clean-service-text-only .leo-clean-facts {
    grid-template-columns: 1fr;
  }

  .leo-clean-service-text-only .leo-clean-facts > div {
    padding-right: 0;
  }

  .leo-clean-history-stamp {
    bottom: 44px;
    font-size: clamp(30px, 11vw, 46px);
  }
}

/* Homepage project previews now match the Projects archive. */
.home-project-preview-grid {
  max-width: 1040px;
  margin-inline: auto;
}

.home-project-preview-grid .project-preview-card,
.home-project-preview-grid .project-preview-card:nth-child(5n+1),
.home-project-preview-grid .project-preview-card:nth-child(5n+5) {
  width: min(100%, 320px) !important;
  height: auto !important;
  aspect-ratio: 1 / 1 !important;
}

.home-project-preview-grid .project-preview-image > img,
.upcoming-project-media > img {
  filter: grayscale(1) contrast(1.08) brightness(.78) !important;
  transition: filter .55s ease, transform .7s cubic-bezier(.2,.8,.2,1) !important;
}

.home-project-preview-grid .project-preview-card:hover .project-preview-image > img,
.home-project-preview-grid .project-preview-card:focus-visible .project-preview-image > img,
.upcoming-project-media:hover > img,
.upcoming-project-media:focus-visible > img {
  filter: grayscale(0) contrast(1.02) brightness(.92) !important;
  transform: scale(1.045) !important;
}

.upcoming-project-media {
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  padding: 0;
  color: inherit;
  font: inherit;
  cursor: pointer;
  text-align: left;
}

.upcoming-project-media:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: -4px;
}

.upcoming-project-copy .primary-btn[type="button"] {
  cursor: pointer;
}

@media (hover: hover) and (pointer: fine) {
  .home-project-preview-grid .project-preview-overlay {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity .35s ease, transform .35s ease;
  }
  .home-project-preview-grid .project-preview-card:hover .project-preview-overlay,
  .home-project-preview-grid .project-preview-card:focus-visible .project-preview-overlay {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 2026-08: Keep the Up Next project artwork in full colour. */
.upcoming-project-media > img {
  filter: grayscale(0) saturate(1.06) contrast(1.02) brightness(.96) !important;
}

.upcoming-project-media:hover > img,
.upcoming-project-media:focus-visible > img {
  filter: grayscale(0) saturate(1.08) contrast(1.02) brightness(1) !important;
}

/* =========================================================
   2026-08 HOMEPAGE PROJECT GRID + MOBILE SLIDER
   Five published projects plus one archive tile on desktop.
   Swipeable snap slider on mobile.
   ========================================================= */

.home-project-showcase {
  width: min(100%, 1040px);
  margin-inline: auto;
}

.home-project-preview-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 24px !important;
  width: 100%;
  max-width: none !important;
  justify-content: stretch !important;
}

.home-project-preview-grid .project-preview-card,
.home-project-preview-grid .project-preview-card:nth-child(5n+1),
.home-project-preview-grid .project-preview-card:nth-child(5n+5) {
  width: 100% !important;
  max-width: none !important;
  height: auto !important;
  aspect-ratio: 1 / 1 !important;
  margin: 0 !important;
}

.home-project-more-card {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(29, 213, 255, .28);
  border-radius: 22px;
  background:
    radial-gradient(circle at 80% 16%, rgba(29, 213, 255, .16), transparent 34%),
    linear-gradient(145deg, rgba(29, 213, 255, .07), rgba(255, 255, 255, .018));
  color: #fff;
  text-decoration: none;
  isolation: isolate;
  transition: transform .35s ease, border-color .35s ease, background .35s ease;
}

.home-project-more-card::before {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 15px;
  pointer-events: none;
}

.home-project-more-card:hover,
.home-project-more-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(29, 213, 255, .72);
  background:
    radial-gradient(circle at 80% 16%, rgba(29, 213, 255, .25), transparent 38%),
    linear-gradient(145deg, rgba(29, 213, 255, .11), rgba(255, 255, 255, .025));
}

.home-project-more-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  padding: clamp(24px, 3.2vw, 40px);
}

.home-project-more-content small {
  color: var(--cyan);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .16em;
}

.home-project-more-content strong {
  max-width: 240px;
  margin-top: 14px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 3.2vw, 3.35rem);
  line-height: .93;
  letter-spacing: -.045em;
}

.home-project-more-content i {
  margin-top: auto;
  padding-top: 28px;
  color: #c9d5d9;
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: .15em;
}

.home-project-slider-controls {
  display: none;
}

@media (max-width: 760px) {
  .home-project-showcase {
    width: 100%;
  }

  .home-project-preview-grid {
    display: flex !important;
    grid-template-columns: none !important;
    justify-content: flex-start !important;
    gap: 14px !important;
    width: calc(100% + 2 * var(--section-inline, 20px));
    max-width: none !important;
    margin-inline: calc(-1 * var(--section-inline, 20px));
    padding: 2px var(--section-inline, 20px) 16px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: var(--section-inline, 20px);
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .home-project-preview-grid::-webkit-scrollbar {
    display: none;
  }

  .home-project-preview-grid .project-preview-card,
  .home-project-preview-grid .project-preview-card:nth-child(5n+1),
  .home-project-preview-grid .project-preview-card:nth-child(5n+5) {
    flex: 0 0 min(82vw, 320px) !important;
    width: min(82vw, 320px) !important;
    max-width: 320px !important;
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }

  .home-project-slider-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(100%, 320px);
    margin: 4px auto 0;
  }

  .home-project-slider-controls button {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 50%;
    background: rgba(255,255,255,.035);
    color: #fff;
    font-size: 19px;
    cursor: pointer;
  }

  .home-project-slider-controls button:active {
    transform: scale(.96);
  }

  .home-project-slider-controls > span {
    color: #9aa8ad;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .14em;
  }

  .home-project-slider-controls b {
    color: var(--cyan);
  }
}


/* =========================================================
   2026-08 HERO ESTABLISHED DATE
   Keeps the About statistics in their original format while
   placing the club founding year in the main hero.
   ========================================================= */
.hero.hero-redeveloped .hero-since {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 0 clamp(14px, 2vh, 22px);
  color: var(--cyan);
  font-size: clamp(10px, .82vw, 13px);
  font-weight: 800;
  letter-spacing: .28em;
  text-indent: .28em;
  line-height: 1;
  text-transform: uppercase;
}

.hero.hero-redeveloped .hero-since::before,
.hero.hero-redeveloped .hero-since::after {
  content: '';
  width: clamp(22px, 3vw, 44px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(29, 213, 255, .75));
}

.hero.hero-redeveloped .hero-since::after {
  background: linear-gradient(90deg, rgba(29, 213, 255, .75), transparent);
}

@media (max-width: 700px) {
  .hero.hero-redeveloped .hero-since {
    margin-bottom: 12px;
    font-size: 9px;
    letter-spacing: .22em;
    text-indent: .22em;
  }

  .hero.hero-redeveloped .hero-since::before,
  .hero.hero-redeveloped .hero-since::after {
    width: 22px;
  }
}

/* === Content, trust, gallery and article CMS upgrade === */
.trust-strip{padding-top:36px;padding-bottom:72px}.trust-strip-head{max-width:760px;margin-bottom:30px}.trust-strip-head h2{font-size:clamp(2rem,4vw,4.2rem);line-height:1.02;margin:12px 0}.trust-fact-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px}.trust-fact{min-height:210px;padding:26px;border-radius:24px;background:rgba(255,255,255,.045);backdrop-filter:blur(20px);display:flex;flex-direction:column;align-items:flex-start;justify-content:flex-end;box-shadow:0 22px 70px rgba(0,0,0,.18)}.trust-fact small{color:#1dd5ff;font-size:.7rem;letter-spacing:.18em}.trust-fact strong{font-size:clamp(1.1rem,1.7vw,1.55rem);line-height:1.2;margin:14px 0 8px}.trust-fact span,.trust-fact a{font-size:.82rem;color:rgba(255,255,255,.62)}.trust-fact a{color:#1dd5ff;margin-top:10px;text-decoration:none}.trust-fact a:hover{text-decoration:underline}
.gallery-managed-grid{grid-template-columns:repeat(4,minmax(0,1fr));grid-auto-rows:260px}.gallery-managed-item{appearance:none;border:0;color:inherit;font:inherit;text-align:left;cursor:pointer;position:relative;overflow:hidden;border-radius:22px;background:#111;padding:0}.gallery-managed-item:nth-child(1),.gallery-managed-item:nth-child(6){grid-column:span 2}.gallery-managed-item img{width:100%;height:100%;object-fit:cover;filter:grayscale(1);transition:filter .45s ease,transform .7s cubic-bezier(.2,.8,.2,1)}.gallery-managed-item:hover img,.gallery-managed-item:focus-visible img{filter:grayscale(0);transform:scale(1.05)}.gallery-managed-item .gallery-caption{position:absolute;left:0;right:0;bottom:0;padding:48px 20px 18px;background:linear-gradient(transparent,rgba(0,0,0,.85));display:flex;flex-direction:column;gap:5px;font-weight:700}.gallery-managed-item .gallery-caption small{color:#1dd5ff;font-size:.65rem;letter-spacing:.16em;text-transform:uppercase}
.gallery-modal{position:fixed;inset:0;z-index:3000;display:grid;place-items:center;padding:24px;opacity:0;visibility:hidden;transition:.3s}.gallery-modal.is-open{opacity:1;visibility:visible}.gallery-modal-backdrop{position:absolute;inset:0;border:0;background:rgba(0,0,0,.86);backdrop-filter:blur(12px)}.gallery-modal-panel{position:relative;z-index:1;width:min(980px,96vw);max-height:92vh;overflow:auto;border-radius:26px;background:#081015;box-shadow:0 35px 120px rgba(0,0,0,.65);display:grid;grid-template-columns:minmax(0,1.35fr) minmax(260px,.65fr)}.gallery-modal-panel>img{width:100%;height:100%;min-height:480px;object-fit:cover}.gallery-modal-panel>div{padding:38px;display:flex;flex-direction:column;justify-content:flex-end}.gallery-modal-panel small{color:#1dd5ff;letter-spacing:.16em;text-transform:uppercase}.gallery-modal-panel h2{font-size:clamp(2rem,4vw,4rem);line-height:1;margin:12px 0 18px}.gallery-modal-panel p{color:rgba(255,255,255,.7);line-height:1.7}.gallery-modal-panel time{margin-top:22px;color:rgba(255,255,255,.5)}.gallery-modal-close{position:absolute;right:16px;top:16px;z-index:2;width:42px;height:42px;border:0;border-radius:50%;background:rgba(0,0,0,.7);color:#fff;cursor:pointer}.gallery-modal-open{overflow:hidden}
.article-filter{padding-top:0;padding-bottom:24px;display:flex;gap:10px;flex-wrap:wrap}.article-filter button{border:0;border-radius:999px;padding:11px 18px;background:rgba(255,255,255,.06);color:rgba(255,255,255,.72);cursor:pointer}.article-filter button.is-active,.article-filter button:hover{background:#1dd5ff;color:#001319}.cms-article-card h2 a{color:inherit;text-decoration:none}.article-card-author{display:flex;align-items:center;gap:10px;margin:18px 0;color:rgba(255,255,255,.6);font-size:.82rem}.article-card-author strong{color:#fff}.article-detail{max-width:1120px;margin:0 auto;padding-top:170px}.article-detail-head{max-width:920px}.article-detail-head h1{font-size:clamp(3rem,8vw,7.5rem);line-height:.93;margin:18px 0 24px;letter-spacing:-.05em}.article-detail-head>p{font-size:clamp(1.05rem,2vw,1.4rem);color:rgba(255,255,255,.67);line-height:1.6}.article-byline{display:flex;gap:16px;flex-wrap:wrap;margin-top:28px;color:rgba(255,255,255,.52);font-size:.85rem}.article-byline strong{color:#fff}.article-hero-image{margin:64px 0 52px;border-radius:30px;overflow:hidden;aspect-ratio:16/9}.article-hero-image img{width:100%;height:100%;object-fit:cover}.article-body{max-width:780px;margin:0 auto;font-size:1.08rem;line-height:1.9;color:rgba(255,255,255,.82);white-space:normal}.article-tags,.article-share{max-width:780px;margin:38px auto 0;display:flex;gap:10px;flex-wrap:wrap}.article-tags span{padding:8px 12px;border-radius:999px;background:rgba(29,213,255,.1);color:#1dd5ff;font-size:.78rem}.article-share{padding-top:24px;border-top:1px solid rgba(255,255,255,.08)}.article-share a,.article-share button{border:0;background:none;color:#1dd5ff;font:inherit;cursor:pointer;text-decoration:none;padding:0 14px 0 0}
.leo-clean-path-item a{color:#1dd5ff;text-decoration:none}.leo-clean-path-item a:hover{text-decoration:underline}
@media(max-width:980px){.trust-fact-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.gallery-managed-grid{grid-template-columns:repeat(2,minmax(0,1fr));grid-auto-rows:240px}.gallery-managed-item:nth-child(n){grid-column:span 1}.gallery-modal-panel{grid-template-columns:1fr}.gallery-modal-panel>img{min-height:0;aspect-ratio:1/1}.article-detail{padding-top:130px}}
@media(max-width:640px){.trust-strip{padding-top:18px}.trust-fact-grid{grid-template-columns:1fr}.trust-fact{min-height:150px;padding:22px}.gallery-managed-grid{display:flex;overflow-x:auto;scroll-snap-type:x mandatory;gap:14px;padding-bottom:8px}.gallery-managed-item{min-width:82vw;height:auto;aspect-ratio:1/1;scroll-snap-align:center}.gallery-modal{padding:10px}.gallery-modal-panel>div{padding:24px}.gallery-modal-panel h2{font-size:2rem}.article-detail{padding-top:118px}.article-detail-head h1{font-size:clamp(2.6rem,14vw,4.3rem)}.article-hero-image{margin:38px 0 32px;border-radius:20px;aspect-ratio:1/1}.article-body{font-size:1rem;line-height:1.75}.article-filter{overflow-x:auto;flex-wrap:nowrap}.article-filter button{white-space:nowrap}}
@media(max-width:640px){.gallery-managed-grid{flex-direction:row}}


/* =========================================================
   2026-08 SIMPLIFIED PUBLIC CONTENT
   Original five-photo mosaic, colour imagery, photo-only lightbox,
   inline articles and the infinite service-energy stat.
   ========================================================= */
.infinity-stat {
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: clamp(3.8rem, 7vw, 7rem) !important;
  line-height: .72 !important;
  letter-spacing: 0 !important;
  color: var(--cyan);
}

.gallery-photo-only-grid.gallery-managed-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 140px;
  gap: 14px;
}
.gallery-photo-only-grid .gallery-managed-item,
.gallery-photo-only-grid .gallery-managed-item:nth-child(n) {
  width: auto;
  min-width: 0;
  height: auto;
  aspect-ratio: auto;
  border-radius: 0;
  border: 1px solid var(--line);
  padding: 0;
  scroll-snap-align: none;
}
.gallery-photo-only-grid .gallery-1 { grid-column: span 7 !important; grid-row: span 3 !important; }
.gallery-photo-only-grid .gallery-2 { grid-column: span 5 !important; grid-row: span 2 !important; }
.gallery-photo-only-grid .gallery-3 { grid-column: span 5 !important; grid-row: span 3 !important; }
.gallery-photo-only-grid .gallery-4 { grid-column: span 4 !important; grid-row: span 2 !important; }
.gallery-photo-only-grid .gallery-5 { grid-column: span 3 !important; grid-row: span 2 !important; }
.gallery-photo-only-grid .gallery-managed-item img {
  filter: none !important;
  transform: none;
  transition: transform .6s cubic-bezier(.22,1,.36,1);
}
.gallery-photo-only-grid .gallery-managed-item:hover img,
.gallery-photo-only-grid .gallery-managed-item:focus-visible img {
  filter: none !important;
  transform: scale(1.025);
}
.gallery-photo-only-grid .gallery-managed-item::after { display: none !important; }
.gallery-photo-only-grid .gallery-caption { display: none !important; }

.gallery-photo-modal-panel {
  display: block !important;
  width: min(980px, 94vw) !important;
  max-height: 92vh;
  overflow: hidden !important;
  background: #030506 !important;
  border-radius: 20px !important;
}
.gallery-photo-modal-panel > img {
  display: block;
  width: 100%;
  height: auto !important;
  max-height: 88vh;
  min-height: 0 !important;
  object-fit: contain !important;
  background: #030506;
}

.cms-article-inline .cms-card-image { cursor: default; }
.cms-article-inline .cms-card-body > h2 { color: #fff; }
.article-inline-details { margin-top: 22px; border-top: 1px solid var(--line); }
.article-inline-details summary {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--cyan);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  list-style: none;
}
.article-inline-details summary::-webkit-details-marker { display: none; }
.article-inline-details summary span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(29,213,255,.09);
  transition: transform .25s ease;
}
.article-inline-details[open] summary span { transform: rotate(45deg); }
.article-inline-content {
  padding: 2px 0 24px;
  color: rgba(255,255,255,.72);
  line-height: 1.8;
  white-space: normal;
}

@media (max-width: 700px) {
  .gallery-photo-only-grid.gallery-managed-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 135px;
    gap: 8px;
    overflow: visible;
    padding-bottom: 0;
  }
  .gallery-photo-only-grid .gallery-managed-item,
  .gallery-photo-only-grid .gallery-managed-item:nth-child(n) {
    min-width: 0;
    width: auto;
    height: auto;
    aspect-ratio: auto;
  }
  .gallery-photo-only-grid .gallery-1 { grid-column: 1 / -1 !important; grid-row: span 2 !important; }
  .gallery-photo-only-grid .gallery-2 { grid-column: span 1 !important; grid-row: span 2 !important; }
  .gallery-photo-only-grid .gallery-3 { grid-column: span 1 !important; grid-row: span 1 !important; }
  .gallery-photo-only-grid .gallery-4 { grid-column: span 1 !important; grid-row: span 1 !important; }
  .gallery-photo-only-grid .gallery-5 { grid-column: 1 / -1 !important; grid-row: span 2 !important; }
  .gallery-photo-modal { padding: 10px; }
  .gallery-photo-modal-panel { width: 100% !important; border-radius: 16px !important; }
}

/* =========================================================
   2026-08-05 — CLEAN DESKTOP NAV + EXECUTIVE PROFILES
   ========================================================= */

/* Leadership | Experience | Opportunity */
.hero-values b {
  display: inline-block;
  color: rgba(255,255,255,.72);
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
}
.hero-values i { display: none !important; }

/* Simple white role label with a line — no badge or pill. */
.board-role-line,
.exco-role-line {
  margin: 0;
  display: flex !important;
  align-items: center;
  gap: 10px;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #fff !important;
  font-size: 10px !important;
  font-weight: 500 !important;
  line-height: 1.35;
  letter-spacing: .13em !important;
  text-transform: uppercase;
  box-shadow: none !important;
  backdrop-filter: none !important;
}
.board-role-line::before,
.exco-role-line::before {
  content: '';
  width: 28px;
  height: 1px;
  flex: 0 0 28px;
  border-radius: 0;
  background: rgba(255,255,255,.92);
  box-shadow: none;
}
.board-slide .board-role-line {
  position: relative;
  z-index: 2;
}

/* Executive-board listing cards now open individual profiles. */
.cms-exco-card {
  display: block;
  color: inherit;
  transition: transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s ease, background .35s ease;
}
.cms-exco-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,.06);
  box-shadow: inset 0 0 0 1px rgba(29,213,255,.24), 0 24px 65px rgba(0,0,0,.28);
}
.cms-exco-card .exco-role-line {
  margin-bottom: 15px;
}
.cms-exco-card .cms-exco-copy > p:not(.exco-role-line) {
  margin-bottom: 22px;
}
.cms-exco-view {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.72);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: color .25s ease, gap .25s ease;
}
.cms-exco-card:hover .cms-exco-view {
  gap: 12px;
  color: var(--cyan);
}
.cms-exco-view .icon { width: 15px; height: 15px; }

/* Individual executive-board profile page. */
.exco-profile-page {
  min-height: 100vh;
  padding-top: 150px;
}
.exco-profile-back {
  width: fit-content;
  margin-bottom: 42px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(255,255,255,.62);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: color .25s ease, transform .25s ease;
}
.exco-profile-back:hover {
  color: var(--cyan);
  transform: translateX(-3px);
}
.exco-profile-back .icon { width: 16px; height: 16px; }
.exco-profile-grid {
  display: grid;
  grid-template-columns: minmax(320px, .78fr) minmax(0, 1.22fr);
  gap: clamp(48px, 7vw, 110px);
  align-items: center;
}
.exco-profile-image {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  background: #080b0d;
}
.exco-profile-image::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 60%, rgba(2,5,7,.48));
}
.exco-profile-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}
.exco-profile-copy { max-width: 760px; }
.exco-profile-copy .exco-role-line {
  margin-bottom: 24px;
  font-size: 12px !important;
}
.exco-profile-copy h1 {
  margin: 0;
  max-width: 12ch;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(58px, 7vw, 112px);
  line-height: .88;
  letter-spacing: -.065em;
  text-wrap: balance;
}
.exco-profile-bio {
  max-width: 610px;
  margin: 32px 0 0;
  color: rgba(255,255,255,.68);
  font-size: clamp(15px, 1.25vw, 19px);
  line-height: 1.8;
}
.exco-profile-meta {
  max-width: 610px;
  margin: 34px 0;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255,255,255,.1);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.exco-profile-meta span {
  color: rgba(255,255,255,.42);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.exco-profile-meta strong {
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
}

/* A clear full-width desktop navigation inspired by modern club sites,
   while retaining the MR LEOS cyan identity. */
@media (min-width: 1025px) {
  .nav-shell,
  .leo-clean-page .nav-shell,
  .leo-info-page .nav-shell,
  .nav-shell.scrolled,
  .leo-clean-page .nav-shell.scrolled,
  .leo-info-page .nav-shell.scrolled {
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    max-width: none !important;
    min-height: 76px !important;
    padding: 0 clamp(24px, 3.3vw, 64px) !important;
    border: 0 !important;
    border-top: 3px solid var(--cyan) !important;
    border-bottom: 1px solid rgba(255,255,255,.09) !important;
    border-radius: 0 !important;
    background: rgba(4,6,8,.94) !important;
    box-shadow: 0 12px 34px rgba(0,0,0,.28) !important;
    backdrop-filter: blur(18px) saturate(120%) !important;
    -webkit-backdrop-filter: blur(18px) saturate(120%) !important;
    transform: none !important;
  }
  body.page-ready .nav-shell,
  body.page-ready .leo-clean-page .nav-shell,
  body.page-ready .leo-info-page .nav-shell {
    transform: none !important;
  }
  .nav-shell::before { display: none !important; }

  .nav-shell .brand-mark {
    height: 73px;
    padding: 0 !important;
    gap: 11px;
    border-radius: 0;
  }
  .nav-shell .brand-logo,
  .leo-clean-page .nav-shell .brand-logo,
  .leo-info-page .nav-shell .brand-logo {
    width: 46px !important;
    height: 46px !important;
    flex: 0 0 46px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    filter: drop-shadow(0 0 10px rgba(29,213,255,.15)) !important;
  }
  .nav-shell .brand-mark:hover .brand-logo { transform: none !important; }
  .nav-shell .brand-mark strong {
    color: #fff;
    font-size: 12px;
    letter-spacing: .08em;
  }
  .nav-shell .brand-mark small {
    margin-top: 3px;
    color: var(--cyan);
    font-size: 7px;
    font-weight: 700;
    letter-spacing: .13em;
  }

  .desktop-nav {
    height: 73px;
    padding: 0 !important;
    gap: 1px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }
  .desktop-nav > a,
  .desktop-nav .nav-page-link,
  .desktop-nav .nav-article-link {
    position: relative;
    min-height: 73px !important;
    padding: 0 clamp(8px, .75vw, 14px) !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: rgba(255,255,255,.72) !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    letter-spacing: .015em !important;
    box-shadow: none !important;
    transform: none !important;
  }
  .desktop-nav > a::after {
    content: '';
    position: absolute;
    left: 50%;
    right: 50%;
    bottom: 0;
    height: 2px;
    background: var(--cyan);
    box-shadow: 0 0 12px rgba(29,213,255,.48);
    transition: left .28s ease, right .28s ease;
  }
  .desktop-nav > a:hover,
  .desktop-nav > a.is-active {
    color: #fff !important;
  }
  .desktop-nav > a:hover::after,
  .desktop-nav > a.is-active::after {
    left: 10px;
    right: 10px;
  }

  .desktop-nav > a.nav-join-link {
    min-height: 42px !important;
    margin-left: 10px;
    padding: 0 20px !important;
    border: 1px solid #fff !important;
    border-radius: 999px !important;
    background: #fff !important;
    color: #071014 !important;
    font-weight: 700 !important;
  }
  .desktop-nav > a.nav-join-link::after { display: none !important; }
  .desktop-nav > a.nav-join-link:hover {
    border-color: var(--cyan) !important;
    background: var(--cyan) !important;
    color: #001014 !important;
  }
}

@media (min-width: 1025px) and (max-width: 1280px) {
  .nav-shell,
  .nav-shell.scrolled {
    padding-inline: 22px !important;
  }
  .nav-shell .brand-mark strong { font-size: 10px; }
  .nav-shell .brand-mark small { font-size: 6px; }
  .desktop-nav > a,
  .desktop-nav .nav-page-link,
  .desktop-nav .nav-article-link {
    padding-inline: 8px !important;
    font-size: 9px !important;
  }
  .desktop-nav > a.nav-join-link {
    margin-left: 6px;
    padding-inline: 14px !important;
  }
}

@media (max-width: 900px) {
  .exco-profile-page { padding-top: 125px; }
  .exco-profile-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .exco-profile-image {
    width: min(100%, 560px);
    margin-inline: auto;
  }
  .exco-profile-copy {
    width: min(100%, 680px);
    margin-inline: auto;
  }
  .exco-profile-copy h1 { max-width: 100%; }
}

@media (max-width: 620px) {
  .hero-values { gap: 8px !important; }
  .hero-values b { font-size: 10px; }
  .board-role-line,
  .exco-role-line { font-size: 9px !important; }
  .board-role-line::before,
  .exco-role-line::before { width: 22px; flex-basis: 22px; }
  .exco-profile-page { padding-top: 112px !important; }
  .exco-profile-back { margin-bottom: 24px; }
  .exco-profile-grid { gap: 28px; }
  .exco-profile-image { aspect-ratio: 4 / 5; }
  .exco-profile-copy h1 {
    font-size: clamp(46px, 15vw, 72px);
    line-height: .9;
  }
  .exco-profile-bio { margin-top: 24px; font-size: 14px; }
  .exco-profile-meta { margin: 26px 0; }
}


/* =========================================================
   STORAGE + NAV UPDATE — 2026-08
   Transparent navigation at the top, with a light glass layer
   only after scrolling so links remain readable.
   ========================================================= */
.nav-shell,
.leo-clean-page .nav-shell,
.leo-info-page .nav-shell {
  background: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}
.nav-shell::before { display: none !important; }
.nav-shell .brand-mark,
.desktop-nav,
.desktop-nav > a,
.desktop-nav .nav-page-link,
.desktop-nav .nav-article-link {
  background: transparent !important;
  box-shadow: none !important;
}
.nav-shell .brand-mark strong,
.nav-shell .brand-mark small,
.desktop-nav > a {
  text-shadow: 0 2px 14px rgba(0,0,0,.72);
}

.nav-shell.scrolled,
.leo-clean-page .nav-shell.scrolled,
.leo-info-page .nav-shell.scrolled {
  background: rgba(3, 8, 11, .58) !important;
  border-bottom: 1px solid rgba(255,255,255,.08) !important;
  box-shadow: 0 12px 34px rgba(0,0,0,.18) !important;
  backdrop-filter: blur(18px) saturate(125%) !important;
  -webkit-backdrop-filter: blur(18px) saturate(125%) !important;
}

@media (min-width: 1025px) {
  .nav-shell,
  .leo-clean-page .nav-shell,
  .leo-info-page .nav-shell {
    border-top: 0 !important;
    border-bottom: 0 !important;
  }
  .nav-shell.scrolled,
  .leo-clean-page .nav-shell.scrolled,
  .leo-info-page .nav-shell.scrolled {
    border-bottom: 1px solid rgba(255,255,255,.08) !important;
  }
  .desktop-nav > a.nav-join-link {
    background: rgba(255,255,255,.94) !important;
    box-shadow: 0 8px 24px rgba(0,0,0,.14) !important;
    text-shadow: none !important;
  }
  .desktop-nav > a.nav-join-link:hover {
    background: var(--cyan) !important;
  }
}

@media (max-width: 1024px) {
  .nav-shell,
  .leo-clean-page .nav-shell,
  .leo-info-page .nav-shell {
    background: transparent !important;
  }
  .nav-shell.scrolled,
  .leo-clean-page .nav-shell.scrolled,
  .leo-info-page .nav-shell.scrolled {
    background: rgba(3, 8, 11, .58) !important;
  }
  .menu-toggle {
    background: rgba(0,0,0,.18) !important;
    border: 1px solid rgba(255,255,255,.12) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
}

/* =========================================================
   2026-08-05 — ADVANCED ARTICLES + VISIBLE PAGE ACTIONS
   ========================================================= */
.cms-hero-actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:30px}.cms-hero-actions .primary-btn{width:max-content}.cms-content-section[id],.article-filter[id]{scroll-margin-top:120px}.cms-article-card>.cms-card-image,.cms-article-card .cms-card-image{position:relative;display:block;color:inherit;text-decoration:none;overflow:hidden}.cms-article-card .cms-card-image img{transition:transform .65s cubic-bezier(.22,1,.36,1)}.cms-article-card:hover .cms-card-image img{transform:scale(1.035)}.article-photo-count{position:absolute;right:14px;bottom:14px;padding:8px 11px;border-radius:999px;background:rgba(0,0,0,.72);backdrop-filter:blur(12px);color:#fff;font-size:.68rem;font-weight:800;letter-spacing:.06em;text-transform:uppercase}.article-card-footer{display:flex;align-items:flex-end;justify-content:space-between;gap:14px;margin-top:18px}.article-card-footer .article-card-author{margin:0;display:grid;gap:3px}.article-card-engagement{display:flex;gap:9px;flex-wrap:wrap;justify-content:flex-end;color:rgba(255,255,255,.55);font-size:.74rem}.article-card-engagement span:first-child{color:#ffd76a}.article-read-link{display:inline-flex;align-items:center;gap:10px;margin-top:20px;color:var(--cyan);font-size:.78rem;font-weight:850;letter-spacing:.08em;text-decoration:none;text-transform:uppercase}.article-read-link span{transition:transform .25s ease}.article-read-link:hover span{transform:translateX(5px)}
.article-reader-page .article-detail{padding-bottom:80px}.article-back-link{display:inline-flex;align-items:center;gap:9px;margin-bottom:34px;color:rgba(255,255,255,.7);font-size:.78rem;font-weight:800;letter-spacing:.08em;text-decoration:none;text-transform:uppercase}.article-back-link:hover{color:var(--cyan)}.article-detail-head .eyebrow{margin-bottom:12px}.article-rating-inline b{color:#ffd76a}.article-body p{margin:0 0 1.55em}.article-body p:first-child::first-letter{float:left;margin:.08em .13em 0 0;color:var(--cyan);font-size:4.2em;font-weight:900;line-height:.75}.article-section-heading{max-width:760px}.article-section-heading h2{margin:12px 0 0;font-size:clamp(2.2rem,5vw,5rem);line-height:.98;letter-spacing:-.045em}.article-photo-section{max-width:980px;margin:72px auto 0}.article-photo-grid{display:grid;grid-template-columns:repeat(12,minmax(0,1fr));grid-auto-rows:170px;gap:12px;margin-top:28px}.article-photo-grid button{position:relative;grid-column:span 4;grid-row:span 2;appearance:none;border:0;padding:0;overflow:hidden;border-radius:20px;background:#0a0d0f;cursor:zoom-in}.article-photo-grid button:nth-child(5n+1){grid-column:span 8;grid-row:span 3}.article-photo-grid button:nth-child(5n+2){grid-column:span 4;grid-row:span 3}.article-photo-grid img{width:100%;height:100%;object-fit:cover;transition:transform .55s cubic-bezier(.22,1,.36,1)}.article-photo-grid button:hover img,.article-photo-grid button:focus-visible img{transform:scale(1.04)}.article-photo-grid button span{position:absolute;right:12px;bottom:12px;width:36px;height:36px;display:grid;place-items:center;border-radius:50%;background:rgba(0,0,0,.68);color:#fff;font-size:.7rem;font-weight:850}.article-photo-modal{position:fixed;inset:0;z-index:3500;display:grid;place-items:center;padding:20px;opacity:0;visibility:hidden;transition:.25s}.article-photo-modal.is-open{opacity:1;visibility:visible}.article-photo-modal>button{position:absolute;inset:0;border:0;background:rgba(0,0,0,.9);backdrop-filter:blur(14px)}.article-photo-modal figure{position:relative;z-index:1;margin:0;max-width:min(1200px,94vw);max-height:92vh}.article-photo-modal figure>button{position:absolute;right:12px;top:12px;z-index:2;width:44px;height:44px;border:0;border-radius:50%;background:rgba(0,0,0,.72);color:#fff;font-size:1.45rem;cursor:pointer}.article-photo-modal img{display:block;max-width:100%;max-height:92vh;border-radius:18px;object-fit:contain}.article-photo-open{overflow:hidden}
.article-engagement{max-width:980px;margin:86px auto 0;padding:clamp(24px,5vw,54px);border-radius:30px;background:rgba(255,255,255,.045);box-shadow:inset 0 0 0 1px rgba(255,255,255,.08),0 30px 90px rgba(0,0,0,.2);backdrop-filter:blur(22px);display:grid;grid-template-columns:minmax(240px,.7fr) minmax(0,1.3fr);gap:34px}.article-engagement-summary h2{margin:12px 0 24px;font-size:clamp(2.3rem,5vw,4.8rem);line-height:.94;letter-spacing:-.05em}.article-rating-score{display:flex;align-items:center;gap:16px}.article-rating-score>strong{font-size:clamp(3.5rem,7vw,6rem);line-height:.8;color:#fff}.article-rating-score>div{display:grid;gap:4px}.article-rating-score span{color:#ffd76a;letter-spacing:.08em}.article-rating-score small,.article-engagement-summary>p:last-child{color:rgba(255,255,255,.55)}.article-engagement-summary>p:last-child{margin-top:22px}.article-feedback-form{display:grid;gap:15px}.article-feedback-form>label{display:grid;gap:8px;color:rgba(255,255,255,.62);font-size:.78rem}.article-feedback-form input,.article-feedback-form textarea{width:100%;border:1px solid rgba(255,255,255,.09);border-radius:14px;outline:0;padding:14px 15px;background:rgba(0,0,0,.2);color:#fff;font:inherit}.article-feedback-form input:focus,.article-feedback-form textarea:focus{border-color:rgba(29,213,255,.65);box-shadow:0 0 0 3px rgba(29,213,255,.08)}.article-feedback-form textarea{resize:vertical;min-height:130px;line-height:1.55}.article-feedback-form .primary-btn{justify-self:start}.article-feedback-form .primary-btn:disabled{opacity:.55;cursor:wait}.article-feedback-honeypot{position:absolute!important;left:-9999px!important;width:1px!important;height:1px!important;opacity:0!important}.article-star-field{margin:0;padding:0;border:0}.article-star-field legend{margin-bottom:8px;color:rgba(255,255,255,.62);font-size:.78rem}.article-star-input{width:max-content;display:flex;flex-direction:row-reverse;justify-content:flex-end;gap:4px}.article-star-input input{position:absolute;opacity:0;pointer-events:none}.article-star-input label{color:rgba(255,255,255,.18);font-size:2rem;line-height:1;cursor:pointer;transition:color .18s,transform .18s}.article-star-input label:hover,.article-star-input label:hover~label,.article-star-input input:checked~label{color:#ffd76a}.article-star-input label:hover{transform:translateY(-2px)}.article-feedback-status{min-height:20px;margin:0;color:#77efb7;font-size:.8rem}.article-feedback-status.is-error{color:#ff9aaa}.article-comments{grid-column:1/-1;display:grid;gap:12px;padding-top:30px;border-top:1px solid rgba(255,255,255,.08)}.article-comments article{padding:20px;border-radius:18px;background:rgba(0,0,0,.18)}.article-comments article>div{display:flex;align-items:center;justify-content:space-between;gap:14px}.article-comments strong{color:#fff}.article-comments time{color:rgba(255,255,255,.38);font-size:.72rem}.article-comment-stars{display:block;margin-top:7px;color:#ffd76a;font-size:.8rem;letter-spacing:.05em}.article-comments p{margin:10px 0 0;color:rgba(255,255,255,.72);line-height:1.65}.article-comments-empty{padding:24px;border-radius:18px;background:rgba(0,0,0,.15);text-align:center}.article-comments-empty p{margin:7px 0 0;color:rgba(255,255,255,.5)}.article-related{padding-top:70px;padding-bottom:100px}.article-related .article-section-heading{margin-bottom:28px}
@media(max-width:820px){.article-card-footer{align-items:flex-start;flex-direction:column}.article-card-engagement{justify-content:flex-start}.article-photo-grid{grid-template-columns:repeat(2,minmax(0,1fr));grid-auto-rows:180px}.article-photo-grid button,.article-photo-grid button:nth-child(n){grid-column:span 1;grid-row:span 1}.article-photo-grid button:first-child{grid-column:1/-1;grid-row:span 2}.article-engagement{grid-template-columns:1fr}.article-comments{grid-column:auto}}
@media(max-width:560px){.cms-hero-actions .primary-btn{width:100%;justify-content:center}.article-detail-head .article-byline{display:grid;gap:8px}.article-body p:first-child::first-letter{font-size:3.5em}.article-photo-section{margin-top:54px}.article-photo-grid{grid-auto-rows:145px;gap:8px}.article-photo-grid button{border-radius:14px}.article-engagement{margin-top:58px;border-radius:22px;padding:22px 18px}.article-rating-score>strong{font-size:4rem}.article-comments article>div{align-items:flex-start;flex-direction:column;gap:3px}}

/* =========================================================
   MR LEOS — Awards archive + Parent Club update
   ========================================================= */

.awards-showcase-page .nav-shell{
  background:linear-gradient(180deg,rgba(3,8,12,.92),rgba(3,8,12,.56));
  border-bottom:1px solid rgba(255,255,255,.06);
  backdrop-filter:blur(18px);
}

.awards-showcase-hero{
  min-height:100svh;
  padding-top:clamp(150px,16vw,210px);
  padding-bottom:clamp(80px,9vw,130px);
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(360px,.72fr);
  align-items:center;
  gap:clamp(48px,7vw,110px);
}

.awards-showcase-copy h1{
  max-width:980px;
  margin:22px 0 28px;
  font-size:clamp(3.2rem,7.7vw,8.4rem);
  line-height:.88;
  letter-spacing:-.07em;
  text-transform:uppercase;
}

.awards-showcase-copy>p:not(.eyebrow){
  max-width:690px;
  margin:0 0 34px;
  color:rgba(255,255,255,.66);
  font-size:clamp(1rem,1.4vw,1.18rem);
  line-height:1.85;
}

.awards-showcase-stats{
  margin-top:clamp(42px,6vw,76px);
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  border-top:1px solid rgba(255,255,255,.11);
  border-bottom:1px solid rgba(255,255,255,.11);
}

.awards-showcase-stats div{
  padding:22px 22px 22px 0;
  display:grid;
  gap:6px;
}

.awards-showcase-stats div+div{
  padding-left:24px;
  border-left:1px solid rgba(255,255,255,.09);
}

.awards-showcase-stats strong{
  color:#fff;
  font-size:clamp(1.65rem,3vw,2.6rem);
  line-height:1;
}

.awards-showcase-stats span{
  color:rgba(255,255,255,.46);
  font-size:.66rem;
  font-weight:750;
  letter-spacing:.13em;
  text-transform:uppercase;
}

.awards-showcase-photo{
  position:relative;
  width:min(100%,540px);
  margin-left:auto;
}

.awards-showcase-frame{
  position:relative;
  aspect-ratio:3/4;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.17);
  border-radius:4px;
  background:#071018;
  box-shadow:0 46px 120px rgba(0,0,0,.55);
}

.awards-showcase-frame::before{
  content:"";
  position:absolute;
  inset:18px;
  z-index:2;
  border:1px solid rgba(255,255,255,.12);
  pointer-events:none;
}

.awards-showcase-frame::after{
  content:"";
  position:absolute;
  inset:auto 0 0;
  height:34%;
  background:linear-gradient(180deg,transparent,rgba(1,7,11,.76));
  pointer-events:none;
}

.awards-showcase-frame img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  filter:saturate(.92) contrast(1.04);
}

.awards-showcase-photo figcaption{
  margin-top:18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  color:rgba(255,255,255,.72);
  font-size:.62rem;
  letter-spacing:.14em;
}

.awards-showcase-photo figcaption span{color:var(--cyan);font-weight:900}
.awards-showcase-photo figcaption strong{font-weight:700;text-align:right}

.awards-archive{
  padding-top:clamp(90px,10vw,150px);
  padding-bottom:clamp(90px,10vw,150px);
  background:rgba(2,7,10,.58);
  border-top:1px solid rgba(255,255,255,.06);
}

.awards-archive-head{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(280px,.55fr);
  align-items:end;
  gap:40px;
  margin-bottom:clamp(58px,7vw,94px);
}

.awards-archive-head h2{
  margin:18px 0 0;
  color:#fff;
  font-size:clamp(2.7rem,6vw,6rem);
  line-height:.92;
  letter-spacing:-.055em;
}

.awards-archive-head>p{
  margin:0;
  color:rgba(255,255,255,.56);
  line-height:1.8;
}

.awards-year-stack{display:grid;gap:clamp(70px,9vw,130px)}

.awards-year-block{
  display:grid;
  grid-template-columns:minmax(190px,.28fr) minmax(0,1fr);
  gap:clamp(35px,6vw,90px);
}

.awards-year-head{
  position:sticky;
  top:120px;
  align-self:start;
  display:grid;
  gap:20px;
}

.awards-year-head small{
  display:block;
  margin-bottom:10px;
  color:rgba(255,255,255,.38);
  font-size:.61rem;
  font-weight:800;
  letter-spacing:.15em;
}

.awards-year-head h2{
  margin:0;
  color:#fff;
  font-size:clamp(2.5rem,5vw,5.2rem);
  line-height:.88;
  letter-spacing:-.06em;
}

.awards-year-head>span{
  width:max-content;
  padding:8px 11px;
  border:1px solid rgba(27,214,255,.23);
  border-radius:999px;
  color:var(--cyan);
  background:rgba(27,214,255,.06);
  font-size:.61rem;
  font-weight:800;
  letter-spacing:.1em;
  text-transform:uppercase;
}

.awards-category-block+.awards-category-block{margin-top:54px}

.awards-category-label{
  display:grid;
  grid-template-columns:34px minmax(0,1fr) auto;
  align-items:center;
  gap:14px;
  margin-bottom:14px;
}

.awards-category-label>span{height:1px;background:var(--cyan)}

.awards-category-label h3{
  margin:0;
  color:rgba(255,255,255,.78);
  font-size:.69rem;
  letter-spacing:.16em;
  text-transform:uppercase;
}

.awards-category-label small{
  color:rgba(255,255,255,.34);
  font-size:.65rem;
}

.awards-text-list{border-top:1px solid rgba(255,255,255,.11)}

.awards-text-row{
  display:grid;
  grid-template-columns:58px minmax(0,1fr) minmax(190px,.36fr);
  gap:24px;
  align-items:start;
  padding:28px 0;
  border-bottom:1px solid rgba(255,255,255,.09);
  transition:background .2s ease,padding .2s ease;
}

.awards-text-row:hover{
  padding-left:16px;
  padding-right:16px;
  background:rgba(255,255,255,.025);
}

.awards-row-number{
  padding-top:5px;
  color:rgba(255,255,255,.31);
  font-size:.66rem;
  font-weight:800;
  letter-spacing:.12em;
}

.awards-row-copy h4{
  margin:0;
  color:#fff;
  font-size:clamp(1.15rem,2vw,1.7rem);
  line-height:1.25;
  letter-spacing:-.025em;
}

.awards-row-copy p{
  max-width:680px;
  margin:10px 0 0;
  color:rgba(255,255,255,.51);
  font-size:.9rem;
  line-height:1.72;
}

.awards-row-meta{
  display:grid;
  justify-items:start;
  gap:7px;
}

.awards-row-meta strong{
  color:var(--cyan);
  font-size:.72rem;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.awards-row-meta span{
  color:rgba(255,255,255,.48);
  font-size:.74rem;
  line-height:1.55;
}

.awards-empty-state{
  min-height:260px;
  padding:clamp(28px,4vw,54px);
  display:grid;
  grid-template-columns:72px minmax(0,1fr);
  align-items:center;
  gap:26px;
  border:1px solid rgba(255,255,255,.1);
  background:rgba(255,255,255,.025);
}

.awards-empty-state>span{
  width:72px;
  height:72px;
  display:grid;
  place-items:center;
  border:1px solid rgba(27,214,255,.25);
  color:var(--cyan);
  font-weight:900;
}

.awards-empty-state h3{margin:0 0 10px;color:#fff;font-size:clamp(1.4rem,2.4vw,2rem)}
.awards-empty-state p{max-width:720px;margin:0;color:rgba(255,255,255,.55);line-height:1.75}

.awards-closing{
  min-height:54vh;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:34px;
  border-top:1px solid rgba(255,255,255,.06);
}

.awards-closing h2{
  margin:18px 0 0;
  color:#fff;
  font-size:clamp(2.5rem,6vw,6rem);
  line-height:.92;
  letter-spacing:-.055em;
}

/* Parent Lions Club — text-led and intentionally minimal */
.leo-parent-club{
  position:relative;
  overflow:hidden;
  border-top:1px solid rgba(255,255,255,.07);
  border-bottom:1px solid rgba(255,255,255,.07);
  background:
    radial-gradient(circle at 82% 20%,rgba(27,214,255,.09),transparent 32%),
    rgba(3,9,13,.56);
}

.leo-parent-club-head{
  display:grid;
  grid-template-columns:70px minmax(0,1fr) auto;
  align-items:end;
  gap:clamp(24px,4vw,55px);
  margin-bottom:clamp(50px,7vw,90px);
}

.leo-parent-club-head h2{
  margin:10px 0 0;
  color:#fff;
  font-size:clamp(2.7rem,5.7vw,5.8rem);
  line-height:.94;
  letter-spacing:-.055em;
}

.leo-parent-club-mark{
  width:118px;
  height:118px;
  display:grid;
  place-content:center;
  gap:5px;
  border:1px solid rgba(27,214,255,.22);
  border-radius:50%;
  text-align:center;
  background:rgba(27,214,255,.035);
}

.leo-parent-club-mark span{
  color:#fff;
  font-size:.63rem;
  font-weight:900;
  letter-spacing:.18em;
}

.leo-parent-club-mark strong{
  color:var(--cyan);
  font-size:1rem;
  letter-spacing:.08em;
}

.leo-parent-club-grid{
  display:grid;
  grid-template-columns:minmax(290px,.72fr) minmax(0,1.28fr);
  gap:clamp(44px,7vw,110px);
  align-items:start;
}

.leo-parent-club-identity{
  padding:clamp(28px,4vw,48px);
  border:1px solid rgba(255,255,255,.1);
  background:rgba(255,255,255,.025);
}

.leo-parent-club-identity small{
  color:var(--cyan);
  font-size:.62rem;
  font-weight:900;
  letter-spacing:.16em;
}

.leo-parent-club-identity h3{
  margin:24px 0 18px;
  color:#fff;
  font-size:clamp(2rem,3.8vw,4rem);
  line-height:.95;
  letter-spacing:-.045em;
}

.leo-parent-club-identity>p{
  margin:0;
  color:rgba(255,255,255,.5);
  font-size:.82rem;
}

.leo-parent-club-points{
  margin-top:34px;
  display:grid;
  gap:0;
  border-top:1px solid rgba(255,255,255,.09);
}

.leo-parent-club-points span{
  padding:13px 0;
  border-bottom:1px solid rgba(255,255,255,.08);
  color:rgba(255,255,255,.72);
  font-size:.72rem;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.leo-parent-club-copy{
  display:grid;
  gap:24px;
}

.leo-parent-club-copy p{
  margin:0;
  color:rgba(255,255,255,.67);
  font-size:clamp(1rem,1.4vw,1.16rem);
  line-height:1.9;
}

.leo-parent-club-copy .leo-parent-club-closing{
  margin-top:8px;
  padding:22px 0 0 24px;
  border-top:1px solid rgba(255,255,255,.1);
  border-left:2px solid var(--cyan);
  color:#fff;
  font-weight:650;
}

@media(max-width:1050px){
  .awards-showcase-hero{grid-template-columns:1fr .7fr;gap:45px}
  .awards-showcase-copy h1{font-size:clamp(3rem,8vw,6.8rem)}
  .awards-year-block{grid-template-columns:150px minmax(0,1fr);gap:40px}
  .awards-text-row{grid-template-columns:44px minmax(0,1fr) minmax(160px,.32fr)}
  .leo-parent-club-head{grid-template-columns:60px minmax(0,1fr)}
  .leo-parent-club-mark{display:none}
}

@media(max-width:820px){
  .awards-showcase-hero{min-height:auto;grid-template-columns:1fr;padding-top:140px}
  .awards-showcase-photo{width:min(100%,580px);margin:20px auto 0}
  .awards-showcase-stats{margin-top:45px}
  .awards-archive-head{grid-template-columns:1fr;gap:20px}
  .awards-year-block{grid-template-columns:1fr;gap:28px}
  .awards-year-head{position:static;display:flex;align-items:end;justify-content:space-between}
  .awards-text-row{grid-template-columns:42px minmax(0,1fr)}
  .awards-row-meta{grid-column:2}
  .awards-closing{min-height:420px;align-items:flex-start;justify-content:center;flex-direction:column}
  .leo-parent-club-head{grid-template-columns:46px minmax(0,1fr);gap:20px}
  .leo-parent-club-grid{grid-template-columns:1fr}
}

@media(max-width:560px){
  .awards-showcase-hero{padding-top:120px;padding-left:20px;padding-right:20px}
  .awards-showcase-copy h1{font-size:clamp(2.7rem,14vw,4.5rem)}
  .awards-showcase-copy>p:not(.eyebrow){font-size:.95rem}
  .awards-showcase-stats{grid-template-columns:1fr}
  .awards-showcase-stats div{padding:16px 0}
  .awards-showcase-stats div+div{padding-left:0;border-left:0;border-top:1px solid rgba(255,255,255,.08)}
  .awards-showcase-photo figcaption{align-items:flex-start;flex-direction:column;gap:5px}
  .awards-showcase-photo figcaption strong{text-align:left}
  .awards-archive{padding-left:20px;padding-right:20px}
  .awards-year-head{align-items:flex-start;flex-direction:column}
  .awards-text-row{grid-template-columns:32px minmax(0,1fr);gap:14px;padding:22px 0}
  .awards-text-row:hover{padding-left:0;padding-right:0;background:transparent}
  .awards-row-meta{grid-column:2}
  .awards-empty-state{grid-template-columns:1fr}
  .awards-empty-state>span{width:58px;height:58px}
  .awards-closing{padding-left:20px;padding-right:20px}
  .leo-parent-club{padding-left:20px;padding-right:20px}
  .leo-parent-club-head{grid-template-columns:1fr}
  .leo-parent-club-head>.leo-clean-index{margin-bottom:0}
  .leo-parent-club-identity{padding:24px 20px}
  .leo-parent-club-copy p{font-size:.96rem;line-height:1.8}
}


/* =========================================================
   2026-08 PROJECT STORY VIEW + MINIMAL PARENT CLUB
   ========================================================= */

/* Main hero: keep the founding year clean, without side rules. */
.hero.hero-redeveloped .hero-since {
  gap: 0 !important;
}
.hero.hero-redeveloped .hero-since::before,
.hero.hero-redeveloped .hero-since::after {
  content: none !important;
  display: none !important;
}

/* Creative project preview opened from the homepage or archive. */
.project-modal.project-modal-creative {
  padding: clamp(10px, 2vw, 26px);
}

.project-modal-creative .project-modal-backdrop {
  background: rgba(0, 5, 9, .88);
  backdrop-filter: blur(18px) saturate(.7);
}

.project-modal-creative .project-modal-panel {
  position: relative;
  width: min(1240px, 100%);
  height: min(820px, 92svh);
  max-height: 92svh;
  display: block !important;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 28px;
  background: #061017;
  box-shadow: 0 44px 150px rgba(0, 0, 0, .78);
  isolation: isolate;
}

.project-modal-creative .project-modal-ambient {
  position: absolute;
  inset: -7%;
  z-index: -2;
  width: 114%;
  height: 114%;
  object-fit: cover;
  filter: blur(48px) saturate(.85) brightness(.28);
  opacity: .52;
  transform: scale(1.06);
}

.project-modal-creative .project-modal-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(2, 8, 12, .28), rgba(2, 8, 12, .9) 55%, #061017 100%),
    linear-gradient(180deg, rgba(255,255,255,.025), transparent 22%);
  pointer-events: none;
}

.project-modal-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
}

.project-modal-topbar {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px clamp(20px, 3vw, 38px);
  border-bottom: 1px solid rgba(255, 255, 255, .09);
}

.project-modal-code {
  display: grid;
  gap: 4px;
}

.project-modal-code small {
  color: rgba(255,255,255,.42);
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .18em;
}

.project-modal-code strong {
  color: #fff;
  font-size: .78rem;
  letter-spacing: .12em;
}

.project-modal-creative .project-modal-close {
  position: static !important;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 50%;
  background: rgba(255,255,255,.035);
  color: #fff;
  font-size: 1.55rem;
  line-height: 1;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.project-modal-creative .project-modal-close:hover {
  border-color: rgba(29,213,255,.7);
  background: rgba(29,213,255,.1);
  transform: rotate(5deg);
}

.project-modal-layout {
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(360px, .92fr) minmax(0, 1.08fr);
  gap: clamp(30px, 5vw, 82px);
  padding: clamp(24px, 4vw, 56px);
  overflow: auto;
}

.project-modal-visual {
  min-width: 0;
  margin: 0;
  align-self: center;
}

.project-modal-creative .project-modal-image {
  position: relative;
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  aspect-ratio: 1 / 1 !important;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 22px;
  background: #0b151b;
  box-shadow: 0 28px 75px rgba(0,0,0,.36);
}

.project-modal-creative .project-modal-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: inherit;
  box-shadow: inset 0 -90px 90px rgba(0,0,0,.24);
  pointer-events: none;
}

.project-modal-creative .project-modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: projectImageEnter .55s cubic-bezier(.2,.8,.2,1) both;
}

@keyframes projectImageEnter {
  from { opacity: .25; transform: scale(1.045); }
  to { opacity: 1; transform: scale(1); }
}

.project-modal-visual figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 2px 0;
}

.project-modal-visual figcaption span,
.project-modal-visual figcaption b {
  font-size: .58rem;
  font-weight: 850;
  letter-spacing: .16em;
}

.project-modal-visual figcaption span {
  color: rgba(255,255,255,.42);
}

.project-modal-visual figcaption b {
  color: #73e5ba;
}

.project-modal-visual figcaption b.is-upcoming {
  color: var(--cyan);
}

.project-modal-creative .project-modal-copy {
  min-width: 0;
  align-self: center;
  padding: 0 !important;
}

.project-modal-creative .project-modal-copy .eyebrow {
  margin: 0;
}

.project-modal-creative .project-modal-copy h2 {
  max-width: 720px;
  margin: 22px 0 20px;
  font-size: clamp(3rem, 6vw, 6.8rem);
  line-height: .88;
  letter-spacing: -.062em;
  text-wrap: balance;
}

.project-modal-creative .project-modal-summary {
  max-width: 690px;
  margin: 0;
  color: #e6eef1;
  font-size: clamp(1rem, 1.6vw, 1.22rem);
  line-height: 1.65;
}

.project-modal-creative .project-modal-description {
  max-width: 690px;
  max-height: 190px;
  margin-top: 24px;
  padding-right: 14px;
  overflow-y: auto;
  color: rgba(255,255,255,.58);
  line-height: 1.82;
  scrollbar-width: thin;
  scrollbar-color: rgba(29,213,255,.38) transparent;
}

.project-modal-archive-link {
  width: fit-content;
  margin-top: 30px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.project-modal-archive-link span {
  color: var(--cyan);
  font-size: 1rem;
}

.project-modal-navigation {
  min-height: 92px;
  display: grid;
  grid-template-columns: minmax(0,1fr) auto minmax(0,1fr);
  align-items: center;
  gap: 24px;
  padding: 14px clamp(20px, 3vw, 38px);
  border-top: 1px solid rgba(255,255,255,.09);
  background: rgba(2,8,12,.48);
}

.project-modal-navigation button {
  min-width: 0;
  display: grid;
  gap: 5px;
  border: 0;
  background: none;
  color: #fff;
  text-align: left;
  cursor: pointer;
}

.project-modal-navigation button:last-child {
  text-align: right;
}

.project-modal-navigation small {
  color: var(--cyan);
  font-size: .55rem;
  font-weight: 850;
  letter-spacing: .16em;
}

.project-modal-navigation strong {
  overflow: hidden;
  color: rgba(255,255,255,.72);
  font-size: .78rem;
  font-weight: 650;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.project-modal-navigation button:hover strong {
  color: #fff;
}

.project-modal-counter {
  display: flex;
  align-items: baseline;
  gap: 7px;
  color: rgba(255,255,255,.38);
  font-size: .68rem;
}

.project-modal-counter b {
  color: #fff;
  font-size: 1.2rem;
}

.project-modal-counter i {
  color: var(--cyan);
  font-style: normal;
}

/* Parent club: minimal and aligned with the page's editorial sections. */
.leo-parent-club-minimal {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.07);
  border-bottom: 1px solid rgba(255,255,255,.07);
  background: transparent;
}

.leo-parent-club-minimal::after {
  content: '';
  position: absolute;
  right: 8%;
  top: 15%;
  width: 1px;
  height: 70%;
  background: linear-gradient(transparent, rgba(29,213,255,.34), transparent);
  pointer-events: none;
}

.parent-club-minimal-body {
  display: grid;
  grid-template-columns: minmax(270px, .72fr) minmax(0, 1.28fr);
  gap: clamp(42px, 8vw, 118px);
  margin-top: clamp(48px, 7vw, 88px);
  padding-top: clamp(30px, 4vw, 52px);
  border-top: 1px solid rgba(255,255,255,.09);
}

.parent-club-minimal-identity small {
  color: var(--cyan);
  font-size: .61rem;
  font-weight: 900;
  letter-spacing: .17em;
}

.parent-club-minimal-identity h3 {
  margin: 22px 0 16px;
  color: #fff;
  font-size: clamp(2rem, 3.8vw, 4.1rem);
  line-height: .94;
  letter-spacing: -.048em;
}

.parent-club-minimal-identity p {
  margin: 0;
  color: rgba(255,255,255,.45);
  font-size: .78rem;
}

.parent-club-minimal-copy {
  max-width: 760px;
  display: grid;
  gap: 20px;
}

.parent-club-minimal-copy > p {
  margin: 0;
  color: rgba(255,255,255,.68);
  font-size: clamp(1rem, 1.35vw, 1.14rem);
  line-height: 1.9;
}

.parent-club-minimal-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  margin-top: 14px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.09);
}

.parent-club-minimal-points span {
  position: relative;
  padding-left: 14px;
  color: rgba(255,255,255,.56);
  font-size: .64rem;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.parent-club-minimal-points span::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cyan);
  transform: translateY(-50%);
}

@media (max-width: 900px) {
  .project-modal-creative .project-modal-panel {
    height: min(94svh, 940px);
    max-height: 94svh;
    border-radius: 22px;
  }

  .project-modal-layout {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 22px;
  }

  .project-modal-visual {
    width: min(100%, 500px);
    margin-inline: auto;
  }

  .project-modal-creative .project-modal-copy {
    width: min(100%, 620px);
    margin-inline: auto;
    padding-bottom: 10px !important;
  }

  .project-modal-creative .project-modal-copy h2 {
    font-size: clamp(2.8rem, 11vw, 5rem);
  }

  .project-modal-creative .project-modal-description {
    max-height: none;
  }

  .parent-club-minimal-body {
    grid-template-columns: 1fr;
    gap: 34px;
  }
}

@media (max-width: 620px) {
  .project-modal.project-modal-creative {
    padding: 7px;
  }

  .project-modal-creative .project-modal-panel {
    border-radius: 18px;
  }

  .project-modal-topbar {
    min-height: 68px;
    padding: 12px 16px;
  }

  .project-modal-layout {
    padding: 16px 14px 24px;
  }

  .project-modal-creative .project-modal-image {
    border-radius: 16px;
  }

  .project-modal-creative .project-modal-copy h2 {
    margin-top: 17px;
    font-size: clamp(2.55rem, 13vw, 4rem);
  }

  .project-modal-navigation {
    min-height: 74px;
    grid-template-columns: 1fr auto 1fr;
    gap: 10px;
    padding: 10px 14px;
  }

  .project-modal-navigation strong {
    display: none;
  }

  .project-modal-navigation button:last-child::after,
  .project-modal-navigation button:first-child::after {
    color: #fff;
    font-size: 1.1rem;
  }

  .project-modal-navigation button:first-child::after { content: '←'; }
  .project-modal-navigation button:last-child::after { content: '→'; }

  .project-modal-counter b {
    font-size: 1rem;
  }

  .leo-parent-club-minimal::after {
    right: 18px;
  }

  .parent-club-minimal-identity h3 {
    font-size: 2.35rem;
  }

  .parent-club-minimal-points {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
}
/* Awards category layout fix */

.awards-showcase-page .awards-year-block {
    display: grid !important;
    grid-template-columns: minmax(190px, 240px) minmax(0, 1fr) !important;
    column-gap: clamp(35px, 6vw, 80px) !important;
    align-items: start !important;
}

.awards-showcase-page .awards-year-head {
    grid-column: 1 !important;
    min-width: 0 !important;
}

.awards-showcase-page .awards-category-stack {
    grid-column: 2 !important;
    width: 100% !important;
    min-width: 0 !important;
}

.awards-showcase-page .awards-category-block {
    width: 100% !important;
    min-width: 0 !important;
}

.awards-showcase-page .awards-category-block + .awards-category-block {
    margin-top: 70px !important;
}

.awards-showcase-page .awards-text-list,
.awards-showcase-page .awards-text-row,
.awards-showcase-page .awards-row-copy {
    width: 100% !important;
    min-width: 0 !important;
}

.awards-showcase-page .awards-row-copy h4,
.awards-showcase-page .awards-row-copy p {
    max-width: none !important;
    word-break: normal !important;
    overflow-wrap: break-word !important;
}

@media (max-width: 850px) {
    .awards-showcase-page .awards-year-block {
        grid-template-columns: 1fr !important;
        row-gap: 35px !important;
    }

    .awards-showcase-page .awards-year-head,
    .awards-showcase-page .awards-category-stack {
        grid-column: 1 !important;
    }
}
/* Clean navigation bar */

.nav-shell {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.nav-shell::before,
.nav-shell::after {
    display: none !important;
}

.brand-mark,
.brand-logo {
    border: none !important;
    box-shadow: none !important;
    filter: none !important;
}

.brand-mark strong {
    color: #ffffff;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.brand-mark small {
    color: rgba(255, 255, 255, 0.58);
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: none;
}
/* Round navigation logo without glow */

.nav-shell .brand-logo {
    width: 46px !important;
    height: 46px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    object-position: center !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    filter: none !important;
}

.nav-shell .brand-mark {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    filter: none !important;
}

.nav-shell .brand-mark::before,
.nav-shell .brand-mark::after {
    content: none !important;
    display: none !important;
}

@media (max-width: 700px) {
    .nav-shell .brand-logo {
        width: 40px !important;
        height: 40px !important;
    }
}