/* =============================================================
   ANITA'S HOME KITCHEN — style.css  (Full Homepage)
   ============================================================= */

/* -------------------------------------------------------------
   1. CSS VARIABLES
   ------------------------------------------------------------- */
:root {
  --clr-dark-green:  #1b3d2f;
  --clr-mid-green:   #265c40;
  --clr-light-green: #e6f0ea;
  --clr-accent:      #c8502a;
  --clr-accent-warm: #d4622e;
  --clr-cream:       #fdf8f3;
  --clr-cream-dark:  #f5ede0;
  --clr-white:       #ffffff;
  --clr-text:        #1a1a18;
  --clr-muted:       #6b7068;
  --clr-border:      rgba(255, 255, 255, 0.10);
  --clr-footer-body: #b8cdc0;
  --clr-footer-head: #e8f0eb;
  --clr-icon-soft:   #7ab89a;
  --ff-display: 'Cormorant Garamond', Georgia, serif;
  --ff-body:    'Outfit', system-ui, sans-serif;
  --nav-h-desk:   80px;
  --nav-h-mobile: 64px;
  --max-w:        1300px;
  --radius-pill:  100px;
  --radius-card:  18px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --dur:  0.28s;
  --transition: cubic-bezier(0.4, 0, 0.2, 1);
  --nav-height-desktop: 80px;
  --nav-height-mobile:  64px;
}

/* -------------------------------------------------------------
   2. RESET / BASE
   ------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff-body);
  font-size: 15px;
  line-height: 1.65;
  background: var(--clr-cream);
  color: var(--clr-text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font: inherit; }
select, input, textarea {
  font-family: var(--ff-body);
  font-size: 14px;
}

/* -------------------------------------------------------------
   3. SCROLL-REVEAL ANIMATION
   ------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* -------------------------------------------------------------
   4. SHARED COMPONENTS
   ------------------------------------------------------------- */
.section-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 5%;
}

.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--ff-body);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--clr-mid-green);
  margin-bottom: 16px;
}
.eyebrow--light { color: rgba(255,255,255,0.65); }

.eyebrow-line {
  display: block;
  width: 32px;
  height: 2px;
  background: var(--clr-accent);
  border-radius: 2px;
  flex-shrink: 0;
}
.eyebrow-line--light { background: rgba(255,255,255,0.5); }

.section-heading {
  font-family: var(--ff-display);
  font-size: clamp(30px, 4vw, 54px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: var(--clr-text);
  margin-bottom: 18px;
}
.section-heading em { font-style: italic; color: var(--clr-accent); }
.section-heading--light { color: var(--clr-white); }
.section-heading--light em { color: rgba(255,255,255,0.7); }

.section-sub {
  font-size: 16px;
  color: var(--clr-muted);
  max-width: 560px;
  line-height: 1.7;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header .section-eyebrow { justify-content: center; }
.section-header .section-sub { margin: 0 auto; }

/* Primary Button */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--clr-accent);
  color: var(--clr-white);
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  padding: 14px 30px;
  border-radius: var(--radius-pill);
  transition: background var(--dur) var(--ease), transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 6px 20px rgba(200, 80, 42, 0.28);
}
.btn-primary:hover {
  background: var(--clr-accent-warm);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(200, 80, 42, 0.38);
}
.btn-primary svg { fill: currentColor; }
.btn-primary--cream {
  background: var(--clr-white);
  color: var(--clr-accent);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}
.btn-primary--cream:hover {
  background: var(--clr-cream);
  transform: translateY(-2px);
}

.btn-ghost-light {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: transparent;
  color: var(--clr-white);
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: var(--radius-pill);
  border: 1.5px solid rgba(255,255,255,0.5);
  transition: background var(--dur), border-color var(--dur), transform 0.2s;
}
.btn-ghost-light svg { fill: currentColor; }
.btn-ghost-light:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.8);
  transform: translateY(-2px);
}

