:root {
  --black: #050403;
  --charcoal: #111;
  --cream: #e7c9a8;
  --red: #b82812;
  --red-hot: #e03718;
  --muted: #d7b994;
}

* { box-sizing: border-box; }

html { min-height: 100%; }

body {
  margin: 0;
  min-height: 100%;
  color: var(--cream);
  background: var(--black);
  font-family: "Roboto Condensed", system-ui, sans-serif;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(1rem, 2.5vw, 2rem) clamp(1rem, 4vw, 4rem);
  background:
    radial-gradient(circle at 78% 45%, rgba(224, 55, 24, .45), transparent 28rem),
    radial-gradient(circle at 58% 60%, rgba(184, 40, 18, .25), transparent 24rem),
    linear-gradient(90deg, rgba(0,0,0,.98) 0%, rgba(0,0,0,.9) 35%, rgba(0,0,0,.55) 100%),
    #050403;
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 48%;
  z-index: -2;
  opacity: .75;
  background:
    linear-gradient(to top, #040302 0 12%, transparent 70%),
    repeating-linear-gradient(90deg,
      transparent 0 38px,
      rgba(231,201,168,.18) 39px 40px,
      transparent 41px 68px),
    linear-gradient(to top, #030303 0 45%, transparent 45%);
  clip-path: polygon(0 70%, 5% 64%, 5% 55%, 8% 55%, 8% 43%, 11% 43%, 11% 60%, 14% 60%, 14% 48%, 18% 48%, 18% 62%, 22% 62%, 22% 35%, 25% 35%, 25% 62%, 29% 62%, 29% 47%, 32% 47%, 32% 60%, 35% 60%, 35% 28%, 39% 28%, 39% 60%, 43% 60%, 43% 42%, 46% 42%, 46% 62%, 50% 62%, 50% 50%, 54% 50%, 54% 60%, 57% 60%, 57% 34%, 61% 34%, 61% 62%, 65% 62%, 65% 45%, 68% 45%, 68% 60%, 71% 60%, 71% 26%, 75% 26%, 75% 60%, 79% 60%, 79% 39%, 82% 39%, 82% 62%, 86% 62%, 86% 48%, 90% 48%, 90% 60%, 94% 60%, 94% 43%, 97% 43%, 97% 65%, 100% 65%, 100% 100%, 0 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .25;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 7px 7px;
  mix-blend-mode: overlay;
}

.site-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}

.brand-mark {
  display: inline-grid;
  width: clamp(88px, 12vw, 148px);
  aspect-ratio: 1 / 1.08;
  place-content: center;
  border: 3px solid var(--red);
  border-radius: 10px;
  color: var(--cream);
  text-decoration: none;
  font-family: Anton, Impact, sans-serif;
  letter-spacing: .04em;
  line-height: .86;
  font-size: clamp(1.9rem, 4vw, 3.5rem);
  box-shadow: inset 0 0 0 1px rgba(184,40,18,.45);
}

.brand-mark small {
  margin-top: .35rem;
  border-top: 2px solid var(--red);
  padding-top: .25rem;
  font-size: .24em;
  letter-spacing: .25em;
  line-height: 1;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 5vw, 5rem);
  padding-top: 1.1rem;
}

.nav a {
  color: var(--cream);
  text-decoration: none;
  text-transform: uppercase;
  font-family: Anton, Impact, sans-serif;
  letter-spacing: .08em;
  font-size: clamp(.9rem, 1.5vw, 1.25rem);
}

.nav a:hover { color: var(--red-hot); }

.hero-content {
  width: min(1180px, 100%);
  min-height: calc(100svh - 160px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .85fr);
  align-items: center;
  gap: clamp(1rem, 5vw, 5rem);
}

.copy { max-width: 650px; }

.stars {
  color: var(--red);
  font-size: clamp(1.4rem, 3vw, 2.8rem);
  letter-spacing: .35em;
  margin-bottom: .5rem;
}

h1 {
  margin: 0;
  font-family: Anton, Impact, sans-serif;
  text-transform: uppercase;
  line-height: .86;
  letter-spacing: .02em;
  font-size: clamp(5.3rem, 15vw, 12.5rem);
  text-shadow: 0 7px 0 rgba(0,0,0,.35);
}

h1 span { display: block; }
h1 span:first-child { color: var(--cream); }
h1 span:last-child { color: var(--red); }

.product-type {
  margin: .6rem 0 1.5rem;
  font-family: Anton, Impact, sans-serif;
  text-transform: uppercase;
  letter-spacing: .32em;
  font-size: clamp(1.4rem, 3.4vw, 3rem);
}

.tagline {
  margin: 0 0 1rem;
  font-size: clamp(1.45rem, 3vw, 2.4rem);
  font-weight: 700;
}

.description {
  width: min(34rem, 100%);
  margin: 0 0 2rem;
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.45;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 2.5rem;
  color: #fff0df;
  background: linear-gradient(180deg, var(--red-hot), #931d0d);
  border: 1px solid rgba(255,255,255,.12);
  text-decoration: none;
  text-transform: uppercase;
  font-family: Anton, Impact, sans-serif;
  letter-spacing: .12em;
  font-size: 1.25rem;
  box-shadow: 0 16px 40px rgba(184,40,18,.28);
}

.button:hover { transform: translateY(-2px); }

.product {
  display: grid;
  place-items: center;
  min-height: 580px;
}

.bottle {
  position: relative;
  width: clamp(190px, 22vw, 315px);
  filter: drop-shadow(0 30px 50px rgba(0,0,0,.75));
}

.cap {
  width: 58%;
  height: 74px;
  margin: 0 auto;
  border-radius: 18px 18px 6px 6px;
  background: repeating-linear-gradient(90deg, #050505 0 4px, #282828 5px 7px);
  border: 1px solid #393939;
}

.neck {
  width: 42%;
  height: 130px;
  margin: -2px auto 0;
  background: linear-gradient(90deg, #280b06, #e14a25 35%, #701808 75%, #190503);
  border-left: 2px solid rgba(255,255,255,.12);
  border-right: 2px solid rgba(0,0,0,.75);
}

.shoulder {
  width: 88%;
  height: 95px;
  margin: -10px auto 0;
  border-radius: 48% 48% 18% 18% / 70% 70% 20% 20%;
  background: linear-gradient(90deg, #2b0904, #f05225 34%, #901f0d 72%, #160403);
}

.bottle-body {
  width: 82%;
  height: 430px;
  margin: -26px auto 0;
  padding: 64px 22px 34px;
  border-radius: 24px 24px 38px 38px;
  background:
    radial-gradient(circle at 30% 12%, rgba(255,255,255,.35), transparent 10%),
    linear-gradient(90deg, #280904, #dc4320 35%, #7d180a 76%, #100302);
  border: 2px solid rgba(255,255,255,.08);
  box-shadow: inset 24px 0 40px rgba(255,255,255,.08), inset -30px 0 45px rgba(0,0,0,.55);
}

.label {
  height: 100%;
  border: 2px solid #151515;
  border-radius: 12px;
  padding: 20px 12px;
  display: grid;
  place-items: center;
  text-align: center;
  background: linear-gradient(180deg, #111 0 64%, #9d210f 65%, #111 100%);
  color: var(--cream);
  font-family: Anton, Impact, sans-serif;
}

.label-stars {
  color: var(--red-hot);
  letter-spacing: .35em;
  font-size: 1rem;
}

.label strong {
  font-size: clamp(3.1rem, 5.5vw, 5rem);
  line-height: .9;
  letter-spacing: .03em;
}

.label span {
  border-top: 2px solid var(--red);
  border-bottom: 2px solid var(--red);
  padding: .25rem 0;
  letter-spacing: .2em;
  font-size: 1.1rem;
}

.skyline {
  width: 100%;
  height: 55px;
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 4px;
}

.skyline i {
  width: 10%;
  background: #070707;
  border-top: 1px solid var(--red-hot);
}

.skyline i:nth-child(1) { height: 45%; }
.skyline i:nth-child(2) { height: 58%; }
.skyline i:nth-child(3) { height: 78%; }
.skyline i:nth-child(4) { height: 50%; }
.skyline i:nth-child(5) { height: 100%; }
.skyline i:nth-child(6) { height: 70%; }
.skyline i:nth-child(7) { height: 88%; }
.skyline i:nth-child(8) { height: 48%; }

@media (max-width: 900px) {
  .hero { padding: 1rem; }
  .site-header { align-items: center; }
  .nav { gap: 1.25rem; padding-top: 0; }
  .hero-content {
    min-height: auto;
    padding: 3rem 0 2rem;
    grid-template-columns: 1fr;
    text-align: center;
  }
  .copy { margin: 0 auto; }
  .description { margin-inline: auto; }
  .product { min-height: auto; }
  .bottle { width: min(245px, 70vw); }
}

@media (max-width: 560px) {
  .site-header { align-items: flex-start; }
  .brand-mark { width: 82px; border-width: 2px; }
  .nav { flex-direction: column; align-items: flex-end; gap: .6rem; }
  .stars { letter-spacing: .18em; }
  h1 { font-size: clamp(4.4rem, 25vw, 7rem); }
  .product-type { letter-spacing: .22em; }
  .button { width: 100%; max-width: 320px; }
  .cap { height: 58px; }
  .neck { height: 95px; }
  .shoulder { height: 72px; }
  .bottle-body { height: 350px; padding-top: 48px; }
}
