:root {
  --forest: #1B3D2F;
  --forest-deep: #12281F;
  --sage: #4A7C59;
  --leaf: #7A9E7E;
  --mist: #D7E3D4;
  --cream: #F6F1E7;
  --ivory: #EFE8D6;
  --gold: #C4A35A;
  --gold-dark: #A7863E;
  --earth: #3D2E22;
  --text: #2A241C;
  --text-mid: #5C5348;
  --text-soft: #8A8074;
  --white: #FFFdf8;
  --card: #FFFdf8;
  --border: rgba(27, 61, 47, 0.12);
  --nav-height: 78px;
  --bottom-nav-height: 64px;
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --site-container: 1220px;
  --radius: 22px;
  --shadow: 0 18px 50px rgba(27, 61, 47, 0.08);
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Source Sans 3", "Segoe UI", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; }
ul { list-style: none; }
button, input, select, textarea { font-family: inherit; }

.site-container {
  width: 100%;
  max-width: var(--site-container);
  margin: 0 auto;
  padding: 0 5%;
}

.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* NAV */
header nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  background: rgba(246, 241, 231, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(196, 163, 90, 0.22);
  transition: box-shadow 0.3s, background 0.3s;
}
header nav.scrolled {
  background: rgba(246, 241, 231, 0.98);
  box-shadow: 0 8px 30px rgba(27, 61, 47, 0.08);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  z-index: 1001;
}
.logo-mark {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}
.logo-wordmark { display: flex; flex-direction: column; line-height: 1.05; }
.logo-name {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--forest);
}
.logo-tag {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  text-decoration: none;
  color: var(--forest);
  font-size: 15px;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 999px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--sage); background: rgba(74, 124, 89, 0.08); }
.nav-cta {
  background: var(--forest) !important;
  color: var(--cream) !important;
  margin-left: 8px;
  padding: 10px 18px !important;
}
.nav-cta:hover { background: var(--sage) !important; }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  z-index: 1001;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 22px;
  background: var(--forest);
  margin: 0 auto;
  transition: 0.25s;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 18px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu a {
  text-decoration: none;
  font-family: var(--font-serif);
  font-size: 32px;
  color: var(--forest);
}
.mobile-cta {
  margin-top: 12px;
  background: var(--forest);
  color: var(--cream) !important;
  padding: 12px 28px;
  border-radius: 999px;
  font-family: var(--font-sans) !important;
  font-size: 15px !important;
}

/* BUTTONS */
.btn-primary,
.btn-outline,
.btn-outline-dark,
.btn-ghost,
.btn-cta-primary,
.btn-cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  padding: 13px 24px;
  transition: 0.25s;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-primary,
.btn-cta-primary {
  background: var(--forest);
  color: var(--cream);
}
.btn-primary:hover,
.btn-cta-primary:hover { background: var(--sage); }
.btn-outline,
.btn-hero-outline {
  border-color: rgba(246, 241, 231, 0.45);
  color: var(--cream);
  background: transparent;
}
.btn-outline:hover { background: rgba(255,255,255,0.08); }
.btn-outline-dark,
.btn-cta-secondary {
  border-color: var(--forest);
  color: var(--forest);
  background: transparent;
}
.btn-outline-dark:hover,
.btn-cta-secondary:hover { background: var(--forest); color: var(--cream); }

