@font-face {
  font-family: "Pangram";
  src: url("assets/fonts/Pangram-ExtraLight.otf") format("opentype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Pangram";
  src: url("assets/fonts/Pangram-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Pangram";
  src: url("assets/fonts/Pangram-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Pangram";
  src: url("assets/fonts/Pangram-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Pangram";
  src: url("assets/fonts/Pangram-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Pangram";
  src: url("assets/fonts/Pangram-ExtraBold.otf") format("opentype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Pangram";
  src: url("assets/fonts/Pangram-Black.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --navy: #01061C;
  --gold: #CCB38C;
}

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

html,
body {
  min-height: 100%;
}

body {
  background: var(--navy);
  font-family: "Pangram", "Segoe UI", sans-serif;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  min-height: 100vh;
}

/* Portrait sign */
.sign {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 9 / 16;
  background: var(--navy);
  padding: 3px;
}

/* No border frame */
.frame {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8% 10%;
}

.content {
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.top,
.bottom {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo {
  width: 78%;
  max-width: 260px;
  height: auto;
  display: block;
  margin-bottom: 12%;
}

.intro {
  font-weight: 700;
  font-size: clamp(1.05rem, 5.2vw, 1.55rem);
  line-height: 1.5;
  letter-spacing: 0.5px;
  margin-bottom: 12%;
}

.intro .quote {
  display: inline-block;
  margin-top: 6px;
}

.soon {
  font-weight: 700;
  font-size: clamp(1.05rem, 5.2vw, 1.55rem);
  letter-spacing: 0.5px;
  margin-bottom: 9%;
}

.follow {
  font-weight: 300;
  font-size: clamp(0.85rem, 3.8vw, 1.1rem);
  letter-spacing: 1px;
  margin-bottom: 7%;
}

.socials {
  display: flex;
  gap: 22px;
  justify-content: center;
  align-items: center;
}

.social {
  color: var(--gold);
  display: inline-flex;
  transition: opacity 0.2s ease;
}

.social:hover {
  opacity: 0.7;
}

.social svg {
  width: clamp(26px, 8vw, 34px);
  height: clamp(26px, 8vw, 34px);
  display: block;
}

/* Desktop: two-column layout — logo left, text right */
@media (min-width: 768px) {
  .sign {
    max-width: 980px;
    aspect-ratio: auto;
  }

  .frame {
    padding: 48px 40px;
  }

  .top {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 56px;
    text-align: left;
    margin-bottom: 48px;
  }

  .logo {
    flex: 0 0 auto;
    width: 42%;
    max-width: 380px;
    margin-bottom: 0;
  }

  .intro {
    flex: 0 1 auto;
    font-size: 1.75rem;
    line-height: 1.55;
    margin-bottom: 0;
    max-width: 440px;
  }

  .intro .quote {
    margin-top: 10px;
  }

  .soon {
    font-size: 1.75rem;
    margin-bottom: 24px;
  }

  .follow {
    font-size: 1.15rem;
    margin-bottom: 22px;
  }

  .socials {
    gap: 26px;
  }

  .social svg {
    width: 36px;
    height: 36px;
  }
}