/* -------------------------------------------------------------
   5. NAVBAR
   ------------------------------------------------------------- */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--nav-h-desk);
  background: var(--clr-white);
  transition: box-shadow var(--dur) var(--ease);
}
#navbar.scrolled {
  box-shadow: 0 2px 20px rgba(27, 61, 47, 0.10);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  height: 100%;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo img {
  height: 50px;
  width: auto;
  object-fit: contain;
}
.logo-fallback { display: none; flex-direction: column; line-height: 1.1; }
.nav-logo img.broken + .logo-fallback { display: flex; }
.logo-fallback .lf-name {
  font-family: var(--ff-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--clr-text);
}
.logo-fallback .lf-sub {
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  color: var(--clr-mid-green);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--clr-text);
  padding: 8px 15px;
  border-radius: 8px;
  transition: color var(--dur) var(--ease), background var(--dur) var(--ease);
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--clr-mid-green);
  background: var(--clr-light-green);
}
.btn-order {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--clr-dark-green);
  color: var(--clr-white);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.3px;
  padding: 11px 24px;
  border-radius: var(--radius-pill);
  flex-shrink: 0;
  transition: background var(--dur) var(--ease), transform 0.18s;
}
.btn-order:hover { background: var(--clr-mid-green); transform: translateY(-1px); }
.btn-order svg { width: 15px; height: 15px; fill: currentColor; flex-shrink: 0; }

/* Sign In button — sits beside Order Now */
.btn-signin {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: transparent;
  color: var(--clr-text);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.2px;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  border: 1.5px solid rgba(27,61,47,0.18);
  flex-shrink: 0;
  transition: background var(--dur) var(--ease), border-color var(--dur), color var(--dur), transform 0.18s;
  white-space: nowrap;
}
.btn-signin svg { fill: currentColor; }
.btn-signin:hover {
  background: var(--clr-light-green);
  border-color: var(--clr-mid-green);
  color: var(--clr-mid-green);
  transform: translateY(-1px);
}
.hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border-radius: 8px;
  transition: background var(--dur);
  padding: 4px;
  position: relative;
}
.hamburger:hover { background: rgba(0,0,0,0.05); }
.hamburger .bar {
  display: block;
  width: 22px; height: 1.8px;
  background: var(--clr-text);
  border-radius: 2px;
  transition: transform 0.35s var(--ease), opacity 0.2s;
  transform-origin: center;
  position: absolute;
}
.hamburger .bar:nth-child(1) { transform: translateY(-7px); }
.hamburger .bar:nth-child(3) { transform: translateY(7px); }
.hamburger[aria-expanded="true"] .bar:nth-child(1) { transform: translateY(0) rotate(45deg); }
.hamburger[aria-expanded="true"] .bar:nth-child(2) { opacity: 0; transform: scaleX(0.1); }
.hamburger[aria-expanded="true"] .bar:nth-child(3) { transform: translateY(0) rotate(-45deg); }

/* -------------------------------------------------------------
   6. MOBILE MENU
   ------------------------------------------------------------- */
#mobile-menu {
  position: fixed;
  top: var(--nav-h-mobile);
  left: 0; right: 0; bottom: 0;
  z-index: 800;
  background: var(--clr-white);
  padding: 36px 7% 48px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.38s var(--ease), visibility 0.38s;
}
#mobile-menu.open { transform: translateX(0); visibility: visible; }
.mob-nav-link {
  font-family: var(--ff-display);
  font-size: clamp(26px, 7vw, 34px);
  font-weight: 600;
  color: var(--clr-text);
  padding: 16px 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  transition: color var(--dur) var(--ease), padding-left var(--dur);
  letter-spacing: -0.5px;
  line-height: 1.1;
}
.mob-nav-link:hover { color: var(--clr-mid-green); padding-left: 6px; }