/* HERO HOME */
.hero-home {
  position: relative;
  min-height: 100vh;
  padding: calc(var(--nav-height) + 36px) 0 72px;
  overflow: hidden;
  color: var(--cream);
  background: #163328;
}
.hero-home-bg { position: absolute; inset: 0; }
.hero-home-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  transform: scale(1.04);
}
.hero-vignette {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(12, 28, 22, 0.82) 0%, rgba(12, 28, 22, 0.55) 42%, rgba(12, 28, 22, 0.18) 68%, rgba(12, 28, 22, 0.35) 100%),
    radial-gradient(circle at 78% 42%, rgba(196, 163, 90, 0.22), transparent 42%);
}
.hero-gold-wash {
  position: absolute;
  inset: auto 0 0;
  height: 140px;
  background: linear-gradient(transparent, rgba(246, 241, 231, 0.08));
}
.hero-home-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  min-height: calc(100vh - var(--nav-height) - 108px);
}
.hero-copy { max-width: 560px; }
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 18px;
  padding: 8px 14px 8px 12px;
  border: 1px solid rgba(196, 163, 90, 0.45);
  border-radius: 999px;
  background: rgba(18, 40, 31, 0.35);
  backdrop-filter: blur(8px);
}
.hero-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px var(--gold);
}
.hero-home h1 {
  font-family: var(--font-serif);
  font-size: clamp(48px, 6.4vw, 82px);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: -0.03em;
  text-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
}
.hero-home h1 em {
  font-style: italic;
  color: #e8c97a;
}
.hero-home .hero-desc {
  margin: 22px 0 30px;
  font-size: 18px;
  line-height: 1.75;
  color: rgba(246, 241, 231, 0.9);
  max-width: 500px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-home .btn-primary,
.cta-banner .btn-cta-primary {
  background: var(--gold);
  color: var(--forest-deep);
  box-shadow: 0 10px 28px rgba(196, 163, 90, 0.35);
}
.hero-home .btn-primary:hover,
.cta-banner .btn-cta-primary:hover {
  background: var(--cream);
  color: var(--forest-deep);
}
.hero-home .btn-outline {
  border-color: rgba(246, 241, 231, 0.55);
  background: rgba(255, 253, 248, 0.08);
  backdrop-filter: blur(8px);
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 40px;
  width: 100%;
  max-width: 480px;
}
.hero-stat {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(246, 241, 231, 0.1);
  border: 1px solid rgba(196, 163, 90, 0.28);
  backdrop-filter: blur(10px);
}
.hero-stat-num {
  font-family: var(--font-serif);
  font-size: 30px;
  color: #e8c97a;
  line-height: 1;
}
.hero-stat-lbl {
  font-size: 12px;
  color: rgba(246, 241, 231, 0.78);
  letter-spacing: 0.04em;
  margin-top: 6px;
}
.hero-showcase {
  position: relative;
  min-height: 560px;
  padding-bottom: 12px;
}
.hero-orbit {
  position: absolute;
  width: 420px;
  height: 420px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: 1px dashed rgba(196, 163, 90, 0.45);
  border-radius: 50%;
  animation: orbit-spin 36s linear infinite;
}
.hero-orbit::after {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(246, 241, 231, 0.12);
  border-radius: 50%;
}
.hero-main-card {
  position: absolute;
  left: 50%;
  top: 48%;
  transform: translate(-50%, -50%);
  width: min(340px, 72%);
  aspect-ratio: 1;
  border-radius: 28px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.35);
  border: 3px solid rgba(232, 201, 122, 0.7);
  z-index: 2;
}
.hero-slide-stage {
  position: absolute;
  inset: 0;
  background: #1a3328;
}
.hero-slide-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.1);
  transition: opacity 0.75s ease, transform 0.9s ease;
  z-index: 0;
}
.hero-slide-img.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}
.hero-slide-img.is-leave {
  opacity: 0;
  transform: scale(1.04);
  z-index: 2;
}
.hero-main-caption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(18, 40, 31, 0.78);
  color: var(--cream);
  backdrop-filter: blur(8px);
  z-index: 3;
}
.hero-main-caption span {
  display: block;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero-main-caption strong {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 500;
}
.hero-main-caption strong.is-in {
  animation: hero-name-in 0.55s ease;
}
.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 2%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 4;
}
.hero-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(246, 241, 231, 0.4);
  cursor: pointer;
  transition: width 0.3s, background 0.3s;
}
.hero-dots button[aria-selected="true"] {
  width: 22px;
  background: var(--gold);
}
@keyframes hero-name-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}
.hero-float-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px 8px 8px;
  background: rgba(246, 241, 231, 0.94);
  color: var(--forest);
  text-decoration: none;
  border-radius: 999px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
  font-family: var(--font-serif);
  font-size: 16px;
  transition: transform 0.25s;
}
.hero-float-card:hover { transform: translateY(-4px); }
.hero-float-card img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}
.hero-float-1 { top: 8%; left: 4%; }
.hero-float-2 { top: 14%; right: 2%; }
.hero-float-3 { bottom: 18%; left: 0; }
.hero-float-4 { bottom: 10%; right: 6%; }
@keyframes orbit-spin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-orbit { animation: none; }
  .hero-slide-img,
  .hero-main-caption strong.is-in { animation: none; transition: none; }
}

