:root {
  --cream: #f7f3ed;
  --warm-white: #fcfaf7;
  --sand: #e9e0d5;
  --beige: #d8c8b8;

  --plum: #351b2f;
  --deep-plum: #21101d;
  --purple: #56314f;

  --blueberry: #31415f;
  --cranberry: #7d3442;

  --gold: #b99463;
  --text: #2b2524;
  --muted: #756d68;

  --serif: "Cormorant Garamond", serif;
  --sans: "Manrope", sans-serif;

  --container: 1400px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* =========================================
   RESET
========================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--cream);
  color: var(--text);
  font-family: var(--sans);
  overflow-x: hidden;
}

img {
  display: block;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

/* =========================================
   GLOBAL UTILITIES
========================================= */

.section-pad {
  padding: 130px 7vw;
}

.eyebrow {
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 25px;

  padding: 17px 26px;

  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;

  transition:
    transform 0.4s var(--ease),
    background 0.4s ease,
    color 0.4s ease;
}

.btn span {
  font-size: 18px;
  transition: transform 0.4s var(--ease);
}

.btn:hover {
  transform: translateY(-3px);
}

.btn:hover span {
  transform: translateX(5px);
}

.btn-dark {
  background: var(--plum);
  color: white;
}

.btn-dark:hover {
  background: var(--deep-plum);
}

.btn-outline {
  border: 1px solid var(--plum);
  color: var(--plum);
}

.btn-outline:hover {
  background: var(--plum);
  color: white;
}

.btn-light {
  background: var(--cream);
  color: var(--plum);
}

.btn-light:hover {
  background: white;
}

.btn-text-light {
  color: white;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 15px;

  margin-top: 30px;

  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;

  transition: gap 0.4s var(--ease);
}

.text-link span {
  font-size: 18px;
}

.text-link:hover {
  gap: 22px;
}

.light-link {
  color: white;
}

/* =========================================
   PAGE LOADER
========================================= */

.page-loader {
  position: fixed;
  inset: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  background: var(--cream);

  z-index: 9999;

  transition:
    opacity 0.7s ease,
    visibility 0.7s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-logo {
  display: flex;
  align-items: center;
  gap: 12px;

  color: var(--plum);

  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;

  animation: loaderPulse 1.5s infinite;
}

.loader-mark {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 35px;
  height: 35px;

  border: 1px solid var(--gold);
  border-radius: 50%;

  font-family: var(--serif);
  font-size: 22px;
}

@keyframes loaderPulse {
  0%,
  100% {
    opacity: 0.5;
  }

  50% {
    opacity: 1;
  }
}

/* =========================================
   HEADER
========================================= */

.site-header {
  position: absolute;
  top: 0;
  left: 0;

  width: 100%;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 28px 7vw;

  z-index: 100;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 34px;
  height: 34px;

  border: 1px solid currentColor;
  border-radius: 50%;

  font-family: var(--serif);
  font-size: 20px;
}

.logo-text {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.desktop-nav {
  display: flex;
  gap: 32px;
}

.desktop-nav a {
  position: relative;

  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;

  opacity: 0.65;

  transition: opacity 0.3s ease;
}

.desktop-nav a::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: -7px;

  width: 0;
  height: 1px;

  background: currentColor;

  transition: width 0.4s var(--ease);
}

.desktop-nav a:hover,
.desktop-nav a.active {
  opacity: 1;
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
  width: 100%;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;

  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.header-cta span {
  font-size: 17px;
}

.menu-toggle {
  display: none;

  border: none;
  background: transparent;

  cursor: pointer;
}

.menu-toggle span {
  display: block;

  width: 25px;
  height: 1px;

  margin: 6px 0;

  background: currentColor;
}

/* =========================================
   MOBILE NAV
========================================= */

.mobile-nav {
  position: fixed;
  inset: 0;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  gap: 30px;

  background: var(--cream);

  z-index: 90;

  opacity: 0;
  visibility: hidden;

  transition:
    opacity 0.5s ease,
    visibility 0.5s ease;
}

.mobile-nav.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav a {
  font-family: var(--serif);
  font-size: 42px;
}

/* =========================================
   HERO
========================================= */

.hero-section {
  position: relative;

  min-height: 100vh;

  display: flex;
  align-items: center;

  padding: 150px 7vw 100px;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 85% 20%,
      rgba(185, 148, 99, 0.16),
      transparent 35%
    ),
    var(--cream);
}

.hero-content {
  position: relative;

  width: 100%;
  max-width: var(--container);

  margin: auto;

  z-index: 2;
}

.hero-eyebrow {
  margin-bottom: 35px;

  color: var(--gold);

  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.hero-title {
  max-width: 1100px;

  font-family: var(--serif);
  font-size: clamp(70px, 9vw, 150px);
  font-weight: 500;
  line-height: 0.82;
  letter-spacing: -0.05em;
}

.hero-line {
  display: block;
}

.hero-line em {
  font-weight: 500;
}

.hero-line-indent {
  margin-left: 10vw;
}

.hero-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;

  max-width: 900px;

  margin-top: 55px;
}

.hero-description {
  max-width: 330px;

  color: var(--muted);

  font-size: 14px;
  line-height: 1.9;
}

.hero-button {
  min-width: 220px;
}

.hero-orb {
  position: absolute;

  border-radius: 50%;

  filter: blur(2px);
  pointer-events: none;
}

.orb-one {
  width: 430px;
  height: 430px;

  right: -120px;
  top: 17%;

  border: 1px solid rgba(185, 148, 99, 0.25);
}

.orb-two {
  width: 650px;
  height: 650px;

  right: -300px;
  top: 5%;

  border: 1px solid rgba(53, 27, 47, 0.08);
}

.scroll-indicator {
  position: absolute;

  bottom: 35px;
  left: 7vw;

  display: flex;
  align-items: center;
  gap: 15px;

  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;

  color: var(--muted);
}

.scroll-line {
  width: 70px;
  height: 1px;

  background: var(--gold);

  animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
  0% {
    transform: scaleX(0);
    transform-origin: left;
  }

  50% {
    transform: scaleX(1);
    transform-origin: left;
  }

  51% {
    transform-origin: right;
  }

  100% {
    transform: scaleX(0);
    transform-origin: right;
  }
}

/* =========================================
   BRAND INTRO
========================================= */

.brand-intro {
  background: var(--warm-white);
}

.brand-intro-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;

  max-width: var(--container);

  margin: auto;

  gap: 100px;
}

.brand-intro-content h2 {
  max-width: 800px;

  font-family: var(--serif);
  font-size: clamp(50px, 6vw, 90px);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.brand-intro-content h2 em {
  color: var(--gold);
}

.brand-intro-copy {
  max-width: 520px;

  margin-top: 50px;
}

.brand-intro-copy p {
  margin-bottom: 20px;

  color: var(--muted);

  font-size: 14px;
  line-height: 1.9;
}

/* =========================================
   FEATURED PRODUCTS
========================================= */

.featured-products {
  background: var(--cream);
}

.featured-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;

  padding-bottom: 70px;
}

.featured-heading h2 {
  margin-top: 20px;

  font-family: var(--serif);
  font-size: clamp(55px, 6vw, 95px);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.04em;
}

.featured-heading h2 em {
  color: var(--gold);
}

.featured-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
}

.featured-product {
  position: relative;

  min-height: 720px;

  padding: 55px 7vw;

  overflow: hidden;
}

.product-blue {
  background: #dfe5ec;
}

.product-red {
  background: #eadbdd;
}

.product-after-bites {
  background: linear-gradient(135deg, #eee7dc 0%, #e4d9ca 100%);
}

.product-after-bites .featured-product-image::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(183, 147, 79, 0.18) 0%,
    rgba(183, 147, 79, 0.08) 40%,
    transparent 70%
  );
  filter: blur(10px);
  z-index: -1;
}

.product-after-bites .featured-product-image img {
  filter: drop-shadow(0 35px 30px rgba(76, 57, 35, 0.18));
}

.featured-product-number {
  position: relative;
  z-index: 3;

  font-size: 10px;
  letter-spacing: 0.2em;

  opacity: 0.6;
}

.featured-product-image {
  position: absolute;

  left: 50%;
  top: 48%;

  width: 62%;

  transform: translate(-50%, -50%);

  transition: transform 0.9s var(--ease);
}

.featured-product:hover .featured-product-image {
  transform: translate(-50%, -52%) scale(1.05);
}

.featured-product-image img {
  max-height: 470px;

  object-fit: contain;

  filter: drop-shadow(0 35px 25px rgba(0, 0, 0, 0.12));
}

.featured-product-content {
  position: absolute;

  left: 7vw;
  bottom: 55px;

  z-index: 3;
}

.product-category {
  margin-bottom: 15px;

  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.featured-product h3 {
  font-family: var(--serif);
  font-size: clamp(40px, 4vw, 70px);
  font-weight: 500;
  line-height: 0.9;
}

.featured-product h3 em {
  font-size: 0.65em;
}

.featured-product-content > p:not(.product-category) {
  max-width: 310px;

  margin-top: 20px;

  font-size: 12px;
  line-height: 1.8;

  color: rgba(43, 37, 36, 0.7);
}

.product-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  margin-top: 25px;

  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-link span {
  font-size: 16px;

  transition: transform 0.3s ease;
}

.product-link:hover span {
  transform: translate(3px, -3px);
}

/* =========================================
   SCIENCE SECTION
========================================= */

.science-section {
  background: var(--plum);
  color: white;
}

.science-header {
  max-width: var(--container);

  margin: auto;
}

.science-header h2 {
  margin-top: 20px;

  font-family: var(--serif);
  font-size: clamp(55px, 6vw, 95px);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.04em;
}

.science-header h2 em {
  color: var(--gold);
}

.science-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  max-width: var(--container);

  margin: 100px auto 0;

  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.science-pillar {
  min-height: 350px;

  padding: 45px;

  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.science-pillar:first-child {
  padding-left: 0;
}

.science-pillar:last-child {
  border-right: none;
}

.pillar-number {
  color: var(--gold);

  font-size: 10px;
  letter-spacing: 0.15em;
}

.science-pillar h3 {
  margin-top: 70px;

  font-family: var(--serif);
  font-size: 38px;
  font-weight: 500;
}

.science-pillar p {
  max-width: 280px;

  margin-top: 20px;

  color: rgba(255, 255, 255, 0.65);

  font-size: 12px;
  line-height: 1.9;
}

.science-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;

  max-width: var(--container);

  margin: 80px auto 0;
}

.science-footer > p {
  font-family: var(--serif);
  font-size: 30px;
}

.science-footer .btn-outline {
  border-color: rgba(255, 255, 255, 0.5);
  color: white;
}

.science-footer .btn-outline:hover {
  background: white;
  color: var(--plum);
}

/* =========================================
   INGREDIENTS
========================================= */

.ingredients-section {
  background: var(--warm-white);
}

.ingredients-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;

  max-width: var(--container);

  margin: auto;

  gap: 100px;
}

.ingredients-copy h2 {
  margin: 25px 0 45px;

  font-family: var(--serif);
  font-size: clamp(55px, 6vw, 90px);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.04em;
}

.ingredients-copy h2 em {
  color: var(--gold);
}

.ingredients-copy > p {
  max-width: 450px;

  color: var(--muted);

  font-size: 14px;
  line-height: 1.9;
}

.ingredients-copy blockquote {
  max-width: 430px;

  margin: 30px 0;

  font-family: var(--serif);
  font-size: 34px;
  font-style: italic;
  line-height: 1.1;

  color: var(--plum);
}

.ingredient-stack {
  border-top: 1px solid var(--sand);
}

.ingredient-item {
  display: grid;
  grid-template-columns: 50px 1fr auto;

  align-items: center;

  padding: 27px 0;

  border-bottom: 1px solid var(--sand);

  transition: padding 0.4s var(--ease);
}

.ingredient-item:hover {
  padding-left: 12px;
}

.ingredient-index {
  color: var(--gold);

  font-size: 9px;
}

.ingredient-name {
  font-family: var(--serif);
  font-size: 25px;
}

.ingredient-tag {
  padding: 7px 12px;

  border: 1px solid var(--sand);

  color: var(--muted);

  font-size: 9px;
}

/* =========================================
   PURPOSE
========================================= */

