/*
  MANNNN minimal landing page

  Font:
  - Put your Helvetica Bold WOFF2 here:
      /fonts/helvetica-bold.woff2
    (rename if you like, just update the @font-face url)
*/

:root {
  --maxw: 1180px;
  --text: #111;
  --bg: #fff;
}

@font-face {
  font-family: "HelveticaCustom";
  src: url("../fonts/helvetica-bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "HelveticaCustom";
  src: url("../fonts/helvetica-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

* { box-sizing: border-box; }

html, body {
  height: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "HelveticaCustom", Helvetica, Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* Reduced top spacing further (requested: halve the space above the logo) */
  padding: clamp(22px, 3.2vw, 45px) clamp(18px, 4vw, 60px);
}

.top {
  width: 100%;
  max-width: clamp(520px, 70vw, 860px);
  display: flex;
  justify-content: center;
  padding-top: 1px;
}

.brandlockup {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  margin-top: clamp(20px, 2.4vw, 36px);
  margin-bottom: clamp(22px, 2.64vw, 40px);
}

.logo {
  /* responsive */
  width: clamp(108px, 13.72vw, 235px);
  height: auto;
  display: block;
}

.hero {
  width: 100%;
  max-width: var(--maxw);
  text-align: center;
  /* Halved again: gap between logo and the big headline */
  margin-top: clamp(5px, 1.25vw, 15px);
}

.headline {
  margin: 0;
  text-transform: uppercase;
  line-height: 0.82;
  letter-spacing: -0.03em;
  font-size: clamp(46px, 8.5vw, 120px);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.center-copy {
  margin: clamp(18px, 3.4vw, 34px) auto 0;
  max-width: 720px;
}

.intro {
  margin: 0;
  text-transform: uppercase;
  font-size: clamp(12px, 1.2vw, 14px);
  letter-spacing: 0.04em;
  line-height: 1.35;
}

.intro + .intro {
  margin-top: 14px;
}

.bios {
  width: 100%;
  max-width: clamp(520px, 70vw, 860px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(6px, 1.2vw, 45px);
  margin-top: clamp(28px, 6vw, 80px);
}

.bio {
  text-align: center;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}

.bio-head {
  margin: 0;
  font-size: 11px;
  /* Slightly tighter line spacing for the 3-line title blocks */
  line-height: 1.12;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bio-text {
  margin: 10px auto 0;
  /* Narrower bio column width (~30% smaller than before) */
  max-width: 295px;
  font-size: 9.5px;
  letter-spacing: 0.06em;
  font-weight: 400;
  line-height: 1.35;
  opacity: 0.9;
}

.cta {
  /* Center the two buttons as a single unit */
  width: fit-content;
  max-width: none;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-top: clamp(26px, 6vw, 70px);
  padding-bottom: 10px;
  margin-left: auto;
  margin-right: auto;
}

.btn {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px 8px 22px; /* 2px lower visual center */
  border-radius: 0;
  background: #111;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.08em;
  border: 1px solid #111;
  width: 150px;
}

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

.btn:active {
  transform: translateY(0);
  opacity: 0.88;
}

/* Responsive adjustments */
@media (max-width: 820px) {
  /* Extra breathing room between stacked bios */
  .bio + .bio { margin-top: 20px; }

  .headline { line-height: 0.92; }
  .bios { grid-template-columns: 1fr; }
  .bio-text { max-width: 520px; }
}

.cta {
  /* Center the two buttons as a single unit */
  width: fit-content;
  max-width: none;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-top: clamp(26px, 6vw, 70px);
  padding-bottom: 10px;
  margin-left: auto;
  margin-right: auto;
}
  .btn {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px 8px 22px; /* 2px lower visual center */
  border-radius: 0;
  background: #111;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.08em;
  border: 1px solid #111;
  width: 150px;
}


@media (max-width: 480px) {
  /* Mobile: intro text same size as bio titles */
  .intro { font-size: 11px !important; }


  /* Mobile headline: bigger + force wrap so first line is only "WE EXIST" */
  .headline {
    font-size: 3rem;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    line-height: .8;
  }

  /* Make logo much larger on very small screens */
  .logo { width: 9.6rem; }

  .cta {
    width: 100%;
    flex-direction: column;
    align-items: center;
  }

  .btn {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px 8px 22px; /* 2px lower visual center */
  border-radius: 0;
  background: #111;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.08em;
  border: 1px solid #111;
  width: 150px;
}
  .desktop-only {
    display: none;
  }
}



@media (max-width: 480px) {
  .center-copy { margin-bottom: 29px; }
}


@media (max-width: 480px) {
  .hero {
    margin-top: 30px;
  }
}


.site-footer-line {
  text-align: center;
  font-size: 10px;
  letter-spacing: 0.08em;
  margin-top: 75px; /* ≈ 2cm visual space from buttons */
  opacity: 0.7;
}


@media (max-width: 480px) {
  .cta {
    margin-top: calc(clamp(26px, 6vw, 70px) + 10px);
  }
}