/* Mobile signin/signup links */
.mob-nav-link--signin {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--clr-mid-green);
  font-size: clamp(20px, 5.5vw, 26px);
}
.mob-nav-link--signin svg { fill: var(--clr-mid-green); flex-shrink: 0; }
.mob-nav-link--signup {
  font-size: clamp(14px, 4vw, 18px);
  color: var(--clr-muted);
  font-family: var(--ff-body);
  font-weight: 600;
  letter-spacing: 0.3px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.mob-nav-link--signup:hover { color: var(--clr-accent); padding-left: 6px; }

/* Auth feature icon — SVG white on green */
.auth-feature__icon svg { display: block; }
.mob-cta { margin-top: 36px; }
.mob-cta .btn-order { display: flex; width: 100%; justify-content: center; font-size: 15px; padding: 15px 28px; }

/* -------------------------------------------------------------
   7. HERO
   ------------------------------------------------------------- */
#hero { position: relative; width: 100%; }
.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 580px;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.1s var(--ease), transform 6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: opacity, transform;
}
.hero-slide:nth-child(1) { background-color: #2a4a35; }
.hero-slide:nth-child(2) { background-color: #3a3020; }
.hero-slide:nth-child(3) { background-color: #1e3a28; }
.hero-slide:nth-child(4) { background-color: #2e2010; }
.hero-slide.active { opacity: 1; transform: scale(1); z-index: 1; }
.hero-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(135deg, rgba(10,25,16,0.72) 0%, rgba(10,25,16,0.55) 50%, rgba(10,25,16,0.40) 100%);
}
.hero-content {
  position: absolute; inset: 0; z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: calc(var(--nav-height-desktop) + 32px) 8% 100px;
  max-width: 860px;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 18px;
  opacity: 0;
  transform: translateY(12px);
  animation: heroFadeUp 0.8s 0.3s var(--ease) forwards;
}
.eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--clr-accent);
  flex-shrink: 0;
}
.hero-heading {
  font-family: var(--ff-display);
  font-size: clamp(38px, 6vw, 76px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--clr-white);
  margin-bottom: 24px;
  min-height: 2.4em;
}
.cursor {
  display: inline-block;
  color: var(--clr-accent);
  font-weight: 300;
  animation: cursorBlink 0.75s step-end infinite;
  margin-left: 2px;
}
@keyframes cursorBlink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }
.hero-subtext {
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,255,255,0.82);
  margin-bottom: 40px;
  max-width: 520px;
  opacity: 0;
  transform: translateY(14px);
  animation: heroFadeUp 0.8s 0.6s var(--ease) forwards;
}
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(14px);
  animation: heroFadeUp 0.8s 0.85s var(--ease) forwards;
}
.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  transition: background var(--ease) var(--dur), transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.hero-btn svg { fill: currentColor; }
.hero-btn--primary {
  background: var(--clr-accent);
  color: var(--clr-white);
  box-shadow: 0 8px 24px rgba(200,80,42,0.35);
}
.hero-btn--primary:hover { background: var(--clr-accent-warm); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(200,80,42,0.45); }
.hero-btn--secondary {
  background: rgba(255,255,255,0.12);
  color: var(--clr-white);
  border: 1.5px solid rgba(255,255,255,0.45);
  backdrop-filter: blur(6px);
}
.hero-btn--secondary:hover { background: rgba(255,255,255,0.22); transform: translateY(-2px); }
.hero-dots {
  position: absolute; bottom: 76px; left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex; gap: 10px;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none; cursor: pointer; padding: 0;
  transition: background var(--ease) var(--dur), width var(--ease) var(--dur);
}
.hero-dot.active { background: var(--clr-white); width: 24px; border-radius: 4px; }
.hero-arrow {
  display: none;
}
.hero-wave {
  position: absolute; bottom: -1px; left: 0;
  width: 100%; z-index: 5;
  line-height: 0; pointer-events: none;
}
.hero-wave svg { display: block; width: 100%; height: 56px; }
@keyframes heroFadeUp { to { opacity: 1; transform: translateY(0); } }

/* -------------------------------------------------------------
   8. TRUST BAR
   ------------------------------------------------------------- */
.trust-bar {
  background: var(--clr-cream);
  padding: 0 0 0;
}
.trust-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 5%;
  display: flex;
  align-items: stretch;
  gap: 0;
  background: var(--clr-white);
  border-radius: var(--radius-card);
  box-shadow: 0 4px 32px rgba(27,61,47,0.08);
  overflow: hidden;
}
.trust-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 24px;
}
.trust-divider {
  width: 1px;
  background: rgba(27,61,47,0.08);
  align-self: stretch;
  flex-shrink: 0;
}
.trust-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--clr-light-green);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.trust-icon svg { fill: var(--clr-mid-green); }
.trust-text { display: flex; flex-direction: column; gap: 2px; }
.trust-text strong { font-size: 14px; font-weight: 600; color: var(--clr-text); }
.trust-text span { font-size: 12.5px; color: var(--clr-muted); line-height: 1.4; }

