/* ============================================================
   KÖLKING ONLINE MARKETING – Shared Stylesheet
   Design: Nature-inspired, mixed dark/light, minimal
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Outfit:wght@200;300;400;500;600&display=swap');

/* ── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

:root {
  /* Palette */
  --ink:        #1a2e20;        /* deepest dark green */
  --canopy:     #243d2b;        /* dark green sections */
  --bark:       #2e4a34;
  --fern:       #3d6645;
  --leaf:       #4f8c5a;
  --sprout:     #5fa86a;
  --glow:       #72c47f;        /* primary accent */
  --sage:       #a8c9ad;
  --mist:       #d4e8d8;        /* very light green */
  --cream:      #f4f0e8;        /* warm light bg */
  --white:      #fafcfa;
  --gold:       #c9a96e;
  --mid:        #6b8070;        /* muted text */
  --border-d:   rgba(114,196,127,0.12);   /* border on dark bg */
  --border-l:   rgba(30,60,35,0.1);       /* border on light bg */

  /* Typography */
  --serif:  'Cormorant Garamond', Georgia, serif;
  --sans:   'Outfit', system-ui, sans-serif;

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

/* ── NAVIGATION ───────────────────────────────────────────── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem 5rem;
  transition: background 0.4s var(--ease), padding 0.3s, box-shadow 0.4s;
}
.site-nav.scrolled {
  background: rgba(26, 46, 32, 0.95);
  backdrop-filter: blur(14px);
  padding: 0.9rem 5rem;
  box-shadow: 0 2px 30px rgba(0,0,0,0.25);
}
.site-nav.light {
  background: rgba(244,240,232,0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--border-l);
}
.site-nav.light.scrolled {
  background: rgba(244,240,232,0.97);
}
.nav-logo {
  font-family: var(--serif);
  font-size: 1.5rem; font-weight: 700;
  color: white;
  text-decoration: none;
  display: flex; align-items: center; gap: 0.6rem;
  letter-spacing: 0.01em;
}
.site-nav.light .nav-logo { color: var(--ink); }
.nav-pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--glow);
  animation: breathe 3s ease-in-out infinite;
}
.nav-links { list-style: none; display: flex; gap: 2.5rem; align-items: center; }
.nav-links a {
  font-size: 0.78rem; font-weight: 400;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.2s;
}
.site-nav.light .nav-links a { color: rgba(26,46,32,0.6); }
.nav-links a:hover { color: var(--glow); }
.site-nav.light .nav-links a:hover { color: var(--fern); }
.nav-cta-btn {
  background: var(--glow) !important;
  color: var(--ink) !important;
  padding: 0.55rem 1.4rem !important;
  border-radius: 100px;
  font-weight: 600 !important;
  transition: transform 0.2s, box-shadow 0.2s !important;
  box-shadow: 0 0 20px rgba(114,196,127,0.3);
}
.nav-cta-btn:hover { transform: translateY(-1px); box-shadow: 0 4px 24px rgba(114,196,127,0.45) !important; }
.nav-burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.nav-burger span { display: block; width: 24px; height: 2px; background: white; border-radius: 2px; transition: all 0.3s; }
.site-nav.light .nav-burger span { background: var(--ink); }

/* ── HERO SHARED ──────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex; align-items: flex-end;
  padding: 0 5rem 6rem;
  overflow: hidden;
}
.hero-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  background-attachment: fixed;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(20,38,24,0.92) 0%,
    rgba(20,38,24,0.55) 40%,
    rgba(10,20,14,0.3) 100%
  );
}
.hero-content { position: relative; z-index: 2; max-width: 820px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.7rem;
  font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--glow);
  margin-bottom: 1.4rem;
  opacity: 0; animation: riseUp 0.8s 0.3s forwards;
}
.hero-badge-line {
  display: block; width: 28px; height: 1px;
  background: var(--glow); opacity: 0.6;
}
.hero-h1 {
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 700;
  line-height: 1.0; letter-spacing: -0.01em;
  color: white;
  opacity: 0; animation: riseUp 0.9s 0.45s forwards;
}
.hero-h1 em { font-style: italic; color: var(--glow); display: block; }
.hero-sub {
  font-size: 1rem; font-weight: 300;
  line-height: 1.8; color: rgba(255,255,255,0.65);
  max-width: 500px; margin: 1.4rem 0 2.2rem;
  opacity: 0; animation: riseUp 0.9s 0.6s forwards;
}
.hero-actions {
  display: flex; gap: 1rem; align-items: center; flex-wrap: wrap;
  opacity: 0; animation: riseUp 0.8s 0.75s forwards;
}
.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  opacity: 0; animation: fadeIn 1s 1.4s forwards;
}
.scroll-bar {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, rgba(114,196,127,0.6), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}

/* ── PAGE HERO (sub-pages) ────────────────────────────────── */
.page-hero {
  min-height: 50vh;
  position: relative;
  display: flex; align-items: flex-end;
  padding: 0 5rem 4rem;
  overflow: hidden;
}

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn-primary {
  background: var(--glow);
  color: var(--ink);
  padding: 0.9rem 2.2rem;
  border-radius: 100px;
  font-family: var(--sans);
  font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.07em; text-transform: uppercase;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 0.5rem;
  border: none; cursor: pointer;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  box-shadow: 0 0 28px rgba(114,196,127,0.28);
}
.btn-primary:hover { background: #87d492; transform: translateY(-2px); box-shadow: 0 6px 32px rgba(114,196,127,0.42); }

.btn-ghost {
  color: rgba(255,255,255,0.75);
  font-size: 0.82rem; font-weight: 400;
  letter-spacing: 0.08em; text-transform: uppercase;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 0.5rem;
  transition: color 0.2s, gap 0.2s;
}
.btn-ghost:hover { color: var(--glow); gap: 0.8rem; }

.btn-outline {
  border: 1.5px solid rgba(114,196,127,0.35);
  color: rgba(255,255,255,0.75);
  padding: 0.9rem 2.2rem;
  border-radius: 100px;
  font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.07em; text-transform: uppercase;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 0.5rem;
  transition: all 0.25s;
}
.btn-outline:hover { border-color: var(--glow); color: var(--glow); background: rgba(114,196,127,0.06); }

/* ── SECTIONS SHARED ──────────────────────────────────────── */
.sec { padding: 7rem 5rem; }
.sec-dark { background: var(--canopy); }
.sec-mid  { background: var(--bark); }
.sec-light { background: var(--cream); }
.sec-white { background: var(--white); }

.sec-label {
  display: flex; align-items: center; gap: 0.8rem;
  font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--glow); margin-bottom: 1rem;
}
.sec-dark .sec-label, .sec-mid .sec-label { color: var(--glow); }
.sec-light .sec-label, .sec-white .sec-label { color: var(--fern); }
.sec-label::after {
  content: ''; height: 1px; width: 50px;
  background: currentColor; opacity: 0.4;
}
.sec-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 700; line-height: 1.08;
  letter-spacing: -0.02em;
}
.sec-dark .sec-title, .sec-mid .sec-title { color: white; }
.sec-light .sec-title, .sec-white .sec-title { color: var(--ink); }
.sec-sub {
  font-size: 0.95rem; font-weight: 300; line-height: 1.8;
  margin-top: 0.9rem; max-width: 480px;
}
.sec-dark .sec-sub, .sec-mid .sec-sub { color: rgba(255,255,255,0.5); }
.sec-light .sec-sub, .sec-white .sec-sub { color: var(--mid); }

