* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --black: #030303;
  --panel: #0b0b0b;
  --gold: #d8a22f;
  --gold-light: #f4ca5f;
  --white: #f5f1e8;
  --muted: #b9b2a6;
  --border: rgba(244, 202, 95, 0.28);
}

html,
body {
  width: 100%;
  min-height: 100%;
  overflow-x: hidden;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--white);
  background:
    radial-gradient(circle at 70% 42%, rgba(216, 162, 47, 0.16), transparent 28%),
    radial-gradient(circle at 48% 86%, rgba(255, 255, 255, 0.08), transparent 22%),
    linear-gradient(180deg, #050505 0%, #000 100%);
}

/* Max-width and measured padding keep the page clean at normal 100% browser zoom. */
.page {
  width: min(100%, 1420px);
  margin: 0 auto;
  padding: 22px clamp(20px, 3vw, 46px) 34px;
}

/* Header: larger logo left, centered nav, icons right, with enough room for TikTok. */
.header {
  display: grid;
  grid-template-columns: minmax(220px, 310px) minmax(500px, 1fr) minmax(180px, 230px);
  align-items: center;
  gap: clamp(16px, 2.2vw, 32px);
  padding: 0 clamp(8px, 1vw, 18px) 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.logo {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  text-decoration: none;
}

.logo img {
  display: block;
  width: clamp(220px, 18vw, 292px);
  max-width: 100%;
  height: auto;
}

.nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(18px, 2.25vw, 42px);
  min-width: 0;
  white-space: nowrap;
}

.nav a,
.nav-button {
  position: relative;
  border: 0;
  background: none;
  color: var(--white);
  text-decoration: none;
  font: inherit;
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 900;
  letter-spacing: 1.25px;
  cursor: pointer;
  transition: color 180ms ease;
}

.nav a::after,
.nav-button::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 0;
  height: 2px;
  background: var(--gold-light);
  transition: width 200ms ease;
}

.nav a:hover,
.nav a.active,
.nav-button:hover {
  color: var(--gold-light);
}

.nav a:hover::after,
.nav a.active::after,
.nav-button:hover::after {
  width: 100%;
}

.socials {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: clamp(14px, 1.55vw, 24px);
  min-width: 0;
  padding-right: clamp(10px, 1.2vw, 20px);
}

.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  color: var(--gold-light);
  font-size: 22px;
  line-height: 1;
  text-decoration: none;
  transition: color 180ms ease, text-shadow 180ms ease;
}

.socials a:hover {
  color: #ffdc7a;
  text-shadow: 0 0 18px rgba(244, 202, 95, 0.8);
}

/* The wrapper softly masks image edges so black export boxes blend into the cinematic page. */
.image-fade {
  position: relative;
  display: inline-flex;
  max-width: 100%;
  isolation: isolate;
}

