/* ============================================================
   KLIPPIES FONTEIN BOERDERY — PREMIUM DESIGN SYSTEM
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,600;9..144,700&family=Source+Sans+3:wght@400;500;600;700&display=swap');

/* ─── CSS VARIABLES ─────────────────────────────────────────── */
:root {
  /* Core Palette */
  --green:        #3b9942;
  --green-rgb:    59, 153, 66;
  --dark-green:   #1f5f2a;
  --dark-green-rgb: 31, 95, 42;
  --deeper-green: #07140c;
  --deeper-green-rgb: 7, 20, 12;
  --light-green:  #62bd69;
  --accent-green: #9de0a2;

  --brown:        #A07850;
  --light-brown:  #C4956A;
  --warm-brown:   #8B6340;
  --cream:        #F5F0E8;

  --white:        #FFFFFF;
  --off-white:    #FAF8F5;
  --gray-light:   #F0EDE8;
  --gray:         #9E9E9E;
  --gray-medium:  #6B6B6B;
  --gray-dark:    #3A3A3A;

  /* Typography */
  --font-display:  'Fraunces', Georgia, serif;
  --font-heading:  'Fraunces', Georgia, serif;
  --font-body:     'Source Sans 3', system-ui, sans-serif;

  /* Spacing */
  --section-pad: 100px;
  --container:   1200px;

  /* Transitions */
  --ease:   cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Shadows */
  --shadow-sm:  0 2px 8px rgba(var(--green-rgb), 0.08);
  --shadow-md:  0 8px 32px rgba(var(--green-rgb), 0.14);
  --shadow-lg:  0 24px 64px rgba(var(--green-rgb), 0.18);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--gray-dark);
  background: var(--off-white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

/* ─── TYPOGRAPHY ────────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.2; }

.display-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 400;
  line-height: 1.1;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--light-green);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--dark-green);
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-medium);
  line-height: 1.8;
  max-width: 600px;
}

/* ─── LAYOUT UTILITIES ──────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: var(--section-pad) 0;
}

.section--dark {
  background: var(--dark-green);
  color: var(--white);
}

.section--cream {
  background: var(--cream);
}

.section--gray {
  background: var(--gray-light);
}

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ─── NAVBAR ────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0.9rem 0;
  transition: all 0.25s var(--ease);
  background: var(--white);
  border-bottom: 1px solid rgba(20,20,20,0.04);
}

.navbar.scrolled {
  background: rgba(255,255,255,0.98);
  padding: 0.6rem 0;
  box-shadow: 0 8px 20px rgba(var(--green-rgb),0.08);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.navbar__logo img {
  height: 52px;
  width: 52px;
  object-fit: contain;
  border-radius: 50%;
  background: transparent;
  padding: 0;
  filter: none;
}

.navbar__logo-text {
  display: flex;
  flex-direction: column;
}

.navbar__logo-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark-green);
  line-height: 1;
}

.navbar__logo-sub {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--accent-green);
  text-transform: uppercase;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.navbar__links a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark-green);
  letter-spacing: 0.02em;
  transition: color 0.2s var(--ease);
  position: relative;
}

.navbar__links a::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 12%; right: 12%;
  height: 2px;
  background: transparent;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s var(--ease);
}

.navbar__links a:hover,
.navbar__links a.active {
  color: var(--green);
}

.navbar__links a:hover::after,
.navbar__links a.active::after {
  transform: scaleX(1);
  background: var(--light-green);
}


.navbar__cta {
  background: var(--dark-green);
  color: var(--white) !important;
  padding: 0.5rem 1.1rem;
  border-radius: 8px;
  font-weight: 700 !important;
  transition: background 0.18s var(--ease), transform 0.15s var(--ease) !important;
}

.navbar__cta::after { display: none !important; }

.navbar__cta:hover {
  background: var(--light-green) !important;
  transform: translateY(-1px);
}

/* Hamburger */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark-green);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; right: -100%;
  width: min(320px, 85vw);
  height: 100vh;
  background: var(--deeper-green);
  z-index: 999;
  flex-direction: column;
  padding: 6rem 2rem 3rem;
  gap: 0.5rem;
  transition: right 0.4s var(--ease);
  box-shadow: -8px 0 40px rgba(0,0,0,0.3);
}

