/* ========================================
   Freshy Fruits — Premium Design System
   ======================================== */

:root {
  --gold: #F4A300;
  --gold-light: #FBC871;
  --gold-dark: #C78100;
  --green: #2D6A4F;
  --green-dark: #1B4332;
  --green-deepest: #0F2E22;
  --green-light: #52B788;
  --cream: #FFF8E7;
  --cream-dark: #FBEFC9;
  --sand: #F5E2B0;
  --stone: #E8C97A;
  --bark: #5C4A2E;
  --text: #0F2E22;
  --text-soft: #3D5A48;
  --text-muted: #8A8675;
  --tomato: #E63946;

  --font-display: "Playfair Display", Georgia, serif;
  --font-alt: "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
}

* { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--cream); }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: var(--font-body); border: none; background: none; padding: 0; color: inherit; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4 { margin: 0; font-weight: 500; }
p { margin: 0; }

.font-display { font-family: var(--font-display); font-weight: 600; letter-spacing: -0.02em; }
.font-alt { font-family: var(--font-alt); font-weight: 400; }
.italic { font-style: italic; font-weight: 300; }

.container-wide {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 32px;
  padding-right: 32px;
}
@media (max-width: 640px) {
  .container-wide { padding-left: 20px; padding-right: 20px; }
}

.section-pad {
  padding-top: 140px;
  padding-bottom: 140px;
}
@media (max-width: 1024px) {
  .section-pad { padding-top: 100px; padding-bottom: 100px; }
}
@media (max-width: 640px) {
  .section-pad { padding-top: 80px; padding-bottom: 80px; }
}

.section-header { max-width: 1100px; margin-bottom: 80px; }
@media (max-width: 768px) { .section-header { margin-bottom: 56px; } }

.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(40px, 6vw, 76px);
  color: var(--green-dark);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-top: 24px;
}

.section-lead {
  font-size: 18px;
  color: var(--text-soft);
  line-height: 1.6;
  margin-top: 24px;
  max-width: 720px;
  font-weight: 400;
}
@media (max-width: 768px) { .section-lead { font-size: 16px; } }

.text-center { text-align: center; }

.green { color: var(--green); }
.gold { color: var(--gold-dark); }
.gold-light { color: var(--gold-light); }

/* ============ STRIPES (gold diagonal dividers) ============ */
.stripe-top {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 8px;
  background-image: repeating-linear-gradient(45deg, var(--gold) 0 10px, var(--gold-dark) 10px 20px);
}
.stripe-gold { opacity: 0.6; }
.stripe-gold-faint { opacity: 0.4; }
.stripe-gold-strong { opacity: 0.7; }

/* ============ STAMPS ============ */
.stamp {
  display: inline-block;
  padding: 6px 14px;
  border: 2px solid currentColor;
  border-radius: 4px;
  transform: rotate(-2deg);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 11px;
}
.stamp-cream { color: var(--cream); }
.stamp-green { color: var(--green-dark); }
.stamp-tomato { color: var(--tomato); }
.stamp-gold-dark { color: var(--gold-dark); border-color: var(--gold); }
.stamp-row { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; }

/* ============ BUTTONS ============ */
.btn-primary, .btn-gold, .btn-secondary, .btn-outline-cream, .btn-cream, .btn-tomato {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 0;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  white-space: nowrap;
}

.btn-primary {
  padding: 16px 32px;
  font-size: 13px;
  background: var(--green);
  color: var(--cream);
  border: 2px solid var(--green);
}
.btn-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -10px rgba(15, 46, 34, 0.4);
}

.btn-gold {
  padding: 16px 32px;
  font-size: 13px;
  background: var(--gold);
  color: var(--green-deepest);
  border: 2px solid var(--gold);
  font-weight: 700;
}
.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -10px rgba(244, 163, 0, 0.5);
}

.btn-secondary {
  padding: 16px 32px;
  font-size: 13px;
  background: transparent;
  color: var(--green-dark);
  border: 2px solid var(--green-dark);
}
.btn-secondary:hover { background: var(--green-dark); color: var(--cream); transform: translateY(-2px); }

.btn-outline-cream {
  padding: 16px 32px;
  font-size: 13px;
  background: transparent;
  color: var(--cream);
  border: 2px solid var(--cream);
}
.btn-outline-cream:hover { background: var(--cream); color: var(--green-dark); transform: translateY(-2px); }

.btn-cream {
  padding: 16px 32px;
  font-size: 13px;
  background: var(--cream);
  color: var(--green-dark);
  border: 2px solid var(--cream);
}
.btn-cream:hover { background: var(--gold); border-color: var(--gold); transform: translateY(-2px); }

.btn-large { padding: 20px 40px; font-size: 15px; }
.btn-small { padding: 12px 20px; font-size: 11px; letter-spacing: 0.18em; }
.w-full { width: 100%; }
.icon-sm { width: 16px; height: 16px; }

/* ============ PRELOADER ============
#preloader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease;
}
.preloader-leaf { position: absolute; opacity: 0; transform: scale(0.4) rotate(-25deg); }
.preloader-leaf svg { width: 100%; height: 100%; }
.preloader-leaf-1 { top: 18%; left: 20%; width: 56px; height: 56px; color: var(--green); opacity: 0; }
.preloader-leaf-2 { bottom: 18%; right: 18%; width: 80px; height: 80px; color: var(--gold); opacity: 0; }
.preloader-leaf-3 { top: 68%; left: 16%; width: 48px; height: 48px; color: var(--green-dark); transform: rotate(-12deg) scale(0.4); opacity: 0; }

.preloader-content { position: relative; z-index: 2; text-align: center; opacity: 0; transform: translateY(20px); }
.preloader-mark { width: 140px; height: 140px; margin-bottom: 32px; object-fit: contain; }
.preloader-text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 60px;
  color: var(--green-dark);
  letter-spacing: -0.02em;
  display: flex;
  justify-content: center;
}
.preloader-text span { display: inline-block; opacity: 0; transform: translateY(50px); }
.preloader-text .preloader-space { width: 12px; }
.preloader-text .preloader-italic { font-style: italic; font-weight: 300; color: var(--gold-dark); }

.preloader-tagline {
  margin-top: 16px;
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--text-soft);
  font-weight: 700;
  opacity: 0;
}

.preloader-bar {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  width: 280px;
  height: 3px;
  background: var(--sand);
  overflow: hidden;
}
.preloader-bar-fill {
  height: 100%;
  background: var(--gold);
  width: 0%;
  transition: width 1.5s cubic-bezier(0.45, 0, 0.55, 1);
}

@media (max-width: 768px) {
  .preloader-text { font-size: 44px; }
  .preloader-mark { width: 88px; height: 88px; }
} */

