:root {
  --gold: #d4c000;
  --gold-light: #f0dc00;
  --gold-dark: #a89800;
  --black: #0a1a0a;
  --black-soft: #0f2010;
  --black-mid: #152615;
  --white: #f0f8ec;
  --white-dim: rgba(240, 248, 236, 0.72);
  --serif: "Cormorant Garamond", serif;
  --sans: "Josefin Sans", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--sans);
  font-weight: 300;
  letter-spacing: 0.04em;
  overflow-x: hidden;
}

/* NOISE OVERLAY */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

/* SCROLLBAR */
::-webkit-scrollbar {
  width: 3px;
}

::-webkit-scrollbar-track {
  background: var(--black);
}

::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2.5rem;
  transition:
    background 0.4s,
    backdrop-filter 0.4s;
}

nav.scrolled {
  background: rgba(8, 8, 8, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 192, 0, 0.1);
}

.nav-logo {
  font-family: var(--serif);
  font-size: 1.3rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-decoration: none;
  font-weight: 300;
}

.nav-logo span {
  color: var(--white);
  font-style: italic;
  font-weight: 300;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--white-dim);
  text-decoration: none;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-cta {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 0.6rem 1.4rem;
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--black);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
  transition: all 0.3s;
}

/* MOBILE NAV */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(8, 8, 8, 0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  color: var(--white);
  text-decoration: none;
  font-family: var(--serif);
  font-size: 2rem;
  letter-spacing: 0.1em;
  transition: color 0.3s;
}

.mobile-menu a:hover {
  color: var(--gold);
}

.mobile-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 2rem;
  cursor: pointer;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 4rem 4rem 5rem;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 1s 0.3s forwards;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 1s 0.5s forwards;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
  display: block;
}

.hero-subtitle {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  color: var(--white-dim);
  line-height: 1.8;
  max-width: 380px;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeUp 1s 0.7s forwards;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s 0.9s forwards;
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: linear-gradient(
    135deg,
    var(--gold) 0%,
    var(--gold-light) 50%,
    var(--gold) 100%
  );
  background-size: 200% 100%;
  color: var(--black);
  padding: 1rem 2rem;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition:
    background-position 0.4s,
    transform 0.2s;
}

.btn-gold:hover {
  background-position: 100% 0;
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: transparent;
  color: var(--white);
  padding: 1rem 2rem;
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

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

.hero-bottle {
  position: relative;
  z-index: 2;
}

.bottle-img {
  width: 260px;
  filter: drop-shadow(0 0 60px rgba(212, 192, 0, 0.3));
  opacity: 0;
  animation:
    float 6s ease-in-out infinite,
    fadeIn 1.2s 0.6s forwards;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-18px);
  }
}

.hero-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(80, 180, 60, 0.18) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.7;
  }

  50% {
    transform: scale(1.1);
    opacity: 1;
  }
}

.hero-divider {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(212, 192, 0, 0.3),
    transparent
  );
}

.hero-bg-text {
  position: absolute;
  bottom: 5%;
  right: -2%;
  font-family: var(--serif);
  font-size: clamp(5rem, 12vw, 13rem);
  color: rgba(80, 200, 60, 0.05);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  font-weight: 300;
  line-height: 1;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* SCROLL INDICATOR */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeIn 1s 1.5s forwards;
  z-index: 2;
}

