/* ============================================================
   Reset
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ============================================================
   Base
   ============================================================ */
body {
  font-family: 'Outfit', sans-serif;
  background: #fff;
  color: #000;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

.site-header {
  padding: 32px 32px 0;
  position: relative;
  z-index: 10;
}

.logo {
  position: relative;
  display: block;
  width: 146px;
  height: 64px;
  text-decoration: none;
}

.logo-part {
  position: absolute;
}

.logo-part img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo-icon     { top: 0.25%; right: 66.1%;  bottom: 0.69%;  left: 0;      }
.logo-athletes { top: 0;     right: 0.14%;  bottom: 85.88%; left: 38.65%; }
.logo-food     { top: 22.3%; right: 0;      bottom: 42.64%; left: 38.8%;  }
.logo-coach    { top: 64.94%;right: 0.06%;  bottom: 0;      left: 26.76%; }

/* ============================================================
   Hero section
   ============================================================ */
.hero {
  flex: 1;
  display: flex;
  align-items: center;
  max-width: 1512px;
  margin: 0 auto;
  width: 100%;
  padding: 48px 80px 64px;
  overflow: hidden;
}

/* ============================================================
   Hero — content (left column)
   ============================================================ */
.hero-content {
  flex: 0 0 520px;
  display: flex;
  flex-direction: column;
  gap: 48px;
  position: relative;
  z-index: 2;
}

.headline {
  font-size: 64px;
  font-weight: 900;
  line-height: 1;
  color: #000;
}

.subline {
  font-size: 32px;
  font-weight: 300;
  line-height: 1.35;
  color: #000;
  margin-top: 16px;
}

.badges {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.badge-link {
  display: block;
  text-decoration: none;
}

.badge-google { height: 56px; width: 189px; }
.badge-apple  { height: 56px; width: 168px; }

/* ============================================================
   Hero — visual (right column)
   Food images float around the phone mockup.
   ============================================================ */
.hero-visual {
  flex: 1;
  position: relative;
  /*height: 689px;*/
  /*min-width: 0;*/
}

/* Shared food image styles */
.preview {
  max-width: 100%;
  object-fit: cover;
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  padding: 0 32px 32px;
}

.site-footer p {
  font-size: 14px;
  font-weight: 300;
  color: #57534e;
  line-height: 22.75px;
}

/* ============================================================
   Mobile  (≤ 767px)
   ============================================================ */
@media (max-width: 1100px) {

  .site-header {
    padding: 16px 16px 0;
  }

  .logo {
    width: 106px;
    height: 47px;
  }

  /* Stack hero vertically */
  .hero {
    flex-direction: column;
    padding: 0;
    gap: 0;
  }

  .hero-content {
    flex: none;
    gap: 16px;
    padding: 24px 16px 16px;
    text-align: center;
    align-items: center;
  }

  .headline-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .headline {
    font-size: 32px;
    line-height: 44px;
  }

  .subline {
    font-size: 16px;
    line-height: 22px;
    margin-top: 0;
  }

  .badges {
    gap: 16px;
    justify-content: center;
  }

  .badge-google { height: 40px; }
  .badge-apple  { height: 40px; }

  /* Visual area */
  .hero-visual {
    margin-top: 24px;
    max-width: 100vw;
  }

  .site-footer {
    padding: 24px 16px;
  }

  .site-footer p {
    font-size: 12px;
    line-height: 18px;
  }
}