/* ============ NAVBAR ============ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 88px;
  background: var(--green-dark);
  border-bottom: 3px solid var(--gold);
  box-shadow: 0 2px 12px rgba(15, 46, 34, 0.08);
  transition: all 0.5s ease;
}
#navbar.scrolled {
  box-shadow: 0 4px 24px rgba(15, 46, 34, 0.18);
}
.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  
}
.nav-logo-mark {
  width: 100px;
  height: 100px;
  object-fit: contain;
  transition: transform 0.7s ease;
}




.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-link {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #FFFFFF;
  position: relative;
  transition: all 0.3s ease;
  padding: 8px 4px;
}
.nav-link:hover {
  color: var(--gold);
  transform: translateY(-1px);
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
}
.nav-link:hover::after { transform: scaleX(1); transform-origin: left; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-btn {
  padding: 10px 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}
.nav-btn-outline {
  color: #FFFFFF;
  border: 2px solid rgba(255, 255, 255, 0.5);
}
.nav-btn-outline:hover {
  border-color: #FFFFFF;
  background: #FFFFFF;
  color: var(--green-deepest);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px -8px rgba(255,255,255,0.4);
}
.nav-btn-gold {
  background: var(--gold);
  color: var(--green-deepest);
  border: 2px solid var(--gold);
}
.nav-btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 28px -8px rgba(244,163,0,0.5);
}
.nav-btn-outline::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s ease;
}
.nav-btn-outline:hover::before { left: 100%; }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--gold);
}
.nav-toggle span:nth-child(1) { width: 28px; }
.nav-toggle span:nth-child(2) { width: 28px; background: var(--cream); }
.nav-toggle span.short { width: 20px; margin-left: auto; }

@media (max-width: 1023px) {
  .nav-menu, .nav-actions { display: none; }
  .nav-toggle { display: flex; }
}

/* ============ MOBILE MENU ============ */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 110;
  background: var(--cream);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.7s ease;
  overflow-y: auto;
}


.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu-inner { height: 100%; display: flex; flex-direction: column; }
.mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
  flex-shrink: 0;
}

.mobile-menu-close {
  width: 44px;
  height: 44px;
  background: var(--green-dark);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-menu-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}
.mobile-nav-link {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--green-dark);
  padding: 12px 0;
  border-bottom: 1px solid var(--sand);
  display: inline-block;
  width: fit-content;
  transition: all 0.3s ease;
}
.mobile-nav-link:hover { color: var(--gold-dark); }
.mobile-menu-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-bottom: 40px;
  padding-top: 32px;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 88px;
  background: var(--cream);
  overflow: hidden;
}
.hero-top-bar {
  position: absolute;
  top: 88px; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  z-index: 10;
}
.hero-bg-blob {
  position: absolute;
  pointer-events: none;
  top: -10%;
  right: 5%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(244,163,0,0.18) 0%, rgba(244,163,0,0.04) 40%, transparent 70%);
}
.hero-inner {
  position: relative;
  z-index: 10;
  padding-top: 60px;
  padding-bottom: 60px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 1023px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
}

.hero-left { animation: fadeUp 1s ease 0.2s both; }
.hero-eyebrow { margin-bottom: 32px; }
.orchard-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--green-dark);
  color: var(--cream);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 700;
}
.orchard-tag svg { color: var(--gold); }
@keyframes blinkDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 80px);
  font-weight: 600;
  color: var(--green-dark);
  line-height: 1.03;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
  position: relative;
}
.hero-line {
  display: block;
  opacity: 0;
  transform: translateY(50px);
  animation: heroLineIn 1.1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
.hero-line:nth-child(1) { animation-delay: 0.3s; }
.hero-line:nth-child(2) { animation-delay: 0.5s; }
.hero-line:nth-child(3) { animation-delay: 0.7s; }
.hero-line:nth-child(4) { animation-delay: 0.9s; }
@keyframes heroLineIn {
  to { opacity: 1; transform: translateY(0); }
}
.hero-line.italic {
  font-style: italic;
  font-weight: 300;
  font-family: var(--font-alt);
  position: relative;
  display: inline-block;
}
.hero-line.italic.gold {
  color: var(--gold-dark);
  background: linear-gradient(120deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-line.italic.green { color: var(--green); }

/* Animated underline on italic words */
.hero-line.italic::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.8s ease;
  animation: lineGrow 1.2s ease forwards 1.2s;
}
.hero-line.italic.gold::after { background: var(--gold); }
.hero-line.italic.green::after { background: var(--green); }
@keyframes lineGrow {
  to { width: 100%; }
}

/* Hero decorative leaves */
.hero-decorative-leaves {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.hero-decor-leaf {
  position: absolute;
  opacity: 0.15;
  color: var(--green);
  animation: floatLeaf 8s ease-in-out infinite;
}
.hero-decor-leaf-1 { top: 10%; left: -3%; animation-delay: 0s; }
.hero-decor-leaf-2 { bottom: 20%; right: -3%; animation-delay: 2s; transform: scaleX(-1); }
.hero-decor-leaf-3 { top: 60%; left: 5%; animation-delay: 4s; }
@keyframes floatLeaf {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(8deg); }
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.hero-sub {
  font-size: 17px;
  color: var(--text-soft);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 580px;
  font-weight: 400;
  opacity: 0;
  animation: fadeUp 1s ease 1.1s forwards;
}
.hero-sub .highlight {
  color: var(--green-dark);
  font-weight: 600;
  background: linear-gradient(180deg, transparent 70%, rgba(244,163,0,0.3) 70%);
  padding: 0 2px;
}
@media (max-width: 768px) { .hero-sub { font-size: 17px; } }

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 1s ease 1.2s forwards;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  margin-top: 20px;
  padding-top: 22px;
  border-top: 2px dashed var(--sand);
}
.trust-stars {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
}
.trust-rating {
  margin-left: 8px;
  font-size: 16px;
  font-weight: 700;
  color: var(--green-dark);
}
.trust-text { font-size: 14px; color: var(--text-soft); }
.trust-strong { font-weight: 700; color: var(--green-dark); }
.trust-divider { width: 4px; height: 4px; border-radius: 50%; background: var(--sand); }
@media (max-width: 768px) { .trust-divider { display: none; } }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 08px;
  
  border-top: 2px solid var(--sand);
  opacity: 0;
  animation: fadeUp 1s ease 1.6s forwards;
}
.hero-stat {
  text-align: center;
  padding: 16px 12px;
  border-left: 2px solid transparent;
  transition: all 0.4s ease;
  position: relative;
}
.hero-stat:hover {
  border-left-color: var(--gold);
  background: rgba(244,163,0,0.05);
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1;
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
}
.hero-stat-plus { color: var(--gold); font-size: 0.7em; }
.hero-stat-label {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-top: 8px;
  font-weight: 700;
}

/* Hero Right */
.hero-right {
  position: relative;
  animation: fadeUp 1.2s ease 0.4s both;
}
/* Hero Right — Mango Showcase */
.hero-right-mango {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes floatMango {
  0%,100%{
    transform: translateY(0px) rotate(-1deg);
  }

  50%{
    transform: translateY(-12px) rotate(1deg);
  }
}


.hero-mango-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
}
.hero-mango-orb {
  position: absolute;
  inset: 80%;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(244,163,0,0.18) 0%, rgba(244,163,0,0.06) 40%, transparent 70%);
  z-index: 1;
  animation: floatOrb 8s ease-in-out infinite;
}
@keyframes floatOrb {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}
.hero-mango-img{
  position: relative;
  z-index: 2;
  width: 88%;
  height: 88%;
  object-fit: contain;
  filter: drop-shadow(0 30px 40px rgba(15,46,34,0.18)) brightness(1.04) saturate(1.1);

  opacity: 0;
  transform: translateY(40px) scale(0.9);

  animation:
    mangoEntry 1s ease forwards 0.8s,
    floatMango 8s ease-in-out infinite 1.8s;
}
@keyframes mangoEntry{
  from{
    opacity:0;
    transform:translateY(40px) scale(0.9);
  }
  to{
    opacity:1;
    transform:translateY(0) scale(1);
  }
}