/* ── REVEAL ANIMATION ─────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }

/* ── MARQUEE ──────────────────────────────────────────────── */
.marquee-bar {
  overflow: hidden;
  border-top: 1px solid var(--border-d);
  border-bottom: 1px solid var(--border-d);
  background: var(--ink);
  padding: 1rem 0;
}
.marquee-track {
  display: flex; gap: 4rem;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
}
.m-item {
  font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(168,201,173,0.45);
  flex-shrink: 0;
  display: flex; align-items: center; gap: 1.5rem;
}
.m-item::after { content: '✦'; color: var(--glow); font-size: 0.45rem; opacity: 0.5; }

/* ── SERVICES ─────────────────────────────────────────────── */
.services-layout { display: grid; grid-template-columns: 1fr 1.6fr; gap: 6rem; align-items: start; }
.svc-list { display: flex; flex-direction: column; }
.svc-item {
  display: flex; gap: 1.5rem; align-items: flex-start;
  padding: 1.7rem 0;
  border-bottom: 1px solid var(--border-d);
  position: relative; cursor: default;
  transition: padding-left 0.3s;
}
.svc-item::before {
  content: ''; position: absolute;
  left: 0; top: 0; bottom: 0; width: 2px;
  background: var(--glow);
  transform: scaleY(0); transform-origin: top;
  transition: transform 0.3s;
}
.svc-item:hover { padding-left: 1rem; }
.svc-item:hover::before { transform: scaleY(1); }
.svc-n {
  font-family: var(--serif); font-style: italic;
  font-size: 0.78rem; color: var(--fern);
  min-width: 24px; padding-top: 3px;
}
.svc-name {
  font-family: var(--serif);
  font-size: 1.1rem; font-weight: 600;
  color: white; margin-bottom: 0.35rem;
}
.svc-desc {
  font-size: 0.84rem; font-weight: 300;
  line-height: 1.7; color: rgba(255,255,255,0.45);
}