.mobile-menu.open { right: 0; }

.mobile-menu a {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  font-weight: 500;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 0.3s;
}

.mobile-menu a:hover { color: var(--accent-green); }

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.3s;
}

.mobile-overlay.open { opacity: 1; }

/* ─── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  border: none;
  transition: all 0.3s var(--ease);
  text-decoration: none;
}

.btn--primary {
  background: var(--green);
  color: var(--white);
  border: 1px solid transparent;
  box-shadow: 0 8px 24px rgba(var(--green-rgb), 0.28);
  text-shadow: none;
}

.btn--primary:hover {
  background: var(--dark-green);
  box-shadow: 0 12px 32px rgba(var(--green-rgb), 0.38);
  transform: translateY(-2px);
}

.btn--hero-dark {
  background: #34383b;
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 8px 24px rgba(0,0,0,0.22);
}

.btn--hero-dark:hover {
  background: #232629;
  box-shadow: 0 10px 28px rgba(0,0,0,0.28);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.4);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.btn--outline:hover {
  background: rgba(255,255,255,0.14);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn--brown {
  background: var(--brown);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(160, 120, 80, 0.35);
}

.btn--brown:hover {
  background: var(--light-brown);
  box-shadow: 0 8px 32px rgba(160, 120, 80, 0.45);
  transform: translateY(-2px);
}

.btn svg, .btn .btn-icon { width: 18px; height: 18px; flex-shrink: 0; }

/* ─── HERO ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--deeper-green);
  background-image: url("assets/img/hero-sunset-cow-real.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.52) 42%, rgba(0,0,0,0.16) 70%, rgba(0,0,0,0) 100%);
  z-index: 1;
}

.hero__bg-img {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0;
}

/* Hero decorative elements */
.hero__decoration {
  position: absolute;
  z-index: 1;
}

.hero__deco-circle {
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(116, 198, 157, 0.12);
  position: absolute;
  top: -100px; right: -100px;
}

.hero__deco-circle-2 {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 1px solid rgba(116, 198, 157, 0.08);
  position: absolute;
  bottom: 100px; right: 150px;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
  padding: 2.6rem;
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.52) 0%, rgba(255, 255, 255, 0.16) 32%, rgba(255,255,255,0) 58%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.203) 0%, rgba(var(--green-rgb),0.74) 42%, rgba(var(--green-rgb),0.02) 100%);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.28);
  box-shadow: 0 28px 80px rgba(0,0,0,0.3);
  backdrop-filter: blur(18px) saturate(1.08);
  -webkit-backdrop-filter: blur(18px) saturate(1.08);
  transform-origin: left bottom;
  will-change: opacity, transform;
}

.hero:not(.hero-in-view) .hero__content {
  opacity: 0;
  transform: translate3d(-52px, 34px, 0) scale(0.96);
}

.hero.hero-in-view .hero__content {
  animation: heroCardFlyIn 0.85s var(--ease-spring) both;
}

/* Position hero content bottom-left on wide screens */
@media (min-width: 900px) {
  .hero__content {
    position: absolute;
    left: 3rem;
    bottom: 4rem;
    max-width: 620px;
    padding: 2.8rem;
    margin: 0;
  }
  .hero__title { color: var(--white); }
  .hero__description { color: rgba(255,255,255,0.85); }
}

/* Keep centered stacking on small screens */
@media (max-width: 899px) {
  .hero__content {
    position: relative;
    width: calc(100% - 2rem);
    margin-top: 110px;
  }
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-green);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeInUp 0.8s var(--ease) 0.2s forwards;
}

.hero__eyebrow::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--accent-green);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 1.5rem;
  max-width: 700px;
  opacity: 0;
  animation: textClipIn 0.95s var(--ease) 0.35s forwards, heroTextGlow 4s ease-in-out 1.25s infinite;
}