.hero-mango-text {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--green-dark);
  color: var(--cream);
  padding: 8px 14px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  z-index: 5;
  white-space: nowrap;
  box-shadow: 0 12px 30px -8px rgba(15,46,34,0.4);
  animation: fadeInScale 0.8s ease both;
}
.hero-mango-text-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  animation: blinkDot 1.5s ease-in-out infinite;
}
.hero-mango-text-label { color: var(--cream); }

.hero-mango-text-1 {
  top: 12%;
  left: -10px;
  animation-delay: 0.4s;
  border-left: 3px solid var(--gold);
}
.hero-mango-text-2 {
  top: 48%;
  right: -10px;
  animation-delay: 0.7s;
  border-right: 3px solid var(--gold);
}
.hero-mango-text-3 {
  bottom: 14%;
  left: 0;
  animation-delay: 1s;
  border-left: 3px solid var(--gold);
}

@keyframes fadeInScale {
  from { opacity: 0; transform: scale(0.85); }
  to { opacity: 1; transform: scale(1); }
}

@media (max-width: 1023px) {
  .hero-mango-text-1 { left: 8px; }
  .hero-mango-text-2 { right: 8px; }
  .hero-mango-text-3 { left: 8px; }
}
@media (max-width: 640px) {
  .hero-mango-text { font-size: 9px; padding: 6px 10px; }
}

.hero-mango-caption {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-10%);
  text-align: center;
  background: var(--cream);
  padding: 14px 28px;
  border: 2px solid var(--green-dark);
  z-index: 6;
  white-space: nowrap;
  box-shadow: 0 14px 30px -8px rgba(15,46,34,0.3);
  
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-mango-caption-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--green-dark);
  letter-spacing: -0.01em;
  line-height: 1;
}
.hero-mango-caption-sub {
  font-size: 10px;
  color: var(--gold-dark);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  margin-top: 4px;
}



/* ============ COMPACT WHY TRUST US BANNER ============ */
.why-trust-banner {
  background: var(--cream);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
}
.why-trust-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background-image: repeating-linear-gradient(45deg, var(--gold) 0 10px, var(--gold-dark) 10px 20px);
}
.why-trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
@media (min-width: 1024px) {
  .why-trust-grid { grid-template-columns: 1fr 2.4fr; gap: 56px; }
}
.why-trust-grid-header { text-align: left; }
.why-trust-banner-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  color: var(--green-dark);
  letter-spacing: -0.02em;
  margin-top: 20px;
  line-height: 1;
}
.why-trust-banner-title .italic { font-weight: 300; color: var(--gold-dark); }

.why-trust-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
@media (min-width: 768px) { .why-trust-cards { grid-template-columns: repeat(6, 1fr); gap: 12px; } }

.why-trust-card {
  background: var(--cream-dark);
  border: 2px solid var(--green-dark);
  padding: 24px 14px;
  text-align: center;
  position: relative;
  transition: all 0.4s ease;
  animation: fadeUp 0.6s ease both;
  box-shadow: 0 8px 20px -8px rgba(15,46,34,0.15);
}
.why-trust-card:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-4px);
}
.why-trust-card:hover .why-trust-card-title,
.why-trust-card:hover .why-trust-card-desc { color: var(--cream); }
.why-trust-card:hover .why-trust-card-num { color: var(--gold); }
.why-trust-card:hover .why-trust-card-icon { color: var(--gold); border-color: var(--gold); }

.why-trust-card-num {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  color: var(--gold-dark);
  letter-spacing: 0.1em;
  transition: color 0.4s ease;
}
.why-trust-card-icon {
  width: 48px;
  height: 48px;
  margin: 10px auto;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-dark);
  transition: all 0.4s ease;
}
.why-trust-card-icon svg { width: 22px; height: 22px; }
.why-trust-card-title {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--green-dark);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
  transition: color 0.4s ease;
  line-height: 1.2;
}
.why-trust-card-desc {
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  line-height: 1.3;
  transition: color 0.4s ease;
}

