/* =============================================
   CRAVEN CLEANING — Global Stylesheet
   ============================================= */

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

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: #f7f5f0; color: #1a1a1a; line-height: 1.6; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: 'DM Sans', sans-serif; }

/* TOKENS */
:root {
  --green-dark: #1a4a3a;
  --green-mid: #2a6a52;
  --green-accent: #5cb88a;
  --green-light: #7ddba8;
  --green-pale: #edf7f1;
  --cream: #f7f5f0;
  --white: #ffffff;
  --black: #111111;
  --text: #1a1a1a;
  --text-mid: #555555;
  --text-muted: #888888;
  --border: #e0ddd6;
  --font-display: 'Playfair Display', serif;
  --font-body: 'DM Sans', sans-serif;
}

/* TYPOGRAPHY */
h1, h2, h3, h4 { font-family: var(--font-display); letter-spacing: -0.04em; line-height: 1.08; }
p { line-height: 1.75; }

/* =============================================
   NAVIGATION
   ============================================= */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  border-bottom: 0.5px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 60px; height: 68px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 700; color: var(--green-dark);
  letter-spacing: -0.03em;
}
.nav-logo span { color: var(--green-accent); }
.nav-links {
  display: flex; gap: 36px; align-items: center;
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-mid);
}
.nav-links a:hover, .nav-links a.active { color: var(--green-dark); }
.nav-links a.active { border-bottom: 2px solid var(--green-accent); padding-bottom: 2px; }
.nav-cta {
  background: var(--green-dark); color: var(--white);
  border: none; padding: 11px 24px;
  font-size: 13px; font-weight: 500; letter-spacing: 0.04em;
  border-radius: 2px; transition: background 0.2s;
}
.nav-cta:hover { background: var(--green-mid); }
.nav-mobile-toggle { display: none; background: none; border: none; font-size: 24px; color: var(--green-dark); }

/* =============================================
   BUTTONS
   ============================================= */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-accent); color: var(--white);
  border: none; padding: 14px 28px;
  font-size: 14px; font-weight: 500; border-radius: 2px;
  transition: background 0.2s;
}
.btn-primary:hover { background: #4aa878; }
.btn-dark {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-dark); color: var(--white);
  border: none; padding: 14px 28px;
  font-size: 14px; font-weight: 500; border-radius: 2px;
  transition: background 0.2s;
}
.btn-dark:hover { background: var(--green-mid); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: rgba(255,255,255,0.8);
  border: 0.5px solid rgba(255,255,255,0.3); padding: 14px 24px;
  font-size: 14px; font-weight: 400; border-radius: 2px;
  transition: border-color 0.2s, color 0.2s;
}
.btn-outline:hover { border-color: rgba(255,255,255,0.6); color: #fff; }
.btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); color: var(--green-dark);
  border: none; padding: 14px 32px;
  font-size: 14px; font-weight: 500; border-radius: 2px;
  transition: opacity 0.2s;
}
.btn-white:hover { opacity: 0.9; }

/* =============================================
   SECTION LABELS
   ============================================= */
.label {
  display: block;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--green-accent); margin-bottom: 12px;
}
.label-light { color: var(--green-light); }

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.page-hero {
  background: var(--green-dark);
  padding: 72px 60px 64px;
}
.page-hero h1 { font-size: 54px; color: var(--white); margin-bottom: 16px; }
.page-hero h1 em { font-style: italic; color: var(--green-light); }
.page-hero p { font-size: 16px; color: rgba(255,255,255,0.55); font-weight: 300; max-width: 540px; }

/* =============================================
   CTA STRIP
   ============================================= */
.cta-strip {
  background: var(--green-accent);
  padding: 64px 60px;
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
}
.cta-strip h2 { font-size: 36px; color: var(--white); margin-bottom: 8px; }
.cta-strip p { color: rgba(255,255,255,0.75); font-size: 15px; }

/* =============================================
   FOOTER
   ============================================= */
.footer { background: var(--black); padding: 60px 60px 28px; }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 48px;
  border-bottom: 0.5px solid rgba(255,255,255,0.08);
}
.footer-brand-logo {
  font-family: var(--font-display); font-size: 22px; font-weight: 700;
  color: var(--white); margin-bottom: 14px;
}
.footer-brand-logo span { color: var(--green-accent); }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.38); line-height: 1.7; max-width: 260px; }
.footer-col h4 {
  font-family: var(--font-body); font-size: 10px; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(255,255,255,0.28); margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,0.52); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-col ul li span { font-size: 13px; color: rgba(255,255,255,0.52); }
.footer-bottom {
  padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.footer-bottom p { font-size: 11px; color: rgba(255,255,255,0.2); }

/* =============================================
   TRUST BAR
   ============================================= */
.trust-bar {
  background: var(--white);
  border-bottom: 0.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 0; padding: 0;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--text-mid); font-weight: 400;
  padding: 18px 32px; border-right: 0.5px solid var(--border);
}
.trust-item:last-child { border-right: none; }
.trust-item svg { width: 18px; height: 18px; color: var(--green-accent); flex-shrink: 0; }

/* =============================================
   MOBILE NAV
   ============================================= */
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 200;
  background: var(--white); flex-direction: column;
  padding: 24px 32px;
}
.mobile-menu.open { display: flex; }
.mobile-menu-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.mobile-menu-logo { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--green-dark); }
.mobile-menu-logo span { color: var(--green-accent); }
.mobile-menu-close { background: none; border: none; font-size: 28px; color: var(--text-mid); }
.mobile-menu-links { display: flex; flex-direction: column; gap: 0; }
.mobile-menu-links a {
  font-size: 28px; font-family: var(--font-display); font-weight: 700;
  color: var(--text); padding: 16px 0;
  border-bottom: 0.5px solid var(--border);
}
.mobile-menu-links a:hover { color: var(--green-dark); }
.mobile-menu-cta { margin-top: 32px; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  .nav { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-mobile-toggle { display: block; }
  .page-hero { padding: 48px 24px; }
  .page-hero h1 { font-size: 38px; }
  .cta-strip { flex-direction: column; padding: 48px 24px; text-align: center; }
  .footer { padding: 48px 24px 24px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .trust-bar { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; }
  .trust-item { white-space: nowrap; }
}
@media (max-width: 600px) {
  .footer-top { grid-template-columns: 1fr; }
  .page-hero h1 { font-size: 32px; }
}
