/* =========================================================
   HEALER TEAM GLOBAL — OFFICIAL WEBSITE
   Premium dark emerald / gold visual system
========================================================= */

:root {
  --green-950: #03100c;
  --green-900: #061711;
  --green-850: #071c15;
  --green-800: #0a241b;
  --green-700: #103426;
  --green-600: #17533c;

  --gold: #d4af37;
  --gold-light: #f1d67a;
  --gold-soft: #e5c55b;

  --cream: #f6f2e8;
  --warm: #eee7d8;
  --white: #ffffff;

  --text-dark: #122019;
  --text-soft: #5f6c65;

  --border-dark: rgba(255, 255, 255, 0.10);
  --border-gold: rgba(212, 175, 55, 0.32);

  --shell: 1380px;
  --header-height: 86px;

  --shadow-large:
    0 40px 90px rgba(0, 0, 0, 0.28);

  --shadow-product:
    0 35px 55px rgba(0, 0, 0, 0.30);
}


/* =========================================================
   RESET
========================================================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  color: var(--text-dark);
  background: var(--cream);
  font-family:
    Inter,
    ui-sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body,
button,
a {
  font-family: inherit;
}

img {
  max-width: 100%;
}

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

button {
  color: inherit;
}

.official-shell {
  width: min(calc(100% - 48px), var(--shell));
  margin-inline: auto;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--header-height);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(3, 16, 12, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(calc(100% - 48px), 1480px);
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 34px;
}

.official-brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.official-brand img {
  display: block;
  width: auto;
  height: 52px;
  max-width: 235px;
  object-fit: contain;
}

.main-navigation {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 34px);
}

.main-navigation a {
  position: relative;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.main-navigation a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -9px;
  height: 1px;
  background: var(--gold);
  transition: right 180ms ease;
}

.main-navigation a:hover {
  color: var(--gold-light);
}

.main-navigation a:hover::after {
  right: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.language-switch {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.75rem;
}

.language-switch button {
  padding: 4px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.75rem;
  font-weight: 800;
  cursor: pointer;
}

.language-switch button.active,
.language-switch button:hover {
  color: var(--gold-light);
}

.member-login {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 19px;
  border: 1px solid var(--border-gold);
  border-radius: 999px;
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    background 180ms ease,
    border-color 180ms ease;
}

.member-login:hover {
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.10);
}

.mobile-menu-button {
  display: none;
}


/* =========================================================
   HERO
========================================================= */

.official-hero {
  position: relative;
  min-height: 100svh;
  padding: calc(var(--header-height) + 50px) 0 70px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 70% 45%, rgba(29, 105, 73, 0.18), transparent 33%),
    linear-gradient(135deg, #071d16 0%, #03100c 54%, #061711 100%);
}