.hero-wave {
  display: block;
  width: 100%;
  height: 60px;
}
@media (max-width: 768px) {
  .hero-wave { height: 40px; }
}

/* ============ TRUST STRIP ============ */
.trust-strip {
  background: var(--green-dark);
  padding: 36px 0;
  overflow: hidden;
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  position: relative;
}
.trust-track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  width: max-content;
  will-change: transform;
  animation: marquee 30s linear infinite;
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 56px;
  color: var(--cream);
}
.trust-icon {
  width: 24px;
  height: 24px;
  color: var(--gold);
}
.trust-text-label {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--cream);
}
.trust-star { color: var(--gold); font-size: 24px; }
@media (max-width: 768px) {
  .trust-item { padding: 0 40px; }
  .trust-text-label { font-size: 20px; }
  .trust-icon { width: 20px; height: 20px; }
}

/* ============ TODAY'S FRESH ============ */
.todays-fresh {
  background: var(--cream-dark);
  position: relative;
  overflow: hidden;
}
.todays-fresh-header {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 80px;
}
@media (min-width: 1024px) {
  .todays-fresh-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
}
.todays-fresh-meta {
  max-width: 480px;
  text-align: left;
}
@media (min-width: 1024px) { .todays-fresh-meta { text-align: right; } }
.todays-fresh-meta p {
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.6;
}
.free-delivery {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--green-dark);
}
.updated-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--text-soft);
}
.updated-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--tomato);
  animation: blinkDot 1.5s ease-in-out infinite;
}

.fresh-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
@media (min-width: 768px) { .fresh-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; } }
@media (min-width: 1024px) { .fresh-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; } }

.fresh-card {
  background: var(--cream);
  border: 2px solid rgba(15,46,34,0.1);
  position: relative;
  overflow: hidden;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}
.fresh-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 60px -20px rgba(15,46,34,0.25);
  border-color: var(--gold);
}
.fresh-card-top {
  height: 6px;
}
.fresh-card-image {
  position: relative;
  aspect-ratio: 5/4;
  overflow: hidden;
  background: var(--cream-dark);
}
.fresh-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.03) saturate(1.08);
  transition: transform 1s ease;
}
.fresh-card:hover .fresh-card-image img { transform: scale(1.06); }
.fresh-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 12px;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--cream);
}
.fresh-badge.tomato { background: var(--tomato); }
.fresh-badge.gold { background: var(--gold); color: var(--green-deepest); }
.fresh-badge.green { background: var(--green); }
.fresh-weight {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(255, 248, 231, 0.95);
  backdrop-filter: blur(8px);
  padding: 4px 10px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--green-dark);
}
.fresh-card-content { padding: 24px; }
.fresh-card-name {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--green-dark);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.fresh-card-place {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-top: 6px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}
.fresh-card-place svg { width: 12px; height: 12px; }
.fresh-card-price-row {
  margin: 20px 0;
  padding-bottom: 20px;
  border-bottom: 2px dashed var(--sand);
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.fresh-card-price {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1;
}
.fresh-card-unit {
  font-size: 14px;
  color: var(--text-soft);
  font-weight: 500;
}
.fresh-card-stock {
  font-size: 11px;
  color: var(--text-soft);
  margin-top: 8px;
  font-style: italic;
}
.fresh-card .btn-primary {
  width: 100%;
  padding: 12px 16px;
  font-size: 11px;
}

/* Bulk strip */
.bulk-strip {
  margin-top: 64px;
  background: var(--green-dark);
  color: var(--cream);
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
}
@media (min-width: 768px) {
  .bulk-strip { flex-direction: row; padding: 48px; }
}
.bulk-eyebrow {
  font-size: 11px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 8px;
}
.bulk-strip h3 {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--cream);
  letter-spacing: -0.01em;
}
.bulk-strip p {
  font-size: 14px;
  color: rgba(255,248,231,0.7);
  margin-top: 8px;
}
.bulk-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ============ OUR STORY ============ */
.our-story { background: var(--cream); position: relative; overflow: hidden; }
.story-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 1023px) {
  .story-grid { grid-template-columns: 1fr; gap: 64px; }
}

.story-images { position: relative; }
.story-image-main {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border: 2px solid rgba(15,46,34,0.15);
}
.story-image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.03) saturate(1.08);
}
.story-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(15,46,34,0.5) 100%);
}
.story-stamp-top {
  position: absolute;
  top: 24px;
  right: 24px;
  padding: 6px 16px;
  background: var(--cream);
  color: var(--green-dark);
  border-color: var(--green-dark);
}
.story-image-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px;
  color: var(--cream);
}
.story-cap-eyebrow {
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 8px;
}
.story-cap-title {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--cream);
  line-height: 1.1;
}

.story-image-secondary {
  position: absolute;
  bottom: -48px;
  right: -24px;
  width: 55%;
  aspect-ratio: 4/5;
  overflow: hidden;
  border: 2px solid var(--gold);
  box-shadow: 0 25px 50px -12px rgba(15,46,34,0.5);
}
@media (max-width: 768px) { .story-image-secondary { right: -12px; bottom: -32px; } }
.story-image-secondary img { width: 100%; height: 100%; object-fit: cover; }

.story-price-tag {
  position: absolute;
  top: -24px;
  left: -24px;
  background: var(--gold);
  color: var(--green-deepest);
  padding: 16px 20px;
  transform: rotate(-1deg);
  box-shadow: 0 10px 30px -5px rgba(15,46,34,0.3);
  display: none;
}
@media (min-width: 768px) { .story-price-tag { display: block; } }
.story-price-tag > div:first-child {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 700;
}
.story-price-tag .small { font-size: 14px; font-weight: 500; }
.story-price-tag > span:not(.small) {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  margin-top: 4px;
  display: inline-block;
}

.story-years-badge {
  position: absolute;
  top: -24px;
  right: 24%;
  background: var(--green-dark);
  color: var(--gold);
  padding: 12px 16px;
  transform: rotate(1deg);
  box-shadow: 0 10px 30px -5px rgba(15,46,34,0.3);
  display: none;
}
@media (min-width: 768px) { .story-years-badge { display: block; } }
.story-years-badge {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  color: var(--gold);
}
.story-years-badge span {
  font-size: 9px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-top: 6px;
  color: var(--cream);
  font-weight: 700;
  display: block;
}