/* ── WHY ──────────────────────────────────────────────────── */
.why-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.why-points { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.why-pt {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.3rem 1.4rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-d);
  border-radius: 12px;
  transition: background 0.25s, border-color 0.25s;
}
.why-pt:hover { background: rgba(255,255,255,0.08); border-color: rgba(114,196,127,0.22); }
.why-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: rgba(114,196,127,0.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem;
}
.why-pt-title { font-family: var(--serif); font-size: 1rem; font-weight: 600; color: var(--mist); margin-bottom: 0.2rem; }
.why-pt-text { font-size: 0.82rem; font-weight: 300; line-height: 1.65; color: rgba(255,255,255,0.42); }
.why-stat-box {
  background: rgba(114,196,127,0.06);
  border: 1px solid var(--border-d);
  border-radius: 20px; padding: 3rem;
  text-align: center; position: relative; overflow: hidden;
}
.why-stat-box::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(79,140,90,0.2) 0%, transparent 70%);
}
.why-stat { font-family: var(--serif); font-size: 5.5rem; font-weight: 700; color: var(--glow); line-height: 1; position: relative; z-index: 1; }
.why-stat-label { font-size: 0.72rem; font-weight: 400; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(168,201,173,0.5); margin-top: 0.5rem; position: relative; z-index: 1; }
.stats-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--border-d); border: 1px solid var(--border-d); border-radius: 14px; overflow: hidden; margin-top: 2.5rem; }
.stat-box { background: rgba(255,255,255,0.03); padding: 1.8rem; text-align: center; }
.stat-num { font-family: var(--serif); font-size: 2.4rem; font-weight: 700; color: var(--glow); line-height: 1; }
.stat-lbl { font-size: 0.72rem; font-weight: 300; color: rgba(255,255,255,0.4); margin-top: 0.3rem; }

/* ── REGION TAGS ──────────────────────────────────────────── */
.region-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.region-tags { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 0.5rem; }
.r-tag {
  padding: 0.5rem 1.1rem;
  border: 1px solid var(--border-l);
  border-radius: 100px;
  font-size: 0.82rem; font-weight: 400;
  color: var(--mid);
  transition: all 0.2s; cursor: default;
}
.r-tag:hover, .r-tag.hi {
  border-color: var(--fern); color: var(--fern);
  background: rgba(79,140,90,0.06);
}
.r-tag.hi { background: rgba(79,140,90,0.08); font-weight: 500; }
.region-feature {
  background: var(--canopy);
  border-radius: 16px; overflow: hidden;
  border: 1px solid var(--border-d);
}
.region-feature-img {
  height: 220px;
  background: url('https://images.unsplash.com/photo-1448375240586-882707db888b?w=800&q=80') center/cover;
  position: relative;
}
.region-feature-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, var(--canopy) 0%, transparent 60%);
}
.region-feature-body { padding: 1.8rem; }
.region-feature-title { font-family: var(--serif); font-size: 1.3rem; font-weight: 700; color: white; margin-bottom: 0.5rem; }
.region-feature-text { font-size: 0.84rem; font-weight: 300; line-height: 1.7; color: rgba(255,255,255,0.45); }

/* ── TESTIMONIALS ─────────────────────────────────────────── */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 3.5rem; }
.testi-card {
  background: white;
  border: 1px solid var(--border-l);
  border-radius: 14px; padding: 2rem;
  transition: box-shadow 0.3s, transform 0.3s; cursor: default;
}
.testi-card:hover { box-shadow: 0 16px 44px rgba(30,60,35,0.08); transform: translateY(-3px); }
.testi-stars { color: var(--gold); font-size: 0.8rem; letter-spacing: 2px; margin-bottom: 1rem; }
.testi-text { font-family: var(--serif); font-style: italic; font-size: 0.95rem; line-height: 1.75; color: var(--ink); margin-bottom: 1.5rem; }
.testi-author { display: flex; gap: 0.75rem; align-items: center; }
.testi-av {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--canopy);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 0.78rem; font-weight: 700;
  color: var(--glow); flex-shrink: 0;
}
.testi-name { font-size: 0.85rem; font-weight: 500; color: var(--ink); }
.testi-co { font-size: 0.75rem; font-weight: 300; color: var(--mid); }

