/* ── RESET + VARIABLES ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── DARK MODE (default) ── */
:root {
  --black:  #080808;
  --dark:   #111111;
  --mid:    #1a1a1a;
  --border: #2a2a2a;
  --white:  #f5f5f0;
  --muted:  #888880;
  --accent: #c0392b;
}

/* ── LIGHT MODE ── */
body.light {
  --black:  #f0f0eb;
  --dark:   #e6e6e1;
  --mid:    #d8d8d3;
  --border: #c4c4bf;
  --white:  #0c0c0a;
  --muted:  #5a5a54;
  --accent: #c0392b;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3rem;
  height: 70px;
  background: linear-gradient(to bottom, rgba(8,8,8,0.95) 0%, rgba(8,8,8,0) 100%);
  transition: background 0.4s ease, border-color 0.4s ease;
}

nav.scrolled {
  background: rgba(8,8,8,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

body.light nav {
  background: linear-gradient(to bottom, rgba(240,240,235,0.95) 0%, rgba(240,240,235,0) 100%);
}

body.light nav.scrolled {
  background: rgba(240,240,235,0.97);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  line-height: 1;
}

.nav-logo span { color: var(--accent); }

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active { color: var(--white); }

/* ── HOME HERO ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.04);
  transition: transform 8s ease;
}

.hero.loaded .hero-img { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8,8,8,0.1) 0%,
    rgba(8,8,8,0.0) 40%,
    rgba(8,8,8,0.55) 75%,
    rgba(8,8,8,0.92) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 3rem 5rem;
  max-width: 900px;
}

.hero-eyebrow {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(245,245,240,0.7); /* always light over photo */
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(3.5rem, 9vw, 8rem);
  line-height: 0.92;
  font-weight: 800;
  color: #f5f5f0;
  margin-bottom: 2.5rem;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.hero-title em {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--muted);
  max-width: 440px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.hero-cta {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  border: 1px solid rgba(245,245,240,0.45); /* always visible over dark photo */
  color: #f5f5f0; /* always white, regardless of theme */
  text-decoration: none;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.hero-cta:hover {
  background: rgba(192,57,43,0.2);
  border-color: var(--accent);
  color: #f5f5f0;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  right: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 2;
}

.hero-scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, var(--muted));
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 1; }
}

/* ── PAGE HERO (gallery pages) ── */
.page-hero {
  position: relative;
  height: 65vh;
  min-height: 400px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.page-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transform: scale(1.03);
  transition: transform 6s ease;
}

.page-hero.loaded .page-hero-img { transform: scale(1); }

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8,8,8,0.3) 0%,
    rgba(8,8,8,0.0) 30%,
    rgba(8,8,8,0.6) 70%,
    rgba(8,8,8,0.95) 100%
  );
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 3rem 4rem;
}

.page-hero-eyebrow {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.page-hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.0;
  font-weight: 700;
  color: #f5f5f0; /* always white — readable over photo overlay */
}

/* ── SHARED SECTION ── */
section { padding: 6rem 3rem; }

.section-label {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
  display: block;
}

.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
}

.divider {
  width: 40px;
  height: 1px;
  background: var(--accent);
  margin: 2rem 0;
}

/* ── HOME GALLERY ── */
#work { background: var(--black); padding-top: 5rem; }

.gallery-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
}

.gallery-view-all {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.gallery-view-all:hover { color: var(--white); border-color: var(--white); }

/* Featured wide shot */
.gallery-feature {
  width: 100%;
  margin-bottom: 35px;
  position: relative;
  overflow: hidden;
  display: block;
  height: 520px;
  cursor: pointer;
  border-radius: 14px;
}

.gallery-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  display: block;
  transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.4s ease;
  filter: brightness(0.88);
}

.gallery-feature:hover img {
  transform: scale(1.03);
  filter: brightness(1.0);
}

/* Masonry grid — flex columns, JS distributes items */
.gallery-grid {
  display: flex;
  gap: 35px;
  align-items: flex-start;
}

.gallery-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  display: block;
  cursor: pointer;
  border-radius: 14px;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.4s ease;
  filter: brightness(0.9);
}

.gallery-item:hover img {
  transform: scale(1.04);
  filter: brightness(1.0);
}

.gallery-item-overlay,
.gallery-feature .gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.75) 0%, rgba(8,8,8,0) 55%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  pointer-events: none;
}

