/* ── IMPORTS ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,300&family=Cinzel:wght@400;500&display=swap');

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green-dark:   #1e3320;
  --green-mid:    #3a6b47;
  --green-light:  #6aa87a;
  --green-muted:  #e8f0ea;
  --cream:        #f2ede3;
  --warm-white:   #faf7f2;
  --off-white:    #f7f4ef;
  --gold:         #b8913a;
  --gold-light:   #d4b06a;
  --gold-pale:    #f0e4c4;
  --text-dark:    #181f19;
  --text-mid:     #445045;
  --text-light:   #7a8c7b;
  --shadow-green: rgba(30,51,32,0.12);
  --shadow-gold:  rgba(184,145,58,0.18);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--warm-white);
  color: var(--text-dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── TOP BAR ── */
.topbar {
  background: var(--green-dark);
  color: rgba(205,229,210,0.85);
  font-size: 0.73rem;
  letter-spacing: 0.1em;
  display: flex;
  justify-content: flex-end;
  gap: 2.5rem;
  padding: 0.5rem 3rem;
  font-family: 'Cinzel', serif;
}
.topbar a { color: rgba(205,229,210,0.85); text-decoration: none; transition: color 0.25s; }
.topbar a:hover { color: var(--gold-light); }

/* ── NAVBAR ── */
nav {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(250,247,242,0.96);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid rgba(184,145,58,0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 3.5rem;
  transition: box-shadow 0.4s, padding 0.4s;
}
nav.scrolled {
  box-shadow: 0 4px 40px var(--shadow-green);
  padding: 0.7rem 3.5rem;
}
.nav-logo {
  font-family: 'Cinzel', serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--green-dark);
  letter-spacing: 0.08em;
  text-decoration: none;
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 2.2rem; list-style: none; }
.nav-links a {
  font-size: 0.73rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-mid);
  transition: color 0.25s;
  position: relative;
  padding-bottom: 3px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.35s cubic-bezier(0.4,0,0.2,1);
}
.nav-links a:hover { color: var(--green-dark); }
.nav-links a:hover::after { width: 100%; }
.has-dropdown { position: relative; }
.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 16px);
  left: -1.2rem;
  background: #fff;
  border: 1px solid rgba(184,145,58,0.2);
  box-shadow: 0 16px 48px var(--shadow-green);
  padding: 0.8rem 0;
  min-width: 200px;
}
.dropdown li { list-style: none; }
.dropdown a { display: block; padding: 0.6rem 1.5rem; font-size: 0.78rem; letter-spacing: 0.07em; }
.has-dropdown:hover .dropdown { display: block; }
.nav-cta {
  background: var(--green-dark) !important;
  color: #fff !important;
  padding: 0.5rem 1.4rem !important;
  font-family: 'Cinzel', serif !important;
  font-size: 0.68rem !important;
  letter-spacing: 0.12em !important;
}
.nav-cta:hover { background: var(--gold) !important; color: #fff !important; }
.nav-cta::after { display: none !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { display: block; width: 26px; height: 1.5px; background: var(--green-dark); transition: 0.3s; }

/* ── HERO ── */
.hero { position: relative; height: 96vh; min-height: 580px; overflow: hidden; }
.slides { display: flex; height: 100%; transition: transform 1.1s cubic-bezier(0.76,0,0.24,1); }
.slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
}
.slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(20,40,22,0.78) 0%, rgba(20,40,22,0.42) 45%, rgba(20,40,22,0.15) 75%, transparent 100%);
}
.slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,40,22,0.45) 0%, transparent 50%);
}
.slide-1 { background-color: #1a2e1a; background-image: url('https://images.unsplash.com/photo-1504674900247-0877df9cc836?w=1600&q=80'); }
.slide-2 { background-color: #1e2c1e; background-image: url('https://images.unsplash.com/photo-1543362906-acfc16c67564?w=1600&q=80'); }
.slide-3 { background-color: #1a2a1e; background-image: url('https://images.unsplash.com/photo-1466637574441-749b8f19452f?w=1600&q=80'); }
.slide-content {
  position: relative;
  z-index: 2;
  padding: 2rem 5rem;
  max-width: 720px;
  margin-left: 4vw;
}
.slide-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-family: 'Cinzel', serif;
  font-size: 0.63rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
}
.slide-badge::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--gold-light);
}
.slide-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5.5vw, 4.8rem);
  color: #fff;
  line-height: 1.1;
  font-weight: 500;
  margin-bottom: 1.2rem;
  letter-spacing: -0.01em;
}
.slide-content p {
  font-size: 1rem;
  color: rgba(255,255,255,0.78);
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 2.2rem;
  max-width: 480px;
}
.btn {
  display: inline-block;
  padding: 0.9rem 2.4rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.35s;
  cursor: pointer;
  border: none;
  font-family: 'Cinzel', serif;
  border-radius: 0;
}
.btn-white { background: #fff; color: var(--green-dark); }
.btn-white:hover { background: var(--gold); color: #fff; }
.btn-green { background: var(--green-dark); color: #fff; }
.btn-green:hover { background: var(--gold); }
.btn-outline { border: 1px solid var(--green-dark); color: var(--green-dark); background: transparent; }
.btn-outline:hover { background: var(--green-dark); color: #fff; }
.btn-outline-gold { border: 1px solid var(--gold); color: var(--gold); background: transparent; }
.btn-outline-gold:hover { background: var(--gold); color: #fff; }
.hero-arrows {
  position: absolute;
  bottom: 3rem; right: 3.5rem;
  display: flex;
  gap: 1px;
  z-index: 10;
}
.arrow-btn {
  width: 48px; height: 48px;
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.07);
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  backdrop-filter: blur(8px);
}
.arrow-btn:hover { background: var(--gold); border-color: var(--gold); }
.hero-dots {
  position: absolute;
  bottom: 3.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}
.dot {
  width: 28px; height: 2px;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: 0.4s;
}
.dot.active { background: var(--gold-light); width: 44px; }

/* ── COMMONS ── */
section { padding: 7rem 2rem; }
.container { max-width: 1200px; margin: 0 auto; }
.section-label {
  font-family: 'Cinzel', serif;
  font-size: 0.63rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.section-label::after {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 500;
  color: var(--green-dark);
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.divider {
  width: 40px; height: 1px;
  background: linear-gradient(to right, var(--gold), transparent);
  margin: 1.4rem 0 1.8rem;
}
.divider-center { margin: 1.4rem auto 1.8rem; background: linear-gradient(to right, transparent, var(--gold), transparent); width: 80px; }
.section-sub {
  color: var(--text-mid);
  font-size: 0.97rem;
  line-height: 1.85;
  max-width: 540px;
  font-weight: 300;
}

/* ── MY STORY ── */
#my-story {
  background: var(--warm-white);
  position: relative;
  overflow: hidden;
  padding: 8rem 0;
}
#my-story::before {
  content: 'Story';
  position: absolute;
  top: 50%; right: -2rem;
  transform: translateY(-50%);
  font-family: 'Playfair Display', serif;
  font-size: 14vw;
  font-weight: 700;
  color: rgba(30,51,32,0.03);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.story-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 6rem;
  align-items: start;
}
.story-img-wrap { position: relative; }
.story-img-wrap img {
  width: 100%; height: 640px;
  object-fit: cover;
  position: relative;
  z-index: 1;
  display: block;
}
.story-img-wrap::before {
  content: '';
  position: absolute;
  top: -20px; left: -20px; right: 20px; bottom: 20px;
  border: 1px solid rgba(184,145,58,0.35);
  z-index: 0;
}
.story-img-wrap::after {
  content: '';
  position: absolute;
  bottom: -20px; right: -20px;
  width: 50%; height: 40%;
  background: var(--green-muted);
  z-index: 0;
}
.story-text .tagline {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--green-mid);
  border-left: 2px solid var(--gold);
  padding: 1rem 1.5rem;
  margin: 2.2rem 0;
  line-height: 1.7;
  background: linear-gradient(to right, rgba(184,145,58,0.05), transparent);
}
.story-text p { color: var(--text-mid); line-height: 1.95; font-size: 0.95rem; margin-bottom: 1.2rem; font-weight: 300; }
.story-sig { margin-top: 2.5rem; display: flex; align-items: center; gap: 1.2rem; }
.story-sig-line { width: 36px; height: 1px; background: var(--gold); }
.story-sig-name { font-family: 'Playfair Display', serif; font-size: 1rem; font-style: italic; color: var(--text-mid); }
.story-highlights { display: flex; gap: 1rem; margin: 2rem 0; }
.story-highlight-item {
  flex: 1;
  background: var(--cream);
  border: 1px solid rgba(184,145,58,0.18);
  padding: 1.2rem 1rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
}
.story-highlight-item:hover { box-shadow: 0 8px 32px var(--shadow-gold); }
.story-highlight-item .highlight-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.story-highlight-item .highlight-label {
  font-family: 'Cinzel', serif;
  font-size: 0.6rem;
  color: var(--text-mid);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.4rem;
  display: block;
}

/* ── ABOUT ── */
#about { background: var(--cream); }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-img { position: relative; }
.about-img img { width: 100%; height: 520px; object-fit: cover; }
.about-tabs { display: flex; gap: 0; margin: 2.2rem 0 1.8rem; border-bottom: 1px solid rgba(184,145,58,0.2); }
.tab-btn {
  background: none;
  border: none;
  padding: 0.8rem 1.5rem 0.8rem 0;
  font-family: 'Cinzel', serif;
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  cursor: pointer;
  border-bottom: 1px solid transparent;
  margin-bottom: -1px;
  transition: 0.3s;
}
.tab-btn.active { color: var(--green-dark); border-bottom-color: var(--gold); }
.tab-panel { display: none; animation: fadeIn 0.4s ease; }
.tab-panel.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.tab-panel h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--green-dark); margin-bottom: 0.9rem; font-weight: 500; }
.tab-panel p { color: var(--text-mid); line-height: 1.85; font-size: 0.93rem; font-weight: 300; }

/* ── MISSION BAND ── */
#mission {
  background: var(--green-dark);
  padding: 5.5rem 2rem;
  position: relative;
  overflow: hidden;
}
#mission::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(184,145,58,0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 50%, rgba(106,168,122,0.06) 0%, transparent 60%);
}
.mission-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  position: relative;
  z-index: 1;
}
.mission-card {
  padding: 3rem 2.2rem;
  border: 1px solid rgba(255,255,255,0.06);
  transition: 0.4s;
  position: relative;
  overflow: hidden;
  background: rgba(255,255,255,0.02);
}
.mission-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.5s;
}
.mission-card:hover::after { transform: scaleX(1); }
.mission-card:hover { background: rgba(255,255,255,0.05); transform: translateY(-6px); }
.mission-icon { font-size: 2rem; margin-bottom: 1.4rem; display: block; }
.mission-card h3 { font-family: 'Playfair Display', serif; font-size: 1.45rem; color: #fff; margin-bottom: 0.9rem; font-weight: 500; }
.mission-card p { font-size: 0.87rem; color: rgba(255,255,255,0.55); line-height: 1.85; font-weight: 300; }
.mission-label { font-family: 'Cinzel', serif; font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 0.6rem; }

/* ── COMMITMENT ── */
#commitment { background: var(--warm-white); }
.commitment-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 7rem; align-items: center; }
.commitment-img { position: relative; }
.commitment-img img { width: 100%; height: 520px; object-fit: cover; position: relative; z-index: 1; }
.commitment-img::after {
  content: '';
  position: absolute;
  top: 24px; right: -24px;
  width: 75%; height: 75%;
  border: 1px solid rgba(184,145,58,0.3);
  z-index: 0;
}
.commitment-pillars { display: flex; flex-direction: column; gap: 1.2rem; margin-top: 2.2rem; }
.pillar {
  display: flex;
  gap: 1.4rem;
  align-items: flex-start;
  padding: 1.5rem 1.8rem;
  background: var(--cream);
  transition: 0.35s;
  border-left: 2px solid transparent;
}
.pillar:hover { border-left-color: var(--gold); transform: translateX(8px); box-shadow: 0 8px 32px var(--shadow-green); }
.pillar-num { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 400; color: var(--gold); line-height: 1; min-width: 36px; font-style: italic; }
.pillar-body h4 { font-size: 0.9rem; font-weight: 500; color: var(--green-dark); margin-bottom: 0.4rem; }
.pillar-body p { font-size: 0.86rem; color: var(--text-mid); line-height: 1.75; font-weight: 300; }

