/* The Gym — teaser site styles (static, NL).
   Rebuilt in the careers structural language: a two-column hero where the
   wordmark leads on the left and a bordered panel on the right carries the
   "blijf op de hoogte" signup, socials and opening facts. Imports the shared
   design system (root styles.css = tokens + component layer) so it stays in
   sync with the careers + website kits. */
@import url('styles.css');

* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; }
body {
  background: var(--paper);
  color: var(--fg-1);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100svh;
}

/* page shell — grows to fill the viewport so the footer band sits at the bottom */
.wrap {
  flex: 1;
  width: 100%;
  max-width: min(1120px, 100%);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  flex-direction: column;
}

/* ---- header ---- */
.site-header { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px 24px; padding: clamp(20px, 4vw, 36px) 0; }
.site-header__brand { display: inline-flex; }
.site-header .wordmark { width: 150px; }
.site-header__nav { display: inline-flex; flex-wrap: wrap; gap: clamp(16px, 2vw, 26px); }
.site-header__nav a { font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--fg-3); text-decoration: none; transition: color var(--dur-fast) var(--ease-out); }
.site-header__nav a:hover { color: var(--fg-1); }
.site-header__right { display: inline-flex; align-items: center; gap: clamp(14px, 2vw, 22px); }

/* tagline centered under the header — 2xl display line */
.t-eyebrow {
  text-align: center;
  margin: clamp(14px, 3vw, 30px) 0 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.3rem, 1.05rem + 1vw, 1.8rem);
  line-height: 1.15;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--fg-2);
  text-wrap: balance;
}

/* ---- hero: two columns (mirrors careers .c-hero) ---- */
.t-hero {
  display: grid;
  grid-template-columns: minmax(0, 45fr) minmax(420px, 55fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  padding: clamp(64px, 10vw, 120px) 0 clamp(24px, 5vw, 64px);
}
.t-hero__copy { display: flex; flex-direction: column; align-items: center; text-align: center; }
.t-hero__copy .eyebrow { margin: 0 0 clamp(22px, 4vw, 40px); }
.t-hero__wordmark { width: min(560px, 82%); }

/* ---- right panel (mirrors careers .c-hero__visual) ---- */
.t-panel {
  border-top: var(--hairline);
  border-bottom: var(--hairline);
  background: var(--surface-raised);
  padding: clamp(26px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 3vw, 28px);
}
.t-panel__label {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--text-lg);
  line-height: 1.18;
  color: var(--fg-1);
}

/* signup — reuses .field / .btn from the component layer */
.t-signup__row { display: flex; gap: 12px; align-items: stretch; }
.t-consent { margin: 12px 0 0; font-size: 13.5px; line-height: 1.5; color: var(--fg-3); }

/* panel links (Instagram / careers) */
.t-panel__links { display: flex; flex-direction: column; gap: 14px; padding-top: clamp(20px, 3vw, 26px); border-top: var(--hairline-soft); }
.t-panel__links a { font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--fg-2); text-decoration: none; transition: color var(--dur-fast) var(--ease-out); }
.t-panel__links a:hover { color: var(--fg-1); }

/* opening facts (mirrors careers .c-facts) */
.t-facts { margin: 0; display: grid; border-top: var(--hairline-soft); }
.t-facts div { display: grid; grid-template-columns: 92px 1fr; gap: 18px; padding: 14px 0; border-bottom: var(--hairline-soft); }
.t-facts dt { font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--fg-2); }
.t-facts dd { margin: 0; color: var(--fg-1); font-size: var(--text-sm); }

/* ---- footer: full-width white band (light theme inverts the tokens) ---- */
.site-footer { background: var(--paper); color: var(--fg-1); padding: clamp(24px, 3vw, 40px) 0; }
.site-footer__inner { width: 100%; max-width: min(1120px, 100%); margin: 0 auto; padding: 0 var(--gutter); }
.site-footer__legal { margin: 0; font-size: 12px; letter-spacing: 0.02em; color: var(--fg-3); }

/* ---- responsive ---- */
@media (max-width: 900px) {
  .t-hero { grid-template-columns: 1fr; align-items: start; gap: clamp(28px, 6vw, 44px); }
  .t-hero__wordmark { width: min(520px, 86%); }
}
@media (max-width: 560px) {
  .t-signup__row { flex-direction: column; }
  .site-footer__top { flex-direction: column; gap: 20px; }
  .t-facts div { grid-template-columns: 1fr; gap: 4px; }
}
