  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --olive: #4a5e2f;
    --olive-light: #7a9a45;
    --olive-pale: #e8efd8;
    --gold: #c9a84c;
    --gold-light: #f0d080;
    --gold-pale: #faf3e0;
    --cream: #faf8f2;
    --dark: #1a1a14;
    --mid: #4a4a3a;
    --muted: #8a8a74;
    --border: rgba(74,94,47,0.15);
    --white: #ffffff;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    color: var(--dark);
    background: var(--cream);
    line-height: 1.7;
    font-size: 16px;
  }

  h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    line-height: 1.2;
  }

  /* ===== NAVBAR ===== */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 999;
    background: rgba(250,248,242,0.97);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
    padding: 0 40px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
  }

  .nav-logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--olive);
    letter-spacing: 0.04em;
  }

  .nav-logo-dot { color: var(--gold); }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
  }

  .nav-links a {
    text-decoration: none;
    color: var(--mid);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.03em;
    transition: color 0.2s;
  }

  .nav-links a:hover { color: var(--olive); }
  .nav-links a.active { 
    color: var(--olive);
    position: relative;
    font-weight: 500;
  }
  .nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gold);
  }

  .nav-cta {
    background: var(--olive);
    color: var(--white) !important;
    padding: 10px 22px;
    border-radius: 4px;
    font-weight: 400 !important;
    transition: background 0.2s !important;
  }

  .nav-cta:hover { background: var(--olive-light) !important; color: var(--white) !important; }
  
  /* Active Link */
  .nav-links a.active { 
    color: var(--olive);
    position: relative;
    font-weight: 500;
  }
  .nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gold);
  }

  /* Mobile Menu Button */
  .mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: var(--olive);
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
  }

  .mobile-menu-btn svg {
    display: block;
  }

  /* ===== HERO ===== */
  .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f0e8 0%, #edf0e0 50%, #f0ede0 100%);
    padding: 120px 40px 80px;
  }

  .hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(74,94,47,0.06) 0%, transparent 50%),
                      radial-gradient(circle at 80% 20%, rgba(201,168,76,0.08) 0%, transparent 40%),
                      radial-gradient(circle at 60% 80%, rgba(74,94,47,0.04) 0%, transparent 40%);
    pointer-events: none;
  }

  .hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
  }

  .hero-tag {
    display: inline-block;
    background: var(--gold-pale);
    border: 1px solid rgba(201,168,76,0.3);
    color: var(--gold);
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 2px;
    margin-bottom: 24px;
  }

  .hero h1 {
    font-size: clamp(40px, 5vw, 68px);
    color: var(--dark);
    margin-bottom: 12px;
  }

  .hero h1 em {
    font-style: italic;
    color: var(--olive);
  }

  .hero-sub {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    color: var(--muted);
    font-weight: 300;
    font-style: italic;
    margin-bottom: 20px;
  }

  .hero p {
    font-size: 16px;
    color: var(--mid);
    max-width: 500px;
    margin-bottom: 36px;
    line-height: 1.8;
  }

  .hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
  }

  .btn-primary {
    background: var(--olive);
    color: var(--white);
    padding: 14px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.02em;
    transition: background 0.2s, transform 0.15s;
    display: inline-block;
  }

  .btn-primary:hover { background: var(--olive-light); transform: translateY(-1px); }

  .btn-secondary {
    background: transparent;
    color: var(--olive);
    padding: 14px 30px;
    border: 1px solid var(--olive);
    border-radius: 4px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.02em;
    transition: all 0.2s;
    display: inline-block;
  }

  .btn-secondary:hover { background: var(--olive-pale); }

  .hero-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .hero-card {
    background: rgba(255,255,255,0.75);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 28px 24px;
    text-align: center;
    backdrop-filter: blur(4px);
    transition: transform 0.2s, box-shadow 0.2s;
  }

  .hero-card:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(74,94,47,0.1); }

  .hero-card:first-child { grid-column: span 2; }

  .hero-card-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 14px;
    background: var(--olive-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-card-icon svg { width: 24px; height: 24px; fill: none; stroke: var(--olive); stroke-width: 1.5; }

  .hero-card h3 {
    font-size: 18px;
    color: var(--dark);
    margin-bottom: 6px;
  }

  .hero-card p {
    font-size: 13px;
    color: var(--muted);
    margin: 0;
    line-height: 1.6;
  }

  /* ===== STATS BAR ===== */
  .stats-bar {
    background: var(--olive);
    padding: 28px 40px;
  }

  .stats-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
  }

  .stat-item {
    color: rgba(255,255,255,0.9);
    border-right: 1px solid rgba(255,255,255,0.2);
    padding: 0 20px;
  }

  .stat-item:last-child { border-right: none; }

  .stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 300;
    color: var(--gold-light);
    display: block;
  }

  .stat-label {
    font-size: 13px;
    letter-spacing: 0.05em;
    opacity: 0.85;
  }

  /* ===== SECTION BASE ===== */
  section { padding: 100px 40px; }

  .section-inner { max-width: 1200px; margin: 0 auto; }

  .section-tag {
    display: inline-block;
    color: var(--gold);
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 12px;
    font-weight: 500;
  }

  .section-heading {
    font-size: clamp(30px, 4vw, 48px);
    color: var(--dark);
    margin-bottom: 16px;
  }

  .section-sub {
    font-size: 17px;
    color: var(--muted);
    max-width: 580px;
    margin-bottom: 56px;
    line-height: 1.8;
  }

  /* ===== ABOUT ===== */
  .about { background: var(--white); }

  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }

  .about-text p {
    color: var(--mid);
    margin-bottom: 18px;
    font-size: 16px;
    line-height: 1.9;
  }

  .about-text p strong {
    color: var(--olive);
    font-weight: 500;
  }

  .about-highlights {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
  }

  .highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
  }

  .highlight-dot {
    width: 8px;
    height: 8px;
    min-width: 8px;
    border-radius: 50%;
    background: var(--gold);
    margin-top: 8px;
  }

  .highlight-item p {
    font-size: 15px;
    color: var(--mid);
    margin: 0;
  }

  .about-certs {
    background: var(--gold-pale);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 8px;
    padding: 36px;
    margin-top: 40px;
  }

  .about-certs h4 {
    font-size: 14px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
  }

  .cert-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .cert-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--mid);
  }

  .cert-badge {
    background: var(--gold);
    color: var(--white);
    font-size: 10px;
    letter-spacing: 0.05em;
    padding: 3px 8px;
    border-radius: 2px;
    font-weight: 500;
    white-space: nowrap;
  }

  /* ===== BRANDS ===== */
  .brands { background: var(--cream); }

  .brands-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .brand-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
  }

  .brand-header {
    padding: 40px 40px 32px;
    border-bottom: 1px solid var(--border);
  }

  .brand-pill {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 2px;
    margin-bottom: 16px;
    font-weight: 500;
  }

  .pill-olive { background: var(--olive-pale); color: var(--olive); }
  .pill-gold { background: var(--gold-pale); color: #a07a20; }

  .brand-header h3 {
    font-size: 32px;
    margin-bottom: 10px;
  }

  .brand-header p {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.7;
  }

  .brand-body { padding: 32px 40px 40px; }

  .brand-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 28px;
  }

  .brand-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: var(--mid);
  }

  .feature-check {
    width: 20px;
    height: 20px;
    min-width: 20px;
    background: var(--olive-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
  }

  .feature-check svg { width: 10px; height: 10px; stroke: var(--olive); stroke-width: 2.5; fill: none; }

  /* ===== PRODUCTS ===== */
  .products { background: var(--white); }

  .products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .product-card {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
  }

  .product-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(74,94,47,0.1); }

  .product-img {
    height: 220px;
    position: relative;
    overflow: hidden;
  }

  .product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
  }

  .product-card:hover .product-img img { transform: scale(1.05); }

  .product-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(26,26,20,0.45) 100%);
  }

  .product-brand-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 2px;
    font-weight: 500;
    z-index: 2;
  }

  /* ===== GALLERY ===== */
  .gallery { background: var(--dark); padding: 100px 40px; }
  .gallery .section-tag { color: var(--gold); }
  .gallery .section-heading { color: var(--white); }
  .gallery .section-sub { color: rgba(255,255,255,0.55); }

  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 260px 260px;
    gap: 12px;
  }

  .gallery-item {
    overflow: hidden;
    border-radius: 8px;
    position: relative;
    cursor: pointer;
  }

  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
    filter: brightness(0.88);
  }

  .gallery-item:hover img { transform: scale(1.07); filter: brightness(1); }

  .gallery-item.tall { grid-row: span 2; }
  .gallery-item.wide { grid-column: span 2; }

  .gallery-caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 20px 18px 16px;
    background: linear-gradient(to top, rgba(26,26,20,0.85) 0%, transparent 100%);
    color: var(--white);
    opacity: 0;
    transition: opacity 0.3s;
  }

  .gallery-item:hover .gallery-caption { opacity: 1; }

  .gallery-caption span {
    font-size: 13px;
    letter-spacing: 0.05em;
    display: block;
  }

  .gallery-caption strong {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    display: block;
    margin-bottom: 3px;
  }

  .product-body { padding: 22px; }

  .product-body h4 {
    font-size: 20px;
    margin-bottom: 6px;
    color: var(--dark);
  }

  .product-body p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 16px;
  }

  .product-tag {
    display: inline-block;
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 2px;
    letter-spacing: 0.05em;
  }

  /* ===== USP ===== */
  .usp { background: var(--dark); color: var(--white); }

  .usp .section-heading { color: var(--white); }
  .usp .section-sub { color: rgba(255,255,255,0.6); }
  .usp .section-tag { color: var(--gold); }

  .usp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }

  .usp-item {
    border-top: 2px solid;
    padding-top: 24px;
  }

  .usp-item:nth-child(odd) { border-color: var(--olive-light); }
  .usp-item:nth-child(even) { border-color: var(--gold); }

  .usp-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 44px;
    font-weight: 300;
    color: rgba(255,255,255,0.15);
    line-height: 1;
    margin-bottom: 12px;
  }

  .usp-item h4 {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 10px;
  }

  .usp-item p {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
  }

  /* ===== AWARDS ===== */
  .awards { background: var(--olive-pale); }

  .awards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .award-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 32px;
    position: relative;
    overflow: hidden;
  }

  .award-medal {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 300;
    color: var(--gold-light);
    line-height: 1;
    margin-bottom: 16px;
    opacity: 0.7;
  }

  .award-card h4 {
    font-size: 20px;
    color: var(--dark);
    margin-bottom: 8px;
  }

  .award-card p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
  }

  /* ===== OPERATIONS ===== */
  .operations { background: var(--white); }

  .ops-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .ops-card {
    padding: 32px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--cream);
  }

  .ops-icon {
    width: 44px;
    height: 44px;
    background: var(--olive-pale);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
  }

  .ops-icon svg { width: 22px; height: 22px; stroke: var(--olive); stroke-width: 1.5; fill: none; }

  .ops-card h4 { font-size: 20px; margin-bottom: 8px; }

  .ops-card p { font-size: 14px; color: var(--muted); line-height: 1.7; }

  /* ===== CONTACT ===== */
  .contact { background: var(--cream); }

  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
  }

  .contact-info h3 {
    font-size: 32px;
    margin-bottom: 20px;
  }

  .contact-info p {
    font-size: 16px;
    color: var(--mid);
    margin-bottom: 32px;
    line-height: 1.8;
  }

  .contact-details { display: flex; flex-direction: column; gap: 16px; }

  .contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 14px;
  }

  .detail-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    background: var(--olive-pale);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .detail-icon svg { width: 16px; height: 16px; stroke: var(--olive); stroke-width: 1.5; fill: none; }

  .detail-label { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 2px; }

  .detail-val { font-size: 15px; color: var(--dark); }

  .contact-form { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 40px; }

  .contact-form h3 { font-size: 26px; margin-bottom: 24px; }

  .form-group { margin-bottom: 18px; }

  .form-group label { display: block; font-size: 13px; color: var(--muted); margin-bottom: 6px; letter-spacing: 0.03em; }

  .form-group input,
  .form-group textarea,
  .form-group select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    color: var(--dark);
    background: var(--cream);
    outline: none;
    transition: border-color 0.2s;
  }

  .form-group input:focus,
  .form-group textarea:focus,
  .form-group select:focus { border-color: var(--olive); }

  .form-group textarea { height: 100px; resize: vertical; }

  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

  .form-submit {
    width: 100%;
    padding: 14px;
    background: var(--olive);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    cursor: pointer;
    letter-spacing: 0.03em;
    transition: background 0.2s;
    margin-top: 6px;
  }

  .form-submit:hover { background: var(--olive-light); }

  /* ===== FOOTER ===== */
  footer {
    background: var(--dark);
    color: rgba(255,255,255,0.7);
    padding: 60px 40px 30px;
  }

  .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
  }

  .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .footer-brand p {
    font-size: 14px;
    line-height: 1.8;
    margin-top: 14px;
    max-width: 280px;
  }

  .footer-col h5 {
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
  }

  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }

  .footer-col ul li a {
    text-decoration: none;
    color: rgba(255,255,255,0.65);
    font-size: 14px;
    transition: color 0.2s;
  }

  .footer-col ul li a:hover { color: var(--gold-light); }

  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    opacity: 0.8;
    gap: 32px;
    flex-wrap: wrap;
    line-height: 1.6;
  }

  .footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    color: var(--white);
    letter-spacing: 0.04em;
  }

  /* ===== DIVIDER ===== */
  .divider {
    width: 60px;
    height: 2px;
    background: var(--gold);
    margin: 20px 0;
  }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 900px) {
    .hero-inner, .about-grid, .brands-grid, .contact-grid { grid-template-columns: 1fr; }
    .hero-inner { gap: 40px; }
    .products-grid, .usp-grid, .awards-grid, .ops-grid { grid-template-columns: 1fr 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    nav { padding: 0 20px; }
    .nav-links { 
      display: none; 
      position: fixed;
      top: 70px;
      left: 0;
      right: 0;
      background: var(--cream);
      flex-direction: column;
      padding: 40px;
      gap: 24px;
      border-bottom: 1px solid var(--border);
      box-shadow: 0 10px 30px rgba(0,0,0,0.05);
      z-index: 1000;
      text-align: center;
      align-items: center;
    }
    
    .nav-links a.active::after { display: none; }
    .nav-links a.active { border-bottom: none; }
    .nav-cta { width: 100%; text-align: center; }
    
    .nav-links.active {
      display: flex;
    }

    .mobile-menu-btn {
      display: block;
    }
    section { padding: 70px 24px; }
    .stats-inner { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
    .gallery-item.tall { grid-row: span 1; }
    .gallery-item.wide { grid-column: span 2; }
  }

  @media (max-width: 600px) {
    .products-grid, .usp-grid, .awards-grid, .ops-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .hero-visual { grid-template-columns: 1fr; }
    .hero-card:first-child { grid-column: span 1; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item.wide, .gallery-item.tall { grid-column: span 1; grid-row: span 1; }
    .gallery-item { height: 200px; }
  }

  /* Back to Top Button */
  .back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    background: #ff7b00;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 99;
  }

  .back-to-top.visible {
    opacity: 1;
    visibility: visible;
  }

  .back-to-top:hover {
    background: var(--olive-light);
    transform: translateY(-3px);
  }