/* ── OUR PROMISE ── */
#our-promise { background: var(--cream); position: relative; overflow: hidden; }
.promise-bg-text {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Playfair Display', serif;
  font-size: 20vw; font-weight: 700;
  color: rgba(30,51,32,0.03);
  white-space: nowrap;
  pointer-events: none; user-select: none;
}
.promise-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
  position: relative; z-index: 1;
}
.promise-card {
  background: #fff;
  padding: 2.8rem 2.4rem;
  border: 1px solid rgba(184,145,58,0.1);
  transition: 0.4s;
  position: relative;
  overflow: hidden;
}
.promise-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.promise-card:hover::before { transform: scaleX(1); }
.promise-card:hover { box-shadow: 0 20px 60px var(--shadow-green); transform: translateY(-6px); }
.promise-card-icon { width: 50px; height: 50px; background: var(--green-dark); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; margin-bottom: 1.6rem; }
.promise-card h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--green-dark); margin-bottom: 0.8rem; font-weight: 500; }
.promise-card p { font-size: 0.87rem; color: var(--text-mid); line-height: 1.8; font-weight: 300; }

/* ── PRODUCTS ── */
#products { background: var(--green-dark); color: #fff; position: relative; overflow: hidden; }
#products::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(184,145,58,0.1) 0%, transparent 70%);
}
#products .section-label { color: var(--gold-light); }
#products .section-title { color: #fff; }
#products .divider { background: linear-gradient(to right, var(--gold), transparent); }
#products .section-sub { color: rgba(255,255,255,0.6); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
  position: relative; z-index: 1;
}
.products-grid-2col {
  grid-template-columns: repeat(2, 1fr) !important;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}
