      :root {
        --gold: #c8922a;
        --amber: #e8a832;
        --earth: #8b4513;
        --deep: #1a0f00;
        --cream: #fdf6e8;
        --sage: #4a6741;
        --rust: #c04a1a;
        --warm: #f5e6c8;
        --text: #2c1a0a;
      }
      *,
      *::before,
      *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
      }

      html {
        scroll-behavior: smooth;
      }

      body {
        background-color: var(--deep);
        color: var(--cream);
        font-family: "DM Sans", sans-serif;
        font-weight: 300;
        overflow-x: hidden;
      }

      body::before {
        content: "";
        position: fixed;
        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='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
        pointer-events: none;
        z-index: 9999;
        opacity: 0.45;
      }

      nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 100;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1.4rem 4rem;
        background: linear-gradient(
          to bottom,
          rgba(26, 15, 0, 0.95) 0%,
          transparent 100%
        );
      }
      .nav-logo {
        font-family: "Playfair Display", serif;
        font-size: 1.1rem;
        font-weight: 700;
        letter-spacing: 0.08em;
        color: var(--amber);
      }
      .nav-logo span {
        color: var(--cream);
        font-weight: 400;
      }
      .nav-links {
        display: flex;
        gap: 2.4rem;
        list-style: none;
      }
      .nav-links a {
        font-size: 0.8rem;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        color: var(--warm);
        text-decoration: none;
        opacity: 0.8;
        transition:
          opacity 0.25s,
          color 0.25s;
      }
      .nav-links a:hover {
        opacity: 1;
        color: var(--amber);
      }

      .hero {
        min-height: 100vh;
        display: grid;
        place-items: center;
        position: relative;
        overflow: hidden;
        background:
          radial-gradient(
            ellipse 80% 60% at 70% 40%,
            rgba(200, 146, 42, 0.22) 0%,
            transparent 65%
          ),
          radial-gradient(
            ellipse 50% 70% at 10% 80%,
            rgba(74, 103, 65, 0.18) 0%,
            transparent 55%
          ),
          linear-gradient(160deg, #1a0f00 0%, #2d1a05 50%, #1a0f00 100%);
      }

      .hero::before,
      .hero::after {
        content: "";
        position: absolute;
        border-radius: 50%;
        border: 1px solid rgba(200, 146, 42, 0.15);
      }
      .hero::before {
        width: 700px;
        height: 700px;
        top: 50%;
        left: 62%;
        transform: translate(-50%, -50%);
      }
      .hero::after {
        width: 500px;
        height: 500px;
        top: 50%;
        left: 62%;
        transform: translate(-50%, -50%);
        border-color: rgba(200, 146, 42, 0.1);
      }

      .hero-inner {
        max-width: 1200px;
        width: 100%;
        padding: 8rem 4rem 4rem;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: center;
        position: relative;
        z-index: 2;
      }

      .hero-tag {
        display: inline-block;
        font-size: 0.7rem;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: var(--amber);
        border: 1px solid rgba(232, 168, 50, 0.35);
        padding: 0.35rem 1rem;
        border-radius: 2px;
        margin-bottom: 1.5rem;
        animation: fadeUp 0.8s ease both;
      }

      .hero-title {
        font-family: "Playfair Display", serif;
        font-size: clamp(3rem, 5vw, 5.5rem);
        line-height: 1.05;
        font-weight: 900;
        animation: fadeUp 0.9s 0.1s ease both;
      }
      .hero-title em {
        font-style: italic;
        color: var(--amber);
      }

      .hero-sub {
        font-family: "Cormorant Garamond", serif;
        font-size: 1.2rem;
        line-height: 1.7;
        color: rgba(253, 246, 232, 0.7);
        margin-top: 1.5rem;
        max-width: 480px;
        animation: fadeUp 1s 0.2s ease both;
      }

      .hero-ctas {
        display: flex;
        gap: 1rem;
        margin-top: 2.5rem;
        animation: fadeUp 1s 0.3s ease both;
      }
      .btn-primary {
        background: linear-gradient(135deg, var(--gold), var(--amber));
        color: var(--deep);
        padding: 0.85rem 2rem;
        font-size: 0.8rem;
        font-weight: 500;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        border: none;
        cursor: pointer;
        text-decoration: none;
        transition:
          transform 0.2s,
          box-shadow 0.2s;
        box-shadow: 0 4px 20px rgba(200, 146, 42, 0.35);
      }
      .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 30px rgba(200, 146, 42, 0.5);
      }
      .btn-outline {
        background: transparent;
        color: var(--cream);
        padding: 0.85rem 2rem;
        font-size: 0.8rem;
        font-weight: 400;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        border: 1px solid rgba(253, 246, 232, 0.3);
        cursor: pointer;
        text-decoration: none;
        transition:
          border-color 0.2s,
          background 0.2s;
      }
      .btn-outline:hover {
        border-color: var(--amber);
        background: rgba(200, 146, 42, 0.08);
      }

      .hero-visual {
        position: relative;
        animation: fadeUp 1s 0.2s ease both;
      }
      .hero-card {
        background: linear-gradient(
          135deg,
          rgba(200, 146, 42, 0.18) 0%,
          rgba(139, 69, 19, 0.12) 100%
        );
        border: 1px solid rgba(200, 146, 42, 0.25);
        border-radius: 4px;
        padding: 2.5rem;
        backdrop-filter: blur(4px);
        position: relative;
        overflow: hidden;
      }
      .hero-card::before {
        content: "🫚";
        font-size: 8rem;
        position: absolute;
        top: -1rem;
        right: -1rem;
        opacity: 0.15;
        transform: rotate(-20deg);
      }

      .stat-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
        margin-top: 1.5rem;
      }
      .stat-item {
        text-align: center;
      }
      .stat-num {
        font-family: "Playfair Display", serif;
        font-size: 2.2rem;
        font-weight: 700;
        color: var(--amber);
        line-height: 1;
      }
      .stat-label {
        font-size: 0.72rem;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: rgba(253, 246, 232, 0.55);
        margin-top: 0.3rem;
      }
      .card-title {
        font-family: "Cormorant Garamond", serif;
        font-size: 1rem;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        color: var(--amber);
        margin-bottom: 0.5rem;
      }
      .card-desc {
        font-family: "Cormorant Garamond", serif;
        font-size: 1rem;
        color: rgba(253, 246, 232, 0.65);
        line-height: 1.6;
        font-style: italic;
      }

      section {
        position: relative;
      }
      .section-inner {
        max-width: 1200px;
        margin: 0 auto;
        padding: 6rem 4rem;
      }
      .section-tag {
        font-size: 0.68rem;
        letter-spacing: 0.22em;
        text-transform: uppercase;
        color: var(--amber);
        display: block;
        margin-bottom: 1rem;
      }
      .section-title {
        font-family: "Playfair Display", serif;
        font-size: clamp(2rem, 3.5vw, 3.2rem);
        font-weight: 700;
        line-height: 1.15;
      }
      .section-title em {
        font-style: italic;
        color: var(--amber);
      }
      .divider {
        width: 60px;
        height: 2px;
        background: linear-gradient(90deg, var(--amber), transparent);
        margin: 1.5rem 0 2rem;
      }

      .about {
        background:
          radial-gradient(
            ellipse 60% 50% at 20% 50%,
            rgba(74, 103, 65, 0.12) 0%,
            transparent 60%
          ),
          linear-gradient(180deg, var(--deep) 0%, #200d00 100%);
        border-top: 1px solid rgba(200, 146, 42, 0.12);
      }
      .about-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
        align-items: center;
        margin-top: 3rem;
      }
      .about-text p {
        font-family: "Cormorant Garamond", serif;
        font-size: 1.15rem;
        line-height: 1.85;
        color: rgba(253, 246, 232, 0.8);
        margin-bottom: 1.2rem;
      }
      .about-highlight {
        border-left: 3px solid var(--amber);
        padding-left: 1.5rem;
        margin: 2rem 0;
      }
      .about-highlight p {
        font-family: "Playfair Display", serif;
        font-style: italic;
        font-size: 1.25rem;
        color: var(--warm) !important;
      }
      .about-badges {
        display: flex;
        flex-wrap: wrap;
        gap: 0.7rem;
        margin-top: 2rem;
      }
      .badge {
        font-size: 0.72rem;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        padding: 0.4rem 0.9rem;
        border: 1px solid rgba(200, 146, 42, 0.4);
        color: var(--amber);
      }

      .about-visual-wrap {
        position: relative;
      }
      .about-visual-box {
        background: linear-gradient(
          135deg,
          rgba(200, 146, 42, 0.12),
          rgba(139, 69, 19, 0.18)
        );
        border: 1px solid rgba(200, 146, 42, 0.2);
        padding: 2.5rem;
        border-radius: 2px;
      }
      .origin-label {
        font-size: 0.65rem;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: var(--amber);
        margin-bottom: 0.6rem;
      }
      .origin-country {
        font-family: "Playfair Display", serif;
        font-size: 2.5rem;
        font-weight: 900;
        color: var(--cream);
      }
      .origin-sub {
        font-family: "Cormorant Garamond", serif;
        font-style: italic;
        color: rgba(253, 246, 232, 0.6);
        margin-top: 0.3rem;
        font-size: 1rem;
      }
      .origin-facts {
        margin-top: 2rem;
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
      }
      .origin-fact {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
        padding-bottom: 0.8rem;
        border-bottom: 1px solid rgba(200, 146, 42, 0.1);
      }
      .fact-icon {
        font-size: 1.2rem;
        flex-shrink: 0;
        margin-top: 0.1rem;
      }
      .fact-text {
        font-size: 0.88rem;
        color: rgba(253, 246, 232, 0.7);
        line-height: 1.5;
      }

      .products {
        background:
          radial-gradient(
            ellipse 70% 40% at 80% 20%,
            rgba(200, 146, 42, 0.1) 0%,
            transparent 55%
          ),
          #200d00;
        border-top: 1px solid rgba(200, 146, 42, 0.12);
      }
      .products-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
        margin-top: 3rem;
      }

      /* ── PRODUCT IMAGE SLIDESHOW ── */
      .product-showcase {
        margin-top: 4rem;
        position: relative;
      }
      .showcase-label {
        font-size: 0.68rem;
        letter-spacing: 0.22em;
        text-transform: uppercase;
        color: var(--amber);
        display: block;
        margin-bottom: 1.2rem;
        text-align: center;
      }
      .slideshow-wrapper {
        position: relative;
        overflow: hidden;
        border-radius: 4px;
        border: 1px solid rgba(200, 146, 42, 0.25);
      }
      .slideshow-track {
        display: flex;
        transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
      }
      .slide {
        min-width: 100%;
        position: relative;
      }
      .slide img {
        width: 100%;
        height: 420px;
        object-fit: cover;
        display: block;
        filter: brightness(0.75);
      }
      .slide-caption {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 2.5rem 2rem 1.8rem;
        background: linear-gradient(to top, rgba(26,15,0,0.95) 0%, transparent 100%);
      }
      .slide-caption-name {
        font-family: "Playfair Display", serif;
        font-size: 1.8rem;
        font-weight: 700;
        color: var(--cream);
        margin-bottom: 0.3rem;
      }
      .slide-caption-desc {
        font-family: "Cormorant Garamond", serif;
        font-style: italic;
        font-size: 1rem;
        color: rgba(253,246,232,0.75);
      }
      .slide-caption-tag {
        display: inline-block;
        margin-top: 0.7rem;
        font-size: 0.65rem;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        color: var(--amber);
        padding: 0.25rem 0.7rem;
        border: 1px solid rgba(200,146,42,0.5);
      }
      .slideshow-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(26,15,0,0.7);
        border: 1px solid rgba(200,146,42,0.35);
        color: var(--amber);
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        font-size: 1.2rem;
        transition: background 0.2s, border-color 0.2s;
        z-index: 10;
      }
      .slideshow-btn:hover {
        background: rgba(200,146,42,0.2);
        border-color: var(--amber);
      }
      .slideshow-btn.prev { left: 1rem; }
      .slideshow-btn.next { right: 1rem; }
      .slideshow-dots {
        display: flex;
        justify-content: center;
        gap: 0.5rem;
        margin-top: 1rem;
      }
      .dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: rgba(200,146,42,0.25);
        border: 1px solid rgba(200,146,42,0.4);
        cursor: pointer;
        transition: background 0.2s;
      }
      .dot.active {
        background: var(--amber);
      }
      .product-card {
        background: linear-gradient(
          180deg,
          rgba(200, 146, 42, 0.1) 0%,
          rgba(26, 15, 0, 0.6) 100%
        );
        border: 1px solid rgba(200, 146, 42, 0.2);
        padding: 2rem 1.5rem;
        transition:
          transform 0.3s,
          border-color 0.3s,
          box-shadow 0.3s;
        cursor: default;
        position: relative;
        overflow: hidden;
      }
      .product-card::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(
          90deg,
          transparent,
          var(--amber),
          transparent
        );
        transform: scaleX(0);
        transition: transform 0.3s;
      }
      .product-card:hover {
        transform: translateY(-6px);
        border-color: rgba(200, 146, 42, 0.5);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
      }
      .product-card:hover::after {
        transform: scaleX(1);
      }
      .product-icon {
        font-size: 2.5rem;
        margin-bottom: 1.2rem;
        display: block;
      }
      .product-name {
        font-family: "Playfair Display", serif;
        font-size: 1.3rem;
        font-weight: 700;
        color: var(--cream);
        margin-bottom: 0.6rem;
      }
      .product-desc {
        font-size: 0.85rem;
        color: rgba(253, 246, 232, 0.6);
        line-height: 1.6;
      }
      .product-tag {
        display: inline-block;
        margin-top: 1rem;
        font-size: 0.65rem;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        color: var(--amber);
        padding: 0.25rem 0.7rem;
        border: 1px solid rgba(200, 146, 42, 0.3);
      }

      .why {
        background:
          radial-gradient(
            ellipse 60% 60% at 30% 50%,
            rgba(74, 103, 65, 0.15) 0%,
            transparent 65%
          ),
          linear-gradient(180deg, #200d00 0%, #1a0f00 100%);
        border-top: 1px solid rgba(200, 146, 42, 0.12);
      }
      .why-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        margin-top: 3rem;
      }
      .why-item {
        padding: 2rem;
        border: 1px solid rgba(200, 146, 42, 0.12);
        position: relative;
        transition: background 0.3s;
      }
      .why-item:hover {
        background: rgba(200, 146, 42, 0.06);
      }
      .why-num {
        font-family: "Playfair Display", serif;
        font-size: 4rem;
        font-weight: 900;
        color: rgba(200, 146, 42, 0.12);
        line-height: 1;
        margin-bottom: 0.5rem;
      }
      .why-label {
        font-family: "Playfair Display", serif;
        font-size: 1.1rem;
        font-weight: 700;
        color: var(--cream);
        margin-bottom: 0.7rem;
      }
      .why-text {
        font-size: 0.88rem;
        color: rgba(253, 246, 232, 0.6);
        line-height: 1.7;
      }

      .reviews {
        background:
          radial-gradient(
            ellipse 80% 50% at 50% 0%,
            rgba(200, 146, 42, 0.12) 0%,
            transparent 60%
          ),
          #200d00;
        border-top: 1px solid rgba(200, 146, 42, 0.12);
      }
      .reviews-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        margin-top: 3rem;
      }
      .review-card {
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(200, 146, 42, 0.15);
        padding: 1.8rem;
        transition: transform 0.3s;
      }
      .review-card:hover {
        transform: translateY(-4px);
      }
      .stars {
        color: var(--amber);
        font-size: 0.9rem;
        letter-spacing: 0.1em;
        margin-bottom: 1rem;
      }
      .review-title {
        font-family: "Playfair Display", serif;
        font-size: 1rem;
        font-weight: 700;
        color: var(--cream);
        margin-bottom: 0.7rem;
      }
      .review-text {
        font-family: "Cormorant Garamond", serif;
        font-style: italic;
        font-size: 1rem;
        color: rgba(253, 246, 232, 0.65);
        line-height: 1.7;
      }

      .mission {
        background: linear-gradient(
          135deg,
          rgba(200, 146, 42, 0.2) 0%,
          rgba(139, 69, 19, 0.25) 50%,
          rgba(74, 103, 65, 0.15) 100%
        );
        border-top: 1px solid rgba(200, 146, 42, 0.25);
        border-bottom: 1px solid rgba(200, 146, 42, 0.25);
      }
      .mission-inner {
        max-width: 800px;
        margin: 0 auto;
        padding: 5rem 4rem;
        text-align: center;
      }
      .mission-inner p {
        font-family: "Cormorant Garamond", serif;
        font-size: 1.5rem;
        font-style: italic;
        line-height: 1.7;
        color: var(--warm);
      }
      .mission-inner strong {
        color: var(--amber);
        font-style: normal;
      }

      .contact {
        background:
          radial-gradient(
            ellipse 50% 60% at 50% 100%,
            rgba(200, 146, 42, 0.1) 0%,
            transparent 60%
          ),
          var(--deep);
        border-top: 1px solid rgba(200, 146, 42, 0.12);
      }
      .contact-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
        margin-top: 3rem;
      }
      .contact-info p {
        font-size: 0.9rem;
        color: rgba(253, 246, 232, 0.65);
        line-height: 1.8;
        margin-bottom: 1.5rem;
        font-family: "Cormorant Garamond", serif;
        font-size: 1.05rem;
      }
      .contact-items {
        display: flex;
        flex-direction: column;
        gap: 1.2rem;
        margin-top: 2rem;
      }
      .contact-item {
        display: flex;
        align-items: center;
        gap: 1rem;
        padding-bottom: 1.2rem;
        border-bottom: 1px solid rgba(200, 146, 42, 0.1);
      }
      .contact-icon {
        width: 38px;
        height: 38px;
        background: rgba(200, 146, 42, 0.12);
        border: 1px solid rgba(200, 146, 42, 0.25);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1rem;
        flex-shrink: 0;
      }
      .contact-detail {
        font-size: 0.88rem;
        color: rgba(253, 246, 232, 0.7);
      }
      .contact-detail strong {
        display: block;
        color: var(--cream);
        margin-bottom: 0.15rem;
        font-size: 0.78rem;
        letter-spacing: 0.1em;
        text-transform: uppercase;
      }

      /* ── FORM STYLES ── */
      .contact-form {
        display: flex;
        flex-direction: column;
        gap: 1rem;
      }
      .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
      }
      .form-field {
        display: flex;
        flex-direction: column;
        gap: 0.4rem;
      }
      .form-field label {
        font-size: 0.7rem;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        color: rgba(253, 246, 232, 0.5);
      }
      .form-field input,
      .form-field select,
      .form-field textarea {
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(200, 146, 42, 0.2);
        color: var(--cream);
        padding: 0.75rem 1rem;
        font-family: "DM Sans", sans-serif;
        font-size: 0.88rem;
        outline: none;
        transition: border-color 0.2s;
        width: 100%;
        appearance: none;
      }
      .form-field input:focus,
      .form-field select:focus,
      .form-field textarea:focus {
        border-color: var(--amber);
      }
      .form-field textarea {
        resize: vertical;
        min-height: 100px;
      }

      /* Success / Error messages */
      .form-success {
        display: none;
        background: rgba(74, 103, 65, 0.2);
        border: 1px solid rgba(74, 103, 65, 0.5);
        color: #a8d5a2;
        padding: 1rem 1.2rem;
        font-size: 0.88rem;
        line-height: 1.6;
        border-radius: 2px;
      }
      .form-error {
        display: none;
        background: rgba(192, 74, 26, 0.15);
        border: 1px solid rgba(192, 74, 26, 0.4);
        color: #f0a080;
        padding: 1rem 1.2rem;
        font-size: 0.88rem;
        line-height: 1.6;
        border-radius: 2px;
      }

      footer {
        background: #100800;
        border-top: 1px solid rgba(200, 146, 42, 0.15);
        padding: 3rem 4rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 1rem;
      }
      .footer-brand {
        font-family: "Playfair Display", serif;
        font-size: 1rem;
        font-weight: 700;
        color: var(--amber);
        display: flex;
        align-items: center;
        gap: 0.6rem;
      }
      .footer-brand span {
        color: rgba(253, 246, 232, 0.5);
        font-weight: 300;
      }
      .footer-logo-img {
        height: 32px;
        width: 32px;
        object-fit: contain;
        border-radius: 50%;
      }
      .footer-copy {
        font-size: 0.75rem;
        color: rgba(253, 246, 232, 0.3);
        letter-spacing: 0.08em;
      }

      @keyframes fadeUp {
        from {
          opacity: 0;
          transform: translateY(24px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }
      .reveal {
        opacity: 0;
        transform: translateY(30px);
        transition:
          opacity 0.7s ease,
          transform 0.7s ease;
      }
      .reveal.visible {
        opacity: 1;
        transform: translateY(0);
      }

      @media (max-width: 900px) {
        nav {
          padding: 1.2rem 2rem;
        }
        .nav-links {
          display: none;
        }
          .hero-inner {
          grid-template-columns: 1fr;
          padding: 6rem 2rem 3rem;
        }
        .hero-visual {
          display: none;
        }
        .section-inner {
          padding: 4rem 2rem;
        }
        .about-grid,
        .contact-grid {
          grid-template-columns: 1fr;
          gap: 2.5rem;
        }
        .products-grid {
          grid-template-columns: 1fr 1fr;
        }
        .slide img {
          height: 300px;
        }
        .why-grid {
          grid-template-columns: 1fr 1fr;
        }
        .reviews-grid {
          grid-template-columns: 1fr;
        }
        footer {
          flex-direction: column;
          text-align: center;
          padding: 2rem;
        }
        .mission-inner {
          padding: 3rem 2rem;
        }
      }
      .nav-logo {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--amber);
  display: flex;
  align-items: center;
  gap: 0.6rem;
      }
      .nav-logo span {
        color: var(--cream);
        font-weight: 400;
      }
      .nav-logo-img {
        height: 40px;
        width: 40px;
        object-fit: contain;
        border-radius: 50%;
      }
      .nav-logo-text {
        font-size: 1.1rem;
        font-weight: 600;
      }
      @media (max-width: 560px) {
        .products-grid {
          grid-template-columns: 1fr;
        }
        .why-grid {
          grid-template-columns: 1fr;
        }
        .form-row {
          grid-template-columns: 1fr;
        }
      }