/* ── CTA BANNER ───────────────────────────────────────────── */
.cta-banner {
  position: relative; overflow: hidden;
  padding: 7rem 5rem;
  text-align: center;
}
.cta-banner-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  background-attachment: fixed;
}
.cta-banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,46,32,0.92) 0%, rgba(46,74,52,0.85) 100%);
}
.cta-inner { position: relative; z-index: 2; max-width: 680px; margin: 0 auto; }
.cta-title { font-family: var(--serif); font-size: clamp(2.4rem, 5vw, 4.5rem); font-weight: 700; line-height: 1.0; letter-spacing: -0.02em; color: white; margin-bottom: 1.2rem; }
.cta-title em { font-style: italic; color: var(--glow); }
.cta-sub { font-size: 1rem; font-weight: 300; line-height: 1.8; color: rgba(255,255,255,0.55); margin-bottom: 2.2rem; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── CONTACT FORM ─────────────────────────────────────────── */
.contact-layout { display: grid; grid-template-columns: 1fr 1.3fr; gap: 6rem; }
.contact-info { display: flex; flex-direction: column; gap: 0.9rem; margin-top: 2rem; }
.c-item {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.2rem 1.4rem;
  background: var(--canopy);
  border: 1px solid var(--border-d);
  border-radius: 12px;
  transition: border-color 0.2s;
}
.c-item:hover { border-color: rgba(114,196,127,0.25); }
.c-icon { width: 36px; height: 36px; background: rgba(114,196,127,0.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 0.95rem; flex-shrink: 0; }
.c-lbl { font-size: 0.65rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--fern); }
.c-val { font-family: var(--serif); font-size: 0.95rem; font-weight: 600; color: var(--mist); margin-top: 0.1rem; }

/* Form fields */
.form-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-g { margin-bottom: 1rem; }
.form-g label { display: block; font-size: 0.66rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--fern); margin-bottom: 0.45rem; }
.form-g input,
.form-g select,
.form-g textarea {
  width: 100%; padding: 0.8rem 1rem;
  background: var(--canopy);
  border: 1px solid var(--border-d);
  border-radius: 10px;
  font-family: var(--sans); font-size: 0.9rem;
  color: white; outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-g input::placeholder, .form-g textarea::placeholder { color: rgba(168,201,173,0.25); }
.form-g input:focus, .form-g select:focus, .form-g textarea:focus {
  border-color: rgba(114,196,127,0.45);
  box-shadow: 0 0 0 3px rgba(114,196,127,0.08);
}
.form-g select { color: rgba(255,255,255,0.65); -webkit-appearance: none; cursor: pointer; }
.form-g select option { background: var(--ink); color: white; }
.form-g textarea { resize: vertical; min-height: 110px; }
.form-submit {
  width: 100%; margin-top: 0.5rem;
  padding: 1rem;
  background: var(--glow); color: var(--ink);
  border: none; border-radius: 100px;
  font-family: var(--sans); font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  transition: background 0.25s, box-shadow 0.25s;
  box-shadow: 0 0 24px rgba(114,196,127,0.22);
}
.form-submit:hover { background: #87d492; box-shadow: 0 0 40px rgba(114,196,127,0.38); }
.form-msg { padding: 1rem 1.3rem; border-radius: 10px; font-size: 0.9rem; margin-bottom: 1rem; display: none; }
.form-msg.success { background: rgba(114,196,127,0.12); border: 1px solid rgba(114,196,127,0.3); color: var(--glow); display: block; }
.form-msg.error   { background: rgba(220,80,60,0.1); border: 1px solid rgba(220,80,60,0.3); color: #f08070; display: block; }

/* ── FOOTER ───────────────────────────────────────────────── */
.site-footer {
  background: var(--ink);
  border-top: 1px solid var(--border-d);
  padding: 4rem 5rem 2rem;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem; padding-bottom: 3rem;
  border-bottom: 1px solid var(--border-d);
  margin-bottom: 2rem;
}
.f-logo { font-family: var(--serif); font-size: 1.4rem; font-weight: 700; color: white; display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.8rem; }
.f-logo-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--glow); }
.f-tagline { font-size: 0.84rem; font-weight: 300; line-height: 1.65; color: rgba(168,201,173,0.35); }
.footer-col h4 { font-size: 0.63rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--fern); margin-bottom: 1.2rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col a { font-size: 0.85rem; font-weight: 300; color: rgba(168,201,173,0.35); text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--glow); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; font-size: 0.75rem; color: rgba(168,201,173,0.2); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { color: rgba(168,201,173,0.25); text-decoration: none; transition: color 0.2s; }
.footer-legal a:hover { color: rgba(168,201,173,0.6); }

/* ── LEGAL PAGES ──────────────────────────────────────────── */
.legal-body { background: var(--cream); }
.legal-content { max-width: 800px; margin: 0 auto; padding: 6rem 2rem 7rem; }
.legal-content h1 { font-family: var(--serif); font-size: 2.8rem; font-weight: 700; color: var(--ink); margin-bottom: 0.5rem; }
.legal-content .legal-date { font-size: 0.8rem; color: var(--mid); margin-bottom: 3rem; }
.legal-content h2 { font-family: var(--serif); font-size: 1.4rem; font-weight: 600; color: var(--ink); margin: 2.5rem 0 0.8rem; }
.legal-content h3 { font-family: var(--serif); font-size: 1.1rem; font-weight: 600; color: var(--bark); margin: 1.8rem 0 0.5rem; }
.legal-content p { font-size: 0.93rem; line-height: 1.8; color: #3a4e40; margin-bottom: 0.9rem; }
.legal-content ul { padding-left: 1.5rem; margin-bottom: 0.9rem; }
.legal-content li { font-size: 0.93rem; line-height: 1.8; color: #3a4e40; margin-bottom: 0.3rem; }
.legal-content a { color: var(--fern); text-decoration: underline; }
.legal-content a:hover { color: var(--ink); }
.legal-placeholder {
  display: inline-block; background: rgba(79,140,90,0.12);
  border: 1px dashed var(--sage); border-radius: 4px;
  padding: 0.1rem 0.5rem; font-size: 0.88rem;
  color: var(--fern); font-style: italic;
}

/* ── ANIMATIONS ───────────────────────────────────────────── */
@keyframes riseUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}
@keyframes fadeIn { to { opacity: 1; } }
@keyframes breathe {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(1.5); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes scrollPulse {
  0%,100% { opacity: 0.4; transform: scaleY(1); }
  50%      { opacity: 1; transform: scaleY(1.25); }
}

/* ── MOBILE ───────────────────────────────────────────────── */
@media (max-width: 960px) {
  .site-nav { padding: 1rem 1.5rem; }
  .site-nav.scrolled { padding: 0.75rem 1.5rem; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .hero { padding: 0 1.5rem 5rem; }
  .hero-img { background-attachment: scroll; }
  .cta-banner-img { background-attachment: scroll; }
  .page-hero { padding: 0 1.5rem 3.5rem; }
  .sec { padding: 5rem 1.5rem; }
  .services-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .why-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .region-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .testi-grid { grid-template-columns: 1fr; }
  .cta-banner { padding: 5rem 1.5rem; }
  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  .form-row2 { grid-template-columns: 1fr; }
  .site-footer { padding: 3rem 1.5rem 1.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .legal-content { padding: 5rem 1.2rem 5rem; }
  .stats-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ── NAV DROPDOWN ─────────────────────────────────────────── */
.nav-dropdown { position: relative; }
.nav-dropdown > a { display: flex; align-items: center; gap: 0.3rem; cursor: pointer; }
.nav-sub {
  position: absolute; top: calc(100% + 12px); left: 50%;
  transform: translateX(-50%);
  background: var(--canopy);
  border: 1px solid rgba(114,196,127,0.15);
  border-radius: 14px;
  padding: 0.6rem;
  min-width: 200px;
  list-style: none; margin: 0;
  opacity: 0; pointer-events: none;
  transform: translateX(-50%) translateY(-6px);
  transition: opacity 0.22s ease, transform 0.22s ease;
  z-index: 200;
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.nav-dropdown:hover .nav-sub,
.nav-dropdown:focus-within .nav-sub {
  opacity: 1; pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.nav-sub li a {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.6rem 1rem;
  color: rgba(255,255,255,0.7) !important;
  font-size: 0.85rem; font-weight: 400;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.nav-sub li a:hover {
  background: rgba(114,196,127,0.1);
  color: white !important;
}
/* arrow pointer */
.nav-sub::before {
  content: '';
  position: absolute; top: -6px; left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 10px; height: 10px;
  background: var(--canopy);
  border-top: 1px solid rgba(114,196,127,0.15);
  border-left: 1px solid rgba(114,196,127,0.15);
}