.product-card {
  background: rgba(5, 26, 14, 0.6);
  border: 1px solid rgba(184,145,58,0.18);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 0 1px rgba(184,145,58,0.35);
  border-color: rgba(184,145,58,0.45);
}
.product-card-img-wrap {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #051a0e 0%, #0a2a18 100%);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1.5rem;
  box-sizing: border-box;
  transition: transform 0.6s ease;
  display: block;
}
.product-card:hover img { transform: scale(1.06); }
.product-card-body {
  padding: 1.4rem 1.6rem 1.8rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.product-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 0.3rem;
  font-weight: 500;
  line-height: 1.35;
}
.product-card p {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  font-weight: 300;
  flex: 1;
}
.product-card-arrow {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Cinzel', serif;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light, #c8a84b);
  margin-top: 0.8rem;
  transition: gap 0.3s;
}
.product-card:hover .product-card-arrow { gap: 0.7rem; }
.product-card-arrow::after { content: '→'; font-size: 0.9rem; }
.product-tag {
  display: inline-block;
  font-family: 'Cinzel', serif;
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid rgba(184,145,58,0.35);
  border-radius: 3px;
  padding: 0.2rem 0.7rem;
  margin-bottom: 0.5rem;
  align-self: flex-start;
}

/* ── WHY US ── */
#why-us { background: var(--warm-white); }
.why-us-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 7rem; align-items: start; }
.why-us-left .section-sub { margin-bottom: 2.5rem; }
.why-list { display: flex; flex-direction: column; gap: 1.4rem; }
.why-item { display: flex; gap: 1.4rem; align-items: flex-start; }
.why-check { width: 26px; height: 26px; background: var(--gold); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 0.75rem; flex-shrink: 0; margin-top: 2px; }
.why-item-body h4 { font-weight: 500; font-size: 0.93rem; color: var(--green-dark); margin-bottom: 0.3rem; }
.why-item-body p { font-size: 0.86rem; color: var(--text-mid); line-height: 1.75; font-weight: 300; }
.why-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5px; }
.stat-card {
  background: var(--cream);
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.stat-card:hover::before { transform: scaleX(1); }
.stat-num { font-family: 'Playfair Display', serif; font-size: 3.4rem; font-weight: 400; color: var(--green-dark); line-height: 1; display: block; letter-spacing: -0.02em; }
.stat-label { font-family: 'Cinzel', serif; font-size: 0.62rem; color: var(--text-mid); letter-spacing: 0.14em; text-transform: uppercase; margin-top: 0.6rem; display: block; }

/* ── TEAM ── */
#team { background: var(--cream); }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; margin-top: 4rem; }
.team-card { text-align: center; }
.team-img-wrap { position: relative; display: inline-block; margin-bottom: 1.6rem; }
.team-img-wrap img {
  width: 190px; height: 190px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 12px 40px var(--shadow-green);
  transition: 0.4s;
  filter: saturate(0.88);
}
.team-card:hover .team-img-wrap img { border-color: var(--gold); transform: scale(1.04); filter: saturate(1); box-shadow: 0 16px 48px var(--shadow-gold); }
.team-img-badge { position: absolute; bottom: 6px; right: 6px; width: 30px; height: 30px; background: var(--gold); border-radius: 50%; border: 2px solid #fff; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; }
.team-card h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--green-dark); margin-bottom: 0.3rem; font-weight: 500; }
.team-card .role { font-family: 'Cinzel', serif; font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.9rem; display: block; }
.team-card p { font-size: 0.86rem; color: var(--text-mid); line-height: 1.8; max-width: 280px; margin: 0 auto; font-weight: 300; }
.team-socials { display: flex; justify-content: center; gap: 0.5rem; margin-top: 1.3rem; }
.social-btn { width: 32px; height: 32px; border: 1px solid rgba(184,145,58,0.3); display: flex; align-items: center; justify-content: center; font-size: 0.82rem; text-decoration: none; color: var(--text-light); transition: 0.3s; border-radius: 50%; }
.social-btn:hover { background: var(--green-dark); border-color: var(--green-dark); color: #fff; }

/* ── TESTIMONIALS ── */
#testimonials { background: var(--green-dark); color: #fff; padding: 7rem 2rem; position: relative; overflow: hidden; }
#testimonials::before {
  content: '\201C';
  position: absolute;
  top: -4rem; left: 2rem;
  font-family: 'Playfair Display', serif;
  font-size: 30vw; font-weight: 700;
  color: rgba(255,255,255,0.02);
  line-height: 1;
  pointer-events: none;
}
.testimonials-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  margin-top: 3.5rem;
  position: relative; z-index: 1;
}
.testi-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 2.5rem 2.2rem;
  position: relative;
  transition: 0.35s;
}
.testi-card:hover { background: rgba(255,255,255,0.07); transform: translateY(-4px); }
.testi-card::before { content: '\201C'; font-family: 'Playfair Display', serif; font-size: 4rem; color: var(--gold); opacity: 0.5; position: absolute; top: 1rem; left: 1.8rem; line-height: 1; }
.testi-text { color: rgba(255,255,255,0.68); line-height: 1.85; font-size: 0.9rem; margin-bottom: 1.8rem; margin-top: 1.8rem; font-style: italic; font-weight: 300; }
.testi-author { display: flex; align-items: center; gap: 1rem; }
.testi-avatar { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; border: 1px solid rgba(184,145,58,0.5); filter: saturate(0.85); }
.testi-name { font-family: 'Playfair Display', serif; font-weight: 500; font-size: 0.95rem; color: #fff; }
.testi-loc { font-family: 'Cinzel', serif; font-size: 0.62rem; color: rgba(255,255,255,0.35); letter-spacing: 0.08em; margin-top: 2px; }
.testi-stars { color: var(--gold-light); font-size: 0.8rem; margin-bottom: 0.3rem; letter-spacing: 0.1em; }

/* ── CONTACT ── */
#contact { background: var(--warm-white); }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 7rem; }
.contact-info .section-sub { margin-bottom: 2.8rem; }
.contact-items { display: flex; flex-direction: column; gap: 1.8rem; }
.contact-item { display: flex; gap: 1.3rem; align-items: flex-start; }
.contact-icon { width: 42px; height: 42px; background: var(--green-dark); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.contact-item-body strong { display: block; font-family: 'Cinzel', serif; font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.25rem; }
.contact-item-body span { font-size: 0.9rem; color: var(--text-mid); font-weight: 300; }
.contact-map { margin-top: 2.2rem; overflow: hidden; border: 1px solid rgba(184,145,58,0.2); }
.contact-map iframe { width: 100%; height: 190px; display: block; }
.form-title { font-family: 'Playfair Display', serif; font-size: 1.9rem; color: var(--green-dark); margin-bottom: 0.6rem; font-weight: 500; }
.form-sub { font-size: 0.88rem; color: var(--text-mid); margin-bottom: 2.2rem; font-weight: 300; line-height: 1.7; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.45rem; margin-bottom: 1rem; }
.form-group label { font-family: 'Cinzel', serif; font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-mid); font-weight: 400; }
.form-group input, .form-group textarea, .form-group select {
  padding: 0.85rem 1rem;
  border: none;
  border-bottom: 1px solid rgba(184,145,58,0.3);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--text-dark);
  background: transparent;
  transition: border-color 0.3s;
  outline: none;
  width: 100%;
  font-weight: 300;
  border-radius: 0;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-bottom-color: var(--gold); background: rgba(184,145,58,0.02); }
