:root {
  --navy: #1B3A5C;
  --sage: #4A7C6F;
  --lime: #C8FF00;
  --cream: #F8F5F0;
  --mid: #444444;
  --light: #888888;
  --white: #ffffff;
  --dark: #111d2b;
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Georgia', serif; background: var(--white); color: var(--mid); line-height: 1.6; }
a { text-decoration: none; color: inherit; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }

/* ── NAV ── */
nav {
  background: var(--navy);
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.nav-logo {
  font-family: 'Arial', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--white);
  text-transform: uppercase;
}
.nav-logo span { color: var(--lime); }
.nav-links { display: flex; gap: 32px; list-style: none; align-items: center; }
.nav-links a {
  font-family: 'Arial', sans-serif;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-cta {
  background: var(--lime) !important;
  color: var(--navy) !important;
  font-weight: 700 !important;
  padding: 10px 22px !important;
  border-radius: 2px;
}
.nav-cta:hover { opacity: 0.9; }

/* ── BUTTONS ── */
.btn { display: inline-block; font-family: 'Arial', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 16px 36px; border-radius: 2px; transition: opacity 0.2s; cursor: pointer; }
.btn:hover { opacity: 0.88; }
.btn-lime { background: var(--lime); color: var(--navy); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-sage { background: var(--sage); color: var(--white); }
.btn-ghost { border: 1px solid rgba(255,255,255,0.35); color: rgba(255,255,255,0.8); }
.btn-ghost-dark { border: 1px solid var(--navy); color: var(--navy); }

/* ── SECTION LABELS ── */
.eyebrow {
  font-family: 'Arial', sans-serif;
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 14px;
  display: block;
}
.eyebrow-light { color: rgba(255,255,255,0.5); }
h1, h2, h3 { font-family: 'Georgia', serif; font-weight: normal; line-height: 1.2; }
h1 { font-size: clamp(32px, 5vw, 64px); }
h2 { font-size: clamp(24px, 3.5vw, 42px); }
h3 { font-size: clamp(18px, 2vw, 24px); }
.lead { font-size: 17px; line-height: 1.85; color: var(--mid); max-width: 640px; }
.lead-light { color: rgba(255,255,255,0.65); }

/* ── IMAGE PLACEHOLDERS ── */
.img-placeholder {
  background: linear-gradient(135deg, var(--navy) 0%, var(--sage) 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.img-placeholder::after {
  content: attr(data-label);
  font-family: 'Arial', sans-serif;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  text-align: center;
  padding: 20px;
}
.img-placeholder.sage { background: linear-gradient(135deg, var(--sage) 0%, #2d5a4f 100%); }
.img-placeholder.cream { background: var(--cream); }
.img-placeholder.cream::after { color: var(--light); }

/* ── DIVIDER ── */
.lime-bar { width: 48px; height: 3px; background: var(--lime); margin: 20px 0; }
.sage-bar { width: 48px; height: 3px; background: var(--sage); margin: 20px 0; }
hr.section-rule { border: none; border-top: 1px solid rgba(27,58,92,0.12); margin: 0; }

/* ── STRIPS ── */
.info-strip {
  background: var(--sage);
  padding: 24px 60px;
  display: flex;
  gap: 48px;
  align-items: center;
  flex-wrap: wrap;
}
.strip-item {
  font-family: 'Arial', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
}
.strip-item::before { content: '—'; color: var(--lime); }

/* ── FOOTER ── */
footer {
  background: var(--navy);
  padding: 72px 60px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
  font-family: 'Arial', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-logo span { color: var(--lime); }
.footer-body { font-size: 14px; line-height: 1.8; color: rgba(255,255,255,0.35); }
.footer-heading {
  font-family: 'Arial', sans-serif;
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 20px;
}
.footer-links { list-style: none; }
.footer-links li { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 2.4; }
.footer-links li a:hover { color: var(--white); }
.footer-contact { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 2.4; }
.footer-contact a { color: var(--lime); }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-small { font-family: 'Arial', sans-serif; font-size: 11px; color: rgba(255,255,255,0.2); letter-spacing: 1px; }

/* ── PAGE HERO ── */
.page-hero {
  background: var(--navy);
  padding: 80px 60px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  right: 0; top: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(135deg, rgba(74,124,111,0.12), rgba(200,255,0,0.04));
  pointer-events: none;
}
.page-hero h1 { color: var(--white); max-width: 700px; }
.page-hero .lead { max-width: 560px; margin-top: 20px; }

/* ── CONSULTING PAGE ── */
.service-card {
  background: var(--white);
  border-top: 3px solid var(--sage);
  padding: 40px 36px;
}
.service-card.featured { border-top-color: var(--lime); background: var(--navy); }
.service-card.featured h3 { color: var(--white); }
.service-card.featured p { color: rgba(255,255,255,0.65); }
.service-card.featured .service-price { color: var(--lime); }
.service-card.featured li { color: rgba(255,255,255,0.65); }
.service-card.featured li::before { color: var(--lime); }
.service-number { font-family: 'Arial', sans-serif; font-size: 10px; letter-spacing: 3px; color: var(--sage); margin-bottom: 16px; }
.service-card.featured .service-number { color: rgba(255,255,255,0.4); }
.service-price { font-family: 'Arial', sans-serif; font-size: 22px; font-weight: 900; color: var(--navy); margin: 16px 0 20px; }
.service-list { list-style: none; margin-top: 16px; }
.service-list li { font-size: 14px; line-height: 2; color: var(--mid); padding-left: 20px; position: relative; }
.service-list li::before { content: '→'; position: absolute; left: 0; color: var(--sage); }

/* ── FORM ── */
.form-group { margin-bottom: 24px; }
label { display: block; font-family: 'Arial', sans-serif; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--navy); margin-bottom: 8px; }
input, textarea, select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(27,58,92,0.2);
  border-radius: 2px;
  font-family: 'Georgia', serif;
  font-size: 15px;
  color: var(--mid);
  background: var(--white);
  transition: border-color 0.2s;
  -webkit-appearance: none;
}
input:focus, textarea:focus, select:focus { outline: none; border-color: var(--sage); }
textarea { resize: vertical; min-height: 120px; }

/* ── MOBILE HAMBURGER ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
  z-index: 1001;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.25s ease;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

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

@media (max-width: 768px) {
  /* Nav */
  nav { padding: 0 20px; }
  .nav-hamburger { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    gap: 0;
    padding: 16px 0 24px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 14px 24px;
    font-size: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .nav-cta { margin: 8px 20px 0; border-radius: 2px; text-align: center; }

  /* Footer */
  footer { padding: 48px 20px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; padding-bottom: 40px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  /* Page hero */
  .page-hero { padding: 60px 20px 48px; min-height: auto; }

  /* Info strip */
  .info-strip { padding: 20px; gap: 16px; }

  /* Buttons */
  .btn { padding: 14px 28px; }

  /* Sections generic */
  section, .steps-section, .included-section, .pricing-section,
  .timeline-section, .services-section, .process-section, .ideal-section,
  .faq-section, .next-section { padding-left: 20px !important; padding-right: 20px !important; }
}
