/* Panda Pictures — fitness pitch deck. Energetic/athletic: high-contrast
   black/white with an electric-lime accent, strong geometric sans. */

:root {
  --bg:      #0b0c0e;
  --bg2:     #131418;
  --fg:      #f4f5f7;
  --muted:   #9aa0a8;
  --line:    #23252b;
  --accent:  #c7f73f;   /* electric lime */
  --accent-ink: #0b0c0e;
  --nav-h:   64px;
  --maxw:    1400px;
  font-synthesis: none;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: "Helvetica Neue", Helvetica, Arial, system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img { display: block; }
a { color: inherit; text-decoration: none; }

/* ---- nav ---------------------------------------------------------------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; height: var(--nav-h);
  display: flex; align-items: center; gap: 28px;
  padding: 0 26px;
  background: rgba(11, 12, 14, .82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  z-index: 100;
}
.nav .brand {
  font-weight: 800; letter-spacing: .02em; font-size: 18px;
  white-space: nowrap; text-transform: uppercase;
}
.nav .brand b { color: var(--accent); }
.nav .brand { display: flex; align-items: center; }
.brand-logo { height: 34px; width: auto; display: block; }
.nav .links {
  display: flex; gap: 6px; margin-left: auto; flex-wrap: wrap;
  justify-content: flex-end;
}
.nav .links a {
  font-size: 12px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--muted);
  padding: 8px 12px; border-radius: 999px; white-space: nowrap;
  transition: color .15s, background .15s;
}
.nav .links a:hover { color: var(--fg); background: var(--bg2); }
.nav .links a.active { color: var(--accent-ink); background: var(--accent); }

/* ---- hero --------------------------------------------------------------- */
.hero {
  min-height: min(74vh, 620px);
  padding: calc(var(--nav-h) + 70px) 26px 70px;
  max-width: var(--maxw); margin: 0 auto;
  display: flex; flex-direction: column; justify-content: center;
  text-align: center;
}
.hero .tagline {
  color: var(--accent); font-weight: 800; letter-spacing: .18em;
  text-transform: uppercase; font-size: 13px; margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(48px, 9vw, 128px); line-height: .92;
  font-weight: 800; letter-spacing: -.02em; margin: 0;
  text-transform: uppercase;
}
.hero h1 .b2 { color: var(--muted); }
.hero .hero-logo {
  width: auto; max-width: min(420px, 70vw); height: auto; margin: 4px auto 6px;
  display: block;
}
.hero .sub {
  margin: 26px auto 0; max-width: 640px; font-size: clamp(16px, 2vw, 20px);
  color: var(--muted);
}

/* ---- sections ----------------------------------------------------------- */
main { max-width: var(--maxw); margin: 0 auto; padding: 0 26px 120px; }

section { padding-top: 60px; }
.sec-head { margin-bottom: 30px; border-top: 2px solid var(--line); padding-top: 26px; text-align: center; }
.sec-head .kicker {
  color: var(--accent); font-weight: 800; letter-spacing: .16em;
  text-transform: uppercase; font-size: 12px; margin-bottom: 10px;
}
.sec-head h2 {
  font-size: clamp(30px, 5vw, 58px); line-height: 1; margin: 0;
  font-weight: 800; letter-spacing: -.02em; text-transform: uppercase;
}
.sec-head .intro { margin: 14px auto 0; max-width: 620px; color: var(--muted); font-size: 16px; }

.divider {
  margin: 90px 0 10px; text-align: center;
  color: var(--muted); font-weight: 800; letter-spacing: .3em;
  text-transform: uppercase; font-size: 12px;
}
.divider::before, .divider::after {
  content: ""; display: inline-block; width: 60px; height: 1px;
  background: var(--line); vertical-align: middle; margin: 0 16px;
}

/* ---- masonry grid ------------------------------------------------------- */
.grid { column-count: 3; column-gap: 16px; }
@media (max-width: 980px) { .grid { column-count: 2; } }
@media (max-width: 620px) { .grid { column-count: 1; } }

.tile {
  break-inside: avoid; margin: 0 0 16px; position: relative;
  cursor: zoom-in; overflow: hidden; border-radius: 10px;
  background: var(--bg2); border: 1px solid var(--line);
}
.tile img {
  width: 100%; height: auto; object-fit: contain;   /* native orientation, never cropped */
  transition: transform .4s ease, filter .3s;
}
.tile:hover img { transform: scale(1.035); filter: brightness(1.06); }
.tile .cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 26px 12px 10px; font-size: 12px; font-weight: 700;
  letter-spacing: .04em; color: #fff; opacity: 0;
  background: linear-gradient(transparent, rgba(0,0,0,.72));
  transition: opacity .2s; text-transform: uppercase;
}
.tile:hover .cap { opacity: 1; }
.tile .badge {
  position: absolute; top: 10px; left: 10px;
  background: var(--accent); color: var(--accent-ink);
  font-size: 11px; font-weight: 800; letter-spacing: .06em;
  padding: 4px 9px; border-radius: 999px; text-transform: uppercase;
}

/* ---- about / intro ------------------------------------------------------ */
.about { text-align: center; }
.about .lead { max-width: 720px; margin: 0 auto; }
.about .lead p { font-size: clamp(17px, 2.2vw, 22px); color: var(--fg); margin: 0 0 16px; }
.about .team {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 40px;
  margin: 44px auto 0;
}
.about .member { margin: 0; width: 200px; }
.about .member img {
  width: 160px; height: 160px; border-radius: 50%; object-fit: cover;
  margin: 0 auto 14px; border: 2px solid var(--line);
}
.about .member .m-name {
  display: block; font-weight: 800; font-size: 17px; letter-spacing: -.01em;
}
.about .member .m-role {
  display: block; margin-top: 4px; color: var(--muted); font-size: 12px;
  font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
}

.about blockquote {
  margin: 40px auto 0; max-width: 820px; padding-top: 26px;
  border-top: 3px solid var(--accent);
  font-size: clamp(20px, 3vw, 30px); font-weight: 700; line-height: 1.25;
  letter-spacing: -.01em;
}
.about blockquote .by {
  display: block; margin-top: 12px; font-size: 13px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; color: var(--muted);
}

/* ---- lightbox ----------------------------------------------------------- */
.lb {
  position: fixed; inset: 0; z-index: 200; display: none;
  background: rgba(6, 7, 9, .96); align-items: center; justify-content: center;
}
.lb.open { display: flex; }
.lb img {
  max-width: 92vw; max-height: 88vh; width: auto; height: auto;
  object-fit: contain; border-radius: 8px;
  box-shadow: 0 30px 90px rgba(0,0,0,.6);
}
.lb .lb-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(255,255,255,.08); border: 1px solid var(--line);
  color: #fff; font-size: 24px; cursor: pointer; user-select: none;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s;
}
.lb .lb-btn:hover { background: var(--accent); color: var(--accent-ink); }
.lb .prev { left: 22px; } .lb .next { right: 22px; }
.lb .close { top: 22px; right: 22px; transform: none; width: 48px; height: 48px; font-size: 22px; }
.lb .counter {
  position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%);
  font-size: 13px; font-weight: 700; letter-spacing: .1em; color: var(--muted);
}
@media (max-width: 620px) {
  .lb .lb-btn { width: 44px; height: 44px; }
  .lb .prev { left: 8px; } .lb .next { right: 8px; }
}

footer {
  max-width: var(--maxw); margin: 0 auto; padding: 40px 26px 60px;
  border-top: 1px solid var(--line); color: var(--muted);
  font-size: 12px; letter-spacing: .06em; text-transform: uppercase;
}
