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

:root {
  --bg-primary: #fafaf7;
  --bg-white: #ffffff;
  --bg-cream: #f5f0eb;
  --bg-sage: #e8ede5;
  --text-dark: #1a1a18;
  --text-body: #3d3d3a;
  --text-muted: #6b6b66;
  --text-light: #9a9a95;
  --green: #1b6440;
  --green-dark: #134832;
  --green-light: #d4e4d9;
  --accent: #c4703e;
  --border: #e2ddd7;
  --border-light: #eeebe6;
  --shadow-sm: 0 1px 3px rgba(26, 26, 24, 0.04), 0 1px 2px rgba(26, 26, 24, 0.03);
  --shadow-md: 0 4px 16px rgba(26, 26, 24, 0.06), 0 2px 4px rgba(26, 26, 24, 0.04);
  --shadow-lg: 0 12px 40px rgba(26, 26, 24, 0.08), 0 4px 12px rgba(26, 26, 24, 0.04);
  --radius: 10px;
  --radius-lg: 16px;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Kumbh Sans', system-ui, sans-serif;
  --font-accent: 'DM Sans', sans-serif;
  --max-width: 1360px;
  --section-pad: clamp(64px, 10vw, 120px);
  --side-pad: clamp(20px, 4vw, 48px);
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-body);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font-family: inherit;
  border: none;
  cursor: pointer;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: var(--side-pad);
  padding-right: var(--side-pad);
}

/* ═══════════════════════════════════════
   CUSTOM CURSOR
   ═══════════════════════════════════════ */
.cursor {
  position: fixed;
  width: 20px;
  height: 20px;
  border: 1.5px solid var(--green);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.35s cubic-bezier(0.22, 1, 0.36, 1), height 0.35s cubic-bezier(0.22, 1, 0.36, 1), background 0.35s, border-color 0.35s, opacity 0.3s;
  mix-blend-mode: difference;
  opacity: 0;
}

.cursor.visible {
  opacity: 1;
}

.cursor.hover {
  width: 56px;
  height: 56px;
  background: rgba(27, 100, 64, 0.08);
  border-color: var(--green);
}

.cursor-dot {
  position: fixed;
  width: 5px;
  height: 5px;
  background: var(--green);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s;
}

.cursor-dot.visible {
  opacity: 1;
}

@media (pointer: coarse) {

  .cursor,
  .cursor-dot {
    display: none !important;
  }
}

/* ═══════════════════════════════════════
   PRELOADER
   ═══════════════════════════════════════ */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
}

.preloader-logo {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 600;
  color: var(--text-dark);
  opacity: 0;
  letter-spacing: 0.04em;
}

.preloader-bar {
  width: 120px;
  height: 2px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
  opacity: 0;
}

.preloader-fill {
  width: 0;
  height: 100%;
  background: var(--green);
  border-radius: 2px;
}

/* ═══════════════════════════════════════
   SECTION COMMON
   ═══════════════════════════════════════ */
.section-label {
  font-family: var(--font-accent);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.section-label::before {
  content: '';
  width: 0;
  height: 1px;
  background: var(--green);
  display: block;
  transition: width 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.section-label.in-view::before {
  width: 28px;
}

.section-heading {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}

.section-subtext {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 540px;
  line-height: 1.7;
  font-weight: 300;
}

/* Split text animation */
.split-heading .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  margin-right: 0.28em;
}

.split-heading .word .char {
  display: inline-block;
  transform: translateY(110%);
  will-change: transform;
}

/* Magnetic effect */
.magnetic {
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ═══════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 var(--side-pad);
  transition: background 0.5s ease, box-shadow 0.5s ease;
  background: rgba(250, 250, 247, 0.5);
  backdrop-filter: blur(12px) saturate(1.2);
  -webkit-backdrop-filter: blur(12px) saturate(1.2);
}

.nav.scrolled {
  background: rgba(250, 250, 247, 0.85);
  backdrop-filter: blur(24px) saturate(1.5);
  -webkit-backdrop-filter: blur(24px) saturate(1.5);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  transition: height 0.4s ease;
}

.nav.scrolled .nav-inner {
  height: 64px;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.02em;
  transition: color 0.3s;
}

.nav.scrolled .nav-logo {
  color: var(--text-dark) !important;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  /* Reduced gap for tabs */
  list-style: none;
  background: rgba(255, 255, 255, 0.4);
  padding: 4px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.nav-links li {
  position: relative;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.01em;
  padding: 8px 18px;
  border-radius: 100px;
  display: block;
  transition: color 0.3s ease, background 0.3s ease;
  position: relative;
  z-index: 1;
}

.nav.scrolled .nav-links a {
  color: var(--text-muted) !important;
}

.nav-links a:hover {
  color: var(--text-dark) !important;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
}

.nav.scrolled .nav-links a:hover {
  color: var(--text-dark) !important;
}

.nav-cta {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 10px 24px;
  border-radius: 100px;
  background: var(--green);
  color: #fff;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
  border: 1px solid transparent;
  box-shadow: 0 4px 12px rgba(27, 100, 64, 0.15);
}

.nav.scrolled .nav-cta {
  background: var(--green) !important;
  border-color: transparent !important;
}

.nav-cta:hover {
  background: var(--green-dark) !important;
  transform: translateY(-1px);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text-dark);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s;
}

.nav.scrolled .nav-hamburger span {
  background: var(--text-dark) !important;
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg-primary);
  z-index: 99;
  padding: 100px var(--side-pad) 40px;
  flex-direction: column;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 400;
  color: var(--text-dark);
  padding: 16px 0;
  border-bottom: 1px solid var(--border-light);
  display: block;
  opacity: 0;
  transform: translateX(-20px);
}