/* Limit hero heading to two lines for a clean, formal layout */
.hero__title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hero__title em {
  font-style: italic;
  color: var(--accent-green);
}

.hero__description {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  max-width: 550px;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeInUp 0.9s var(--ease) 0.6s forwards;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 0.9s var(--ease) 0.8s forwards;
}

.hero__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.hero__mini-card {
  position: relative;
  overflow: hidden;
  min-height: 92px;
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(7,20,12,0.58);
  box-shadow: 0 16px 40px rgba(0,0,0,0.18);
  backdrop-filter: blur(12px);
  opacity: 0;
  transform: translateY(18px);
  animation: cardFloatIn 0.75s var(--ease) forwards;
}

.hero__mini-card:nth-child(1) { animation-delay: 1s; }
.hero__mini-card:nth-child(2) { animation-delay: 1.12s; }
.hero__mini-card:nth-child(3) { animation-delay: 1.24s; }

.hero__mini-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(var(--green-rgb),0.35), transparent 65%);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}

.hero__mini-card:hover::before { opacity: 1; }

.hero__mini-kicker,
.hero__mini-title {
  position: relative;
  z-index: 1;
}

.hero__mini-kicker {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--accent-green);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero__mini-title {
  display: block;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.3;
}

.hero__stats {
  display: flex;
  gap: 3rem;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  opacity: 0;
  animation: fadeInUp 0.9s var(--ease) 1s forwards;
}

.hero__stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-green);
  line-height: 1;
}

.hero__stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  margin-top: 0.25rem;
}

/* Hero scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
  cursor: pointer;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
}

/* ─── ABOUT STRIP ────────────────────────────────────────────── */
.strip { display: none; }

.strip__inner {
  display: flex;
  gap: 4rem;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}

.strip__item {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  flex-shrink: 0;
}

.strip__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-green);
  flex-shrink: 0;
}

/* ─── ABOUT SECTION ──────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-image-main {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 4px 4px 60px 4px;
}

.about-image-accent {
  position: absolute;
  width: 200px;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  bottom: -18px;
  right: -12px;
  border: 4px solid rgba(250,248,245,0.9);
  box-shadow: 0 8px 24px rgba(var(--green-rgb),0.12);
}

.about-badge {
  position: absolute;
  top: 32px;
  left: -24px;
  background: var(--dark-green);
  color: var(--white);
  padding: 1.2rem 1.5rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.about-badge__num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-green);
  line-height: 1;
}

.about-badge__text {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.4;
  margin-top: 0.3rem;
}

.about__content { max-width: 560px; }

.about__lead {
  font-size: 1.1rem;
  color: var(--dark-green);
  font-weight: 500;
  line-height: 1.7;
  margin: 1.5rem 0 1rem;
  font-family: var(--font-heading);
  font-style: italic;
}

.about__text {
  color: var(--gray-medium);
  font-size: 0.97rem;
  line-height: 1.85;
  margin-bottom: 1rem;
}

.about__features {
  margin: 2rem 0;
  display: grid;
  gap: 0.75rem;
}

.about__feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--gray-dark);
  font-weight: 500;
}

.about__feature-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(var(--green-rgb), 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green);
}

/* ─── VALUES ─────────────────────────────────────────────────── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.value-card {
  background:
    linear-gradient(145deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.92) 58%, rgba(var(--green-rgb),0.08) 100%);
  border-radius: 8px;
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(var(--green-rgb), 0.1);
  box-shadow: var(--shadow-sm);
  transition: all 0.4s var(--ease);
}

.value-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--dark-green), var(--green));
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.value-card:hover::before { opacity: 1; }

.value-card:hover .value-card__number,
.value-card:hover .value-card__title,
.value-card:hover .value-card__text {
  color: var(--white);
  position: relative;
  z-index: 1;
}

.value-card:hover .value-card__icon {
  background: rgba(255,255,255,0.15);
  position: relative;
  z-index: 1;
}

.value-card:hover .value-card__icon svg { color: var(--white); }

.value-card__number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(var(--green-rgb), 0.12);
  line-height: 1;
  margin-bottom: 1rem;
  transition: color 0.4s;
}

.value-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  background: rgba(var(--green-rgb), 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.4s;
}

.value-card__icon svg {
  width: 24px;
  height: 24px;
  color: var(--green);
  transition: color 0.4s;
}

.value-card__title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark-green);
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
  transition: color 0.4s;
}

.value-card__text {
  font-size: 0.9rem;
  color: var(--gray-medium);
  line-height: 1.7;
  position: relative;
  z-index: 1;
  transition: color 0.4s;
}

/* ─── SERVICES ────────────────────────────────────────────────── */
.services-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
  align-items: end;
}

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