.story-content > * + * { margin-top: 24px; }
.story-title { margin-top: 24px; }
.story-paragraph {
  font-size: 17px;
  color: var(--text-soft);
  line-height: 1.7;
  max-width: 600px;
}
.story-subtitle {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--green-dark);
  font-weight: 600;
  margin-top: 32px;
}
.story-promises {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 2px dashed var(--sand);
}
@media (min-width: 640px) { .story-promises { grid-template-columns: 1fr 1fr; gap: 32px; } }
.promise-eyebrow {
  font-size: 11px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 700;
  margin-bottom: 12px;
}
.story-promises p {
  font-size: 16px;
  color: var(--text);
  line-height: 1.6;
  font-weight: 500;
}
.story-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

/* (Old Why Trust Us styles removed - replaced by compact banner) */

/* ============ FARM JOURNEY ============ */
.farm-journey {
  background: var(--green-dark);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.journey-bg-blob {
  position: absolute;
  top: 0; right: 0;
  width: 600px;
  height: 600px;
  pointer-events: none;
  background: radial-gradient(circle at 70% 30%, rgba(244,163,0,0.12) 0%, transparent 60%);
}
.farm-journey .section-title { color: var(--cream); }
.farm-journey .section-lead { color: rgba(255,255,255,0.85); }
.journey-lead { max-width: 720px; }

/* Animated curve path */
.journey-curve-wrap {
  position: relative;
  width: 100%;
  margin-top: 80px;
}
.journey-curve-svg {
  width: 100%;
  height: 200px;
  display: block;
}
.journey-curve-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 16px;
  margin-top: 20px;
}
@media (min-width: 768px) {
  .journey-curve-steps { grid-template-columns: repeat(6, 1fr); gap: 16px; }
}

.journey-curve-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}
.journey-curve-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 8px 24px -6px rgba(244,163,0,0.5);
  animation: pulseIcon 2.5s ease-in-out infinite;
}
.journey-curve-icon svg { width: 26px; height: 26px; color: var(--green-deepest); }
@keyframes pulseIcon {
  0%, 100% { transform: scale(1); box-shadow: 0 8px 24px -6px rgba(244,163,0,0.5); }
  50% { transform: scale(1.08); box-shadow: 0 12px 32px -6px rgba(244,163,0,0.7); }
}
.journey-curve-label {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 4px;
}
.journey-curve-text {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  line-height: 1.4;
  max-width: 160px;
}

@media (max-width: 767px) {
  .journey-curve-svg { display: none; }
  .journey-curve-wrap { margin-top: 40px; }
}

/* ============ FEATURED FRUITS ============ */
.featured-fruits { background: var(--cream); }
.featured-fruits-list {
  display: flex;
  flex-direction: column;
  gap: 120px;
}
@media (max-width: 768px) { .featured-fruits-list { gap: 80px; } }

/* FEATURED FRUITS — Premium Card UI */
.featured-item {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 0;
  align-items: stretch;
  background: var(--cream);
  border: 2px solid rgba(15,46,34,0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.featured-item:hover {
  border-color: var(--gold);
  box-shadow: 0 30px 60px -20px rgba(15,46,34,0.25);
}
@media (max-width: 1023px) {
  .featured-item { grid-template-columns: 1fr; gap: 0; }
}
.featured-item.reverse .featured-item-image { order: 2; }
@media (max-width: 1023px) { .featured-item.reverse .featured-item-image { order: 0; } }

.featured-item-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--cream-dark);
}
@media (min-width: 1024px) { .featured-item-image { aspect-ratio: auto; min-height: 540px; } }
.featured-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.03) saturate(1.08);
  transition: transform 1.2s ease;
}
.featured-item:hover .featured-item-image img { transform: scale(1.06); }

/* Floating badge on image */
.featured-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  padding: 10px 18px;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--cream);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.featured-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  animation: blinkDot 1.5s ease-in-out infinite;
}
.featured-badge.tomato { background: var(--tomato); }
.featured-badge.green { background: var(--green); }
.featured-badge.gold { background: var(--gold); color: var(--green-deepest); }

.featured-origin-stamp {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(15,46,34,0.92);
  backdrop-filter: blur(8px);
  padding: 10px 16px;
  border-left: 3px solid var(--gold);
  z-index: 2;
}
.featured-origin-stamp-eyebrow {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 4px;
}
.featured-origin-stamp-name {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--cream);
  letter-spacing: -0.01em;
  line-height: 1;
}

/* Content side */
.featured-item-content {
  padding: 48px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--cream);
}
@media (max-width: 768px) { .featured-item-content { padding: 32px 24px; } }

.featured-eyebrow {
  font-size: 11px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 700;
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.featured-eyebrow::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--gold-dark);
}

.featured-name {
  font-family: var(--font-display);
  font-size: clamp(40px, 4.5vw, 64px);
  color: var(--green-deepest);
  line-height: 1;
  letter-spacing: -0.02em;
  font-weight: 700;
  margin-bottom: 14px;
}

.featured-sub {
  font-family: var(--font-alt);
  font-style: italic;
  font-size: 22px;
  color: var(--gold-dark);
  font-weight: 400;
  margin-bottom: 20px;
  padding-left: 16px;
  border-left: 2px solid var(--gold);
}

.featured-desc {
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.7;
  margin-bottom: 28px;
  font-weight: 400;
}

.featured-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.featured-tag {
  padding: 6px 12px;
  background: var(--cream-dark);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--green-dark);
  font-weight: 600;
  border-left: 2px solid var(--gold);
}

.featured-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}
.featured-actions .btn-buy {
  background: var(--green);
  color: var(--cream);
  border: 2px solid var(--green);
  padding: 16px 32px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.featured-actions .btn-buy:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: var(--cream);
  transform: translateY(-3px);
  box-shadow: 0 16px 30px -10px rgba(15,46,34,0.5);
}
.featured-actions .btn-enquire {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
  padding: 16px 32px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.featured-actions .btn-enquire:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--green-deepest);
  transform: translateY(-3px);
  box-shadow: 0 16px 30px -10px rgba(244,163,0,0.5);
}

