* {
  box-sizing: border-box;
}

:root {
  --pink: #eda3c5;
  --black: #090909;
  --cream: #f2efe9;
  --paper: #f7f5f1;
  --ink: #101010;
  --muted: rgba(242, 239, 233, .72);
  --line-dark: rgba(16, 16, 16, .22);
}

html {
  background: var(--black);
}

body {
  margin: 0;
  background: var(--black);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}

img {
  display: block;
  width: 100%;
  height: 100%;
}

.page {
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  background: var(--black);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 53%) minmax(0, 47%);
  min-height: 660px;
}

.hero-copy {
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 4.2vw, 72px) clamp(34px, 4.6vw, 78px) clamp(38px, 4.2vw, 68px);
  background:
    radial-gradient(circle at 92% 7%, rgba(255,255,255,.035), transparent 28%),
    var(--black);
  color: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.brand-row {
  position: relative;
  z-index: 2;
  min-height: 112px;
}

.logo-mark {
  width: clamp(92px, 7.2vw, 122px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--pink);
  color: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  line-height: .82;
  letter-spacing: -1.8px;
  font-size: clamp(22px, 1.8vw, 29px);
}

.logo-mark small {
  margin-top: 9px;
  font-size: 7px;
  line-height: 1;
  letter-spacing: .35px;
  font-weight: 800;
}

.vinyl {
  position: absolute;
  border-radius: 50%;
  background:
    radial-gradient(circle,
      transparent 0 5%, rgba(255,255,255,.10) 5.2% 5.5%, transparent 5.8% 11%,
      rgba(255,255,255,.075) 11.2% 11.5%, transparent 11.8% 17%,
      rgba(255,255,255,.065) 17.2% 17.5%, transparent 17.8% 23%,
      rgba(255,255,255,.055) 23.2% 23.5%, transparent 23.8% 29%,
      rgba(255,255,255,.045) 29.2% 29.5%, transparent 29.8% 35%,
      rgba(255,255,255,.04) 35.2% 35.5%, transparent 35.8%);
  border: 1px solid rgba(255,255,255,.055);
}

.vinyl-large {
  width: clamp(330px, 31vw, 520px);
  height: clamp(330px, 31vw, 520px);
  right: clamp(-190px, -10vw, -115px);
  top: clamp(-235px, -11vw, -150px);
  opacity: .78;
}

h1 {
  margin: clamp(22px, 2.2vw, 38px) 0 0;
  position: relative;
  z-index: 1;
  color: var(--cream);
  font-size: clamp(84px, 8.2vw, 148px);
  line-height: .84;
  letter-spacing: -0.07em;
  font-weight: 900;
  white-space: nowrap;
}

.manifesto {
  margin: clamp(28px, 2.2vw, 38px) 0 0;
  color: var(--pink);
  font-size: clamp(30px, 2.75vw, 50px);
  line-height: .95;
  font-weight: 900;
  letter-spacing: -0.045em;
}

.manifesto span {
  display: block;
}

.coming {
  margin: clamp(22px, 2vw, 32px) 0 0;
  max-width: 670px;
  color: var(--cream);
  font-size: clamp(14px, 1.1vw, 18px);
  line-height: 1.34;
  letter-spacing: -.01em;
}

.hero-actions {
  margin-top: clamp(22px, 2vw, 32px);
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-action {
  min-height: 54px;
  padding: 0 21px;
  border: 2px solid var(--pink);
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--pink);
  text-decoration: none;
  font-size: 15px;
  letter-spacing: -.01em;
  transition: transform .15s ease, background .15s ease, color .15s ease;
}

.hero-action strong {
  font-weight: 800;
}

.hero-action-primary {
  background: var(--pink);
  color: var(--black);
}

.hero-action:hover,
.hero-action:focus-visible {
  transform: translateY(-2px);
  background: var(--pink);
  color: var(--black);
  outline: none;
}

.mini-instagram {
  width: 21px;
  height: 21px;
  border: 2px solid currentColor;
  border-radius: 6px;
  position: relative;
}

.mini-instagram::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border: 2px solid currentColor;
  border-radius: 50%;
  left: 5px;
  top: 5px;
}

.mini-instagram::after {
  content: "";
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: currentColor;
  right: 3px;
  top: 3px;
}

.mini-phone {
  font-size: 20px;
  line-height: 1;
}

.cocktail-card {
  position: relative;
  margin: 0;
  min-width: 0;
  min-height: 660px;
  overflow: hidden;
  background: var(--paper);
}

.cocktail-card img {
  object-fit: contain;
  object-position: 72% 48%;
  background: var(--paper);
}

.cocktail-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(247,245,241,.96) 0%, rgba(247,245,241,.88) 23%, rgba(247,245,241,.18) 50%, transparent 68%);
}

.cocktail-copy {
  position: absolute;
  z-index: 2;
  left: clamp(34px, 4.4vw, 72px);
  bottom: clamp(44px, 5vw, 76px);
  max-width: 38%;
  color: var(--black);
  text-align: left;
  font-style: normal;
}

.cocktail-kicker {
  display: block;
  margin-bottom: 18px;
  color: var(--pink);
  font-size: 12px;
  line-height: 1;
  letter-spacing: .24em;
  text-transform: uppercase;
  font-weight: 800;
}

.cocktail-copy strong {
  display: block;
  font-size: clamp(52px, 4.8vw, 86px);
  line-height: .78;
  letter-spacing: -0.065em;
  font-weight: 900;
}

