
    :root {
      --primary: #B58C6A;
      --primary-dark: #9A7355;
      --primary-light: #D4B49A;
      --primary-lighter: #F5F0EC;
      --text-dark: #2C2C2C;
      --text-gray: #666666;
      --text-light: #999999;
      --white: #FFFFFF;
      --cream: #FEFCFA;
      --border: #E8E5E2;
      --shadow: 0 4px 20px rgba(181, 140, 106, 0.1);
      --shadow-hover: 0 8px 30px rgba(181, 140, 106, 0.15);
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }
    
    html { scroll-behavior: smooth; }
    
    body {
      font-family: 'Inter', sans-serif;
      line-height: 1.6;
      color: var(--text-dark);
      background: var(--white);
      overflow-x: hidden;
    }

    /* Typography */
    .heading-primary {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.5rem, 4vw, 4rem);
      font-weight: 600;
      line-height: 1.2;
      color: var(--text-dark);
      margin-bottom: 1.5rem;
    }

    .heading-secondary {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 3vw, 3rem);
      font-weight: 500;
      line-height: 1.3;
      color: var(--text-dark);
      margin-bottom: 1rem;
    }

    .text-primary { color: var(--primary); }
    
    /* Navigation */
    .nav {
      position: fixed;
      top: 0;
      width: 100%;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid var(--border);
      z-index: 1000;
      transition: all 0.3s ease;
    }

    .nav__inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 1rem 2rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      text-decoration: none;
      color: var(--text-dark);
      font-weight: 700;
      font-size: 1.5rem;
    }

    .brand__icon {
      width: 40px;
      height: 40px;
      background: linear-gradient(135deg, var(--primary), var(--primary-dark));
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-weight: bold;
    }

    .nav__links {
      display: flex;
      gap: 2rem;
      list-style: none;
    }

    .nav__links a {
      text-decoration: none;
      color: var(--text-gray);
      font-weight: 500;
      transition: color 0.3s ease;
      position: relative;
    }

    .nav__links a:hover {
      color: var(--primary);
    }

    .nav__links a::after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      bottom: -5px;
      left: 0;
      background: var(--primary);
      transition: width 0.3s ease;
    }

    .nav__links a:hover::after {
      width: 100%;
    }

    /* Hero Section */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      background: linear-gradient(135deg, var(--cream) 0%, var(--primary-lighter) 100%);
      position: relative;
      overflow: hidden;
    }

    .hero__content {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 2rem;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }

    .hero__text {
      z-index: 2;
    }

    .hero__subtitle {
      color: var(--primary);
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 2px;
      margin-bottom: 1rem;
      font-size: 0.9rem;
    }

    .hero__description {
      font-size: 1.2rem;
      color: var(--text-gray);
      margin-bottom: 2rem;
      line-height: 1.8;
    }

    .hero__cta {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .btn {
      padding: 1rem 2rem;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      transition: all 0.3s ease;
      border: 2px solid transparent;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
    }

    .btn--primary {
      background: var(--primary);
      color: white;
      box-shadow: var(--shadow);
    }

    .btn--primary:hover {
      background: var(--primary-dark);
      transform: translateY(-2px);
      box-shadow: var(--shadow-hover);
    }

    .btn--outline {
      border-color: var(--primary);
      color: var(--primary);
      background: transparent;
    }

    .btn--outline:hover {
      background: var(--primary);
      color: white;
    }

    .hero__visual {
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }

    .hero__image {
      width: 100%;
      max-width: 500px;
      height: 400px;
      border-radius: 20px;
      background: linear-gradient(135deg, var(--primary-light), var(--primary));
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 1.5rem;
      font-weight: 600;
      box-shadow: var(--shadow-hover);
      position: relative;
      overflow: hidden;
    }

    .hero__image::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.2)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.3)"/><circle cx="40" cy="70" r="1" fill="rgba(255,255,255,0.2)"/><circle cx="70" cy="80" r="2.5" fill="rgba(255,255,255,0.1)"/></svg>');
    }

    /* Section Styles */
    .section {
      padding: 5rem 0;
      max-width: 1200px;
      margin: 0 auto;
      padding-left: 2rem;
      padding-right: 2rem;
    }

    .section__header {
      text-align: center;
      margin-bottom: 4rem;
    }

    .section__subtitle {
      color: var(--primary);
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 2px;
      margin-bottom: 1rem;
      font-size: 0.9rem;
    }

    .section__description {
      font-size: 1.1rem;
      color: var(--text-gray);
      max-width: 600px;
      margin: 0 auto;
    }

    /* Cards */
    .cards-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      margin-top: 3rem;
    }

    .card {
      background: var(--white);
      border-radius: 16px;
      padding: 2rem;
      box-shadow: var(--shadow);
      transition: all 0.3s ease;
      border: 1px solid var(--border);
    }

    .card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-hover);
    }

    .card__icon {
      width: 60px;
      height: 60px;
      background: var(--primary-lighter);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.5rem;
      color: var(--primary);
      font-size: 1.5rem;
      font-weight: bold;
    }

    .card__title {
      font-size: 1.25rem;
      font-weight: 600;
      margin-bottom: 1rem;
      color: var(--text-dark);
    }

    .card__description {
      color: var(--text-gray);
      line-height: 1.7;
    }

    /* Stats Section */
    .stats {
      background: var(--primary-lighter);
      padding: 5rem 0;
      margin: 5rem 0;
    }

    .stats__grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 2rem;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 2rem;
    }

    .stat {
      text-align: center;
    }

    .stat__number {
      font-size: 3rem;
      font-weight: 700;
      color: var(--primary);
      margin-bottom: 0.5rem;
      font-family: 'Playfair Display', serif;
    }

    .stat__label {
      color: var(--text-gray);
      font-weight: 500;
    }

    
    /* Team Section */
    .team-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
    }

    .team-card {
      text-align: center;
      padding: 2rem;
      background: var(--white);
      border-radius: 16px;
      box-shadow: var(--shadow);
      transition: all 0.3s ease;
    }

    .team-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-hover);
    }

    .team-avatar {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      background: var(--primary-lighter);
      margin: 0 auto 1.5rem;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary);
      font-size: 1.5rem;
      font-weight: bold;
    }

    /* Mobile Styles */
    .nav__menu {
      display: none;
      flex-direction: column;
      cursor: pointer;
      padding: 0.5rem;
    }

    .nav__menu span {
      width: 25px;
      height: 2px;
      background: var(--text-dark);
      margin: 3px 0;
      transition: 0.3s;
    }

    @media (max-width: 768px) {
      .nav__links {
        display: none;
      }
      
      .nav__menu {
        display: flex;
      }

      .hero__content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
      }

      .heading-primary {
        font-size: 2.5rem;
      }

      .section {
        padding: 3rem 1rem;
      }

      .cards-grid,
      .product-grid,
      .team-grid {
        grid-template-columns: 1fr;
      }

      .stats__grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .product-tabs {
        gap: 0.5rem;
      }

      .tab {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
      }
    }

    /* Animations */
    .fade-in {
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.6s ease;
    }

    .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .floating {
      animation: float 3s ease-in-out infinite;
    }

    @keyframes float {
      0%, 100% { transform: translateY(0px); }
      50% { transform: translateY(-10px); }
    }
  