/* -------------------------------------------------------------
   9. ABOUT / INTRO
   ------------------------------------------------------------- */
.about-intro {
  padding: 100px 0;
  background: var(--clr-cream);
}
.about-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 5%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-text .section-heading { margin-bottom: 24px; }
.about-body {
  font-size: 15.5px;
  color: var(--clr-muted);
  line-height: 1.8;
  margin-bottom: 18px;
}
.about-body strong { color: var(--clr-text); font-weight: 600; }
.about-body em { color: var(--clr-accent); font-style: italic; }
.about-text .btn-primary { margin-top: 12px; }

/* Mosaic image layout */
.about-mosaic { position: relative; }
.mosaic-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 14px;
}
.mosaic-img {
  border-radius: 14px;
  background-size: cover;
  background-position: center;
  background-color: var(--clr-light-green);
  overflow: hidden;
  transition: transform 0.45s var(--ease);
}
.mosaic-img:hover { transform: scale(1.03); }
.mosaic-img--tall {
  grid-row: 1 / 3;
  height: 380px;
}
.mosaic-img--sm { height: 175px; }
.mosaic-img--shifted { margin-top: 0; }

.mosaic-badge {
  position: absolute;
  bottom: -16px;
  left: -16px;
  background: var(--clr-accent);
  color: var(--clr-white);
  border-radius: 50px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(200,80,42,0.35);
  line-height: 1.3;
}
.mosaic-badge svg { fill: white; flex-shrink: 0; }
.mosaic-badge strong { font-weight: 700; }

/* -------------------------------------------------------------
   10. SERVICES
   ------------------------------------------------------------- */
.services-section {
  background: var(--clr-cream-dark);
  padding: 100px 0;
  position: relative;
}
.services-section::before, .services-section::after {
  content: '';
  display: block;
  position: absolute;
  left: 0; right: 0;
  height: 50px;
  background: var(--clr-cream);
}
.services-section::before { top: 0; clip-path: ellipse(60% 100% at 50% 0%); }
.services-section::after { bottom: 0; clip-path: ellipse(60% 100% at 50% 100%); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--clr-white);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(27,61,47,0.07);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(27,61,47,0.14);
}
.service-card__img {
  position: relative;
  height: 220px;
  background-size: cover;
  background-position: center;
  background-color: var(--clr-light-green);
  overflow: hidden;
}
.service-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,25,16,0.45) 0%, transparent 60%);
}
.service-card__num {
  position: absolute;
  top: 16px; right: 16px;
  font-family: var(--ff-display);
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  letter-spacing: 1px;
  z-index: 2;
}
.service-card__body {
  padding: 24px 24px 28px;
}
.service-card__body h3 {
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: 10px;
  letter-spacing: -0.2px;
}
.service-card__body p {
  font-size: 13.5px;
  color: var(--clr-muted);
  line-height: 1.7;
  margin-bottom: 18px;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--clr-accent);
  letter-spacing: 0.2px;
  transition: gap var(--dur) var(--ease), color var(--dur);
}
.service-link svg { fill: currentColor; transition: transform 0.2s; }
.service-link:hover { color: var(--clr-dark-green); gap: 10px; }
.service-link:hover svg { transform: translateX(2px); }

/* -------------------------------------------------------------
   11. FEATURE BANNER
   ------------------------------------------------------------- */