/* PAGE HERO */
.page-hero {
  position: relative;
  padding: calc(var(--nav-height) + 64px) 5% 72px;
  background:
    linear-gradient(180deg, rgba(18, 40, 31, 0.78), rgba(18, 40, 31, 0.88)),
    url("../assets/img/hero-herbs.png") center/cover no-repeat;
  color: var(--cream);
  text-align: center;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 48px;
  background: linear-gradient(transparent, var(--cream));
}
.page-hero .hero-content { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }
.page-breadcrumb {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(246, 241, 231, 0.65);
  margin-bottom: 18px;
}
.page-breadcrumb a { color: var(--gold); text-decoration: none; }
.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 500;
  line-height: 1.05;
}
.page-hero h1 em { font-style: italic; color: var(--gold); }
.page-hero p {
  margin: 16px auto 0;
  max-width: 560px;
  color: rgba(246, 241, 231, 0.8);
  line-height: 1.7;
}
.legal-hero h1 {
  font-size: clamp(28px, 6.5vw, 64px);
  padding: 0 8px;
  max-width: 100%;
  white-space: normal;
}
.legal-hero h1 em { display: inline-block; }
.legal-hero .hero-content { max-width: min(760px, 100%); }
.legal-hero p { padding: 0 16px; }

/* SECTIONS */
section { padding: 88px 0; }
.bg-cream { background: var(--cream); }
.bg-ivory { background: var(--ivory); }
.bg-white { background: var(--white); }
.bg-forest { background: var(--forest); color: var(--cream); }
.section-label {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 700;
  margin-bottom: 10px;
}
.bg-forest .section-label { color: var(--gold); }
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 500;
  color: var(--forest);
  line-height: 1.12;
}
.bg-forest .section-title { color: var(--cream); }
.section-subtitle {
  margin-top: 14px;
  color: var(--text-mid);
  line-height: 1.75;
  font-size: 17px;
  max-width: 620px;
}
.bg-forest .section-subtitle { color: rgba(246, 241, 231, 0.78); }
.section-header-flex,
.section-header-center { margin-bottom: 40px; }
.section-header-flex {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
}
.section-header-center { text-align: center; }
.section-header-center .section-subtitle { margin-left: auto; margin-right: auto; }
.leaf-divider {
  width: 64px;
  height: 12px;
  margin: 18px auto 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 12'%3E%3Cpath d='M2 6h22M40 6h22' stroke='%23C4A35A' stroke-width='1'/%3E%3Cpath d='M32 1c-4 3-4 7 0 10 4-3 4-7 0-10z' fill='%234A7C59'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* ABOUT SPLIT */
.split-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: center;
}
.split-visual {
  position: relative;
}
.split-visual img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 28px;
}
.split-chip {
  position: absolute;
  left: 20px;
  bottom: 20px;
  background: var(--cream);
  color: var(--forest);
  padding: 16px 18px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}
.split-chip strong { display: block; font-family: var(--font-serif); font-size: 22px; }
.feature-list { display: grid; gap: 18px; margin-top: 28px; }
.feature-item { display: grid; grid-template-columns: 48px 1fr; gap: 14px; }
.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--ivory);
  display: grid;
  place-items: center;
  color: var(--sage);
  font-size: 20px;
}
.feature-item h4 { font-size: 17px; color: var(--forest); margin-bottom: 4px; }
.feature-item p { font-size: 15px; color: var(--text-mid); line-height: 1.6; }

/* PRODUCTS */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.filter-chip {
  border: 1px solid var(--border);
  background: transparent;
  color: var(--forest);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 14px;
  cursor: pointer;
  transition: 0.2s;
}
.filter-chip:hover,
.filter-chip.active {
  background: var(--forest);
  color: var(--cream);
  border-color: var(--forest);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
a.product-card,
.product-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(27, 61, 47, 0.04);
  transition: transform 0.3s, box-shadow 0.3s;
}
a.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.product-img-wrap {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--ivory);
}
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
a.product-card:hover .product-img-wrap img { transform: scale(1.05); }
.product-body { padding: 20px 20px 22px; display: flex; flex-direction: column; flex: 1; }
.product-cat {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 700;
  margin-bottom: 8px;
}
.product-name {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 500;
  color: var(--forest);
}
.product-botanical {
  font-style: italic;
  color: var(--sage);
  font-size: 14px;
  margin: 4px 0 10px;
}
.product-desc {
  color: var(--text-mid);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 16px;
}
.view-details {
  margin-top: auto;
  font-size: 14px;
  font-weight: 700;
  color: var(--forest);
  letter-spacing: 0.04em;
}
.view-details::after { content: " →"; color: var(--gold-dark); }

