/* Latinas Unmuted — under construction */

:root {
  --ink: #1a1210;
  --ink-soft: #4a3530;
  --paper: #faf6f1;
  --coral: #e85a4f;
  --rose: #e8a09a;
  --mango: #f0a83a;
  --forest: #2f5d4a;
  --white: #ffffff;

  --font-display: "Bricolage Grotesque", sans-serif;
  --font-body: "Figtree", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 0.35rem;
}

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

body {
  margin: 0;
  min-height: 100svh;
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.55;
  color: var(--ink);
  background: #f3ebe3;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.coming {
  min-height: 100svh;
  display: grid;
  grid-template-rows: 1fr auto;
  overflow: hidden;
}

.coming-media {
  position: relative;
  min-height: 48svh;
  overflow: hidden;
}

.coming-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  transform: scale(1.02);
  animation: hero-zoom 8s var(--ease) forwards;
}

@keyframes hero-zoom {
  from {
    transform: scale(1.08);
  }
  to {
    transform: scale(1.02);
  }
}

.coming-content {
  padding: 1.75rem 1.25rem 2.5rem;
  background:
    radial-gradient(ellipse 90% 70% at 15% 0%, rgba(240, 168, 58, 0.3), transparent 55%),
    linear-gradient(160deg, #faf6f1 0%, #f3d5cf 48%, #e85a4f 140%);
}

.brand {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 8vw, 4.25rem);
  line-height: 0.92;
  letter-spacing: -0.045em;
  text-wrap: balance;
  max-width: 12ch;
}

.headline {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.35rem, 3.2vw, 1.85rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  max-width: 18ch;
}

.lede {
  margin: 0 0 1.5rem;
  font-size: clamp(1.05rem, 2.2vw, 1.15rem);
  line-height: 1.5;
  max-width: 34ch;
  color: var(--ink-soft);
}

.status {
  margin: 0 0 0.35rem;
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  color: var(--forest);
  border-bottom: 2px solid var(--forest);
  padding-bottom: 0.15rem;
}

.domain {
  margin: 1rem 0 0;
  font-size: 0.95rem;
  font-weight: 600;
  opacity: 0.7;
}

.brand,
.headline,
.lede,
.status,
.domain {
  opacity: 0;
  transform: translateY(1.1rem);
  animation: rise 0.85s var(--ease) forwards;
}

.headline {
  animation-delay: 0.1s;
}

.lede {
  animation-delay: 0.2s;
}

.status {
  animation-delay: 0.32s;
}

.domain {
  animation-delay: 0.42s;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 900px) {
  .coming {
    grid-template-columns: minmax(22rem, 0.9fr) 1.15fr;
    grid-template-rows: 1fr;
  }

  .coming-media {
    order: 2;
    min-height: 100svh;
  }

  .coming-content {
    order: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 4rem 2.5rem 3.5rem;
  }

  .brand {
    font-size: clamp(3.2rem, 5vw, 4.75rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .coming-media img {
    animation: none;
    transform: none;
  }

  .brand,
  .headline,
  .lede,
  .status,
  .domain {
    opacity: 1;
    transform: none;
    animation: none;
  }
}