/* ============ NUMBERS ============ */
.numbers-section {
  position: relative;
  overflow: hidden;
  background: var(--green-deepest);
}
.numbers-bg { position: absolute; inset: 0; }
.numbers-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}
.numbers-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,46,34,0.85), rgba(15,46,34,0.95));
}
.numbers-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}
.numbers-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  color: var(--cream);
  letter-spacing: -0.02em;
  margin-bottom: 64px;
}
.numbers-title .italic { font-weight: 300; }
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  text-align: center;
}
@media (min-width: 768px) {
  .numbers-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; }
  .numbers-grid .number-item:first-child { text-align: left; }
  .numbers-grid .number-item:last-child { text-align: right; }
}

.number-item {
  position: relative;
  padding: 8px 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 768px) {
  .numbers-grid .number-item:first-child { align-items: flex-start; }
  .numbers-grid .number-item:last-child { align-items: flex-end; }
}
.number-item:not(:last-child)::after { display: none; }
@media (min-width: 768px) {
  .number-item:not(:last-child)::after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    right: -10px;
    width: 1px;
    height: 80px;
    background: rgba(244,163,0,0.3);
    transform: translateY(-50%);
  }
}
.number-value {
  font-family: var(--font-display);
  font-size: clamp(40px, 4.5vw, 56px);
  color: var(--cream);
  line-height: 1;
  letter-spacing: -0.02em;
  font-weight: 700;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.number-value-suffix { color: var(--gold); }
.number-label {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--cream);
  font-weight: 700;
  margin-top: 14px;
}

/* ============ WHO WE SERVE ============ */
/* ============ DELIVERY AREAS ============ */
.delivery-areas { background: var(--cream); position: relative; overflow: hidden; }

.delivery-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}
.delivery-tab {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 24px;
  background: var(--cream-dark);
  border: 2px solid rgba(15,46,34,0.1);
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}
.delivery-tab svg { width: 18px; height: 18px; }
.delivery-tab:hover {
  border-color: var(--green-dark);
  background: var(--cream);
}
.delivery-tab.active {
  background: var(--green-dark);
  color: var(--cream);
  border-color: var(--green-dark);
}
.delivery-tab-count {
  background: var(--gold);
  color: var(--green-deepest);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 999px;
  margin-left: 4px;
}
.delivery-tab.active .delivery-tab-count { background: var(--cream); }

.delivery-panel { display: none; }
.delivery-panel.active { display: block; animation: fadeUp 0.6s ease; }

.delivery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
}
@media (min-width: 1024px) { .delivery-grid { grid-template-columns: repeat(4, 1fr); } }

.delivery-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
  background: var(--cream-dark);
  border: 2px solid rgba(15,46,34,0.1);
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
  width: 100%;
}
.delivery-area:hover {
  background: var(--green-dark);
  color: var(--cream);
  border-color: var(--green-dark);
  transform: translateY(-2px);
}
.delivery-area:hover .delivery-area-pincode { color: var(--gold); }
.delivery-area-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  color: var(--green-dark);
  letter-spacing: -0.01em;
  transition: color 0.3s ease;
}
.delivery-area:hover .delivery-area-name { color: var(--cream); }
.delivery-area-pincode {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  font-variant-numeric: tabular-nums;
  transition: color 0.3s ease;
}
.delivery-area-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(45,106,79,0.1);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.delivery-area:hover .delivery-area-check {
  background: var(--gold);
  color: var(--green-deepest);
}
.delivery-area-check svg { width: 14px; height: 14px; }

.delivery-cta {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 40px;
  background: var(--cream-dark);
  border: 2px dashed var(--sand);
}
@media (min-width: 768px) {
  .delivery-cta { flex-direction: row; align-items: center; padding: 48px; gap: 40px; }
}
.delivery-cta-eyebrow {
  font-size: 11px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 700;
  margin-bottom: 8px;
}
.delivery-cta h3 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 32px);
  color: var(--green-dark);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.delivery-cta p {
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.5;
  max-width: 540px;
}

/* ============ QUALITY PROMISE ============
.quality-promise {
  position: relative;
  padding: 130px 0;
  overflow: hidden;
}
@media (max-width: 768px) { .quality-promise { padding: 80px 0; } }
.qp-bg { position: absolute; inset: 0; }
.qp-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.qp-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,46,34,0.7), rgba(15,46,34,0.92));
}
.qp-inner {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.qp-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 80px);
  color: var(--cream);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-top: 32px;
  margin-bottom: 40px;
}
.qp-title .italic { font-weight: 300; }
.qp-sub {
  font-size: 19px;
  color: #FFFFFF;
  line-height: 1.6;
  margin-bottom: 56px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.qp-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 64px;
}
.qp-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  padding-top: 48px;
  border-top: 2px solid rgba(244,163,0,0.3);
}
@media (min-width: 768px) { .qp-badges { grid-template-columns: repeat(4, 1fr); } }
.qp-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--cream);
}
.qp-badge svg { color: var(--gold); } */

/* ============ GALLERY ============ */
.gallery { background: var(--green-dark); }
.gallery-grid {
  columns: 2;
  column-gap: 20px;
}
@media (min-width: 768px) { .gallery-grid { columns: 3; column-gap: 20px; } }
@media (min-width: 1024px) { .gallery-grid { columns: 4; column-gap: 20px; } }

.gallery .section-title {
    color: var(--cream);
}
.gallery span {
    color: var(--gold-dark);
}

.gallery-item {
  display: block;
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(15,46,34,0.1);
  margin-bottom: 20px;
  break-inside: avoid;
  background: var(--cream-dark);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.03) saturate(1.08);
  transition: transform 1s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(15,46,34,0.9));
  opacity: 0;
  transition: opacity 0.5s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  color: var(--cream);
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-caption {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--cream);
}
.gallery-item-location {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-top: 8px;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15,46,34,0.97);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  backdrop-filter: blur(8px);
  padding: 40px;
}
.lightbox.active { opacity: 1; pointer-events: auto; }
.lightbox img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
}
.lightbox-caption {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  text-align: center;
  color: var(--cream);
}
.lightbox-caption-name {
  font-family: var(--font-display);
  font-size: 28px;
  margin-bottom: 8px;
}
.lightbox-caption-loc {
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255,248,231,0.7);
  font-weight: 700;
}
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,248,231,0.1);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  transition: background 0.3s ease;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,248,231,0.2); }
.lightbox-close { top: 20px; right: 20px; }
.lightbox-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 20px; top: 50%; transform: translateY(-50%); }

