/* ── THE GREEN TOMORROW — GLOBAL SITE CSS ── */

/* Reset & Variables */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --green:   #3fa26b;
  --navy:    #1f3a5f;
  --bg:      #f4f5f0;
  --text:    #1a1a1a;
  --muted:   #6b7280;
  --border:  rgba(31,58,95,0.1);
  --font-display: 'Cormorant Garamond', serif;
  --font-body:    'DM Sans', sans-serif;
}
html { scroll-behavior: smooth; }
body {
  background-color: var(--bg) !important;
  color: var(--text) !important;
  font-family: var(--font-body) !important;
  font-size: 16px !important;
  line-height: 1.6 !important;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-top: 80px;
}

/* ── NAVBAR ── */
#tgt-navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(244,245,240,0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  height: 80px;
  display: flex;
  align-items: center;
}
#tgt-navbar .nav-inner {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#tgt-navbar .nav-logo img { height: 36px; width: auto; display: block; }
#tgt-navbar ul { display: flex; align-items: center; gap: 32px; list-style: none; }
#tgt-navbar ul a {
  font-size: 13px; font-weight: 400; color: var(--muted);
  text-decoration: none; letter-spacing: 0.02em; transition: color 0.2s;
}
#tgt-navbar ul a:hover,
#tgt-navbar ul a.active { color: var(--text); }
#tgt-navbar .nav-contact {
  font-size: 13px !important; font-weight: 500 !important;
  color: var(--navy) !important; border: 1px solid var(--border) !important;
  border-radius: 100px; padding: 8px 20px;
  transition: all 0.2s !important; white-space: nowrap;
}
#tgt-navbar .nav-contact:hover { background: var(--navy) !important; color: #fff !important; }

/* ── FOOTER ── */
#tgt-footer {
  background: var(--navy);
  color: #fff;
  padding: 80px 0 40px;
  margin-top: 0;
  font-family: var(--font-body);
}
#tgt-footer .footer-inner { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
#tgt-footer .footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
#tgt-footer .footer-logo {
  font-size: 13px; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: #fff;
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 20px;
}
#tgt-footer .footer-logo img { height: 56px; width: auto; filter: brightness(0) invert(1); }
#tgt-footer .footer-brand p {
  font-size: 13px; font-weight: 300; line-height: 1.7;
  color: rgba(255,255,255,0.55); max-width: 260px; margin-top: 16px;
}
#tgt-footer .footer-col h4 {
  font-size: 11px; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: rgba(255,255,255,0.4);
  margin-bottom: 20px; text-align: left;
}
#tgt-footer .footer-col ul { list-style: none !important; text-align: left !important; }
#tgt-footer .footer-col ul li { text-align: left !important; margin-bottom: 12px; }
#tgt-footer .footer-col ul a {
  text-align: left !important; display: block;
  font-size: 14px; font-weight: 300; color: rgba(255,255,255,0.7);
  text-decoration: none; transition: color 0.2s;
}
#tgt-footer .footer-col ul a:hover { color: #fff; }
#tgt-footer .footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 32px; font-size: 12px; color: rgba(255,255,255,0.35);
}
#tgt-footer .footer-bottom a {
  color: rgba(255,255,255,0.35); text-decoration: none; transition: color 0.2s;
}
#tgt-footer .footer-bottom a:hover { color: rgba(255,255,255,0.7); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  #tgt-navbar ul#tgt-nav-links { display: none !important; visibility: hidden !important; max-height: 0 !important; overflow: hidden !important; }
  #tgt-navbar #tgt-hamburger { display: flex !important; }
  #tgt-navbar ul { gap: 20px; }
  #tgt-footer .footer-top { grid-template-columns: 1fr 1fr !important; gap: 32px !important; }
  #tgt-footer .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 767px) {
  #tgt-navbar ul { display: none; }
  #tgt-footer .footer-top { grid-template-columns: 1fr 1fr !important; gap: 24px !important; }
  #tgt-footer .footer-brand { grid-column: 1 / -1; }
  #tgt-footer .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}
