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

:root {
  --primary: #2D5016;
  --primary-light: #3F7A20;
  --primary-dark: #1C2E0E;
  --accent: #D4A84B;
  --accent-light: #F0D68A;
  --accent-dark: #B8892E;
  --bg: #FDFCF8;
  --bg-alt: #F4F0E6;
  --text-dark: #1C1C1A;
  --text-light: #FDFCF8;
  --text-muted: #6B6B66;
  --border: #D6D2C8;
  --border-light: #E8E4DA;
  --nav-bg: #1C2E0E;
  --footer-bg: #1C2E0E;
  --shadow: 0 2px 12px rgba(28, 30, 26, 0.08);
  --shadow-lg: 0 8px 32px rgba(28, 30, 26, 0.12);
  --radius: 8px;
  --radius-lg: 12px;
  --max-width: 1140px;
  --font: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--text-dark);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a:hover {
  color: var(--primary-light);
}

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

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

/* ── Navigation ── */
.navbar {
  background: var(--nav-bg);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0 24px;
}

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

.navbar .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-light);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

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

.navbar .logo-icon {
  width: 36px;
  height: 36px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

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

.nav-links a {
  color: rgba(253, 252, 248, 0.85);
  padding: 8px 16px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  background: rgba(253, 252, 248, 0.1);
  color: var(--accent-light);
}

.nav-links .nav-cta {
  background: var(--accent);
  color: var(--primary-dark);
  padding: 8px 20px;
  border-radius: var(--radius);
  font-weight: 600;
}

.nav-links .nav-cta:hover {
  background: var(--accent-light);
  color: var(--primary-dark);
}

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

.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--text-light);
  border-radius: 2px;
  transition: transform 0.2s;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, transform 0.15s, box-shadow 0.25s;
  border: 2px solid transparent;
  text-decoration: none;
}

.btn:active {
  transform: scale(0.97);
}

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

.btn-primary:hover {
  background: var(--accent-light);
  color: var(--primary-dark);
  box-shadow: 0 4px 16px rgba(212, 168, 75, 0.35);
}

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

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

.btn-dark {
  background: var(--primary);
  color: var(--text-light);
  border-color: var(--primary);
}

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

/* ── Sections ── */
section {
  padding: 80px 0;
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.section-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 640px;
  line-height: 1.7;
}

.centered {
  text-align: center;
}

.centered .section-sub {
  margin: 0 auto;
}

/* ── Hero ── */
.hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
  color: var(--text-light);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 700px;
}

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

.hero p {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 36px;
  line-height: 1.7;
  max-width: 580px;
}

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

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(253, 252, 248, 0.15);
}

.stat-tile {
  text-align: center;
}

.stat-tile .num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  display: block;
}

.stat-tile .label {
  font-size: 0.85rem;
  opacity: 0.75;
  margin-top: 4px;
}

/* ── Page Hero ── */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: var(--text-light);
  padding: 80px 0 60px;
  text-align: center;
}

.page-hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.page-hero p {
  font-size: 1.1rem;
  opacity: 0.85;
  max-width: 560px;
  margin: 0 auto;
}

/* ── Value Props ── */
.value-props {
  background: var(--bg-alt);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.value-card {
  background: var(--bg);
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--border-light);
  transition: transform 0.25s, box-shadow 0.25s;
}

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

.value-card .icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.value-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

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

/* ── Services ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

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

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

.service-card .icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
  display: block;
}

.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

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

/* ── About Strip ── */
.about-strip {
  background: var(--bg-alt);
}

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

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

.about-strip p {
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.7;
}

.about-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-visual .ab-box {
  background: var(--primary);
  color: var(--text-light);
  padding: 24px;
  border-radius: var(--radius);
  text-align: center;
}

.about-visual .ab-box .ab-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent);
}

.about-visual .ab-box .ab-label {
  font-size: 0.8rem;
  opacity: 0.8;
  margin-top: 4px;
}

.about-visual .ab-box.accent {
  background: var(--accent);
  color: var(--primary-dark);
}

.about-visual .ab-box.accent .ab-num {
  color: var(--primary-dark);
}