.hero-background {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-lines {
  position: absolute;
  inset: 0;
  opacity: 0.11;
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to right, black, transparent 78%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
}

.hero-orb-one {
  width: 620px;
  height: 620px;
  top: 10%;
  right: -180px;
  background: radial-gradient(circle, rgba(212,175,55,.13), transparent 68%);
}

.hero-orb-two {
  width: 500px;
  height: 500px;
  left: -250px;
  bottom: -200px;
  background: radial-gradient(circle, rgba(32,128,87,.17), transparent 70%);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(500px, 1.08fr);
  align-items: center;
  gap: clamp(30px, 5vw, 90px);
}

.hero-copy {
  max-width: 720px;
}

.hero-brand-mark {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 42px;
  color: rgba(255,255,255,.68);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.25em;
}

.hero-brand-mark img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.official-eyebrow {
  margin: 0 0 18px;
  color: #9b7b21;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.official-hero .official-eyebrow,
.gold-text {
  color: var(--gold-light);
}

.official-hero h1 {
  margin: 0;
  max-width: 850px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 5.6vw, 6.7rem);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: -0.055em;
}

.official-hero h1 span {
  color: var(--gold-light);
}

.hero-description {
  max-width: 660px;
  margin: 32px 0 0;
  color: rgba(239, 248, 243, 0.67);
  font-size: clamp(1rem, 1.3vw, 1.22rem);
  line-height: 1.75;
}

.hero-buttons {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.official-button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 27px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

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

.gold-button {
  border: 1px solid var(--gold);
  color: #102018;
  background:
    linear-gradient(135deg, #f4dc88, #d4af37 55%, #b78d1e);
  box-shadow: 0 12px 34px rgba(212,175,55,.17);
}

.gold-button:hover {
  box-shadow: 0 16px 42px rgba(212,175,55,.28);
}

.outline-button {
  border: 1px solid rgba(255,255,255,.19);
  color: var(--white);
  background: rgba(255,255,255,.035);
}

.outline-button:hover {
  border-color: rgba(212,175,55,.65);
  background: rgba(212,175,55,.07);
}

.dark-button {
  border: 1px solid var(--green-900);
  color: var(--white);
  background: var(--green-900);
}

.hero-signature {
  margin-top: 48px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.hero-signature span {
  width: 60px;
  height: 1px;
  background: var(--gold);
}

.hero-signature p {
  margin: 0;
  color: rgba(255,255,255,.46);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.21em;
}


/* =========================================================
   HERO PRODUCTS
========================================================= */

.hero-products {
  position: relative;
  height: min(72vh, 720px);
  min-height: 560px;
  isolation: isolate;
}

.product-glow {
  position: absolute;
  z-index: -2;
  width: 76%;
  aspect-ratio: 1;
  left: 12%;
  top: 12%;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(212,175,55,.19), rgba(23,83,60,.12) 45%, transparent 70%);
  filter: blur(8px);
}

.hero-bottle {
  position: absolute;
  bottom: 7%;
  left: 50%;
  width: auto;
  object-fit: contain;
  transform-origin: bottom center;
  filter: drop-shadow(0 35px 30px rgba(0,0,0,.34));
  transition: transform 350ms ease;
}

.bottle-center {
  z-index: 5;
  height: 88%;
  transform: translateX(-50%);
}

.bottle-left {
  z-index: 4;
  height: 75%;
  transform: translateX(-108%) translateY(4%) rotate(-2deg);
}

.bottle-right {
  z-index: 4;
  height: 75%;
  transform: translateX(8%) translateY(4%) rotate(2deg);
}

.bottle-back-left {
  z-index: 2;
  height: 63%;
  opacity: .82;
  transform: translateX(-157%) translateY(7%) rotate(-4deg);
}

.bottle-back-right {
  z-index: 2;
  height: 63%;
  opacity: .82;
  transform: translateX(57%) translateY(7%) rotate(4deg);
}

.product-stage {
  position: absolute;
  z-index: -1;
  left: 7%;
  right: 7%;
  bottom: 3%;
  height: 11%;
  border-radius: 50%;
  background:
    radial-gradient(ellipse, rgba(212,175,55,.20), rgba(0,0,0,.22) 50%, transparent 72%);
  filter: blur(4px);
}

.hero-scroll {
  position: absolute;
  z-index: 3;
  bottom: 22px;
  left: 50%;
  width: 28px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  transform: translateX(-50%);
}

.hero-scroll span {
  position: absolute;
  top: 9px;
  left: 50%;
  width: 4px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold);
  transform: translateX(-50%);
  animation: scrollCue 1.8s ease-in-out infinite;
}

@keyframes scrollCue {
  0% { opacity: 0; transform: translate(-50%, 0); }
  30% { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, 17px); }
}


/* =========================================================
   BRAND STRIP
========================================================= */

.brand-strip {
  position: relative;
  z-index: 5;
  border-top: 1px solid rgba(212,175,55,.18);
  border-bottom: 1px solid rgba(212,175,55,.18);
  background: #081c15;
  color: white;
}

.brand-strip-grid {
  min-height: 125px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
}

.brand-strip-grid > div {
  text-align: center;
}

.brand-strip-grid strong {
  display: block;
  color: var(--gold-light);
  font-family: Georgia, serif;
  font-size: 2rem;
  font-weight: 500;
}

.brand-strip-grid span {
  display: block;
  margin-top: 6px;
  color: rgba(255,255,255,.48);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.brand-strip-grid i {
  width: 1px;
  height: 44px;
  background: rgba(255,255,255,.12);
}


/* =========================================================
   SECTION HEADINGS
========================================================= */

.section-heading {
  max-width: 880px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.about-copy h2,
.official-opportunity h2,
.official-contact h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.7rem, 5vw, 5.4rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -.045em;
}

.section-heading h2 span,
.about-copy h2 span,
.official-opportunity h2 span {
  color: #9b7b21;
}

.section-heading > p:last-child {
  max-width: 720px;
  margin-top: 24px;
  color: var(--text-soft);
  font-size: 1.08rem;
  line-height: 1.75;
}


/* =========================================================
   PRODUCTS
========================================================= */

.official-products {
  padding: 120px 0 130px;
  background:
    radial-gradient(circle at 80% 0%, rgba(212,175,55,.07), transparent 25%),
    var(--cream);
}

.featured-products {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.official-product-card {
  overflow: hidden;
  border: 1px solid rgba(16,52,38,.10);
  border-radius: 28px;
  background: rgba(255,255,255,.60);
  box-shadow: 0 18px 50px rgba(24,42,33,.055);
  transition:
    transform 250ms ease,
    box-shadow 250ms ease;
}

.official-product-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 28px 65px rgba(24,42,33,.11);
}

.product-image {
  height: 390px;
  padding: 25px 20px 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 65%, rgba(212,175,55,.15), transparent 43%),
    linear-gradient(180deg, #f9f6ef, #ebe4d5);
}

.product-image img {
  max-width: 100%;
  max-height: 350px;
  object-fit: contain;
  filter: drop-shadow(0 24px 20px rgba(0,0,0,.18));
  transition: transform 300ms ease;
}

.official-product-card:hover .product-image img {
  transform: translateY(-5px) scale(1.025);
}

.product-card-copy {
  padding: 26px 27px 30px;
}

.product-card-copy > span {
  color: #9b7b21;
  font-size: .67rem;
  font-weight: 900;
  letter-spacing: .24em;
}

.product-card-copy h3 {
  margin: 8px 0 10px;
  font-family: Georgia, serif;
  font-size: 1.65rem;
  font-weight: 500;
}

.product-card-copy p {
  min-height: 50px;
  margin: 0;
  color: var(--text-soft);
  font-size: .9rem;
  line-height: 1.6;
}

.product-card-copy a,
.text-link {
  display: inline-block;
  margin-top: 21px;
  color: #8b6d1c;
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.center-action {
  margin-top: 55px;
  text-align: center;
}


/* =========================================================
   ABOUT
========================================================= */

.official-about {
  padding: 130px 0;
  color: white;
  background:
    radial-gradient(circle at 20% 50%, rgba(212,175,55,.10), transparent 28%),
    linear-gradient(135deg, #071d16, #03100c);
}

.about-layout {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(60px, 8vw, 130px);
  align-items: center;
}

.about-visual {
  position: relative;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.about-visual img {
  width: min(85%, 430px);
  margin: 34px 0;
  filter: drop-shadow(0 20px 35px rgba(0,0,0,.28));
}

.history-year {
  color: var(--gold-light);
  font-family: Georgia, serif;
  font-size: 2.8rem;
}

.history-year.current {
  color: rgba(255,255,255,.75);
}

.history-line {
  position: absolute;
  z-index: -1;
  top: 7%;
  bottom: 7%;
  width: 1px;
  background:
    linear-gradient(
      transparent,
      rgba(212,175,55,.6),
      rgba(212,175,55,.18),
      transparent
    );
}

.about-copy {
  max-width: 720px;
}

.about-copy h2 span {
  color: var(--gold-light);
}

.about-lead {
  margin: 32px 0 16px;
  color: white !important;
  font-size: 1.25rem !important;
}

.about-copy > p:not(.official-eyebrow) {
  max-width: 650px;
  color: rgba(255,255,255,.59);
  font-size: 1.03rem;
  line-height: 1.8;
}

.about-copy .text-link {
  color: var(--gold-light);
}


/* =========================================================
   QUALITY
========================================================= */

.official-quality {
  padding: 125px 0 135px;
  background: #f4efe4;
}

.quality-grid {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(16,52,38,.14);
  border-bottom: 1px solid rgba(16,52,38,.14);
}

.quality-grid article {
  position: relative;
  padding: 55px 45px;
}

.quality-grid article + article {
  border-left: 1px solid rgba(16,52,38,.14);
}

.quality-number {
  display: block;
  color: #a88627;
  font-family: Georgia, serif;
  font-size: 1rem;
}

.quality-grid h3 {
  margin: 40px 0 14px;
  font-family: Georgia, serif;
  font-size: 2rem;
  font-weight: 500;
}

.quality-grid p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.75;
}


/* =========================================================
   OPPORTUNITY
========================================================= */

.official-opportunity {
  position: relative;
  overflow: hidden;
  padding: 125px 0;
  color: white;
  background:
    linear-gradient(125deg, #0b2b20, #04130e 70%);
}

.opportunity-glow {
  position: absolute;
  width: 700px;
  height: 700px;
  top: -350px;
  right: -100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,.17), transparent 68%);
}

.opportunity-layout {
  position: relative;
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 80px;
  align-items: center;
}

.official-opportunity h2 {
  max-width: 900px;
}

.official-opportunity h2 span {
  color: var(--gold-light);
}

.official-opportunity p:not(.official-eyebrow) {
  max-width: 770px;
  color: rgba(255,255,255,.62);
  font-size: 1.04rem;
  line-height: 1.75;
}

.opportunity-disclaimer {
  margin-top: 28px !important;
  color: rgba(255,255,255,.35) !important;
  font-size: .75rem !important;
}

.opportunity-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 15px;
}

.opportunity-actions .official-button {
  width: 100%;
}


/* =========================================================
   CONTACT
========================================================= */

.official-contact {
  padding: 105px 0;
  background: var(--cream);
}

.contact-layout {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 80px;
  align-items: center;
}

.contact-logo {
  width: min(100%, 410px);
}

.contact-layout > div:first-child p {
  margin: 24px 0 0;
  color: #8b6d1c;
  font-size: .73rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.official-contact h2 {
  font-size: clamp(2.6rem, 4vw, 4.5rem);
}


/* =========================================================
   FOOTER
========================================================= */

.official-footer {
  padding: 48px 0;
  border-top: 1px solid rgba(212,175,55,.18);
  color: rgba(255,255,255,.55);
  background: #03100c;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
}

.footer-grid > div {
  display: flex;
  align-items: center;
  gap: 14px;
  color: white;
  font-size: .75rem;
  letter-spacing: .14em;
}

.footer-grid > div img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.footer-grid nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 22px;
}

.footer-grid nav a {
  font-size: .72rem;
}

.footer-grid nav a:hover {
  color: var(--gold-light);
}

.footer-grid > p {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 25px;
  border-top: 1px solid rgba(255,255,255,.07);
  font-size: .7rem;
}


/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 1180px) {

  .main-navigation {
    gap: 17px;
  }

  .main-navigation a {
    font-size: .68rem;
  }

  .hero-layout {
    grid-template-columns: .95fr 1.05fr;
  }

  .hero-products {
    min-height: 500px;
  }

  .featured-products {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* =========================================================
   RESPONSIVE — MOBILE NAV
========================================================= */

@media (max-width: 960px) {

  :root {
    --header-height: 74px;
  }

  .nav-shell {
    width: min(calc(100% - 32px), 1480px);
  }

  .official-brand img {
    height: 43px;
    max-width: 190px;
  }

  .mobile-menu-button {
    width: 42px;
    height: 42px;
    margin-left: auto;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 5px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 50%;
    background: rgba(255,255,255,.04);
    cursor: pointer;
  }

  .mobile-menu-button span {
    width: 100%;
    height: 1px;
    background: white;
  }

  .main-navigation {
    position: fixed;
    inset: var(--header-height) 0 auto;
    margin: 0;
    padding: 30px 24px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    border-top: 1px solid rgba(255,255,255,.08);
    border-bottom: 1px solid rgba(255,255,255,.08);
    background: rgba(3,16,12,.98);
  }

  .main-navigation.open {
    display: flex;
  }

  .main-navigation a {
    width: 100%;
    font-size: .8rem;
  }

  .header-actions {
    gap: 12px;
  }

  .member-login {
    display: none;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .official-hero {
    padding-top: calc(var(--header-height) + 70px);
    text-align: center;
  }

  .hero-copy {
    margin-inline: auto;
  }

  .hero-brand-mark,
  .hero-buttons,
  .hero-signature {
    justify-content: center;
  }

  .hero-description {
    margin-inline: auto;
  }

  .hero-products {
    width: min(100%, 700px);
    height: 580px;
    margin-inline: auto;
  }

  .about-layout,
  .opportunity-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .about-copy {
    margin-inline: auto;
    text-align: center;
  }

  .opportunity-layout {
    gap: 50px;
  }

  .opportunity-layout > div:first-child {
    text-align: center;
  }

  .official-opportunity p:not(.official-eyebrow) {
    margin-left: auto;
    margin-right: auto;
  }

  .opportunity-actions {
    width: min(100%, 500px);
    margin-inline: auto;
  }

  .contact-layout {
    text-align: center;
  }

  .quality-grid article {
    padding: 45px 30px;
  }
}


/* =========================================================
   RESPONSIVE — PHONE
========================================================= */

@media (max-width: 680px) {

  .official-shell {
    width: min(calc(100% - 32px), var(--shell));
  }

  .site-header {
    background: rgba(3,16,12,.94);
  }

  .official-brand img {
    height: 38px;
    max-width: 165px;
  }

  .language-switch {
    font-size: .65rem;
  }

  .official-hero {
    min-height: auto;
    padding-bottom: 55px;
  }

  .hero-brand-mark {
    margin-bottom: 28px;
  }

  .hero-brand-mark span {
    font-size: .62rem;
  }

  .official-hero h1 {
    font-size: clamp(2.7rem, 13vw, 4.5rem);
  }

  .hero-description {
    font-size: .98rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .official-button {
    width: 100%;
  }

  .hero-signature {
    margin-top: 35px;
  }

  .hero-signature span {
    width: 30px;
  }

  .hero-signature p {
    font-size: .57rem;
  }

  .hero-products {
    height: 430px;
    min-height: 430px;
    margin-top: 10px;
  }

  .bottle-center {
    height: 85%;
  }

  .bottle-left,
  .bottle-right {
    height: 70%;
  }

  .bottle-back-left,
  .bottle-back-right {
    height: 56%;
  }

  .brand-strip-grid {
    padding: 30px 0;
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .brand-strip-grid i {
    width: 60px;
    height: 1px;
    margin-inline: auto;
  }

  .official-products,
  .official-quality {
    padding: 85px 0;
  }

  .official-about,
  .official-opportunity {
    padding: 90px 0;
  }

  .section-heading {
    text-align: center;
  }

  .section-heading h2,
  .about-copy h2,
  .official-opportunity h2 {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .section-heading > p:last-child {
    margin-inline: auto;
  }

  .featured-products {
    margin-top: 45px;
    grid-template-columns: 1fr;
  }

  .product-image {
    height: 390px;
  }

  .official-product-card {
    width: min(100%, 440px);
    margin-inline: auto;
  }

  .about-visual {
    min-height: 390px;
  }

  .about-visual img {
    width: min(82%, 350px);
  }

  .quality-grid {
    margin-top: 45px;
    grid-template-columns: 1fr;
  }

  .quality-grid article {
    text-align: center;
  }

  .quality-grid article + article {
    border-left: 0;
    border-top: 1px solid rgba(16,52,38,.14);
  }

  .quality-grid h3 {
    margin-top: 20px;
  }

  .official-contact {
    padding: 80px 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-grid > div,
  .footer-grid nav {
    justify-content: center;
  }

  .footer-grid > p {
    grid-column: auto;
  }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}


/* =========================================================
   HTG OFFICIAL REGISTRATION
========================================================= */

#join {
  position: relative;
  overflow: hidden;
  padding: 110px 24px;
  background:
    radial-gradient(circle at 12% 20%, rgba(198,160,55,.10), transparent 32%),
    linear-gradient(180deg, #f8f7f2 0%, #ffffff 100%);
}

#join .join-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 72px;
  align-items: start;
}

#join .join-copy {
  position: sticky;
  top: 130px;
}

#join .eyebrow {
  margin: 0 0 18px;
  color: #9b7922;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2.4px;
}

#join .join-copy h2 {
  margin: 0;
  color: #073c2d;
  font-size: clamp(38px, 4.5vw, 62px);
  line-height: 1.02;
  letter-spacing: -2px;
}

#join .join-copy h2 span {
  color: #b28a27;
}

#join .join-copy .lead {
  max-width: 520px;
  margin: 26px 0;
  color: #56625d;
  font-size: 18px;
  line-height: 1.75;
}

#join .zero {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 34px 0;
  color: #073c2d;
}

#join .zero > span {
  align-self: flex-start;
  margin-top: 13px;
  color: #b28a27;
  font-size: 24px;
  font-weight: 800;
}