.scroll-indicator span {
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }

  50% {
    transform: scaleY(1);
    transform-origin: top;
  }

  51% {
    transform: scaleY(1);
    transform-origin: bottom;
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

/* SECTIONS */
section {
  padding: 6rem 2rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-eyebrow {
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.section-eyebrow::before {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

/* REVEAL ANIMATION */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* MOTTO SECTION */
.motto {
  background: var(--black-soft);
  text-align: center;
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
}

.motto::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 200px;
  background: radial-gradient(
    ellipse,
    rgba(80, 180, 60, 0.1) 0%,
    transparent 70%
  );
}

.motto-text {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 300;
  font-style: italic;
  color: var(--gold);
  position: relative;
  z-index: 1;
}

.motto-sub {
  margin-top: 1rem;
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--white-dim);
}

/* GOLD DIVIDER */
.gold-divider {
  width: 80px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin: 1.5rem auto;
}

/* PRODUCT SECTION */
.product-section {
  background: var(--black);
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.product-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

.product-bg-ring {
  position: absolute;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(212, 192, 0, 0.15);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.product-bg-ring-2 {
  position: absolute;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(212, 192, 0, 0.08);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.product-bottle-img {
  position: relative;
  z-index: 2;
  width: 200px;
  height: auto;
  display: block;
  filter: drop-shadow(0 0 40px rgba(212, 192, 0, 0.25));
}

.product-tag {
  position: absolute;
  top: 10%;
  right: 0;
  background: rgba(212, 192, 0, 0.1);
  border: 1px solid rgba(212, 192, 0, 0.3);
  padding: 0.6rem 1rem;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.product-price {
  font-family: var(--serif);
  font-size: 2.5rem;
  color: var(--gold);
  font-weight: 300;
  margin-bottom: 0.3rem;
}

.product-price-sub {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--white-dim);
  margin-bottom: 2rem;
}

.benefits-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 2.5rem;
}

.benefits-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--white-dim);
}

.benefits-list li::before {
  content: "◆";
  color: var(--gold);
  font-size: 0.5rem;
  flex-shrink: 0;
}

/* VARIANT SECTION */
.variant-wrapper {
  margin-bottom: 2rem;
}

.variant-title {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-dim);
  margin-bottom: 1rem;
}

.variant-options {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.variant-card {
  flex: 1;
  min-width: 140px;
  cursor: pointer;
}

.variant-card input {
  display: none;
}

.variant-content {
  border: 1px solid rgba(212, 192, 0, 0.2);
  padding: 1rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.02);
}

.variant-size {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--white);
}

.variant-price {
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.1em;
}

.variant-card input:checked + .variant-content {
  border: 1px solid var(--gold);
  background: rgba(212, 192, 0, 0.08);
  box-shadow: 0 0 20px rgba(212, 192, 0, 0.15);
}

.variant-content:hover {
  border-color: var(--gold);
}

@media (max-width: 768px) {
  .variant-options {
    flex-direction: column;
  }

  .variant-card {
    width: 100%;
  }
}

/* WHY CHOOSE */
.why-section {
  background: var(--black-soft);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.why-card {
  padding: 2.5rem 1.5rem;
  border: 1px solid rgba(212, 192, 0, 0.1);
  background: rgba(212, 192, 0, 0.02);
  text-align: center;
  transition:
    border-color 0.3s,
    background 0.3s;
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.4s;
}

.why-card:hover::before {
  transform: scaleX(1);
}

.why-card:hover {
  border-color: rgba(212, 192, 0, 0.3);
  background: rgba(212, 192, 0, 0.05);
}

.why-icon {
  font-size: 2.2rem;
  margin-bottom: 1.2rem;
  display: block;
}

.why-card h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 0.8rem;
  color: var(--gold);
}

.why-card p {
  font-size: 0.72rem;
  line-height: 1.8;
  color: var(--white-dim);
}

/* INGREDIENTS */
.ingredients-section {
  background: var(--black);
}

.ingredients-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  margin-top: 3rem;
}

.ingredients-visual {
  position: relative;
}

.coconut-circle {
  width: 100%;
  aspect-ratio: 1;
  max-width: 400px;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(80, 180, 60, 0.2),
    rgba(10, 26, 10, 0.9)
  );
  border: 1px solid rgba(212, 192, 0, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 0 30px rgba(80, 180, 60, 0.2));
}

.coconut-img {
  width: 60%;
  max-width: 250px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.4));
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  transform: scaleX(-1);
}

.coconut-circle:hover .coconut-img {
  transform: scaleX(-1) scale(1.05);
}

.ingredient-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.ingredient-item {
  border-left: 1px solid rgba(212, 192, 0, 0.2);
  padding-left: 1.5rem;
  transition: border-color 0.3s;
}

.ingredient-item:hover {
  border-color: var(--gold);
}

.ingredient-item h4 {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--gold-light);
  font-weight: 400;
  margin-bottom: 0.4rem;
}

.ingredient-item p {
  font-size: 0.75rem;
  color: var(--white-dim);
  line-height: 1.8;
}

/* PROCESS SECTION */
.process-section {
  background: var(--black-mid);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 4rem;
  position: relative;
}

.process-steps::before {
  content: "";
  position: absolute;
  top: 2rem;
  left: 2rem;
  right: 2rem;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(212, 192, 0, 0.3),
    transparent
  );
}

.step {
  text-align: center;
  position: relative;
}

.step-num {
  width: 4rem;
  height: 4rem;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--gold);
  background: var(--black-mid);
  position: relative;
  z-index: 1;
}

.step h4 {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 0.6rem;
  font-weight: 400;
}

.step p {
  font-size: 0.7rem;
  color: var(--white-dim);
  line-height: 1.8;
}