.gallery-feature .gallery-item-overlay {
  padding: 2.5rem 3rem;
}

.gallery-item:hover .gallery-item-overlay,
.gallery-feature:hover .gallery-item-overlay { opacity: 1; }

.gallery-item-caption {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245,245,240,0.9);
  transform: translateY(6px);
  transition: transform 0.4s ease;
}

.gallery-feature .gallery-item-caption { font-size: 0.8rem; }

.gallery-item:hover .gallery-item-caption,
.gallery-feature:hover .gallery-item-caption { transform: translateY(0); }

/* Sport tag badge */
.sport-tag {
  display: inline-block;
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(192,57,43,0.4);
  padding: 0.2rem 0.5rem;
  margin-bottom: 0.4rem;
}

/* ── HIGHLIGHTS SECTION (gallery pages) ── */
.highlights-section {
  background: var(--black);
  padding: 5rem 3rem 4rem;
}

.highlights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
  margin-top: 2.5rem;
}

.highlight-item {
  position: relative;
  overflow: hidden;
  display: block;
  cursor: pointer;
  height: 540px;
  border-radius: 14px;
}

.highlight-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.4s ease;
  filter: brightness(0.88);
}

.highlight-item:hover img {
  transform: scale(1.04);
  filter: brightness(1.0);
}

.highlight-item .gallery-item-overlay {
  opacity: 0;
  padding: 2rem;
}

.highlight-item:hover .gallery-item-overlay { opacity: 1; }
.highlight-item:hover .gallery-item-caption { transform: translateY(0); }

.highlight-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  background: var(--accent);
  color: #f5f5f0;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.3rem 0.6rem;
  z-index: 1;
}

/* ── FULL GALLERY SECTION (gallery pages) ── */
.full-gallery-section {
  background: var(--dark);
  padding: 5rem 3rem;
  border-top: 1px solid var(--border);
}

/* ── ABOUT ── */
#about {
  background: var(--dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
}

/* Fade-top effect on about image */
.about-img-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 35%;
  background: linear-gradient(to bottom, var(--dark) 0%, transparent 100%);
  z-index: 1;
  pointer-events: none;
  border-radius: 14px 14px 0 0;
}

.about-img-wrap img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: brightness(0.9);
  transition: transform 0.8s ease, filter 0.4s ease;
  border-radius: 14px;
}

.about-img-wrap:hover img {
  transform: scale(1.03);
  filter: brightness(1.0);
}

.about-body {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.95;
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.about-body strong {
  color: var(--white);
  font-weight: 500;
}

.about-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}

.about-stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.8rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.about-stat-label {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── SPORTS CARDS ── */
#sports { background: var(--black); }

.sports-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  margin-top: 3rem;
}

.sport-card {
  background: var(--dark);
  padding: 2.5rem;
  transition: background 0.3s ease;
  text-decoration: none;
  display: block;
}

.sport-card:hover { background: var(--mid); }

.sport-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: var(--border);
  line-height: 1;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.sport-card:hover .sport-num { color: var(--accent); }

.sport-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.sport-desc {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 1.25rem;
}

.sport-link-label {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ── CONTACT ── */
#contact {
  background: var(--dark);
  border-top: 1px solid var(--border);
  text-align: center;
}

.contact-sub {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 3.5rem;
  line-height: 1.8;
  margin-top: 1rem;
}

.contact-form {
  max-width: 580px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: var(--mid);
  border: 1px solid var(--border);
  color: var(--white);
  padding: 1rem 1.25rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.03em;
  outline: none;
  transition: border-color 0.25s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--muted);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--accent); }

.contact-form textarea { height: 130px; resize: none; }

.contact-submit {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--white);
  padding: 1rem 2.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
  align-self: center;
  margin-top: 0.5rem;
}

.contact-submit:hover {
  background: rgba(192,57,43,0.1);
  border-color: var(--accent);
  color: var(--accent);
}

/* ── CTA STRIP (gallery pages) ── */
.cta-strip {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 5rem 3rem;
  text-align: center;
}

.cta-strip .section-title { margin-bottom: 1rem; }

.cta-strip p {
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

/* ── FOOTER ── */
footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 2.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.footer-copy {
  font-size: 0.65rem;
  color: var(--muted);
  letter-spacing: 0.1em;
}

.footer-social {
  display: flex;
  gap: 1.5rem;
}

.footer-social a {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-social a:hover { color: var(--accent); }

/* ── LIGHTBOX ── */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

#lightbox.active { display: flex; }

.lb-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4,4,4,0.97);
}

