:root {
  --primary: #1a3c34;
  --primary-light: #2a5a4e;
  --accent: #c8963e;
  --accent-hover: #b5832e;
  --bg: #f9f8f5;
  --bg-alt: #f0eeea;
  --bg-dark: #0f2a24;
  --text-dark: #1e1e1e;
  --text-mid: #4a4a4a;
  --text-light: #f5f4f1;
  --text-muted: #8a8a86;
  --border: #d6d3cd;
  --white: #ffffff;
  --shadow: 0 2px 12px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.10);
  --radius: 8px;
  --radius-lg: 16px;
  --font: 'Segoe UI', system-ui, -apple-system, sans-serif;
  --max-w: 1200px;
  --nav-h: 72px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text-dark);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
}

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

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  height: var(--nav-h);
  display: flex;
  align-items: center;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.navbar .logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.navbar .logo span { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 0.925rem;
  font-weight: 500;
  color: var(--text-mid);
  padding: 4px 0;
  position: relative;
  transition: color 0.2s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.25s;
}

.nav-links a:hover { color: var(--primary); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--primary); }
.nav-links a.active::after { width: 100%; }

.nav-cta {
  background: var(--primary);
  color: var(--white) !important;
  padding: 8px 20px !important;
  border-radius: var(--radius);
  font-weight: 600;
  transition: background 0.2s;
}

.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--primary-light) !important; color: var(--white) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  transition: 0.3s;
}

/* hero */
.hero {
  padding: 100px 0 80px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--bg-dark) 100%);
  color: var(--text-light);
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.hero h1 span { color: var(--accent); }

.hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-visual svg {
  width: 100%;
  max-width: 420px;
  height: auto;
}

/* stats */
.stats-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
}

.stats-bar .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.stat-item {
  text-align: center;
  padding: 16px;
}

.stat-item .number {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
}

.stat-item .label {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* sections */
.section {
  padding: 80px 0;
}

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

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 48px;
  max-width: 640px;
}

.section-dark .section-title { color: var(--white); }
.section-dark .section-subtitle { color: rgba(255,255,255,0.6); }

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

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

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

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}

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

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

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

/* services grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform 0.25s, box-shadow 0.25s;
}

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

.service-card .icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
  display: block;
  line-height: 1;
}

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* about strip */
.about-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-strip h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.about-strip p {
  color: var(--text-mid);
  margin-bottom: 12px;
}

.about-strip .strip-visual {
  display: flex;
  justify-content: center;
}

.about-strip .strip-visual svg {
  max-width: 380px;
  width: 100%;
}

/* credentials */
.credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 40px;
  padding: 24px 0;
  justify-content: center;
}

.credentials span {
  font-size: 0.9rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.credentials strong {
  color: var(--primary);
}

/* testimonials / quote */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  border: 1px solid var(--border);
}

.testimonial-card blockquote {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-mid);
  margin-bottom: 20px;
  line-height: 1.7;
  quotes: none;
}

.testimonial-card cite {
  font-style: normal;
  font-weight: 600;
  color: var(--primary);
}

/* cta strip */
.cta-strip {
  padding: 72px 0;
  text-align: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--bg-dark) 100%);
  color: var(--white);
}

.cta-strip h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.cta-strip p {
  color: rgba(255,255,255,0.75);
  margin-bottom: 28px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* page hero band */
.page-hero {
  padding: 64px 0 56px;
  background: var(--primary);
  color: var(--text-light);
}

.page-hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.page-hero p {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
}

/* content */
.content-area {
  padding: 64px 0;
}

.content-area h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin: 32px 0 12px;
}

.content-area h2:first-child { margin-top: 0; }

.content-area h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--primary);
  margin: 24px 0 8px;
}

.content-area p {
  color: var(--text-mid);
  margin-bottom: 16px;
  line-height: 1.7;
}

.content-area ul, .content-area ol {
  margin: 0 0 16px 24px;
  color: var(--text-mid);
}

.content-area li { margin-bottom: 6px; }

.content-area strong { color: var(--text-dark); }

/* contact grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-info h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.contact-info p {
  color: var(--text-mid);
  margin-bottom: 20px;
}

.contact-detail {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
}

.contact-detail .icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-detail .detail-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.contact-detail .detail-value {
  font-weight: 500;
  color: var(--text-dark);
}

.contact-form-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.contact-form-box p {
  color: var(--text-mid);
  margin-bottom: 20px;
}

.contact-form-box .btn {
  width: 100%;
  justify-content: center;
}

/* footer */
.footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.7);
  padding: 56px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-col h4 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-col p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 8px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li { margin-bottom: 8px; }

.footer-col ul a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: color 0.2s;
}

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

.footer .abn {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  margin-top: 4px;
}

.footer-bottom {
  padding: 20px 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

/* mobile nav */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    width: 100%;
    background: var(--white);
    flex-direction: column;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    gap: 16px;
  }

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

  .hamburger { display: flex; }

  .hero {
    padding: 60px 0 48px;
  }

  .hero .container {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .hero p { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero h1 { font-size: 2rem; }
  .hero-visual { display: none; }

  .stats-bar .container {
    grid-template-columns: 1fr;
    gap: 8px;
  }

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

  .about-strip {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .about-strip .strip-visual { display: none; }

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

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

  .page-hero h1 { font-size: 1.8rem; }
  .section-title { font-size: 1.6rem; }
  .section { padding: 48px 0; }

  .credentials {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
}
