/* ============================================
   THE GARDEN GUYS — GLOBAL STYLESHEET
   style.css
   All shared variables, resets, utilities,
   nav, and footer live here.
============================================ */

/* ── CSS VARIABLES ── */
:root {
  --green-dark:   #1a2e1a;
  --green-mid:    #2d4a2d;
  --green-accent: #4a7c4a;
  --green-light:  #6aab5e;
  --cream:        #f5f0e8;
  --cream-dark:   #e8e0d0;
  --stone:        #8b8070;
  --stone-light:  #c4bdb0;
  --white:        #ffffff;
  --text-dark:    #1a1a1a;
  --text-mid:     #4a4a4a;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;

  --section-pad:  100px 0;
  --container:    1200px;
  --transition:   0.3s ease;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  { font-family: var(--font-body); color: var(--text-dark); background: var(--cream); line-height: 1.6; overflow-x: hidden; }
img   { max-width: 100%; display: block; }
a     { text-decoration: none; color: inherit; }

/* ── CONTAINER ── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--green-light);
  color: var(--white);
  padding: 16px 36px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.btn-primary:hover { background: var(--green-mid); transform: translateY(-2px); }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--white);
  padding: 14px 34px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 2px solid var(--white);
  cursor: pointer;
  transition: all var(--transition);
}
.btn-outline:hover { background: var(--white); color: var(--green-dark); }

/* ── TYPOGRAPHY HELPERS ── */
.section-label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 16px;
  display: block;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--green-dark);
}
.section-title.light { color: var(--white); }

/* ── FORM ELEMENTS ── */
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.form-group label { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-mid); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 18px;
  border: 1px solid var(--cream-dark);
  background: var(--cream);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-dark);
  outline: none;
  transition: border-color var(--transition);
  resize: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--green-light); background: var(--white); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ── NAVIGATION ── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(26,46,26,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(106,171,94,0.2);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo span { color: var(--green-light); }
.nav-logo-icon {
  width: 36px; height: 36px;
  background: var(--green-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a {
  font-size: 0.875rem; font-weight: 500;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.05em;
  transition: color var(--transition);
  white-space: nowrap;
}
.nav-links a:hover { color: var(--green-light); }
.nav-links a.active { color: var(--green-light); }
.nav-cta {
  background: var(--green-light) !important;
  color: var(--white) !important;
  padding: 10px 22px;
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--green-accent) !important; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: all var(--transition); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: var(--green-dark);
  padding: 24px;
  z-index: 999;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: rgba(255,255,255,0.85);
  font-size: 1rem; font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu .mob-cta {
  background: var(--green-light);
  color: var(--white) !important;
  text-align: center;
  margin-top: 12px;
  padding: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
}

/* ── TRUST BAR ── */
#trust-bar {
  background: var(--green-dark);
  padding: 14px 0;
  border-top: 1px solid rgba(106,171,94,0.25);
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.04em;
}
.trust-item-dot { width: 6px; height: 6px; background: var(--green-light); border-radius: 50%; flex-shrink: 0; }

/* ── FOOTER ── */
#footer { background: var(--green-dark); padding: 64px 0 32px; }
.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);
  margin-bottom: 32px;
}
.footer-logo { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--white); margin-bottom: 16px; }
.footer-logo span { color: var(--green-light); }
.footer-desc { font-size: 0.875rem; color: rgba(255,255,255,0.55); line-height: 1.7; font-weight: 300; margin-bottom: 24px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--green-light); color: var(--white); }
.footer-col-title { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--green-light); margin-bottom: 20px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.875rem; color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer-links a:hover { color: var(--white); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; }
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.footer-credit { font-size: 0.8rem; color: rgba(255,255,255,0.3); }
.footer-credit a { color: var(--green-light); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.8s ease forwards; }
.fade-up-1 { animation: fadeUp 0.8s ease 0.15s both; }
.fade-up-2 { animation: fadeUp 0.8s ease 0.3s both; }
.fade-up-3 { animation: fadeUp 0.8s ease 0.45s both; }
.fade-up-4 { animation: fadeUp 0.8s ease 0.6s both; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  :root { --section-pad: 64px 0; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .trust-bar-inner { gap: 20px; }
}