/* ============ TESTIMONIALS ============ */
.testimonials { background: var(--cream-dark); }
.testimonial-card {
  background: var(--cream);
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(15,46,34,0.15);
}
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
}
@media (min-width: 1024px) {
  .testimonial-grid { grid-template-columns: 5fr 7fr; }
}
.testimonial-image{
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
}
@media (min-width:1024px){
    .testimonial-image{
        aspect-ratio: 1/1;
        min-height: 500px;
    }
}
.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.03) saturate(1.08);
}
.testimonial-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(15,46,34,0.55) 100%);
}
.testimonial-image-caption {
  position: absolute;
  bottom: 24px;
  left: 24px;
  color: var(--cream);
}
.test-cap-eyebrow {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 8px;
}
.test-cap-name {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--cream);
}
.testimonial-content {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 768px) { .testimonial-content { padding: 56px 80px; } }
@media (min-width: 1024px) { .testimonial-content { padding: 80px; } }
.testimonial-quote {
  color: var(--gold);
  margin-bottom: 24px;
}
.testimonial-text {
  font-family: var(--font-alt);
  font-style: italic;
  font-size: clamp(22px, 2.5vw, 32px);
  color: var(--green-dark);
  line-height: 1.4;
  font-weight: 300;
  margin-bottom: 32px;
}
.testimonial-footer {
  padding-top: 32px;
  border-top: 2px dashed var(--sand);
}
.test-role {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 700;
  margin-bottom: 4px;
}
.test-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-soft);
}
.test-location {
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.test-location::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233D5A48' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
}
.test-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--sand); }
.test-stars {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  color: var(--gold);
}
.test-stars svg { width: 14px; height: 14px; }

.testimonial-controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
  gap: 24px;
}
@media (min-width: 640px) { .testimonial-controls { flex-direction: row; } }
.testimonial-dots {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sand);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.5s ease;
}
.testimonial-dot.active {
  width: 48px;
  height: 8px;
  background: var(--green-dark);
}
.testimonial-counter {
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text-soft);
  font-weight: 700;
}
.testimonial-counter span:first-child {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--green-dark);
}
.test-counter-sep { color: var(--text-muted); margin: 0 4px; }

/* ============ FAQ ============ */
.faq-section { background: var(--cream); }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 1024px) { .faq-grid { grid-template-columns: 1fr 1.6fr; gap: 80px; } }
.faq-title { margin-top: 24px; }
.faq-lead {
  font-size: 16px;
  color: var(--text-soft);
  line-height: 1.6;
  margin-top: 24px;
  max-width: 480px;
}
.faq-list {}
.faq-item {
  border-bottom: 2px solid var(--sand);
  transition: border-color 0.5s ease, background 0.5s ease;
}
.faq-item.open {
  background: var(--cream-dark);
  border-bottom-color: var(--gold);
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: none;
  border: none;
  cursor: pointer;
}
.faq-q-text {
  font-family: var(--font-display);
  font-size: 19px;
  color: var(--text);
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: color 0.5s ease;
}
.faq-item.open .faq-q-text,
.faq-question:hover .faq-q-text { color: var(--green-dark); }
.faq-toggle {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--green-dark);
  color: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease;
}
.faq-item.open .faq-toggle {
  background: var(--green-dark);
  color: var(--cream);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}
.faq-item.open .faq-answer {
  max-height: 400px;
}
.faq-answer p {
  padding-bottom: 24px;
  padding-right: 60px;
  color: var(--text-soft);
  line-height: 1.7;
}

/* ============ FINAL CTA ============ */
.final-cta {
  position: relative;
  padding: 130px 0;
  overflow: hidden;
}
@media (max-width: 768px) { .final-cta { padding: 80px 0; } }
.cta-bg { position: absolute; inset: 0; }
.cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.3)1%, rgba(9, 29, 21, 0.78) 30%, rgba(4, 14, 10, 0.95) 100%);
}
.final-cta-inner {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 80px);
  color: var(--cream);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-top: 32px;
  margin-bottom: 40px;
}
.cta-title .italic { font-weight: 300; }
.cta-sub {
  font-size: 19px;
  color: #FFFFFF;
  line-height: 1.6;
  margin-bottom: 56px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 80px;
}
.cta-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  padding-top: 48px;
  border-top: 2px solid rgba(244,163,0,0.3);
}
@media (min-width: 768px) { .cta-stats { grid-template-columns: repeat(4, 1fr); gap: 32px; } }
.cs-num {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  color: var(--cream);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.cs-label {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--cream);
  font-weight: 700;
}

/* ============ CONTACT ============ */
.contact-section { background: var(--cream-dark); position: relative; overflow: hidden; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr 1.1fr; gap: 80px; }
}

.contact-items { display: flex; flex-direction: column; gap: 32px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--green-dark);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.5s ease;
}
.contact-item:hover .contact-icon { background: var(--gold); color: var(--green-deepest); }
.contact-label {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 700;
  margin-bottom: 6px;
}
.contact-value {
  font-size: 17px;
  color: var(--text);
  font-weight: 600;
  transition: color 0.5s ease;
}
.contact-item:hover .contact-value { color: var(--green-dark); }

.contact-social {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 2px dashed var(--sand);
}
.contact-social-label {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 700;
  margin-bottom: 20px;
}
.contact-social-icons {
  display: flex;
  align-items: center;
  gap: 12px;
}
.social-icon {
  width: 44px;
  height: 44px;
  border: 2px solid var(--green-dark);
  color: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease;
}
.social-icon:hover { background: var(--green-dark); color: var(--gold); }

.contact-form {
  background: var(--cream);
  padding: 32px;
  border: 2px solid rgba(15,46,34,0.15);
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 768px) { .contact-form { padding: 40px; } }
@media (min-width: 1024px) { .contact-form { padding: 40px; } }

