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

/* ── Base (desktop, >1024px) ─────────────────────────────────────────────── */

body {
  height: 100vh;
  display: flex;
  overflow: hidden;
}

.left {
  flex: 0 0 50%;
  background-color: #25364A;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 6% 0 7%;
  gap: 1.2rem;
}

.right {
  flex: 0 0 50%;
  background-image: url('aeriel_edited.png');
  background-size: cover;
  background-position: center;
}

h1 {
  font-family: 'Play', sans-serif;
  font-size: clamp(3rem, 5.5vw, 5rem);
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 0.03em;
}

p.tagline {
  font-family: 'Play', sans-serif;
  font-size: clamp(0.9rem, 1.4vw, 1.25rem);
  color: #E8EEF5;
  line-height: 1.5;
}

p.coming-soon {
  font-family: 'Play', sans-serif;
  font-size: clamp(0.9rem, 1.4vw, 1.25rem);
  color: #E8EEF5;
  font-style: italic;
  margin-top: 2.4rem;
}

/* ── Tablet landscape (768px–1024px) ─────────────────────────────────────── */

@media (max-width: 1024px) {
  .left {
    flex: 0 0 55%;
    padding: 0 5% 0 6%;
  }

  .right {
    flex: 0 0 45%;
  }

  h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
  }

  p.tagline,
  p.coming-soon {
    font-size: clamp(0.9rem, 1.8vw, 1.15rem);
  }
}

/* ── Tablet portrait (600px–767px) ───────────────────────────────────────── */
/* Stack vertically: image on top, text below */

@media (max-width: 767px) {
  body {
    flex-direction: column;
    height: auto;
    min-height: 100vh;
    overflow: auto;
  }

  .right {
    flex: none;
    width: 100%;
    height: 45vh;
    min-height: 240px;
  }

  .left {
    flex: none;
    width: 100%;
    padding: 2.5rem 8%;
    gap: 1rem;
    justify-content: center;
    min-height: 55vh;
  }

  h1 {
    font-size: clamp(2.8rem, 8vw, 4rem);
  }

  p.tagline,
  p.coming-soon {
    font-size: clamp(1rem, 2.8vw, 1.2rem);
  }
}

/* ── Mobile (max 599px) ──────────────────────────────────────────────────── */

@media (max-width: 599px) {
  .right {
    height: 38vh;
    min-height: 200px;
  }

  .left {
    padding: 2rem 7%;
    gap: 0.9rem;
    min-height: 62vh;
  }

  h1 {
    font-size: clamp(2.4rem, 11vw, 3.2rem);
  }

  p.tagline,
  p.coming-soon {
    font-size: clamp(0.95rem, 4vw, 1.1rem);
  }
}

/* ── Small mobile (max 375px — e.g. iPhone SE) ───────────────────────────── */

@media (max-width: 375px) {
  h1 {
    font-size: 2.2rem;
  }

  p.tagline,
  p.coming-soon {
    font-size: 0.95rem;
  }
}

/* ── Short screens (landscape mobile, max-height 500px) ─────────────────── */

@media (max-height: 500px) and (orientation: landscape) {
  body {
    flex-direction: row;
    height: 100vh;
    overflow: hidden;
  }

  .right {
    flex: 0 0 50%;
    height: 100vh;
    min-height: unset;
  }

  .left {
    flex: 0 0 50%;
    min-height: unset;
    padding: 1.5rem 5%;
    gap: 0.8rem;
    justify-content: center;
  }

  h1 {
    font-size: clamp(1.8rem, 6vh, 2.8rem);
  }

  p.tagline,
  p.coming-soon {
    font-size: clamp(0.8rem, 2vh, 1rem);
  }
}