/* TESTIMONIALS */
.testimonials-section {
  background: var(--black-soft);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.testimonial-card {
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(212, 192, 0, 0.1);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-family: var(--serif);
  font-size: 5rem;
  color: rgba(212, 192, 0, 0.1);
  position: absolute;
  top: 0.5rem;
  left: 1.5rem;
  line-height: 1;
}

.stars {
  color: var(--gold);
  font-size: 0.8rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
  color: var(--white-dim);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* FAQ */
.faq-section {
  background: var(--black);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin-top: 4rem;
  border: 1px solid rgba(212, 192, 0, 0.1);
}

.faq-item {
  padding: 2rem 2.5rem;
  border-bottom: 1px solid rgba(212, 192, 0, 0.08);
  border-right: 1px solid rgba(212, 192, 0, 0.08);
  cursor: pointer;
  transition: background 0.3s;
}

.faq-item:hover {
  background: rgba(212, 192, 0, 0.03);
}

.faq-q {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-q span {
  color: var(--gold);
  font-size: 1.2rem;
}

.faq-a {
  font-size: 0.75rem;
  line-height: 1.9;
  color: var(--white-dim);
}

/* CONTACT */
.contact-section {
  background: var(--black-mid);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.contact-icon {
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(212, 192, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  color: var(--gold);
}

.contact-item-label {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.contact-item-value {
  font-size: 0.85rem;
  color: var(--white-dim);
  line-height: 1.6;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-field label {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.form-field input,
.form-field select,
.form-field textarea {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 192, 0, 0.2);
  color: var(--white);
  padding: 0.9rem 1rem;
  font-family: var(--sans);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  outline: none;
  transition: border-color 0.3s;
  resize: none;
  width: 100%;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--gold);
}

.form-field select option {
  background: var(--black-soft);
}

.form-field textarea {
  min-height: 120px;
}

/* ABOUT */
.about-section {
  background: var(--black);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-image-frame {
  width: 100%;
  aspect-ratio: 4/4;
  background: linear-gradient(
    135deg,
    rgba(80, 180, 60, 0.12) 0%,
    rgba(10, 26, 10, 0.95) 100%
  );
  border: 1px solid rgba(212, 192, 0, 0.2);
  position: relative;
  overflow: hidden;
}

/* Make image fill the frame */
.product-bottle-img-2 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Fills entire frame (may crop slightly) */
  display: block;
}

.about-image-frame::after {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(212, 192, 0, 0.1);
  pointer-events: none;
}

.about-corner {
  position: absolute;
  width: 20px;
  height: 20px;
  border-color: var(--gold);
  border-style: solid;
}

.about-corner.tl {
  top: -1px;
  left: -1px;
  border-width: 2px 0 0 2px;
}

.about-corner.tr {
  top: -1px;
  right: -1px;
  border-width: 2px 2px 0 0;
}

.about-corner.bl {
  bottom: -1px;
  left: -1px;
  border-width: 0 0 2px 2px;
}

.about-corner.br {
  bottom: -1px;
  right: -1px;
  border-width: 0 2px 2px 0;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 3rem;
  border: 1px solid rgba(212, 192, 0, 0.15);
}

.stat-item {
  padding: 1.5rem;
  text-align: center;
  border-right: 1px solid rgba(212, 192, 0, 0.1);
}

.stat-item:last-child {
  border-right: none;
}

.stat-num {
  font-family: var(--serif);
  font-size: 2.5rem;
  color: var(--gold);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-label {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-dim);
}

/* USAGE */
.usage-section {
  background: var(--black-soft);
}

.usage-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.usage-step {
  text-align: center;
  padding: 3rem 2rem;
  border: 1px solid rgba(212, 192, 0, 0.08);
  position: relative;
}

.usage-step-num {
  font-family: var(--serif);
  font-size: 4rem;
  color: rgba(212, 192, 0, 0.08);
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  line-height: 1;
}

.usage-icon {
  font-size: 2.5rem;
  margin-bottom: 1.2rem;
  display: block;
}

.usage-step h4 {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 0.8rem;
  font-weight: 400;
}

.usage-step p {
  font-size: 0.75rem;
  color: var(--white-dim);
  line-height: 1.9;
}

/* CTA BANNER */
.cta-banner {
  background: linear-gradient(
    135deg,
    rgba(40, 120, 30, 0.25) 0%,
    rgba(80, 140, 20, 0.12) 100%
  );
  border-top: 1px solid rgba(212, 192, 0, 0.2);
  border-bottom: 1px solid rgba(212, 192, 0, 0.2);
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 300px;
  background: radial-gradient(
    ellipse,
    rgba(80, 180, 60, 0.1) 0%,
    transparent 70%
  );
}

.cta-banner h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  margin-bottom: 1rem;
  position: relative;
}

.cta-banner p {
  font-size: 0.8rem;
  color: var(--white-dim);
  margin-bottom: 3rem;
  letter-spacing: 0.1em;
  position: relative;
}

.cta-btns {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* FOOTER */
footer {
  background: #060f06;
  border-top: 1px solid rgba(212, 192, 0, 0.1);
  padding: 4rem 2rem 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto 3rem;
}

.footer-brand-name {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 300;
  margin-bottom: 0.3rem;
}

.footer-brand-motto {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-dim);
  margin-bottom: 1.5rem;
}

.footer-desc {
  font-size: 0.75rem;
  color: var(--white-dim);
  line-height: 1.9;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-col ul a {
  color: var(--white-dim);
  text-decoration: none;
  font-size: 0.75rem;
  transition: color 0.3s;
}

.footer-col ul a:hover {
  color: var(--gold);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: gap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.65rem;
  color: rgba(245, 240, 232, 0.3);
}

/* STICKY MOBILE CTA */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: none;
  grid-template-columns: 1fr 1fr 1fr;
  z-index: 998;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
}

.sticky-cta a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  padding: 0.9rem;
  text-decoration: none;
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: opacity 0.2s;
}

.sticky-cta a:active {
  opacity: 0.8;
}

.sticky-cta .sc-call {
  background: var(--black-soft);
  color: var(--white);
  border-top: 1px solid rgba(212, 192, 0, 0.2);
}

.sticky-cta .sc-wa {
  background: #166534;
  color: #fff;
}

.sticky-cta .sc-order {
  background: var(--gold);
  color: var(--black);
}

.sticky-cta span {
  font-size: 1.3rem;
  line-height: 1;
}

/* BADGE */
.badge {
  display: inline-block;
  background: rgba(212, 192, 0, 0.1);
  border: 1px solid rgba(212, 192, 0, 0.3);
  color: var(--gold);
  padding: 0.3rem 0.8rem;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* COMPARE TABLE */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 3rem;
}

.compare-table th,
.compare-table td {
  padding: 1rem 1.5rem;
  text-align: left;
  font-size: 0.75rem;
  border-bottom: 1px solid rgba(212, 192, 0, 0.08);
}

.compare-table th {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(212, 192, 0, 0.05);
}

.compare-table td {
  color: var(--white-dim);
}

.compare-table tr:hover td {
  background: rgba(212, 192, 0, 0.03);
}

.check {
  color: #4caf50;
}

.cross {
  color: #f44336;
}

/* LEGAL */
.legal-section {
  background: var(--black);
}

.legal-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid rgba(212, 192, 0, 0.15);
  margin-bottom: 3rem;
  overflow-x: auto;
}

.legal-tab {
  padding: 1rem 1.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-dim);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  font-family: var(--sans);
  transition: color 0.3s;
}

.legal-tab.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.legal-content {
  display: none;
}

.legal-content.active {
  display: block;
}

.legal-content h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--gold);
  margin: 2rem 0 0.8rem;
  font-weight: 400;
}

.legal-content h3:first-child {
  margin-top: 0;
}

.legal-content p {
  font-size: 0.78rem;
  color: var(--white-dim);
  line-height: 2;
  margin-bottom: 1rem;
}

/* SECTION IDS */
#home,
#product,
#about,
#ingredients,
#contact,
#faq,
#legal {
  scroll-margin-top: 80px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 5rem;
  }

  .hero-left {
    padding: 5rem 2rem 2rem;
  }

  .hero-right {
    padding: 2rem;
    min-height: 40vh;
  }

  .bottle-img {
    width: 180px;
  }

  .hero-bg-text {
    display: none;
  }

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

  .product-grid,
  .ingredients-layout,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

  .process-steps {
    grid-template-columns: 1fr 1fr;
  }

  .process-steps::before {
    display: none;
  }

  .usage-steps {
    grid-template-columns: 1fr;
  }

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

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

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .sticky-cta {
    display: grid;
  }

  body {
    padding-bottom: 60px;
  }
}

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

  .process-steps {
    grid-template-columns: 1fr;
  }

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

  .stat-row {
    grid-template-columns: 1fr;
  }

  section {
    padding: 4rem 1.2rem;
  }
}