#join .zero strong {
  font-size: 76px;
  line-height: .9;
  letter-spacing: -5px;
}

#join .zero div {
  display: flex;
  flex-direction: column;
}

#join .zero b {
  color: #073c2d;
  font-size: 13px;
  letter-spacing: 1px;
}

#join .zero small {
  margin-top: 4px;
  color: #7a827f;
}

#join .checklist {
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
}

#join .checklist li {
  position: relative;
  margin: 15px 0;
  padding-left: 30px;
  color: #394640;
  line-height: 1.5;
}

#join .checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #b28a27;
  font-weight: 900;
}


/* FORM CARD */

#join .join-form {
  padding: 42px;
  border: 1px solid rgba(7,60,45,.10);
  border-radius: 26px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 24px 70px rgba(4,38,28,.10);
}

#join .form-badge {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(178,138,39,.11);
  color: #94701d;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.5px;
}

#join .join-form h3 {
  margin: 0 0 8px;
  color: #073c2d;
  font-size: 32px;
  letter-spacing: -1px;
}

#join .join-form > p {
  color: #66716c;
}

#join .field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

#join .join-form label:not(.consent) {
  display: block;
  margin-top: 18px;
}

#join .join-form label:not(.consent) > span {
  display: block;
  margin-bottom: 8px;
  color: #263c33;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .25px;
}

