:root {
  --black: #000000;
  --white: #F3F3F3;
  --red: #C4120F;
  --gold: #BEA380;
  --gray: #1b1b1b;
  --shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  --heading-tight: -0.02em;
  --heading-wide: 0.02em;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Helvetica Neue", Arial, sans-serif;
  background: var(--white);
  color: var(--black);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
}

main {
  overflow: hidden;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 6vw;
  background: rgba(243, 243, 243, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 2px solid var(--black);
}

.logo-wrap {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 0;
  padding: 3px 6px;
  background: #ffffff;
  border: 1px solid var(--black);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
}

.logo {
  width: 108px;
}


.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.95rem;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  line-height: 1;
  padding: 2px 0;
  font-weight: 800;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 3px;
  background: var(--red);
  transition: width 0.2s ease;
}

.site-nav a:hover::after {
  width: 100%;
}

.lang-switch {
  display: inline-flex;
  border: 1px solid var(--black);
  background: #ffffff;
}

.lang-btn {
  border: 0;
  background: transparent;
  color: var(--black);
  padding: 6px 10px;
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
}

.lang-btn.is-active {
  background: var(--black);
  color: var(--white);
}

/* HERO */
.hero {
  position: relative;
  min-height: 92vh;
  padding: 80px 6vw 60px;
  background: radial-gradient(circle at 10% 10%, #ffffff 0%, #f3f3f3 35%, #e7e7e7 70%, #d9d9d9 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(196, 18, 15, 0.18), rgba(0, 0, 0, 0.08) 60%, rgba(0, 0, 0, 0));
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
}

.hero-text h1 {
  font-family: "Manrope", "Helvetica Neue", Arial, sans-serif;
  font-weight: 800;
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  line-height: 0.92;
  letter-spacing: var(--heading-tight);
  margin: 8px 0 14px;
  text-transform: uppercase;
  text-wrap: balance;
}

.hero-kicker {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-meta {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  padding: 10px 16px;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-cta {
  margin-top: 30px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bottle {
  width: min(320px, 75vw);
  filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.35));
  transition: transform 0.2s ease-out;
}

.bottle.bottle-load-in {
  animation: bottlePopIn 900ms cubic-bezier(0.2, 0.9, 0.22, 1) both;
}

@keyframes bottlePopIn {
  0% {
    transform: translateY(70px) scale(0.82) rotate(-8deg);
    opacity: 0;
  }
  45% {
    transform: translateY(-8px) scale(1.06) rotate(3deg);
    opacity: 1;
  }
  70% {
    transform: translateY(4px) scale(0.98) rotate(-2deg);
  }
  100% {
    transform: translateY(0) scale(1) rotate(0deg);
    opacity: 1;
  }
}

.hero-shapes .shape {
  position: absolute;
  z-index: 1;
  opacity: 0.9;
}

.shape-1 {
  width: 320px;
  height: 28px;
  right: -40px;
  top: 22%;
  background: var(--red);
  transform: rotate(-8deg);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}

.shape-2 {
  width: 220px;
  height: 18px;
  left: -30px;
  bottom: 18%;
  background: var(--black);
  transform: rotate(6deg);
  opacity: 0.75;
}

/* SECTIONS */
section {
  padding: 90px 6vw;
}

.section-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.section-kicker {
  margin: 0 0 12px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.about {
  background: var(--black);
  color: var(--white);
}

.about h2 {
  font-family: "Manrope", "Helvetica Neue", Arial, sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: var(--heading-tight);
  text-transform: uppercase;
  margin-bottom: 16px;
  text-wrap: balance;
}

.about .lead {
  font-size: 1.2rem;
  line-height: 1.55;
  max-width: 600px;
  margin: 0 auto;
}

/* DISTRIBUTOR */
.distributor {
  background: var(--white);
}

.dist-form {
  display: grid;
  gap: 18px;
  max-width: 520px;
  margin: 30px auto 0;
}

.form-title {
  margin: 18px 0 0;
  font-family: "Manrope", "Helvetica Neue", Arial, sans-serif;
  font-weight: 800;
  font-size: clamp(1.4rem, 2.6vw, 2.1rem);
  letter-spacing: var(--heading-wide);
  text-transform: uppercase;
  text-align: center;
}

.tooltip-wrap {
  position: relative;
  display: inline-flex;
  align-items: baseline;
}

.field-label-with-tip {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
}

.tooltip-trigger {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  border: 1px solid var(--black);
  background: var(--white);
  color: var(--black);
  font-family: inherit;
  font-weight: 700;
  font-size: 0.55rem;
  line-height: 1;
  padding: 0;
  cursor: pointer;
  transform: translateY(-1px);
}

.tooltip-text {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 6px);
  transform: translateX(-50%);
  min-width: 130px;
  max-width: 160px;
  padding: 4px 6px;
  background: var(--black);
  color: var(--white);
  border: 1px solid var(--white);
  font-size: 0.6rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease;
  z-index: 3;
}

.tooltip-wrap:hover .tooltip-text,
.tooltip-wrap:focus-within .tooltip-text {
  opacity: 1;
}

.field {
  display: grid;
  gap: 8px;
  text-align: left;
  font-weight: 600;
}

input {
  padding: 14px 12px;
  border: 2px solid var(--black);
  background: transparent;
  font-size: 1rem;
  line-height: 1.35;
  font-family: inherit;
}

.phone-link {
  margin: 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  color: var(--black);
  border: 2px solid var(--red);
  background: #ffffff;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

.phone-cta {
  margin-top: 24px;
}

.phone-link:hover {
  background: var(--red);
  color: var(--white);
}

.order-note {
  margin: 18px 0 0;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  opacity: 0.7;
}

.order-note-top {
  margin-top: 8px;
}

/* SOCIAL */
.social {
  background: var(--gold);
  color: var(--white);
}

.social .section-inner {
  max-width: 760px;
  padding: 24px;
  background: linear-gradient(155deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.36));
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.2);
}

.social-title {
  margin: 0;
  font-family: "Manrope", "Helvetica Neue", Arial, sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  letter-spacing: var(--heading-tight);
  text-transform: uppercase;
  text-wrap: balance;
}

.social-subtitle {
  margin: 12px auto 0;
  max-width: 520px;
  font-size: 0.98rem;
  line-height: 1.6;
  opacity: 0.92;
}

.social-buttons {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.social-link {
  min-width: 220px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--black);
  color: var(--black);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: #ffffff;
  backdrop-filter: none;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.social-link-instagram {
  background-image: none;
}

.social-link-tiktok {
  background-image: none;
}

.social-link:hover {
  transform: translateY(-3px);
  border-color: var(--black);
  background-color: #efefef;
}

.social-link-arrow {
  font-size: 1rem;
  line-height: 1;
}

/* FOOTER */
.site-footer {
  background: var(--black);
  color: var(--white);
  text-align: center;
  padding: 28px 6vw;
  font-size: 0.95rem;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 2px solid var(--black);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.btn-ghost {
  background: transparent;
}

.btn-light {
  background: var(--white);
  color: var(--red);
  border-color: var(--white);
}

.btn:hover {
  transform: translateY(-2px) scale(1.02);
  background: var(--black);
  color: var(--white);
}

.btn-light:hover {
  background: var(--black);
  border-color: var(--black);
}

/* AGE MODAL */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  color: var(--white);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99;
  padding: 20px;
}

.modal-content {
  background: var(--gray);
  padding: 32px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  border: 3px solid var(--white);
  box-shadow: var(--shadow);
}

.modal-kicker {
  text-transform: uppercase;
  letter-spacing: 4px;
  margin: 0 0 10px;
}

.modal-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 22px;
}

body.modal-open {
  overflow: hidden;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-text {
    text-align: center;
  }

  .hero-cta {
    justify-content: center;
  }

  .site-nav {
    display: none;
  }

  .lang-btn {
    padding: 6px 9px;
    font-size: 0.75rem;
  }

  .shape-1,
  .shape-2 {
    display: none;
  }

  .social .section-inner {
    padding: 20px 16px;
  }

  .social-link {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 600px) {
  .site-header {
    padding: 14px 5vw;
  }

  .logo {
    width: 108px;
  }

  section {
    padding: 70px 6vw;
  }

  .hero-text h1 {
    font-size: clamp(2.25rem, 11vw, 3.2rem);
  }

  .about h2,
  .social-title {
    font-size: clamp(1.7rem, 8vw, 2.3rem);
  }

  .modal-content {
    padding: 24px;
  }

  .modal-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}
