/* ============================================================
   আসলটা — ASOLTA · Premium Brand Website
   Palette: Forest #173F35 · Honey Gold #D69A2D · Clay #F4ECD9
   ============================================================ */

:root {
  --forest: #173F35;
  --forest-deep: #0E2A23;
  --forest-black: #081D17;
  --gold: #D69A2D;
  --gold-light: #EFC169;
  --gold-soft: #E8B85C;
  --red: #ED1C24;
  --clay: #F4ECD9;
  --clay-soft: #FAF6EC;
  --white: #FFFFFF;
  --ink: #14231F;
  --muted: #5E6F69;
  --muted-light: #A8B5AF;
  --line: rgba(23, 63, 53, 0.10);
  --line-gold: rgba(214, 154, 45, 0.35);

  --font-display: 'Tiro Bangla', 'Noto Sans Bengali', Georgia, serif;
  --font-body: 'Noto Sans Bengali', 'Tiro Bangla', -apple-system, 'Segoe UI', sans-serif;

  --shadow-sm: 0 2px 8px rgba(8, 29, 23, 0.06);
  --shadow-md: 0 12px 32px -8px rgba(8, 29, 23, 0.14);
  --shadow-lg: 0 32px 64px -16px rgba(8, 29, 23, 0.22);
  --shadow-gold: 0 12px 32px -8px rgba(214, 154, 45, 0.45);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  --container: 1180px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink);
  background: var(--clay-soft);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; }

::selection { background: var(--gold); color: var(--forest-black); }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; line-height: 1.3; color: var(--forest); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ---------- Accessibility ---------- */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--gold); color: var(--forest-black);
  padding: 12px 20px; border-radius: 0 0 12px 0; font-weight: 700;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 0;
  transition: padding 0.4s var(--ease-out), background 0.4s, box-shadow 0.4s, backdrop-filter 0.4s;
}
.navbar.scrolled {
  padding: 10px 0;
  background: rgba(250, 246, 236, 0.82);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  backdrop-filter: blur(18px) saturate(160%);
  box-shadow: 0 1px 0 var(--line), var(--shadow-sm);
}
.navbar.on-dark:not(.scrolled) { --nav-ink: var(--clay); }
.navbar .nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 46px; height: 46px; flex: none;
  display: grid; place-items: center; padding: 6px;
  border-radius: 13px;
  background: var(--clay);
  border: 1px solid var(--line-gold);
  box-shadow: 0 4px 12px -4px rgba(8, 29, 23, 0.25), inset 0 1px 0 rgba(255,255,255,0.6);
  transition: transform 0.5s var(--ease-spring), box-shadow 0.4s;
}
.brand-mark img { width: auto; height: 100%; object-fit: contain; }
.brand:hover .brand-mark { transform: rotate(-6deg) scale(1.07); box-shadow: 0 8px 20px -6px rgba(214,154,45,0.5), inset 0 1px 0 rgba(255,255,255,0.6); }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name { font-family: var(--font-display); font-size: 1.45rem; color: var(--forest); letter-spacing: 0.01em; }
.brand-sub { font-size: 0.62rem; letter-spacing: 0.32em; color: var(--gold); font-weight: 700; text-transform: uppercase; }
.navbar.on-dark:not(.scrolled) .brand-name { color: var(--clay); }

.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  position: relative; padding: 8px 14px; font-size: 0.95rem; font-weight: 500;
  color: var(--forest); border-radius: 999px; transition: color 0.25s, background 0.25s;
}
.navbar.on-dark:not(.scrolled) .nav-links a { color: rgba(244, 236, 217, 0.85); }
.nav-links a::after {
  content: ''; position: absolute; left: 50%; bottom: 2px; width: 0; height: 2px;
  background: var(--gold); border-radius: 2px; transform: translateX(-50%);
  transition: width 0.3s var(--ease-out);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { width: 40%; }

.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--forest); color: var(--clay) !important;
  padding: 10px 22px !important; border-radius: 999px; font-weight: 600;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s, background 0.3s;
}
.navbar.on-dark:not(.scrolled) .nav-cta { background: var(--gold); color: var(--forest-black) !important; }
.nav-cta:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold); background: var(--gold); color: var(--forest-black) !important; }
.nav-cta::after { display: none; }

.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; background: transparent; border: 0; border-radius: 12px;
}
.nav-toggle span { display: block; width: 22px; height: 2px; margin: 0 auto; background: var(--forest); border-radius: 2px; transition: transform 0.35s var(--ease-out), opacity 0.25s; }
.navbar.on-dark:not(.scrolled) .nav-toggle span { background: var(--clay); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; inset: 0; top: 0; padding: 110px 32px 40px;
    flex-direction: column; align-items: stretch; gap: 4px;
    background: rgba(250, 246, 236, 0.96);
    -webkit-backdrop-filter: blur(24px); backdrop-filter: blur(24px);
    transform: translateY(-100%); opacity: 0; pointer-events: none;
    transition: transform 0.5s var(--ease-out), opacity 0.4s;
    z-index: -1;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links a { font-size: 1.25rem; padding: 14px 8px; color: var(--forest) !important; border-bottom: 1px solid var(--line); border-radius: 0; }
  .nav-links a::after { display: none; }
  .nav-cta { margin-top: 18px; justify-content: center; border-radius: 16px; background: var(--forest) !important; color: var(--clay) !important; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(1100px 620px at 82% 20%, rgba(214, 154, 45, 0.16), transparent 60%),
    radial-gradient(900px 700px at 8% 90%, rgba(214, 154, 45, 0.08), transparent 55%),
    linear-gradient(160deg, #10312A 0%, var(--forest) 45%, #0C241E 100%);
  color: var(--clay);
  padding: 170px 0 110px;
}
.hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(244,236,217,0.05) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 75%);
}

.orb { position: absolute; border-radius: 50%; filter: blur(70px); pointer-events: none; will-change: transform; }
.orb-1 { width: 420px; height: 420px; top: -120px; right: -80px; background: rgba(214, 154, 45, 0.22); animation: drift 14s ease-in-out infinite alternate; }
.orb-2 { width: 320px; height: 320px; bottom: -100px; left: -80px; background: rgba(232, 184, 92, 0.12); animation: drift 18s ease-in-out infinite alternate-reverse; }
@keyframes drift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to   { transform: translate3d(-40px, 34px, 0) scale(1.12); }
}

.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; position: relative; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 18px; border-radius: 999px; font-size: 0.85rem; font-weight: 600;
  color: var(--gold-soft);
  background: rgba(244, 236, 217, 0.07);
  border: 1px solid rgba(214, 154, 45, 0.35);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 0 rgba(237,28,36,0.6); animation: pulse 2.2s infinite; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(237,28,36,0.5); }
  70% { box-shadow: 0 0 0 12px rgba(237,28,36,0); }
  100% { box-shadow: 0 0 0 0 rgba(237,28,36,0); }
}

