:root {
  color-scheme: dark;
  --ink: #eef5e9;
  --muted: #aeb9ae;
  --line: rgba(205, 219, 200, 0.18);
  --paper: #0d1512;
  --surface: #131d19;
  --surface-2: #192620;
  --surface-3: #223329;
  --light: #eef5e9;
  --header: #c9d3c4;
  --header-ink: #101613;
  --green: #9ed45f;
  --green-deep: #254f32;
  --sage: #6f8a72;
  --amber: #d6a94a;
  --coral: #e0765f;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.34);
  --max: 1160px;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.55;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 0%, rgba(158, 212, 95, 0.12), transparent 32rem),
    linear-gradient(180deg, #101915 0%, var(--paper) 52rem);
}

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

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

.phone-link {
  white-space: nowrap;
}

p,
h1,
h2,
h3 {
  margin-top: 0;
}

p {
  color: var(--muted);
}

:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 3px;
}

.container {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  z-index: 50;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--green);
  color: var(--header-ink);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(16, 22, 19, 0.16);
  background: rgba(201, 211, 196, 0.92);
  backdrop-filter: blur(16px);
}

.nav-shell {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand-logo {
  width: min(56vw, 250px);
  height: auto;
  max-height: 62px;
  object-fit: contain;
}

.nav-toggle {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(16, 22, 19, 0.06);
  color: var(--header-ink);
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 1px;
  background: currentColor;
  content: "";
}

.nav-toggle-lines {
  position: relative;
}

.nav-toggle-lines::before,
.nav-toggle-lines::after {
  position: absolute;
  left: 0;
}

.nav-toggle-lines::before {
  top: -6px;
}

.nav-toggle-lines::after {
  top: 6px;
}

.nav-list {
  position: absolute;
  left: 16px;
  right: 16px;
  top: 76px;
  display: none;
  margin: 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #18231d;
  box-shadow: var(--shadow);
  list-style: none;
}

.nav-list[data-open] {
  display: grid;
}

.nav-list a {
  display: block;
  padding: 12px 10px;
  border-radius: 6px;
  color: #dce8d6;
  font-size: 0.95rem;
  font-weight: 750;
}

.nav-list a[aria-current="page"],
.nav-list a:hover {
  background: rgba(158, 212, 95, 0.18);
  color: var(--light);
}

.hero {
  position: relative;
  min-height: calc(100svh - 116px);
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
  background: var(--paper);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(90deg, rgba(7, 13, 11, 0.78), rgba(7, 13, 11, 0.48)),
    linear-gradient(180deg, rgba(7, 13, 11, 0.2), rgba(7, 13, 11, 0.78)),
    url("/assets/images/gym-open-space.jpg");
  background-position: center;
  background-size: cover;
  content: "";
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  z-index: -1;
  background: linear-gradient(180deg, rgba(7, 18, 24, 0), rgba(7, 18, 24, 0.58));
  content: "";
}

.hero-content {
  display: grid;
  gap: 28px;
  padding: 70px 0 34px;
  color: var(--light);
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 3px;
  border-radius: 2px;
  background: var(--amber);
  content: "";
}

.hero .eyebrow {
  color: #d9f5c7;
}

.hero-kicker {
  display: grid;
  gap: 8px;
}

.hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(2.8rem, 8vw, 6.7rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 720px;
  color: rgba(238, 245, 233, 0.9);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 12px 18px;
  font-weight: 850;
}

.button.primary {
  background: var(--green);
  color: #17310f;
}

.button.secondary {
  border-color: rgba(238, 245, 233, 0.34);
  background: rgba(238, 245, 233, 0.08);
  color: var(--light);
}

.button.dark {
  background: var(--green);
  color: #17310f;
}

.button.light {
  border-color: var(--line);
  background: var(--surface-2);
  color: var(--light);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.metric {
  min-height: 84px;
  border: 1px solid rgba(238, 245, 233, 0.24);
  border-radius: 8px;
  padding: 16px;
  background: rgba(13, 21, 18, 0.62);
  backdrop-filter: blur(14px);
}

.metric strong {
  display: block;
  color: var(--light);
  font-size: clamp(1.45rem, 5vw, 2.3rem);
  line-height: 1;
}

.metric span {
  display: block;
  margin-top: 8px;
  color: rgba(238, 245, 233, 0.82);
  font-size: 0.88rem;
}

.section {
  padding: 72px 0;
}

.section.tight {
  padding: 48px 0;
}

.section.band {
  background: var(--surface);
}

.section.fjord {
  background: linear-gradient(135deg, #142119, #1b2b22);
}

.section-head {
  display: grid;
  gap: 10px;
  margin-bottom: 30px;
}

.section-head h2,
.page-title h1 {
  margin: 0;
  font-size: clamp(2rem, 6vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

.section-head p,
.page-title p {
  max-width: 760px;
  font-size: 1.04rem;
}

.grid {
  display: grid;
  gap: 18px;
}

.grid.two,
.grid.three,
.grid.four {
  grid-template-columns: 1fr;
}

.offer-card,
.price-card,
.news-card,
.info-card,
.video-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-2);
  box-shadow: 0 12px 38px rgba(0, 0, 0, 0.18);
}

.offer-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.offer-card img.fit-contain {
  aspect-ratio: 3 / 2;
  padding: 0;
  background: #f7faf8;
  object-fit: cover;
}

.offer-card-body,
.price-card,
.news-card,
.info-card,
.video-card-body {
  padding: 20px;
}

.offer-card h3,
.price-card h3,
.news-card h3,
.info-card h3,
.video-card h3 {
  margin-bottom: 8px;
  font-size: 1.15rem;
}

.feature-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  color: var(--muted);
}

.feature-list li::before {
  width: 10px;
  height: 10px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--green);
  content: "";
}

.split {
  display: grid;
  gap: 28px;
  align-items: center;
}

.split-media {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.split-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.split-copy h2 {
  font-size: clamp(2rem, 6vw, 3.5rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.hours-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hours-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 56px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.hours-list strong {
  color: var(--ink);
}

.prices-section {
  background:
    radial-gradient(circle at 80% 0%, rgba(158, 212, 95, 0.12), transparent 28rem),
    linear-gradient(180deg, #0d1712, #101b16);
}

.pricing-layout {
  display: grid;
  gap: 20px;
  align-items: stretch;
  margin-bottom: 26px;
}

.pricing-copy,
.membership-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(25, 38, 32, 0.82);
  box-shadow: var(--shadow);
}

.pricing-copy {
  padding: clamp(24px, 5vw, 42px);
}

.pricing-copy h2 {
  max-width: 720px;
  margin: 10px 0 12px;
  font-size: clamp(2rem, 6vw, 3.7rem);
  line-height: 1;
  letter-spacing: 0;
}

.pricing-copy p {
  max-width: 640px;
}

.membership-panel {
  display: grid;
  align-content: space-between;
  gap: 20px;
  padding: clamp(22px, 4vw, 32px);
  background:
    linear-gradient(135deg, rgba(158, 212, 95, 0.2), rgba(13, 21, 18, 0.72)),
    var(--surface-3);
}

.membership-panel span,
.price-label {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.membership-panel strong {
  display: block;
  color: var(--green);
  font-size: clamp(2.4rem, 9vw, 4.8rem);
  line-height: 0.92;
}

.membership-panel p {
  margin: 0;
}

.price-strip {
  display: grid;
  gap: 14px;
}

.price-card {
  display: grid;
  min-height: 184px;
  align-content: space-between;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.price-card:hover {
  transform: translateY(-2px);
  border-color: rgba(158, 212, 95, 0.36);
  background: #1d2b24;
}

.price-strip .price-card:first-child {
  background:
    linear-gradient(135deg, rgba(158, 212, 95, 0.14), rgba(25, 38, 32, 0.94)),
    var(--surface-2);
}

.price {
  margin-top: 8px;
  color: var(--green);
  font-size: clamp(2.1rem, 8vw, 3.4rem);
  font-weight: 950;
  line-height: 1;
}

.page-hero {
  padding: 56px 0 40px;
  background:
    linear-gradient(135deg, rgba(158, 212, 95, 0.11), rgba(111, 138, 114, 0.08)),
    var(--surface);
}

.page-title {
  display: grid;
  gap: 12px;
}

.breadcrumb {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 750;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: var(--surface-2);
}

.gallery-trigger {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  border: 0;
  border-radius: inherit;
  padding: 0;
  background: transparent;
  color: inherit;
  cursor: zoom-in;
}

.gallery-trigger img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 220ms ease;
}

.gallery-trigger:hover img,
.gallery-trigger:focus-visible img {
  transform: scale(1.03);
}

.gallery-caption {
  position: absolute;
  left: 10px;
  bottom: 10px;
  border-radius: 6px;
  padding: 6px 9px;
  background: rgba(13, 21, 18, 0.78);
  color: var(--light);
  font-size: 0.84rem;
  font-weight: 800;
}

body[data-lightbox-open] {
  overflow: hidden;
}

.lightbox[hidden] {
  display: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(4, 9, 7, 0.88);
  backdrop-filter: blur(12px);
}

.lightbox-figure {
  display: grid;
  gap: 12px;
  width: min(100%, 1120px);
  margin: 0;
}

.lightbox-figure img {
  width: 100%;
  max-height: min(78svh, 760px);
  border-radius: 8px;
  object-fit: contain;
  background: #07100d;
  box-shadow: var(--shadow);
}

.lightbox-figure figcaption {
  color: var(--light);
  font-weight: 850;
  text-align: center;
}

.lightbox-close {
  position: fixed;
  top: 16px;
  right: 16px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(238, 245, 233, 0.12);
  color: var(--light);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.video-card video {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--paper);
}

.contact-layout {
  display: grid;
  gap: 22px;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.form-grid {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 800;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid rgba(205, 219, 200, 0.22);
  border-radius: 6px;
  padding: 12px 13px;
  background: #0f1814;
  color: var(--ink);
  font: inherit;
}

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

.honeypot {
  position: absolute;
  left: -100vw;
}

.form-status {
  min-height: 24px;
  margin: 0;
  font-weight: 750;
}

.form-status[data-state="success"] {
  color: var(--green);
}

.form-status[data-state="error"] {
  color: var(--coral);
}

.map-frame {
  width: 100%;
  min-height: 380px;
  border: 0;
  border-radius: 8px;
  filter: saturate(0.95);
}

.site-footer {
  padding: 44px 0;
  background: #08100d;
  color: var(--light);
}

.footer-grid {
  display: grid;
  gap: 24px;
}

.footer-logo {
  width: min(78vw, 280px);
  height: auto;
  margin-bottom: 16px;
  border-radius: 8px;
  padding: 6px 10px;
  background: var(--header);
}

.site-footer p,
.site-footer a {
  color: rgba(238, 245, 233, 0.72);
}

.footer-title {
  margin-bottom: 8px;
  color: var(--light);
  font-weight: 900;
}

.footer-links {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.chip {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 8px 10px;
  background: var(--surface-3);
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

@media (min-width: 680px) {
  .hero-metrics,
  .grid.two,
  .form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid.three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .price-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .nav-toggle {
    display: none;
  }

  .nav-list {
    position: static;
    display: flex;
    gap: 2px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .nav-list a {
    padding: 10px 12px;
    font-size: 0.9rem;
    color: var(--header-ink);
  }

  .nav-list a[aria-current="page"],
  .nav-list a:hover {
    background: rgba(16, 22, 19, 0.08);
    color: var(--header-ink);
  }

  .hero-content {
    grid-template-columns: 1fr minmax(300px, 420px);
    align-items: end;
    padding-bottom: 42px;
  }

  .section {
    padding: 96px 0;
  }

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

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

  .split,
  .contact-layout,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .pricing-layout {
    grid-template-columns: minmax(0, 2fr) minmax(300px, 1fr);
  }

  .price-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .split.reverse .split-media {
    order: 2;
  }

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

@media (min-width: 1140px) {
  .gallery-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .price-strip {
    grid-template-columns: 1.35fr repeat(4, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