.lb-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 90vw;
  max-height: 92vh;
}

#lb-img {
  max-width: 88vw;
  max-height: 84vh;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.25s ease;
  display: block;
}

.lb-caption {
  margin-top: 1rem;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245,245,240,0.45);
  text-align: center;
}

.lb-counter {
  position: fixed;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: rgba(245,245,240,0.3);
  z-index: 2;
}

.lb-close {
  position: fixed;
  top: 1.25rem;
  right: 2rem;
  background: none;
  border: none;
  color: rgba(245,245,240,0.55);
  font-size: 2rem;
  cursor: pointer;
  z-index: 2;
  line-height: 1;
  transition: color 0.2s ease;
  padding: 0.25rem;
}

.lb-close:hover { color: #f5f5f0; }

.lb-prev, .lb-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(245,245,240,0.6);
  font-size: 1.1rem;
  width: 48px;
  height: 48px;
  cursor: pointer;
  z-index: 2;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lb-prev { left: 1.5rem; }
.lb-next { right: 1.5rem; }

.lb-prev:hover, .lb-next:hover {
  background: rgba(192,57,43,0.15);
  color: var(--accent);
  border-color: rgba(192,57,43,0.5);
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }

/* ── THEME TOGGLE ── */
.theme-toggle {
  position: fixed;
  left: -1px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 400;
  background: var(--dark);
  border: 1px solid var(--border);
  border-left: none;
  border-radius: 0 6px 6px 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: background 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
  user-select: none;
}

.tgl-opt {
  writing-mode: vertical-lr;
  text-orientation: mixed;
  padding: 0.9rem 0.55rem;
  font-size: 0.48rem;
  letter-spacing: 0.22em;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.25s ease;
}

.tgl-sep {
  height: 1px;
  width: 100%;
  background: var(--border);
  transition: background 0.3s ease;
}

/* Dark mode is default — Dark label is active */
.tgl-dark  { color: var(--white); }
.tgl-light { color: var(--muted); }

/* Light mode override */
body.light .tgl-dark  { color: var(--muted); }
body.light .tgl-light { color: var(--white); }

/* ── TEXT HERO (homepage only) ── */
.text-hero {
  background: var(--black);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(70px + 5rem) 3rem 6rem;
  transition: background 0.4s ease;
}

.text-hero-inner { max-width: 1100px; }

.text-hero-eyebrow {
  display: block;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2.5rem;
}

.text-hero-title {
  font-family: 'Barlow Condensed', 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 11vw, 10rem);
  font-weight: 800;
  line-height: 0.88;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 3.5rem;
  letter-spacing: -0.01em;
}

.text-hero-title .dim { color: var(--muted); }

/* ── HOME PHOTO ── */
.home-photo {
  width: 100%;
  height: 80vh;
  min-height: 480px;
  overflow: hidden;
  position: relative;
}

.home-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  transform: scale(1.04);
  transition: transform 8s ease;
  filter: brightness(0.88);
}

.home-photo.loaded img { transform: scale(1); }

/* ── MOBILE ── */
@media (max-width: 900px) {
  nav { padding: 0 1.5rem; }
  .nav-links { gap: 1.5rem; }
  section { padding: 4.5rem 1.5rem; }
  .hero-content { padding: 0 1.5rem 4rem; }
  .page-hero-content { padding: 0 1.5rem 3rem; }
  .gallery-grid { gap: 20px; }
  .gallery-col { gap: 20px; }
  /* JS will create 2 cols on mobile — hide 3rd if present */
  .gallery-col:nth-child(3) { display: none; }
  .highlights-grid { grid-template-columns: 1fr; gap: 20px; }
  .highlight-item { height: 380px; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .sports-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-row { grid-template-columns: 1fr; }
  footer { flex-direction: column; gap: 1rem; text-align: center; }
  .lb-prev { left: 0.5rem; }
  .lb-next { right: 0.5rem; }
  .hero-title { font-size: clamp(2.8rem, 12vw, 5rem); }
}

@media (max-width: 580px) {
  .gallery-col:nth-child(2),
  .gallery-col:nth-child(3) { display: none; }
  .nav-links { display: none; }
  .gallery-feature { height: 300px; }
  .sports-grid { grid-template-columns: 1fr; }
}