.purpose-section {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;

  min-height: 800px;

  padding: 100px 7vw;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 15% 20%,
      rgba(190, 151, 93, 0.16),
      transparent 38%
    ),
    linear-gradient(135deg, #2b1728 0%, #1f1120 55%, #120a14 100%);

  color: white;
}

.purpose-section::after {
  content: "";

  position: absolute;
  inset: 0;

  background: radial-gradient(
    circle at center,
    transparent,
    rgba(0, 0, 0, 0.25)
  );
}

.purpose-content {
  position: relative;
  z-index: 2;

  max-width: 700px;

  text-align: center;
}

.purpose-content h2 {
  margin: 25px 0 35px;

  font-family: var(--serif);
  font-size: clamp(65px, 8vw, 120px);
  font-weight: 500;
  line-height: 0.85;
  letter-spacing: -0.05em;
}

.purpose-content h2 em {
  color: var(--gold);
}

.purpose-content > p {
  max-width: 520px;

  margin: 15px auto;

  color: rgba(255, 255, 255, 0.75);

  font-size: 14px;
  line-height: 1.9;
}

/* =========================================
   VISION
========================================= */

.vision-section {
  background: var(--cream);
}

.vision-top {
  max-width: var(--container);

  margin: auto;
}

.vision-top h2 {
  margin-top: 25px;

  font-family: var(--serif);
  font-size: clamp(55px, 6vw, 95px);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.04em;
}

.vision-top h2 em {
  color: var(--gold);
}

.vision-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;

  max-width: var(--container);

  margin: 80px auto 0;

  gap: 120px;
}

.vision-copy {
  color: var(--muted);

  font-size: 14px;
  line-height: 1.9;
}

.vision-copy p + p {
  margin-top: 20px;
}

.vision-categories {
  display: flex;
  flex-wrap: wrap;

  gap: 12px;
}

.vision-categories span {
  padding: 18px 25px;

  border: 1px solid var(--beige);

  font-family: var(--serif);
  font-size: 24px;

  transition:
    background 0.4s ease,
    color 0.4s ease,
    transform 0.4s var(--ease);
}

.vision-categories span:hover {
  background: var(--plum);
  color: white;

  transform: translateY(-5px);
}

/* =========================================
   FINAL CTA
========================================= */

.final-cta {
  display: flex;
  align-items: center;
  justify-content: center;

  min-height: 700px;

  padding: 100px 7vw;

  background: var(--deep-plum);

  color: white;

  text-align: center;
}

.final-cta-content {
  max-width: 900px;
}

.final-cta h2 {
  margin-top: 25px;

  font-family: var(--serif);
  font-size: clamp(70px, 9vw, 140px);
  font-weight: 500;
  line-height: 0.82;
  letter-spacing: -0.05em;
}

.final-cta h2 em {
  color: var(--gold);
}

.final-cta-content > p:not(.eyebrow) {
  margin-top: 35px;

  color: rgba(255, 255, 255, 0.65);

  font-size: 14px;
}

.final-cta-buttons {
  display: flex;
  justify-content: center;
  align-items: center;

  gap: 25px;

  margin-top: 40px;
}

/* =========================================
   FOOTER
========================================= */

