* {
  box-sizing: border-box;
}

:root {
  --black: #111111;
  --dark: #1c1c1c;
  --gray: #666666;
  --light-gray: #f4f4f1;
  --white: #ffffff;
  --accent: #caa86a;
  --border: #dedbd2;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 18px 6%;
  background: rgba(17, 17, 17, 0.95);
  color: var(--white);
}

.logo {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 3px;
  text-decoration: none;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.nav a {
  font-size: 14px;
  text-decoration: none;
  opacity: 0.88;
}

.nav a:hover {
  opacity: 1;
  color: var(--accent);
}

.hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  place-items: center;
  padding: 80px 6%;
  color: var(--white);
  text-align: center;
  background:
    linear-gradient(135deg, rgba(17, 17, 17, 0.88), rgba(17, 17, 17, 0.45)),
    radial-gradient(circle at top left, rgba(202, 168, 106, 0.4), transparent 34%),
    url("assets/gym-hero.jpg");
  background-size: cover;
  background-position: center;
}

.hero-content {
  position: relative;
  max-width: 820px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
}

.hero h1 {
  margin: 0;
  font-size: 72px;
  line-height: 0.95;
  letter-spacing: 7px;
}

.tagline {
  margin: 14px 0 0;
  font-size: 34px;
  font-weight: 300;
}

.hero-copy {
  max-width: 620px;
  margin: 22px auto 0;
  font-size: 18px;
  opacity: 0.9;
}

.button {
  display: inline-block;
  margin-top: 30px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
}

.button-light {
  background: var(--white);
  color: var(--black);
}

.section {
  padding: 82px 6%;
}

.center {
  text-align: center;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 38px;
}

.section-heading h2,
.split-section h2,
.ownership-card h2 {
  margin: 0;
  font-size: 42px;
  line-height: 1.05;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 50px;
  align-items: start;
}

.split-section p {
  font-size: 18px;
  color: var(--gray);
}

.ownership-card-section {
  background: var(--light-gray);
}

.ownership-card {
  max-width: 1080px;
  margin: 0 auto;
  padding: 38px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
}

.ownership-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 30px 0;
}

.ownership-grid div {
  padding: 20px;
  border-radius: 16px;
  background: var(--light-gray);
}

.label {
  display: block;
  margin-bottom: 5px;
  color: var(--gray);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ownership-grid strong {
  font-size: 20px;
}

.ownership-note {
  margin-bottom: 0;
  font-size: 18px;
}

.dark-section {
  background: var(--black);
  color: var(--white);
}

.dark-section .section-heading p,
.dark-section .card p {
  color: rgba(255, 255, 255, 0.75);
}

.cards {
  display: grid;
  gap: 24px;
}

.two-columns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.three-columns,
.team-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card,
.team-card,
.quote-card {
  padding: 30px;
  border-radius: 22px;
  background: var(--white);
  border: 1px solid var(--border);
}

.dark-section .card {
  color: var(--white);
  background: #222222;
  border-color: #333333;
}

.card-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--black);
  font-weight: 800;
}

.card h3,
.team-card h3,
.quote-card h3 {
  margin: 0 0 12px;
  font-size: 24px;
}

.muted,
.role {
  color: var(--gray);
}

.dark-section .muted {
  color: rgba(255, 255, 255, 0.55);
}

.photo-placeholder {
  min-height: 250px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(202, 168, 106, 0.25), rgba(17, 17, 17, 0.08)),
    var(--light-gray);
  border: 1px dashed #bbb;
  color: var(--gray);
  font-weight: 700;
}

.team-photo {
  width: 100%;
  max-width: 100%;
  height: 250px;
  object-fit: cover;
  object-position: center top;
  border-radius: 18px;
  margin-bottom: 22px;
  display: block;
}

.testimonial-section {
  background: var(--light-gray);
}

.quote-card p {
  font-size: 17px;
  color: var(--gray);
}

.approach-section {
  background: var(--white);
}

.footer {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 26px;
  padding: 46px 6%;
  background: var(--black);
  color: var(--white);
}

.footer h2 {
  margin: 0;
  letter-spacing: 3px;
}

.footer p {
  margin: 6px 0;
  color: rgba(255, 255, 255, 0.78);
}

.footer a {
  color: var(--white);
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    justify-content: flex-start;
  }

  .split-section,
  .two-columns,
  .three-columns,
  .team-grid,
  .footer,
  .ownership-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 64px 6%;
  }

  .ownership-card {
    padding: 28px;
  }

  .hero h1 {
    font-size: 52px;
  }

  .tagline {
    font-size: 26px;
  }

  .section-heading h2,
  .split-section h2,
  .ownership-card h2 {
    font-size: 34px;
  }
}