.mobile-menu.open a {
  animation: mobileSlide 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.mobile-menu.open a:nth-child(1) {
  animation-delay: 0.05s;
}

.mobile-menu.open a:nth-child(2) {
  animation-delay: 0.1s;
}

.mobile-menu.open a:nth-child(3) {
  animation-delay: 0.15s;
}

.mobile-menu.open a:nth-child(4) {
  animation-delay: 0.2s;
}

.mobile-menu.open a:nth-child(5) {
  animation-delay: 0.25s;
}

.mobile-menu.open a:nth-child(6) {
  animation-delay: 0.3s;
}

.mobile-menu.open a:nth-child(7) {
  animation-delay: 0.35s;
}

.mobile-menu.open a:nth-child(8) {
  animation-delay: 0.4s;
}

@keyframes mobileSlide {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.mobile-menu .mobile-cta {
  margin-top: 32px;
  text-align: center;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  padding: 16px 32px;
  background: var(--green);
  color: #fff;
  border-radius: 100px;
  border-bottom: none;
}

/* ═══════════════════════════════════════
   HERO
   ═══════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  overflow: hidden;
  background-color: var(--bg-primary);
  /* Base cream background */
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Dark overlay for text legibility */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(12, 10, 8, 0.65) 0%,
    rgba(12, 10, 8, 0.35) 40%,
    rgba(12, 10, 8, 0.15) 100%
  );
  z-index: 1;
}

/* Floating particles */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  animation: particleFloat linear infinite;
}

@keyframes particleFloat {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    transform: translateY(-10vh) rotate(720deg);
    opacity: 0;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 var(--side-pad) clamp(60px, 10vh, 100px);
  max-width: 820px;
  width: 100%;
}

.hero-content .section-label {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
  opacity: 0;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-content .section-label::before {
  background: rgba(255, 255, 255, 0.6);
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(40px, 6.5vw, 72px);
  font-weight: 500;
  color: #ffffff;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.25), 0 2px 4px rgba(0, 0, 0, 0.4);
}

.hero h1 em {
  font-style: italic;
  font-weight: 500;
}

.hero-sub {
  font-size: clamp(16px, 1.8vw, 19px);
  color: rgba(255, 255, 255, 0.95);
  max-width: 520px;
  line-height: 1.7;
  font-weight: 400;
  margin-bottom: 36px;
  opacity: 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  opacity: 0;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 15px 32px;
  background: linear-gradient(135deg, var(--green) 0%, rgba(62, 82, 55, 0.9) 50%, rgba(165, 95, 90, 0.85) 100%);
  background-size: 200% auto;
  color: #fff;
  border-radius: 100px;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(255, 255, 255, 0.15) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary:hover {
  background-position: right center;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(165, 95, 90, 0.25), 0 4px 12px rgba(62, 82, 55, 0.2);
}

.btn-primary svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s;
}

.btn-primary:hover svg {
  transform: translateX(4px);
}

.hero-trust {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: var(--font-accent);
  opacity: 0;
  cursor: pointer;
  font-weight: 600;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
}

.hero-scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  animation: scrollDown 1.8s ease-in-out infinite;
}

