
:root {
  --bg: #f7f1e7;
  --bg-alt: #efe5d7;
  --surface: #fffdf8;
  --text: #1d1712;
  --muted: #665a52;
  --line: rgba(30, 20, 15, 0.10);
  --brand: #7a4b27;
  --brand-dark: #3a2414;
  --green: #132a1e;
  --green-soft: #203b2d;
  --gold: #d4a86a;
  --white: #ffffff;
  --shadow: 0 20px 50px rgba(20, 14, 10, 0.12);
  --shadow-soft: 0 12px 32px rgba(20, 14, 10, 0.08);
  --radius: 24px;
  --radius-sm: 16px;
  --container: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; color: var(--muted); }
h1,h2,h3,h4 { margin: 0 0 .8rem; line-height: 1.1; color: var(--text); }
h1,h2 { font-family: Georgia, 'Times New Roman', serif; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.6rem, 4vw, 5rem); }
h2 { font-size: clamp(2rem, 3vw, 3.2rem); }
h3 { font-size: 1.25rem; }
.container { width: min(calc(100% - 40px), var(--container)); margin: 0 auto; }
.section { padding: 88px 0; }
.muted { background: linear-gradient(180deg, rgba(239,229,215,0.72), rgba(247,241,231,0.96)); }
.dark-bg { background: linear-gradient(120deg, var(--green), #1e2d24); color: var(--white); }
.dark-bg h1, .dark-bg p, .dark-bg .section-kicker { color: var(--white); }
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247,241,231,0.88);
  border-bottom: 1px solid rgba(29,23,18,0.05);
  backdrop-filter: blur(14px);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; min-height: 86px; gap: 20px; }
.brand img { width: 280px; max-width: 100%; }
.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a { color: var(--text); font-weight: 600; font-size: .98rem; }
.main-nav a:hover { color: var(--brand); }
.nav-cta { padding: 12px 18px; background: var(--green); color: var(--white) !important; border-radius: 999px; box-shadow: var(--shadow-soft); }
.nav-toggle { display: none; background: transparent; border: 0; width: 48px; height: 48px; padding: 0; }
.nav-toggle span { display:block; width:22px; height:2px; background: var(--text); margin:5px auto; transition: .2s ease; }
.hero { position: relative; min-height: 84vh; display: grid; align-items: center; overflow: hidden; }
.hero-bg, .hero-overlay { position:absolute; inset:0; }
.hero-bg { background-size: cover; background-position: center; transform: scale(1.04); }
.hero-overlay { background: linear-gradient(90deg, rgba(16,13,11,0.80) 0%, rgba(16,13,11,0.58) 40%, rgba(16,13,11,0.25) 100%); }
.hero-content { position: relative; z-index: 1; color: var(--white); padding: 90px 0; }
.hero-content h1, .hero-content p, .hero .eyebrow { color: var(--white); }
.hero .lead { max-width: 760px; font-size: 1.12rem; }
.eyebrow, .section-kicker { display:inline-block; text-transform: uppercase; letter-spacing: 0.18em; font-size: .8rem; font-weight: 700; margin-bottom: 1rem; color: var(--brand); }
.hero-actions, .cta-inner { display:flex; flex-wrap:wrap; gap:14px; align-items:center; }
.hero-stats { display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; margin-top: 34px; max-width: 760px; }
.hero-stats div { background: rgba(255,255,255,0.10); border: 1px solid rgba(255,255,255,0.12); border-radius: 18px; padding: 18px 18px 16px; }
.hero-stats strong { display:block; font-size: 1.35rem; color: var(--white); margin-bottom: .2rem; }
.hero-stats span { color: rgba(255,255,255,.86); font-size: .96rem; }
.page-hero { padding: 96px 0 40px; }
.page-hero-sm { padding-bottom: 26px; }
.page-hero p { max-width: 820px; font-size: 1.06rem; }
.btn {
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding: 14px 22px; border-radius: 999px; font-weight: 700; transition: .22s ease;
  border: 1px solid transparent;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--brand); color: var(--white); box-shadow: var(--shadow-soft); }