/* PRODUCT DETAIL */
.product-detail {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: start;
}
.product-detail-media {
  position: sticky;
  top: calc(var(--nav-height) + 24px);
}
.product-detail-media img {
  width: 100%;
  border-radius: 28px;
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--ivory);
}
.product-detail-hindi {
  font-size: 15px;
  color: var(--text-soft);
  margin-bottom: 8px;
}
.product-detail h1 {
  font-family: var(--font-serif);
  font-size: clamp(40px, 5vw, 58px);
  font-weight: 500;
  color: var(--forest);
  line-height: 1;
}
.product-long { margin: 20px 0; color: var(--text-mid); line-height: 1.8; font-size: 17px; }
.detail-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 24px 0 28px;
}
.detail-meta div {
  background: var(--ivory);
  border-radius: 16px;
  padding: 16px;
}
.detail-meta dt {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 700;
  margin-bottom: 6px;
}
.detail-meta dd { color: var(--forest); font-size: 15px; line-height: 1.5; }
.benefits-list {
  display: grid;
  gap: 10px;
  margin: 8px 0 28px;
}
.benefits-list li {
  position: relative;
  padding-left: 22px;
  color: var(--text-mid);
  line-height: 1.6;
}
.benefits-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--sage);
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.product-missing { text-align: center; padding: 40px 0; }

/* PILLARS */
.pillars-section {
  position: relative;
  padding: 100px 0 108px;
  background: #1a3329;
  overflow: hidden;
}
.pillars-section::before {
  content: "IV";
  position: absolute;
  right: 4%;
  top: 40px;
  font-family: var(--font-serif);
  font-size: 180px;
  line-height: 1;
  color: rgba(196, 163, 90, 0.08);
  pointer-events: none;
}
.pillars-head {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: end;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}
.pillars-section .section-label { color: var(--gold); }
.pillars-section .section-title {
  color: var(--cream);
  font-size: clamp(40px, 5vw, 62px);
}
.pillars-section .section-title em {
  font-style: italic;
  color: #e8c97a;
}
.pillars-section .section-subtitle {
  color: rgba(246, 241, 231, 0.78);
  margin: 0;
  max-width: none;
  padding-bottom: 8px;
}
.pillars-bento {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  grid-template-rows: 250px 250px;
  gap: 16px;
  position: relative;
  z-index: 1;
}
.pillar-tile {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  min-height: 0;
  isolation: isolate;
  border: 1px solid rgba(196, 163, 90, 0.22);
}
.pillar-tile-tall { grid-row: 1 / 3; }
.pillar-tile-wide { grid-column: 2 / 4; }
.pillar-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 0.7s ease;
}
.pillar-tile:hover img { transform: scale(1.1); }
.pillar-tile-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 28, 22, 0.15) 0%, rgba(12, 28, 22, 0.55) 48%, rgba(12, 28, 22, 0.88) 100%);
}
.pillar-tile-tall .pillar-tile-shade {
  background: linear-gradient(180deg, rgba(12, 28, 22, 0.2) 10%, rgba(12, 28, 22, 0.72) 100%);
}
.pillar-tile-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 24px 24px 26px;
  color: var(--cream);
}
.pillar-kicker {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #e8c97a;
  font-weight: 700;
  margin-bottom: 8px;
}
.pillar-tile h3 {
  font-family: var(--font-serif);
  font-size: clamp(26px, 2.4vw, 36px);
  font-weight: 500;
  line-height: 1.1;
  margin: 0 0 8px;
  color: var(--cream);
}
.pillar-tile p {
  margin: 0;
  color: rgba(246, 241, 231, 0.82);
  line-height: 1.55;
  font-size: 15px;
  max-width: 38ch;
}