@keyframes scrollDown {
  0% {
    top: -100%;
  }

  100% {
    top: 100%;
  }
}

/* ═══════════════════════════════════════
   MARQUEE STRIP
   ═══════════════════════════════════════ */
.marquee {
  overflow: hidden;
  padding: 24px 0;
  background: linear-gradient(135deg, rgba(62, 82, 55, 0.95), var(--green), rgba(165, 95, 90, 0.75));
  background-size: 300% 300%;
  animation: marqueeGradientAnim 15s ease infinite;
  white-space: nowrap;
}

@keyframes marqueeGradientAnim {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.marquee-inner {
  display: flex;
  gap: 0;
  animation: marqueeScroll 30s linear infinite;
  width: max-content;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  padding: 0 32px;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.04em;
}

.marquee-item .dot {
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  flex-shrink: 0;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ═══════════════════════════════════════
   PHILOSOPHY
   ═══════════════════════════════════════ */
.philosophy {
  padding: var(--section-pad) 0;
  background: var(--bg-white);
  overflow: hidden;
  position: relative;
}

.philosophy::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 30%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(27, 100, 64, 0.03) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.philosophy-text {
  max-width: 520px;
}

.philosophy-text .section-heading {
  font-size: clamp(28px, 3.8vw, 44px);
  position: relative;
  padding-bottom: 20px;
}

.philosophy-text .section-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--accent));
  border-radius: 2px;
}

.philosophy-text p {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 32px;
}

.philosophy-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  position: relative;
}

.philosophy-frame {
  position: absolute;
  inset: -12px;
  border: 1px solid rgba(27, 100, 64, 0.1);
  border-radius: calc(var(--radius-lg) + 4px);
  pointer-events: none;
  z-index: -1;
}

.philosophy-images .img-wrap {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.philosophy-images img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  will-change: transform;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.philosophy-images .img-wrap:hover img {
  transform: scale(1.04);
}

.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--green);
  letter-spacing: 0.02em;
  transition: gap 0.3s;
}

.btn-text:hover {
  gap: 14px;
}

.btn-text svg {
  width: 16px;
  height: 16px;
}

/* ═══════════════════════════════════════
   STATS COUNTER
   ═══════════════════════════════════════ */
.stats {
  padding: 64px 0;
  background: linear-gradient(135deg, rgba(245,240,235,1) 0%, rgba(232,237,229,0.7) 50%, rgba(245,240,235,1) 100%);
  position: relative;
  overflow: hidden;
}

.stats-line {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 1px;
  width: 0;
  background: linear-gradient(90deg, transparent, var(--green), var(--accent), var(--green), transparent);
}

.stats-line-top {
  top: 0;
}

.stats-line-bottom {
  bottom: 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-item {
  position: relative;
  padding: 16px 0;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.stat-item:hover {
  transform: translateY(-4px);
}

.stat-item::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  margin: 0 auto 14px;
  opacity: 0.7;
  transition: transform 0.3s, opacity 0.3s;
}

.stat-item:hover::before {
  transform: scale(1.5);
  opacity: 1;
  animation: dotPulse 1s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { transform: scale(1.5); opacity: 1; }
  50% { transform: scale(2); opacity: 0.6; }
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -16px;
  top: 20%;
  height: 60%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--border), transparent);
}

.stat-item h3 {
  font-family: var(--font-heading);
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 500;
  background: linear-gradient(135deg, var(--green) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-item h3 .counter {
  display: inline;
}

.stat-item p {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 400;
  letter-spacing: 0.02em;
}

/* ═══════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════ */
.services {
  padding: var(--section-pad) 0;
  background: var(--bg-primary);
}

.services-header {
  text-align: center;
  margin-bottom: 56px;
}

.services-header .section-label::before {
  display: none;
}

.services-header .section-label {
  justify-content: center;
}

.services-header .section-subtext {
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s, border-color 0.4s;
  cursor: pointer;
  will-change: transform;
  border: 1px solid transparent;
  position: relative;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 24px;
  right: 24px;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--accent));
  border-radius: 3px 3px 0 0;
  transform: scaleX(0);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 16px 48px rgba(175, 140, 145, 0.15), 0 8px 24px rgba(62, 82, 55, 0.1);
  border-color: var(--border-light);
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card:hover .service-card-img img {
  transform: scale(1.08);
}

.service-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27, 100, 64, 0.3) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.5s;
}