.hero h1 {
  font-size: clamp(2.4rem, 5.4vw, 4rem);
  line-height: 1.22; color: var(--clay); margin: 26px 0 8px;
  text-wrap: balance;
}
.hero h1 .gold {
  background: linear-gradient(100deg, var(--gold-soft), var(--gold) 55%, #B87F1D);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero .hero-en { font-size: clamp(1rem, 1.6vw, 1.2rem); letter-spacing: 0.04em; color: var(--muted-light); font-weight: 500; margin-bottom: 18px; }
.hero-lede { max-width: 54ch; color: rgba(244, 236, 217, 0.82); font-size: 1.08rem; margin-bottom: 36px; }

.hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 32px; border-radius: 999px; border: 0;
  font-size: 1.02rem; font-weight: 700; font-family: var(--font-body);
  transition: transform 0.35s var(--ease-spring), box-shadow 0.35s, background 0.3s, color 0.3s;
  will-change: transform;
}
.btn svg { transition: transform 0.3s var(--ease-out); }
.btn:hover svg { transform: translateX(4px); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold) 60%, #C0851F);
  color: var(--forest-black);
  box-shadow: var(--shadow-gold), inset 0 1px 0 rgba(255,255,255,0.35);
}
.btn-gold:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 20px 44px -10px rgba(214,154,45,0.6), inset 0 1px 0 rgba(255,255,255,0.35); }
.btn-gold:active { transform: translateY(-1px) scale(0.99); }
.btn-ghost {
  background: rgba(244, 236, 217, 0.06); color: var(--clay);
  border: 1px solid rgba(244, 236, 217, 0.28);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
}
.btn-ghost:hover { transform: translateY(-3px); background: rgba(244, 236, 217, 0.12); border-color: rgba(244,236,217,0.5); }
.btn-forest { background: var(--forest); color: var(--clay); box-shadow: var(--shadow-md); }
.btn-forest:hover { transform: translateY(-3px); background: var(--forest-deep); box-shadow: var(--shadow-lg); }

.hero-stats { display: flex; gap: 40px; margin-top: 52px; flex-wrap: wrap; }
.hero-stat .num { font-family: var(--font-display); font-size: 2rem; color: var(--gold-soft); line-height: 1.1; }
.hero-stat .lbl { font-size: 0.85rem; color: rgba(244,236,217,0.65); }

/* Hero visual */
.hero-visual { position: relative; perspective: 1200px; }
.hero-photo-wrap {
  position: relative; border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: 0 48px 90px -24px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(244,236,217,0.12);
  transform-style: preserve-3d;
  transition: transform 0.5s var(--ease-out);
  animation: heroFloat 7s ease-in-out infinite alternate;
}
@keyframes heroFloat { from { transform: translateY(0) rotateX(0.5deg) rotateY(-1deg); } to { transform: translateY(-14px) rotateX(-0.5deg) rotateY(1deg); } }
.hero-photo-wrap::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(200deg, rgba(214,154,45,0.12), transparent 40%);
  pointer-events: none;
}
.hero-photo-wrap img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/4.35; }

.glass-chip {
  position: absolute; z-index: 3;
  display: flex; align-items: center; gap: 12px;
  padding: 14px 20px; border-radius: 18px;
  background: rgba(250, 246, 236, 0.14);
  border: 1px solid rgba(244, 236, 217, 0.3);
  -webkit-backdrop-filter: blur(16px) saturate(150%); backdrop-filter: blur(16px) saturate(150%);
  box-shadow: 0 18px 40px -12px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.25);
  color: var(--clay); font-size: 0.9rem; font-weight: 600;
  animation: chipFloat 5.5s ease-in-out infinite alternate;
}
.glass-chip .ico {
  width: 38px; height: 38px; flex: none; display: grid; place-items: center;
  border-radius: 12px; background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: var(--forest-black); box-shadow: 0 6px 14px -4px rgba(214,154,45,0.6);
}
.glass-chip small { display: block; font-weight: 400; color: rgba(244,236,217,0.72); font-size: 0.76rem; }
.chip-1 { top: 8%; left: -7%; animation-delay: 0.6s; }
.chip-2 { bottom: 10%; right: -6%; animation-delay: 1.4s; }
@keyframes chipFloat { from { transform: translateY(0); } to { transform: translateY(-16px); } }

@media (max-width: 980px) {
  .hero { padding: 140px 0 80px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { max-width: 520px; margin: 0 auto; }
  .chip-1 { left: 2%; } .chip-2 { right: 2%; }
}

/* ============================================================
   SECTIONS (shared)
   ============================================================ */
section { padding: 104px 0; position: relative; }
.section-head { max-width: 720px; margin: 0 auto 64px; text-align: center; }
.section-head.left { text-align: left; margin-left: 0; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.eyebrow::before { content: ''; width: 28px; height: 2px; background: var(--gold); border-radius: 2px; }
.section-head.center .eyebrow::after { content: ''; width: 28px; height: 2px; background: var(--gold); border-radius: 2px; }
.section-head h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); margin-bottom: 16px; text-wrap: balance; }
.section-head p { color: var(--muted); font-size: 1.05rem; }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out); transition-delay: var(--d, 0s); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; }
.reveal-scale { opacity: 0; transform: scale(0.92) translateY(20px); transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-spring); transition-delay: var(--d, 0s); }
.reveal-scale.in { opacity: 1; transform: none; }

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust { padding: 34px 0; background: var(--forest-black); color: rgba(244,236,217,0.75); overflow: hidden; }
.marquee { display: flex; gap: 0; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent); mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent); }
.marquee-track { display: flex; flex: none; align-items: center; gap: 56px; padding-right: 56px; animation: marquee 30s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-100%); } }
.trust-item { display: inline-flex; align-items: center; gap: 12px; font-size: 0.95rem; font-weight: 500; white-space: nowrap; }
.trust-item svg { color: var(--gold); flex: none; }

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: var(--clay-soft); }
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.svc-card {
  position: relative; padding: 36px 30px; border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(23, 63, 53, 0.08);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s, border-color 0.45s;
  overflow: hidden;
}
.svc-card::before {
  content: ''; position: absolute; inset: 0; opacity: 0;
  background: radial-gradient(340px 240px at var(--mx, 50%) var(--my, 0%), rgba(214,154,45,0.14), transparent 65%);
  transition: opacity 0.4s; pointer-events: none;
}
.svc-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--line-gold); }
.svc-card:hover::before { opacity: 1; }
.svc-icon {
  width: 58px; height: 58px; display: grid; place-items: center; margin-bottom: 22px;
  border-radius: 18px; color: var(--forest);
  background: linear-gradient(145deg, rgba(214,154,45,0.2), rgba(214,154,45,0.08));
  border: 1px solid var(--line-gold);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.6);
  transition: transform 0.45s var(--ease-spring), background 0.4s, color 0.4s;
}
.svc-card:hover .svc-icon { transform: translateY(-4px) rotate(-6deg) scale(1.08); background: linear-gradient(145deg, var(--gold-soft), var(--gold)); color: var(--forest-black); }
.svc-card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.svc-card p { color: var(--muted); font-size: 0.97rem; }