.form-group textarea { resize: vertical; min-height: 130px; border: 1px solid rgba(184,145,58,0.2); padding: 0.85rem 1rem; }
.form-group textarea:focus { border-color: var(--gold); }
.form-success { display: none; padding: 1.2rem; background: rgba(106,168,122,0.1); border: 1px solid rgba(106,168,122,0.3); color: var(--green-dark); font-size: 0.9rem; text-align: center; font-weight: 300; }

/* ── CTA BANNER ── */
.cta-banner { background: var(--green-dark); position: relative; overflow: hidden; }
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(184,145,58,0.12) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(106,168,122,0.06) 0%, transparent 50%);
}
.cta-banner-inner { position: relative; z-index: 1; text-align: center; }
.cta-banner h2 { font-family: 'Playfair Display', serif; font-size: clamp(2.2rem,4vw,3.5rem); color: #fff; margin-bottom: 1.2rem; font-weight: 500; }
.cta-banner p { color: rgba(255,255,255,0.62); max-width: 620px; margin: 0 auto 2.8rem; line-height: 1.85; font-weight: 300; }

/* ── FOOTER ── */
footer { background: #0f1710; color: rgba(255,255,255,0.6); padding: 5rem 2rem 2.5rem; position: relative; }
footer::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(to right, transparent, rgba(184,145,58,0.4), transparent); }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.4fr; gap: 3.5rem; max-width: 1200px; margin: 0 auto 4rem; }
.footer-logo { font-family: 'Cinzel', serif; font-size: 1.25rem; color: #fff; margin-bottom: 1.2rem; display: block; letter-spacing: 0.08em; }
.footer-logo span { color: var(--gold); }
.footer-tagline { font-family: 'Playfair Display', serif; font-style: italic; font-size: 0.88rem; color: rgba(255,255,255,0.38); margin-bottom: 1.8rem; line-height: 1.75; }
.footer-col h4 { font-family: 'Cinzel', serif; font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.4rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.7rem; }
.footer-col ul a { color: rgba(255,255,255,0.48); text-decoration: none; font-size: 0.85rem; transition: color 0.25s; font-weight: 300; }
.footer-col ul a:hover { color: var(--gold-light); }
.footer-contact-item { display: flex; gap: 0.9rem; margin-bottom: 1rem; align-items: flex-start; }
.footer-contact-item span:first-child { color: var(--gold); font-size: 0.9rem; margin-top: 2px; flex-shrink: 0; }
.footer-contact-item span:last-child { font-size: 0.84rem; color: rgba(255,255,255,0.48); line-height: 1.65; font-weight: 300; }
.footer-bottom { max-width: 1200px; margin: 0 auto; border-top: 1px solid rgba(255,255,255,0.06); padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; font-size: 0.78rem; color: rgba(255,255,255,0.28); }

/* ── MOBILE MENU ── */
.mobile-menu { display: none; position: fixed; inset: 0; background: var(--warm-white); z-index: 9998; flex-direction: column; align-items: center; justify-content: center; gap: 2rem; }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--green-dark); text-decoration: none; font-style: italic; transition: color 0.25s; }
.mobile-menu a:hover { color: var(--gold); }
.close-menu { position: absolute; top: 1.8rem; right: 2.5rem; font-size: 1.8rem; background: none; border: none; cursor: pointer; color: var(--green-dark); }