.service-card {
  background:
    linear-gradient(145deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.92) 62%, rgba(var(--green-rgb),0.08) 100%);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(var(--green-rgb), 0.1);
  box-shadow: var(--shadow-sm);
  transition: all 0.4s var(--ease);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.service-card__image {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}

.service-card:hover .service-card__image {
  transform: scale(1.05);
}

.service-card__image-wrap {
  overflow: hidden;
  position: relative;
}

.service-card__image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(var(--dark-green-rgb), 0.36), transparent);
}

.service-card__body {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--dark-green), var(--green));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}

.service-card__icon svg {
  width: 22px;
  height: 22px;
  color: var(--white);
}

.service-card__title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark-green);
  margin-bottom: 0.75rem;
}

.service-card__text {
  font-size: 0.92rem;
  color: var(--gray-medium);
  line-height: 1.75;
  flex: 1;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  color: var(--green);
  font-size: 0.875rem;
  font-weight: 600;
  transition: gap 0.3s var(--ease);
}

.service-card__link:hover { gap: 0.75rem; }

/* ─── WHY CHOOSE US ──────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.why-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 580px;
}

.why-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-image__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11, 43, 31, 0.4), transparent);
}

.why-points {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

.why-point {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem;
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.92) 62%, rgba(var(--green-rgb),0.08) 100%);
  border: 1px solid rgba(var(--green-rgb), 0.1);
  transition: all 0.35s var(--ease);
}

.why-point:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-md);
  transform: translateX(8px);
}

.why-point__num {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--green);
  background: rgba(var(--green-rgb), 0.1);
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-point__title {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark-green);
  margin-bottom: 0.25rem;
}

.why-point__text {
  font-size: 0.875rem;
  color: var(--gray-medium);
  line-height: 1.6;
}

/* ─── TEAM ───────────────────────────────────────────────────── */
.team-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 4rem;
}

.team-intro .section-subtitle { margin: 1rem auto 0; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.team-card {
  background:
    linear-gradient(145deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.92) 62%, rgba(var(--green-rgb),0.08) 100%);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(var(--green-rgb), 0.1);
  box-shadow: var(--shadow-sm);
  transition: all 0.4s var(--ease);
  text-align: center;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.team-card__image-wrap {
  position: relative;
  height: 280px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--dark-green), var(--green));
}

.team-card__image-wrap--portrait {
  height: 360px;
  background: var(--gray-light);
}

.team-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.team-card__image--director {
  object-fit: contain;
  object-position: center center;
}

.team-card:hover .team-card__image {
  transform: scale(1.05);
}

.team-card:hover .team-card__image--director {
  transform: none;
}

.team-card__initials {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
}

.team-card__body {
  padding: 1.75rem 1.5rem;
}

.team-card__name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark-green);
  margin-bottom: 0.3rem;
}

.team-card__role {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 1rem;
}

.team-card__bio {
  font-size: 0.875rem;
  color: var(--gray-medium);
  line-height: 1.7;
}

