﻿:root {
  --bg: #080808;
  --bg-soft: #101010;
  --panel: #171717;
  --panel-2: #1f1f1f;
  --line: #2d2d2d;
  --line-strong: #454545;
  --text: #f1f1f1;
  --text-soft: #b0b0b0;
  --text-muted: #8c8c8c;
  --accent: #dddddd;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  --ui-scale: 1.12;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Space Grotesk", sans-serif;
  font-size: calc(16px * var(--ui-scale));
  color: var(--text);
  line-height: 1.55;
  background:
    radial-gradient(circle at 12% 0%, #202020 0%, rgba(32, 32, 32, 0) 42%),
    radial-gradient(circle at 88% 18%, #181818 0%, rgba(24, 24, 24, 0) 44%),
    var(--bg);
  min-height: 100vh;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1240px, calc(100% - 2.5rem));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.site-header.scrolled {
  background: rgba(8, 8, 8, 0.9);
  border-color: var(--line);
  backdrop-filter: blur(10px);
}

.header-wrap {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.brand img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  color: var(--text-soft);
  font-size: 1rem;
}

.nav-menu a {
  transition: color 0.2s ease;
}

.nav-menu a:hover,
.nav-menu a:focus-visible,
.nav-menu a.active {
  color: var(--text);
}

.mobile-toggle {
  display: none;
  background: transparent;
  color: var(--text);
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 1.2rem;
}

.btn {
  border: 1px solid var(--line-strong);
  background: linear-gradient(180deg, #2d2d2d, #171717);
  color: var(--text);
  border-radius: 999px;
  padding: 0.82rem 1.35rem;
  font-size: 0.98rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  border-color: #666;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.35);
}

.btn-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--text-soft);
}

.page-hero {
  min-height: 62vh;
  display: flex;
  align-items: end;
  position: relative;
  padding: 8.5rem 0 4rem;
  border-bottom: 1px solid var(--line);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(105deg, rgba(10, 10, 10, 0.9) 35%, rgba(10, 10, 10, 0.45) 100%),
    var(--hero-image, url("images/GE8FIT PHOTO_35.jpg")) center / cover no-repeat;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to bottom, rgba(8, 8, 8, 0) 65%, #080808 100%);
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
}

.hero-title,
.section-title {
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 0.95;
}

.hero-title {
  font-size: clamp(3.2rem, 10vw, 7rem);
  max-width: 12ch;
  margin-bottom: 1rem;
}

.hero-copy {
  color: #c0c0c0;
  max-width: 62ch;
}

.section {
  padding: 5.5rem 0;
}

.section-tight {
  padding: 4rem 0;
}

.section-title {
  font-size: clamp(2.3rem, 5.8vw, 3.6rem);
  margin-bottom: 0.8rem;
}

.section-copy {
  color: var(--text-soft);
  max-width: 64ch;
}

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

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.card {
  border: 1px solid var(--line);
  background: linear-gradient(165deg, #1b1b1b, #101010 90%);
  border-radius: var(--radius);
  padding: 1.35rem;
}

.card h3 {
  font-family: "Barlow Condensed", sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 1.8rem;
  margin-bottom: 0.45rem;
}

.card p,
.list li,
.meta {
  color: var(--text-soft);
}

.card-link {
  margin-top: 0.9rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
  display: inline-block;
}

.metric {
  border: 1px solid var(--line);
  background: linear-gradient(160deg, #171717, #0f0f0f);
  border-radius: var(--radius);
  padding: 1.25rem;
}

.metric strong {
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2.15rem;
  letter-spacing: 0.03em;
}

.metric span {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
  color: var(--text-soft);
}

.media-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.media-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 340px;
}

.list {
  list-style: none;
  display: grid;
  gap: 0.9rem;
}

.list li {
  border-bottom: 1px solid #292929;
  padding-bottom: 0.9rem;
}

.list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.list h4 {
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: repeat(2, 230px);
  gap: 1rem;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid var(--line);
}

.gallery-grid img:first-child {
  grid-row: span 2;
}

.quote {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #131313;
  padding: 1.2rem;
}

.quote p {
  color: #d7d7d7;
  margin-bottom: 0.8rem;
}

.quote strong {
  display: block;
  font-size: 0.95rem;
}

.quote span {
  color: var(--text-soft);
  font-size: 0.84rem;
}

.cta-box {
  border: 1px solid var(--line-strong);
  background: linear-gradient(140deg, #222 0%, #101010 75%);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  box-shadow: var(--shadow);
}

.actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.3rem;
}

.blog-post {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #121212;
}

.blog-post img {
  height: 200px;
  width: 100%;
  object-fit: cover;
}

.blog-post .content {
  padding: 1rem;
}

.form-wrap {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, #1a1a1a, #101010);
  padding: 1.4rem;
}

.form-grid {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: 1fr 1fr;
}

.form-grid .full {
  grid-column: span 2;
}

label {
  display: block;
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line-strong);
  background: #0d0d0d;
  color: var(--text);
  border-radius: 12px;
  padding: 0.72rem 0.8rem;
  font-family: inherit;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

footer {
  border-top: 1px solid var(--line);
  padding: 2rem 0;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  color: var(--text-soft);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

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

@media (max-width: 980px) {
  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-3,
  .grid-2,
  .gallery-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-rows: repeat(5, 220px);
  }

  .gallery-grid img:first-child {
    grid-row: span 1;
  }

  .form-grid .full {
    grid-column: auto;
  }
}

@media (max-width: 760px) {
  .site-header {
    background: rgba(8, 8, 8, 0.95);
    border-color: var(--line);
  }

  .mobile-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-menu {
    display: none;
    position: absolute;
    inset: calc(100% + 0.5rem) 1.5rem auto;
    background: #101010;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 1rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-menu.open {
    display: flex;
  }

  .section {
    padding: 4.4rem 0;
  }

  .cta-box {
    padding: 1.5rem;
  }

  .container {
    width: min(1240px, calc(100% - 1.5rem));
  }
}


