:root {
  --primary: #2B5E2E;
  --primary-dark: #1E4322;
  --accent: #C45A1C;
  --accent-light: #E07A3A;
  --bg: #FAF7F2;
  --bg-alt: #F0EBE0;
  --text-dark: #1E1E1E;
  --text-muted: #5C5C5C;
  --text-light: #F8F6F0;
  --border: #D4CFC2;
  --white: #FFFFFF;
  --shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 4px 24px rgba(0, 0, 0, 0.12);
  --radius: 8px;
  --radius-lg: 12px;
  --transition: 0.25s ease;
  --max-width: 1200px;
  --breakpoint: 768px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background-color: var(--bg);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--accent);
}

img {
  max-width: 100%;
  display: block;
}

/* ── Navbar ─────────────────────────────────────────── */

.navbar {
  background-color: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.navbar .logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}

.navbar .logo:hover {
  color: var(--primary-dark);
}

.navbar .logo-icon {
  width: 36px;
  height: 36px;
  background-color: var(--primary);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
}

.navbar-links a {
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.938rem;
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}

.navbar-links a:hover,
.navbar-links a.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.navbar-links a.active {
  font-weight: 600;
}

.navbar .btn {
  margin-left: 0.5rem;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  flex-direction: column;
  gap: 5px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background-color: var(--text-dark);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ── Buttons ────────────────────────────────────────── */

.btn {
  display: inline-block;
  padding: 0.625rem 1.5rem;
  font-size: 0.938rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition);
  text-align: center;
  line-height: 1.4;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);
  box-shadow: var(--shadow);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow);
}

/* ── Hero ───────────────────────────────────────────── */

.hero {
  background-color: var(--primary-dark);
  color: var(--text-light);
  padding: 5rem 0 4.5rem;
  text-align: center;
}

.hero .hero-content {
  max-width: 720px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1rem;
  color: var(--white);
}

.hero .lead {
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(248, 246, 240, 0.85);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero .hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero .btn-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.hero .btn-outline:hover {
  background-color: var(--white);
  color: var(--primary);
  border-color: var(--white);
}

/* ── Section common ─────────────────────────────────── */

.section {
  padding: 4rem 0;
}

.section-alt {
  background-color: var(--bg-alt);
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-header h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.063rem;
  max-width: 560px;
  margin: 0 auto;
}

/* ── Value Props ────────────────────────────────────── */

.value-props {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.value-prop {
  text-align: center;
  padding: 1.75rem 1.25rem;
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition), transform var(--transition);
}

.value-prop:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.value-prop .prop-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  display: block;
}

.value-prop h3 {
  font-size: 1.063rem;
  font-weight: 600;
  margin-bottom: 0.375rem;
  color: var(--text-dark);
}

.value-prop p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ── Services Grid ──────────────────────────────────── */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition), transform var(--transition);
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.service-card .card-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(43, 94, 46, 0.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.service-card h3 {
  font-size: 1.063rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.service-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ── About Strip ────────────────────────────────────── */

.about-strip {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.about-strip .about-text {
  flex: 1;
  min-width: 280px;
}

.about-strip .about-text h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.about-strip .about-text p {
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 0.938rem;
}

.about-strip .about-visual {
  flex: 0 0 auto;
  width: 160px;
  height: 160px;
  background-color: var(--primary);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  box-shadow: var(--shadow-lg);
}

/* ── Credentials Strip ──────────────────────────────── */

.credentials-strip {
  background-color: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2rem 0;
}

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  text-align: center;
}

.credential-item {
  padding: 0.75rem;
}

.credential-item .cred-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.credential-item .cred-value {
  font-size: 0.938rem;
  font-weight: 600;
  color: var(--text-dark);
}

/* ── CTA Strip ──────────────────────────────────────── */

.cta-strip {
  background-color: var(--accent);
  color: var(--white);
  text-align: center;
  padding: 3.5rem 0;
}

.cta-strip h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.cta-strip p {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 1.5rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.cta-strip .cta-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-strip .btn-primary {
  background-color: var(--white);
  color: var(--accent);
  border-color: var(--white);
}

.cta-strip .btn-primary:hover {
  background-color: var(--bg);
  border-color: var(--bg);
}

.cta-strip .btn-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.cta-strip .btn-outline:hover {
  background-color: var(--white);
  color: var(--accent);
  border-color: var(--white);
}

/* ── Footer ─────────────────────────────────────────── */

.footer {
  background-color: #1A1A1A;
  color: rgba(248, 246, 240, 0.7);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.813rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer-col p,
.footer-col a {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(248, 246, 240, 0.65);
  display: block;
  margin-bottom: 0.375rem;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.25rem;
  text-align: center;
  font-size: 0.813rem;
  color: rgba(248, 246, 240, 0.45);
}

/* ── Page Hero (inner pages) ────────────────────────── */

.page-hero {
  background-color: var(--primary-dark);
  color: var(--text-light);
  padding: 3.5rem 0;
  text-align: center;
}

.page-hero h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.page-hero p {
  color: rgba(248, 246, 240, 0.75);
  font-size: 1rem;
}

/* ── Mobile ─────────────────────────────────────────── */

@media (max-width: 768px) {
  .navbar-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background-color: var(--white);
    flex-direction: column;
    padding: 1rem 1.25rem;
    border-bottom: 2px solid var(--border);
    box-shadow: var(--shadow-lg);
    gap: 1rem;
  }

  .navbar-links.open {
    display: flex;
  }

  .navbar-links a {
    font-size: 1rem;
    padding: 0.5rem 0;
  }

  .navbar .btn {
    margin-left: 0;
    margin-top: 0.5rem;
    width: 100%;
    text-align: center;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    padding: 3.5rem 0 3rem;
  }

  .hero h1 {
    font-size: 1.875rem;
  }

  .hero .lead {
    font-size: 1rem;
  }

  .section {
    padding: 2.5rem 0;
  }

  .section-header h2 {
    font-size: 1.375rem;
  }

  .about-strip {
    flex-direction: column;
    text-align: center;
  }

  .about-strip .about-visual {
    width: 120px;
    height: 120px;
    font-size: 3rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cta-strip .cta-ctas {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 1.5rem;
  }

  .value-props {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
}