@media (max-width: 980px) { .cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .cards-grid { grid-template-columns: 1fr; } }

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: linear-gradient(180deg, var(--clay-soft), var(--clay) 120%); overflow: hidden; }
.about-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 64px; align-items: center; }
.about-visual { position: relative; }
.about-visual .frame {
  border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg);
  transform: rotate(-1.5deg); transition: transform 0.6s var(--ease-out);
}
.about-visual:hover .frame { transform: rotate(0deg) scale(1.015); }
.about-visual .frame img { aspect-ratio: 4/4.6; object-fit: cover; width: 100%; }
.about-card {
  position: absolute; right: -18px; bottom: 34px; max-width: 250px;
  padding: 22px 24px; border-radius: 20px;
  background: rgba(23, 63, 53, 0.88); color: var(--clay);
  border: 1px solid rgba(214,154,45,0.4);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  box-shadow: var(--shadow-lg);
}
.about-card .big { font-family: var(--font-display); font-size: 1.7rem; color: var(--gold-soft); }
.about-card p { font-size: 0.85rem; color: rgba(244,236,217,0.8); }
.about-copy h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); margin-bottom: 22px; }
.about-copy p { color: var(--muted); margin-bottom: 18px; }
.about-copy .legal-id {
  margin: 26px 0; padding: 20px 24px; border-radius: var(--radius-md);
  background: rgba(255,255,255,0.7); border: 1px dashed var(--line-gold);
  font-size: 0.95rem;
}
.legal-id strong { color: var(--forest); }
.about-points { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 24px; margin-top: 26px; }
.about-points li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.96rem; color: var(--ink); }
.about-points svg { color: var(--gold); flex: none; margin-top: 5px; }

@media (max-width: 980px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-card { right: 8px; }
  .about-points { grid-template-columns: 1fr; }
}

/* ============================================================
   PRODUCTS
   ============================================================ */
.products { background: var(--forest-deep); color: var(--clay); }
.products .section-head h2 { color: var(--clay); }
.products .section-head p { color: rgba(244,236,217,0.68); }
.prod-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.prod-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  background: rgba(244, 236, 217, 0.05);
  border: 1px solid rgba(244, 236, 217, 0.12);
  transition: transform 0.15s linear, box-shadow 0.4s, border-color 0.4s;
  transform-style: preserve-3d; will-change: transform;
}
.prod-card:hover { border-color: rgba(214,154,45,0.55); box-shadow: 0 30px 60px -18px rgba(0,0,0,0.55); }
.prod-img { overflow: hidden; aspect-ratio: 1/0.92; }
.prod-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease-out); }
.prod-card:hover .prod-img img { transform: scale(1.07); }
.prod-body { padding: 22px 22px 26px; }
.prod-tag { display: inline-block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 8px; }
.prod-body h3 { color: var(--clay); font-size: 1.22rem; margin-bottom: 6px; }
.prod-body p { font-size: 0.88rem; color: rgba(244,236,217,0.65); }
.prod-shine { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(420px 300px at var(--mx, 50%) var(--my, 50%), rgba(244,236,217,0.1), transparent 60%); opacity: 0; transition: opacity 0.35s; }
.prod-card:hover .prod-shine { opacity: 1; }

@media (max-width: 980px) { .prod-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .prod-grid { grid-template-columns: 1fr; } }

/* ============================================================
   BENEFITS
   ============================================================ */
.benefits { background: var(--clay-soft); }
.benefit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.benefit-list { display: flex; flex-direction: column; gap: 18px; }
.benefit-item {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 22px 24px; border-radius: var(--radius-md);
  background: rgba(255,255,255,0.75); border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s, border-color 0.4s;
}
.benefit-item:hover { transform: translateX(8px); box-shadow: var(--shadow-md); border-color: var(--line-gold); }
.benefit-num {
  font-family: var(--font-display); font-size: 1.1rem; flex: none;
  width: 44px; height: 44px; display: grid; place-items: center;
  border-radius: 50%; color: var(--forest-black);
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  box-shadow: 0 6px 14px -4px rgba(214,154,45,0.5);
}
.benefit-item h3 { font-size: 1.12rem; margin-bottom: 4px; }
.benefit-item p { font-size: 0.92rem; color: var(--muted); }

.benefit-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.stat-card {
  padding: 34px 28px; border-radius: var(--radius-lg); text-align: center;
  background: var(--forest); color: var(--clay);
  border: 1px solid rgba(214,154,45,0.28);
  box-shadow: var(--shadow-md);
  transition: transform 0.45s var(--ease-spring), box-shadow 0.4s;
}
.stat-card:hover { transform: translateY(-6px) scale(1.02); box-shadow: var(--shadow-lg); }
.stat-card:nth-child(2) { background: linear-gradient(150deg, var(--gold-soft), var(--gold)); color: var(--forest-black); border: 0; }
.stat-card:nth-child(2) .stat-lbl { color: rgba(8,29,23,0.75); }
.stat-num { font-family: var(--font-display); font-size: 2.6rem; line-height: 1.1; }
.stat-lbl { font-size: 0.88rem; color: rgba(244,236,217,0.7); margin-top: 6px; }

@media (max-width: 980px) { .benefit-grid { grid-template-columns: 1fr; gap: 44px; } }
@media (max-width: 480px) { .benefit-stats { grid-template-columns: 1fr; } }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { background: linear-gradient(180deg, var(--clay) -30%, var(--clay-soft) 30%); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card {
  position: relative; padding: 34px 30px; border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.8);
  border: 1px solid var(--line);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  box-shadow: var(--shadow-sm);
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s;
}
.testi-card:hover { transform: translateY(-8px) rotate(-0.5deg); box-shadow: var(--shadow-lg); }
.testi-card .quote-mark { font-family: Georgia, serif; font-size: 4rem; line-height: 0.6; color: var(--gold); opacity: 0.5; display: block; margin-bottom: 18px; }
.testi-card blockquote { font-size: 0.99rem; color: var(--ink); margin-bottom: 24px; }
.testi-who { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 46px; height: 46px; border-radius: 50%; flex: none;
  display: grid; place-items: center; font-weight: 700; font-size: 1rem;
  color: var(--clay); background: linear-gradient(135deg, var(--forest), #2A5C4E);
  border: 2px solid var(--gold-soft);
}
.testi-who .name { font-weight: 700; font-size: 0.95rem; color: var(--forest); line-height: 1.3; }
.testi-who .role { font-size: 0.8rem; color: var(--muted); }
.stars { color: var(--gold); letter-spacing: 2px; font-size: 0.85rem; margin-bottom: 12px; }

@media (max-width: 980px) { .testi-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; } }

/* ============================================================
   PRICING
   ============================================================ */
.pricing { background: var(--clay-soft); }
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; align-items: stretch; }
.price-card {
  position: relative; display: flex; flex-direction: column;
  padding: 40px 34px; border-radius: var(--radius-xl);
  background: rgba(255,255,255,0.85); border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s, border-color 0.4s;
}
.price-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); border-color: var(--line-gold); }
.price-card.featured {
  background: linear-gradient(165deg, var(--forest) 0%, var(--forest-deep) 100%);
  color: var(--clay); border: 1px solid rgba(214,154,45,0.5);
  box-shadow: var(--shadow-lg); transform: scale(1.04);
}
.price-card.featured:hover { transform: scale(1.04) translateY(-10px); }
.price-card.featured h3 { color: var(--clay); }
.plan-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  padding: 6px 18px; border-radius: 999px; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold)); color: var(--forest-black);
  box-shadow: var(--shadow-gold); white-space: nowrap;
}
.price-card h3 { font-size: 1.35rem; margin-bottom: 6px; }
.plan-desc { font-size: 0.9rem; color: var(--muted); margin-bottom: 24px; }
.price-card.featured .plan-desc { color: rgba(244,236,217,0.7); }
.price { font-family: var(--font-display); font-size: 2.7rem; color: var(--forest); line-height: 1; margin-bottom: 4px; }
.price small { font-size: 1rem; color: var(--muted); font-family: var(--font-body); }
.price-card.featured .price { color: var(--gold-soft); }
.price-card.featured .price small { color: rgba(244,236,217,0.6); }
.plan-per { font-size: 0.82rem; color: var(--muted); margin-bottom: 26px; }
.price-card.featured .plan-per { color: rgba(244,236,217,0.6); }
.plan-list { flex: 1; display: flex; flex-direction: column; gap: 12px; margin-bottom: 30px; }
.plan-list li { display: flex; gap: 10px; font-size: 0.94rem; align-items: flex-start; }
.plan-list svg { color: var(--gold); flex: none; margin-top: 5px; }
.price-card .btn { width: 100%; }