.feature-banner {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.feature-banner__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--clr-dark-green);
  transform: scale(1.04);
  transition: transform 0.6s var(--ease);
}
.feature-banner:hover .feature-banner__bg { transform: scale(1); }
.feature-banner__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,25,16,0.85) 0%, rgba(10,25,16,0.65) 100%);
}
.feature-banner__content {
  position: relative; z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px 5%;
  max-width: 640px;
  margin-left: 5%;
}
.feature-banner__content h2 {
  font-family: var(--ff-display);
  font-size: clamp(32px, 4.5vw, 58px);
  font-weight: 700;
  color: var(--clr-white);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.feature-banner__content h2 em { font-style: italic; color: rgba(255,255,255,0.7); }
.feature-banner__content p {
  color: rgba(255,255,255,0.75);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 500px;
}
.feature-banner__ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.feature-banner__ctas .btn-primary--cream svg { fill: var(--clr-accent); }

/* -------------------------------------------------------------
   12. WHY US / STATS
   ------------------------------------------------------------- */
.why-us {
  padding: 100px 0;
  background: var(--clr-cream);
}
.why-us__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.why-us__left .section-heading { margin-bottom: 20px; }
.why-body {
  font-size: 15.5px;
  color: var(--clr-muted);
  line-height: 1.8;
  margin-bottom: 28px;
}
.promise-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.promise-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  color: var(--clr-text);
  line-height: 1.5;
}
.check-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--clr-light-green);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.check-icon svg { fill: var(--clr-mid-green); }

.why-us__right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding-top: 40px;
}
.stat-card {
  background: var(--clr-white);
  border-radius: var(--radius-card);
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(27,61,47,0.06);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.stat-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(27,61,47,0.12); }
.stat-card__icon {
  width: 50px; height: 50px;
  border-radius: 14px;
  background: var(--clr-light-green);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.stat-card__icon svg { fill: var(--clr-mid-green); }
.stat-num {
  font-family: var(--ff-display);
  font-size: 46px;
  font-weight: 700;
  color: var(--clr-dark-green);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -1px;
}
.stat-label {
  font-size: 12.5px;
  color: var(--clr-muted);
  line-height: 1.4;
  font-weight: 500;
}
.stat-card--featured {
  background: var(--clr-dark-green);
  border-radius: var(--radius-card);
}
.stat-card--featured .stat-card__icon { background: rgba(255,255,255,0.12); }
.stat-card--featured .stat-card__icon svg { fill: rgba(255,255,255,0.85); }
.stat-card--featured .stat-num { color: var(--clr-white); }
.stat-card--featured .stat-label { color: rgba(255,255,255,0.6); }

/* -------------------------------------------------------------
   13. TESTIMONIALS
   ------------------------------------------------------------- */
.testimonials-section {
  background: var(--clr-dark-green);
  padding: 60px 0 80px;
  position: relative;
  overflow: hidden;
}
.testimonials-section::before {
  content: '';
  position: absolute;
  top: -40px; right: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.04);
  pointer-events: none;
}
.testi-wave-top, .testi-wave-bot {
  line-height: 0;
  overflow: hidden;
}
.testi-wave-top svg, .testi-wave-bot svg {
  display: block;
  width: 100%; height: 56px;
}
.testimonials-section .section-header { margin-bottom: 48px; }
.testi-track-wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 5%; overflow: hidden; }
.testi-track {
  display: flex;
  gap: 24px;
  transition: transform 0.55s cubic-bezier(0.4,0,0.2,1);
}
.testi-card {
  min-width: calc(33.333% - 16px);
  width: calc(33.333% - 16px);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-card);
  padding: 36px 32px;
  backdrop-filter: blur(6px);
  flex-shrink: 0;
  transition: background 0.3s;
  box-sizing: border-box;
  word-wrap: break-word;
  overflow: hidden;
}
.testi-card:hover { background: rgba(255,255,255,0.10); }
.testi-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 18px;
}
.testi-stars svg { fill: #f5c842; }
.testi-card blockquote {
  font-family: var(--ff-display);
  font-size: 18px;
  font-style: italic;
  color: rgba(255,255,255,0.88);
  line-height: 1.65;
  margin-bottom: 24px;
  quotes: none;
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
  width: 100%;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testi-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  font-family: var(--ff-display);
  font-size: 18px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  color: var(--clr-dark-green);
  flex-shrink: 0;
}
.testi-author strong { display: block; font-size: 14px; color: rgba(255,255,255,0.9); font-weight: 600; }
.testi-author span { font-size: 12px; color: rgba(255,255,255,0.45); }
.testi-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}
.testi-btn {
  display: none;
}
.testi-dots { display: flex; gap: 8px; }
.testi-dot-btn {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  transition: background var(--dur), width var(--dur);
}
.testi-dot-btn.active { background: var(--clr-white); width: 20px; border-radius: 4px; }