#join .join-form input:not([type="checkbox"]),
#join .join-form select {
  width: 100%;
  min-height: 52px;
  box-sizing: border-box;
  padding: 0 15px;
  border: 1px solid #d9dfdc;
  border-radius: 11px;
  outline: none;
  background: #fbfcfb;
  color: #173329;
  font: inherit;
  transition:
    border-color .2s ease,
    box-shadow .2s ease,
    background .2s ease;
}

#join .join-form input:not([type="checkbox"]):focus,
#join .join-form select:focus {
  border-color: #b28a27;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(178,138,39,.10);
}

#join .shipping-notice {
  margin: 22px 0;
  padding: 17px 18px;
  border-left: 3px solid #b28a27;
  border-radius: 8px;
  background: #f7f4e9;
  color: #435049;
  font-size: 12px;
  line-height: 1.6;
}

#join .shipping-notice strong {
  display: block;
  margin-bottom: 5px;
  color: #795c18;
  font-size: 11px;
  letter-spacing: .8px;
}

#join .shipping-notice p {
  margin: 0;
}

#join .consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 11px;
  align-items: start;
  margin: 16px 0;
  color: #66716c;
  font-size: 11px;
  line-height: 1.55;
}

#join .consent input {
  width: 17px;
  height: 17px;
  margin: 1px 0 0;
  accent-color: #0a5a43;
}