.form-group { display: flex; flex-direction: column; }
.form-group label {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text-soft);
  font-weight: 700;
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 18px 0;
  background: transparent;
  border: none;
  border-bottom: 2px solid rgba(15,46,34,0.2);
  color: var(--text);
  font-size: 16px;
  font-weight: 400;
  outline: none;
  transition: border-color 0.3s ease;
  font-family: var(--font-body);
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); font-weight: 300; }
.form-group textarea { resize: vertical; min-height: 120px; }

.form-select-wrap { position: relative; }
.form-select {
  width: 100%;
  padding: 18px 40px 18px 0;
  background: transparent;
  border: none;
  border-bottom: 2px solid rgba(45, 106, 79, 0.25);
  color: var(--text);
  font-size: 16px;
  font-weight: 400;
  outline: none;
  transition: border-color 0.3s ease;
  font-family: var(--font-body);
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}
.form-select:focus { border-color: var(--gold); }
.form-select option { color: var(--text); padding: 8px; background: var(--cream); }
.form-select-chevron {
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--green);
  pointer-events: none;
}

.contact-form .btn-primary { align-self: flex-start; }
.form-note {
  font-size: 12px;
  color: var(--text-soft);
  font-style: italic;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--green-deepest);
  color: var(--cream);
  padding-top: 100px;
  padding-bottom: 48px;
  position: relative;
  overflow: hidden;
}
.footer-inner { position: relative; z-index: 2; }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-bottom: 64px;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 48px; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; } }

.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 2px;
}
.footer-brand-logo {
  width: 160px;
  height: 160px;
  object-fit: contain;
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--cream);
  letter-spacing: -0.01em;
}
.footer-brand-name .italic { color: var(--gold); font-weight: 300; }
.footer-brand-sub {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 6px;
  font-weight: 700;
}
.footer-brand-text {
  color: var(--cream);
  line-height: 1.6;
  margin-bottom: 26px;
  max-width: 480px;
  font-weight: 300;
}
.footer-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.footer-actions .btn-gold,
.footer-actions .btn-outline-cream {
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.footer-actions .btn-gold:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 14px 30px -8px rgba(244,163,0,0.5);
  background: var(--gold-dark);
}
.footer-actions .btn-outline-cream:hover {
  transform: translateY(-3px);
  background: var(--gold);
  color: var(--green-deepest);
  border-color: var(--gold);
  box-shadow: 0 14px 30px -8px rgba(244,163,0,0.4);
}

.footer-col-title {
  font-family: var(--font-display);
  font-size: 19px;
  color: var(--cream);
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}
.footer-list li { margin-bottom: 12px; }
.footer-list li a, .footer-list li span {
  color: var(--cream);
  font-size: 14px;
  transition: color 0.3s ease;
}
.footer-list li a:hover { color: var(--gold); }
.footer-contact li { margin-bottom: 16px; }
.fc-label {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 6px;
}
.footer-link-btn {
  color: var(--cream);
  font-size: 14px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.footer-bottom {
  padding-top: 32px;
  border-top: 2px solid rgba(255,248,231,0.15);
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
}
.footer-copyright {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,248,231,0.6);
  font-weight: 500;
}
.footer-bottom-links {
  display: flex;
  gap: 24px;
}
.footer-bottom-links a {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,248,231,0.6);
  font-weight: 500;
  transition: color 0.3s ease;
}
.footer-bottom-links a:hover { color: var(--cream); }

/* ============ FLOATING WHATSAPP ============ */
.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.floating-whatsapp.show { opacity: 1; transform: translateY(0); }

.wa-popup {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 320px;
  background: var(--cream);
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  border: 2px solid rgba(15,46,34,0.15);
  margin-bottom: 12px;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.wa-popup.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
.wa-popup-header {
  background: var(--green-dark);
  color: var(--cream);
  padding: 20px;
}
.wa-popup-header-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.wa-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--green-deepest);
  display: flex;
  align-items: center;
  justify-content: center;
}
.wa-popup-name {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--cream);
}
.wa-popup-status {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 2px;
}
.wa-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-light);
  animation: blinkDot 1.5s ease-in-out infinite;
}
.wa-popup-greeting {
  font-size: 13px;
  color: rgba(255,248,231,0.85);
  line-height: 1.5;
}
.wa-popup-actions {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.wa-action-btn {
  width: 100%;
  text-align: left;
  padding: 12px;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
}
.wa-action-btn:hover { background: var(--green-dark); }
.wa-action-btn:hover .wa-action-title { color: var(--cream); }
.wa-action-btn:hover .wa-action-sub { color: rgba(255,248,231,0.8); }
.wa-action-btn:hover svg { color: var(--cream); }
.wa-action-btn:hover.gold-action { background: var(--gold); }
.wa-action-btn:hover.gold-action .wa-action-title { color: var(--green-deepest); }
.wa-action-btn:hover.gold-action .wa-action-sub { color: rgba(15,46,34,0.8); }
.wa-action-btn:hover.gold-action svg { color: var(--green-deepest); }
.wa-action-title {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--green-dark);
  margin-bottom: 2px;
  transition: color 0.3s ease;
}
.wa-action-sub {
  font-size: 11px;
  color: var(--text-soft);
  transition: color 0.3s ease;
}
.wa-action-btn svg { color: var(--green-dark); transition: color 0.3s ease; }

.wa-button {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px -5px rgba(0,0,0,0.3);
  transition: transform 0.5s ease;
}
.wa-button:hover { transform: scale(1.1); }
.wa-button-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  opacity: 0.5;
  animation: softPulse 4s ease-in-out infinite;
}
.wa-button-icon { position: relative; z-index: 2; }
.wa-button-notify {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--tomato);
  border: 2px solid var(--cream);
  animation: blinkDot 1.5s ease-in-out infinite;
  display: none;
}
.wa-button-notify.show { display: block; }

/* ============ SCROLL REVEAL ============ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ============ SCROLLBAR ============ */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--green); }
::-webkit-scrollbar-thumb:hover { background: var(--green-dark); }
::selection { background: var(--gold); color: var(--green-deepest); }

/* ============ GRAIN TEXTURE ============ */
.grain {
  position: relative;
}
.grain::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
  opacity: 0.06;
  pointer-events: none;
  mix-blend-mode: multiply;
}