.cocktail-copy i {
  display: block;
  width: 36px;
  height: 4px;
  margin: 24px 0 18px;
  background: var(--pink);
}

.cocktail-copy small {
  display: block;
  font-size: clamp(12px, .95vw, 16px);
  line-height: 1.22;
  font-weight: 700;
  letter-spacing: -.01em;
}

.editorial-grid {
  display: grid;
  grid-template-columns: 22% 31% 20% 27%;
  min-height: 360px;
}

.about-card {
  min-height: 360px;
  padding: clamp(30px, 3.4vw, 58px);
  background: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  margin: 0;
  font-size: clamp(28px, 2.15vw, 40px);
  line-height: .92;
  letter-spacing: -0.045em;
  font-weight: 900;
}

.pink-rule {
  display: block;
  width: 30px;
  height: 4px;
  margin: 22px 0 20px;
  background: var(--pink);
}

.intro {
  margin: 0;
  font-size: clamp(13px, .9vw, 16px);
  line-height: 1.32;
}

.soon {
  margin: 14px 0 0;
  font-size: 13px;
  font-weight: 800;
}

.lifestyle-card {
  min-height: 360px;
  margin: 0;
  overflow: hidden;
  background: #6c3d27;
}

.lifestyle-card img {
  object-fit: cover;
  object-position: 53% 48%;
}

.music-card {
  min-height: 360px;
  padding: clamp(30px, 3vw, 52px);
  background: var(--pink);
  color: var(--black);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.music-card p {
  margin: 0;
  font-size: clamp(42px, 3.2vw, 60px);
  line-height: .78;
  font-weight: 900;
  letter-spacing: -0.055em;
}

.music-card span {
  display: block;
  width: 78%;
  margin-top: 30px;
  padding-top: 14px;
  border-top: 3px solid var(--black);
  font-size: clamp(11px, .8vw, 14px);
  line-height: 1.12;
  font-weight: 800;
}

.record-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  background: var(--black);
}

.record {
  width: clamp(430px, 31vw, 560px);
  height: clamp(430px, 31vw, 560px);
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-46%, -50%);
  background:
    repeating-radial-gradient(circle at center,
      #111 0 3px,
      #171717 4px 5px,
      #090909 6px 8px);
  box-shadow: inset 0 0 90px rgba(255,255,255,.025);
}

.record-label {
  width: 41%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--pink);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  padding: 24% 8% 18%;
  color: var(--black);
  text-align: center;
}

.record-label strong {
  font-size: clamp(9px, .75vw, 13px);
  line-height: 1;
  letter-spacing: .04em;
}

.record-hole {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--black);
  flex: 0 0 auto;
}

.record-label small {
  font-size: clamp(8px, .65vw, 11px);
  line-height: 1.05;
  font-weight: 800;
}

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: 1fr 1fr;
  }

  h1 {
    font-size: clamp(76px, 8vw, 112px);
  }

  .manifesto {
    font-size: clamp(28px, 2.8vw, 42px);
  }

  .editorial-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-card,
  .lifestyle-card,
  .music-card,
  .record-card {
    min-height: 340px;
  }
}

@media (max-width: 860px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    min-height: 580px;
  }

  h1 {
    font-size: clamp(78px, 17vw, 126px);
  }

  .manifesto {
    font-size: clamp(31px, 7vw, 46px);
  }

  .cocktail-card {
    min-height: 570px;
  }

  .cocktail-card img {
    object-position: 72% center;
  }

  .cocktail-copy {
    max-width: 42%;
  }
}

@media (max-width: 640px) {
  .hero-copy {
    min-height: auto;
    padding: 28px 22px 34px;
  }

  .brand-row {
    min-height: 94px;
  }

  .logo-mark {
    width: 88px;
    font-size: 21px;
  }

  .logo-mark small {
    font-size: 6px;
  }

  .vinyl-large {
    width: 280px;
    height: 280px;
    right: -115px;
    top: -128px;
  }

  h1 {
    margin-top: 28px;
    font-size: clamp(68px, 21vw, 102px);
    line-height: .83;
    white-space: normal;
  }

  .manifesto {
    margin-top: 22px;
    font-size: clamp(27px, 8.7vw, 40px);
  }

  .coming {
    margin-top: 20px;
    font-size: 14px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-action {
    width: 100%;
  }

  .cocktail-card {
    min-height: 510px;
  }

  .cocktail-card img {
    object-position: 70% center;
  }

  .cocktail-card::after {
    background: linear-gradient(90deg, rgba(247,245,241,.97) 0%, rgba(247,245,241,.86) 35%, rgba(247,245,241,.12) 69%, transparent 80%);
  }

  .cocktail-copy {
    left: 24px;
    bottom: 34px;
    max-width: 44%;
  }

  .cocktail-copy strong {
    font-size: clamp(44px, 14vw, 68px);
  }

  .cocktail-copy small {
    font-size: 10px;
  }

  .editorial-grid {
    grid-template-columns: 1fr;
  }

  .about-card,
  .lifestyle-card,
  .music-card,
  .record-card {
    min-height: 330px;
  }

  .about-card,
  .music-card {
    padding: 34px 24px;
  }

  .lifestyle-card img {
    object-position: 52% center;
  }

  .record {
    width: 470px;
    height: 470px;
  }
}
