@font-face {
  font-family: "Adobe Jenson Pro Display";
  src: url("fonts/AdobeJensonPro-Display.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

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

body {
  line-height: 1.5;
  font-family: var(--font-main);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--brown-900);
  background-color: var(--cream-50);
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

main {
  min-height: 100vh;
  padding-inline: clamp(1rem, 4vw, 3rem);
}

.coming-soon {
  max-width: 72rem;
  margin: 0 auto;
}

.logo-wrap {
  display: flex;
  justify-content: center;
  padding-top: clamp(2rem, 6vw, 4rem);
  padding-bottom: clamp(3.5rem, 8vw, 6rem);
}

.tic-logo {
  max-width: 32rem;
  width: 90%;
  height: auto;
}

.content-wrap {
  width: 100%;
}

.desktop-columns {
  display: grid;
  gap: clamp(2rem, 6vw, 4rem);
}

.left-col {
  display: flex;
  justify-content: center;
}

.hero-img {
  width: 100%;
  max-width: 40rem;
  object-fit: cover;
}

.right-col {
  text-align: center;
}

.launch-title {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-block: 1.5rem 4rem;
}

.launch-title h1 {
  font-family: var(--font-accent);
  font-size: clamp(1.1rem, 2.5vw, 1.85rem);
  font-weight: 600;
  white-space: nowrap;
}

h2 {
  font-weight: 400;
  font-size: clamp(0.95rem, 2.2vw, 1.3rem);
  margin-bottom: 1.25rem;
}

.socials-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
}

.socials {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.social-text {
  font-size: 0.85rem;
}

.socials:hover .social-text {
  color: var(--blue-300);
}

footer {
  background-color: var(--blue-300);
  text-align: center;
  font-size: 0.5rem;
  font-weight: 600;
  padding: 0.75rem;
  letter-spacing: 1px;
  border-top: 1px solid var(--brown-900);
}

.top-bar {
  background-color: var(--blue-300);
  height: 2.5rem;
  border-bottom: 1px solid var(--brown-900);
}

@media (min-width: 768px) {
  body {
    font-size: 0.95rem;
  }

  .desktop-columns {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .left-col {
    justify-content: flex-start;
    order: 1;
  }

  .right-col {
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    order: 2;
  }

  .socials-wrap {
    align-items: flex-start;
    gap: 1.25rem;
  }

  .social-text {
    font-size: 0.9rem;
  }
}