/* ── REVEAL ── */
.reveal { transition: opacity 0.8s cubic-bezier(0.4,0,0.2,1), transform 0.8s cubic-bezier(0.4,0,0.2,1); }
.reveal.visible { opacity: 1; transform: none; }
/* Only activate opacity:0 AFTER JS has already marked in-viewport elements as visible */
.js-animations-ready .reveal:not(.visible) { opacity: 0; transform: translateY(28px); }

/* ── DIRECTOR ── */
.director-wrap { display: flex; justify-content: center; margin-top: 3.5rem; margin-bottom: 2.5rem; }
.director-card { text-align: center; }
.director-badge-label {
  display: inline-block;
  font-family: 'Cinzel', serif;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  background: var(--green-dark);
  padding: 0.35rem 1.2rem;
  margin-bottom: 1.2rem;
  border-top: 2px solid var(--gold);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .story-inner, .about-inner, .commitment-inner, .why-us-inner, .contact-inner { grid-template-columns: 1fr; gap: 3.5rem; }
  .mission-inner { grid-template-columns: 1fr 1fr; }
  .promise-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-track { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-links, .topbar { display: none; }
  .hamburger { display: flex; }
  nav { padding: 0.9rem 1.5rem; }
  .slide-content { padding: 2rem 1.5rem; margin-left: 0; }
  .mission-inner, .promise-grid, .team-grid, .testimonials-track, .why-stats, .form-row { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .products-grid-2col { grid-template-columns: 1fr 1fr !important; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  section { padding: 4.5rem 1.2rem; }
  #success-program [style*="grid-template-columns: repeat(3, 1fr)"] { grid-template-columns: 1fr !important; }
  #success-program [style*="grid-template-columns: 1fr 1fr"] { grid-template-columns: 1fr !important; }
}

/* ══════════════════════════════════════════════
   ANIMATION SYSTEM — WordPress-grade Motion Layer
══════════════════════════════════════════════ */

/* ── SCROLL PROGRESS BAR ── */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(to right, var(--green-mid), var(--gold));
  z-index: 99999;
  transition: width 0.1s linear;
  border-radius: 0 2px 2px 0;
}

/* ── CUSTOM CURSOR ── */
.cursor-dot {
  position: fixed;
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 99998;
  opacity: 0;
  transition: opacity 0.2s, background 0.2s, transform 0.15s;
}
.cursor-ring {
  position: fixed;
  width: 32px; height: 32px;
  border: 1.5px solid var(--green-mid);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 99997;
  opacity: 0;
  transition: opacity 0.2s, border-color 0.2s, transform 0.15s, width 0.25s, height 0.25s;
}
.cursor-dot.active { opacity: 1; }
.cursor-ring.active { opacity: 1; }
.cursor-ring.hover {
  width: 52px; height: 52px;
  border-color: var(--gold);
  background: rgba(184,145,58,0.06);
}
@media (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none !important; }
}

/* ── PAGE TRANSITION OVERLAY ── */
#page-transition {
  position: fixed;
  inset: 0;
  z-index: 99990;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pt-panel {
  position: absolute;
  inset: 0;
  background: var(--green-dark);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.6s cubic-bezier(0.76,0,0.24,1);
}
.pt-logo {
  font-family: 'Cinzel', serif;
  font-size: 1.4rem;
  color: var(--gold);
  letter-spacing: 0.18em;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s 0.2s, transform 0.3s 0.2s;
}

/* Entering (leaving current page) */
#page-transition.entering { pointer-events: all; }
#page-transition.entering .pt-panel { transform: scaleY(1); transform-origin: top; }
#page-transition.entering .pt-logo { opacity: 1; transform: none; }

/* Leaving (new page arrived) */
#page-transition.leaving .pt-panel { transform: scaleY(0); transform-origin: bottom; transition: transform 0.65s cubic-bezier(0.76,0,0.24,1); }
#page-transition.leaving .pt-logo { opacity: 0; }

/* ── REVEAL ANIMATIONS ── */
.reveal        { opacity: 0; transform: translateY(32px);   transition: opacity 0.85s cubic-bezier(0.4,0,0.2,1), transform 0.85s cubic-bezier(0.4,0,0.2,1); }
.reveal-left   { transition: opacity 0.85s cubic-bezier(0.4,0,0.2,1), transform 0.85s cubic-bezier(0.4,0,0.2,1); }
.reveal-right  { transition: opacity 0.85s cubic-bezier(0.4,0,0.2,1), transform 0.85s cubic-bezier(0.4,0,0.2,1); }
.reveal-scale  { transition: opacity 0.85s cubic-bezier(0.4,0,0.2,1), transform 0.85s cubic-bezier(0.4,0,0.2,1); }
.reveal-fade   { transition: opacity 1s   cubic-bezier(0.4,0,0.2,1); }
/* Only hide below-fold elements after JS has marked above-fold ones as visible */
.js-animations-ready .reveal-left:not(.visible)  { opacity: 0; transform: translateX(-40px); }
.js-animations-ready .reveal-right:not(.visible) { opacity: 0; transform: translateX(40px); }
.js-animations-ready .reveal-scale:not(.visible) { opacity: 0; transform: scale(0.92); }
.js-animations-ready .reveal-fade:not(.visible)  { opacity: 0; }

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible,
.reveal-scale.visible,
.reveal-fade.visible { opacity: 1 !important; transform: none !important; }

/* Stagger delay for child items */
.stagger-children > *:nth-child(1)  { transition-delay: 0.05s; }
.stagger-children > *:nth-child(2)  { transition-delay: 0.13s; }
.stagger-children > *:nth-child(3)  { transition-delay: 0.21s; }
.stagger-children > *:nth-child(4)  { transition-delay: 0.29s; }
.stagger-children > *:nth-child(5)  { transition-delay: 0.37s; }
.stagger-children > *:nth-child(6)  { transition-delay: 0.45s; }
.stagger-children > *:nth-child(7)  { transition-delay: 0.53s; }
.stagger-children > *:nth-child(8)  { transition-delay: 0.61s; }
.stagger-children > *:nth-child(9)  { transition-delay: 0.69s; }
.stagger-children > *:nth-child(10) { transition-delay: 0.77s; }

/* ── HERO TEXT ENTRANCE ── */
@keyframes heroTag   { from { opacity:0; transform: translateY(-12px); } to { opacity:1; transform:none; } }
@keyframes heroTitle { from { opacity:0; transform: translateY(24px) skewY(1deg); } to { opacity:1; transform:none; } }
@keyframes heroSub   { from { opacity:0; transform: translateY(18px); } to { opacity:1; transform:none; } }
@keyframes heroCta   { from { opacity:0; transform: translateY(14px) scale(0.96); } to { opacity:1; transform:none; } }

.hero-animate-tag   { animation: heroTag   0.7s cubic-bezier(0.4,0,0.2,1) 0.1s both; }
.hero-animate-title { animation: heroTitle 0.9s cubic-bezier(0.4,0,0.2,1) 0.25s both; }
.hero-animate-sub   { animation: heroSub   0.8s cubic-bezier(0.4,0,0.2,1) 0.45s both; }
.hero-animate-cta   { animation: heroCta   0.7s cubic-bezier(0.4,0,0.2,1) 0.65s both; }
.hero-animate-badge { animation: heroCta   0.7s cubic-bezier(0.4,0,0.2,1) 0.8s  both; }

/* ── TILT CARD ── */
.tilt-card { will-change: transform; transition: transform 0.12s linear, box-shadow 0.3s; }
.tilt-card:hover { box-shadow: 0 20px 60px rgba(30,51,32,0.18); }

/* ── RIPPLE BUTTON ── */
.btn-ripple { position: relative; overflow: hidden; }
.btn-ripple::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--rx, 50%) var(--ry, 50%), rgba(255,255,255,0.28) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}
.btn-ripple:active::after { opacity: 1; transition: opacity 0s; }