.service-card:hover .service-card-img::after {
  opacity: 1;
}

.service-card-body {
  padding: 24px 24px 28px;
}

.service-card-body h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.service-card-body p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.65;
  font-weight: 300;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--green);
  margin-top: 14px;
  transition: gap 0.3s;
}

.service-card:hover .service-card-link {
  gap: 12px;
}

.service-card-link svg {
  width: 14px;
  height: 14px;
}

/* ═══════════════════════════════════════
   PARALLAX IMAGE BREAK
   ═══════════════════════════════════════ */
.parallax-break {
  position: relative;
  height: 50vh;
  min-height: 360px;
  overflow: hidden;
}

.parallax-break img {
  position: absolute;
  width: 100%;
  height: 130%;
  object-fit: cover;
  object-position: center;
  top: -15%;
  will-change: transform;
}

.parallax-break .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(12, 10, 8, 0.6) 0%, rgba(62, 82, 55, 0.45) 50%, rgba(165, 95, 90, 0.4) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.parallax-break .overlay-text {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 400;
  font-style: italic;
  color: #fff;
  text-align: center;
  max-width: 700px;
  padding: 0 var(--side-pad);
  line-height: 1.3;
}

/* ═══════════════════════════════════════
   PACKAGES
   ═══════════════════════════════════════ */
.packages {
  padding: var(--section-pad) 0;
  background: var(--bg-cream);
  position: relative;
  overflow: hidden;
}

.packages::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(27, 100, 64, 0.04) 0%, transparent 70%);
  border-radius: 50%;
}

.packages::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -80px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(196, 112, 62, 0.04) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.packages-header {
  text-align: center;
  margin-bottom: 56px;
}

.packages-header .section-label::before {
  display: none;
}

.packages-header .section-label {
  justify-content: center;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.package-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s;
  position: relative;
  will-change: transform;
  overflow: hidden;
}

.package-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--accent));
  border-radius: 0 0 3px 3px;
}

.package-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: var(--shadow-lg);
}

.package-card.featured {
  background: var(--green);
  color: #fff;
}

.package-card.featured::before {
  background: linear-gradient(90deg, rgba(255,255,255,0.4), rgba(255,255,255,0.1));
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.package-card.featured::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.06) 45%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0.06) 55%, transparent 60%);
  animation: shimmer 4s ease-in-out infinite;
  pointer-events: none;
}

.package-card.featured .package-badge {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.package-badge {
  display: inline-flex;
  align-self: flex-start;
  font-family: var(--font-accent);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-light);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.package-name {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.package-card.featured .package-name {
  color: #fff;
}

.package-duration {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 24px;
}

.package-card.featured .package-duration {
  color: rgba(255, 255, 255, 0.6);
}

.package-price {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.package-card.featured .package-price {
  color: #fff;
}

.package-price span {
  font-size: 15px;
  font-weight: 400;
  font-family: var(--font-body);
  color: var(--text-light);
  margin-left: 4px;
}

.package-card.featured .package-price span {
  color: rgba(255, 255, 255, 0.5);
}

.package-divider {
  width: 100%;
  height: 1px;
  background: var(--border-light);
  margin-bottom: 24px;
}

.package-card.featured .package-divider {
  background: rgba(255, 255, 255, 0.15);
}

.package-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  flex: 1;
}

.package-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.5;
  font-weight: 300;
}

.package-card.featured .package-features li {
  color: rgba(255, 255, 255, 0.8);
}

.package-features li svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--green);
}

.package-card.featured .package-features li svg {
  color: rgba(255, 255, 255, 0.7);
}

.btn-package {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px 24px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  background: var(--bg-primary);
  color: var(--text-dark);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.btn-package::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  background: var(--green);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease;
  z-index: 0;
}

.btn-package:hover::before {
  width: 300px;
  height: 300px;
}

.btn-package:hover {
  color: #fff;
  border-color: var(--green);
}

.btn-package span {
  position: relative;
  z-index: 1;
}

.package-card.featured .btn-package {
  background: #fff;
  color: var(--green);
  border-color: #fff;
}

.package-card.featured .btn-package::before {
  background: rgba(255, 255, 255, 0.9);
}

.package-card.featured .btn-package:hover {
  color: var(--green);
}

