@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,300;1,9..40,400&family=DM+Serif+Display:ital@0;1&display=swap');

/* ─── COLOR SYSTEM (Verdro) ─── */
:root {
  --pure-mist:    #FAFAFA;
  --soft-cloud:   #E2E1E1;
  --urban-stone:  #858585;
  --leaf:         #6DA003;
  --leaf-dark:    #547C02;
  --leaf-light:   #8FC520;
  --leaf-bg:      #EFF6E0;
  --charcoal:     #0D0101;
  --charcoal-80:  rgba(13,1,1,0.8);
  --charcoal-50:  rgba(13,1,1,0.5);
  --white:        #FFFFFF;

  --radius-sm:  12px;
  --radius-md:  20px;
  --radius-lg:  22px;
  --radius-xl:  38px;
  --radius-full: 999px;

  --shadow-sm: 0 2px 12px rgba(13,1,1,0.06);
  --shadow-md: 0 8px 32px rgba(13,1,1,0.10);
  --shadow-lg: 0 20px 60px rgba(13,1,1,0.13);

  --nav-h: 95px;
  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--pure-mist);
  color: var(--charcoal);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}
body.nav-open {
  overflow: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--soft-cloud); }
::-webkit-scrollbar-thumb { background: var(--leaf); border-radius: 4px; }

/* ─── TYPOGRAPHY ─── */
h1, h2, h3 { font-weight: 700; line-height: 1.15; color: var(--charcoal); }
h1 { font-size: clamp(40px, 6vw, 80px); }
h2 { font-size: clamp(30px, 4vw, 54px); }
h3 { font-size: clamp(18px, 2vw, 24px); }
p  { color: var(--urban-stone); font-size: 15px; line-height: 1.8; }

.serif { font-family: 'DM Serif Display', serif; font-weight: 400; }
.green { color: var(--leaf); }

/* ─── LABELS ─── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--leaf);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px; height: 2px;
  background: var(--leaf);
  border-radius: 2px;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn-green {
  background: var(--leaf);
  color: white;
  box-shadow: 0 4px 20px rgba(109,160,3,0.35);
}
.btn-green:hover {
  background: var(--leaf-dark);
  box-shadow: 0 8px 28px rgba(109,160,3,0.45);
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--charcoal);
  color: white;
  box-shadow: var(--shadow-md);
}
.btn-dark:hover {
  background: #2a2020;
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid var(--soft-cloud);
}
.btn-outline:hover {
  border-color: var(--leaf);
  color: var(--leaf);
  background: var(--leaf-bg);
}
.btn-sm { padding: 10px 20px; font-size: 13px; }
.btn-lg { padding: 18px 40px; font-size: 16px; }
.btn svg, .btn .arrow { transition: transform var(--transition); }
.btn:hover .arrow { transform: translateX(4px); }

/* ─── NAV ─── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  background: rgba(250,250,250,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(226,225,225,0.6);
  transition: background var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  background: rgba(250,250,250,0.97);
  box-shadow: var(--shadow-sm);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo-mark {
  width: 80px; height: 80px;
  background: var(--pure-mist);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.nav-brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-brand-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: -0.01em;
}
.nav-brand-sub {
  font-size: 9px;
  color: var(--urban-stone);
  letter-spacing: 0.1em;
  font-weight: 500;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--charcoal-80);
  position: relative;
  padding-bottom: 2px;
  transition: color var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--leaf);
  border-radius: 2px;
  transition: width var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--leaf); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 12px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  background: none;
  border: none;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── SECTION WRAPPER ─── */
.section { padding: 100px 5%; }
.section-sm { padding: 60px 5%; }
.section-dark { background: var(--charcoal); }
.section-cloud { background: var(--soft-cloud); }
.section-leaf { background: var(--leaf-bg); }

.container { max-width: 1240px; margin: 0 auto; }

/* ─── SECTION HEADER ─── */
.section-header { margin-bottom: 60px; }
.section-header.center { text-align: center; }
.section-header.center .eyebrow { justify-content: center; }

/* ─── CARDS ─── */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(226,225,225,0.8);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

/* ─── IMAGE PLACEHOLDER ─── */
.img-placeholder {
  width: 100%;
  position: relative;
  overflow: hidden;
  background: var(--soft-cloud);
  display: flex;
  align-items: center;
  justify-content: center;
}
.img-placeholder .img-icon {
  font-size: 48px;
  opacity: 0.35;
  position: relative;
  z-index: 1;
}
.img-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(109,160,3,0.08) 0%, rgba(133,133,133,0.05) 100%);
}

/* ─── PILL BADGE ─── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.badge-green { background: var(--leaf-bg); color: var(--leaf-dark); }
.badge-dark  { background: var(--charcoal); color: white; }
.badge-white { background: white; color: var(--charcoal); box-shadow: var(--shadow-sm); }

/* ─── FOOTER ─── */
footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
  padding: 80px 5% 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 36px;
}
.footer-logo-mark {
  width: 44px; height: 44px;
  background: var(--leaf);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}
.footer-brand-name {
  font-size: 17px;
  font-weight: 700;
  color: white;
  display: block;
  margin-bottom: 4px;
}
.footer-brand-sub {
  font-size: 10px;
  color: var(--leaf);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 18px;
}
.footer-brand p { font-size: 13px; line-height: 1.8; color: rgba(255,255,255,0.55); }

.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--leaf); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}
.footer-contact-item .ico { font-size: 15px; flex-shrink: 0; margin-top: 1px;  }
.footer-contact-item a { color: rgba(255,255,255,0.55); transition: color var(--transition); }
.footer-contact-item a:hover { color: var(--leaf); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

/* ─── ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-scale {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .nav-links { gap: 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  .nav-links {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    height: 100vh;
    background: rgba(250, 250, 250, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    gap: 32px;
    padding: 60px 40px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-20px);
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    border-bottom: none;
    box-shadow: none;
  }
  .nav-links.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
  .nav-links a {
    padding: 10px 0;
    width: auto;
    font-size: 26px;
    font-weight: 700;
    color: var(--charcoal);
    border-bottom: none;
    transition: color var(--transition), transform var(--transition);
  }
  .nav-links a:hover, .nav-links a.active {
    color: var(--leaf);
    transform: scale(1.08);
  }
  .nav-links a::after { display: none; }
  .hamburger {
    display: flex;
    position: relative;
    z-index: 1001;
  }
  .nav-actions .btn { display: none; }
  .nav-actions .btn-call-mobile { display: inline-flex !important; }
  .section { padding: 70px 5%; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .section { padding: 56px 5%; }
  h1 { font-size: clamp(34px, 10vw, 42px); }
  h2 { font-size: clamp(26px, 8vw, 32px); }
  h3 { font-size: clamp(20px, 6vw, 24px); }
  p { font-size: 16px; line-height: 1.75; }
  .badge { font-size: 13px; padding: 7px 16px; }
  .eyebrow { font-size: 12px; }
  .btn { font-size: 15px; padding: 15px 30px; }
  .btn-sm { padding: 12px 24px; font-size: 14px; }
  .btn-lg { padding: 18px 36px; font-size: 17px; }
}