/* -------------------------------------------------------------
   14. CTA STRIP
   ------------------------------------------------------------- */
.cta-strip {
  background: var(--clr-cream);
  padding: 100px 0;
}
.cta-strip__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.cta-panel {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
}
.cta-panel__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--clr-dark-green);
  transition: transform 0.6s var(--ease);
}
.cta-panel:hover .cta-panel__bg { transform: scale(1.04); }
.cta-panel__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,25,16,0.90) 0%, rgba(10,25,16,0.3) 60%, transparent 100%);
}
.cta-panel__overlay--accent {
  background: linear-gradient(to top, rgba(180,60,20,0.88) 0%, rgba(50,20,10,0.4) 60%, transparent 100%);
}
.cta-panel__content {
  position: relative; z-index: 2;
  padding: 36px 36px 40px;
}
.cta-panel__content h3 {
  font-family: var(--ff-display);
  font-size: 30px;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.cta-panel__content p {
  font-size: 14px;
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
  margin-bottom: 24px;
  max-width: 340px;
}

/* -------------------------------------------------------------
   15. FIND US / CONTACT
   ------------------------------------------------------------- */
.find-us {
  background: var(--clr-cream-dark);
  padding: 100px 0;
  position: relative;
}
.find-us__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: start;
}
.find-us__info .section-heading { margin-bottom: 20px; }
.find-body {
  font-size: 15.5px;
  color: var(--clr-muted);
  line-height: 1.8;
  margin-bottom: 36px;
}
.contact-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact-item__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--clr-light-green);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-item__icon svg { fill: var(--clr-mid-green); }
.contact-label { display: block; font-size: 11.5px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--clr-muted); margin-bottom: 2px; }
.contact-value { display: block; font-size: 15px; font-weight: 500; color: var(--clr-text); }
.contact-value[href] { transition: color var(--dur); }
.contact-value[href]:hover { color: var(--clr-accent); }

.find-us__socials {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.find-us__socials span { font-size: 13px; font-weight: 500; color: var(--clr-muted); }
.find-us__socials a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(27,61,47,0.15);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--dur), border-color var(--dur), transform 0.2s;
}
.find-us__socials a svg { fill: var(--clr-mid-green); }
.find-us__socials a:hover { background: var(--clr-mid-green); border-color: var(--clr-mid-green); transform: translateY(-2px); }
.find-us__socials a:hover svg { fill: var(--clr-white); }

/* Contact Form */
.find-us__form {
  background: var(--clr-white);
  border-radius: 24px;
  padding: 44px 40px;
  box-shadow: 0 8px 40px rgba(27,61,47,0.09);
}
.form-title {
  font-family: var(--ff-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: 28px;
  letter-spacing: -0.3px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 16px;
}
.form-group label {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--clr-text);
  text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--clr-cream);
  border: 1.5px solid transparent;
  border-radius: 10px;
  padding: 13px 16px;
  font-size: 14px;
  color: var(--clr-text);
  outline: none;
  transition: border-color var(--dur), box-shadow var(--dur);
  appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%236b7068' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 20px;
  cursor: pointer;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--clr-mid-green);
  box-shadow: 0 0 0 3px rgba(38,92,64,0.08);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.btn-form { width: 100%; justify-content: center; padding: 16px; font-size: 15px; }
.form-note { margin-top: 12px; font-size: 13px; text-align: center; color: var(--clr-mid-green); min-height: 20px; }

/* -------------------------------------------------------------
   16. FOOTER
   ------------------------------------------------------------- */
