/* ============================================================
   GOOD TO GO FITNESS — Design tokens
   Ink #111111 · Forge Orange #F07C1D · Bone #FAF9F7
   Display: DejaVu Sans Bold (uppercase, tight tracking)
   Body: DejaVu Sans · Data/labels: DejaVu Sans Mono
   Signature: the forward arrow (→→) lifted from the G2G mark
   ============================================================ */

:root {
  --ink: #111111;
  --ink-soft: #1c1c1c;
  --orange: #F07C1D;
  --orange-deep: #d96c12;
  --white: #ffffff;
  --bone: #faf9f7;
  --charcoal: #2a2a2a;
  --slate: #5b5b5b;
  --hairline: #e8e6e2;

  --display: 'DejaVu Sans', Arial, sans-serif;
  --body: 'DejaVu Sans', Arial, sans-serif;
  --mono: 'DejaVu Sans Mono', 'Courier New', monospace;

  --max: 1120px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
}

.eyebrow {
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 700;
}

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  color: var(--ink);
}

h1 { font-size: 52px; line-height: 1.08; letter-spacing: 0.2px; }
h2 { font-size: 34px; line-height: 1.15; }
h3 { font-size: 19px; line-height: 1.3; }

p { color: var(--slate); font-size: 16px; }

/* Arrow signature -------------------------------------------------- */
.arrow {
  display: inline-block;
  transition: transform 0.25s ease;
}
.arrow-pair::after {
  content: "\2192\2002\2192";
  font-family: var(--mono);
  color: var(--orange);
  letter-spacing: 2px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 15px 26px;
  border-radius: 2px;
  transition: all 0.2s ease;
  border: 2px solid transparent;
}
.btn .arrow { transform: translateX(0); }
.btn:hover .arrow { transform: translateX(6px); }

.btn-primary {
  background: var(--orange);
  color: var(--white);
}
.btn-primary:hover { background: var(--orange-deep); }

.btn-ghost {
  border-color: rgba(255,255,255,0.35);
  color: var(--white);
}
.btn-ghost:hover { border-color: var(--orange); color: var(--orange); }

.btn-dark {
  border-color: var(--ink);
  color: var(--ink);
}
.btn-dark:hover { border-color: var(--orange); color: var(--orange); }

/* Nav --------------------------------------------------------------- */
.site-nav {
  background: var(--ink);
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand img { width: 44px; height: auto; }
.brand-name {
  font-family: var(--display);
  color: var(--white);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 1.5px;
}
.brand-name span { color: var(--orange); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  border-bottom-color: var(--orange);
}
.nav-cta {
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--white);
  background: var(--orange);
  padding: 11px 20px;
  border-radius: 2px;
}
.nav-cta:hover { background: var(--orange-deep); }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(255,255,255,0.3);
  cursor: pointer;
}
.nav-links.open {
  display: flex !important;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  position: absolute;
  top: 84px;
  left: 0;
  right: 0;
  background: var(--ink);
  padding: 10px 32px 26px 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.nav-links.open a { padding: 10px 0; width: 100%; }
.nav-links.open .nav-cta { margin-top: 10px; }

/* Hero ---------------------------------------------------------------*/
.hero {
  position: relative;
  background: var(--white);
  padding: 100px 0 90px 0;
  overflow: hidden;
}
.hero-watermark {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--mono);
  font-size: 340px;
  color: var(--bone);
  z-index: 0;
  font-weight: 700;
  user-select: none;
  line-height: 1;
}
.hero .wrap { position: relative; z-index: 1; }
.hero-inner { max-width: 640px; }
.hero .eyebrow { margin-bottom: 18px; display: block; }
.hero h1 { margin-bottom: 22px; }
.hero h1 .accent { color: var(--orange); }
.hero p.lead {
  font-size: 18px;
  color: var(--charcoal);
  margin-bottom: 34px;
  max-width: 520px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

/* Section shells ------------------------------------------------------*/
section { padding: 80px 0; }
.section-bone { background: var(--bone); }
.section-ink {
  background: var(--ink);
  color: var(--white);
}
.section-ink h2, .section-ink h3 { color: var(--white); }
.section-ink p { color: rgba(255,255,255,0.68); }

.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head .eyebrow { display: block; margin-bottom: 14px; }
.section-head p { margin-top: 14px; font-size: 17px; }

/* Belief strip ---------------------------------------------------------*/
.belief {
  text-align: center;
  padding: 90px 0;
}
.belief-mark {
  font-family: var(--mono);
  color: var(--orange);
  font-size: 22px;
  letter-spacing: 4px;
  margin-bottom: 22px;
}
.belief h2 {
  color: var(--white);
  max-width: 780px;
  margin: 0 auto;
  font-size: 30px;
  line-height: 1.4;
  text-transform: none;
  letter-spacing: 0;
}
.belief h2 .accent { color: var(--orange); font-family: var(--display); text-transform: uppercase; }

/* Fact / badge cards -----------------------------------------------------*/
.fact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.fact-card {
  background: var(--white);
  border: 1px solid var(--hairline);
  padding: 30px 24px;
  text-align: left;
}
.fact-badge {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-family: var(--mono);
  font-weight: 700;
  font-size: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.fact-card h3 { margin-bottom: 8px; font-size: 16px; }
.fact-card p { font-size: 14px; }

/* Service cards ------------------------------------------------------------*/
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
}
.service-card {
  background: var(--white);
  padding: 40px;
}
.service-icon {
  width: 50px;
  height: 50px;
  border: 2px solid var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  color: var(--orange);
  font-weight: 700;
  margin-bottom: 22px;
  font-size: 15px;
}
.service-card h3 { margin-bottom: 12px; }
.service-card p { font-size: 14.5px; }
.service-card .tag {
  display: inline-block;
  margin-top: 16px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--orange-deep);
  background: rgba(240,124,29,0.09);
  padding: 5px 10px;
}