#join .consent a {
  color: #087052;
  font-weight: 800;
  text-decoration: none;
}

#join .btn.btn-gold.full {
  width: 100%;
  min-height: 56px;
  margin-top: 14px;
  border: 0;
  border-radius: 11px;
  cursor: pointer;
  background: linear-gradient(135deg, #d1ad4b, #a87d1c);
  color: #071f17;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
  box-shadow: 0 12px 28px rgba(168,125,28,.20);
}

#join .btn.btn-gold.full:hover {
  transform: translateY(-1px);
}

#join .form-fine {
  margin: 14px 0 0;
  text-align: center;
  font-size: 10px;
  line-height: 1.5;
}


/* REFERRAL + SUCCESS */

#join .referral-badge {
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: #087052;
  font-size: 12px;
  font-weight: 800;
}

#join .referral-badge:not([hidden]) {
  display: flex;
}

#join .referral-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #0c8a65;
}

#join .registration-success {
  margin-top: 25px;
  padding: 24px;
  border: 1px solid rgba(178,138,39,.28);
  border-radius: 18px;
  background: linear-gradient(145deg, #073c2d, #0b5a43);
  color: #fff;
}

#join .registration-success[hidden] {
  display: none;
}

#join .success-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: #d2ad49;
  color: #073c2d;
  font-size: 22px;
  font-weight: 900;
}