.values-grid,
.quality-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.value-card,
.quality-card,
.origin-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 28px;
}
.quality-num {
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--gold);
}
.value-card h3,
.quality-card h3,
.origin-card h3 {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 500;
  color: var(--forest);
  margin: 8px 0 10px;
}
.value-card p,
.quality-card p,
.origin-card p {
  color: var(--text-mid);
  line-height: 1.7;
}
.value-icon { font-size: 26px; margin-bottom: 8px; }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.process-step {
  background: rgba(255, 253, 248, 0.08);
  border: 1px solid rgba(196, 163, 90, 0.22);
  border-radius: 20px;
  padding: 24px;
}
.process-step .num {
  font-family: var(--font-serif);
  font-size: 30px;
  color: var(--gold);
}
.process-step h3 { font-family: var(--font-serif); font-size: 24px; margin: 8px 0; }
.process-step p { color: rgba(246, 241, 231, 0.75); line-height: 1.6; font-size: 15px; }

.origin-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* TEAM */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.team-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  text-align: center;
  padding-bottom: 24px;
}
.team-card-header { height: 72px; background: linear-gradient(135deg, var(--forest), var(--sage)); }
.team-avatar { margin-top: -52px; }
.team-avatar-ring {
  width: 120px;
  height: 120px;
  margin: 0 auto;
  border-radius: 50%;
  padding: 4px;
  background: var(--cream);
  border: 2px solid var(--gold);
}
.team-photo { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.team-card h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  margin: 14px 0 6px;
  color: var(--forest);
}
.team-role-pill {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 700;
}
.team-desc { color: var(--text-mid); font-size: 14px; padding: 0 18px; line-height: 1.6; }

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: start;
}
.contact-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  margin-top: 20px;
}
.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--ivory);
  display: grid;
  place-items: center;
}
.contact-item-label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 700;
}
.contact-item-val { color: var(--text); line-height: 1.6; margin-top: 4px; }
.contact-form {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 32px;
}
.contact-form h3 {
  font-family: var(--font-serif);
  font-size: 32px;
  color: var(--forest);
  margin-bottom: 20px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 14px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid var(--border);
  background: var(--cream);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 15px;
  color: var(--text);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.submit-btn {
  width: 100%;
  border: 0;
  background: var(--forest);
  color: var(--cream);
  border-radius: 999px;
  padding: 14px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
}
.submit-btn:hover { background: var(--sage); }
.form-legal {
  margin: 0 0 14px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-mid);
}
.form-legal a { color: var(--forest); font-weight: 600; }

/* LEGAL PAGES */
.legal-section {
  padding: 40px 5% 96px;
  background: var(--cream);
}
.legal-doc {
  max-width: 800px;
  margin: 0 auto;
}
.legal-switch {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.legal-switch a {
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  color: var(--forest);
  border: 1px solid rgba(27, 61, 47, 0.18);
  background: #fff;
  padding: 8px 14px;
  border-radius: 999px;
}
.legal-switch a:hover,
.legal-switch a.active {
  background: var(--forest);
  color: var(--cream);
  border-color: var(--forest);
}
.legal-updated {
  margin: 0 0 28px;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-dark);
}
.legal-doc h2 {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 600;
  color: var(--forest);
  margin: 36px 0 12px;
}
.legal-doc h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--forest);
  margin: 22px 0 8px;
}
.legal-doc p {
  margin: 0 0 14px;
  line-height: 1.8;
  color: rgba(27, 61, 47, 0.82);
  font-size: 16px;
}
.legal-doc ul {
  margin: 0 0 16px;
  padding-left: 1.2em;
  list-style: disc;
}
.legal-doc li {
  margin: 0 0 8px;
  line-height: 1.75;
  color: rgba(27, 61, 47, 0.82);
  font-size: 16px;
}
.legal-doc a { color: var(--forest); font-weight: 600; }
.legal-note {
  margin-top: 36px;
  padding: 18px 20px;
  border-left: 3px solid var(--gold);
  background: rgba(196, 163, 90, 0.12);
  border-radius: 0 12px 12px 0;
}

/* FAQ */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  padding: 18px 0;
  font-size: 18px;
  font-family: var(--font-serif);
  color: var(--forest);
  cursor: pointer;
}
.faq-answer { display: none; padding: 0 0 18px; color: var(--text-mid); line-height: 1.7; }
.faq-item.open .faq-answer { display: block; }