/* ═══════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════ */
.testimonials {
  padding: var(--section-pad) 0;
  background: var(--bg-white);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '\201C';
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-heading);
  font-size: clamp(200px, 25vw, 360px);
  color: rgba(27, 100, 64, 0.03);
  line-height: 1;
  pointer-events: none;
  z-index: 0;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 56px;
  position: relative;
  z-index: 1;
}

.testimonials-header .section-label::before {
  display: none;
}

.testimonials-header .section-label {
  justify-content: center;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.testimonial-card {
  background: var(--bg-primary);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  padding-left: 38px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s;
  will-change: transform;
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 24px;
  bottom: 24px;
  width: 3px;
  background: linear-gradient(to bottom, var(--green), var(--accent));
  border-radius: 3px;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.testimonial-card.in-view::before {
  transform: scaleY(1);
}

.testimonial-card:hover::before {
  transform: scaleY(1.05);
}

.testimonial-card::after {
  content: '\201C';
  position: absolute;
  top: 12px;
  right: 20px;
  font-family: var(--font-heading);
  font-size: 48px;
  color: rgba(27, 100, 64, 0.06);
  line-height: 1;
  pointer-events: none;
}

.testimonial-card:nth-child(even) {
  transform: translateY(16px);
}

.testimonial-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 12px 40px rgba(196, 112, 62, 0.1), 0 4px 12px rgba(27, 100, 64, 0.06);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  color: var(--accent);
}

.testimonial-stars svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.testimonial-quote {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 400;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.6;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 8px;
  border-top: 1px solid var(--border-light);
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--green);
  box-shadow: 0 0 0 3px var(--bg-primary), 0 0 0 5px rgba(27, 100, 64, 0.15);
}

.testimonial-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
}

.testimonial-role {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 1px;
}

/* ═══════════════════════════════════════
   PRODUCTS
   ═══════════════════════════════════════ */
.products {
  padding: var(--section-pad) 0;
  background: var(--bg-primary);
}

.products-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 24px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s;
  cursor: pointer;
  will-change: transform;
  position: relative;
}

.product-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--accent));
  transform: scaleX(0);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: var(--shadow-lg);
}

.product-card:hover::after {
  transform: scaleX(1);
}

.product-img {
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--bg-cream);
  position: relative;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-card:hover .product-img img {
  transform: scale(1.08);
}

.product-body {
  padding: 20px 20px 24px;
}

.product-body h4 {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 6px;
  line-height: 1.3;
}

.product-body .price {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--green);
}

.product-add {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  padding: 10px;
  background: var(--bg-white);
  color: var(--text-dark);
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  border-radius: 8px;
  transform: translateY(calc(100% + 12px));
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: var(--shadow-md);
}

.product-card:hover .product-add {
  transform: translateY(0);
}

/* ═══════════════════════════════════════
   BLOG
   ═══════════════════════════════════════ */
.blog {
  padding: var(--section-pad) 0;
  background: var(--bg-white);
  position: relative;
  overflow: hidden;
}

.blog::before {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(196, 112, 62, 0.04) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.blog-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 24px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  background: var(--bg-primary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s;
  cursor: pointer;
  will-change: transform;
}

.blog-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: var(--shadow-lg);
}

.blog-card-img {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
}

.blog-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27, 100, 64, 0.25) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}

.blog-card:hover .blog-card-img::after {
  opacity: 1;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.blog-card:hover .blog-card-img img {
  transform: scale(1.06);
}

.blog-card-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  font-family: var(--font-accent);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  background: rgba(27, 100, 64, 0.85);
  backdrop-filter: blur(6px);
  padding: 5px 14px;
  border-radius: 100px;
}

.blog-card-body {
  padding: 24px 24px 28px;
  position: relative;
}

.blog-card-date {
  font-family: var(--font-accent);
  font-size: 12px;
  color: var(--text-light);
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.blog-card-date::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 1px;
  background: var(--accent);
}

.blog-card-body h4 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.35;
  margin-bottom: 10px;
  transition: color 0.3s;
}

.blog-card:hover .blog-card-body h4 {
  color: var(--green);
}

.blog-card-body p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  font-weight: 300;
}

.blog-card-body::after {
  content: '\2192';
  position: absolute;
  bottom: 28px;
  right: 24px;
  font-size: 18px;
  color: var(--green);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.3s, transform 0.3s;
}

.blog-card:hover .blog-card-body::after {
  opacity: 1;
  transform: translateX(0);
}

