:root {
  --ink: #171717;
  --charcoal: #222523;
  --charcoal-2: #2f332f;
  --green: #355f2c;
  --green-2: #517d3d;
  --peach: #ee7438;
  --peach-2: #f39a5f;
  --paper: #ffffff;
  --mist: #f5f6f2;
  --line: #dde2d8;
  --muted: #657064;
  --shadow: 0 18px 38px rgba(25, 30, 26, 0.12);
  --radius: 8px;
  --max: 1180px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

h1,
h2,
h3,
p,
li,
summary,
label,
a {
  overflow-wrap: break-word;
}

button,
input,
textarea,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(34, 37, 35, 0.1);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  width: min(var(--max), calc(100% - 40px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
}

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

.brand-text {
  display: block;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0;
  max-width: 150px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.main-nav a {
  padding: 10px 11px;
  border-radius: 7px;
  color: #30362f;
  font-size: 0.94rem;
  font-weight: 700;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  background: #eef3ea;
  color: var(--green);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--paper);
  color: var(--charcoal);
  cursor: pointer;
}

.menu-toggle svg {
  width: 22px;
  height: 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-weight: 800;
  line-height: 1.1;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:disabled {
  cursor: wait;
  opacity: 0.7;
  transform: none;
}

.btn-primary {
  background: var(--green);
  color: var(--paper);
  box-shadow: 0 14px 24px rgba(53, 95, 44, 0.22);
}

.btn-primary:hover {
  background: #2c5025;
}

.btn-peach {
  background: var(--peach);
  color: var(--paper);
  box-shadow: 0 14px 24px rgba(238, 116, 56, 0.22);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.42);
  color: var(--paper);
  background: rgba(255, 255, 255, 0.08);
}

.btn-outline-dark {
  border-color: #cfd8ca;
  color: var(--charcoal);
  background: var(--paper);
}

.hero {
  position: relative;
  min-height: 64svh;
  color: var(--paper);
  overflow: hidden;
  background: var(--charcoal);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18, 20, 18, 0.92) 0%, rgba(25, 28, 25, 0.78) 42%, rgba(25, 28, 25, 0.28) 100%),
    url("../img/fitness-center-equipment-hero.webp") center / cover no-repeat;
  transform: scale(1.01);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 9px;
  background: linear-gradient(90deg, var(--green), var(--peach));
}

.hero-inner {
  position: relative;
  width: min(var(--max), calc(100% - 40px));
  min-height: 64svh;
  margin: 0 auto;
  display: grid;
  align-content: center;
  padding: 22px 0;
}

.hero-content {
  max-width: 720px;
}

.hero-logo {
  width: min(220px, 64vw);
  padding: 10px;
  margin-bottom: 22px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.62);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.2);
  filter: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: #f1d0bd;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 3px;
  border-radius: 99px;
  background: var(--peach);
}

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

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(2.35rem, 4.8vw, 4.25rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero p {
  max-width: 660px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

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

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(780px, 100%);
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
}

.proof-on-light {
  width: min(900px, 100%);
  margin: -40px auto 46px;
  border-color: rgba(34, 37, 35, 0.1);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.hero-proof div {
  min-height: 82px;
  padding: 16px;
  background: rgba(13, 16, 13, 0.42);
}

.proof-on-light div {
  background: var(--paper);
}

.hero-proof strong {
  display: block;
  color: var(--paper);
  font-size: 1rem;
}

.proof-on-light strong {
  color: var(--ink);
}

.hero-proof span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.proof-on-light span {
  color: var(--muted);
}

.section {
  padding: 82px 0;
}

.section-soft {
  background: var(--mist);
}

.section-dark {
  background: var(--charcoal);
  color: var(--paper);
}

.section-inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading h2,
.page-hero h1 {
  margin-bottom: 14px;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.section-dark .section-heading h2,
.section-dark .section-heading p {
  color: var(--paper);
}

.section-heading p,
.page-hero p,
.lead {
  color: var(--muted);
  font-size: 1.08rem;
}

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

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

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

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

.card {
  min-width: 0;
  padding: 28px;
  border: 1px solid rgba(34, 37, 35, 0.1);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 10px 24px rgba(25, 30, 26, 0.06);
}

.card h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.25rem;
  line-height: 1.2;
}

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

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 920px;
  margin: 0 auto;
}

.faq-list details {
  border: 1px solid rgba(34, 37, 35, 0.1);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 8px 18px rgba(25, 30, 26, 0.05);
}

.faq-list summary {
  min-height: 58px;
  padding: 18px 22px;
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
}

.faq-list summary::marker {
  color: var(--green);
}

.faq-list p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--muted);
}