/* CTA */
.cta-section {
  padding: 8px 5% 96px;
  margin-top: 12px;
}
.cta-banner {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 8%, rgba(196, 163, 90, 0.22), transparent 34%),
    radial-gradient(circle at 8% 92%, rgba(74, 124, 89, 0.35), transparent 40%),
    linear-gradient(160deg, #23493a 0%, var(--forest) 48%, var(--forest-deep) 100%);
  color: var(--cream);
  border-radius: 28px;
  padding: 36px 48px 44px;
  border: 1px solid rgba(196, 163, 90, 0.28);
  box-shadow: 0 24px 60px rgba(18, 40, 31, 0.18);
}
.cta-banner::before {
  content: "";
  position: absolute;
  left: 48px;
  right: 48px;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.cta-banner-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
  opacity: 0.45;
}
.cta-orb-1 {
  width: 180px;
  height: 180px;
  right: -40px;
  top: -50px;
  background: rgba(196, 163, 90, 0.35);
}
.cta-orb-2 {
  width: 220px;
  height: 220px;
  left: -70px;
  bottom: -90px;
  background: rgba(122, 158, 126, 0.28);
}
.cta-leaf-mark {
  position: absolute;
  right: 36px;
  bottom: 18px;
  width: 72px;
  height: 72px;
  opacity: 0.18;
  background: url("../assets/brand/logo.svg") center/contain no-repeat;
}
.cta-banner-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.45fr auto;
  gap: 28px 40px;
  align-items: start;
}
.cta-copy { max-width: 640px; padding-top: 4px; }
.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  margin: 0 0 14px;
}
.cta-badge::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
}
.cta-banner h2 {
  font-family: var(--font-serif);
  font-size: clamp(34px, 4.4vw, 50px);
  font-weight: 500;
  line-height: 1.08;
  margin: 0;
}
.cta-banner h2 em { font-style: italic; color: var(--gold); }
.cta-banner p {
  margin: 16px 0 0;
  max-width: 520px;
  color: rgba(246, 241, 231, 0.82);
  line-height: 1.75;
  font-size: 17px;
}
.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 6px;
  min-width: 220px;
}
.btn-cta-secondary { border-color: rgba(246,241,231,0.4); color: var(--cream); }

/* FOOTER */
.site-footer {
  background: #13251e;
  color: var(--cream);
  padding: 64px 5% 120px;
  border-top: 1px solid rgba(196, 163, 90, 0.3);
}
.footer-inner {
  max-width: var(--site-container);
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 1fr 1.15fr;
  gap: 36px 32px;
  align-items: start;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(196, 163, 90, 0.18);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-bottom: 14px;
}
.footer-logo .logo-name { color: var(--cream); }
.footer-logo .logo-tag { color: #e8c97a; }
.footer-brand p {
  margin: 0;
  color: rgba(246, 241, 231, 0.68);
  line-height: 1.7;
  font-size: 15px;
  max-width: 280px;
}
.footer-col h5 {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold);
  margin: 0 0 16px;
  padding: 0 0 10px;
  border-bottom: 1px solid rgba(196, 163, 90, 0.22);
}
.footer-col ul { margin: 0; padding: 0; list-style: none; }
.footer-col a {
  display: block;
  text-decoration: none;
  color: rgba(246, 241, 231, 0.82);
  padding: 5px 0;
  font-size: 15px;
}
.footer-col a:hover { color: #e8c97a; }
.footer-contact-list li { margin: 0 0 12px; }
.footer-contact-list span {
  display: block;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 3px;
}
.footer-contact-list a {
  padding: 0;
  color: var(--cream);
  font-size: 15px;
  word-break: break-word;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 20px;
  font-size: 13px;
  color: rgba(246, 241, 231, 0.5);
}
.footer-bottom a { color: #e8c97a; text-decoration: none; }
.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}
.contact-item-val a { color: var(--forest); text-decoration: none; font-weight: 600; }
.contact-item-val a:hover { color: var(--sage); }

/* BOTTOM NAV */
.bottom-nav {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 900;
  background: rgba(246, 241, 231, 0.96);
  border-top: 1px solid rgba(196, 163, 90, 0.25);
  padding-bottom: var(--safe-bottom);
}
.bottom-nav-inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.bottom-nav a {
  text-decoration: none;
  text-align: center;
  padding: 10px 4px 8px;
  font-size: 11px;
  color: var(--text-mid);
}
.bottom-nav a.active,
.bottom-nav a:hover { color: var(--forest); }
.bn-icon { display: block; font-size: 16px; margin-bottom: 2px; }

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 92px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 0;
  background: var(--forest);
  color: var(--cream);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  z-index: 901;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; }