/* ═══════════════════════════════════════
   NEWSLETTER
   ═══════════════════════════════════════ */
.newsletter {
  padding: var(--section-pad) 0;
  background: var(--bg-cream);
  position: relative;
  overflow: hidden;
}

.newsletter::before {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(27, 100, 64, 0.04) 0%, transparent 60%);
  border-radius: 50%;
}

.newsletter::after {
  content: '';
  position: absolute;
  top: -150px;
  right: -100px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(196, 112, 62, 0.04) 0%, transparent 60%);
  border-radius: 50%;
}

.newsletter-inner {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.03);
}

.newsletter-inner::before,
.newsletter-inner::after {
  content: '';
  position: absolute;
  width: 32px;
  height: 32px;
  border-color: var(--accent);
  border-style: solid;
  opacity: 0.35;
}

.newsletter-inner::before {
  top: 16px;
  left: 16px;
  border-width: 2px 0 0 2px;
  border-radius: 4px 0 0 0;
}

.newsletter-inner::after {
  bottom: 16px;
  right: 16px;
  border-width: 0 2px 2px 0;
  border-radius: 0 0 4px 0;
}

.newsletter-inner .section-heading {
  font-size: clamp(28px, 4vw, 42px);
}

.newsletter-inner .section-subtext {
  margin: 0 auto 36px;
  text-align: center;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 460px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: var(--bg-white);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
}

.newsletter-form input::placeholder {
  color: var(--text-light);
}

.newsletter-form input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(27, 100, 64, 0.1);
  background: #fff;
}

.newsletter-form button {
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: #fff;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 16px rgba(27, 100, 64, 0.2);
}

.newsletter-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(27, 100, 64, 0.3);
}

.newsletter-trust {
  font-size: 13px;
  color: var(--text-light);
  margin-top: 20px;
  font-weight: 400;
  letter-spacing: 0.01em;
}

/* ═══════════════════════════════════════
   SECTION DIVIDERS
   ═══════════════════════════════════════ */
.section-divider {
  position: relative;
  height: 1px;
  max-width: 600px;
  margin: 0 auto;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.section-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--accent));
}

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.footer {
  background: var(--text-dark);
  color: rgba(255, 255, 255, 0.55);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .nav-logo {
  color: #fff;
  margin-bottom: 16px;
  display: block;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  max-width: 280px;
  font-weight: 300;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
}

.footer-socials a:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

.footer-socials a svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.footer-col h5 {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul a {
  font-size: 14px;
  font-weight: 300;
  transition: color 0.3s, padding-left 0.3s;
}

.footer-col ul a:hover {
  color: #fff;
  padding-left: 4px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 13px;
  font-weight: 300;
}

.footer-contact {
  display: flex;
  gap: 24px;
  font-size: 13px;
}

/* ═══════════════════════════════════════
   BUTTERFLIES
   ═══════════════════════════════════════ */
.butterflies-container {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 10;
  overflow: hidden;
}

.butterfly {
  position: absolute;
  opacity: 0;
  will-change: transform;
}

.butterfly svg {
  width: 100%;
  height: 100%;
}

.butterfly-1 { width: 40px; height: 32px; }
.butterfly-2 { width: 32px; height: 26px; }
.butterfly-3 { width: 36px; height: 29px; }
.butterfly-4 { width: 28px; height: 22px; }
.butterfly-5 { width: 44px; height: 35px; }
.butterfly-6 { width: 30px; height: 24px; }
.butterfly-7 { width: 38px; height: 30px; }
.butterfly-8 { width: 34px; height: 27px; }

.butterfly .wing-left,
.butterfly .wing-bl {
  transform-origin: 25px 20px;
  animation: wingFlapLeft 0.3s ease-in-out infinite alternate;
}

.butterfly .wing-right,
.butterfly .wing-br {
  transform-origin: 25px 20px;
  animation: wingFlapRight 0.3s ease-in-out infinite alternate;
}

.butterfly-2 .wing-left,
.butterfly-2 .wing-bl {
  animation-duration: 0.25s;
}

.butterfly-2 .wing-right,
.butterfly-2 .wing-br {
  animation-duration: 0.25s;
}

.butterfly-3 .wing-left,
.butterfly-3 .wing-bl {
  animation-duration: 0.35s;
}

.butterfly-3 .wing-right,
.butterfly-3 .wing-br {
  animation-duration: 0.35s;
}

.butterfly-4 .wing-left, .butterfly-4 .wing-bl,
.butterfly-4 .wing-right, .butterfly-4 .wing-br {
  animation-duration: 0.22s;
}

.butterfly-5 .wing-left, .butterfly-5 .wing-bl,
.butterfly-5 .wing-right, .butterfly-5 .wing-br {
  animation-duration: 0.32s;
}

.butterfly-6 .wing-left, .butterfly-6 .wing-bl,
.butterfly-6 .wing-right, .butterfly-6 .wing-br {
  animation-duration: 0.28s;
}

.butterfly-7 .wing-left, .butterfly-7 .wing-bl,
.butterfly-7 .wing-right, .butterfly-7 .wing-br {
  animation-duration: 0.34s;
}

.butterfly-8 .wing-left, .butterfly-8 .wing-bl,
.butterfly-8 .wing-right, .butterfly-8 .wing-br {
  animation-duration: 0.26s;
}

@keyframes wingFlapLeft {
  0% { transform: rotateY(0deg); }
  100% { transform: rotateY(55deg); }
}

@keyframes wingFlapRight {
  0% { transform: rotateY(0deg); }
  100% { transform: rotateY(-55deg); }
}

@media (max-width: 600px) {
  .butterfly-1 { width: 28px; height: 22px; }
  .butterfly-2 { width: 22px; height: 18px; }
  .butterfly-3 { width: 25px; height: 20px; }
}

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 50;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.4s, transform 0.4s, background 0.3s;
  box-shadow: 0 4px 16px rgba(27, 100, 64, 0.25);
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--green-dark);
  transform: translateY(-2px) !important;
}