/* ── FLOATING BADGE ── */
@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
.hero-badge-float { animation: floatBadge 3.5s ease-in-out infinite; }

/* ── ACTIVE NAV PAGE INDICATOR ── */
.nav-links a.active-page {
  color: var(--green-dark);
  font-weight: 600;
}
.nav-links a.active-page::after {
  width: 100%;
  background: var(--gold);
}

/* ── SECTION HEADING REVEAL (default on all h2.section-title) ── */
.section-title, .section-tag { display: inline-block; }

/* ══════════════════════════════════════════════════════════
   DESIGN UPGRADE — Premium Realistic Depth & Visual Polish
══════════════════════════════════════════════════════════ */

/* ── IMPROVED SECTION PADDING & FLOW ── */
section { padding: 7rem 2rem; }

/* ── HERO: RICHER OVERLAYS, DEPTH, REALISTIC SHADOWS ── */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: stretch;
}
.slide {
  position: relative;
  flex-shrink: 0;
  width: 100%;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}
.slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(15,30,16,0.88) 0%, rgba(15,30,16,0.55) 55%, rgba(15,30,16,0.18) 100%),
    radial-gradient(ellipse at 80% 20%, rgba(184,145,58,0.12) 0%, transparent 50%);
  z-index: 1;
}
.slide-1 {
  background-color: #1a2e1a;
  background-image: url('https://images.unsplash.com/photo-1556909114-f6e7ad7d3136?w=1800&q=85');
}
.slide-2 {
  background-color: #1e2c1e;
  background-image: url('https://images.unsplash.com/photo-1495521821757-a1efb6729352?w=1800&q=85');
}
.slide-3 {
  background-color: #1a2a1e;
  background-image: url('https://images.unsplash.com/photo-1466637574441-749b8f19452f?w=1800&q=85');
}
.slide-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 0 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
}
.slide-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: 'Cinzel', serif;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(184,145,58,0.14);
  border: 1px solid rgba(184,145,58,0.3);
  padding: 0.45rem 1.1rem;
  border-radius: 2px;
  margin-bottom: 1.8rem;
  width: fit-content;
  backdrop-filter: blur(8px);
}
.slide-badge::before {
  content: '';
  width: 22px;
  height: 1px;
  background: var(--gold-light);
  display: inline-block;
}
.slide-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  color: #fff;
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 32px rgba(0,0,0,0.35);
}
.slide-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.85;
  max-width: 520px;
  margin-bottom: 2.8rem;
  font-weight: 300;
}
.hero-dots {
  position: absolute;
  bottom: 3rem;
  left: 4rem;
  z-index: 10;
  display: flex;
  gap: 0.6rem;
  align-items: center;
}
.dot {
  width: 28px;
  height: 2px;
  background: rgba(255,255,255,0.3);
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
}
.dot.active {
  width: 52px;
  background: var(--gold);
}
.hero-arrows {
  position: absolute;
  bottom: 2.5rem;
  right: 4rem;
  z-index: 10;
  display: flex;
  gap: 0.7rem;
}
.arrow-btn {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
}
.arrow-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
}