/* ─── GALLERY SECTION ────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 260px);
  gap: 1rem;
  margin-top: 3rem;
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item:nth-child(1) {
  grid-column: 1 / 3;
  grid-row: 1 / 2;
}

.gallery-item:nth-child(4) {
  grid-column: 4 / 5;
  grid-row: 1 / 3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 43, 31, 0.6), transparent 50%);
  opacity: 0;
  transition: opacity 0.4s;
}

.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover::after { opacity: 1; }

/* ─── CTA BANNER ─────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--dark-green) 0%, var(--green) 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.06);
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -30%; left: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.06);
}

.cta-banner__content {
  position: relative;
  z-index: 1;
}

.cta-banner__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-banner__text {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── CONTACT SECTION ────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}

.contact-info__title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark-green);
  margin-bottom: 1rem;
}

.contact-info__text {
  color: var(--gray-medium);
  font-size: 0.97rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.contact-items {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-item__icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--dark-green), var(--green));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item__icon svg {
  width: 20px;
  height: 20px;
  color: var(--white);
}

.contact-item__label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gray);
  margin-bottom: 0.2rem;
}

.contact-item__value {
  font-size: 0.97rem;
  color: var(--gray-dark);
  font-weight: 500;
}

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

/* Contact Form */
.contact-form {
  background:
    linear-gradient(145deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.92) 62%, rgba(var(--green-rgb),0.08) 100%);
  border-radius: 8px;
  padding: 3rem;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(var(--green-rgb), 0.1);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.form-group.full { grid-column: 1 / -1; }

.form-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--gray-dark);
  text-transform: uppercase;
}

.form-input,
.form-select,
.form-textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--gray-dark);
  background: var(--off-white);
  border: 1.5px solid var(--gray-light);
  border-radius: 10px;
  padding: 0.9rem 1.1rem;
  outline: none;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  width: 100%;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(var(--green-rgb), 0.14);
  background: var(--white);
}

.form-textarea { min-height: 130px; resize: vertical; }

.form-submit {
  width: 100%;
  justify-content: center;
  padding: 1rem 2rem;
  font-size: 1rem;
}

