/* ============================================================
   Boston Made — Coming Soon
   ============================================================ */

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

html, body {
  height: 100%;
}

body {
  font-family: "objektiv-mk3", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  background-color: #F2EDE8;
  color: #1C1A1E;
  min-height: 100vh;
}

/* ── Layout ── */

.container {
  max-width: calc(142px + 510px + 48px); /* col offset + content + right padding */
  padding: 128px 48px 96px 142px;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

/* ── Logo ── */

.logo img {
  display: block;
  height: 56px;
  width: auto;
}

/* ── Content ── */

.content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.heading {
  font-size: clamp(33px, 2.5vw, 52px);
  font-weight: 400;
  line-height: 1.32;
  color: #1C1A1E;
}

.body-text {
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 400;
  line-height: 1.4;
  color: #1C1A1E;
}

/* ── Button ── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #1C1A1E;
  color: #ffffff;
  font-family: inherit;
  font-size: 12px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 13px 24px 11px;
  border-radius: 100px;
  transition: opacity 0.15s ease;
  align-self: flex-start;
}

.btn:hover {
  opacity: 0.75;
}

/* ── Large screens ── */

@media (min-width: 1440px) {
  .container {
    max-width: calc(192px + 702px + 64px);
    padding: 160px 64px 128px 192px;
    gap: 80px;
  }

  .logo img {
    height: 72px;
  }
}

@media (min-width: 2000px) {
  .container {
    max-width: calc(256px + 882px + 96px);
    padding: 200px 96px 160px 256px;
    gap: 96px;
  }

  .logo img {
    height: 88px;
  }

  .btn {
    font-size: 14px;
    padding: 15px 28px 13px;
  }
}

/* ── Responsive ── */

@media (max-width: 768px) {
  .container {
    padding: 64px 24px 64px 24px;
    gap: 48px;
  }

  .logo img {
    height: 44px;
  }
}

@media (max-width: 480px) {
  .heading {
    font-size: 28px;
    line-height: 36px;
  }

  .body-text {
    font-size: 18px;
    line-height: 28px;
  }
}