@media (max-width: 980px) {
  .price-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .price-card.featured { transform: none; }
  .price-card.featured:hover { transform: translateY(-10px); }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: linear-gradient(180deg, var(--clay-soft), var(--clay) 140%); }
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  border-radius: var(--radius-md); overflow: hidden;
  background: rgba(255,255,255,0.8); border: 1px solid var(--line);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.faq-item[open] { border-color: var(--line-gold); box-shadow: var(--shadow-md); }
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 22px 26px; cursor: pointer; list-style: none;
  font-family: var(--font-display); font-size: 1.1rem; color: var(--forest);
  transition: color 0.25s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--gold); }
.faq-chev { flex: none; width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; background: rgba(214,154,45,0.12); color: var(--gold); transition: transform 0.4s var(--ease-out), background 0.3s; }
.faq-item[open] .faq-chev { transform: rotate(180deg); background: var(--gold); color: var(--forest-black); }
.faq-body { padding: 0 26px 24px; color: var(--muted); font-size: 0.97rem; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band { padding: 0 0 104px; background: var(--clay); }
.cta-box {
  position: relative; overflow: hidden; text-align: center;
  padding: 84px 32px; border-radius: var(--radius-xl);
  background:
    radial-gradient(700px 380px at 50% -10%, rgba(214,154,45,0.28), transparent 60%),
    linear-gradient(160deg, var(--forest) 0%, var(--forest-deep) 100%);
  color: var(--clay);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(214,154,45,0.3);
}
.cta-box::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(244,236,217,0.06) 1px, transparent 1px);
  background-size: 24px 24px; pointer-events: none;
}
.cta-box h2 { color: var(--clay); font-size: clamp(1.8rem, 3.6vw, 2.6rem); margin-bottom: 16px; }
.cta-box p { color: rgba(244,236,217,0.75); max-width: 52ch; margin: 0 auto 34px; }
.cta-box .hero-ctas { justify-content: center; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--forest-black); color: rgba(244,236,217,0.72); padding: 76px 0 0; font-size: 0.94rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 44px; padding-bottom: 56px; }
.footer h4 { color: var(--clay); font-size: 1.02rem; margin-bottom: 18px; letter-spacing: 0.02em; }
.footer .brand-name { color: var(--clay); }
.footer-about p { margin: 18px 0; max-width: 34ch; }
.footer-links li { margin-bottom: 11px; }
.footer-links a { position: relative; transition: color 0.25s, padding-left 0.3s var(--ease-out); }
.footer-links a::before {
  content: ''; position: absolute; left: 0; top: 50%; width: 0; height: 2px;
  background: var(--gold); border-radius: 2px; transform: translateY(-50%);
  transition: width 0.3s var(--ease-out);
}
.footer-links a:hover { color: var(--gold-soft); padding-left: 16px; }
.footer-links a:hover::before { width: 10px; }
.footer-contact li { display: flex; gap: 12px; margin-bottom: 14px; align-items: flex-start; }
.footer-contact svg { color: var(--gold); flex: none; margin-top: 5px; }
.footer-contact a:hover { color: var(--gold-soft); }
.footer-legal-names {
  margin-top: 20px; padding: 14px 18px; border-radius: 12px;
  background: rgba(244,236,217,0.05); border: 1px solid rgba(214,154,45,0.25);
  font-size: 0.83rem; line-height: 1.7;
}
.footer-legal-names strong { color: var(--gold-soft); }
.footer-bottom {
  border-top: 1px solid rgba(244,236,217,0.1);
  padding: 26px 0; display: flex; flex-wrap: wrap; gap: 14px 28px;
  align-items: center; justify-content: space-between; font-size: 0.88rem;
}
.footer-bottom .copyright { color: var(--clay); font-weight: 600; }
.footer-bottom-links { display: flex; flex-wrap: wrap; gap: 22px; }
.footer-bottom-links a { color: rgba(244,236,217,0.6); transition: color 0.25s; }
.footer-bottom-links a:hover { color: var(--gold-soft); }

@media (max-width: 980px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; gap: 36px; } .footer-bottom { flex-direction: column; text-align: center; justify-content: center; } }

/* ============================================================
   SUBPAGES (Legal + Contact)
   ============================================================ */