footer {
  background: var(--clr-dark-green);
  color: var(--clr-footer-body);
  font-family: var(--ff-body);
}
.footer-wave { display: block; line-height: 0; overflow: hidden; background: var(--clr-cream-dark); }
.footer-wave svg { display: block; width: 100%; height: 80px; }
.footer-main {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 64px 5% 48px;
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1.2fr;
  gap: 48px 40px;
}
.footer-brand-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.footer-brand-logo img { height: 64px; width: auto; object-fit: contain; }
.footer-logo-fallback {
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--clr-footer-head);
  display: none; line-height: 1.15;
}
.footer-brand-logo img.broken { display: none; }
.footer-brand-logo img.broken + .footer-logo-fallback { display: block; }
.footer-tagline {
  font-size: 13.5px;
  line-height: 1.8;
  color: var(--clr-footer-body);
  max-width: 275px;
  opacity: 0.82;
  margin-bottom: 26px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  transition: background var(--dur), border-color var(--dur), transform 0.2s;
}
.footer-social a svg { width: 17px; height: 17px; fill: var(--clr-footer-body); transition: fill var(--dur); }
.footer-social a:hover { background: var(--clr-mid-green); border-color: var(--clr-mid-green); transform: translateY(-2px); }
.footer-social a:hover svg { fill: var(--clr-white); }
.footer-col h4 {
  font-family: var(--ff-display);
  font-size: 16px; font-weight: 600;
  color: var(--clr-footer-head);
  margin-bottom: 22px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col ul a { font-size: 13.5px; color: var(--clr-footer-body); opacity: 0.75; transition: opacity var(--dur), color var(--dur); }
.footer-col ul a:hover { opacity: 1; color: var(--clr-white); }
.contact-row {
  display: flex; align-items: flex-start;
  gap: 12px; margin-bottom: 14px;
  font-size: 13.5px; color: var(--clr-footer-body);
}
.contact-row svg { width: 15px; height: 15px; fill: var(--clr-icon-soft); flex-shrink: 0; margin-top: 2px; }
.contact-row a { opacity: 0.8; transition: opacity var(--dur), color var(--dur); }
.contact-row a:hover { opacity: 1; color: var(--clr-white); }
.footer-socials-block { margin-top: 20px; border-top: 1px solid rgba(255,255,255,0.08); padding-top: 20px; }
.footer-social-label { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 12px; }
.footer-social-handles { display: flex; flex-direction: column; gap: 9px; }
.footer-social-handles a {
  display: flex; align-items: center; gap: 9px;
  font-size: 12.5px; color: var(--clr-footer-body);
  opacity: 0.7;
  transition: opacity var(--dur), color var(--dur);
}
.footer-social-handles a svg { fill: var(--clr-icon-soft); flex-shrink: 0; }
.footer-social-handles a:hover { opacity: 1; color: var(--clr-white); }
.footer-bottom {
  border-top: 1px solid var(--clr-border);
  padding: 20px 5%;
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 12px; flex-wrap: wrap;
}
.footer-bottom p,
.footer-bottom a { font-size: 12px; color: var(--clr-footer-body); opacity: 0.5; }
.footer-bottom a:hover { opacity: 0.9; color: var(--clr-white); }
.bottom-links { display: flex; gap: 20px; }

/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (max-width: 1280px) {
  .nav-inner { padding: 0 4%; }
  .footer-main { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (max-width: 1024px) {
  .about-inner { gap: 48px; }
  .why-us__grid { gap: 48px; }
  .find-us__grid { gap: 48px; }
  .nav-links a { font-size: 13px; padding: 8px 11px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 40px 32px; }
}
@media (max-width: 991px) {
  #navbar { height: var(--nav-h-mobile); }
  .nav-links { display: none; }
  .nav-inner > .btn-order { display: none; }
  .nav-inner > .btn-signin { display: none; }
  .hamburger { display: flex; }
  /* Trust bar */
  .trust-inner { flex-direction: column; border-radius: 16px; }
  .trust-divider { width: 100%; height: 1px; align-self: auto; }
  /* Hero */
  .hero-slider { height: 100svh; min-height: 560px; }
  .hero-content {
    padding-top: calc(var(--nav-height-mobile) + 36px);
    padding-bottom: 100px;
    padding-left: 6%; padding-right: 6%;
    align-items: center; text-align: center; max-width: 100%;
  }
  .hero-eyebrow { justify-content: center; }
  .hero-heading { font-size: clamp(34px, 7vw, 52px); }
  .hero-subtext { max-width: 480px; margin-left: auto; margin-right: auto; font-size: 15px; }
  .hero-subtext br { display: none; }
  .hero-ctas { justify-content: center; }
  .hero-arrow { display: none; }
  /* About */
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-mosaic { order: -1; }
  .mosaic-img--tall { height: 280px; }
  .mosaic-img--sm { height: 130px; }
  /* Why us */
  .why-us__grid { grid-template-columns: 1fr; gap: 56px; }
  .why-us__right { padding-top: 0; }
  /* CTA strip */
  .cta-strip__grid { grid-template-columns: 1fr; }
  /* Find us */
  .find-us__grid { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 768px) {
  .hero-slider { min-height: 540px; }
  .hero-heading { font-size: clamp(30px, 7.5vw, 46px); }
  .hero-eyebrow { font-size: 11px; }
  .hero-subtext { font-size: 14.5px; }
  .services-grid { grid-template-columns: 1fr; }
  .feature-banner__content { margin-left: auto; margin-right: auto; padding-left: 5%; padding-right: 5%; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 36px 24px; padding: 48px 6% 40px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .find-us__form { padding: 36px 28px; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .about-intro { padding: 72px 0; }
  .services-section { padding: 72px 0; }
  .feature-banner { min-height: 420px; }
  .why-us { padding: 72px 0; }
  .cta-strip { padding: 72px 0; }
  .find-us { padding: 72px 0; }
  .cta-panel { min-height: 280px; }
  .cta-panel__content { padding: 24px 24px 28px; }
  .cta-panel__content h3 { font-size: 24px; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-tagline { max-width: 100%; }
  .mosaic-badge { left: 0; bottom: -12px; }
}
@media (max-width: 480px) {
  .trust-item { gap: 12px; padding: 20px 18px; }
  .trust-icon { width: 40px; height: 40px; }
  .hero-btn { font-size: 13.5px; padding: 13px 24px; }
  .hero-dots { bottom: 62px; }
  .stat-num { font-size: 38px; }
  .testi-card { min-width: calc(85% - 12px); width: calc(85% - 12px); padding: 28px 24px; }
  .mob-nav-link { font-size: clamp(22px, 6vw, 28px); }
}
@media (max-width: 414px) {
  .nav-logo img { height: 42px; }
  .hero-content { padding-left: 5%; padding-right: 5%; }
  .hero-heading { font-size: clamp(24px, 8.5vw, 34px); }
  .hero-ctas { flex-direction: column; width: 100%; }
  .hero-btn { width: 100%; justify-content: center; }
  .feature-banner__ctas { flex-direction: column; }
  .feature-banner__ctas a { width: 100%; justify-content: center; }
  .find-us__form { padding: 28px 20px; }
  .footer-social a { width: 36px; height: 36px; }
  .footer-main { padding: 40px 6% 36px; }
}
@media (max-width: 390px) {
  .hero-heading { font-size: clamp(22px, 9vw, 32px); }
  .hero-subtext { font-size: 13px; }
  .section-heading { font-size: clamp(26px, 8vw, 36px); }
}
@media (max-width: 375px) {
  .hero-slider { min-height: 480px; }
  .hero-content { padding-top: calc(var(--nav-height-mobile) + 16px); }
}
@media (max-width: 320px) {
  .hero-heading { font-size: 20px; }
  .hero-subtext { font-size: 12.5px; }
  .hero-eyebrow { font-size: 10px; }
  .hero-btn { font-size: 13px; padding: 12px 20px; }
  .hero-dots { bottom: 56px; }
  .mob-nav-link { font-size: 19px; padding: 13px 0; }
}
@media (max-height: 500px) and (orientation: landscape) {
  .hero-slider { height: 100svh; min-height: 340px; }
  .hero-content { padding-top: calc(var(--nav-height-mobile) + 12px); padding-bottom: 64px; }
  .hero-heading { font-size: clamp(22px, 4vw, 36px); }
  .hero-subtext { display: none; }
  .hero-ctas { gap: 10px; }
  .hero-btn { padding: 10px 20px; font-size: 13px; }
  .hero-dots { bottom: 16px; }
}