.btn-secondary { background: rgba(255,255,255,0.10); color: var(--white); border-color: rgba(255,255,255,0.18); }
.btn-outline { border-color: rgba(122,75,39,0.18); background: var(--surface); color: var(--text); }
.btn-light { background: var(--white); color: var(--green); }
.text-link { color: var(--brand); font-weight: 700; }
.two-col { display:grid; grid-template-columns: 1.04fr .96fr; }
.align-center { align-items: center; }
.align-start { align-items: start; }
.gap-xl { gap: 56px; }
.image-card { background: var(--surface); border-radius: var(--radius); overflow:hidden; border: 1px solid var(--line); }
.image-card img { width:100%; height:100%; object-fit:cover; }
.image-caption { padding: 16px 20px; font-size: .95rem; color: var(--muted); }
.shadow-card { box-shadow: var(--shadow); }
.cards.three, .grid.three { display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 22px; }
.grid.two { display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 22px; }
.card, .panel, .mini-card, .feature-box, .impact-card, .contact-card, .contact-form, .product-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-soft);
}
.card, .panel, .feature-box, .impact-card { padding: 28px; }
.elevated { transition: .25s ease; }
.elevated:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card-icon {
  width: 44px; height:44px; display:inline-grid; place-items:center; border-radius: 12px;
  background: rgba(122,75,39,0.1); color: var(--brand); font-weight: 800; margin-bottom: 1rem;
}
.split-card { display:grid; grid-template-columns: 1.02fr .98fr; background: var(--surface); border: 1px solid var(--line); border-radius: 30px; overflow:hidden; box-shadow: var(--shadow); }
.split-image img { width:100%; height:100%; object-fit:cover; }
.split-content { padding: 48px; display:grid; align-content:center; }
.info-panels .panel { min-height: 100%; }
.clean-list { list-style: none; padding: 0; margin: 0; }
.clean-list li { position: relative; padding-left: 22px; margin: .65rem 0; color: var(--muted); }
.clean-list li::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); position: absolute; left: 0; top: .6rem; }
.check-list li::before { width: 10px; height: 10px; background: none; border-radius:0; border: 2px solid var(--brand); transform: rotate(45deg); border-left: 0; border-top: 0; top: .45rem; }
.section-head.between { display:flex; justify-content:space-between; align-items:end; gap: 16px; margin-bottom: 1.25rem; }
.gallery-grid { display:grid; grid-template-columns: 1.1fr 1fr 1fr; gap: 18px; margin-top: 16px; }
.gallery-grid img { height: 420px; width:100%; object-fit:cover; border-radius: 22px; box-shadow: var(--shadow); }
.timeline-grid { display:grid; grid-template-columns: repeat(5, minmax(0,1fr)); gap: 18px; margin-top: 1.3rem; }
.timeline-step { background: var(--surface); border: 1px solid var(--line); border-radius: 22px; padding: 24px; box-shadow: var(--shadow-soft); }
.timeline-step span {
  width: 38px; height: 38px; display:grid; place-items:center; border-radius: 50%;
  background: var(--green); color: var(--white); font-weight: 700; margin-bottom: 14px;
}
.mini-grid { display:grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap:18px; margin-top: 1.2rem; }
.mini-card { padding: 24px; }
.feature-boxes { margin-top: 8px; }
.product-card { overflow:hidden; }
.product-card img { height: 220px; width:100%; object-fit:cover; }
.product-card > div { padding: 22px; }
.stat-strip { display:grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 16px; margin-top: 1.4rem; }
.stat-strip div { padding: 18px; background: var(--surface); border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow-soft); }
.stat-strip strong { display:block; font-size: 1.1rem; }
.team-grid { display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 22px; }
.team-card { background: var(--surface); border: 1px solid var(--line); border-radius: 26px; padding: 22px; box-shadow: var(--shadow-soft); }
.team-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: 20px; margin-bottom: 18px; }
.team-card .role { color: var(--brand); font-weight: 700; font-size: .95rem; margin-bottom: .65rem; }
.contact-layout { display:grid; grid-template-columns: .85fr 1.15fr; gap: 24px; }
.contact-card, .contact-form { padding: 30px; }
.contact-note { margin-top: 1rem; background: rgba(122,75,39,.08); border: 1px dashed rgba(122,75,39,.2); padding: 14px 16px; border-radius: 16px; color: var(--muted); }
.contact-form label { display:block; font-weight: 600; color: var(--text); margin-bottom: 1rem; }
.contact-form input, .contact-form textarea {
  width:100%; margin-top: 8px; border-radius: 14px; border: 1px solid rgba(29,23,18,.10); padding: 14px 15px; font: inherit; background: #fff;
}
.form-row { display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px; }
.cta-band { padding: 72px 0; background: linear-gradient(135deg, var(--green), #1c3528); color: var(--white); }
.cta-band h2, .cta-band p, .cta-band .section-kicker { color: var(--white); }
.cta-inner { justify-content: space-between; }
.footer { background: #191410; color: rgba(255,255,255,0.82); padding-top: 56px; }
.footer-grid { display:grid; grid-template-columns: 1.2fr .7fr .7fr .8fr; gap: 24px; }
.footer-grid h4 { color: var(--white); margin-bottom: .9rem; }
.footer-grid a, .footer-grid p { color: rgba(255,255,255,0.72); display:block; margin: .45rem 0; }
.footer-logo { width: 220px; margin-bottom: 10px; filter: brightness(1.1); }
.footer-bottom { margin-top: 38px; padding: 18px 0 28px; border-top: 1px solid rgba(255,255,255,0.08); display:flex; justify-content:space-between; gap: 12px; font-size: .92rem; }
.home-page .site-header.scrolled { box-shadow: 0 10px 30px rgba(15,15,15,.06); }

@media (max-width: 1080px) {
  .cards.three, .grid.three, .team-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .timeline-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid img:first-child { grid-column: span 2; }
  .two-col, .split-card, .contact-layout, .footer-grid, .grid.two { grid-template-columns: 1fr; }
  .split-image { min-height: 320px; }
}
@media (max-width: 820px) {
  .main-nav {
    position: absolute; right: 20px; top: 78px; background: rgba(255,253,248,.98); border:1px solid var(--line); border-radius: 22px; padding: 18px;
    box-shadow: var(--shadow); display: none; flex-direction: column; align-items:flex-start; min-width: 220px;
  }
  .main-nav.open { display:flex; }
  .nav-toggle { display:block; }
  .brand img { width: 210px; }
  .hero { min-height: 76vh; }
  .hero-stats, .mini-grid, .stat-strip, .form-row { grid-template-columns: 1fr; }
  .cards.three, .grid.three, .gallery-grid, .team-grid { grid-template-columns: 1fr; }
  .timeline-grid { grid-template-columns: 1fr; }
  .gallery-grid img:first-child { grid-column: auto; }
  .section { padding: 72px 0; }
  .cta-inner, .footer-bottom, .section-head.between { flex-direction: column; align-items:flex-start; }
}
