﻿:root {
    --gold: #C9A84C;
    --gold-light: #E8C97A;
    --dark: #0D1A0F;
    --dark2: #162519;
    --green: #1B5E2A;
    --green-mid: #2E7D44;
    --green-light: #4CAF6A;
    --cream: #F5EDD6;
    --cream2: #FAF5E9;
    --white: #FFFFFF;
    --text-muted: #8A9A8C;
    --border: rgba(201,168,76,0.25);
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream2);
    color: var(--dark);
    overflow-x: hidden;
  }

  /* ===== NAV ===== */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(13,26,15,0.97);
    backdrop-filter: blur(12px);
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 5%;
    height: 72px;
    border-bottom: 1px solid var(--border);
  }
  .nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.45rem; font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.04em;
    text-decoration: none;
  }
  .nav-logo span { color: var(--cream); }
  .nav-links { display: flex; gap: 2rem; list-style: none; }
  .nav-links a {
    color: rgba(245,237,214,0.75);
    text-decoration: none;
    font-size: 0.875rem; font-weight: 500;
    letter-spacing: 0.05em; text-transform: uppercase;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--gold); }
  .nav-cta {
    background: var(--gold);
    color: var(--dark);
    padding: 0.55rem 1.4rem;
    border-radius: 4px;
    font-weight: 600; font-size: 0.85rem;
    text-decoration: none; letter-spacing: 0.04em;
    transition: background 0.2s;
  }
  .nav-cta:hover { background: var(--gold-light); }

  /* ===== HERO ===== */
  .hero {
    min-height: 100vh;
    background: var(--dark);
    display: flex; align-items: center;
    position: relative; overflow: hidden;
    padding-top: 72px;
  }
  .hero-bg {
    position: absolute; inset: 0;
    background-image:
      linear-gradient(160deg, rgba(13,26,15,0.82) 0%, rgba(22,37,25,0.72) 50%, rgba(10,21,9,0.88) 100%),
      radial-gradient(ellipse 60% 80% at 70% 50%, rgba(27,94,42,0.4) 0%, transparent 70%),
      radial-gradient(ellipse 40% 60% at 20% 80%, rgba(201,168,76,0.12) 0%, transparent 60%),
      url('../images/banner.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .hero-grain {
    position: absolute; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
    opacity: 0.6;
  }
  .hero-content {
    position: relative; z-index: 2;
    padding: 0 5%;
    max-width: 700px;
  }
  .hero-tag {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: rgba(201,168,76,0.12);
    border: 1px solid var(--border);
    color: var(--gold);
    font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600;
    padding: 0.4rem 1rem; border-radius: 50px;
    margin-bottom: 2rem;
    animation: fadeUp 0.8s ease both;
  }
  .hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 900; line-height: 1.05;
    color: var(--cream);
    margin-bottom: 1.5rem;
    animation: fadeUp 0.8s 0.1s ease both;
  }
  .hero h1 em { color: var(--gold); font-style: italic; }
  .hero p {
    font-size: 1.1rem; line-height: 1.75;
    color: rgba(245,237,214,0.7);
    max-width: 560px;
    margin-bottom: 2.5rem;
    animation: fadeUp 0.8s 0.2s ease both;
  }
  .hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; animation: fadeUp 0.8s 0.3s ease both; }
  .btn-primary {
    background: var(--gold); color: var(--dark);
    padding: 0.9rem 2rem; border-radius: 6px;
    font-weight: 700; font-size: 0.95rem; letter-spacing: 0.04em;
    text-decoration: none; transition: all 0.2s;
    border: 2px solid var(--gold);
  }
  .btn-primary:hover { background: transparent; color: var(--gold); }
  .btn-outline {
    background: transparent; color: var(--cream);
    padding: 0.9rem 2rem; border-radius: 6px;
    font-weight: 600; font-size: 0.95rem;
    text-decoration: none; border: 2px solid rgba(245,237,214,0.3);
    transition: all 0.2s;
  }
  .btn-outline:hover { border-color: var(--gold); color: var(--gold); }
  .hero-stats {
    position: absolute; right: 5%; bottom: 10%;
    display: flex; flex-direction: column; gap: 1.5rem;
    z-index: 2;
    animation: fadeUp 0.8s 0.4s ease both;
  }
  .stat-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.2rem 1.8rem;
    text-align: center;
    backdrop-filter: blur(6px);
  }
  .stat-card .num {
    font-family: 'Playfair Display', serif;
    font-size: 2rem; font-weight: 700;
    color: var(--gold);
  }
  .stat-card .lbl { font-size: 0.75rem; color: var(--text-muted); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 0.2rem; }

  /* ===== SECTION SHARED ===== */
  section { padding: 6rem 5%; }
  .section-tag {
    display: inline-block;
    font-size: 0.75rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--green-mid);
    border-left: 3px solid var(--gold);
    padding-left: 0.75rem;
    margin-bottom: 1rem;
  }
  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800; line-height: 1.15;
    color: var(--dark);
    margin-bottom: 1rem;
  }
  .section-title.light { color: var(--cream); }
  .section-sub {
    font-size: 1.05rem; color: #5A6B5C; line-height: 1.7; max-width: 580px;
  }
  .section-sub.light { color: rgba(245,237,214,0.65); }

  /* ===== ABOUT / MISSION VISION ===== */
  .about-section {
    background: var(--dark2);
    position: relative; overflow: hidden;
  }
  .about-section::before {
    content: '';
    position: absolute; top: -100px; right: -100px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
    border-radius: 50%;
  }
  .about-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 5rem;
    align-items: center;
  }
  .about-text p {
    color: rgba(245,237,214,0.7); line-height: 1.85; margin-bottom: 1rem;
    font-size: 1.02rem;
  }
  .about-image {
    position: relative; border-radius: 16px; overflow: hidden;
  }
  .about-image img { width: 100%; height: 420px; object-fit: cover; display: block; }
  .about-image::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(201,168,76,0.15) 0%, transparent 60%);
    pointer-events: none;
  }
  .about-badge {
    position: absolute; bottom: 2rem; left: -1.5rem;
    background: var(--gold); color: var(--dark);
    padding: 1rem 1.5rem; border-radius: 10px;
    font-weight: 700;
  }
  .about-badge .big { font-family: 'Playfair Display', serif; font-size: 1.8rem; display: block; }

  /* Mission Vision */
  .mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 3rem; }
  .mv-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    border-radius: 16px; padding: 2.5rem;
    transition: all 0.3s;
    position: relative; overflow: hidden;
  }
  .mv-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--green-light));
  }
  .mv-card:hover { transform: translateY(-4px); background: rgba(255,255,255,0.07); }
  .mv-icon {
    width: 52px; height: 52px;
    background: rgba(201,168,76,0.12);
    border: 1px solid var(--border);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.2rem;
    font-size: 1.6rem;
  }
  .mv-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem; color: var(--gold);
    margin-bottom: 0.75rem;
  }
  .mv-card p { color: rgba(245,237,214,0.65); line-height: 1.8; font-size: 0.97rem; }

  /* ===== PRODUCTS ===== */
  .products-section { background: var(--cream2); }
  .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.75rem;
    margin-top: 3rem;
  }
  .product-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(13,26,15,0.06);
    transition: all 0.3s;
    border: 1px solid rgba(201,168,76,0.1);
  }
  .product-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(13,26,15,0.14); }
  .product-img {
    width: 100%; height: 220px; object-fit: cover;
    display: block; transition: transform 0.5s;
  }
  .product-card:hover .product-img { transform: scale(1.04); }
  .product-body { padding: 1.5rem; }
  .product-cat {
    font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600;
    color: var(--green-mid);
    margin-bottom: 0.4rem;
  }
  .product-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem; font-weight: 700;
    color: var(--dark); margin-bottom: 0.6rem;
  }
  .product-body p { font-size: 0.9rem; color: #6A7D6C; line-height: 1.65; }
  .product-footer {
    display: flex; align-items: center; justify-content: space-between;
    padding: 1rem 1.5rem;
    border-top: 1px solid rgba(201,168,76,0.15);
  }
  .moq { font-size: 0.8rem; color: var(--text-muted); }
  .moq strong { color: var(--green); }
  .product-btn {
    font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em;
    color: var(--green); background: rgba(27,94,42,0.08);
    padding: 0.4rem 1rem; border-radius: 20px;
    text-decoration: none; transition: all 0.2s;
  }
  .product-btn:hover { background: var(--green); color: white; }

  /* ===== WHY CHOOSE US ===== */
  .why-section {
    background: var(--dark);
    position: relative; overflow: hidden;
  }
  .why-section::before {
    content: '';
    position: absolute; inset: 0;
    background: 
      radial-gradient(ellipse 50% 70% at 80% 50%, rgba(27,94,42,0.3) 0%, transparent 70%);
  }
  .why-header { text-align: center; margin-bottom: 3.5rem; }
  .why-header .section-sub { margin: 0 auto; }
  .why-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
    position: relative; z-index: 1;
  }
  .why-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(201,168,76,0.15);
    border-radius: 16px; padding: 2rem;
    transition: all 0.3s;
  }
  .why-card:hover {
    background: rgba(201,168,76,0.06);
    border-color: rgba(201,168,76,0.4);
    transform: translateY(-4px);
  }
  .why-num {
    font-family: 'Playfair Display', serif;
    font-size: 3rem; font-weight: 900;
    color: rgba(201,168,76,0.15);
    line-height: 1; margin-bottom: 1rem;
  }
  .why-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem; color: var(--gold);
    margin-bottom: 0.6rem;
  }
  .why-card p { font-size: 0.9rem; color: rgba(245,237,214,0.6); line-height: 1.75; }

  /* ===== GALLERY ===== */
  .gallery-section { background: var(--cream2); }
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 240px) 240px;
    gap: 1rem;
    margin-top: 3rem;
  }
  .gallery-item {
    border-radius: 12px; overflow: hidden;
    position: relative;
    cursor: pointer;
    min-height: 200px;
  }
  .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
  .gallery-item:nth-child(4) { grid-column: span 2; }
  .gallery-item:nth-child(7) { grid-column: span 2; }
  .gallery-item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.5s;
    display: block;
  }
  .gallery-item:hover img { transform: scale(1.06); }
  .gallery-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(13,26,15,0.7) 0%, transparent 60%);
    opacity: 0; transition: opacity 0.3s;
    display: flex; align-items: flex-end; padding: 1.2rem;
  }
  .gallery-item:hover .gallery-overlay { opacity: 1; }
  .gallery-overlay span { color: var(--cream); font-size: 0.85rem; font-weight: 600; }

  /* ===== TESTIMONIALS ===== */
  .testimonial-section {
    background: linear-gradient(160deg, var(--dark2) 0%, var(--dark) 100%);
    position: relative; overflow: hidden;
  }
  .testimonial-section::after {
    content: '"';
    position: absolute; right: 5%; top: 3rem;
    font-family: 'Playfair Display', serif;
    font-size: 20rem; color: rgba(201,168,76,0.04);
    line-height: 1;
  }
  .testimonial-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
    margin-top: 3rem; position: relative; z-index: 1;
  }
  .testi-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    border-radius: 16px; padding: 2rem;
    transition: all 0.3s;
  }
  .testi-card:hover { transform: translateY(-5px); background: rgba(255,255,255,0.07); }
  .stars { color: var(--gold); font-size: 1rem; margin-bottom: 1rem; letter-spacing: 0.1em; }
  .testi-text { font-size: 0.95rem; color: rgba(245,237,214,0.7); line-height: 1.8; margin-bottom: 1.5rem; font-style: italic; }
  .testi-author { display: flex; align-items: center; gap: 0.8rem; }
  .testi-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: linear-gradient(135deg, var(--green), var(--gold));
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; color: white; font-size: 0.9rem;
    flex-shrink: 0;
  }
  .testi-name { font-weight: 600; font-size: 0.9rem; color: var(--cream); }
  .testi-loc { font-size: 0.78rem; color: var(--text-muted); }

  /* ===== CONTACT ===== */
  .contact-section { background: var(--cream2); }
  .contact-wrap {
    display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem;
    align-items: start;
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 60px rgba(13,26,15,0.1);
  }
  .contact-info {
    background: var(--dark);
    padding: 3.5rem;
    position: relative; overflow: hidden;
  }
  .contact-info::before {
    content: '';
    position: absolute; bottom: -80px; right: -80px;
    width: 250px; height: 250px;
    background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
    border-radius: 50%;
  }
  .contact-info .section-title { font-size: 1.8rem; color: var(--cream); margin-bottom: 0.5rem; }
  .contact-info .section-sub { margin-bottom: 2.5rem; font-size: 0.95rem; }
  .info-item {
    display: flex; align-items: flex-start; gap: 1rem;
    margin-bottom: 1.5rem;
  }
  .info-icon {
    width: 40px; height: 40px; flex-shrink: 0;
    background: rgba(201,168,76,0.12);
    border: 1px solid var(--border);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
  }
  .info-item h4 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); margin-bottom: 0.2rem; }
  .info-item p { font-size: 0.9rem; color: rgba(245,237,214,0.65); line-height: 1.5; }
  .contact-form { padding: 3.5rem; }
  .form-title { font-family: 'Playfair Display', serif; font-size: 1.7rem; color: var(--dark); margin-bottom: 0.4rem; }
  .form-sub { font-size: 0.9rem; color: #6A7D6C; margin-bottom: 2rem; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .form-group { margin-bottom: 1.2rem; }
  .form-group label { display: block; font-size: 0.8rem; font-weight: 600; color: #4A5D4C; margin-bottom: 0.4rem; letter-spacing: 0.05em; }
  .form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid rgba(27,94,42,0.15);
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    background: var(--cream2);
    color: var(--dark);
    transition: border-color 0.2s;
    outline: none;
  }
  .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--green-mid);
    background: white;
  }
  .form-group textarea { resize: vertical; min-height: 120px; }
  .submit-btn {
    width: 100%;
    background: var(--green);
    color: white;
    padding: 1rem;
    border: none; border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem; font-weight: 600; letter-spacing: 0.04em;
    cursor: pointer; transition: all 0.2s;
  }
  .submit-btn:hover { background: var(--green-mid); transform: translateY(-1px); }

  /* ===== FOOTER ===== */
  footer {
    background: var(--dark);
    padding: 4rem 5% 2rem;
    border-top: 1px solid var(--border);
  }
  .footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem; margin-bottom: 3rem;
  }
  .footer-brand .logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem; font-weight: 700;
    color: var(--gold); margin-bottom: 1rem; display: block;
  }
  .footer-brand p { font-size: 0.88rem; color: rgba(245,237,214,0.5); line-height: 1.75; }
  .footer-col h4 {
    font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.15em;
    color: var(--gold); margin-bottom: 1rem; font-weight: 600;
  }
  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 0.6rem; }
  .footer-col ul li a { font-size: 0.87rem; color: rgba(245,237,214,0.5); text-decoration: none; transition: color 0.2s; }
  .footer-col ul li a:hover { color: var(--gold); }
  .footer-bottom {
    border-top: 1px solid rgba(245,237,214,0.08);
    padding-top: 1.5rem;
    display: flex; justify-content: space-between; align-items: center;
  }
  .footer-bottom p { font-size: 0.82rem; color: rgba(245,237,214,0.35); }
  .footer-bottom span { color: var(--gold); }
  .footer-copyright a {
    text-decoration: none;
    color: var(--cream);
    transition: color 0.2s;
  }
  .footer-copyright a:hover { color: var(--gold); }
  .footer-copyright-logo img { display: block; height: auto; }

  /* ===== ANIMATIONS ===== */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 1024px) {
    .about-grid, .mv-grid, .why-grid, .footer-grid { grid-template-columns: 1fr 1fr; }
    .testimonial-grid { grid-template-columns: 1fr 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
    .gallery-item:nth-child(1) { grid-column: 1; grid-row: 1; }
    .gallery-item:nth-child(4) { grid-column: 1; }
    .gallery-item:nth-child(7) { grid-column: auto; }
    .nav-links { display: none; }
    .hero-stats { display: none; }
  }
  @media (max-width: 700px) {
    .about-grid, .mv-grid, .why-grid, .testimonial-grid, .footer-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
    .contact-wrap { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; align-items: flex-start; gap: 1rem; }
  }

  /* ===== UTILITIES (formerly inline styles) ===== */
  .section-tag--gold {
    color: var(--gold-light);
    border-color: var(--gold);
  }

  .contact-section .contact-wrap {
    margin-top: 2.5rem;
  }

  .contact-info__title {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--cream);
    margin-bottom: 0.4rem;
    line-height: 1.15;
  }

  .contact-info__intro {
    font-size: 0.9rem;
    color: rgba(245,237,214,0.65);
    line-height: 1.7;
    margin-bottom: 2rem;
  }
