 *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --green-deep: #1a3a2a; --green-mid: #2d6a4f; --green-light: #52b788;
      --cream: #f5f0e8; --warm-white: #fdfaf4;
      --amber: #c47c2b; --amber-light: #e6a44d;
      --text-dark: #1a2217; --text-mid: #3d5a47; --text-light: #7a9a85;
      --border: rgba(82,183,136,0.18);
    }
    html { scroll-behavior: smooth; }
    body { font-family: 'Jost', sans-serif; background: var(--warm-white); color: var(--text-dark); overflow-x: hidden; }

    /* NAV */
    nav { position: fixed; top: 0; left: 0; right: 0; z-index: 200; display: flex; align-items: center; justify-content: space-between; padding: 0 5vw; height: 72px; background: rgba(26,58,42,0); transition: background .4s, backdrop-filter .4s; }
    nav.scrolled { background: rgba(26,58,42,.97); backdrop-filter: blur(14px); border-bottom: 1px solid rgba(82,183,136,.2); }
    .nav-logo { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: #fff; letter-spacing: .03em; text-shadow: 0 2px 12px rgba(0,0,0,.3); flex-shrink: 0; }
    .nav-logo span { color: var(--amber-light); font-style: italic; }
    .nav-links { display: flex; gap: 2.2rem; list-style: none; }
    .nav-links a { text-decoration: none; font-size: .82rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.8); transition: color .25s; }
    .nav-links a:hover, .nav-links a.active { color: var(--amber-light); }
    
    .nav-actions { display: flex; align-items: center; gap: 1rem; }
    .nav-cart { background: var(--amber); color: #fff; font-size: .78rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; padding: .5rem 1.2rem; border-radius: 2px; cursor: pointer; border: none; transition: background .22s; white-space: nowrap; }
    .nav-cart:hover { background: var(--amber-light); }

    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; }
    .hamburger span { width: 25px; height: 2px; background: #fff; border-radius: 2px; transition: .3s; }

    /* RESPONSIVE NAV FOR MOBILE */
    @media(max-width: 1024px) {
      .nav-links { position: fixed; top: 0; right: -100%; width: 280px; height: 100vh; background: var(--green-deep); flex-direction: column; padding: 100px 40px; transition: .4s ease-in-out; box-shadow: -10px 0 30px rgba(0,0,0,0.2); }
      .nav-links.active { right: 0; }
      .nav-links li { margin-bottom: 1.5rem; }
      .nav-links a { font-size: 1rem; color: #fff; }
      .hamburger { display: flex; z-index: 201; }
      
      /* Hamburger Animation */
      .hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
      .hamburger.active span:nth-child(2) { opacity: 0; }
      .hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    }

    /* BUTTONS */
    .btn-primary, .btn-outline {
      display: inline-block;
      padding: 0.9rem 2rem;
      border-radius: 2px;
      font-size: .82rem;
      font-weight: 600;
      letter-spacing: .12em;
      text-transform: uppercase;
      text-decoration: none;
      transition: all .3s ease;
      cursor: pointer;
      text-align: center;
      border: none;
    }
    .btn-primary {
      background: var(--amber);
      color: #fff;
    }
    .btn-primary:hover {
      background: var(--amber-light);
      transform: translateY(-3px);
      box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    }
    .btn-outline {
      background: transparent;
      color: #fff;
      border: 1.5px solid rgba(255,255,255,0.6);
    }
    .btn-outline:hover {
      background: #fff;
      color: var(--green-deep);
      border-color: #fff;
      transform: translateY(-3px);
      box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    }

    /* VIDEO HERO */
    .video-hero { position: relative; width: 100%; height: 92vh; overflow: hidden; }
    .video-hero video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
    .hero-bg-img { position: absolute; inset: 0; z-index: 0; }
    .hero-bg-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .overlay { position: absolute; inset: 0; z-index: 2; background: linear-gradient(135deg,rgba(10,28,18,.72)0%,rgba(26,58,42,.5)50%,rgba(10,28,18,.35)100%); }
    .fade-bottom { position: absolute; bottom: 0; left: 0; right: 0; z-index: 3; height: 140px; background: linear-gradient(to bottom,transparent,var(--warm-white)); }
    .hero-content { position: relative; z-index: 4; height: 100%; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 0 8vw; max-width: 820px; }
    .hero-eyebrow { display: flex; align-items: center; gap: .7rem; font-size: .72rem; font-weight: 600; letter-spacing: .3em; text-transform: uppercase; color: var(--green-light); margin-bottom: 1.2rem; animation: fadeUp .8s .2s both; }
    .hero-eyebrow::before { content: ''; width: 32px; height: 1.5px; background: var(--green-light); display: inline-block; }
    .hero-title { font-family: 'Playfair Display', serif; font-size: clamp(2.8rem,6vw,5rem); color: #fff; line-height: 1.12; margin-bottom: 1.4rem; animation: fadeUp .8s .4s both; }
    .hero-title em { color: var(--amber-light); font-style: italic; }
    .hero-subtitle { font-size: 1rem; font-weight: 300; color: rgba(255,255,255,.7); line-height: 1.75; max-width: 480px; margin-bottom: 2.2rem; animation: fadeUp .8s .6s both; }
    .hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; animation: fadeUp .8s .8s both; }
    
    @media(max-width: 768px) {
      .hero-content { align-items: center; text-align: center; padding: 0 5vw; }
      .hero-subtitle { margin-inline: auto; }
      .hero-btns { justify-content: center; }
      .video-hero { height: 85vh; }
    }

    /* TRUST */
    .trust-strip { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; background: var(--green-deep); }
    .trust-item { display: flex; align-items: center; gap: .6rem; padding: 1.1rem 2.5rem; border-right: 1px solid rgba(255,255,255,.08); font-size: .82rem; font-weight: 500; color: rgba(245,240,232,.75); letter-spacing: .05em; }
    .trust-item:last-child { border-right: none; }

    @media(max-width: 900px) {
      .trust-item { border-right: none; padding: 1rem 1.5rem; width: 50%; justify-content: center; border-bottom: 1px solid rgba(255,255,255,.05); }
      .trust-item:last-child { border-bottom: none; width: 100%; }
    }
    @media(max-width: 480px) {
      .trust-item { width: 100%; }
    }

    /* COMMONS */
    .sec-label { font-size: .7rem; font-weight: 600; letter-spacing: .25em; text-transform: uppercase; color: var(--green-light); margin-bottom: .7rem; }
    .sec-title { font-family: 'Playfair Display', serif; font-size: clamp(1.7rem,3vw,2.5rem); color: var(--green-deep); }
    .sec-title em { font-style: italic; color: var(--amber); }
    .sec-div { width: 48px; height: 3px; background: linear-gradient(90deg,var(--amber),var(--green-light)); border-radius: 2px; margin: 1rem 0 1.5rem; }
    .sec-center { text-align: center; margin-bottom: 3rem; }

    /* INTRO */
    .intro-section { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; padding: 7rem 8vw; }
    .intro-body { font-size: .95rem; font-weight: 300; color: var(--text-mid); line-height: 1.85; margin-bottom: 1rem; }
    .intro-img-grid { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 210px 210px; gap: 12px; }
    .intro-tile { overflow: hidden; border-radius: 8px; }
    .intro-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; display: block; }
    .intro-tile:hover img { transform: scale(1.06); }
    .intro-tile.tall { grid-row: span 2; }

    @media(max-width: 900px) {
      .intro-section { grid-template-columns: 1fr; gap: 3rem; padding: 4rem 5vw; text-align: center; }
      .sec-div { margin-inline: auto; }
      .intro-img-grid { grid-template-rows: 180px 180px; }
    }

    /* PHOTO STRIP */
    .photo-strip { display: grid; grid-template-columns: repeat(5,1fr); height: 260px; }
    .ps-item { overflow: hidden; }
    .ps-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; display: block; }
    .ps-item:hover img { transform: scale(1.1); }

    @media(max-width: 900px) {
      .photo-strip { grid-template-columns: repeat(3,1fr); height: auto; }
      .ps-item { aspect-ratio: 1; }
    }
    @media(max-width: 600px) {
      .photo-strip { grid-template-columns: repeat(2,1fr); }
    }

    /* CATEGORIES */
    .categories { padding: 5rem 8vw 7rem; }
    .cat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.6rem; }
    .cat-card { position: relative; border-radius: 12px; overflow: hidden; height: 360px; cursor: pointer; transition: transform .35s,box-shadow .35s; text-decoration: none; display: block; }
    .cat-card:hover { transform: translateY(-8px); box-shadow: 0 24px 50px rgba(26,58,42,.2); }
    .cat-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; display: block; }
    .cat-card:hover img { transform: scale(1.06); }
    .cat-ov { position: absolute; inset: 0; background: linear-gradient(to top,rgba(10,28,18,.88)0%,rgba(10,28,18,.2)60%,transparent 100%); }
    .cat-arrow { position: absolute; top: 1.4rem; right: 1.4rem; width: 36px; height: 36px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,.3); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.7); font-size: 1rem; transition: background .25s,border-color .25s,color .25s; }
    .cat-card:hover .cat-arrow { background: var(--amber); border-color: var(--amber); color: #fff; }
    .cat-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.8rem; }
    .cat-label { font-size: .65rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--green-light); margin-bottom: .4rem; }
    .cat-name { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: #fff; line-height: 1.2; margin-bottom: .5rem; }
    .cat-count { font-size: .78rem; color: rgba(255,255,255,.55); }

    @media(max-width: 1024px) {
      .cat-grid { grid-template-columns: repeat(2,1fr); }
    }
    @media(max-width: 600px) {
      .cat-grid { grid-template-columns: 1fr; }
      .categories { padding: 4rem 5vw; }
    }

    /* PRODUCTS */
    .featured { padding: 0 8vw 7rem; }
    .products-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.4rem; margin-top: 2.5rem; }
    .pcard { background: #fff; border-radius: 10px; border: 1px solid var(--border); box-shadow: 0 2px 12px rgba(26,58,42,.05); overflow: hidden; transition: transform .3s,box-shadow .3s; }
    .pcard:hover { transform: translateY(-5px); box-shadow: 0 14px 36px rgba(26,58,42,.12); }
    .pcard-img { height: 180px; overflow: hidden; position: relative; }
    .pcard-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; display: block; }
    .pcard:hover .pcard-img img { transform: scale(1.08); }
    .pbadge { position: absolute; top: 8px; left: 8px; font-size: .62rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: .22rem .5rem; border-radius: 3px; color: #fff; }
    .pbadge-pop { background: var(--amber); }
    .pbadge-new { background: var(--green-mid); }
    .pcard-body { padding: .9rem 1rem 1.1rem; }
    .pcat { font-size: .65rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; color: var(--text-light); margin-bottom: .3rem; }
    .ptitle { font-family: 'Playfair Display', serif; font-size: .98rem; color: var(--text-dark); line-height: 1.3; margin-bottom: .5rem; }
    .pstars { font-size: .67rem; color: var(--amber); margin-bottom: .65rem; }
    .pfoot { display: flex; align-items: center; justify-content: space-between; }
    .pprice { font-size: 1rem; font-weight: 700; color: var(--green-deep); }
    .pprice-old { font-size: .73rem; text-decoration: line-through; color: var(--text-light); margin-left: .25rem; }
    .padd { background: var(--green-deep); color: #fff; font-family: 'Jost',sans-serif; font-size: .7rem; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; padding: .42rem .85rem; border: none; border-radius: 3px; cursor: pointer; transition: background .2s; }
    .padd:hover { background: var(--green-mid); }

    @media(max-width: 1024px) {
      .products-row { grid-template-columns: repeat(3,1fr); }
    }
    @media(max-width: 768px) {
      .products-row { grid-template-columns: repeat(2,1fr); gap: 1rem; }
      .featured { padding-bottom: 4rem; }
    }
    @media(max-width: 480px) {
      .products-row { grid-template-columns: 1fr; }
    }

    /* VIDEO SHOWCASE */
    .video-showcase { background: var(--green-deep); padding: 6rem 8vw; }
    .vs-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 3.5rem; align-items: center; }
    .vs-video-wrap { border-radius: 14px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,.4); }
    .vs-content .sec-label { color: var(--green-light); }
    .vs-content .sec-title { color: var(--cream); }
    .vs-content .sec-title em { color: var(--amber-light); }
    .vs-content p { font-size: .92rem; font-weight: 300; color: rgba(245,240,232,.6); line-height: 1.85; margin-bottom: 1.5rem; }

    @media(max-width: 900px) {
      .vs-grid { grid-template-columns: 1fr; gap: 2rem; }
      .video-showcase { padding: 4rem 5vw; text-align: center; }
    }

    /* GALLERY */
    .gallery-section { background: var(--green-deep); padding: 6rem 8vw; }
    .gallery-section .sec-title { color: var(--cream); }
    .gal-grid { display: grid; grid-template-columns: repeat(4,1fr); grid-template-rows: 220px 220px; gap: 12px; margin-top: 2.5rem; }
    .gal-item { overflow: hidden; border-radius: 8px; cursor: pointer; }
    .gal-item.tall { grid-row: span 2; }
    .gal-item.wide { grid-column: span 2; }
    .gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; display: block; }
    .gal-item:hover img { transform: scale(1.08); }

    @media(max-width: 1024px) {
      .gal-grid { grid-template-columns: repeat(2,1fr); grid-template-rows: repeat(4, 180px); }
    }
    @media(max-width: 600px) {
      .gal-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
      .gal-item { aspect-ratio: 4/3; }
      .gal-item.tall, .gal-item.wide { grid-row: auto; grid-column: auto; }
      .gallery-section { padding: 4rem 5vw; }
    }

    /* WHY US */
    .why-section { background: var(--cream); padding: 7rem 8vw; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
    .why-img { position: relative; }
    .why-img img { width: 100%; border-radius: 14px; object-fit: cover; height: 500px; box-shadow: 0 20px 55px rgba(26,58,42,.18); display: block; }
    .why-badge { position: absolute; bottom: -20px; right: -20px; background: var(--green-deep); padding: 1.5rem; border-radius: 10px; text-align: center; font-family: 'Playfair Display',serif; font-size: 2.2rem; color: var(--amber-light); line-height: 1; width: 120px; border: 4px solid var(--cream); }
    .why-badge span { display: block; font-family: 'Jost',sans-serif; font-size: .62rem; font-weight: 500; letter-spacing: .15em; text-transform: uppercase; color: rgba(245,240,232,.6); margin-top: .3rem; }
    .why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; margin-top: 2rem; }
    .why-card { background: #fff; border: 1px solid var(--border); border-radius: 10px; padding: 1.4rem; transition: transform .3s,box-shadow .3s; }
    .why-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(26,58,42,.1); }
    .why-icon { font-size: 1.8rem; margin-bottom: .7rem; }
    .why-card h4 { font-family: 'Playfair Display',serif; font-size: 1rem; color: var(--green-deep); margin-bottom: .4rem; }
    .why-card p { font-size: .8rem; color: var(--text-light); line-height: 1.65; }

    @media(max-width: 1024px) {
      .why-section { grid-template-columns: 1fr; gap: 3rem; padding: 4rem 5vw; }
      .why-img img { height: 400px; }
    }
    @media(max-width: 600px) {
      .why-grid { grid-template-columns: 1fr; }
    }

    /* 3 VIDEOS ROW */
    .video3-section { padding: 6rem 8vw; }
    .v3-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.6rem; margin-top: 2.5rem; }
    .v3-card { background: #fff; border-radius: 12px; overflow: hidden; border: 1px solid var(--border); box-shadow: 0 4px 18px rgba(26,58,42,.06); transition: transform .3s,box-shadow .3s; }
    .v3-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(26,58,42,.12); }
    .v3-card iframe { width: 100%; aspect-ratio: 16/9; border: none; display: block; }
    .v3-body { padding: 1rem 1.2rem 1.3rem; }
    .v3-cat { font-size: .65rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--green-light); margin-bottom: .4rem; }
    .v3-title { font-family: 'Playfair Display',serif; font-size: 1rem; color: var(--green-deep); line-height: 1.3; }

    @media(max-width: 900px) {
      .v3-grid { grid-template-columns: repeat(2,1fr); }
    }
    @media(max-width: 600px) {
      .v3-grid { grid-template-columns: 1fr; }
      .video3-section { padding: 4rem 5vw; }
    }

    /* TESTIMONIALS */
    .testimonials { padding: 7rem 8vw; }
    .test-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.6rem; margin-top: 3rem; }
    .test-card { background: #fff; border-radius: 10px; border: 1px solid var(--border); padding: 1.8rem; box-shadow: 0 2px 12px rgba(26,58,42,.05); }
    .test-stars { font-size: .8rem; color: var(--amber); margin-bottom: .8rem; }
    .test-text { font-size: .9rem; color: var(--text-mid); line-height: 1.75; font-style: italic; margin-bottom: 1.2rem; }
    .test-author { display: flex; align-items: center; gap: .8rem; }
    .test-avatar { width: 44px; height: 44px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
    .test-avatar img { width: 100%; height: 100%; object-fit: cover; }
    .test-name { font-size: .82rem; font-weight: 600; color: var(--text-dark); }
    .test-loc { font-size: .72rem; color: var(--text-light); }

    @media(max-width: 1024px) {
      .test-grid { grid-template-columns: repeat(2,1fr); }
    }
    @media(max-width: 768px) {
      .test-grid { grid-template-columns: 1fr; }
      .testimonials { padding: 4rem 5vw; }
    }

    /* NEWSLETTER */
    .newsletter { background: var(--green-deep); padding: 5rem 8vw; display: flex; flex-direction: column; align-items: center; text-align: center; }
    .newsletter h2 { font-family: 'Playfair Display',serif; font-size: clamp(1.6rem,3vw,2.2rem); color: var(--cream); margin-bottom: .6rem; }
    .newsletter p { font-size: .9rem; color: rgba(245,240,232,.55); max-width: 420px; line-height: 1.7; margin-bottom: 2rem; }
    .nl-form { display: flex; max-width: 440px; width: 100%; border-radius: 4px; overflow: hidden; border: 1.5px solid rgba(82,183,136,.25); }
    .nl-form input { flex: 1; padding: .85rem 1.2rem; border: none; outline: none; font-family: 'Jost',sans-serif; font-size: .9rem; background: rgba(255,255,255,.08); color: var(--cream); }
    .nl-form input::placeholder { color: rgba(245,240,232,.35); }
    .nl-form button { background: var(--amber); color: #fff; padding: .85rem 1.5rem; border: none; cursor: pointer; font-family: 'Jost',sans-serif; font-size: .8rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; transition: background .22s; }
    .nl-form button:hover { background: var(--amber-light); }

    @media(max-width: 600px) {
      .nl-form { flex-direction: column; border: none; gap: 1rem; background: transparent; }
      .nl-form input { width: 100%; border-radius: 4px; border: 1.5px solid rgba(82,183,136,.25); }
      .nl-form button { width: 100%; border-radius: 4px; }
      .newsletter { padding: 4rem 5vw; }
    }

    /* FOOTER */
    footer { background: var(--green-deep); padding: 4rem 8vw 2rem; border-top: 1px solid rgba(255,255,255,.08); }
    .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.08); }
    .f-logo { font-family: 'Playfair Display',serif; font-size: 1.4rem; color: var(--cream); margin-bottom: .8rem; }
    .f-logo span { color: var(--amber-light); font-style: italic; }
    .footer-brand p { font-size: .82rem; color: rgba(245,240,232,.45); line-height: 1.75; max-width: 240px; }
    .footer-col h5 { font-size: .72rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--green-light); margin-bottom: 1.2rem; }
    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: .6rem; }
    .footer-col ul a { text-decoration: none; font-size: .82rem; color: rgba(245,240,232,.5); transition: color .2s; }
    .footer-col ul a:hover { color: var(--amber-light); }
    .footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 1.6rem; flex-wrap: wrap; gap: .5rem; }
    .footer-bottom p { font-size: .75rem; color: rgba(245,240,232,.3); }

    @keyframes fadeUp { from{opacity:0;transform:translateY(22px)}to{opacity:1;transform:translateY(0)} }
    
    @media(max-width: 1024px) {
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    }
    @media(max-width: 600px) {
      .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
      .footer-bottom { flex-direction: column; text-align: center; }
      footer { padding: 4rem 5vw 2rem; }
    }