.back-to-top svg {
  width: 20px;
  height: 20px;
}

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .stat-item:nth-child(2)::after {
    display: none;
  }

  .testimonial-card:nth-child(even) {
    transform: none;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 900px) {

  .nav-links,
  .nav .nav-cta {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .philosophy-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .philosophy-images {
    order: -1;
  }

  .philosophy-images img {
    height: 260px;
  }

  .packages-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .footer-contact {
    flex-direction: column;
    gap: 8px;
    align-items: center;
  }

  .parallax-break {
    height: 40vh;
  }
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: clamp(34px, 9vw, 48px);
  }

  .hero-content {
    padding-bottom: 48px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .products-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .products-top,
  .blog-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-inner {
    padding: 40px 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .marquee-item {
    font-size: 14px;
    padding: 0 20px;
  }

  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 400px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════
   CART
   ═══════════════════════════════════════ */
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cart-icon {
  position: relative;
  background: none;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-icon svg {
  width: 22px;
  height: 22px;
  color: var(--text-dark);
  transition: color 0.3s;
}

.cart-icon:hover svg {
  color: var(--green);
}

.cart-badge {
  position: absolute;
  top: 2px;
  right: 0;
  min-width: 18px;
  height: 18px;
  background: var(--green);
  color: #fff;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.3s, transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.cart-badge.visible {
  opacity: 1;
  transform: scale(1);
}

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 26, 24, 0.4);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
}

.cart-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 380px;
  height: 100vh;
  height: 100dvh;
  background: var(--bg-white);
  z-index: 201;
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.08);
  transform: translateX(100%);
  will-change: transform;
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  border-bottom: 1px solid var(--border-light);
  flex-shrink: 0;
}

.cart-header h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 500;
  color: var(--text-dark);
}

.cart-close {
  width: 36px;
  height: 36px;
  background: var(--bg-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--text-muted);
  transition: background 0.3s, color 0.3s;
  line-height: 1;
}

.cart-close:hover {
  background: var(--bg-cream);
  color: var(--text-dark);
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 20px 28px;
}

.cart-empty {
  text-align: center;
  color: var(--text-light);
  font-size: 15px;
  padding: 48px 0;
  font-weight: 300;
}

.cart-item {
  display: grid;
  grid-template-columns: 56px 1fr auto auto;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-light);
  gap: 12px;
}

.cart-item:last-child {
  border-bottom: none;
}

.cart-item-thumb {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  object-fit: cover;
}