.page-hero {
  padding: 168px 0 80px; text-align: center; color: var(--clay);
  background:
    radial-gradient(900px 460px at 50% -20%, rgba(214,154,45,0.2), transparent 62%),
    linear-gradient(160deg, #10312A, var(--forest) 55%, #0C241E);
  position: relative; overflow: hidden;
}
.page-hero h1 { color: var(--clay); font-size: clamp(2rem, 4.4vw, 3.1rem); margin-bottom: 12px; }
.page-hero p { color: rgba(244,236,217,0.75); max-width: 58ch; margin: 0 auto; }
.page-hero .eyebrow { justify-content: center; }
.page-hero .eyebrow::after { content: ''; width: 28px; height: 2px; background: var(--gold); border-radius: 2px; }

.legal-wrap { max-width: 820px; margin: 0 auto; padding: 80px 24px 100px; }
.legal-wrap .updated {
  display: inline-block; margin-bottom: 34px; padding: 8px 18px; border-radius: 999px;
  background: rgba(214,154,45,0.12); border: 1px solid var(--line-gold);
  color: var(--forest); font-size: 0.85rem; font-weight: 600;
}
.legal-wrap h2 { font-size: 1.5rem; margin: 44px 0 14px; padding-top: 8px; }
.legal-wrap h3 { font-size: 1.15rem; margin: 26px 0 10px; }
.legal-wrap p, .legal-wrap li { color: #3D4E48; font-size: 0.99rem; margin-bottom: 12px; }
.legal-wrap ul { list-style: none; padding-left: 4px; }
.legal-wrap ul li { position: relative; padding-left: 26px; margin-bottom: 9px; }
.legal-wrap ul li::before {
  content: ''; position: absolute; left: 0; top: 11px; width: 8px; height: 8px;
  border-radius: 50%; background: linear-gradient(135deg, var(--gold-soft), var(--gold));
}
.legal-wrap a { color: var(--gold); font-weight: 600; border-bottom: 1px dotted var(--line-gold); }
.legal-wrap a:hover { color: var(--forest); border-color: var(--forest); }
.legal-note {
  margin-top: 46px; padding: 24px 28px; border-radius: var(--radius-md);
  background: rgba(255,255,255,0.75); border: 1px solid var(--line-gold); font-size: 0.94rem;
}

/* ---------- Contact page ---------- */
.contact-section { padding: 84px 0 110px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 44px; align-items: start; }
.contact-info-card {
  padding: 40px 36px; border-radius: var(--radius-xl);
  background: linear-gradient(165deg, var(--forest), var(--forest-deep));
  color: var(--clay); box-shadow: var(--shadow-lg);
  border: 1px solid rgba(214,154,45,0.3);
  position: sticky; top: 110px;
}
.contact-info-card h2 { color: var(--clay); font-size: 1.6rem; margin-bottom: 12px; }
.contact-info-card > p { color: rgba(244,236,217,0.75); font-size: 0.95rem; margin-bottom: 30px; }
.contact-lines { display: flex; flex-direction: column; gap: 20px; }
.contact-line { display: flex; gap: 16px; align-items: flex-start; }
.contact-line .ico {
  width: 46px; height: 46px; flex: none; display: grid; place-items: center;
  border-radius: 14px; background: rgba(214,154,45,0.16); color: var(--gold-soft);
  border: 1px solid rgba(214,154,45,0.35);
  transition: transform 0.35s var(--ease-spring), background 0.3s, color 0.3s;
}
.contact-line:hover .ico { transform: scale(1.1) rotate(-5deg); background: var(--gold); color: var(--forest-black); }
.contact-line .lbl { font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-soft); font-weight: 700; }
.contact-line .val { font-size: 0.98rem; color: var(--clay); line-height: 1.6; }
.contact-line a.val:hover { color: var(--gold-soft); }
.contact-hours { margin-top: 30px; padding-top: 26px; border-top: 1px solid rgba(244,236,217,0.14); font-size: 0.88rem; color: rgba(244,236,217,0.7); }

.contact-form-card {
  padding: 44px 40px; border-radius: var(--radius-xl);
  background: rgba(255,255,255,0.85);
  border: 1px solid var(--line);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
}
.contact-form-card h2 { font-size: 1.5rem; margin-bottom: 8px; }
.contact-form-card > p { color: var(--muted); font-size: 0.94rem; margin-bottom: 30px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { margin-bottom: 20px; }
.form-field label { display: block; font-size: 0.86rem; font-weight: 700; color: var(--forest); margin-bottom: 8px; }
.form-field label .req { color: var(--gold); }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: 14px 18px; border-radius: 14px;
  border: 1.5px solid var(--line); background: var(--white);
  font-family: var(--font-body); font-size: 0.97rem; color: var(--ink);
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(214,154,45,0.15); transform: translateY(-1px);
}
.form-field textarea { resize: vertical; min-height: 130px; }
.form-success {
  display: none; margin-top: 20px; padding: 18px 22px; border-radius: 14px;
  background: rgba(23,63,53,0.07); border: 1px solid rgba(23,63,53,0.2);
  color: var(--forest); font-weight: 600; font-size: 0.95rem;
}
.form-success.show { display: flex; gap: 10px; align-items: center; animation: successIn 0.6s var(--ease-spring); }
@keyframes successIn { from { opacity: 0; transform: translateY(12px) scale(0.96); } to { opacity: 1; transform: none; } }

@media (max-width: 980px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info-card { position: static; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
}

/* Back-to-top */
.to-top {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 50px; height: 50px; border-radius: 50%; border: 0;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold)); color: var(--forest-black);
  box-shadow: var(--shadow-gold);
  opacity: 0; transform: translateY(20px) scale(0.8); pointer-events: none;
  transition: opacity 0.4s, transform 0.4s var(--ease-spring);
}
.to-top.show { opacity: 1; transform: none; pointer-events: auto; }
.to-top:hover { transform: translateY(-4px) scale(1.05); }

/* ============================================================
   PRODUCT PAGE + ORDER BUTTONS (WhatsApp / Messenger)
   ============================================================ */
.pd-section { padding: 84px 0 40px; }
.pd-item {
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: center;
  padding: 56px 0; border-bottom: 1px solid var(--line);
  scroll-margin-top: 110px;
}
.pd-item:last-child { border-bottom: 0; }
.pd-item:nth-child(even) .pd-media { order: 2; }
.pd-media { position: relative; perspective: 1000px; }
.pd-media .frame {
  border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg);
  transition: transform 0.6s var(--ease-out);
}
.pd-media:hover .frame { transform: rotateY(-3deg) rotateX(1.5deg) scale(1.015); }
.pd-media img { width: 100%; aspect-ratio: 4/3.4; object-fit: cover; }
.pd-media .pd-float {
  position: absolute; top: 18px; left: 18px;
  padding: 8px 16px; border-radius: 999px; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em;
  background: rgba(250,246,236,0.9); color: var(--forest);
  border: 1px solid var(--line-gold);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  box-shadow: var(--shadow-sm);
}
.pd-info h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); margin-bottom: 4px; }
.pd-info .pd-en { color: var(--gold); font-weight: 700; font-size: 0.85rem; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 16px; display: block; }
.pd-info > p { color: var(--muted); margin-bottom: 22px; }
.pd-facts { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 26px; }
.pd-facts span {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 7px 14px; border-radius: 999px; font-size: 0.82rem; font-weight: 600;
  background: rgba(255,255,255,0.75); color: var(--forest);
  border: 1px solid var(--line);
}
.pd-facts svg { color: var(--gold); }

.variants { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 20px; }
.variant-pill {
  padding: 10px 20px; border-radius: 999px; border: 1.5px solid var(--line);
  background: rgba(255,255,255,0.8); color: var(--ink);
  font-size: 0.92rem; font-weight: 600; font-family: var(--font-body);
  transition: all 0.3s var(--ease-out);
}
.variant-pill:hover { border-color: var(--gold); transform: translateY(-2px); }
.variant-pill.active {
  background: var(--forest); color: var(--clay); border-color: var(--forest);
  box-shadow: var(--shadow-md); transform: translateY(-2px);
}
.pd-price-row { display: flex; align-items: baseline; gap: 14px; margin-bottom: 26px; }
.pd-price { font-family: var(--font-display); font-size: 2.3rem; color: var(--forest); transition: opacity 0.25s; }
.pd-price.tick { animation: priceTick 0.45s var(--ease-spring); }
@keyframes priceTick { 0% { opacity: 0; transform: translateY(8px) scale(0.94); } 100% { opacity: 1; transform: none; } }
.pd-price-note { font-size: 0.85rem; color: var(--muted); }

.order-btns { display: flex; flex-wrap: wrap; gap: 14px; }
.btn-wa {
  background: linear-gradient(135deg, #2EE071, #25D366 55%, #1EAF52);
  color: #073B1E;
  box-shadow: 0 12px 30px -8px rgba(37, 211, 102, 0.55), inset 0 1px 0 rgba(255,255,255,0.4);
}
.btn-wa:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 18px 40px -10px rgba(37,211,102,0.65), inset 0 1px 0 rgba(255,255,255,0.4); }
.btn-ms {
  background: linear-gradient(135deg, #1D9BF0 0%, #0084FF 50%, #A033FF 120%);
  color: #fff;
  box-shadow: 0 12px 30px -8px rgba(0, 132, 255, 0.5), inset 0 1px 0 rgba(255,255,255,0.3);
}
.btn-ms:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 18px 40px -10px rgba(0,132,255,0.6), inset 0 1px 0 rgba(255,255,255,0.3); }

@media (max-width: 900px) {
  .pd-item { grid-template-columns: 1fr; gap: 32px; padding: 44px 0; }
  .pd-item:nth-child(even) .pd-media { order: 0; }
}

