:root {
  --forest: #22402C;
  --forest-light: #3E6B4F;
  --gold: #A9803F;
  --gold-light: #CBA35C;
  --cream: #F7F3EC;
  --cream-dark: #EDE6D8;
  --ink: #2A2A26;
  --white: #FFFFFF;
  --radius: 10px;
  --shadow: 0 10px 30px rgba(34, 64, 44, 0.12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--forest);
  margin: 0 0 0.5em;
  line-height: 1.2;
}

a { color: inherit; text-decoration: none; }

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

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 243, 236, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(34, 64, 44, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.logo-link img { height: 46px; }

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.3px;
  color: var(--forest);
  position: relative;
  padding: 4px 0;
}

.nav-links a.active,
.nav-links a:hover {
  color: var(--gold);
}

.nav-cta {
  background: var(--forest);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
}

.nav-cta:hover { background: var(--forest-light); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 26px;
  color: var(--forest);
  cursor: pointer;
}

/* Hero */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 78vh;
  background: linear-gradient(120deg, rgba(34,64,44,0.88), rgba(34,64,44,0.55)),
    url('https://images.unsplash.com/photo-1616486338812-3dadae4b4ace?auto=format&fit=crop&w=1600&q=80') center/cover;
  color: var(--white);
}

.hero .container { max-width: 720px; }

.hero .eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold-light);
  font-weight: 700;
  font-size: 13px;
}

.hero h1 {
  color: var(--white);
  font-size: 52px;
  margin-top: 14px;
}

.hero p {
  font-size: 18px;
  max-width: 540px;
  color: rgba(255,255,255,0.9);
}

.btn-row { display: flex; gap: 16px; margin-top: 28px; flex-wrap: wrap; }

.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

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

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.6);
}

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

/* Section generic */
.section { padding: 90px 0; }
.section-alt { background: var(--cream-dark); }
.section-forest { background: var(--forest); color: var(--white); }
.section-forest h2, .section-forest h3 { color: var(--white); }

.section-head { max-width: 640px; margin: 0 auto 50px; text-align: center; }
.section-head .eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  font-weight: 700;
  font-size: 13px;
}
.section-head h2 { font-size: 36px; }

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

.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease;
}
.card:hover { transform: translateY(-6px); }

.card img { height: 220px; width: 100%; object-fit: cover; }
.card-body { padding: 22px; }
.card-body h3 { font-size: 20px; margin-bottom: 8px; }
.card-body p { font-size: 14.5px; color: #55554e; margin: 0; }

.tag {
  display: inline-block;
  background: var(--cream-dark);
  color: var(--forest);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}

/* About / split layout */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.split img { border-radius: var(--radius); box-shadow: var(--shadow); }

.stat-row { display: flex; gap: 32px; margin-top: 30px; flex-wrap: wrap; }
.stat { max-width: 160px; }
.stat h3 { font-size: 30px; color: var(--gold); margin-bottom: 8px; }
.stat span { font-size: 12.5px; letter-spacing: 0.5px; text-transform: uppercase; color: #55554e; line-height: 1.4; display: block; }

/* Process steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.step {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 22px;
  box-shadow: var(--shadow);
  position: relative;
}
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
}

/* Testimonials */
.testimonial {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
}
.testimonial p { font-style: italic; font-size: 16px; }
.testimonial .who { margin-top: 16px; font-weight: 700; color: var(--forest); font-style: normal; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.contact-info-item { display: flex; gap: 16px; margin-bottom: 26px; }
.contact-info-item .icon {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--forest); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 18px;
}

form { display: grid; gap: 16px; }
label { font-weight: 600; font-size: 14px; margin-bottom: 4px; display: block; }
input, textarea, select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #d8d2c2;
  font-family: inherit;
  font-size: 14.5px;
  background: var(--white);
}
textarea { min-height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: 13px; color: #6b6b62; }

.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-top: 40px;
}
.map-frame iframe { width: 100%; height: 360px; border: 0; display: block; }

/* Footer */
.site-footer {
  background: var(--forest);
  color: rgba(255,255,255,0.85);
  padding: 60px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
}
.footer-grid h4 { color: var(--white); font-size: 15px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 18px; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 10px; font-size: 14.5px; }
.footer-grid a:hover { color: var(--gold-light); }
.footer-logo img { height: 40px; margin-bottom: 14px; filter: brightness(0) invert(1); }
.footer-bottom {
  margin-top: 50px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.15);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}
.socials { display: flex; gap: 14px; }
.socials a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
}
.socials a:hover { background: var(--gold); }

/* Page hero (interior pages) */
.page-hero {
  background: linear-gradient(120deg, rgba(34,64,44,0.9), rgba(34,64,44,0.75)),
    url('https://images.unsplash.com/photo-1524758631624-e2822e304c36?auto=format&fit=crop&w=1600&q=80') center/cover;
  color: var(--white);
  padding: 110px 0 70px;
  text-align: center;
}
.page-hero h1 { color: var(--white); font-size: 42px; }
.breadcrumb { font-size: 13px; letter-spacing: 1px; text-transform: uppercase; color: var(--gold-light); margin-bottom: 12px; }

/* Filters (products page) */
.filter-bar {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 46px;
}
.filter-btn {
  padding: 10px 20px;
  border-radius: 999px;
  border: 1.5px solid var(--forest);
  color: var(--forest);
  font-weight: 600;
  font-size: 14px;
  background: transparent;
  cursor: pointer;
}
.filter-btn.active, .filter-btn:hover {
  background: var(--forest);
  color: var(--white);
}

/* Utility */
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }

/* Responsive */
@media (max-width: 900px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 38px; }
}

@media (max-width: 640px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 20px 24px;
    gap: 18px;
    box-shadow: var(--shadow);
  }
  .nav-cta.open { display: inline-block; margin: 0 24px 20px; }
  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { min-height: 92vh; text-align: center; }
  .hero .container { margin: 0 auto; }
  .btn-row { justify-content: center; }
}