.icon-box {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 7px;
  background: #edf4e9;
  color: var(--green);
}

.icon-box.peach {
  background: #fff0e7;
  color: var(--peach);
}

.icon-box svg {
  width: 23px;
  height: 23px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  gap: 44px;
  align-items: center;
}

.supporting-image {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.supporting-image img {
  width: 100%;
  min-height: 430px;
  object-fit: cover;
}

.supporting-image::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: inherit;
  pointer-events: none;
}

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

.check-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  align-items: start;
  color: #344033;
}

.check-list li::before {
  content: "";
  width: 18px;
  height: 18px;
  margin-top: 4px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: inset 0 0 0 5px #dfeada;
}

.stat-band {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 18px;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--charcoal);
  color: var(--paper);
  box-shadow: var(--shadow);
}

.stat-band strong {
  display: block;
  color: var(--peach-2);
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1;
}

.stat-band span {
  color: rgba(255, 255, 255, 0.78);
}

.page-hero {
  padding: 72px 0 46px;
  background:
    radial-gradient(circle at 18% 10%, rgba(238, 116, 56, 0.15), transparent 32%),
    linear-gradient(135deg, #f9faf7 0%, #eef3ea 100%);
}

.page-hero .section-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.48fr);
  gap: 42px;
  align-items: center;
}

.page-hero-badge {
  padding: 24px;
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.page-hero-badge img {
  width: min(280px, 100%);
  margin: 0 auto 18px;
}

.page-hero-badge p {
  margin-bottom: 0;
  color: var(--muted);
}

.service-list {
  display: grid;
  gap: 16px;
}

.service-row {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  padding: 22px;
  border: 1px solid rgba(34, 37, 35, 0.1);
  border-radius: var(--radius);
  background: var(--paper);
}

.service-row h3 {
  margin-bottom: 6px;
  font-size: 1.12rem;
}

.service-row p {
  margin-bottom: 0;
  color: var(--muted);
}

.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 30px;
  gap: 26px;
}

.plan.featured {
  border-color: rgba(53, 95, 44, 0.45);
  box-shadow: 0 20px 36px rgba(53, 95, 44, 0.16);
}

.plan-content {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
}

.plan-content > p {
  margin-bottom: 0;
}

.plan-content .check-list {
  gap: 10px;
  margin-top: 24px;
}

.plan-content .check-list li {
  grid-template-columns: 22px 1fr;
  gap: 8px;
  font-size: 0.98rem;
  line-height: 1.48;
}

.plan-content .check-list li::before {
  width: 16px;
  height: 16px;
  margin-top: 4px;
}

.plan-tag {
  display: inline-flex;
  align-items: center;
  width: max-content;
  margin-bottom: 16px;
  padding: 6px 10px;
  border-radius: 6px;
  background: #fff0e7;
  color: #a74317;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.plan h3 {
  margin-bottom: 12px;
  font-size: 1.45rem;
}

.plan .frequency {
  margin-bottom: 18px;
  color: var(--green);
  font-weight: 900;
}

.plan-action {
  display: flex;
  margin-top: auto;
  padding-top: 8px;
}

.plan-action .btn {
  width: 100%;
}

.mini-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 34px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--green), #263c25);
  color: var(--paper);
  box-shadow: var(--shadow);
}