/* Floating quick-order buttons */
.order-fab { position: fixed; left: 20px; bottom: 20px; z-index: 90; display: flex; flex-direction: column; gap: 12px; }
.fab {
  width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center;
  color: #fff; box-shadow: 0 14px 30px -8px rgba(8,29,23,0.45);
  transition: transform 0.35s var(--ease-spring), box-shadow 0.35s;
  position: relative;
}
.fab:hover { transform: translateY(-4px) scale(1.08); }
.fab-wa { background: linear-gradient(135deg, #2EE071, #1EAF52); }
.fab-ms { background: linear-gradient(135deg, #0084FF, #A033FF); }
.fab::after {
  content: attr(data-tip); position: absolute; left: calc(100% + 12px); top: 50%;
  transform: translateY(-50%) translateX(-6px); white-space: nowrap;
  background: var(--forest-black); color: var(--clay);
  padding: 7px 14px; border-radius: 10px; font-size: 0.8rem; font-weight: 600;
  opacity: 0; pointer-events: none; transition: opacity 0.25s, transform 0.3s var(--ease-out);
  box-shadow: var(--shadow-md);
}
.fab:hover::after { opacity: 1; transform: translateY(-50%) translateX(0); }
.fab-wa { animation: fabPulse 3s infinite; }
@keyframes fabPulse {
  0% { box-shadow: 0 14px 30px -8px rgba(8,29,23,0.45), 0 0 0 0 rgba(37,211,102,0.45); }
  60% { box-shadow: 0 14px 30px -8px rgba(8,29,23,0.45), 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 14px 30px -8px rgba(8,29,23,0.45), 0 0 0 0 rgba(37,211,102,0); }
}
@media (max-width: 640px) {
  .order-fab { left: 14px; bottom: 14px; }
  .fab { width: 50px; height: 50px; }
  .fab::after { display: none; }
}

/* Honeypot (spam trap) — visually removed, still in DOM for bots */
.hp-field { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; opacity: 0; pointer-events: none; }

/* ============================================================
   CREATIVE LAYER — 3D & Signature Dividers
   ============================================================ */

/* ---------- Honey-drip section divider (signature) ---------- */
.sec-divider { line-height: 0; position: relative; z-index: 3; background: var(--dv-bottom, transparent); }
.sec-divider svg { display: block; width: 100%; height: 74px; fill: var(--dv-top, var(--forest-black)); }
@media (max-width: 640px) { .sec-divider svg { height: 44px; } }

/* ---------- Hex ornament divider (light-to-light sections) ---------- */
.mini-divider {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  padding: 6px 24px; max-width: 560px; margin: 0 auto;
}
.mini-divider .line { height: 1px; flex: 1; background: linear-gradient(90deg, transparent, var(--line-gold)); }
.mini-divider .line:last-child { background: linear-gradient(90deg, var(--line-gold), transparent); }
.mini-divider svg { flex: none; fill: none; stroke: var(--gold); stroke-width: 6; opacity: 0.8; }
.mini-divider svg:nth-of-type(2) { animation: hexBreath 4s ease-in-out infinite; fill: rgba(214,154,45,0.12); }
@keyframes hexBreath { 0%,100% { transform: rotate(0deg) scale(1); } 50% { transform: rotate(30deg) scale(1.12); } }

/* ---------- Floating 3D honeycomb field ---------- */
.hex-field { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; perspective: 900px; }
.hex { position: absolute; display: block; will-change: transform; }
.hex svg {
  display: block; width: 100%; height: 100%;
  fill: rgba(214, 154, 45, 0.07); stroke: rgba(214, 154, 45, 0.55); stroke-width: 3;
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.25));
  animation: hexFloat3d var(--hd, 9s) ease-in-out infinite alternate;
  transform-style: preserve-3d;
}
@keyframes hexFloat3d {
  from { transform: translateY(0) rotateX(8deg) rotateY(-12deg) rotate(0deg); }
  to   { transform: translateY(-22px) rotateX(-10deg) rotateY(14deg) rotate(9deg); }
}
.hx1 { width: 96px; height: 108px; top: 14%; left: 5%; --hd: 9s; }
.hx2 { width: 48px; height: 54px; top: 66%; left: 3%; --hd: 7s; opacity: 0.7; }
.hx3 { width: 64px; height: 72px; top: 8%; right: 6%; --hd: 11s; opacity: 0.85; }
.hx4 { width: 38px; height: 43px; top: 78%; right: 10%; --hd: 6s; opacity: 0.55; filter: blur(1px); }
.hx5 { width: 70px; height: 79px; top: 42%; left: 46%; --hd: 10s; opacity: 0.4; filter: blur(1.5px); }
.products .hex svg { stroke: rgba(214,154,45,0.4); fill: rgba(214,154,45,0.05); }
.page-hero .hex-field .hx1 { top: 22%; left: 8%; }
.page-hero .hex-field .hx3 { top: 30%; right: 8%; }

/* ---------- Rotating golden ring behind hero product ---------- */
.hero-ring {
  position: absolute; top: 50%; left: 50%; width: 128%; aspect-ratio: 1;
  transform: translate(-50%, -50%); border-radius: 50%; pointer-events: none; z-index: 0;
  background: conic-gradient(from 0deg,
    transparent 0deg, rgba(214,154,45,0.55) 55deg, rgba(232,184,92,0.2) 110deg,
    transparent 160deg, rgba(214,154,45,0.3) 240deg, transparent 320deg);
  -webkit-mask: radial-gradient(closest-side, transparent 79%, #000 80%, #000 90%, transparent 91%);
  mask: radial-gradient(closest-side, transparent 79%, #000 80%, #000 90%, transparent 91%);
  animation: ringSpin 18s linear infinite; opacity: 0.9;
}
@keyframes ringSpin { to { transform: translate(-50%, -50%) rotate(360deg); } }
.hero-photo-wrap { position: relative; z-index: 1; }
.glass-chip { z-index: 2; }

/* ---------- Scroll progress bar ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 120;
  background: transparent; pointer-events: none;
}
.scroll-progress span {
  display: block; height: 100%; width: 0;
  background: linear-gradient(90deg, var(--gold-soft), var(--gold), #B87F1D);
  box-shadow: 0 0 12px rgba(214,154,45,0.7);
  border-radius: 0 3px 3px 0;
}

/* ---------- Button shine sweep ---------- */
.btn { position: relative; overflow: hidden; }
.btn::before {
  content: ''; position: absolute; top: 0; left: -85%; width: 55%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.5), transparent);
  transform: skewX(-22deg); pointer-events: none; transition: none; opacity: 0;
}
.btn:hover::before { animation: shine 0.75s var(--ease-out); }
@keyframes shine { 0% { left: -85%; opacity: 1; } 100% { left: 135%; opacity: 1; } }

/* ---------- Deeper 3D on cards ---------- */
.svc-card, .stat-card, .testi-card { transform-style: preserve-3d; will-change: transform; }
.svc-card .svc-icon, .svc-card h3 { transform: translateZ(24px); }
.svc-card p { transform: translateZ(12px); }
.stat-card .stat-num { display: inline-block; transform: translateZ(28px); }
.cta-box { transform-style: preserve-3d; }
.cta-box h2, .cta-box p, .cta-box .hero-ctas { position: relative; transform: translateZ(20px); }

/* Products section needs clipping for hex field */
.products { overflow: hidden; }
.hero { isolation: isolate; }

/* ============================================================
   LIQUID GOLD LAYER — fluid cursor, honey glow, pouring dividers
   ============================================================ */

/* ---------- Gooey honey cursor trail (desktop only, JS-built) ---------- */
.honey-goo {
  position: fixed; inset: 0; pointer-events: none; z-index: 58;
  filter: url(#goo-honey); opacity: 0; transition: opacity 0.7s ease;
}
.honey-goo.on { opacity: 0.75; }
.goo-b {
  position: absolute; top: 0; left: 0; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #F6CC79, #D69A2D 58%, #B87F1D);
  box-shadow: 0 0 16px rgba(214, 154, 45, 0.35);
  will-change: transform;
}

/* ---------- Liquid gold glow following the cursor ---------- */
@media (pointer: fine) {
  .liquid-glow::after {
    content: ''; position: absolute; inset: 0; pointer-events: none;
    background: radial-gradient(540px circle at var(--gx, 50%) var(--gy, -30%),
      rgba(214, 154, 45, 0.16), rgba(214, 154, 45, 0.05) 42%, transparent 68%);
    opacity: 0; transition: opacity 0.5s ease;
  }
  .liquid-glow:hover::after { opacity: 1; }
  .cta-box.liquid-glow::after { border-radius: var(--radius-xl); }
}

/* ---------- Pouring-honey divider v2 (animated) ---------- */
.sec-divider { position: relative; height: 74px; overflow: hidden; }
.sec-divider svg { position: absolute; left: 0; top: 0; height: 100%; }
.sec-divider .wave-front { width: 100%; fill: var(--dv-top); z-index: 2; }
.sec-divider .wave-back { width: 200%; fill: var(--gold); opacity: 0.32; z-index: 1; animation: waveSlide 12s linear infinite; }
@keyframes waveSlide { to { transform: translateX(-50%); } }
.sec-divider .drop {
  position: absolute; top: 24px; width: 10px; height: 14px; z-index: 3; opacity: 0;
  background: linear-gradient(var(--gold-soft), var(--gold) 70%, #B87F1D);
  border-radius: 50% 50% 62% 62% / 38% 38% 72% 72%;
  box-shadow: 0 2px 8px rgba(214, 154, 45, 0.4);
  animation: dropFall 4.6s ease-in infinite;
}
@keyframes dropFall {
  0%   { transform: translateY(0) scaleY(0.5) scaleX(1.25); opacity: 0; }
  10%  { transform: translateY(5px) scaleY(1.2) scaleX(0.92); opacity: 0.95; }
  55%  { transform: translateY(38px) scaleY(1.08); opacity: 0.85; }
  78%  { transform: translateY(56px) scaleY(1.3) scaleX(0.8); opacity: 0; }
  100% { opacity: 0; }
}
@media (max-width: 640px) {
  .sec-divider { height: 46px; }
  .sec-divider .drop { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .sec-divider .wave-back, .sec-divider .drop, .honey-goo { display: none; }
}

/* ---------- Mini divider: dripping center hex ---------- */
.mini-divider { position: relative; }
.mini-drop {
  position: absolute; left: 50%; top: 55%; width: 5px; height: 8px; margin-left: -2.5px;
  background: linear-gradient(var(--gold-soft), var(--gold));
  border-radius: 50% 50% 62% 62% / 38% 38% 72% 72%;
  opacity: 0; animation: miniDrip 3.4s ease-in infinite;
}
@keyframes miniDrip {
  0%   { transform: translateY(0) scaleY(0.5); opacity: 0; }
  15%  { transform: translateY(4px) scaleY(1.15); opacity: 0.9; }
  60%  { transform: translateY(16px); opacity: 0.6; }
  85%  { transform: translateY(24px) scaleY(1.3); opacity: 0; }
  100% { opacity: 0; }
}
.liquid-glow { position: relative; }

/* ============================================================
   DIVIDER v3 — unified wave family + deep-falling drops
   ============================================================ */
.sec-divider {
  height: 150px; margin-bottom: -76px; overflow: hidden;
  background: linear-gradient(var(--dv-bottom), var(--dv-bottom)) top / 100% 74px no-repeat;
  pointer-events: none; z-index: 3;
}
.sec-divider svg { height: 74px; }
/* drops now fall well past the wave, into the next section */
@keyframes dropFall {
  0%   { transform: translateY(0) scaleY(0.5) scaleX(1.3); opacity: 0; }
  9%   { transform: translateY(6px) scaleY(1.25) scaleX(0.9); opacity: 0.95; }
  70%  { transform: translateY(86px) scaleY(1.1); opacity: 0.9; }
  100% { transform: translateY(122px) scaleY(1.35) scaleX(0.75); opacity: 0; }
}
@media (max-width: 640px) {
  .sec-divider { height: 46px; margin-bottom: 0; background-size: 100% 46px; }
  .sec-divider svg { height: 46px; }
}

/* ============================================================
   FOOTER HONEY FLOOD — pool rises with time on site
   ============================================================ */
.footer { position: relative; overflow: hidden; }
.footer .container { position: relative; z-index: 1; }

.honey-pool {
  position: absolute; left: 0; right: 0; bottom: 0; height: 0;
  z-index: 0; pointer-events: none;
  transition: height 1.4s linear;
}
.pool-body {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(214,154,45,0.38) 0%, rgba(214,154,45,0.62) 40%, rgba(184,127,29,0.9) 100%);
  box-shadow: inset 0 6px 24px rgba(255, 220, 140, 0.25);
}
.pool-wave {
  position: absolute; left: 0; bottom: 100%; width: 200%; height: 24px;
  fill: rgba(214, 154, 45, 0.38);
  animation: waveSlide 9s linear infinite;
}
.pool-bubble {
  position: absolute; bottom: -12px; width: 9px; height: 9px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(255,232,180,0.9), rgba(214,154,45,0.4));
  animation: bubbleUp 6.5s ease-in infinite;
}
.pool-bubble.b1 { left: 18%; animation-delay: 0s; }
.pool-bubble.b2 { left: 52%; animation-delay: 2.4s; width: 6px; height: 6px; }
.pool-bubble.b3 { left: 83%; animation-delay: 4.2s; width: 7px; height: 7px; }
@keyframes bubbleUp {
  0%   { transform: translateY(0) scale(0.6); opacity: 0; }
  15%  { opacity: 0.9; }
  85%  { opacity: 0.5; }
  100% { transform: translateY(-110px) scale(1.15); opacity: 0; }
}

/* honey drips falling the full height of the footer into the pool */
.footer-drip {
  position: absolute; top: -2%; width: 9px; height: 13px; z-index: 0; opacity: 0;
  background: linear-gradient(var(--gold-soft), var(--gold) 70%, #B87F1D);
  border-radius: 50% 50% 62% 62% / 38% 38% 72% 72%;
  box-shadow: 0 2px 8px rgba(214, 154, 45, 0.45);
  animation: footDrip 6.5s ease-in infinite;
}
.footer-drip.fd1 { left: 21%; animation-delay: 0.8s; }
.footer-drip.fd2 { left: 55%; animation-delay: 3.2s; }
.footer-drip.fd3 { left: 86%; animation-delay: 5.1s; }
@keyframes footDrip {
  0%   { top: -2%; transform: scaleY(0.6); opacity: 0; }
  6%   { transform: scaleY(1.2); opacity: 0.9; }
  88%  { opacity: 0.9; }
  100% { top: 100%; transform: scaleY(1.4); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .footer-drip, .pool-bubble, .pool-wave { display: none; }
  .honey-pool { transition: none; }
}

/* ============================================================
   LIQUID REALISM PASS — divider v4, 3D drops, deep honey pool
   ============================================================ */

/* ---------- Divider: pure 3-layer waves (no static drip shapes) ---------- */
.sec-divider { height: 190px; margin-bottom: -116px; }
.sec-divider .wave-mid {
  width: 200%; fill: rgba(184, 127, 29, 0.28); z-index: 1;
  animation: waveSlide 19s linear infinite reverse;
}
.sec-divider .wave-back { opacity: 0.35; animation-duration: 13s; }

/* ---------- Physically-shaded falling drops ---------- */
.sec-divider .drop, .footer-drip {
  background: radial-gradient(circle at 32% 26%, #FFE9B8 0%, #F0C468 30%, #D69A2D 62%, #9E6B12 100%);
  box-shadow: inset -2px -3px 4px rgba(110, 72, 8, 0.55), 0 4px 10px rgba(214, 154, 45, 0.4);
}
.sec-divider .drop::before, .footer-drip::before {
  content: ''; position: absolute; left: 22%; top: 15%;
  width: 34%; height: 32%; border-radius: 50%;
  background: rgba(255, 255, 255, 0.85); filter: blur(0.5px);
}
.sec-divider .drop { width: 11px; height: 15px; animation: dropFall 5.6s cubic-bezier(0.45, 0.05, 0.85, 0.5) infinite; }
/* gravity acceleration → stretch while falling → impact squash → gone */
@keyframes dropFall {
  0%   { transform: translateY(0) scale(1.25, 0.45); opacity: 0; }
  7%   { transform: translateY(7px) scale(0.94, 1.2); opacity: 1; }
  55%  { transform: translateY(84px) scale(0.86, 1.4); opacity: 1; }
  86%  { transform: translateY(142px) scale(0.88, 1.35); opacity: 0.95; }
  94%  { transform: translateY(154px) scale(1.55, 0.42); opacity: 0.65; }
  100% { transform: translateY(158px) scale(2, 0.18); opacity: 0; }
}
@media (max-width: 640px) { .sec-divider { height: 46px; margin-bottom: 0; } }

/* ---------- Honey pool: layered, glossy, deep ---------- */
.pool-wave { fill: rgba(203, 142, 38, 0.55); }
.pool-wave.pw-back {
  bottom: calc(100% + 5px); height: 20px; fill: rgba(232, 184, 92, 0.28);
  animation: waveSlide 15s linear infinite reverse;
}
.pool-wave.pw-front { bottom: 100%; height: 26px; animation: waveSlide 9s linear infinite; }
.pool-body {
  background: linear-gradient(180deg,
    rgba(214, 154, 45, 0.5) 0%,
    rgba(186, 126, 26, 0.82) 38%,
    rgba(150, 98, 16, 0.94) 70%,
    rgba(110, 71, 10, 0.98) 100%);
  box-shadow:
    inset 0 16px 28px rgba(70, 44, 4, 0.5),
    inset 0 -22px 34px rgba(255, 214, 130, 0.1);
  overflow: hidden;
}
.pool-shimmer {
  position: absolute; inset: -15% 0;
  background:
    radial-gradient(240px 60px at 18% 28%, rgba(255, 226, 150, 0.3), transparent 70%),
    radial-gradient(320px 90px at 68% 55%, rgba(255, 226, 150, 0.18), transparent 70%),
    radial-gradient(180px 55px at 42% 82%, rgba(255, 226, 150, 0.14), transparent 70%);
  animation: shimmerDrift 12s ease-in-out infinite alternate;
}
@keyframes shimmerDrift { from { transform: translateX(-4%); } to { transform: translateX(4%); } }
.pool-sheen {
  position: absolute; left: 0; right: 0; top: -2px; height: 5px; z-index: 2;
  background: linear-gradient(90deg, transparent,
    rgba(255, 240, 200, 0.8) 28%, rgba(255, 240, 200, 0.25) 52%,
    rgba(255, 240, 200, 0.65) 76%, transparent);
  filter: blur(1px);
  animation: sheenDrift 8s ease-in-out infinite alternate;
}
@keyframes sheenDrift { from { transform: translateX(-3%); } to { transform: translateX(3%); } }
.pool-glint {
  position: absolute; width: 3px; height: 3px; border-radius: 50%;
  background: #FFEBC2; box-shadow: 0 0 9px 2px rgba(255, 230, 170, 0.8);
  animation: glint 4.5s ease-in-out infinite;
}
.pool-glint.g1 { left: 32%; top: 28%; }
.pool-glint.g2 { left: 73%; top: 55%; animation-delay: 2.2s; }
@keyframes glint { 0%, 100% { opacity: 0; } 50% { opacity: 0.9; } }

/* footer drips land ON the rising surface (JS feeds --pool-h) */
@keyframes footDrip {
  0%   { top: -2%; transform: scaleY(0.6); opacity: 0; }
  6%   { transform: scaleY(1.2); opacity: 0.95; }
  78%  { transform: scaleY(1.35); opacity: 0.95; }
  93%  { top: calc(100% - var(--pool-h, 0px) - 12px); transform: scale(1.4, 0.5); opacity: 0.75; }
  100% { top: calc(100% - var(--pool-h, 0px) - 7px); transform: scale(1.9, 0.22); opacity: 0; }
}
.footer-drip { animation-timing-function: cubic-bezier(0.45, 0.05, 0.85, 0.5); }
@media (prefers-reduced-motion: reduce) {
  .pool-shimmer, .pool-sheen, .pool-glint { animation: none; }
}

/* ============================================================
   PHYSICS DROPS — JS-driven, collide with real UI elements
   ============================================================ */
.jdrop {
  position: absolute; width: 11px; height: 15px; z-index: 5; pointer-events: none;
  background: radial-gradient(circle at 32% 26%, #FFE9B8 0%, #F0C468 30%, #D69A2D 62%, #9E6B12 100%);
  border-radius: 50% 50% 62% 62% / 38% 38% 72% 72%;
  box-shadow: inset -2px -3px 4px rgba(110, 72, 8, 0.55), 0 4px 10px rgba(214, 154, 45, 0.4);
  will-change: transform, opacity;
}
.jdrop::before {
  content: ''; position: absolute; left: 22%; top: 15%;
  width: 34%; height: 32%; border-radius: 50%;
  background: rgba(255, 255, 255, 0.85); filter: blur(0.5px);
}
.jsplash { position: absolute; z-index: 5; pointer-events: none; }
.jsplat {
  position: absolute; left: -9px; top: -3px; width: 18px; height: 7px; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(246, 204, 121, 0.95), rgba(214, 154, 45, 0.55) 65%, transparent);
}
.jring {
  position: absolute; left: -10px; top: -4px; width: 20px; height: 9px; border-radius: 50%;
  border: 1.5px solid rgba(255, 226, 150, 0.75);
}
.jdroplet {
  position: absolute; left: -2px; top: -3px; width: 5px; height: 5px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #FFE9B8, #D69A2D 72%);
  box-shadow: 0 1px 3px rgba(150, 98, 16, 0.45);
}