/* ─── FOOTER ─────────────────────────────────────────────────── */
footer {
  background: linear-gradient(180deg, #07140c 0%, #030806 100%);
  color: var(--white);
  padding: 5rem 0 0;
}

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

.footer-brand__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.footer-brand__logo img {
  height: 48px;
  width: 48px;
  object-fit: contain;
  border-radius: 50%;
  background: var(--white);
  padding: 3px;
}

.footer-brand__name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.footer-brand__tagline {
  font-size: 0.65rem;
  color: var(--accent-green);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-brand__text {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.8;
  max-width: 280px;
  margin-bottom: 1.5rem;
}

.footer-col__title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.25rem;
  letter-spacing: 0.03em;
}

.footer-links { display: grid; gap: 0.6rem; }

.footer-links a {
  color: rgba(255,255,255,0.68);
  font-size: 0.875rem;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-links a:hover { color: var(--accent-green); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: rgba(255,255,255,0.68);
  font-size: 0.875rem;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--accent-green);
  margin-top: 3px;
}

.footer-contact-item a { color: rgba(255,255,255,0.68); }
.footer-contact-item a:hover { color: var(--accent-green); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

/* ─── PAGE HERO (inner pages) ────────────────────────────────── */
.page-hero {
  --page-hero-image: linear-gradient(135deg, var(--deeper-green), var(--dark-green));
  background-image: linear-gradient(90deg, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.55) 46%, rgba(0,0,0,0.22) 100%), var(--page-hero-image);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-hero--about {
  --page-hero-image: url("assets/img/7.jpeg");
  background-position: center 42%;
}

.page-hero--services {
  --page-hero-image: url("assets/img/6.jpeg");
  background-position: center 48%;
}

.page-hero--contact {
  --page-hero-image: url("assets/img/2.jpeg");
  background-position: center 55%;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-hero__content {
  position: relative;
  z-index: 1;
  width: min(820px, calc(100% - 4rem));
  max-width: 820px;
  margin-left: max(2rem, calc((100vw - var(--container)) / 2 + 2rem));
  margin-right: auto;
  padding: 2.2rem;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.24);
  background:
    radial-gradient(circle at 16% 10%, rgba(255,255,255,0.48) 0%, rgba(255,255,255,0.14) 30%, rgba(255,255,255,0) 58%),
    linear-gradient(135deg, rgba(255,255,255,0.16) 0%, rgba(var(--green-rgb),0.62) 45%, rgba(10,16,12,0.34) 100%);
  box-shadow: 0 24px 70px rgba(0,0,0,0.24);
  backdrop-filter: blur(16px) saturate(1.08);
  -webkit-backdrop-filter: blur(16px) saturate(1.08);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.5rem;
}

.breadcrumb a { color: rgba(255,255,255,0.5); transition: color 0.3s; }
.breadcrumb a:hover { color: var(--accent-green); }
.breadcrumb__sep { opacity: 0.4; }
.breadcrumb__current { color: var(--accent-green); }

.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
  margin-bottom: 1rem;
  opacity: 0;
  animation: textClipIn 0.85s var(--ease) 0.15s forwards;
}

.page-hero__subtitle {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  max-width: 560px;
  line-height: 1.75;
  opacity: 0;
  animation: fadeInUp 0.8s var(--ease) 0.35s forwards;
}

/* ─── ANIMATIONS ─────────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes textClipIn {
  from {
    opacity: 0;
    clip-path: inset(0 0 100% 0);
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    transform: translateY(0);
  }
}

@keyframes heroTextGlow {
  0%, 100% { text-shadow: 0 0 0 rgba(157,224,162,0); }
  50% { text-shadow: 0 12px 34px rgba(157,224,162,0.18); }
}

@keyframes cardFloatIn {
  from { opacity: 0; transform: translateY(18px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes heroCardFlyIn {
  0% {
    opacity: 0;
    transform: translate3d(-58px, 38px, 0) scale(0.94);
    filter: blur(8px);
  }
  65% {
    opacity: 1;
    transform: translate3d(8px, -4px, 0) scale(1.01);
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }
}

@keyframes textSettle {
  0% { letter-spacing: 0.02em; filter: blur(2px); }
  100% { letter-spacing: 0; filter: blur(0); }
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

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

@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.section-label.reveal.visible,
.section-title.reveal.visible,
.section-subtitle.reveal.visible {
  animation: textSettle 0.7s var(--ease) both;
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  :root { --section-pad: 80px; }

  .values-grid    { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid   { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(4) { grid-column: auto; grid-row: auto; }
  .footer-grid    { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  :root { --section-pad: 64px; }

  .navbar__links { display: none; }
  .navbar__hamburger { display: flex; }
  .mobile-menu { display: flex; }
  .mobile-overlay { display: block; }

  .about-grid,
  .why-grid,
  .contact-grid,
  .services-intro,
  .grid-2 { grid-template-columns: 1fr; }

  .about-image-accent { display: none; }
  .about-badge { left: 16px; }
  .about-image-main { height: 360px; }

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

  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }

  .hero__stats { gap: 2rem; }
  .hero__cards { grid-template-columns: 1fr; }
  .hero__mini-card { min-height: auto; }
  .hero,
  .page-hero {
    background-attachment: scroll;
  }
  .page-hero__content {
    width: calc(100% - 2rem);
    margin-left: 1rem;
    padding: 1.6rem;
  }
  .why-image { height: 400px; }
  .contact-form { padding: 2rem 1.5rem; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 2.5rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .hero__stats { flex-wrap: wrap; gap: 1.5rem; }
}

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

/* ── Soften decorative elements for a more natural, human look ── */
.hero__deco-circle,
.hero__deco-circle-2 {
  display: none;
}

.hero__bg {
  background: linear-gradient(90deg, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.52) 42%, rgba(0,0,0,0.16) 70%, rgba(0,0,0,0) 100%);
}

.hero__title { letter-spacing: 0; font-weight:600; }

/* Slightly reduce large shadows and motion */
.btn--primary:not(.btn--hero-dark) {
  background: var(--green);
  box-shadow: 0 8px 24px rgba(var(--green-rgb),0.28);
}

.btn--hero-dark {
  background: #34383b;
  box-shadow: 0 8px 24px rgba(0,0,0,0.22);
}

.btn--outline {
  background: transparent;
}

.value-card, .service-card, .team-card { transition-duration: 0.28s; }