.features {
  padding: 80px 40px;
  background: #fff;
}

.feature-box {
  background: #fff;
  border-radius: 12px;
  padding: 20px 10px;
  margin: 10px 0;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.12);
}

.feature-icon {
  font-size: 30px;
  color: #c88e11; /* green theme */
  margin-bottom: 8px;
}

.feature-box p {
  font-size: 14px;
  font-weight: 600;
  color: #c88e11;
  margin: 0;
}

    /* ====== MOBILE FIX PACK (append at end) ====== */

/* 1) Global spacing + safe area under fixed nav */
@media (max-width: 768px) {
  html, body { overflow-x: hidden; }
  body { padding-top: 64px; } /* keeps hero from hiding under fixed .nav */
  .section { padding: 2.5rem 1rem; }
  .features { padding: 48px 16px; }
}

/* 2) Nav: show mobile menu when you add .nav--open via JS (optional) */
.nav--open .nav__links {
  display: flex !important;
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 1.25rem;
  z-index: 999;
}

/* 3) Hero: stack nicely, make media fluid (no fixed 400px height) */
@media (max-width: 992px) {
  .heading-primary { font-size: clamp(2rem, 6vw, 2.75rem); }
}
@media (max-width: 768px) {
  .hero { min-height: auto; padding: 2rem 0 3rem; }
  .hero__content { grid-template-columns: 1fr; gap: 1.5rem; text-align: center; }
  .hero__cta { justify-content: center; gap: 0.75rem; }
  .hero__image {
    width: min(85vw, 420px);
    max-width: 100%;
    height: auto;              /* was fixed 400px */
    aspect-ratio: 5 / 4;       /* keeps shape without forcing height */
    margin: 0 auto;
  }
}

/* 4) Timeline: horizontal scroll on small; grid 2×2 on very small */
.development-timeline {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 0.5rem;
  scroll-snap-type: x proximity;
}
.development-timeline .timeline-item {
  min-width: 160px;
  flex: 0 0 auto;
  scroll-snap-align: start;
  text-align: center;
}
@media (max-width: 480px) {
  .development-timeline {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2 columns, 2 rows */
    gap: 0.75rem;
    overflow: visible;
  }
  .development-timeline .timeline-item { min-width: 0; }
}

/* 5) Grids: allow cards to fit narrow screens */
@media (max-width: 768px) {
  .cards-grid,
  .team-grid {
    grid-template-columns: 1fr; /* single column */
    gap: 1.25rem;
  }
}
@media (max-width: 480px) {
  .cards-grid { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
}

/* 6) Stats: collapse to single column on very small screens */
@media (max-width: 640px) {
  .stats__grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .stat__number { font-size: clamp(2rem, 9vw, 2.5rem); }
}

/* 7) Feature cards: tighter spacing & legible text on mobile */
@media (max-width: 768px) {
  .feature-box { padding: 16px 12px; }
  .feature-icon { font-size: 26px; margin-bottom: 6px; }
  .feature-box p { font-size: 13.5px; }
}

/* 8) Typography trims so big headings don’t wrap awkwardly */
@media (max-width: 480px) {
  .heading-secondary { font-size: clamp(1.5rem, 6.5vw, 1.8rem); }
  .hero__description { font-size: 1rem; line-height: 1.7; }
}

/* 9) Utility: fix any odd wide images inside cards/sections */
img, svg, video, canvas { max-width: 100%; height: auto; }

/* 10) Optional: soften large box-shadows on tiny screens */
@media (max-width: 480px) {
  .card, .team-card, .hero__image { box-shadow: 0 2px 12px rgba(0,0,0,0.08); }
}