/* ── HERO SCROLL INDICATOR ── */
.slide-content::after {
  content: '';
  position: absolute;
  bottom: 3.5rem;
  left: 4rem;
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollLine 2.2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── TOPBAR UPGRADE ── */
.topbar {
  background: linear-gradient(to right, #0d1e0e, #1e3320, #0d1e0e);
  border-bottom: 1px solid rgba(184,145,58,0.2);
  letter-spacing: 0.12em;
  font-size: 0.71rem;
  padding: 0.55rem 3rem;
}
.topbar a::before { content: '—  '; opacity: 0.4; font-size: 0.65rem; }

/* ── NAV UPGRADE ── */
nav {
  background: rgba(250,247,242,0.98);
  backdrop-filter: blur(24px) saturate(1.8);
  -webkit-backdrop-filter: blur(24px) saturate(1.8);
  border-bottom: 1px solid rgba(184,145,58,0.12);
  box-shadow: 0 1px 0 rgba(184,145,58,0.08), 0 4px 20px rgba(30,51,32,0.04);
  padding: 1.1rem 3.5rem;
}
nav.scrolled {
  background: rgba(250,247,242,1);
  box-shadow: 0 8px 40px rgba(30,51,32,0.12);
}
.nav-links a {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  position: relative;
}
.nav-links a::after {
  height: 1.5px;
  background: linear-gradient(to right, var(--green-mid), var(--gold));
}
.btn.nav-cta {
  background: var(--green-dark);
  color: #fff;
  padding: 0.6rem 1.4rem;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  border: 1px solid transparent;
  transition: all 0.3s;
}
.btn.nav-cta:hover {
  background: transparent;
  color: var(--green-dark);
  border-color: var(--green-dark);
}

/* ── SECTION LABELS ── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Cinzel', serif;
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}
.mission-label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Cinzel', serif;
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1rem;
}
.mission-label::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--gold-light);
}

/* ── DIVIDER ── */
.divider {
  width: 48px;
  height: 2px;
  background: linear-gradient(to right, var(--green-mid), var(--gold));
  margin: 1.2rem 0 2rem;
  border-radius: 2px;
}
.divider-center { margin-left: auto; margin-right: auto; }

/* ── SECTION TITLES UPGRADE ── */
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.2vw, 2.9rem);
  font-weight: 400;
  color: var(--green-dark);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

/* ── STORY / ABOUT IMAGES: REALISTIC FRAME ── */
.story-img-wrap, .about-img, .commitment-img {
  position: relative;
  border-radius: 0;
}
.story-img-wrap::before,
.about-img::before,
.commitment-img::before {
  content: '';
  position: absolute;
  top: -16px;
  left: -16px;
  right: 16px;
  bottom: 16px;
  border: 1.5px solid rgba(184,145,58,0.35);
  z-index: 0;
  pointer-events: none;
}
.story-img-wrap::after,
.about-img::after,
.commitment-img::after {
  content: '';
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 60%;
  height: 60%;
  background: var(--green-muted);
  z-index: -1;
}
.story-img-wrap img,
.about-img img,
.commitment-img img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
  filter: saturate(0.92) contrast(1.04);
  box-shadow: 0 24px 64px rgba(30,51,32,0.18), 0 8px 24px rgba(0,0,0,0.12);
}

/* ── MISSION CARDS: GLASS + DEPTH ── */
.mission-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  padding: 2.5rem 2rem;
  border-radius: 2px;
  transition: transform 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
}
.mission-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.mission-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-8px);
  box-shadow: 0 32px 64px rgba(0,0,0,0.3);
}
.mission-card:hover::before { opacity: 1; }
.mission-icon {
  font-size: 2.2rem;
  margin-bottom: 1.2rem;
  filter: drop-shadow(0 4px 8px rgba(184,145,58,0.3));
}
.mission-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 0.8rem;
  font-weight: 500;
}
.mission-card p {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  line-height: 1.85;
  font-weight: 300;
}

/* ── PROMISE CARDS: ELEVATED ── */
.promise-card {
  background: var(--warm-white);
  border: 1px solid rgba(184,145,58,0.12);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s;
  box-shadow: 0 4px 24px rgba(30,51,32,0.06);
}
.promise-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--green-mid), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.promise-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(30,51,32,0.14);
  border-color: rgba(184,145,58,0.25);
}
.promise-card:hover::after { transform: scaleX(1); }
.promise-card-icon {
  font-size: 2rem;
  margin-bottom: 1.2rem;
  display: block;
}
.promise-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--green-dark);
  margin-bottom: 0.8rem;
  font-weight: 500;
}
.promise-card p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.85;
  font-weight: 300;
}

/* ── PRODUCT CARDS: REALISTIC SHADOW & DEPTH ── */
.product-card {
  background: #fff;
  border: 1px solid rgba(184,145,58,0.1);
  padding: 0;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 20px rgba(30,51,32,0.07);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1), box-shadow 0.4s;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 64px rgba(30,51,32,0.15);
}
.product-card img {
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1), filter 0.4s;
  filter: saturate(0.9);
}
.product-card:hover img {
  transform: scale(1.05);
  filter: saturate(1.1);
}

/* ── FIX: Product card text colors for white background ── */
.product-card .product-card-body h3 {
  color: var(--green-dark, #1e3320);
}
.product-card .product-card-body p {
  color: rgba(30, 51, 32, 0.65);
}
.product-card .product-tag {
  color: var(--gold, #b8913a);
  border-color: rgba(184,145,58,0.45);
  background: rgba(184,145,58,0.06);
}
.product-card .product-card-arrow {
  color: var(--green-dark, #1e3320);
}

/* ── TEAM CARDS UPGRADE ── */
.team-card {
  position: relative;
  padding: 2rem 1.5rem;
  background: var(--warm-white);
  border: 1px solid rgba(184,145,58,0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 4px 20px rgba(30,51,32,0.05);
}
.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(30,51,32,0.12);
}
.team-img-wrap img {
  box-shadow: 0 12px 40px rgba(30,51,32,0.18), 0 4px 12px rgba(0,0,0,0.1);
  filter: saturate(0.85) contrast(1.02);
  transition: all 0.5s cubic-bezier(0.4,0,0.2,1);
}
.team-card:hover .team-img-wrap img {
  box-shadow: 0 20px 56px rgba(184,145,58,0.25);
  filter: saturate(1.05) contrast(1.03);
}

/* ── TESTIMONIAL SECTION UPGRADE ── */
#testimonials {
  background:
    linear-gradient(160deg, #0f1710 0%, #1e3320 45%, #0f1710 100%);
  position: relative;
}
#testimonials::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 10% 90%, rgba(184,145,58,0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 90% 10%, rgba(106,168,122,0.04) 0%, transparent 50%);
  pointer-events: none;
}
.testi-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 24px rgba(0,0,0,0.2);
  padding: 2.8rem 2.4rem;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}
.testi-card:hover {
  background: rgba(255,255,255,0.09);
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(0,0,0,0.3);
  border-color: rgba(184,145,58,0.2);
}
.testi-stars {
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-shadow: 0 0 8px rgba(184,145,58,0.4);
}
.testi-avatar {
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  border: 2px solid rgba(184,145,58,0.4);
}

/* ── STAT CARDS: PREMIUM LOOK ── */
.stat-card {
  background: var(--warm-white);
  padding: 3rem 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(30,51,32,0.07);
  border: 1px solid rgba(184,145,58,0.1);
  transition: transform 0.4s ease, box-shadow 0.4s;
}
.stat-card:hover { transform: translateY(-6px); box-shadow: 0 20px 56px rgba(30,51,32,0.14); }
.stat-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--green-mid), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.stat-card:hover::after { transform: scaleX(1); }
.stat-num {
  font-size: 3.8rem;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── CTA BANNER UPGRADE ── */
.cta-banner {
  background:
    linear-gradient(135deg, #0f1710 0%, #1e3320 50%, #0f1710 100%);
  position: relative;
  overflow: hidden;
  padding: 7rem 2rem;
}
.cta-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 60% 40%, rgba(184,145,58,0.1) 0%, transparent 55%),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
}
.cta-banner h2 { text-shadow: 0 4px 24px rgba(0,0,0,0.3); }