.footer {
  padding: 90px 7vw 30px;

  background: var(--warm-white);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;

  max-width: var(--container);

  margin: auto;

  gap: 80px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.footer-brand p {
  margin-top: 25px;

  color: var(--muted);

  font-size: 13px;
  line-height: 1.8;
}

.footer-column {
  display: flex;
  flex-direction: column;

  gap: 13px;
}

.footer-label {
  margin-bottom: 12px;

  color: var(--gold);

  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.footer-column a {
  color: var(--muted);

  font-size: 12px;

  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: var(--plum);
}

.footer-news p {
  max-width: 280px;

  margin-bottom: 25px;

  color: var(--muted);

  font-size: 12px;
  line-height: 1.8;
}

.newsletter-form {
  display: flex;

  max-width: 340px;

  border-bottom: 1px solid var(--beige);
}

.newsletter-form input {
  width: 100%;

  padding: 12px 0;

  border: none;
  outline: none;

  background: transparent;
}

.newsletter-form input::placeholder {
  color: #aaa19a;

  font-size: 11px;
}

.newsletter-form button {
  border: none;

  background: transparent;

  font-size: 18px;

  cursor: pointer;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;

  max-width: var(--container);

  margin: 90px auto 0;
  padding-top: 25px;

  border-top: 1px solid var(--sand);

  color: var(--muted);

  font-size: 9px;
}

.footer-legal {
  display: flex;
  gap: 25px;
}

/* =========================================
   SCROLL REVEAL ANIMATIONS
========================================= */

.reveal {
  opacity: 0;

  transform: translateY(35px);

  transition:
    opacity 1s var(--ease),
    transform 1s var(--ease);
}

.reveal.visible {
  opacity: 1;

  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.15s;
}

.delay-2 {
  transition-delay: 0.3s;
}

/* =========================================
   RESPONSIVE — TABLET
========================================= */

@media (max-width: 1024px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .header-cta {
    margin-left: auto;
    margin-right: 25px;
  }

  .featured-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .brand-intro-grid,
  .ingredients-grid,
  .vision-grid {
    gap: 60px;
  }

  .science-pillar {
    padding: 30px;
  }

  .science-pillar:first-child {
    padding-left: 0;
  }

  .footer-top {
    gap: 50px;
  }
}

/* =========================================
   RESPONSIVE — MOBILE
========================================= */

@media (max-width: 768px) {
  .section-pad {
    padding: 90px 6vw;
  }

  .site-header {
    padding: 22px 6vw;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    margin-left: auto;
  }

  .hero-section {
    min-height: 100svh;

    padding: 150px 6vw 90px;
  }

  .hero-title {
    font-size: clamp(58px, 16vw, 90px);

    line-height: 0.85;
  }

  .hero-line-indent {
    margin-left: 0;
  }

  .hero-bottom {
    flex-direction: column;
    align-items: flex-start;

    gap: 35px;
  }

  .scroll-indicator {
    left: 6vw;
  }

  .brand-intro-grid {
    grid-template-columns: 1fr;

    gap: 35px;
  }

  .featured-heading {
    flex-direction: column;
    align-items: flex-start;

    gap: 30px;

    padding-bottom: 50px;
  }

  .featured-products-grid {
    grid-template-columns: 1fr;
  }

  .featured-product {
    min-height: 650px;

    padding: 40px 6vw;
  }

  .featured-product-content {
    left: 6vw;
    bottom: 40px;
  }

  .science-pillars {
    grid-template-columns: 1fr;

    margin-top: 70px;
  }

  .science-pillar {
    min-height: auto;

    padding: 40px 0;

    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .science-pillar:first-child {
    padding-left: 0;
  }

  .science-pillar h3 {
    margin-top: 35px;
  }

  .science-footer {
    flex-direction: column;
    align-items: flex-start;

    gap: 35px;

    margin-top: 60px;
  }

  .ingredients-grid {
    grid-template-columns: 1fr;

    gap: 60px;
  }

  .ingredient-name {
    font-size: 20px;
  }

  .purpose-section {
    min-height: 700px;
  }

  .vision-grid {
    grid-template-columns: 1fr;

    gap: 50px;
  }

  .vision-categories span {
    font-size: 20px;
  }

  .final-cta {
    min-height: 600px;
  }

  .final-cta-buttons {
    flex-direction: column;
  }

  .footer-top {
    grid-template-columns: 1fr;

    gap: 50px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;

    gap: 20px;

    margin-top: 60px;
  }
}

/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {
  .hero-eyebrow {
    font-size: 8px;
  }

  .hero-description {
    font-size: 13px;
  }

  .btn {
    width: 100%;
  }

  .hero-button {
    width: auto;
  }

  .featured-product {
    min-height: 600px;
  }

  .featured-product-image {
    width: 75%;
  }

  .ingredient-item {
    grid-template-columns: 35px 1fr;

    gap: 8px;
  }

  .ingredient-tag {
    grid-column: 2;

    width: fit-content;
  }

  .science-footer .btn {
    width: auto;
  }
}

/* =========================================
   PRODUCTS PAGE
========================================= */

/* PRODUCTS HERO */

.products-hero {
  min-height: 85vh;

  display: flex;
  align-items: flex-end;

  padding: 150px 7vw 100px;

  background:
    radial-gradient(
      circle at 85% 20%,
      rgba(185, 148, 99, 0.18),
      transparent 30%
    ),
    var(--warm-white);
}

.products-hero-content {
  width: 100%;
  max-width: var(--container);

  margin: auto;
}

.products-hero h1 {
  margin-top: 25px;

  font-family: var(--serif);
  font-size: clamp(65px, 9vw, 140px);
  font-weight: 500;
  line-height: 0.84;
  letter-spacing: -0.05em;
}

.products-hero h1 em {
  color: var(--gold);
}

.products-hero-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;

  margin-top: 55px;
}

.products-hero-bottom p {
  max-width: 330px;

  color: var(--muted);

  font-size: 14px;
  line-height: 1.9;
}

.products-hero-bottom span {
  color: var(--gold);

  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

/* PRODUCTS INTRO */

.products-intro {
  background: var(--cream);
}

.products-intro-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;

  max-width: var(--container);

  margin: auto;

  gap: 100px;
}

.products-intro-copy {
  max-width: 760px;
}

.products-intro-copy h2 {
  font-family: var(--serif);
  font-size: clamp(50px, 6vw, 90px);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: -0.04em;
}

.products-intro-copy h2 em {
  color: var(--gold);
}

.products-intro-copy p {
  max-width: 500px;

  margin-top: 30px;

  color: var(--muted);

  font-size: 14px;
  line-height: 1.9;
}

/* PRODUCT COLLECTION */

.product-collection {
  background: var(--warm-white);
}

.collection-product {
  min-height: 850px;

  display: grid;
  grid-template-columns: 1fr 1fr;

  overflow: hidden;
}

.collection-product-info {
  display: flex;
  flex-direction: column;
  justify-content: center;

  padding: 120px 8vw;
}

.collection-blue .collection-product-info {
  background: #eef1f4;
}

.collection-red .collection-product-info {
  background: #f3e8e8;
}

/* =========================================
   AFTER BITES PRODUCT COLLECTION
========================================= */

.collection-after-bites {
  background: linear-gradient(135deg, #efe9df 0%, #e2d7c8 100%);
}

/* Warm visual atmosphere */

.collection-after-bites .collection-product-visual {
  background: radial-gradient(
    circle at center,
    rgba(183, 147, 79, 0.18),
    transparent 65%
  );
}

/* Product glow */

.collection-after-bites .collection-product-visual::before {
  content: "";

  position: absolute;

  width: 500px;
  height: 500px;

  border-radius: 50%;

  background: radial-gradient(
    circle,
    rgba(183, 147, 79, 0.18),
    transparent 70%
  );

  filter: blur(20px);

  pointer-events: none;
}

/* Product image */

.collection-after-bites .collection-product-visual img {
  position: relative;

  z-index: 2;
}

/* Labels */

.collection-after-bites .visual-label {
  color: var(--plum);
}

.collection-number {
  margin-bottom: 40px;

  color: var(--gold);

  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.collection-product-info h2 {
  margin-top: 20px;

  font-family: var(--serif);
  font-size: clamp(55px, 6vw, 95px);
  font-weight: 500;
  line-height: 0.88;
  letter-spacing: -0.04em;
}

.collection-product-info h2 em {
  color: var(--gold);

  font-size: 0.72em;
}

.collection-description {
  max-width: 430px;

  margin-top: 35px;

  color: var(--muted);

  font-size: 13px;
  line-height: 1.9;
}

/* PRODUCT META */

.collection-meta {
  display: flex;
  gap: 55px;

  margin: 40px 0;
}

.collection-meta div {
  display: flex;
  flex-direction: column;

  gap: 8px;
}

.collection-meta span {
  color: var(--gold);

  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.collection-meta strong {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 500;
}

/* PRODUCT VISUAL */

.collection-product-visual {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;

  min-height: 850px;

  overflow: hidden;
}

.collection-blue .collection-product-visual {
  background: #d9e0e9;
}

.collection-red .collection-product-visual {
  background: #ead7da;
}

.collection-product-visual img {
  position: relative;
  z-index: 3;

  width: 55%;
  max-width: 450px;

  object-fit: contain;

  filter: drop-shadow(0 45px 35px rgba(0, 0, 0, 0.15));

  transition: transform 1s var(--ease);
}

.collection-product:hover .collection-product-visual img {
  transform: scale(1.06) rotate(1deg);
}

/* ORBITS */

.product-orbit {
  position: absolute;

  border: 1px solid rgba(255, 255, 255, 0.55);

  border-radius: 50%;
}

.orbit-small {
  width: 420px;
  height: 420px;
}

.orbit-large {
  width: 620px;
  height: 620px;
}

/* PRODUCT LABELS */

.visual-label {
  position: absolute;

  z-index: 4;

  padding: 10px 15px;

  background: rgba(255, 255, 255, 0.5);

  backdrop-filter: blur(8px);

  border: 1px solid rgba(255, 255, 255, 0.5);

  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.label-one {
  top: 20%;
  left: 12%;
}

.label-two {
  right: 10%;
  bottom: 22%;
}

/* =========================================
   PRODUCT PHILOSOPHY
========================================= */

.product-philosophy {
  background: var(--cream);
}

.product-philosophy-heading {
  max-width: var(--container);

  margin: auto;
}

.product-philosophy-heading h2 {
  margin-top: 20px;

  font-family: var(--serif);
  font-size: clamp(55px, 6vw, 95px);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.04em;
}

.product-philosophy-heading h2 em {
  color: var(--gold);
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  max-width: var(--container);

  margin: 90px auto 0;

  border-top: 1px solid var(--beige);
}

.philosophy-card {
  min-height: 310px;

  padding: 40px;

  border-right: 1px solid var(--beige);
}

.philosophy-card:first-child {
  padding-left: 0;
}

.philosophy-card:last-child {
  border-right: none;
}

.philosophy-card span {
  color: var(--gold);

  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.philosophy-card h3 {
  margin-top: 60px;

  font-family: var(--serif);
  font-size: 34px;
  font-weight: 500;
  line-height: 1;
}

.philosophy-card p {
  max-width: 260px;

  margin-top: 20px;

  color: var(--muted);

  font-size: 12px;
  line-height: 1.8;
}

/* =========================================
   COMING NEXT
========================================= */

.coming-next {
  position: relative;

  min-height: 720px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 100px 7vw;

  background: linear-gradient(135deg, #21101d, #44263c);

  overflow: hidden;

  color: white;
}

.coming-next::before {
  content: "";

  position: absolute;

  width: 600px;
  height: 600px;

  border: 1px solid rgba(185, 148, 99, 0.2);

  border-radius: 50%;

  top: -250px;
  right: -150px;
}

.coming-next-content {
  position: relative;

  max-width: 850px;

  text-align: center;

  z-index: 2;
}

.coming-next h2 {
  margin: 25px 0 35px;

  font-family: var(--serif);
  font-size: clamp(65px, 8vw, 120px);
  font-weight: 500;
  line-height: 0.85;
  letter-spacing: -0.05em;
}

.coming-next h2 em {
  color: var(--gold);
}

.coming-next-content > p:not(.eyebrow) {
  max-width: 480px;

  margin: auto;

  color: rgba(255, 255, 255, 0.7);

  font-size: 14px;
  line-height: 1.9;
}

/* =========================================
   PRODUCTS RESPONSIVE
========================================= */

@media (max-width: 768px) {
  .products-hero {
    min-height: 80vh;

    padding: 150px 6vw 80px;
  }

  .products-hero h1 {
    font-size: clamp(55px, 15vw, 90px);
  }

  .products-hero-bottom {
    flex-direction: column;
    align-items: flex-start;

    gap: 30px;
  }

  .products-intro-grid {
    grid-template-columns: 1fr;

    gap: 35px;
  }

  .collection-product {
    grid-template-columns: 1fr;
  }

  .collection-product-info {
    padding: 90px 6vw;
  }

  .collection-product-visual {
    min-height: 650px;
  }

  .collection-product-visual img {
    width: 60%;
  }

  .orbit-small {
    width: 330px;
    height: 330px;
  }

  .orbit-large {
    width: 500px;
    height: 500px;
  }

  .philosophy-grid {
    grid-template-columns: 1fr;

    margin-top: 60px;
  }

  .philosophy-card {
    min-height: auto;

    padding: 40px 0;

    border-right: none;
    border-bottom: 1px solid var(--beige);
  }

  .philosophy-card:first-child {
    padding-left: 0;
  }

  .philosophy-card h3 {
    margin-top: 30px;
  }
}

@media (max-width: 480px) {
  .collection-meta {
    gap: 30px;
  }

  .collection-product-visual img {
    width: 70%;
  }

  .visual-label {
    font-size: 7px;
  }
}

/* =========================================
   PRODUCT DETAIL PAGE
========================================= */

.product-detail-page {
  background: var(--cream);
}

/* =========================================
   PRODUCT DETAIL HERO
========================================= */

.product-detail-hero {
  min-height: 100vh;

  display: grid;
  grid-template-columns: 1fr 1fr;

  background: var(--cream);
}

/* LEFT CONTENT */

.product-detail-content {
  display: flex;
  flex-direction: column;
  justify-content: center;

  padding: 170px 7vw 100px;
}

.product-detail-content h1 {
  margin-top: 25px;

  font-family: var(--serif);
  font-size: clamp(65px, 7vw, 120px);
  font-weight: 500;
  line-height: 0.85;
  letter-spacing: -0.05em;
}

.product-detail-content h1 em {
  color: var(--gold);
}

.product-detail-description {
  max-width: 400px;

  margin-top: 40px;

  color: var(--muted);

  font-size: 14px;
  line-height: 1.9;
}

/* HERO META */

.product-hero-meta {
  display: flex;
  gap: 55px;

  margin: 40px 0;
}

.product-hero-meta div {
  display: flex;
  flex-direction: column;

  gap: 8px;
}

.product-hero-meta span {
  color: var(--gold);

  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.product-hero-meta strong {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
}

/* HERO VISUAL */

.product-detail-visual {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;

  min-height: 100vh;

  overflow: hidden;

  background: #dce4ec;
}

.product-detail-visual img {
  position: relative;
  z-index: 3;

  width: 55%;
  max-width: 470px;

  object-fit: contain;

  filter: drop-shadow(0 50px 35px rgba(0, 0, 0, 0.16));

  animation: productFloat 6s ease-in-out infinite;
}

/* FLOATING PRODUCT */

@keyframes productFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-18px);
  }
}

/* PRODUCT ORBITS */

.hero-product-orbit {
  position: absolute;

  border: 1px solid rgba(255, 255, 255, 0.5);

  border-radius: 50%;
}

.orbit-one {
  width: 350px;
  height: 350px;
}

.orbit-two {
  width: 550px;
  height: 550px;
}

.orbit-three {
  width: 760px;
  height: 760px;

  border-color: rgba(49, 65, 95, 0.12);
}

/* HERO LABELS */

.hero-product-label {
  position: absolute;

  z-index: 5;

  padding: 10px 15px;

  background: rgba(255, 255, 255, 0.45);

  backdrop-filter: blur(10px);

  border: 1px solid rgba(255, 255, 255, 0.55);

  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.label-top {
  top: 20%;
  left: 12%;
}

.label-bottom {
  right: 12%;
  bottom: 18%;
}

/* =========================================
   PRODUCT OVERVIEW
========================================= */

.product-overview {
  background: var(--warm-white);
}

.product-overview-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;

  max-width: var(--container);

  margin: auto;

  gap: 100px;
}

.product-overview-content h2 {
  font-family: var(--serif);
  font-size: clamp(55px, 6vw, 95px);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.04em;
}

.product-overview-content h2 em {
  color: var(--gold);
}

.product-overview-content > p {
  max-width: 500px;

  margin-top: 30px;

  color: var(--muted);

  font-size: 14px;
  line-height: 1.9;
}

.product-overview-content blockquote {
  max-width: 520px;

  margin-top: 45px;

  padding-left: 30px;

  border-left: 1px solid var(--gold);

  font-family: var(--serif);
  font-size: 32px;
  font-style: italic;
  line-height: 1.2;

  color: var(--plum);
}

/* =========================================
   PRODUCT HIGHLIGHTS
========================================= */

.product-highlights {
  background: var(--plum);

  color: white;
}

.product-highlights-heading {
  max-width: var(--container);

  margin: auto;
}

.product-highlights-heading h2 {
  margin-top: 20px;

  font-family: var(--serif);
  font-size: clamp(55px, 6vw, 95px);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.04em;
}

.product-highlights-heading h2 em {
  color: var(--gold);
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  max-width: var(--container);

  margin: auto;

  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.highlight-card {
  min-height: 340px;

  padding: 45px;

  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.highlight-card:first-child {
  padding-left: 0;
}

.highlight-card:last-child {
  border-right: none;
}

.highlight-card > span {
  color: var(--gold);

  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.highlight-card h3 {
  margin-top: 65px;

  font-family: var(--serif);
  font-size: 35px;
  font-weight: 500;
  line-height: 1;
}

.highlight-card p {
  max-width: 260px;

  margin-top: 20px;

  color: rgba(255, 255, 255, 0.65);

  font-size: 12px;
  line-height: 1.8;
}

/* =========================================
   PRODUCT INGREDIENTS
========================================= */

.product-ingredients {
  background: var(--cream);
}

.product-ingredients-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;

  max-width: var(--container);

  margin: auto;

  gap: 120px;
}

.ingredients-main-copy h2 {
  margin: 25px 0 35px;

  font-family: var(--serif);
  font-size: clamp(55px, 6vw, 90px);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.04em;
}

.ingredients-main-copy h2 em {
  color: var(--gold);
}

.ingredients-main-copy > p {
  max-width: 470px;

  margin-top: 20px;

  color: var(--muted);

  font-size: 14px;
  line-height: 1.9;
}

/* INGREDIENT FEATURE */

.ingredient-feature {
  position: relative;

  padding: 55px;

  background: var(--warm-white);

  border: 1px solid var(--sand);
}

.ingredient-feature-number {
  color: var(--gold);

  font-size: 10px;
  letter-spacing: 0.15em;
}

.ingredient-feature h3 {
  margin-top: 100px;

  font-family: var(--serif);
  font-size: 50px;
  font-weight: 500;
}

.ingredient-line {
  display: block;

  width: 70px;
  height: 1px;

  margin: 30px 0;

  background: var(--gold);
}

.ingredient-feature > p {
  color: var(--muted);

  font-size: 13px;
  line-height: 1.9;
}

.ingredient-note {
  margin-top: 70px;
}

.ingredient-note span {
  color: var(--gold);

  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

/* =========================================
   PRODUCT EXPERIENCE
========================================= */

.product-experience {
  position: relative;

  min-height: 700px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 100px 7vw;

  text-align: center;

  color: white;

  background:
    radial-gradient(
      circle at 80% 15%,
      rgba(190, 151, 93, 0.14),
      transparent 35%
    ),
    linear-gradient(135deg, #281526 0%, #180d1a 100%);
}

.product-experience-content {
  max-width: 850px;
}

.product-experience h2 {
  margin: 25px 0 35px;

  font-family: var(--serif);
  font-size: clamp(65px, 8vw, 120px);
  font-weight: 500;
  line-height: 0.85;
  letter-spacing: -0.05em;
}

.product-experience h2 em {
  color: var(--gold);
}

.product-experience-content > p:not(.eyebrow) {
  max-width: 470px;

  margin: auto;

  color: rgba(255, 255, 255, 0.72);

  font-size: 14px;
  line-height: 1.9;
}

/* =========================================
   HOW TO USE
========================================= */

.how-to-use {
  background: var(--warm-white);
}

.how-to-use-heading {
  max-width: var(--container);

  margin: auto;
}

.how-to-use-heading h2 {
  margin-top: 20px;

  font-family: var(--serif);
  font-size: clamp(55px, 6vw, 95px);
  font-weight: 500;
  line-height: 0.9;
}

.how-to-use-heading h2 em {
  color: var(--gold);
}

.usage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  max-width: var(--container);

  margin: 90px auto 0;

  border-top: 1px solid var(--sand);
}

.usage-step {
  min-height: 320px;

  padding: 45px;

  border-right: 1px solid var(--sand);
}

.usage-step:first-child {
  padding-left: 0;
}

.usage-step:last-child {
  border-right: none;
}

.usage-number {
  color: var(--gold);

  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.usage-step h3 {
  margin-top: 70px;

  font-family: var(--serif);
  font-size: 40px;
  font-weight: 500;
}

.usage-step p {
  max-width: 250px;

  margin-top: 20px;

  color: var(--muted);

  font-size: 12px;
  line-height: 1.8;
}

/* =========================================
   PRODUCT INFORMATION
========================================= */

.product-information {
  background: var(--cream);
}

.product-information-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;

  max-width: var(--container);

  margin: auto;

  gap: 120px;
}

.product-information-heading h2 {
  margin-top: 25px;

  font-family: var(--serif);
  font-size: clamp(50px, 5vw, 80px);
  font-weight: 500;
  line-height: 0.9;
}

.product-information-heading h2 em {
  color: var(--gold);
}

.product-information-list {
  border-top: 1px solid var(--beige);
}

.information-row {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 25px 0;

  border-bottom: 1px solid var(--beige);
}

.information-row span {
  color: var(--gold);

  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.information-row strong {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
}

/* =========================================
   DISCLAIMER
========================================= */

.product-disclaimer {
  padding: 80px 7vw;

  background: #eee8e0;
}

.disclaimer-content {
  display: flex;
  align-items: flex-start;

  max-width: 900px;

  margin: auto;

  gap: 30px;
}

.disclaimer-icon {
  display: flex;
  align-items: center;
  justify-content: center;

  min-width: 35px;
  height: 35px;

  border: 1px solid var(--gold);

  border-radius: 50%;

  color: var(--gold);

  font-family: var(--serif);
  font-style: italic;
}

.disclaimer-content > div > p:last-child {
  max-width: 700px;

  margin-top: 15px;

  color: var(--muted);

  font-size: 12px;
  line-height: 1.9;
}

/* =========================================
   NEXT PRODUCT
========================================= */

.next-product {
  background: var(--cranberry);
}

.next-product-link {
  min-height: 650px;

  display: grid;
  grid-template-columns: 1fr 1fr;

  color: white;
}

.next-product-content {
  display: flex;
  flex-direction: column;
  justify-content: center;

  padding: 100px 8vw;
}

.next-product-content h2 {
  margin-top: 25px;

  font-family: var(--serif);
  font-size: clamp(60px, 7vw, 110px);
  font-weight: 500;
  line-height: 0.85;
  letter-spacing: -0.05em;
}

.next-product-content h2 em {
  color: #f0c5c8;
}

.next-arrow {
  margin-top: 50px;

  font-size: 45px;

  transition: transform 0.5s var(--ease);
}

.next-product-link:hover .next-arrow {
  transform: translateX(15px);
}

.next-product-image {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;

  background: #9c4a57;
}

.next-product-image img {
  width: 55%;
  max-width: 420px;

  object-fit: contain;

  filter: drop-shadow(0 40px 30px rgba(0, 0, 0, 0.2));

  transition: transform 0.9s var(--ease);
}

.next-product-link:hover .next-product-image img {
  transform: scale(1.06) rotate(2deg);
}

/* =========================================
   PRODUCT PAGE RESPONSIVE
========================================= */

@media (max-width: 1024px) {
  .product-detail-content {
    padding-left: 6vw;
    padding-right: 5vw;
  }

  .product-ingredients-grid,
  .product-information-grid {
    gap: 70px;
  }
}

@media (max-width: 768px) {
  .product-detail-hero {
    grid-template-columns: 1fr;
  }

  .product-detail-content {
    min-height: 700px;

    padding: 150px 6vw 80px;
  }

  .product-detail-visual {
    min-height: 650px;
  }

  .product-detail-visual img {
    width: 58%;
  }

  .orbit-one {
    width: 300px;
    height: 300px;
  }

  .orbit-two {
    width: 470px;
    height: 470px;
  }

  .orbit-three {
    width: 650px;
    height: 650px;
  }

  .product-overview-grid {
    grid-template-columns: 1fr;

    gap: 35px;
  }

  .highlight-grid,
  .usage-grid {
    grid-template-columns: 1fr;
  }

  .highlight-card,
  .usage-step {
    min-height: auto;

    padding: 40px 0;

    border-right: none;

    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .usage-step {
    border-color: var(--sand);
  }

  .highlight-card:first-child,
  .usage-step:first-child {
    padding-left: 0;
  }

  .highlight-card h3,
  .usage-step h3 {
    margin-top: 30px;
  }

  .product-ingredients-grid {
    grid-template-columns: 1fr;

    gap: 60px;
  }

  .product-information-grid {
    grid-template-columns: 1fr;

    gap: 60px;
  }

  .next-product-link {
    grid-template-columns: 1fr;
  }

  .next-product-content {
    min-height: 500px;

    padding: 80px 6vw;
  }

  .next-product-image {
    min-height: 500px;
  }
}

@media (max-width: 480px) {
  .product-detail-content h1 {
    font-size: clamp(58px, 16vw, 85px);
  }

  .product-hero-meta {
    gap: 30px;
  }

  .product-detail-visual img {
    width: 68%;
  }

  .ingredient-feature {
    padding: 35px;
  }

  .ingredient-feature h3 {
    margin-top: 70px;

    font-size: 42px;
  }

  .information-row {
    align-items: flex-start;
    flex-direction: column;

    gap: 8px;
  }
}

/* =========================================
   ABOUT PAGE
========================================= */

.about-page {
  background: var(--cream);
}

/* =========================================
   ABOUT HERO
========================================= */

.about-hero {
  position: relative;

  min-height: 100vh;

  display: flex;
  align-items: center;

  overflow: hidden;

  color: white;

  background: var(--plum);
}

.about-hero-background {
  position: absolute;

  inset: 0;

  background:
    radial-gradient(
      circle at 80% 20%,
      rgba(190, 151, 93, 0.12),
      transparent 30%
    ),
    radial-gradient(
      circle at 20% 80%,
      rgba(255, 255, 255, 0.05),
      transparent 35%
    ),
    linear-gradient(135deg, #2d1729 0%, #1d1020 58%, #120913 100%);

  transform: scale(1.03);
}

.about-hero-content {
  position: relative;

  z-index: 2;

  width: 100%;
  max-width: 900px;

  padding: 170px 8vw 120px;
}

.about-hero-content h1 {
  max-width: 850px;

  margin-top: 25px;

  font-family: var(--serif);
  font-size: clamp(70px, 9vw, 140px);
  font-weight: 500;
  line-height: 0.83;
  letter-spacing: -0.05em;
}

.about-hero-content h1 em {
  color: var(--gold);
}

.about-hero-description {
  max-width: 470px;

  margin-top: 45px;

  color: rgba(255, 255, 255, 0.72);

  font-size: 14px;
  line-height: 1.9;
}

/* SCROLL INDICATOR */

.about-scroll-indicator {
  position: absolute;

  right: 7vw;
  bottom: 55px;

  z-index: 3;

  display: flex;
  align-items: center;

  gap: 20px;

  color: rgba(255, 255, 255, 0.65);
}

.about-scroll-indicator span {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.about-scroll-indicator i {
  display: block;

  width: 55px;
  height: 1px;

  background: rgba(255, 255, 255, 0.5);
}

/* =========================================
   ABOUT INTRO
========================================= */

.about-intro {
  background: var(--warm-white);
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;

  max-width: var(--container);

  margin: auto;

  gap: 100px;
}

.about-intro-content h2 {
  font-family: var(--serif);
  font-size: clamp(55px, 6vw, 95px);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.04em;
}

.about-intro-content h2 em {
  color: var(--gold);
}

.intro-large {
  max-width: 560px;

  margin: 45px 0 30px;

  color: var(--plum);

  font-family: var(--serif);
  font-size: 34px;
  line-height: 1.2;
}

.about-intro-content > p:not(.intro-large) {
  max-width: 500px;

  margin-top: 20px;

  color: var(--muted);

  font-size: 14px;
  line-height: 1.9;
}

/* =========================================
   BRAND STATEMENT
========================================= */

.about-statement {
  position: relative;

  padding: 160px 8vw;

  overflow: hidden;

  text-align: center;

  background: var(--plum);

  color: white;
}

.statement-inner {
  position: relative;

  max-width: 1100px;

  margin: auto;
}

.statement-symbol {
  position: absolute;

  top: -100px;
  left: 50%;

  transform: translateX(-50%);

  color: rgba(255, 255, 255, 0.06);

  font-family: var(--serif);
  font-size: 250px;
}

.statement-inner h2 {
  position: relative;

  z-index: 2;

  font-family: var(--serif);
  font-size: clamp(55px, 6vw, 100px);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.statement-inner h2 em {
  color: var(--gold);
}

/* =========================================
   BRAND PHILOSOPHY
========================================= */

.brand-philosophy {
  background: var(--cream);
}

.philosophy-heading {
  max-width: var(--container);

  margin: auto;
}

.philosophy-heading h2 {
  margin-top: 25px;

  font-family: var(--serif);
  font-size: clamp(55px, 6vw, 95px);
  font-weight: 500;
  line-height: 0.9;
}

.philosophy-heading h2 em {
  color: var(--gold);
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  max-width: var(--container);

  margin: 100px auto 0;

  border-top: 1px solid var(--sand);
}

.philosophy-card {
  min-height: 350px;

  padding: 45px;

  border-right: 1px solid var(--sand);
}

.philosophy-card:first-child {
  padding-left: 0;
}

.philosophy-card:last-child {
  border-right: none;
}

.philosophy-card > span {
  color: var(--gold);

  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.philosophy-card h3 {
  margin-top: 80px;

  font-family: var(--serif);
  font-size: 42px;
  font-weight: 500;
}

.philosophy-card p {
  max-width: 270px;

  margin-top: 20px;

  color: var(--muted);

  font-size: 12px;
  line-height: 1.9;
}

/* =========================================
   SCIENCE + LIFE
========================================= */

.science-life {
  display: grid;
  grid-template-columns: 1fr 1fr;

  min-height: 750px;
}

.science-life-left {
  display: flex;
  align-items: center;

  padding: 100px 8vw;

  background: var(--warm-white);
}

.science-life-content {
  max-width: 600px;
}

.science-life-content h2 {
  margin: 25px 0 40px;

  font-family: var(--serif);
  font-size: clamp(55px, 6vw, 90px);
  font-weight: 500;
  line-height: 0.9;
}

.science-life-content h2 em {
  color: var(--gold);
}

.science-life-content > p:not(.eyebrow) {
  max-width: 450px;

  margin-top: 20px;

  color: var(--muted);

  font-size: 14px;
  line-height: 1.9;
}

/* RIGHT VISUAL */

.science-life-right {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;

  background: linear-gradient(135deg, #8196b0, #445772);
}

.science-visual-orbit {
  position: absolute;

  border: 1px solid rgba(255, 255, 255, 0.28);

  border-radius: 50%;
}

.science-life-right .orbit-one {
  width: 420px;
  height: 420px;
}

.science-life-right .orbit-two {
  width: 650px;
  height: 650px;
}

.science-center {
  position: relative;
  z-index: 3;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 180px;
  height: 180px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.15);

  backdrop-filter: blur(15px);

  border: 1px solid rgba(255, 255, 255, 0.25);
}

.science-center span {
  color: white;

  font-family: var(--serif);
  font-size: 100px;
  font-style: italic;
}

.science-word {
  position: absolute;

  color: rgba(255, 255, 255, 0.75);

  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.25em;
}

.word-one {
  top: 20%;
  left: 15%;
}

.word-two {
  right: 15%;
  bottom: 20%;
}

/* =========================================
   MISSION
========================================= */

.mission-section {
  background: var(--cream);
}

.mission-grid {
  display: grid;
  grid-template-columns: 0.5fr 1.5fr;

  max-width: var(--container);

  margin: auto;

  gap: 80px;
}

.mission-number {
  color: var(--gold);

  font-family: var(--serif);
  font-size: 100px;
}

.mission-content h2 {
  margin: 25px 0 40px;

  font-family: var(--serif);
  font-size: clamp(55px, 6vw, 95px);
  font-weight: 500;
  line-height: 0.9;
}

.mission-content h2 em {
  color: var(--gold);
}

.mission-content > p:not(.eyebrow) {
  max-width: 550px;

  color: var(--muted);

  font-size: 14px;
  line-height: 1.9;
}

/* =========================================
   VISION
========================================= */

.vision-section {
  min-height: 720px;

  display: flex;
  align-items: center;

  padding: 100px 8vw;

  color: white;

  background:
    radial-gradient(
      circle at 75% 25%,
      rgba(190, 151, 93, 0.14),
      transparent 34%
    ),
    linear-gradient(135deg, #351d30 0%, #211220 55%, #150b16 100%);
}

.vision-content {
  max-width: 850px;
}

.vision-content h2 {
  margin: 25px 0 40px;

  font-family: var(--serif);
  font-size: clamp(65px, 7vw, 115px);
  font-weight: 500;
  line-height: 0.85;
  letter-spacing: -0.05em;
}

.vision-content h2 em {
  color: var(--gold);
}

.vision-content > p:not(.eyebrow) {
  max-width: 500px;

  margin-top: 20px;

  color: rgba(255, 255, 255, 0.72);

  font-size: 14px;
  line-height: 1.9;
}

/* =========================================
   ABOUT CLOSING
========================================= */

.about-closing {
  text-align: center;

  background: var(--warm-white);
}

.about-closing-content {
  max-width: 1000px;

  margin: auto;
}

.closing-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 80px;
  height: 80px;

  margin-bottom: 45px;

  border: 1px solid var(--gold);

  border-radius: 50%;

  color: var(--gold);

  font-family: var(--serif);
  font-size: 42px;
  font-style: italic;
}

.about-closing h2 {
  margin-bottom: 55px;

  font-family: var(--serif);
  font-size: clamp(50px, 6vw, 90px);
  font-weight: 500;
  line-height: 0.9;
}

.about-closing h2 em {
  color: var(--gold);
}

/* =========================================
   ABOUT PAGE RESPONSIVE
========================================= */

@media (max-width: 1024px) {
  .about-intro-grid {
    gap: 70px;
  }

  .science-life-left {
    padding-left: 6vw;
    padding-right: 6vw;
  }
}

@media (max-width: 768px) {
  .about-hero {
    min-height: 850px;
  }

  .about-hero-content {
    padding: 150px 6vw 100px;
  }

  .about-hero-background {
    background-position: 60% center;
  }

  .about-scroll-indicator {
    left: 6vw;
    right: auto;
  }

  .about-intro-grid {
    grid-template-columns: 1fr;

    gap: 35px;
  }

  .about-statement {
    padding: 120px 6vw;
  }

  .philosophy-grid {
    grid-template-columns: 1fr;

    margin-top: 70px;
  }

  .philosophy-card {
    min-height: auto;

    padding: 40px 0;

    border-right: none;

    border-bottom: 1px solid var(--sand);
  }

  .philosophy-card h3 {
    margin-top: 35px;
  }

  .science-life {
    grid-template-columns: 1fr;
  }

  .science-life-left {
    min-height: 650px;

    padding: 100px 6vw;
  }

  .science-life-right {
    min-height: 600px;
  }

  .mission-grid {
    grid-template-columns: 1fr;

    gap: 30px;
  }

  .mission-number {
    font-size: 70px;
  }

  .vision-section {
    min-height: 700px;

    padding: 100px 6vw;
  }
}

@media (max-width: 480px) {
  .about-hero-content h1 {
    font-size: clamp(58px, 16vw, 85px);
  }

  .intro-large {
    font-size: 28px;
  }

  .science-life-right .orbit-one {
    width: 300px;
    height: 300px;
  }

  .science-life-right .orbit-two {
    width: 500px;
    height: 500px;
  }

  .science-center {
    width: 140px;
    height: 140px;
  }

  .science-center span {
    font-size: 75px;
  }
}

/* =========================================
   WHY LUMIVÁNA PAGE
========================================= */

.why-page {
  background: var(--cream);
}

/* =========================================
   HERO
========================================= */

.why-hero {
  min-height: 100vh;

  display: grid;
  grid-template-columns: 1fr 1fr;

  background: var(--warm-white);
}

/* HERO CONTENT */

.why-hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;

  padding: 170px 8vw 100px;
}

.why-hero-content h1 {
  margin-top: 25px;

  font-family: var(--serif);
  font-size: clamp(70px, 8vw, 130px);
  font-weight: 500;
  line-height: 0.84;
  letter-spacing: -0.05em;
}

.why-hero-content h1 em {
  color: var(--gold);
}

.why-hero-description {
  max-width: 430px;

  margin-top: 45px;

  color: var(--muted);

  font-size: 14px;
  line-height: 1.9;
}

/* HERO LINE */

.why-hero-line {
  display: flex;
  align-items: center;

  gap: 18px;

  margin-top: 55px;
}

.why-hero-line span {
  width: 70px;
  height: 1px;

  background: var(--gold);
}

.why-hero-line small {
  color: var(--gold);

  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

/* HERO VISUAL */

.why-hero-visual {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;

  min-height: 100vh;

  overflow: hidden;

  background: linear-gradient(135deg, #42516a, #253146);
}

/* ORBITS */

.why-orbit {
  position: absolute;

  border-radius: 50%;

  border: 1px solid rgba(255, 255, 255, 0.2);
}

.why-orbit-one {
  width: 300px;
  height: 300px;
}

.why-orbit-two {
  width: 520px;
  height: 520px;
}

.why-orbit-three {
  width: 760px;
  height: 760px;

  border-color: rgba(255, 255, 255, 0.08);
}

/* CENTER MARK */

.why-center-mark {
  position: relative;
  z-index: 2;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 180px;
  height: 180px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.1);

  backdrop-filter: blur(15px);

  border: 1px solid rgba(255, 255, 255, 0.2);

  animation: whyFloat 6s ease-in-out infinite;
}

.why-center-mark span {
  color: white;

  font-family: var(--serif);
  font-size: 100px;
  font-style: italic;
}

@keyframes whyFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

/* FLOATING TEXT */

.why-floating-text {
  position: absolute;

  color: rgba(255, 255, 255, 0.6);

  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.text-top {
  top: 18%;
  left: 15%;
}

.text-right {
  top: 48%;
  right: 10%;

  writing-mode: vertical-rl;
}

.text-bottom {
  bottom: 16%;
  left: 18%;
}

/* =========================================
   INTRO
========================================= */

.why-intro {
  background: var(--cream);
}

.why-intro-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;

  max-width: var(--container);

  margin: auto;

  gap: 100px;
}

.why-intro-content h2 {
  font-family: var(--serif);
  font-size: clamp(55px, 6vw, 95px);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.04em;
}

.why-intro-content h2 em {
  color: var(--gold);
}

.why-intro-content p {
  max-width: 540px;

  margin-top: 25px;

  color: var(--muted);

  font-size: 14px;
  line-height: 1.9;
}

/* =========================================
   CORE DIFFERENCE
========================================= */

.core-difference {
  background: var(--plum);

  color: white;
}

.core-difference-heading {
  max-width: var(--container);

  margin: auto;
}

.core-difference-heading h2 {
  margin-top: 25px;

  font-family: var(--serif);
  font-size: clamp(55px, 6vw, 95px);
  font-weight: 500;
  line-height: 0.9;
}

.core-difference-heading h2 em {
  color: var(--gold);
}

.difference-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  max-width: var(--container);

  margin: auto;

  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.difference-card {
  min-height: 440px;

  padding: 50px;

  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.difference-card:first-child {
  padding-left: 0;
}

.difference-card:last-child {
  border-right: none;
}

.difference-number {
  color: var(--gold);

  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.difference-icon {
  margin-top: 55px;

  color: rgba(255, 255, 255, 0.75);

  font-family: var(--serif);
  font-size: 40px;
}

.difference-card h3 {
  margin-top: 35px;

  font-family: var(--serif);
  font-size: 38px;
  font-weight: 500;
  line-height: 1;
}

.difference-card p {
  max-width: 260px;

  margin-top: 20px;

  color: rgba(255, 255, 255, 0.65);

  font-size: 12px;
  line-height: 1.9;
}

/* =========================================
   TRANSPARENCY
========================================= */

.transparency-section {
  display: grid;
  grid-template-columns: 1fr 1fr;

  min-height: 750px;
}

.transparency-left {
  display: flex;
  align-items: center;

  padding: 100px 8vw;

  background: var(--warm-white);
}

.transparency-content {
  max-width: 600px;
}

.transparency-content h2 {
  margin: 25px 0 40px;

  font-family: var(--serif);
  font-size: clamp(55px, 6vw, 90px);
  font-weight: 500;
  line-height: 0.9;
}

.transparency-content h2 em {
  color: var(--gold);
}

.transparency-content > p:not(.eyebrow) {
  max-width: 460px;

  margin-top: 20px;

  color: var(--muted);

  font-size: 14px;
  line-height: 1.9;
}

/* RIGHT */

.transparency-right {
  display: flex;
  align-items: center;
  justify-content: center;

  padding: 60px;

  background: #dce4ec;
}

.transparency-card {
  width: 100%;
  max-width: 500px;
  min-height: 520px;

  display: flex;
  flex-direction: column;

  padding: 35px;

  background: rgba(255, 255, 255, 0.45);

  backdrop-filter: blur(15px);

  border: 1px solid rgba(255, 255, 255, 0.65);

  box-shadow: 0 30px 70px rgba(34, 48, 70, 0.12);
}

.transparency-card-top {
  display: flex;
  justify-content: space-between;

  color: #52657d;

  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.transparency-card-center {
  flex: 1;

  display: flex;
  align-items: center;
  justify-content: center;
}

.large-letter {
  color: rgba(60, 79, 105, 0.85);

  font-family: var(--serif);
  font-size: 220px;
  font-style: italic;
}

.transparency-card-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 20px;

  border-top: 1px solid rgba(70, 85, 105, 0.15);

  padding-top: 20px;
}

.transparency-card-bottom div {
  display: flex;
  flex-direction: column;

  gap: 8px;
}

.transparency-card-bottom span {
  color: #66758a;

  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.transparency-card-bottom strong {
  color: #344154;

  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
}

/* =========================================
   QUALITY
========================================= */

.quality-section {
  background: var(--cream);
}

.quality-grid {
  display: grid;
  grid-template-columns: 0.5fr 1.5fr;

  max-width: var(--container);

  margin: auto;

  gap: 80px;
}

.quality-number {
  color: var(--gold);

  font-family: var(--serif);
  font-size: 100px;
}

.quality-content h2 {
  margin: 25px 0 40px;

  font-family: var(--serif);
  font-size: clamp(60px, 6vw, 95px);
  font-weight: 500;
  line-height: 0.9;
}

.quality-content h2 em {
  color: var(--gold);
}

.quality-lead {
  max-width: 570px;

  color: var(--plum);

  font-family: var(--serif);
  font-size: 30px;
  line-height: 1.25;
}

.quality-content > p:not(.eyebrow):not(.quality-lead) {
  max-width: 520px;

  margin-top: 25px;

  color: var(--muted);

  font-size: 14px;
  line-height: 1.9;
}

/* =========================================
   MODERN WELLNESS
========================================= */

.modern-wellness {
  position: relative;

  min-height: 700px;

  display: flex;
  align-items: center;

  padding: 100px 8vw;

  overflow: hidden;

  color: white;

  background: linear-gradient(135deg, #243148, #4c607c);
}

.modern-wellness-content {
  position: relative;
  z-index: 2;

  max-width: 850px;
}

.modern-wellness-content h2 {
  margin: 25px 0 40px;

  font-family: var(--serif);
  font-size: clamp(65px, 7vw, 110px);
  font-weight: 500;
  line-height: 0.85;
  letter-spacing: -0.05em;
}

.modern-wellness-content h2 em {
  color: #c4d0df;
}

.modern-wellness-content > p:not(.eyebrow) {
  max-width: 480px;

  margin-top: 20px;

  color: rgba(255, 255, 255, 0.7);

  font-size: 14px;
  line-height: 1.9;
}

/* DECORATION */

.modern-wellness-decoration {
  position: absolute;

  right: 10%;
  bottom: -90px;

  color: rgba(255, 255, 255, 0.06);

  font-family: var(--serif);
  font-size: 500px;
  font-style: italic;
}

/* =========================================
   MINDSET
========================================= */

.mindset-section {
  background: var(--warm-white);
}

.mindset-heading {
  max-width: var(--container);

  margin: auto;
}

.mindset-heading h2 {
  margin-top: 25px;

  font-family: var(--serif);
  font-size: clamp(55px, 6vw, 95px);
  font-weight: 500;
  line-height: 0.9;
}

.mindset-heading h2 em {
  color: var(--gold);
}

.mindset-table {
  max-width: var(--container);

  margin: 80px auto 0;

  border-top: 1px solid var(--sand);
}

.mindset-row {
  display: grid;
  grid-template-columns: 1fr 1fr;

  padding: 28px 0;

  border-bottom: 1px solid var(--sand);
}

.mindset-row span {
  font-family: var(--serif);
  font-size: 26px;
}

.mindset-row span:last-child {
  color: var(--gold);
}

.mindset-head span {
  color: var(--muted);

  font-family: var(--sans);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.mindset-head span:last-child {
  color: var(--gold);
}

/* =========================================
   FINAL CTA
========================================= */

.why-closing {
  min-height: 650px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 100px 7vw;

  text-align: center;

  color: white;

  background: var(--plum);
}

.why-closing-content {
  max-width: 1000px;
}

.why-closing h2 {
  margin: 25px 0 55px;

  font-family: var(--serif);
  font-size: clamp(60px, 7vw, 110px);
  font-weight: 500;
  line-height: 0.85;
  letter-spacing: -0.05em;
}

.why-closing h2 em {
  color: var(--gold);
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1024px) {
  .why-intro-grid {
    gap: 70px;
  }
}

@media (max-width: 768px) {
  .why-hero {
    grid-template-columns: 1fr;
  }

  .why-hero-content {
    min-height: 720px;

    padding: 150px 6vw 80px;
  }

  .why-hero-visual {
    min-height: 600px;
  }

  .why-orbit-one {
    width: 280px;
    height: 280px;
  }

  .why-orbit-two {
    width: 450px;
    height: 450px;
  }

  .why-orbit-three {
    width: 620px;
    height: 620px;
  }

  .why-intro-grid {
    grid-template-columns: 1fr;

    gap: 35px;
  }

  .difference-grid {
    grid-template-columns: 1fr;
  }

  .difference-card {
    min-height: auto;

    padding: 45px 0;

    border-right: none;

    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .difference-icon {
    margin-top: 35px;
  }

  .transparency-section {
    grid-template-columns: 1fr;
  }

  .transparency-left {
    min-height: 650px;

    padding: 100px 6vw;
  }

  .transparency-right {
    min-height: 650px;

    padding: 35px;
  }

  .quality-grid {
    grid-template-columns: 1fr;

    gap: 30px;
  }

  .quality-number {
    font-size: 70px;
  }

  .modern-wellness {
    min-height: 650px;

    padding: 100px 6vw;
  }

  .mindset-row {
    grid-template-columns: 1fr;

    gap: 12px;
  }

  .mindset-row span {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .why-hero-content h1 {
    font-size: clamp(58px, 16vw, 85px);
  }

  .why-hero-line {
    align-items: flex-start;
    flex-direction: column;
  }

  .transparency-card {
    min-height: 450px;

    padding: 25px;
  }

  .large-letter {
    font-size: 170px;
  }

  .transparency-card-bottom {
    grid-template-columns: 1fr;
  }

  .modern-wellness-decoration {
    right: -40px;

    font-size: 350px;
  }
}

/* =========================================
   CONTACT PAGE
========================================= */

.contact-page {
  background: var(--cream);
}

/* =========================================
   CONTACT HERO
========================================= */

.contact-hero {
  position: relative;

  min-height: 92vh;

  display: flex;
  align-items: center;

  padding: 160px 8vw 100px;

  overflow: hidden;

  background: var(--warm-white);
}

.contact-hero-content {
  position: relative;

  z-index: 2;

  max-width: 900px;
}

.contact-hero-content h1 {
  margin-top: 25px;

  font-family: var(--serif);
  font-size: clamp(70px, 9vw, 135px);
  font-weight: 500;
  line-height: 0.84;
  letter-spacing: -0.05em;
}

.contact-hero-content h1 em {
  color: var(--gold);
}

.contact-hero-description {
  max-width: 430px;

  margin-top: 45px;

  color: var(--muted);

  font-size: 14px;
  line-height: 1.9;
}

/* HERO DECORATION */

.contact-hero-decoration {
  position: absolute;

  top: 50%;
  right: 8%;

  width: 550px;
  height: 550px;

  transform: translateY(-50%);
}

.contact-circle {
  position: absolute;

  top: 50%;
  left: 50%;

  border-radius: 50%;

  border: 1px solid rgba(183, 147, 79, 0.28);

  transform: translate(-50%, -50%);
}

.circle-one {
  width: 180px;
  height: 180px;
}

.circle-two {
  width: 350px;
  height: 350px;
}

.circle-three {
  width: 520px;
  height: 520px;

  border-color: rgba(183, 147, 79, 0.12);
}

.contact-hero-mark {
  position: absolute;

  top: 50%;
  left: 50%;

  transform: translate(-50%, -50%);

  color: var(--gold);

  font-family: var(--serif);
  font-size: 180px;
  font-style: italic;

  animation: contactFloat 6s ease-in-out infinite;
}

@keyframes contactFloat {
  0%,
  100% {
    transform: translate(-50%, -50%);
  }

  50% {
    transform: translate(-50%, -54%);
  }
}

/* =========================================
   CONTACT MAIN
========================================= */

.contact-main {
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;

  max-width: var(--container);

  margin: auto;

  gap: 120px;
}

/* LEFT */

.contact-information h2 {
  margin: 25px 0 35px;

  font-family: var(--serif);
  font-size: clamp(55px, 6vw, 90px);
  font-weight: 500;
  line-height: 0.9;
}

.contact-information h2 em {
  color: var(--gold);
}

.contact-intro-text {
  max-width: 400px;

  color: var(--muted);

  font-size: 14px;
  line-height: 1.9;
}

.contact-details {
  margin-top: 65px;
}

.contact-detail-item {
  padding: 25px 0;

  border-top: 1px solid var(--sand);
}

.contact-detail-label {
  display: block;

  margin-bottom: 12px;

  color: var(--gold);

  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.contact-detail-item a,
.contact-detail-item p {
  color: var(--plum);

  font-size: 14px;
  text-decoration: none;
}

.contact-detail-item p {
  color: var(--muted);

  line-height: 1.7;
}

.social-links {
  display: flex;

  gap: 25px;
}

.social-links a {
  position: relative;
}

.social-links a::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: -5px;

  width: 0;
  height: 1px;

  background: var(--gold);

  transition: width 0.3s ease;
}

.social-links a:hover::after {
  width: 100%;
}

/* =========================================
   CONTACT FORM
========================================= */

.contact-form-wrapper {
  position: relative;

  min-height: 650px;

  padding: 55px;

  background: var(--warm-white);

  border: 1px solid rgba(197, 183, 163, 0.35);
}

.contact-form {
  display: flex;
  flex-direction: column;

  gap: 28px;
}

.form-group {
  display: flex;
  flex-direction: column;

  position: relative;
}

.form-group label {
  margin-bottom: 10px;

  color: var(--plum);

  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;

  padding: 15px 0;

  outline: none;

  border: none;

  border-bottom: 1px solid var(--sand);

  background: transparent;

  color: var(--plum);

  font-family: var(--sans);
  font-size: 14px;

  transition: border-color 0.3s ease;
}

.form-group textarea {
  resize: vertical;

  min-height: 120px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #aaa09a;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

/* SELECT */

.form-group select {
  cursor: pointer;
}

/* FORM ERRORS */

.form-error {
  min-height: 15px;

  margin-top: 6px;

  color: #b05c5c;

  font-size: 10px;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
  border-color: #b05c5c;
}

/* SUBMIT BUTTON */

.contact-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;

  width: 100%;

  margin-top: 10px;

  padding: 18px 22px;

  border: none;

  cursor: pointer;

  background: var(--plum);

  color: white;

  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;

  transition:
    background 0.35s ease,
    transform 0.35s ease;
}

.contact-submit:hover {
  background: var(--gold);

  transform: translateY(-3px);
}

.submit-arrow {
  font-size: 20px;

  transition: transform 0.3s ease;
}

.contact-submit:hover .submit-arrow {
  transform: translateX(5px);
}

/* =========================================
   SUCCESS STATE
========================================= */

.form-success {
  position: absolute;

  inset: 0;

  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  padding: 50px;

  text-align: center;

  background: var(--warm-white);
}

.form-success.active {
  display: flex;

  animation: successReveal 0.6s ease;
}

@keyframes successReveal {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.success-icon {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 65px;
  height: 65px;

  margin-bottom: 30px;

  border: 1px solid var(--gold);

  border-radius: 50%;

  color: var(--gold);

  font-size: 25px;
}

.form-success h3 {
  margin: 20px 0 25px;

  font-family: var(--serif);
  font-size: 55px;
  font-weight: 500;
  line-height: 0.9;
}

.form-success h3 em {
  color: var(--gold);
}

.form-success > p:not(.eyebrow) {
  max-width: 320px;

  color: var(--muted);

  font-size: 13px;
  line-height: 1.8;
}

.send-another-message {
  margin-top: 35px;

  border: none;

  cursor: pointer;

  background: transparent;

  color: var(--gold);

  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

/* =========================================
   BUSINESS SECTION
========================================= */

.business-section {
  display: flex;
  align-items: center;

  min-height: 700px;

  padding: 120px 8vw;

  color: white;

  background: var(--plum);
}

.business-content {
  max-width: 950px;
}

.business-content h2 {
  margin: 25px 0 40px;

  font-family: var(--serif);
  font-size: clamp(60px, 7vw, 110px);
  font-weight: 500;
  line-height: 0.85;
  letter-spacing: -0.05em;
}

.business-content h2 em {
  color: var(--gold);
}

.business-content > p:not(.eyebrow) {
  max-width: 470px;

  margin-bottom: 40px;

  color: rgba(255, 255, 255, 0.68);

  font-size: 14px;
  line-height: 1.9;
}

.text-link-light {
  display: inline-flex;
  align-items: center;

  gap: 15px;

  padding-bottom: 10px;

  border-bottom: 1px solid rgba(255, 255, 255, 0.4);

  color: white;

  font-size: 13px;
  text-decoration: none;

  transition:
    border-color 0.3s ease,
    color 0.3s ease;
}

.text-link-light:hover {
  border-color: var(--gold);

  color: var(--gold);
}

.text-link-light span {
  font-size: 18px;
}

/* =========================================
   QUICK HELP / FAQ
========================================= */

.quick-help {
  background: var(--warm-white);
}

.quick-help-heading {
  max-width: var(--container);

  margin: auto;
}

.quick-help-heading h2 {
  margin-top: 25px;

  font-family: var(--serif);
  font-size: clamp(55px, 6vw, 95px);
  font-weight: 500;
  line-height: 0.9;
}

.quick-help-heading h2 em {
  color: var(--gold);
}

/* FAQ */

.faq-list {
  max-width: var(--container);

  margin: 80px auto 0;

  border-top: 1px solid var(--sand);
}

.faq-item {
  border-bottom: 1px solid var(--sand);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;

  width: 100%;

  padding: 28px 0;

  border: none;

  cursor: pointer;

  background: transparent;

  color: var(--plum);

  font-family: var(--serif);
  font-size: 28px;
  text-align: left;
}

.faq-icon {
  color: var(--gold);

  font-family: var(--sans);
  font-size: 24px;
  font-weight: 400;

  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* ANSWER */

.faq-answer {
  max-height: 0;

  overflow: hidden;

  transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 180px;
}

.faq-answer p {
  max-width: 650px;

  padding: 0 0 28px;

  color: var(--muted);

  font-size: 14px;
  line-height: 1.8;
}

/* =========================================
   CONTACT CLOSING
========================================= */

.contact-closing {
  padding: 150px 7vw;

  text-align: center;

  background: var(--cream);
}

.contact-closing-content {
  max-width: 1000px;

  margin: auto;
}

.contact-closing-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 80px;
  height: 80px;

  margin-bottom: 40px;

  border: 1px solid var(--gold);

  border-radius: 50%;

  color: var(--gold);

  font-family: var(--serif);
  font-size: 42px;
  font-style: italic;
}

.contact-closing h2 {
  margin-bottom: 55px;

  font-family: var(--serif);
  font-size: clamp(55px, 6vw, 95px);
  font-weight: 500;
  line-height: 0.9;
}

.contact-closing h2 em {
  color: var(--gold);
}

/* =========================================
   CONTACT RESPONSIVE
========================================= */

@media (max-width: 1100px) {
  .contact-hero-decoration {
    right: -80px;

    opacity: 0.7;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    min-height: 800px;

    padding: 150px 6vw 100px;
  }

  .contact-hero-decoration {
    top: auto;
    right: 50%;
    bottom: -100px;

    transform: translateX(50%);

    opacity: 0.5;
  }

  .contact-grid {
    grid-template-columns: 1fr;

    gap: 80px;
  }

  .contact-form-wrapper {
    min-height: 680px;

    padding: 35px 25px;
  }

  .business-section {
    min-height: 650px;

    padding: 100px 6vw;
  }

  .quick-help-heading h2 {
    font-size: 60px;
  }

  .faq-question {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .contact-hero-content h1 {
    font-size: clamp(58px, 16vw, 85px);
  }

  .contact-hero-decoration {
    width: 400px;
    height: 400px;
  }

  .circle-one {
    width: 130px;
    height: 130px;
  }

  .circle-two {
    width: 260px;
    height: 260px;
  }

  .circle-three {
    width: 390px;
    height: 390px;
  }

  .contact-hero-mark {
    font-size: 130px;
  }

  .form-success {
    padding: 30px;
  }

  .form-success h3 {
    font-size: 45px;
  }

  .faq-question {
    font-size: 21px;
  }
}

/* =========================================
   AFTER BITES PRODUCT PAGE
========================================= */

.after-bites-page {
  background: var(--cream);
}

/* =========================================
   HERO
========================================= */

.after-bites-hero {
  position: relative;
}

/* Product image atmosphere */

.after-bites-hero .product-detail-image-wrapper {
  background: radial-gradient(
    circle at center,
    rgba(183, 147, 79, 0.18),
    transparent 60%
  );
}

/* Warm product glow */

.after-bites-hero .product-detail-glow {
  background: radial-gradient(
    circle,
    rgba(183, 147, 79, 0.28),
    rgba(183, 147, 79, 0.05) 45%,
    transparent 70%
  );
}

/* =========================================
   AFTER BITES STATEMENT
========================================= */

.after-bites-statement {
  position: relative;

  min-height: 850px;

  display: flex;
  align-items: center;

  padding: 120px 8vw;

  overflow: hidden;

  background: var(--plum);

  color: white;
}

/* Huge background typography */

.statement-background-word {
  position: absolute;

  left: 50%;
  top: 50%;

  transform: translate(-50%, -50%);

  color: rgba(255, 255, 255, 0.035);

  font-family: var(--serif);
  font-size: clamp(150px, 22vw, 420px);

  font-weight: 500;

  white-space: nowrap;

  pointer-events: none;
}

.statement-content {
  position: relative;

  z-index: 2;

  max-width: 1000px;
}

.statement-content h2 {
  margin: 25px 0 40px;

  font-family: var(--serif);

  font-size: clamp(65px, 8vw, 130px);

  font-weight: 500;

  line-height: 0.84;

  letter-spacing: -0.05em;
}

.statement-content h2 em {
  color: var(--gold);
}

.statement-content > p {
  max-width: 450px;

  color: rgba(255, 255, 255, 0.65);

  font-size: 14px;

  line-height: 1.9;
}

/* =========================================
   PRODUCT PHILOSOPHY
========================================= */

.product-philosophy {
  background: var(--warm-white);
}

.philosophy-heading {
  max-width: var(--container);

  margin: auto;
}

.philosophy-heading h2 {
  margin-top: 25px;

  font-family: var(--serif);

  font-size: clamp(55px, 6vw, 100px);

  font-weight: 500;

  line-height: 0.9;

  letter-spacing: -0.04em;
}

.philosophy-heading h2 em {
  color: var(--gold);
}

/* CARDS */

.philosophy-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 25px;

  max-width: var(--container);

  margin: 90px auto 0;
}

.philosophy-card {
  min-height: 350px;

  display: flex;

  flex-direction: column;

  justify-content: flex-end;

  padding: 40px;

  background: var(--cream);

  border: 1px solid rgba(197, 183, 163, 0.35);

  transition:
    transform 0.4s ease,
    background 0.4s ease;
}

.philosophy-card:hover {
  transform: translateY(-10px);

  background: #f0e9df;
}

.philosophy-number {
  display: block;

  margin-bottom: auto;

  color: var(--gold);

  font-size: 10px;

  font-weight: 700;

  letter-spacing: 0.12em;
}

.philosophy-card h3 {
  margin-bottom: 15px;

  font-family: var(--serif);

  font-size: 35px;

  font-weight: 500;
}

.philosophy-card p {
  color: var(--muted);

  font-size: 13px;

  line-height: 1.8;
}

/* =========================================
   PRODUCT SHOWCASE
========================================= */

.product-showcase-section {
  display: grid;

  grid-template-columns:
    0.9fr
    1.1fr;

  min-height: 850px;

  background: var(--cream);
}

.product-showcase-text {
  display: flex;

  flex-direction: column;

  justify-content: center;

  padding: 100px 8vw;
}

.product-showcase-text h2 {
  margin: 25px 0 35px;

  font-family: var(--serif);

  font-size: clamp(55px, 6vw, 95px);

  font-weight: 500;

  line-height: 0.88;
}

.product-showcase-text h2 em {
  color: var(--gold);
}

.product-showcase-text > p:not(.eyebrow) {
  max-width: 380px;

  color: var(--muted);

  font-size: 14px;

  line-height: 1.9;
}

/* IMAGE */

.product-showcase-image {
  position: relative;

  display: flex;

  align-items: center;

  justify-content: center;

  overflow: hidden;

  background: #e8dfd2;
}

.product-showcase-image img {
  width: 70%;

  max-height: 650px;

  object-fit: contain;

  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-showcase-image:hover img {
  transform: scale(1.05);
}

/* BADGE */

.showcase-badge {
  position: absolute;

  right: 45px;

  bottom: 45px;

  display: flex;

  align-items: center;

  justify-content: center;

  flex-direction: column;

  width: 110px;
  height: 110px;

  border-radius: 50%;

  background: var(--plum);

  color: white;
}

.showcase-badge span {
  font-family: var(--serif);

  font-size: 35px;

  font-style: italic;

  color: var(--gold);
}

.showcase-badge small {
  margin-top: 3px;

  font-size: 6px;

  letter-spacing: 0.12em;
}

/* =========================================
   PRODUCT RITUAL
========================================= */

.product-ritual {
  background: var(--warm-white);
}

.ritual-heading {
  max-width: var(--container);

  margin: auto;
}

.ritual-heading h2 {
  margin-top: 25px;

  font-family: var(--serif);

  font-size: clamp(55px, 6vw, 100px);

  font-weight: 500;

  line-height: 0.9;
}

.ritual-heading h2 em {
  color: var(--gold);
}

/* TIMELINE */

.ritual-timeline {
  display: grid;

  grid-template-columns:
    1fr
    100px
    1fr
    100px
    1fr;

  align-items: start;

  max-width: var(--container);

  margin: 100px auto 0;
}

.ritual-step {
  padding: 30px 0;
}

.ritual-step-number {
  display: block;

  margin-bottom: 35px;

  color: var(--gold);

  font-size: 10px;

  font-weight: 700;

  letter-spacing: 0.12em;
}

.ritual-step h3 {
  margin-bottom: 15px;

  font-family: var(--serif);

  font-size: 42px;

  font-weight: 500;
}

.ritual-step p {
  max-width: 240px;

  color: var(--muted);

  font-size: 13px;

  line-height: 1.8;
}

.ritual-line {
  height: 1px;

  margin-top: 42px;

  background: var(--sand);
}

/* =========================================
   AFTER BITES CTA
========================================= */

.after-bites-cta {
  background: var(--plum);
}

.after-bites-cta .product-detail-cta-content {
  color: white;
}

.after-bites-cta p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.65);
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1000px) {
  .product-showcase-section {
    grid-template-columns: 1fr;
  }

  .product-showcase-text {
    min-height: 600px;
  }

  .product-showcase-image {
    min-height: 700px;
  }

  .philosophy-grid {
    grid-template-columns: 1fr;
  }

  .philosophy-card {
    min-height: 280px;
  }

  .ritual-timeline {
    grid-template-columns: 1fr;

    gap: 30px;
  }

  .ritual-line {
    display: none;
  }
}

@media (max-width: 768px) {
  .after-bites-statement {
    min-height: 700px;

    padding: 100px 6vw;
  }

  .statement-background-word {
    font-size: 180px;

    transform: translate(-50%, -50%) rotate(-90deg);
  }

  .philosophy-grid {
    margin-top: 60px;
  }

  .product-showcase-text {
    padding: 100px 6vw;
  }

  .product-showcase-image {
    min-height: 550px;
  }

  .product-showcase-image img {
    width: 80%;
  }

  .showcase-badge {
    width: 85px;
    height: 85px;

    right: 25px;
    bottom: 25px;
  }
}

@media (max-width: 480px) {
  .statement-content h2 {
    font-size: 65px;
  }

  .philosophy-card {
    padding: 30px;
  }

  .ritual-step h3 {
    font-size: 35px;
  }

  .product-showcase-image {
    min-height: 450px;
  }
}

/* =========================================
   AFTER BITES PRODUCT CARD
========================================= */

.product-card-after-bites {
  position: relative;

  background: #e9e1d5;
}

.product-card-after-bites .product-card-glow {
  background: radial-gradient(
    circle at center,
    rgba(183, 147, 79, 0.28),
    transparent 68%
  );
}

.product-card-after-bites .product-card-image img {
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card-after-bites:hover .product-card-image img {
  transform: scale(1.06) translateY(-8px);
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 1100px) {
  .product-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .product-cards-grid {
    grid-template-columns: 1fr;

    padding: 0 6vw 90px;

    gap: 22px;
  }

  .product-card {
    min-height: 560px;
  }
}

@media (max-width: 480px) {
  .product-card {
    min-height: 520px;

    border-radius: 22px;

    padding: 24px;
  }

  .product-card-content {
    left: 24px;

    right: 24px;

    bottom: 26px;
  }

  .product-card-image {
    width: 78%;
  }
}

/* =========================================
   LUMIVÁNA LIVING CORE
========================================= */

.hero-visual {
  position: relative;

  width: 100%;

  height: 720px;

  overflow: visible;

  perspective: 1400px;

  --mouse-x: 0px;

  --mouse-y: 0px;
}

.visual-grid {
  position: absolute;

  inset: 8%;

  opacity: 0.45;

  background-image:
    linear-gradient(rgba(53, 27, 47, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(53, 27, 47, 0.05) 1px, transparent 1px);

  background-size: 50px 50px;

  mask-image: radial-gradient(circle, black 20%, transparent 75%);
}

.visual-ambient {
  position: absolute;

  border-radius: 50%;

  filter: blur(60px);

  pointer-events: none;
}

.ambient-one {
  width: 280px;
  height: 280px;

  top: 20%;
  left: 15%;

  background: rgba(79, 67, 125, 0.12);

  animation: ambientFloat 8s ease-in-out infinite;
}

.ambient-two {
  width: 320px;
  height: 320px;

  right: 5%;
  bottom: 10%;

  background: rgba(185, 148, 99, 0.12);

  animation: ambientFloat 10s ease-in-out infinite reverse;
}

@keyframes ambientFloat {
  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(35px, -25px);
  }
}

/* =========================================
   ORBIT SYSTEM
========================================= */

.orbit-system {
  position: absolute;

  top: 50%;
  left: 50%;

  width: 520px;
  height: 520px;

  transform: translate(
    calc(-50% + var(--mouse-x)),
    calc(-50% + var(--mouse-y))
  );

  transition: transform 0.8s var(--ease);
}

.orbit {
  position: absolute;

  top: 50%;
  left: 50%;

  border-radius: 50%;

  border: 1px solid rgba(53, 27, 47, 0.14);
}

.orbit-one {
  width: 220px;
  height: 220px;

  transform: translate(-50%, -50%);

  animation: orbitRotateOne 10s linear infinite;
}

.orbit-two {
  width: 340px;
  height: 340px;

  transform: translate(-50%, -50%) rotateX(65deg);

  border-color: rgba(185, 148, 99, 0.28);

  animation: orbitRotateTwo 16s linear infinite;
}

.orbit-three {
  width: 470px;
  height: 470px;

  transform: translate(-50%, -50%) rotateY(65deg);

  border-color: rgba(53, 27, 47, 0.1);

  animation: orbitRotateThree 22s linear infinite;
}

.orbit-four {
  width: 580px;
  height: 580px;

  transform: translate(-50%, -50%) rotateX(75deg) rotateZ(25deg);

  border-color: rgba(185, 148, 99, 0.16);

  animation: orbitRotateFour 28s linear infinite reverse;
}

@keyframes orbitRotateOne {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes orbitRotateTwo {
  from {
    transform: translate(-50%, -50%) rotateX(65deg) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotateX(65deg) rotate(360deg);
  }
}

@keyframes orbitRotateThree {
  from {
    transform: translate(-50%, -50%) rotateY(65deg) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotateY(65deg) rotate(360deg);
  }
}

@keyframes orbitRotateFour {
  from {
    transform: translate(-50%, -50%) rotateX(75deg) rotateZ(25deg) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotateX(75deg) rotateZ(25deg)
      rotate(360deg);
  }
}

/* =========================================
   ORBIT PARTICLES
========================================= */

.orbit-particle {
  position: absolute;

  width: 13px;
  height: 13px;

  border-radius: 50%;

  top: 50%;
  left: -6px;

  box-shadow: 0 0 25px currentColor;
}

.particle-blue {
  background: #657aaf;

  color: #657aaf;
}

.particle-red {
  background: #b65b68;

  color: #b65b68;
}

.particle-gold {
  background: #c6a16f;

  color: #c6a16f;
}

.particle-plum {
  background: #56314f;

  color: #56314f;
}

/* =========================================
   CENTRAL CORE
========================================= */

.living-core {
  position: absolute;

  top: 50%;
  left: 50%;

  width: 150px;
  height: 150px;

  transform: translate(
    calc(-50% + var(--mouse-x)),
    calc(-50% + var(--mouse-y))
  );

  transition: transform 0.7s var(--ease);

  z-index: 5;
}

.core-inner {
  position: absolute;

  inset: 18px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 50%;

  background: radial-gradient(
    circle at 35% 25%,
    #725875 0%,
    var(--plum) 55%,
    var(--deep-plum) 100%
  );

  box-shadow:
    inset 0 0 35px rgba(255, 255, 255, 0.08),
    0 20px 60px rgba(53, 27, 47, 0.35),
    0 0 80px rgba(185, 148, 99, 0.15);

  animation: coreBreathing 5s ease-in-out infinite;
}

.core-letter {
  position: relative;

  z-index: 2;

  color: white;

  font-family: var(--serif);

  font-size: 65px;

  font-weight: 500;
}

.core-shine {
  position: absolute;

  top: 28px;
  left: 42px;

  width: 35px;
  height: 20px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.25);

  filter: blur(6px);

  transform: rotate(-25deg);
}

.core-aura {
  position: absolute;

  top: 50%;
  left: 50%;

  border-radius: 50%;

  transform: translate(-50%, -50%);

  border: 1px solid rgba(185, 148, 99, 0.22);
}

.aura-one {
  width: 180px;
  height: 180px;

  animation: auraPulse 4s ease-out infinite;
}

.aura-two {
  width: 260px;
  height: 260px;

  animation: auraPulse 4s ease-out infinite 1.3s;
}

.aura-three {
  width: 360px;
  height: 360px;

  animation: auraPulse 4s ease-out infinite 2.6s;
}

@keyframes auraPulse {
  0% {
    opacity: 0;

    transform: translate(-50%, -50%) scale(0.75);
  }

  40% {
    opacity: 0.5;
  }

  100% {
    opacity: 0;

    transform: translate(-50%, -50%) scale(1.1);
  }
}

@keyframes coreBreathing {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.06);
  }
}

/* =========================================
   FLOATING OBJECTS
========================================= */

.floating-object {
  position: absolute;

  z-index: 6;
}

.floating-one {
  top: 17%;
  left: 12%;

  animation: floatOne 7s ease-in-out infinite;
}

.floating-two {
  top: 67%;
  right: 8%;

  animation: floatTwo 8s ease-in-out infinite;
}

.floating-three {
  bottom: 14%;
  left: 24%;

  animation: floatThree 9s ease-in-out infinite;
}

.floating-four {
  top: 22%;
  right: 18%;

  animation: floatFour 6s ease-in-out infinite;
}

.floating-capsule {
  width: 38px;
  height: 62px;

  border-radius: 30px;

  transform: rotate(35deg);

  box-shadow:
    inset 5px 5px 12px rgba(255, 255, 255, 0.35),
    0 15px 30px rgba(0, 0, 0, 0.12);
}

.capsule-blue {
  background: linear-gradient(135deg, #9ba8ce, #445478);
}

.capsule-red {
  background: linear-gradient(135deg, #e29ba1, #8f3545);
}

.capsule-gold {
  background: linear-gradient(135deg, #efd39b, #b98b45);
}

.floating-dot {
  width: 18px;
  height: 18px;

  border-radius: 50%;

  background: var(--gold);

  box-shadow: 0 0 30px rgba(185, 148, 99, 0.7);
}

@keyframes floatOne {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  50% {
    transform: translate(20px, -35px) rotate(20deg);
  }
}

@keyframes floatTwo {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  50% {
    transform: translate(-30px, -25px) rotate(-25deg);
  }
}

@keyframes floatThree {
  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(-20px, 30px);
  }
}

@keyframes floatFour {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-25px);
  }
}

/* =========================================
   HERO VISUAL LABELS
========================================= */

.visual-label {
  position: absolute;

  z-index: 8;

  display: flex;

  align-items: center;

  gap: 10px;

  color: rgba(53, 27, 47, 0.6);

  font-size: 8px;

  font-weight: 700;

  letter-spacing: 0.18em;
}

.visual-label-one {
  top: 14%;
  right: 0;
}

.visual-label-two {
  bottom: 22%;
  left: 0;
}

.visual-label-three {
  top: 52%;
  right: 1%;
}

.label-line {
  width: 45px;
  height: 1px;

  background: rgba(185, 148, 99, 0.55);
}

.label-dot {
  width: 6px;
  height: 6px;

  border-radius: 50%;

  background: var(--gold);
}

.visual-coordinate {
  position: absolute;

  color: rgba(53, 27, 47, 0.32);

  font-size: 7px;

  letter-spacing: 0.15em;
}

.coordinate-one {
  top: 7%;
  left: 15%;
}

.coordinate-two {
  right: 10%;
  bottom: 7%;
}

/* =========================================
   WHATSAPP BUSINESS QR CARD
========================================= */

.business-whatsapp-card {
  position: relative;

  width: min(1180px, calc(100% - 80px));
  margin: 80px auto 0;
  padding: 34px;

  background: rgba(255, 255, 255, 0.96);

  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;

  box-shadow:
    0 30px 80px rgba(30, 15, 30, 0.18),
    0 8px 30px rgba(30, 15, 30, 0.08);

  overflow: hidden;

  transition:
    transform 0.5s var(--ease),
    box-shadow 0.5s var(--ease);
}

.business-whatsapp-card::before {
  content: "";

  position: absolute;

  width: 320px;
  height: 320px;

  top: -180px;
  right: -100px;

  border-radius: 50%;

  background: rgba(108, 61, 91, 0.07);

  pointer-events: none;
}

.business-whatsapp-card:hover {
  transform: translateY(-6px);

  box-shadow:
    0 40px 100px rgba(30, 15, 30, 0.22),
    0 12px 35px rgba(30, 15, 30, 0.1);
}


/* =========================================
   CARD HEADER
========================================= */

.whatsapp-card-header {
  position: relative;
  z-index: 1;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding-bottom: 24px;

  border-bottom: 1px solid rgba(45, 28, 43, 0.1);
}

.whatsapp-card-header .eyebrow {
  margin: 0;
  color: var(--plum);
}

.whatsapp-status {
  display: inline-flex;
  align-items: center;
  gap: 9px;

  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;

  color: #555;
}

.whatsapp-status > span {
  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: #25d366;

  box-shadow: 0 0 0 5px rgba(37, 211, 102, 0.12);
}


/* =========================================
   CARD CONTENT
========================================= */

.whatsapp-card-content {
  position: relative;
  z-index: 1;

  display: grid;

  grid-template-columns: 1fr 330px;

  align-items: center;

  gap: 70px;

  padding: 48px 30px 20px;
}


/* =========================================
   COPY
========================================= */

.whatsapp-copy {
  max-width: 520px;
}

.whatsapp-number {
  display: block;

  margin-bottom: 16px;

  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;

  color: rgba(45, 28, 43, 0.4);
}

.whatsapp-copy h3 {
  margin: 0 0 20px;

  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 500;

  line-height: 0.92;
  letter-spacing: -0.035em;

  color: var(--deep-plum);
}

.whatsapp-copy h3 em {
  font-weight: 400;
  color: var(--plum);
}

.whatsapp-copy > p {
  max-width: 430px;

  margin: 0;

  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.8;

  color: #666;
}


/* =========================================
   PERSON
========================================= */

.whatsapp-person {
  display: flex;
  align-items: center;

  gap: 14px;

  margin-top: 32px;
}

.whatsapp-person-mark {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 46px;
  height: 46px;

  border-radius: 50%;

  background: var(--deep-plum);
  color: white;

  font-family: var(--serif);
  font-size: 22px;
}

.whatsapp-person div {
  display: flex;
  flex-direction: column;

  gap: 3px;
}

.whatsapp-person strong {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;

  color: var(--deep-plum);
}

.whatsapp-person small {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;

  color: #888;
}


/* =========================================
   QR
========================================= */

.whatsapp-qr-wrapper {
  display: flex;
  flex-direction: column;

  align-items: center;
}

.whatsapp-qr-frame {
  width: 260px;
  height: 260px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 0;

  overflow: hidden;

  background: #fff;

  border: 1px solid rgba(45, 28, 43, 0.08);
  border-radius: 22px;

  box-shadow:
    0 20px 50px rgba(45, 28, 43, 0.12),
    0 4px 15px rgba(45, 28, 43, 0.06);

  transition:
    transform 0.5s var(--ease),
    box-shadow 0.5s var(--ease);
}

.business-whatsapp-card:hover .whatsapp-qr-frame {
  transform: scale(1.025);

  box-shadow:
    0 25px 60px rgba(45, 28, 43, 0.16),
    0 6px 20px rgba(45, 28, 43, 0.08);
}

.whatsapp-qr-frame img {
  display: block;

  width: 100%;
  height: 100%;

  max-width: none;
  max-height: none;

  object-fit: contain;
}

.qr-caption {
  margin-top: 18px;

  font-family: var(--sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;

  color: rgba(45, 28, 43, 0.5);
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

  .business-section {
    flex-direction: column;
    align-items: stretch;
  }

  .business-content {
    width: 100%;
    max-width: 100%;
  }

  .business-whatsapp-card {
    width: 100%;
    max-width: 100%;

    margin: 50px 0 0;
    padding: 24px;

    box-sizing: border-box;
  }

  .whatsapp-card-header {
    align-items: flex-start;
    flex-direction: column;

    gap: 14px;
  }

  .whatsapp-card-content {
    width: 100%;

    grid-template-columns: 1fr;

    gap: 42px;

    padding: 38px 8px 10px;

    box-sizing: border-box;
  }

  .whatsapp-copy {
    width: 100%;
    max-width: 100%;
  }

  .whatsapp-copy h3 {
    font-size: 48px;
  }

  .whatsapp-qr-wrapper {
    width: 100%;
  }

  .whatsapp-qr-frame {
    width: 260px;
    height: 260px;
  }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

  .business-section {
    padding: 80px 6vw;
  }

  .business-whatsapp-card {
    margin-top: 50px;
    padding: 20px;
  }

  .whatsapp-card-content {
    padding: 35px 4px 10px;
  }

  .whatsapp-copy h3 {
    font-size: 42px;
  }

  .whatsapp-qr-frame {
    width: 240px;
    height: 240px;
  }
}