.mini-cta p {
  max-width: 690px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.8);
}

.form-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1.14fr);
  gap: 28px;
  align-items: start;
}

.form-card {
  padding: 30px;
  border: 1px solid rgba(34, 37, 35, 0.1);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

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

.field {
  display: grid;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  color: #30362f;
  font-weight: 800;
  font-size: 0.92rem;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid #ccd6c7;
  border-radius: 7px;
  background: #fbfcfa;
  color: var(--ink);
}

.field textarea {
  min-height: 132px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: 3px solid rgba(238, 116, 56, 0.22);
  border-color: var(--peach);
  background: var(--paper);
}

.form-note {
  min-height: 24px;
  margin: 16px 0 0;
  color: var(--green);
  font-weight: 800;
}

.privacy-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.contact-list li {
  padding: 16px;
  border-left: 4px solid var(--peach);
  border-radius: 6px;
  background: #fbfcfa;
}

.contact-list strong {
  display: block;
  color: var(--ink);
}

.contact-list span {
  color: var(--muted);
}

.contact-list a,
.footer a {
  overflow-wrap: anywhere;
}

.contact-list a {
  color: var(--green);
  font-weight: 800;
}

.footer {
  padding: 52px 0 28px;
  background: #f5f6f2;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, minmax(0, 0.66fr));
  gap: 32px;
}

.footer img {
  width: 190px;
  margin-bottom: 18px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  filter: none;
}

.footer h3 {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 1rem;
}

.footer a {
  display: block;
  margin: 8px 0;
  color: var(--muted);
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid rgba(34, 37, 35, 0.12);
  font-size: 0.92rem;
}

@media (max-width: 980px) {
  .nav-wrap {
    width: min(var(--max), calc(100% - 28px));
    gap: 14px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: absolute;
    top: 76px;
    right: 14px;
    left: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 13px 14px;
  }

  .header-actions .btn {
    display: none;
  }

  .grid-3,
  .grid-4,
  .split,
  .page-hero .section-inner,
  .form-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .page-hero-badge {
    max-width: 440px;
  }

  .mini-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  .nav-wrap,
  .section-inner,
  .hero-inner {
    width: min(var(--max), calc(100% - 28px));
  }

  .brand {
    flex: 1 1 auto;
    min-width: 0;
  }

  .header-actions {
    flex: 0 0 auto;
    margin-left: auto;
  }

  .menu-toggle {
    flex: 0 0 44px;
  }

  .page-hero .section-inner > *,
  .hero-content,
  .section-heading,
  .page-hero-badge,
  .card,
  .form-card,
  .mini-cta {
    max-width: 100%;
    min-width: 0;
  }

  .brand img {
    width: 58px;
    height: 44px;
  }

  .brand-text {
    display: block;
    max-width: 128px;
    font-size: 0.9rem;
  }

  .hero,
  .hero-inner {
    min-height: 68svh;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(18, 20, 18, 0.94) 0%, rgba(25, 28, 25, 0.82) 58%, rgba(25, 28, 25, 0.5) 100%),
      url("../img/fitness-center-equipment-hero.webp") center / cover no-repeat;
  }

  .hero-logo {
    width: min(200px, 72vw);
  }

  .hero h1 {
    font-size: clamp(2rem, 10vw, 3rem);
    line-height: 1.03;
  }

  .section-heading h2,
  .page-hero h1 {
    font-size: clamp(1.85rem, 8vw, 2.35rem);
    line-height: 1.12;
  }

  .section-heading p,
  .page-hero p,
  .lead {
    font-size: 1rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-proof {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 60px 0;
  }

  .page-hero {
    padding: 52px 0 34px;
  }

  .card,
  .form-card,
  .mini-cta,
  .stat-band {
    padding: 22px;
  }

  .page-hero-badge img {
    width: min(250px, 100%);
  }

  .stat-band,
  .form-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-bottom {
    flex-direction: column;
  }

  .contact-list a {
    font-size: 0.95rem;
    line-height: 1.35;
  }
}