#join .success-eyebrow {
  margin: 17px 0 6px;
  color: #e2c56f !important;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.4px;
}

#join .registration-success h4 {
  margin: 0 0 10px;
  font-size: 24px;
}

#join .success-code-row {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  align-items: center;
  margin-top: 18px;
  padding: 14px;
  border-radius: 11px;
  background: rgba(255,255,255,.08);
}

#join .success-code-row small,
#join .success-code-row strong {
  display: block;
}

#join .success-code-row strong {
  margin-top: 4px;
  color: #e2c56f;
}

#join .success-copy {
  padding: 10px 13px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 8px;
  cursor: pointer;
  background: transparent;
  color: #fff;
  font-size: 10px;
  font-weight: 900;
}


/* MOBILE */

@media (max-width: 900px) {
  #join {
    padding: 75px 20px;
  }

  #join .join-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  #join .join-copy {
    position: static;
  }

  #join .join-form {
    padding: 28px 22px;
  }
}

@media (max-width: 560px) {
  #join .field-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  #join .join-copy h2 {
    font-size: 40px;
  }

  #join .zero strong {
    font-size: 64px;
  }

  #join .success-code-row {
    align-items: stretch;
    flex-direction: column;
  }
}


/* =========================================================
   HTG TOAST
========================================================= */

.htg-toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  z-index: 9999;
  width: min(560px, calc(100% - 32px));
  padding: 16px 22px;
  border: 1px solid rgba(198, 160, 55, .35);
  border-radius: 14px;
  background: rgba(9, 48, 38, .97);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .22);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 18px);
  transition:
    opacity .25s ease,
    transform .25s ease,
    visibility .25s ease;
}

.htg-toast.show {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

@media (max-width: 640px) {
  .htg-toast {
    bottom: 18px;
    padding: 14px 18px;
    font-size: 13px;
  }
}