.cart-item-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.cart-item-name {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-item-price {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  color: var(--text-muted);
}

.cart-item-line-total {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  text-align: right;
  white-space: nowrap;
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.cart-qty-btn {
  width: 28px;
  height: 28px;
  background: var(--bg-primary);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-body);
  transition: background 0.2s, color 0.2s;
  line-height: 1;
}

.cart-qty-btn:hover {
  background: var(--green-light);
  color: var(--green);
}

.cart-item-qty {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  min-width: 20px;
  text-align: center;
}

.cart-item-remove {
  width: 28px;
  height: 28px;
  background: none;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--text-light);
  transition: background 0.2s, color 0.2s;
  margin-left: 4px;
}

.cart-item-remove:hover {
  background: rgba(196, 62, 62, 0.08);
  color: #c43e3e;
}

.cart-footer {
  padding: 20px 28px;
  border-top: 1px solid var(--border-light);
  flex-shrink: 0;
}

.cart-subtotal-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--border-light);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
}

.cart-subtotal-row span:last-child {
  font-size: 18px;
  font-weight: 600;
}

.cart-checkout {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px 24px;
  background: var(--green);
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.03em;
  border-radius: 100px;
  transition: background 0.3s, transform 0.2s;
  box-shadow: 0 4px 12px rgba(27, 100, 64, 0.15);
  margin-bottom: 12px;
}

.cart-checkout:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}

.cart-continue {
  display: block;
  text-align: center;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.3s;
  padding: 4px 0;
}

.cart-continue:hover {
  color: var(--green);
}

@media (max-width: 600px) {
  .cart-panel {
    width: 100%;
  }

  .cart-item {
    grid-template-columns: 48px 1fr auto;
  }

  .cart-item-line-total {
    grid-column: 1 / -1;
    text-align: right;
  }

  .cart-item-thumb {
    width: 48px;
    height: 48px;
  }
}

/* ═══════════════════════════════════════
   PRODUCT CARD LINK WRAPPER
   ═══════════════════════════════════════ */
.product-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.product-card .product-add {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  z-index: 2;
}

/* ═══════════════════════════════════════
   PRODUCT DETAIL PAGES
   ═══════════════════════════════════════ */
.breadcrumb {
  padding: 100px var(--side-pad) 0;
  max-width: var(--max-width);
  margin: 0 auto;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.breadcrumb a {
  color: var(--text-muted);
  transition: color 0.3s;
}

.breadcrumb a:hover {
  color: var(--green);
}

.breadcrumb .sep {
  color: var(--text-light);
  font-size: 11px;
}

.breadcrumb .current {
  color: var(--text-dark);
  font-weight: 500;
}

.product-page-section {
  padding: 40px 0 var(--section-pad);
}

.product-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--side-pad);
}

.product-page-image {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.product-page-image img {
  width: 100%;
  height: auto;
  display: block;
}

.product-page-info {
  padding-top: 16px;
}

.product-page-category {
  font-family: var(--font-accent);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.product-page-category::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--green);
}

.product-page-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 12px;
}

.product-page-price {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 500;
  color: var(--green);
  margin-bottom: 24px;
}

.product-page-desc {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 32px;
  max-width: 480px;
}

.product-page-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 36px;
}

.product-qty-selector {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 100px;
  overflow: hidden;
}

.product-qty-selector button {
  width: 40px;
  height: 44px;
  background: var(--bg-primary);
  font-size: 18px;
  font-weight: 500;
  color: var(--text-body);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}

.product-qty-selector button:hover {
  background: var(--green-light);
  color: var(--green);
}

.product-qty-selector .qty-value {
  width: 40px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
  background: var(--bg-white);
}

.product-add-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 32px;
  background: var(--green);
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.03em;
  border-radius: 100px;
  transition: background 0.3s, transform 0.2s;
  box-shadow: 0 4px 12px rgba(27, 100, 64, 0.15);
}

.product-add-btn:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}

.product-page-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
}

.product-page-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 400;
}

.product-page-features li::before {
  content: '\2713';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: var(--green-light);
  color: var(--green);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

.product-page-weight {
  font-size: 13px;
  color: var(--text-light);
  margin-top: 16px;
  font-weight: 400;
}

/* Related Products */
.related-products {
  padding: 0 0 var(--section-pad);
}

.related-products .container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--side-pad);
}

.related-products-header {
  text-align: center;
  margin-bottom: 40px;
}

.related-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Product page responsive */
@media (max-width: 900px) {
  .product-page-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .product-page-image {
    max-width: 520px;
  }
}

@media (max-width: 600px) {
  .product-page-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .product-add-btn {
    justify-content: center;
  }

  .related-products-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .breadcrumb {
    padding-top: 84px;
  }
}