/* ── BUTTONS UPGRADE ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1rem 2.4rem;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
}
.btn-white {
  background: #fff;
  color: var(--green-dark);
  box-shadow: 0 8px 32px rgba(0,0,0,0.18), 0 2px 8px rgba(0,0,0,0.12);
}
.btn-white:hover {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 16px 48px rgba(184,145,58,0.3);
  transform: translateY(-2px);
}
.btn-green {
  background: var(--green-dark);
  color: #fff;
  box-shadow: 0 8px 32px rgba(30,51,32,0.25);
}
.btn-green:hover {
  background: var(--green-mid);
  box-shadow: 0 16px 48px rgba(30,51,32,0.3);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--green-dark);
  border: 1.5px solid var(--green-dark);
}
.btn-outline:hover {
  background: var(--green-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(30,51,32,0.2);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--green-dark);
  box-shadow: 0 8px 32px rgba(184,145,58,0.3);
}
.btn-gold:hover {
  box-shadow: 0 16px 48px rgba(184,145,58,0.4);
  transform: translateY(-2px);
}

/* ── PILLAR ITEMS ── */
.commitment-pillars { display: flex; flex-direction: column; gap: 1.6rem; margin-top: 2rem; }
.pillar {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.4rem;
  background: var(--warm-white);
  border-left: 3px solid var(--gold);
  box-shadow: 0 2px 16px rgba(30,51,32,0.05);
  transition: all 0.3s ease;
}
.pillar:hover {
  transform: translateX(6px);
  box-shadow: 0 4px 24px rgba(30,51,32,0.1);
}
.pillar-num {
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  font-weight: 400;
  white-space: nowrap;
  margin-top: 0.2rem;
}
.pillar-body h4 {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--green-dark);
  margin-bottom: 0.35rem;
}
.pillar-body p {
  font-size: 0.87rem;
  color: var(--text-mid);
  line-height: 1.75;
  font-weight: 300;
}

/* ── CONTACT SECTION UPGRADE ── */
#contact {
  background: var(--warm-white);
  position: relative;
}
#contact::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 50%;
  height: 4px;
  background: linear-gradient(to right, var(--green-dark), var(--gold));
}
.contact-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  box-shadow: 0 4px 16px rgba(30,51,32,0.25);
}
.form-group input,
.form-group textarea,
.form-group select {
  border-radius: 0;
  transition: all 0.3s;
  box-shadow: none;
}
.form-group input:focus,
.form-group textarea:focus {
  background: rgba(30,51,32,0.02);
  box-shadow: 0 2px 0 var(--gold);
}

/* ── FOOTER UPGRADE ── */
footer {
  background: linear-gradient(180deg, #0c1612 0%, #091009 100%);
  position: relative;
}
footer::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.015;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  pointer-events: none;
}
.footer-logo {
  font-size: 1.35rem;
  letter-spacing: 0.1em;
  background: linear-gradient(135deg, #fff, var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.social-btn:hover {
  background: linear-gradient(135deg, var(--green-mid), var(--green-dark));
  border-color: var(--green-mid);
  transform: scale(1.1);
}

/* ── ABOUT / WHY-US SECTION BG ── */
#about {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
#about::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(184,145,58,0.06) 0%, transparent 70%);
  pointer-events: none;
}
#commitment {
  background: var(--off-white);
  position: relative;
}
#our-promise {
  background: var(--warm-white);
  position: relative;
  overflow: hidden;
}
.promise-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Playfair Display', serif;
  font-size: clamp(8rem, 15vw, 20rem);
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px rgba(184,145,58,0.06);
  letter-spacing: 0.1em;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  line-height: 1;
}

/* ── PRODUCTS SECTION DARK BG ── */
#products {
  background: var(--green-dark);
  position: relative;
  overflow: hidden;
}
#products::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 0% 100%, rgba(106,168,122,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 0%, rgba(184,145,58,0.06) 0%, transparent 50%);
  pointer-events: none;
}

/* ── PRODUCT CARD INNER STYLING ── */
.product-card .product-img-wrap {
  overflow: hidden;
  background: var(--cream);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-card .product-body {
  padding: 1.4rem 1.6rem 1.8rem;
  background: #fff;
}
.product-card .product-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--green-dark);
  margin-bottom: 0.4rem;
}
.product-card .product-sub {
  font-size: 0.78rem;
  color: var(--text-light);
  letter-spacing: 0.1em;
  font-family: 'Cinzel', serif;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.product-card .btn {
  width: 100%;
  justify-content: center;
  font-size: 0.66rem;
  padding: 0.75rem;
}

/* ── SCROLLBAR CUSTOM ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, var(--green-mid), var(--gold));
  border-radius: 3px;
}

/* ── TEXT SELECTION ── */
::selection {
  background: var(--gold-pale);
  color: var(--green-dark);
}

/* ── SMOOTH IMAGE LOADING ── */
img {
  transition: opacity 0.3s;
}
img[loading] { opacity: 0; }
img.loaded { opacity: 1; }

/* ── RESPONSIVE UPGRADES ── */
@media (max-width: 768px) {
  .slide-content { padding: 0 1.5rem; }
  .slide-content::after { display: none; }
  .hero-arrows { right: 1.5rem; }
  .hero-dots { left: 1.5rem; }
  .story-img-wrap::before,
  .about-img::before,
  .commitment-img::before { display: none; }
  .story-img-wrap::after,
  .about-img::after,
  .commitment-img::after { display: none; }
}
