@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap");

    :root {
      --green-dark: #1a3a22;
      --green-mid: #2d5a3a;
      --gold: #b8860b;
      --gold-light: #d4a017;
      --gold-pale: #f5edd0;
      --earth: #3b2a1a;
      --cream: #faf7f0;
      --off-white: #fdfcf8;
      --text-dark: #1a1208;
      --text-muted: #8a7060;
      --white: #ffffff;
      --gold-border: rgba(184, 134, 11, 0.2);
      --nav-height: 72px;
      --section-pad-y: 60px;
      --section-pad-x: 5vw;
    }

    @media (min-width: 900px) {
      :root {
        --section-pad-y: 100px;
        --section-pad-x: 6vw;
      }
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: "DM Sans", system-ui, sans-serif;
      font-size: 1rem;
      line-height: 1.6;
      color: var(--text-dark);
      background: var(--off-white);
      overflow-x: hidden;
    }

    img {
      max-width: 100%;
      height: auto;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: color 0.3s ease, opacity 0.3s ease;
    }

    button {
      font-family: inherit;
      cursor: pointer;
      border: none;
      transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
    }

    .section-label {
      display: inline-block;
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 0.75rem;
    }

    h1,
    h2,
    h3,
    .font-serif {
      font-family: "Playfair Display", Georgia, serif;
      font-weight: 600;
      line-height: 1.2;
    }

    h1 {
      font-size: clamp(2rem, 5vw, 3.25rem);
      margin: 0 0 1rem;
      color: var(--white);
      overflow-wrap: break-word;
    }

    h2 {
      font-size: clamp(1.75rem, 3.5vw, 2.5rem);
      margin: 0 0 1rem;
      color: var(--text-dark);
      overflow-wrap: break-word;
    }

    h3 {
      font-size: 1.15rem;
      margin: 0 0 0.35rem;
    }

    p {
      margin: 0 0 1rem;
      color: var(--text-muted);
    }

    p:last-child {
      margin-bottom: 0;
    }

    /* Fade-up scroll animation */
    .fade-up {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .fade-up.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* Navbar */
    .site-header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      height: var(--nav-height);
      display: flex;
      align-items: center;
      padding: 0 var(--section-pad-x);
      background: transparent;
      transition: background 0.35s ease, box-shadow 0.35s ease;
    }

    .site-header.scrolled {
      background: var(--white);
      box-shadow: 0 4px 24px rgba(26, 18, 8, 0.08);
    }

    .site-header.scrolled .nav-link {
      color: var(--text-dark);
    }

    .site-header.scrolled .nav-link:hover,
    .site-header.scrolled .nav-link.active {
      color: var(--green-dark);
    }

    .header-inner {
      width: 100%;
      max-width: 1400px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      min-width: 0;
    }

    .header-inner > .logo-link {
      min-width: 0;
    }

    .logo-link {
      display: flex;
      align-items: center;
      gap: 0.65rem;
      z-index: 1002;
    }

    .site-logo {
      display: block;
      height: 44px;
      width: auto;
      max-width: min(240px, 42vw);
      object-fit: contain;
      object-position: left center;
      flex-shrink: 0;
    }

    .site-logo--footer {
      height: 56px;
      max-width: min(280px, 85vw);
    }

    .site-logo--drawer {
      height: 48px;
      max-width: 220px;
    }

    .logo-link--drawer {
      width: 100%;
      justify-content: center;
    }

    /* Header bar only: removes flat white box from raster logo on green + white nav */
    .site-header .site-logo.site-logo--header {
      mix-blend-mode: darken;
    }

    .nav-desktop {
      display: none;
      align-items: center;
      justify-content: flex-end;
      flex-wrap: wrap;
      row-gap: 0.35rem;
      gap: clamp(0.55rem, 1.2vw, 1.75rem);
      max-width: min(920px, 100%);
    }

    @media (min-width: 900px) {
      .nav-desktop {
        display: flex;
      }
    }

    @media (min-width: 900px) and (max-width: 1180px) {
      .nav-desktop .nav-link {
        font-size: 0.8rem;
      }

      .site-header .site-logo.site-logo--header {
        max-height: 38px;
      }
    }

    .nav-link {
      font-size: 0.9rem;
      font-weight: 500;
      color: rgba(255, 255, 255, 0.92);
      position: relative;
      padding: 0.25rem 0;
    }

    .site-header:not(.scrolled) .nav-link:hover,
    .site-header:not(.scrolled) .nav-link.active {
      color: var(--gold-light);
    }

    .nav-link::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 0;
      height: 2px;
      background: currentColor;
      transition: width 0.3s ease;
    }

    .nav-link:hover::after,
    .nav-link.active::after {
      width: 100%;
    }

    .btn-nav-cta {
      display: none;
      padding: 0.55rem 1.25rem;
      background: var(--green-dark);
      color: var(--white);
      font-size: 0.875rem;
      font-weight: 600;
      border-radius: 10px;
    }

    @media (min-width: 900px) {
      .btn-nav-cta {
        display: inline-flex;
      }
    }

    .btn-nav-cta:hover {
      background: var(--green-mid);
    }

    .site-header.scrolled .btn-nav-cta {
      background: var(--green-dark);
    }

    .hamburger {
      width: 44px;
      height: 44px;
      padding: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 6px;
      background: transparent;
      border-radius: 8px;
      z-index: 1002;
    }

    @media (min-width: 900px) {
      .hamburger {
        display: none;
      }
    }

    .hamburger span {
      display: block;
      width: 22px;
      height: 2px;
      background: var(--white);
      border-radius: 2px;
      transition: transform 0.35s ease, opacity 0.25s ease, background 0.3s ease;
    }

    .site-header.scrolled .hamburger span {
      background: var(--text-dark);
    }

    .hamburger.is-open span:nth-child(1) {
      transform: translateY(8px) rotate(45deg);
    }

    .hamburger.is-open span:nth-child(2) {
      opacity: 0;
    }

    .hamburger.is-open span:nth-child(3) {
      transform: translateY(-8px) rotate(-45deg);
    }

    .mobile-nav {
      position: fixed;
      top: var(--nav-height);
      left: 0;
      right: 0;
      background: var(--white);
      padding: 1rem var(--section-pad-x) 1.5rem;
      box-shadow: 0 12px 40px rgba(26, 18, 8, 0.12);
      display: flex;
      flex-direction: column;
      gap: 0.25rem;
      transform: translateY(-120%);
      opacity: 0;
      visibility: hidden;
      transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease, visibility 0.3s;
      z-index: 1001;
      max-height: min(85dvh, calc(100dvh - var(--nav-height)));
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
      overscroll-behavior: contain;
    }

    .mobile-nav.is-open {
      transform: translateY(0);
      opacity: 1;
      visibility: visible;
    }

    .mobile-nav .nav-link {
      color: var(--text-dark);
      padding: 0.75rem 0;
      border-bottom: 1px solid var(--gold-border);
    }

    .mobile-nav .nav-link:hover,
    .mobile-nav .nav-link.active {
      color: var(--green-dark);
    }

    .mobile-nav .btn-nav-cta {
      display: inline-flex;
      margin-top: 0.75rem;
      justify-content: center;
      width: 100%;
    }

    .mobile-nav__brand {
      padding-bottom: 0.85rem;
      margin-bottom: 0.35rem;
      border-bottom: 1px solid var(--gold-border);
      display: flex;
      justify-content: center;
    }

    /* Hero */
    .hero {
      min-height: 100vh;
      min-height: 100dvh;
      padding: calc(var(--nav-height) + 2rem) var(--section-pad-x) 3rem;
      background: linear-gradient(145deg, var(--green-dark) 0%, var(--earth) 55%, #2a1f14 100%);
      position: relative;
      overflow: hidden;
    }

    .hero-backdrop {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 30%;
      opacity: 0.42;
      pointer-events: none;
      z-index: 0;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 1;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Ccircle fill='%23ffffff' fill-opacity='0.06' cx='2' cy='2' r='1'/%3E%3C/svg%3E");
      background-size: 24px 24px;
      pointer-events: none;
    }

    .hero-grid {
      position: relative;
      z-index: 2;
      max-width: 1280px;
      margin: 0 auto;
      display: grid;
      gap: 2.5rem;
      align-items: center;
      min-width: 0;
    }

    .hero-left,
    .hero-cards {
      min-width: 0;
    }

    @media (min-width: 900px) {
      .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
      }
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      padding: 0.4rem 0.9rem;
      background: rgba(212, 160, 23, 0.15);
      border: 1px solid rgba(212, 160, 23, 0.45);
      color: var(--gold-light);
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.04em;
      border-radius: 100px;
      margin-bottom: 1.25rem;
    }

    .hero h1 .highlight {
      color: var(--gold-light);
      font-style: italic;
    }

    .hero-sub {
      color: rgba(253, 252, 248, 0.85);
      font-size: 1.05rem;
      max-width: 34rem;
      margin-bottom: 1.75rem;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.85rem;
      margin-bottom: 2rem;
    }

    .btn-gold {
      padding: 0.85rem 1.5rem;
      background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
      color: var(--earth);
      font-weight: 700;
      font-size: 0.95rem;
      border-radius: 12px;
      border: none;
    }

    .btn-gold:hover {
      filter: brightness(1.08);
      transform: translateY(-1px);
    }

    .btn-ghost {
      padding: 0.85rem 1.5rem;
      background: transparent;
      color: var(--white);
      font-weight: 600;
      font-size: 0.95rem;
      border-radius: 12px;
      border: 2px solid rgba(255, 255, 255, 0.45);
    }

    .btn-ghost:hover {
      border-color: var(--gold-light);
      color: var(--gold-light);
    }

    .hero-stats {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 0.75rem 1rem;
      padding-top: 1.5rem;
      border-top: 1px solid rgba(255, 255, 255, 0.12);
    }

    @media (max-width: 380px) {
      .hero-stats {
        grid-template-columns: 1fr;
        text-align: center;
      }
    }

    .hero-stat strong {
      display: block;
      font-family: "Playfair Display", serif;
      font-size: 1.5rem;
      color: var(--gold-light);
    }

    .hero-stat span {
      font-size: 0.8rem;
      color: rgba(253, 252, 248, 0.7);
    }

    .hero-cards {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1rem;
      max-width: 420px;
      margin: 0 auto;
    }

    @media (min-width: 900px) {
      .hero-cards {
        margin: 0 0 0 auto;
      }
    }

    .float-card {
      background: rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(212, 160, 23, 0.25);
      border-radius: 18px;
      padding: 1.15rem;
      text-align: center;
      animation: floatCard 6s ease-in-out infinite;
    }

    .float-card:nth-child(1) {
      animation-delay: 0s;
    }

    .float-card:nth-child(2) {
      animation-delay: 1.5s;
    }

    .float-card:nth-child(3) {
      animation-delay: 3s;
    }

    .float-card:nth-child(4) {
      animation-delay: 4.5s;
    }

    @keyframes floatCard {
      0%,
      100% {
        transform: translateY(0);
      }
      50% {
        transform: translateY(-8px);
      }
    }

    .float-card .emoji {
      font-size: 2rem;
      display: block;
      margin-bottom: 0.35rem;
    }

    .float-card .name {
      font-family: "Playfair Display", serif;
      font-weight: 600;
      color: var(--white);
      font-size: 1rem;
    }

    .float-card .origin {
      font-size: 0.75rem;
      color: var(--gold-light);
      margin-top: 0.25rem;
    }

    /* Marquee */
    .marquee-wrap {
      background-color: var(--gold-pale);
      background-image: url("../images/marquee-pattern.svg");
      background-repeat: repeat;
      background-size: 64px 64px;
      border-top: 1px solid var(--gold-border);
      border-bottom: 1px solid var(--gold-border);
      overflow: hidden;
      padding: 0.85rem 0;
    }

    .marquee {
      display: flex;
      width: max-content;
      animation: marqueeScroll 22s linear infinite;
    }

    .marquee span {
      white-space: nowrap;
      padding: 0 2.5rem;
      font-size: 0.9rem;
      font-weight: 600;
      color: var(--green-dark);
      letter-spacing: 0.02em;
    }

    @keyframes marqueeScroll {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(-50%);
      }
    }

    /* Sections */
    .section {
      padding: var(--section-pad-y) var(--section-pad-x);
    }

    .section-inner {
      max-width: 1200px;
      margin: 0 auto;
      min-width: 0;
      width: 100%;
    }

    .bg-white {
      background: var(--white);
    }

    .bg-cream {
      background: var(--cream);
    }

    .bg-off {
      background: var(--off-white);
    }

    .bg-dark {
      background: var(--green-dark);
      color: var(--white);
    }

    .bg-dark h2,
    .bg-dark .section-label {
      color: var(--gold-light);
    }

    .bg-dark .section-label {
      color: var(--gold);
    }

    .bg-dark p,
    .bg-dark .subtitle {
      color: rgba(253, 252, 248, 0.82);
    }

    .subtitle {
      font-size: 1.05rem;
      max-width: 36rem;
      margin-bottom: 2rem;
      overflow-wrap: break-word;
      word-wrap: break-word;
    }

    /* About */
    .about-grid {
      display: grid;
      gap: 2rem;
      align-items: stretch;
      min-width: 0;
    }

    .about-grid > * {
      min-width: 0;
    }

    @media (min-width: 900px) {
      .about-grid {
        grid-template-columns: 0.95fr 1.05fr;
        gap: 3rem;
      }
    }

    .about-visual {
      position: relative;
      background: var(--green-dark);
      border-radius: 20px;
      overflow: hidden;
      border: 1px solid var(--gold-border);
      display: flex;
      flex-direction: column;
      min-height: 0;
    }

    @media (min-width: 900px) {
      .about-visual {
        min-height: 100%;
        height: auto;
        align-self: stretch;
      }
    }

    .about-visual__photo {
      position: relative;
      width: 100%;
      flex: 1 1 auto;
      min-height: 220px;
      background: var(--green-dark);
    }

    @media (max-width: 899px) {
      .about-visual__photo {
        flex: 0 0 auto;
        aspect-ratio: 4 / 3;
        min-height: 200px;
      }
    }

    @media (min-width: 900px) {
      .about-visual__photo {
        flex: 1 1 0;
        min-height: 0;
      }
    }

    .about-visual__img {
      position: absolute;
      inset: 0;
      z-index: 0;
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
      object-position: center 38%;
    }

    .about-visual__content {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 2;
      padding: 1.75rem max(1.25rem, 5.5rem) 1.5rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 0.25rem;
      background: linear-gradient(
        to top,
        rgba(26, 58, 34, 0.96) 0%,
        rgba(26, 58, 34, 0.75) 38%,
        rgba(26, 58, 34, 0.28) 72%,
        transparent 100%
      );
    }

    .about-visual .leaf {
      font-size: clamp(2.5rem, 8vw, 3.5rem);
      margin-bottom: 0.25rem;
      filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.35));
      line-height: 1;
    }

    .about-visual h3 {
      position: relative;
      z-index: 1;
      color: var(--white);
      font-size: clamp(1.1rem, 3.2vw, 1.35rem);
      max-width: 16rem;
      margin: 0;
      text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
    }

    .about-badge {
      position: absolute;
      bottom: 1rem;
      right: 1rem;
      z-index: 3;
      background: var(--gold);
      color: var(--earth);
      font-size: 0.75rem;
      font-weight: 700;
      padding: 0.5rem 0.85rem;
      border-radius: 10px;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
      animation: floatCard 5s ease-in-out infinite;
    }

    @media (max-width: 599px) {
      .about-badge {
        bottom: 0.65rem;
        right: 0.65rem;
        font-size: 0.68rem;
        padding: 0.4rem 0.65rem;
      }
    }

    .mission-vision {
      display: grid;
      gap: 1.25rem;
      margin: 1.5rem 0 2rem;
    }

    .mv-block {
      padding: 1.25rem;
      background: var(--cream);
      border-radius: 16px;
      border: 1px solid var(--gold-border);
    }

    .mv-block strong {
      display: block;
      color: var(--green-dark);
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 0.35rem;
    }

    .highlights-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
    }

    .highlight-item {
      padding: 1rem;
      background: var(--white);
      border-radius: 16px;
      border: 1px solid var(--gold-border);
    }

    .highlight-item .hi-icon {
      font-size: 1.35rem;
      margin-bottom: 0.35rem;
    }

    .highlight-item h4 {
      margin: 0 0 0.25rem;
      font-size: 0.95rem;
      color: var(--text-dark);
    }

    .highlight-item p {
      font-size: 0.8rem;
      margin: 0;
    }

    /* Products */
    .products-header {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      margin-bottom: 2rem;
      min-width: 0;
    }

    .products-header > div:first-child {
      min-width: 0;
    }

    @media (min-width: 600px) {
      .products-header {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
        gap: 1.5rem;
      }
    }

    .products-header__aside {
      display: flex;
      flex-direction: column;
      align-items: stretch;
      gap: 1rem;
      width: 100%;
    }

    @media (min-width: 600px) {
      .products-header__aside {
        flex-direction: row;
        align-items: center;
        gap: 1.25rem;
        width: auto;
        flex-shrink: 0;
      }
    }

    .products-header__thumb {
      width: 88px;
      height: 88px;
      border-radius: 16px;
      border: 1px solid var(--gold-border);
      object-fit: cover;
      background: var(--white);
      align-self: center;
    }

    .products-header__aside .btn-outline-gold {
      width: 100%;
      text-align: center;
      justify-content: center;
    }

    @media (min-width: 600px) {
      .products-header__aside .btn-outline-gold {
        width: auto;
      }
    }

    .btn-outline-gold {
      padding: 0.65rem 1.25rem;
      background: transparent;
      color: var(--green-dark);
      font-weight: 600;
      font-size: 0.9rem;
      border-radius: 12px;
      border: 2px solid var(--gold);
      align-self: flex-start;
    }

    @media (min-width: 600px) {
      .btn-outline-gold {
        align-self: center;
      }
    }

    .btn-outline-gold:hover {
      background: var(--gold);
      color: var(--earth);
    }

    .products-grid {
      display: grid;
      gap: 1.25rem;
    }

    @media (min-width: 600px) {
      .products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    .product-card {
      background: var(--cream);
      border-radius: 18px;
      border: 1px solid var(--gold-border);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: box-shadow 0.3s ease, transform 0.3s ease;
      min-width: 0;
    }

    .product-card:hover {
      box-shadow: 0 16px 40px rgba(26, 58, 34, 0.12);
      transform: translateY(-4px);
    }

    .product-card-header {
      padding: 1.25rem 1.25rem 1rem;
      position: relative;
      overflow: hidden;
    }

    .product-card-header__art {
      position: absolute;
      right: 0;
      bottom: 0;
      width: min(100%, 280px);
      height: auto;
      opacity: 0.5;
      pointer-events: none;
      z-index: 0;
    }

    .product-card-header.coffee {
      background: linear-gradient(135deg, #3d2914 0%, #6b4423 100%);
    }

    .product-card-header.cocoa {
      background: linear-gradient(135deg, #2d1810 0%, #5c3d2e 100%);
    }

    .product-card-header.kola {
      background: linear-gradient(135deg, #1a3a22 0%, #3d5c3a 100%);
    }

    .product-card-header.rubber {
      background: linear-gradient(135deg, #2a2a2a 0%, #4a4a40 100%);
    }

    .product-card-header .ph-top {
      position: relative;
      z-index: 1;
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
    }

    .product-card-header .ph-emoji {
      font-size: 2.25rem;
    }

    .badge-grade {
      font-size: 0.65rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      background: rgba(255, 255, 255, 0.2);
      color: var(--white);
      padding: 0.35rem 0.6rem;
      border-radius: 6px;
      border: 1px solid rgba(255, 255, 255, 0.3);
    }

    .product-card-body {
      padding: 1.25rem;
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .product-card-body h3 {
      font-size: 1.35rem;
      color: var(--text-dark);
    }

    .product-card__media {
      margin: 1rem 0 0;
      border-radius: 12px;
      overflow: hidden;
      border: 1px solid var(--gold-border);
      aspect-ratio: 16 / 10;
      background: var(--off-white);
      flex-shrink: 0;
    }

    .product-card__img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
    }

    .product-specs {
      display: grid;
      grid-template-columns: 1fr;
      gap: 0.5rem;
      margin: 1rem 0 1.25rem;
      font-size: 0.8rem;
    }

    .product-specs div {
      display: flex;
      justify-content: space-between;
      gap: 0.5rem;
      padding: 0.4rem 0;
      border-bottom: 1px dashed var(--gold-border);
    }

    .product-specs span:first-child {
      color: var(--text-muted);
      font-weight: 500;
    }

    .product-specs span:last-child {
      color: var(--text-dark);
      font-weight: 600;
      text-align: right;
      overflow-wrap: anywhere;
      word-break: break-word;
    }

    .btn-quote {
      margin-top: auto;
      width: 100%;
      padding: 0.75rem;
      background: var(--green-dark);
      color: var(--white);
      font-weight: 600;
      border-radius: 12px;
    }

    .btn-quote:hover {
      background: var(--green-mid);
    }

    /* Gallery */
    .gallery-intro {
      margin-bottom: 2rem;
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.25rem;
    }

    @media (min-width: 600px) {
      .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (min-width: 900px) {
      .gallery-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1.5rem;
      }
    }

    .gallery-item {
      margin: 0;
      border-radius: 18px;
      overflow: hidden;
      border: 1px solid var(--gold-border);
      background: var(--white);
      box-shadow: 0 4px 20px rgba(26, 18, 8, 0.06);
      display: flex;
      flex-direction: column;
      min-width: 0;
    }

    .gallery-item__frame {
      position: relative;
      aspect-ratio: 16 / 10;
      background: var(--cream);
      overflow: hidden;
    }

    .gallery-item__frame img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
    }

    .gallery-item figcaption {
      padding: 0.85rem 1rem 1rem;
      font-size: 0.95rem;
      font-weight: 600;
      color: var(--green-dark);
      font-family: "DM Sans", sans-serif;
      line-height: 1.35;
    }

    /* Why us */
    .why-banner {
      margin-bottom: 2rem;
      border-radius: 16px;
      overflow: hidden;
      border: 1px solid var(--gold-border);
    }

    .why-banner img {
      display: block;
      width: 100%;
      height: auto;
      max-height: 200px;
      object-fit: cover;
    }

    .why-grid {
      display: grid;
      gap: 1rem;
      grid-template-columns: 1fr;
    }

    @media (min-width: 600px) {
      .why-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (min-width: 900px) {
      .why-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }
    }

    .why-grid > * {
      min-width: 0;
    }

    .why-card {
      padding: 1.5rem;
      background: var(--white);
      border-radius: 18px;
      border: 1px solid var(--gold-border);
      transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    }

    .why-card:hover {
      background: var(--green-dark);
      border-color: var(--green-dark);
    }

    .why-card .why-icon {
      font-size: 1.75rem;
      margin-bottom: 0.75rem;
    }

    .why-card h3 {
      font-size: 1.05rem;
      margin-bottom: 0.5rem;
      color: var(--text-dark);
      transition: color 0.3s ease;
    }

    .why-card p {
      font-size: 0.875rem;
      margin: 0;
      transition: color 0.3s ease;
    }

    .why-card:hover h3,
    .why-card:hover p {
      color: var(--white);
    }

    /* Stats strip */
    .stats-strip {
      background-color: var(--gold);
      background-image: url("../images/stats-texture.svg");
      background-repeat: repeat;
      background-size: 400px 120px;
      padding: 2.5rem var(--section-pad-x);
    }

    .stats-grid {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1.5rem;
      text-align: center;
    }

    @media (min-width: 900px) {
      .stats-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
      }
    }

    .stats-grid > * {
      min-width: 0;
    }

    .stat-item .num {
      font-family: "Playfair Display", serif;
      font-size: clamp(2rem, 4vw, 2.75rem);
      font-weight: 700;
      color: var(--earth);
      display: block;
      line-height: 1.1;
    }

    .stat-item .lbl {
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--earth);
      opacity: 0.9;
    }

    /* Markets */
    .markets-grid {
      display: grid;
      gap: 1rem;
      grid-template-columns: 1fr;
    }

    @media (min-width: 600px) {
      .markets-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (min-width: 900px) {
      .markets-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
      }
    }

    .markets-grid > * {
      min-width: 0;
    }

    .market-card {
      position: relative;
      overflow: hidden;
      padding: 1.5rem;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(184, 134, 11, 0.25);
      border-radius: 18px;
      transition: border-color 0.3s ease, background 0.3s ease;
    }

    .market-card__art {
      position: absolute;
      right: -0.5rem;
      bottom: -0.5rem;
      width: 120px;
      height: auto;
      opacity: 0.35;
      pointer-events: none;
    }

    .market-card .flag,
    .market-card h3,
    .market-card p {
      position: relative;
      z-index: 1;
    }

    .market-card:hover {
      border-color: var(--gold);
      background: rgba(255, 255, 255, 0.1);
    }

    .market-card .flag {
      font-size: 2rem;
      margin-bottom: 0.75rem;
    }

    .market-card h3 {
      color: var(--white);
      font-size: 1.1rem;
    }

    .market-card p {
      color: rgba(253, 252, 248, 0.78);
      font-size: 0.875rem;
      margin: 0;
    }

    /* MOQ strip */
    .moq-strip {
      background: var(--gold-pale);
      border-top: 2px solid rgba(184, 134, 11, 0.35);
      border-bottom: 2px solid rgba(184, 134, 11, 0.35);
      padding: 1.75rem var(--section-pad-x);
      text-align: center;
    }

    .moq-inner {
      max-width: 900px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1.25rem;
    }

    .moq-inner__left {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1rem;
      text-align: center;
    }

    @media (min-width: 600px) {
      .moq-inner__left {
        flex-direction: row;
        text-align: left;
        align-items: center;
      }
    }

    .moq-strip__icon {
      flex-shrink: 0;
      width: 100px;
      height: auto;
      opacity: 0.9;
    }

    @media (min-width: 600px) {
      .moq-inner {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
      }

      .moq-strip__icon {
        width: 120px;
      }
    }

    .moq-strip p {
      margin: 0;
      font-size: 1.05rem;
      font-weight: 600;
      color: var(--green-dark);
    }

    .btn-moq {
      padding: 0.7rem 1.35rem;
      background: var(--green-dark);
      color: var(--white);
      font-weight: 600;
      border-radius: 12px;
      white-space: nowrap;
    }

    .btn-moq:hover {
      background: var(--green-mid);
    }

    /* Contact */
    .contact-grid {
      display: grid;
      gap: 2.5rem;
      min-width: 0;
    }

    .contact-grid > * {
      min-width: 0;
    }

    @media (min-width: 900px) {
      .contact-grid {
        grid-template-columns: 1fr 1.1fr;
        align-items: start;
      }
    }

    .contact-cards {
      display: flex;
      flex-direction: column;
      gap: 0.85rem;
    }

    .contact-cards__hero {
      width: 100%;
      height: auto;
      border-radius: 16px;
      border: 1px solid var(--gold-border);
      object-fit: cover;
      max-height: 200px;
    }

    .info-card {
      padding: 1rem 1.15rem;
      background: var(--cream);
      border-radius: 16px;
      border: 1px solid var(--gold-border);
      font-size: 0.95rem;
    }

    .info-card strong {
      display: block;
      color: var(--green-dark);
      margin-bottom: 0.25rem;
    }

    .info-card a {
      color: var(--green-mid);
      font-weight: 600;
    }

    .info-card a:hover {
      color: var(--gold);
    }

    .clients-box {
      padding: 1.15rem;
      background: var(--green-dark);
      color: var(--white);
      border-radius: 16px;
      border: 1px solid rgba(212, 160, 23, 0.35);
    }

    .clients-box strong {
      display: block;
      color: var(--gold-light);
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 0.5rem;
    }

    .clients-box p {
      margin: 0;
      color: rgba(253, 252, 248, 0.9);
      font-size: 0.95rem;
    }

    .contact-form-wrap {
      background: var(--white);
      padding: 1.75rem;
      border-radius: 20px;
      border: 1px solid var(--gold-border);
      box-shadow: 0 12px 40px rgba(26, 18, 8, 0.06);
      min-width: 0;
    }

    @media (max-width: 599px) {
      .contact-form-wrap {
        padding: 1.25rem;
      }
    }

    .form-row {
      display: grid;
      gap: 1rem;
      margin-bottom: 1rem;
    }

    @media (min-width: 600px) {
      .form-row.two {
        grid-template-columns: 1fr 1fr;
      }
    }

    .form-group label {
      display: block;
      font-size: 0.8rem;
      font-weight: 600;
      color: var(--text-dark);
      margin-bottom: 0.35rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: 0.75rem 0.9rem;
      font-family: inherit;
      font-size: 0.95rem;
      border: 1px solid var(--gold-border);
      border-radius: 10px;
      background: var(--off-white);
      transition: border-color 0.3s ease, box-shadow 0.3s ease;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      outline: none;
      border-color: var(--gold);
      box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.15);
    }

    .form-group textarea {
      min-height: 120px;
      resize: vertical;
    }

    .btn-submit {
      width: 100%;
      padding: 0.9rem;
      background: var(--green-dark);
      color: var(--white);
      font-weight: 700;
      font-size: 1rem;
      border-radius: 12px;
      margin-top: 0.5rem;
    }

    .btn-submit:hover:not(:disabled) {
      background: var(--green-mid);
    }

    .btn-submit:disabled {
      opacity: 0.65;
      cursor: not-allowed;
    }

    .form-message {
      margin-top: 1rem;
      padding: 0.85rem 1rem;
      border-radius: 10px;
      font-size: 0.9rem;
      font-weight: 600;
      display: none;
    }

    .form-message.success {
      display: block;
      background: rgba(45, 90, 58, 0.12);
      color: var(--green-dark);
      border: 1px solid var(--green-mid);
    }

    .form-message.error {
      display: block;
      background: rgba(180, 60, 50, 0.1);
      color: #a03028;
      border: 1px solid rgba(180, 60, 50, 0.35);
    }

    /* Footer */
    .site-footer {
      background: var(--earth);
      color: rgba(253, 252, 248, 0.85);
      padding: 0;
    }

    .site-footer__top {
      padding: 3rem var(--section-pad-x) 2.5rem;
      background-image: url("../images/footer-accent.svg");
      background-repeat: repeat;
      background-size: 120px 120px;
    }

    .footer-grid {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      gap: 2rem;
      grid-template-columns: 1fr;
    }

    @media (min-width: 600px) {
      .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (min-width: 900px) {
      .footer-grid {
        grid-template-columns: minmax(0, 1.2fr) repeat(3, minmax(0, 1fr));
      }
    }

    .footer-grid > * {
      min-width: 0;
    }

    .footer-brand .logo-link {
      margin-bottom: 1rem;
    }

    .footer-brand p {
      font-size: 0.9rem;
      color: rgba(253, 252, 248, 0.75);
      margin: 0 0 0.5rem;
    }

    .footer-col h4 {
      font-family: "DM Sans", sans-serif;
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--gold-light);
      margin: 0 0 1rem;
    }

    .footer-col ul {
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .footer-col li {
      margin-bottom: 0.5rem;
      overflow-wrap: anywhere;
    }

    .footer-col a {
      font-size: 0.9rem;
      color: rgba(253, 252, 248, 0.8);
      overflow-wrap: anywhere;
    }

    .footer-col a:hover {
      color: var(--gold-light);
    }

    /* Sub-footer bar (charcoal strip) */
    .footer-bar {
      background: #111111;
      color: #b0b0b0;
      padding: 1.35rem var(--section-pad-x) 1.5rem;
      border-top: 1px solid rgba(255, 255, 255, 0.06);
    }

    .footer-bar__inner {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 1.35rem;
      text-align: center;
    }

    @media (min-width: 768px) {
      .footer-bar__inner {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: left;
        gap: 1.5rem;
      }
    }

    .footer-bar__brand {
      display: flex;
      align-items: center;
      gap: 0.85rem;
      text-decoration: none;
      color: #ffffff;
      transition: opacity 0.3s ease;
    }

    .footer-bar__brand:hover {
      opacity: 0.9;
    }

    .footer-bar__logo-img {
      display: block;
      height: 44px;
      width: auto;
      max-width: min(220px, 70vw);
      object-fit: contain;
    }

    .footer-bar__logo-img--wide {
      height: clamp(36px, 5vw, 48px);
      max-width: min(320px, 85vw);
      object-fit: contain;
      object-position: center;
    }

    .footer-bar__copyright {
      margin: 0 0 0.35rem;
      font-size: 0.9rem;
      font-weight: 500;
      color: #b0b0b0;
      letter-spacing: 0.01em;
    }

    .footer-bar__credit {
      margin: 0;
      font-size: 0.8rem;
      font-weight: 400;
      color: #9a9a9a;
      letter-spacing: 0.02em;
    }

    @media (max-width: 767px) {
      .footer-bar__brand {
        justify-content: center;
      }
    }