* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100%;
  background: #050505;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ---------- DESKTOP ---------- */

.desktop-only {
  display: block;
  width: 100%;
  background: #050505;
}

.desktop-art-crop {
  width: 100%;
  overflow: hidden;
  background: #050505;
}

/* The source artwork is 1664 × 936.
   Cropping the bottom removes the embedded 2024 footer entirely. */
.desktop-art-crop img {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: -92px;
}

.desktop-contact {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  padding: 18px 20px;
  border-top: 1px solid #282828;
  background: #090909;
  font-size: 18px;
}

.desktop-contact strong {
  color: #ff8a00;
}

.desktop-contact a {
  color: #39a9ff;
}

.desktop-only footer {
  padding: 15px 20px 22px;
  text-align: center;
  color: #bfbfbf;
  background: #090909;
  font-size: 14px;
}

/* ---------- MOBILE ---------- */

.mobile-only {
  display: none;
}

@media (max-width: 800px) {
  .desktop-only {
    display: none !important;
  }

  .mobile-only {
    display: block;
    width: 100%;
    min-height: 100vh;
    background:
      radial-gradient(circle at 50% 5%, #151515 0, #080808 38%, #030303 100%);
  }

  .mobile-wrap {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    padding:
      calc(18px + env(safe-area-inset-top))
      max(16px, env(safe-area-inset-right))
      calc(26px + env(safe-area-inset-bottom))
      max(16px, env(safe-area-inset-left));
    text-align: center;
  }

  .mobile-logo {
    display: block;
    width: min(100%, 430px);
    height: auto;
    margin: 0 auto;
  }

  .accent {
    width: 74%;
    height: 2px;
    margin: 2px auto 18px;
    background: linear-gradient(90deg, transparent, #ff8a00, transparent);
  }

  .eyebrow {
    margin: 0 auto 22px;
    max-width: 380px;
    color: #c8c8c8;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.3px;
    line-height: 1.5;
  }

  h1 {
    margin: 0 0 20px;
    color: #f1f1f1;
    font-size: clamp(38px, 11vw, 58px);
    line-height: 0.92;
    letter-spacing: 0.5px;
  }

  .intro {
    margin: 0 0 28px;
    color: #dedede;
    font-size: 18px;
    line-height: 1.55;
  }

  .contact-card {
    width: 100%;
    padding: 22px 16px 10px;
    border: 1px solid #333;
    border-radius: 18px;
    background: linear-gradient(180deg, #111, #090909);
  }

  .contact-card h2 {
    margin: 0 0 18px;
    color: #ff8a00;
    font-size: 18px;
    letter-spacing: 1.1px;
  }

  .contact-button {
    display: flex;
    min-width: 0;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    min-height: 68px;
    margin: 0 0 12px;
    padding: 11px 14px;
    border: 1px solid #333;
    border-radius: 12px;
    background: #121212;
    color: #fff;
    font-size: 18px;
    line-height: 1.3;
    overflow: hidden;
  }

  .contact-button .label {
    display: block;
    margin-bottom: 4px;
    color: #888;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.2px;
  }

  .contact-button .email {
    font-size: clamp(14px, 4vw, 17px);
    overflow-wrap: anywhere;
  }

  .mobile-only footer {
    margin-top: 24px;
    color: #bdbdbd;
    font-size: 14px;
  }
}

@media (max-width: 360px) {
  .mobile-wrap {
    padding-left: 12px;
    padding-right: 12px;
  }

  h1 {
    font-size: 37px;
  }

  .intro {
    font-size: 16px;
  }

  .contact-card {
    padding-left: 12px;
    padding-right: 12px;
  }

  .contact-button {
    font-size: 17px;
  }
}