/* Scope note box -------------------------------------------------------------*/
.scope-box {
  border: 1px solid var(--hairline);
  background: var(--bone);
  padding: 34px 38px;
  margin-top: 56px;
}
.scope-box h3 { margin-bottom: 14px; }
.scope-box ul { display: flex; flex-direction: column; gap: 10px; }
.scope-box li {
  font-size: 14.5px;
  color: var(--slate);
  padding-left: 24px;
  position: relative;
}
.scope-box li::before {
  content: "\2192";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-family: var(--mono);
  font-weight: 700;
}

/* Timeline (About) -------------------------------------------------------------*/
.timeline {
  position: relative;
  padding-left: 40px;
  border-left: 2px dashed var(--hairline);
}
.timeline-item {
  position: relative;
  padding-bottom: 44px;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: "\2192";
  position: absolute;
  left: -52px;
  top: -2px;
  width: 26px;
  height: 26px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  font-family: var(--mono);
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.timeline-year {
  font-family: var(--mono);
  color: var(--orange-deep);
  font-size: 13px;
  letter-spacing: 1px;
  margin-bottom: 6px;
  font-weight: 700;
}
.timeline-item h3 { margin-bottom: 8px; }
.timeline-item p { font-size: 14.5px; }

/* Bio layout -------------------------------------------------------------------*/
.bio-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  align-items: start;
}
.bio-card {
  background: var(--ink);
  color: var(--white);
  padding: 34px 28px;
  text-align: center;
}
.bio-card img { width: 76px; margin: 0 auto 18px auto; }
.bio-card .role {
  font-family: var(--mono);
  color: var(--orange);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.bio-card .who {
  font-family: var(--display);
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 18px;
}
.bio-card .stat-row {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.14);
  padding: 12px 0;
  font-family: var(--mono);
  font-size: 12px;
}
.bio-card .stat-row b { color: var(--orange); display: block; font-size: 18px; }

.bio-copy p { margin-bottom: 18px; font-size: 15.5px; }
.bio-copy strong { color: var(--ink); }

/* Values grid -------------------------------------------------------------------*/
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.value-card { padding-top: 4px; }
.value-card .mark {
  font-family: var(--mono);
  color: var(--orange);
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 12px;
  display: block;
}
.value-card h3 { margin-bottom: 10px; }
.value-card p { font-size: 14.5px; }

/* CTA banner -----------------------------------------------------------------*/
.cta-banner {
  background: var(--orange);
  padding: 56px 0;
}
.cta-banner .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-banner h2 {
  color: var(--white);
  font-size: 26px;
  max-width: 560px;
}
.cta-banner .btn-dark {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}
.cta-banner .btn-dark:hover { background: #000; }

/* Contact page specifics -------------------------------------------------------*/
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.contact-block {
  border: 1px solid var(--hairline);
  padding: 32px;
  margin-bottom: 20px;
}
.contact-block .eyebrow { display: block; margin-bottom: 10px; }
.contact-block .value {
  font-family: var(--display);
  font-weight: 700;
  font-size: 21px;
  color: var(--ink);
}
.contact-block .value a:hover { color: var(--orange); }
.contact-block p.detail { font-size: 14px; margin-top: 6px; }

.resource-list li {
  border-bottom: 1px solid var(--hairline);
  padding: 18px 0;
}
.resource-list li:first-child { padding-top: 0; }
.resource-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.3px;
}
.resource-list a:hover { color: var(--orange-deep); }
.resource-list .arrow { color: var(--orange); }

/* Footer -----------------------------------------------------------------------*/
.site-footer {
  background: var(--ink);
  padding: 60px 0 30px 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand .brand { margin-bottom: 16px; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.55); max-width: 300px; }
.footer-col h3 {
  color: var(--white);
  font-size: 13px;
  letter-spacing: 1.5px;
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.62);
}
.footer-col a:hover { color: var(--orange); }
.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 10px;
}

/* Responsive ---------------------------------------------------------------------*/
@media (max-width: 880px) {
  h1 { font-size: 36px; }
  h2 { font-size: 26px; }
  .hero { padding: 60px 0 60px 0; }
  .hero-watermark { display: none; }
  .nav-links { display: none; }
  .nav-toggle {
    display: block;
    color: var(--white);
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 1.5px;
    padding: 8px 14px;
  }
  .site-nav .wrap { position: relative; }
  .fact-grid { grid-template-columns: repeat(2, 1fr); }
  .service-grid { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: 1fr; }
  .bio-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .cta-banner .wrap { flex-direction: column; align-items: flex-start; }
}