.image-fade::after {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: 3;
  pointer-events: none;
  background:
    linear-gradient(90deg, #030303 0%, transparent 8%, transparent 92%, #030303 100%),
    linear-gradient(180deg, #030303 0%, transparent 10%, transparent 90%, #030303 100%);
  opacity: 0.68;
  mix-blend-mode: multiply;
}

.image-fade img {
  background: transparent;
  mix-blend-mode: lighten;
}

.logo-fade::after {
  inset: -6px;
  opacity: 0.4;
}

.product-fade::after {
  inset: -10px;
  opacity: 0.55;
}

.hero {
  display: grid;
  grid-template-columns: minmax(360px, 0.88fr) minmax(420px, 1.12fr);
  align-items: center;
  gap: clamp(22px, 3.6vw, 56px);
  min-height: 510px;
  padding: clamp(34px, 4.5vw, 58px) 0 28px;
}

.hero-copy {
  max-width: 560px;
}

.hero h1 {
  display: grid;
  gap: 7px;
  font-size: clamp(46px, 5.15vw, 76px);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: 0;
}

.hero h1 span {
  display: block;
  white-space: nowrap;
}

.gold-text {
  color: var(--gold-light);
  background: linear-gradient(180deg, #ffe18a, #d8a22f 58%, #9d6d19);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.subtitle {
  margin-top: 28px;
  font-size: clamp(21px, 2vw, 28px);
  line-height: 1.35;
}

.cta {
  margin-top: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-width: 300px;
  border: 1px solid rgba(255, 220, 122, 0.8);
  border-radius: 7px;
  background: linear-gradient(180deg, #f5cc62, #d69f2a);
  color: #050505;
  padding: 17px 24px;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.4px;
  cursor: pointer;
  box-shadow: 0 16px 38px rgba(216, 162, 47, 0.22);
}

.cta:hover {
  box-shadow: 0 20px 48px rgba(216, 162, 47, 0.34);
}

.cta span {
  font-size: 28px;
}

.cta.small {
  min-width: 0;
  padding-inline: 22px;
}

.hero-product,
.drink-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.hero-product img,
.drink-image img {
  position: relative;
  z-index: 2;
  width: min(100%, 700px);
  max-height: 500px;
  object-fit: contain;
  filter: drop-shadow(0 32px 44px rgba(0, 0, 0, 0.75));
}

.product-glow {
  position: absolute;
  width: 70%;
  height: 58%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(244, 202, 95, 0.22), transparent 66%);
  filter: blur(28px);
}

.features {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(8, 8, 8, 0.78);
  overflow: hidden;
}

.features article {
  min-width: 0;
  padding: clamp(22px, 2.2vw, 30px);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.features article:last-child {
  border-right: 0;
}

.features h2 {
  font-size: clamp(16px, 1.45vw, 20px);
  line-height: 1.22;
  font-weight: 900;
}

.features p {
  margin-top: 14px;
  color: var(--muted);
  font-size: clamp(15px, 1.35vw, 18px);
  line-height: 1.45;
}

.content-page,
.drink-page {
  min-height: calc(100vh - 130px);
  display: grid;
  align-items: center;
  padding: clamp(54px, 7vw, 96px) 0;
}

.page-hero.narrow {
  max-width: 760px;
}

.eyebrow,
.modal-kicker {
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2.4px;
  margin-bottom: 16px;
}

.page-hero h1,
.drink-copy h1 {
  max-width: 850px;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1;
}

.page-hero p,
.drink-copy p {
  max-width: 720px;
  margin-top: 22px;
  color: var(--muted);
  font-size: clamp(18px, 1.7vw, 23px);
  line-height: 1.55;
}

.drink-page {
  grid-template-columns: minmax(340px, 0.95fr) minmax(400px, 1.05fr);
  gap: clamp(28px, 5vw, 70px);
}

.drink-copy {
  max-width: 720px;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  place-items: center;
  padding: 22px;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(10px);
}

.modal.open {
  display: grid;
}

.modal-card {
  position: relative;
  width: min(100%, 460px);
  border: 1px solid var(--border);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(16, 16, 16, 0.98), rgba(5, 5, 5, 0.98));
  padding: 34px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.72), 0 0 36px rgba(216, 162, 47, 0.12);
}

.close-modal {
  position: absolute;
  top: 14px;
  right: 18px;
  border: 0;
  background: transparent;
  color: var(--gold-light);
  font-size: 31px;
  cursor: pointer;
}

.modal-card h2 {
  margin-bottom: 24px;
  font-size: 30px;
}

form {
  display: grid;
  gap: 12px;
}

label {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

input {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: #090909;
  color: var(--white);
  padding: 15px 14px;
  font-size: 16px;
  outline: none;
}

input:focus {
  border-color: var(--gold-light);
  box-shadow: 0 0 0 3px rgba(216, 162, 47, 0.16);
}

form button {
  margin-top: 12px;
  border: 1px solid rgba(255, 220, 122, 0.8);
  border-radius: 8px;
  background: linear-gradient(180deg, #f5cc62, #d69f2a);
  color: #050505;
  padding: 15px 18px;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
}

.form-status {
  min-height: 24px;
  margin-top: 18px;
  color: var(--gold-light);
  font-size: 17px;
  font-weight: 800;
}

.contact-links {
  display: grid;
  gap: 14px;
}

.contact-links a {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 14px 15px;
  background: rgba(255, 255, 255, 0.03);
}

.contact-links i {
  width: 22px;
  color: var(--gold-light);
  font-size: 20px;
}

.contact-links a:hover {
  border-color: var(--border);
  color: var(--gold-light);
}

@media (max-width: 1240px) {
  .header {
    grid-template-columns: minmax(210px, 260px) minmax(440px, 1fr) minmax(160px, 200px);
    gap: 18px;
  }

  .logo img {
    width: clamp(210px, 17vw, 250px);
  }

  .nav {
    gap: clamp(16px, 1.8vw, 28px);
  }
}

@media (max-width: 1080px) {
  .header {
    grid-template-columns: 1fr;
    justify-items: center;
    padding-right: 0;
  }

  .socials {
    justify-content: center;
    padding-right: 0;
  }

  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    min-height: auto;
  }

  .hero-copy {
    margin: 0 auto;
  }

  .drink-page {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .drink-copy {
    margin: 0 auto;
  }
}

@media (max-width: 820px) {
  .page {
    padding-inline: 18px;
  }

  .nav {
    flex-wrap: wrap;
    gap: 18px 24px;
  }

  .logo img {
    width: 220px;
  }

  .hero h1 span {
    white-space: normal;
  }

  .cta {
    min-width: 0;
    width: min(100%, 330px);
  }

  .features {
    grid-template-columns: 1fr;
  }

  .features article {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .features article:last-child {
    border-bottom: 0;
  }

  .modal-card {
    padding: 30px 24px;
  }
}