/* ── Testimonials ── */
.testimonials {
  background: var(--bg);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.testimonial-card {
  background: var(--bg-alt);
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
}

.testimonial-card .stars {
  color: var(--accent);
  font-size: 1rem;
  margin-bottom: 12px;
}

.testimonial-card blockquote {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 16px;
}

.testimonial-card cite {
  font-style: normal;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-dark);
}

.testimonial-card cite span {
  display: block;
  font-weight: 400;
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-top: 2px;
}

/* ── Credentials Strip ── */
.credentials {
  background: var(--bg-alt);
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cred-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  text-align: center;
}

.cred-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

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

.cred-item .cred-value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
}

.cred-item .cred-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary);
  color: var(--text-light);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* ── CTA Strip ── */
.cta-strip {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: var(--text-light);
  text-align: center;
  padding: 64px 0;
}

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

.cta-strip p {
  opacity: 0.85;
  margin-bottom: 32px;
  font-size: 1.05rem;
}

/* ── Content ── */
.content-section {
  padding: 80px 0;
}

.content-section .container {
  max-width: 800px;
}

.content-section h2 {
  font-size: 1.6rem;
  margin: 40px 0 16px;
  color: var(--primary);
}

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

.content-section h3 {
  font-size: 1.2rem;
  margin: 28px 0 12px;
}

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

.content-section ul {
  margin: 0 0 16px 24px;
  color: var(--text-muted);
  line-height: 1.7;
}

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

/* ── About Page ── */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-top: 48px;
}

.about-text h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  margin-top: 32px;
  color: var(--text-dark);
}

.about-text h2:first-of-type {
  margin-top: 0;
}

.about-text p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.about-text ul {
  margin: 0 0 16px 24px;
  color: var(--text-muted);
  line-height: 1.7;
}

.about-text li {
  margin-bottom: 6px;
}

.about-sidebar {
  background: var(--bg-alt);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
}

.about-sidebar h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.about-sidebar ul {
  list-style: none;
  margin: 0;
}

.about-sidebar li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.95rem;
  color: var(--text-muted);
}

.about-sidebar li:last-child {
  border-bottom: none;
}

.about-sidebar li strong {
  color: var(--text-dark);
}

/* ── Contact Page ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 48px;
}

.contact-info h2 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.contact-info p {
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.7;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-row .ci {
  font-size: 1.3rem;
  width: 40px;
  flex-shrink: 0;
}

.contact-row .cd-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  font-weight: 600;
}

.contact-row .cd-value {
  font-weight: 500;
}

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

.contact-form-box h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.contact-form-box p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

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

/* ── Footer ── */
.footer {
  background: var(--footer-bg);
  color: rgba(253, 252, 248, 0.8);
  padding: 60px 0 0;
}

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

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

.footer-col p {
  font-size: 0.88rem;
  line-height: 1.7;
  opacity: 0.8;
}

.footer-col .footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 12px;
}

.footer-col .footer-logo .logo-icon {
  width: 32px;
  height: 32px;
  font-size: 0.95rem;
}

.footer-col .abn-line {
  font-size: 0.82rem;
  opacity: 0.7;
  margin-top: 8px;
}

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

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

.footer-col ul a {
  color: rgba(253, 252, 248, 0.7);
  font-size: 0.88rem;
  transition: color 0.2s;
}

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

.footer-bottom {
  padding: 24px 0;
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.65;
}

/* ── Mobile ── */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--nav-bg);
    flex-direction: column;
    padding: 16px 24px;
    gap: 4px;
    border-top: 1px solid rgba(253, 252, 248, 0.1);
  }

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

  .nav-links a {
    width: 100%;
    padding: 12px 16px;
  }

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

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

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

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 40px;
    padding-top: 28px;
  }

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

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

  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

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

  .section-title {
    font-size: 1.75rem;
  }

  .page-hero h1 {
    font-size: 1.8rem;
  }

  .stat-tile .num {
    font-size: 1.6rem;
  }

  section {
    padding: 56px 0;
  }

  .content-section {
    padding: 48px 0;
  }

  .about-visual {
    grid-template-columns: 1fr 1fr;
  }

  .cred-grid {
    gap: 24px;
  }
}