.whatsapp-float {
  position: fixed;
  left: 18px;
  bottom: 92px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25D366;
  display: grid;
  place-items: center;
  z-index: 901;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.35);
}
.whatsapp-float svg { width: 26px; height: 26px; fill: #fff; }

.fade-up { opacity: 0; transform: translateY(18px); transition: 0.7s ease; }
.fade-up.visible { opacity: 1; transform: none; }

/* Site protection leftovers */
body.site-protected {
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}
body.site-protected input,
body.site-protected textarea,
body.site-protected select {
  -webkit-user-select: text;
  user-select: text;
}
body.site-protected img {
  -webkit-user-drag: none;
  user-drag: none;
}
body.devtools-blocked { overflow: hidden !important; height: 100vh; }
.devtools-block-overlay {
  position: fixed;
  inset: 0;
  z-index: 2147483646;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(18, 40, 31, 0.96);
}
.devtools-block-card {
  max-width: 460px;
  text-align: center;
  background: var(--forest);
  border: 1px solid rgba(196, 163, 90, 0.35);
  border-radius: 20px;
  padding: 40px 32px;
  color: #fff;
}
.devtools-block-card h2 { font-family: var(--font-serif); font-size: 28px; margin-bottom: 12px; }

@media (max-width: 1024px) {
  .hero-home-inner,
  .split-grid,
  .product-detail,
  .contact-grid,
  .cta-banner-grid { grid-template-columns: 1fr; }
  .hero-home-inner { min-height: 0; gap: 28px; }
  .hero-showcase { min-height: 460px; order: -1; margin-top: 8px; }
  .hero-orbit { width: 320px; height: 320px; }
  .hero-main-card { width: min(280px, 68%); }
  .products-grid,
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .pillars-head { grid-template-columns: 1fr; gap: 12px; }
  .pillars-bento {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 280px 220px 220px;
  }
  .pillar-tile-tall { grid-row: 1; grid-column: 1 / 3; }
  .pillar-tile-wide { grid-column: 1 / 3; grid-row: 2; }
  .values-grid,
  .quality-grid,
  .team-grid,
  .process-steps,
  .origin-grid { grid-template-columns: 1fr 1fr; }
  .product-detail-media { position: static; }
  .split-visual img { height: 380px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
}

@media (max-width: 768px) {
  section { padding: 64px 0; }
  .hero-home { min-height: auto; padding-bottom: 48px; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .hero-stat:last-child { grid-column: 1 / -1; }
  .hero-showcase { min-height: 390px; }
  .hero-float-4 { display: none; }
  .hero-home h1 { font-size: 42px; }
  .section-header-flex { flex-direction: column; align-items: flex-start; }
  .pillars-bento {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }
  .pillar-tile,
  .pillar-tile-tall,
  .pillar-tile-wide { grid-column: auto; grid-row: auto; min-height: 240px; }
  .values-grid,
  .quality-grid,
  .team-grid,
  .process-steps,
  .origin-grid,
  .form-row { grid-template-columns: 1fr; }
  .pillars-section { padding: 72px 0; }
  .pillars-section::before { font-size: 110px; top: 16px; }
  .cta-banner { padding: 28px 22px 32px; }
  .cta-banner::before { left: 22px; right: 22px; }
  .cta-copy { padding-top: 0; }
  .cta-actions { width: 100%; padding-top: 8px; }
  .btn-cta-primary, .btn-cta-secondary { width: 100%; }
  .bottom-nav { display: block; }
  footer { padding-bottom: 140px; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .products-grid,
  .related-grid { grid-template-columns: 1fr; }
  .detail-meta { grid-template-columns: 1fr; }
  .legal-hero h1 { font-size: 32px; }
}
