    :root {
      --forest: #1a4d2e;
      --leaf: #2d6a4f;
      --mint: #40916c;
      --sage: #74c69d;
      --cream: #f8f9f2;
      --gold: #d4a373;
      --ink: #1c1c1c;
      --muted: #5c5c5c;
      --white: #fff;
      --shadow: 0 24px 60px rgba(26, 77, 46, 0.12);
      --radius: 16px;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: "Plus Jakarta Sans", system-ui, sans-serif;
      color: var(--ink);
      background: var(--cream);
      line-height: 1.65;
  padding-bottom: 96px;
    }
section { scroll-margin-top: 132px; }
#main { scroll-margin-top: 112px; }

    .skip { position: absolute; left: -9999px; }
    .skip:focus { left: 1rem; top: 1rem; z-index: 9999; padding: 0.5rem 1rem; background: var(--forest); color: var(--white); }

    /* Header */
    header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      background: rgba(248, 249, 242, 0.92);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(45, 106, 79, 0.12);
    }
    .nav-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0.5rem 1.5rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
    }
    .brand {
      display: flex;
      align-items: center;
      gap: 0.9rem;
      text-decoration: none;
      color: var(--forest);
      min-width: 0;
    }
    .brand-logo {
      flex-shrink: 0;
      display: block;
      height: 96px;
      width: auto;
      max-width: min(200px, 42vw);
      object-fit: contain;
      object-position: left center;
    }
    .brand-text {
      display: flex;
      flex-direction: column;
      justify-content: center;
      line-height: 1.2;
      min-width: 0;
    }
    .brand-text strong {
      font-family: "Plus Jakarta Sans", system-ui, sans-serif;
      font-size: clamp(1.12rem, 2.75vw, 1.48rem);
      font-weight: 700;
      letter-spacing: -0.03em;
      color: var(--forest);
      -webkit-font-smoothing: antialiased;
    }
    .brand-text span {
      font-family: "Plus Jakarta Sans", system-ui, sans-serif;
      font-size: clamp(0.65rem, 1.5vw, 0.78rem);
      font-weight: 600;
      color: var(--mint);
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }
    @media (max-width: 480px) {
      .brand {
        gap: 0.55rem;
      }
      .brand-logo {
        height: 72px;
        max-width: min(120px, 36vw);
      }
      .brand-text strong {
        font-size: 1.02rem;
        letter-spacing: -0.025em;
      }
      .brand-text span {
        font-size: 0.62rem;
        letter-spacing: 0.05em;
      }
      .hero-slider {
        margin-top: 104px;
      }
      body {
        padding-bottom: 120px;
      }
    }

    nav ul {
      list-style: none;
      display: flex;
      flex-wrap: wrap;
      gap: 0.35rem 1.25rem;
      align-items: center;
    }
    nav a {
      text-decoration: none;
      color: var(--muted);
      font-weight: 500;
      font-size: 0.9rem;
      transition: color 0.2s;
    }
    nav a:hover { color: var(--leaf); }
    nav a.is-active {
      color: var(--leaf);
      font-weight: 700;
    }
    .nav-cta {
      background: linear-gradient(135deg, var(--leaf), var(--forest));
      color: var(--white) !important;
      padding: 0.5rem 1rem;
      border-radius: 999px;
      font-size: 0.85rem;
    }
    .nav-cta:hover { filter: brightness(1.08); color: var(--white) !important; }

    .menu-btn {
      display: none;
      background: var(--leaf);
      color: var(--white);
      border: none;
      padding: 0.5rem 0.85rem;
      border-radius: 8px;
      font-weight: 600;
      cursor: pointer;
    }

    @media (max-width: 900px) {
      .menu-btn { display: block; }
      nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--cream);
        border-bottom: 1px solid rgba(45, 106, 79, 0.15);
        padding: 1rem 1.5rem;
        display: none;
      }
      nav.open { display: block; }
      nav ul { flex-direction: column; align-items: flex-start; }
    }

    /* Hero — full-width image slider (crossfade only, no decorative motion) */
    .hero-slider {
      margin-top: 120px;
      position: relative;
      min-height: min(88vh, 820px);
      overflow: hidden;
      background: #0d2818;
    }
    .hero-slides {
      position: absolute;
      inset: 0;
    }
    .hero-slide {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      opacity: 0;
      z-index: 0;
      transition: opacity 1.1s ease-in-out;
      pointer-events: none;
    }
    .hero-slide.active {
      opacity: 1;
      z-index: 1;
      pointer-events: auto;
    }
    .hero-slide::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(
        15deg,
        rgba(0, 0, 0, 0.75) 0%,
        rgba(0, 0, 0, 0.35) 45%,
        rgba(0, 0, 0, 0.5) 100%
      );
    }
    .hero-inner {
      position: relative;
      z-index: 5;
      min-height: min(88vh, 820px);
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      max-width: 1200px;
      margin: 0 auto;
      padding: 2.5rem 1.5rem 5.5rem;
    }
    .hero-content {
      color: var(--white);
      max-width: 640px;
    }
    .hero-content .tag {
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      font-size: 0.75rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      margin-bottom: 0.75rem;
      opacity: 0.95;
    }
    .hero-content h1 {
      font-family: Fraunces, Georgia, serif;
      font-size: clamp(1.85rem, 4.5vw, 2.75rem);
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: 0.75rem;
    }
    .hero-content p {
      font-size: 1rem;
      opacity: 0.93;
      margin-bottom: 1.35rem;
      max-width: 540px;
    }
    .hero-btns {
      display: flex;
      flex-wrap: wrap;
      gap: 0.65rem;
    }
    .btn {
      display: inline-block;
      padding: 0.65rem 1.25rem;
      border-radius: 999px;
      font-weight: 600;
      font-size: 0.88rem;
      text-decoration: none;
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .btn:hover {
      transform: translateY(-2px);
    }
    .btn-primary {
      background: var(--white);
      color: var(--forest);
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    }
    .btn-ghost {
      border: 2px solid rgba(255, 255, 255, 0.88);
      color: var(--white);
    }
    .hero-controls {
      position: absolute;
      z-index: 6;
      bottom: 5rem;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      align-items: center;
      gap: 0.55rem;
      padding: 0.55rem 1.1rem;
      border-radius: 999px;
      background: rgba(0, 0, 0, 0.42);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.12);
    }
    .hero-dot {
      width: 9px;
      height: 9px;
      border-radius: 50%;
      border: 2px solid rgba(255, 255, 255, 0.55);
      background: transparent;
      padding: 0;
      cursor: pointer;
      transition: background 0.3s, transform 0.3s, width 0.3s, border-radius 0.3s;
    }
    .hero-dot:hover {
      background: rgba(255, 255, 255, 0.35);
      border-color: rgba(255, 255, 255, 0.85);
    }
    .hero-dot.active {
      background: var(--white);
      border-color: var(--white);
      width: 26px;
      border-radius: 6px;
      transform: none;
    }
    .hero-arrows {
      position: absolute;
      z-index: 6;
      top: 50%;
      left: 0;
      right: 0;
      transform: translateY(-50%);
      pointer-events: none;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 0.75rem;
      display: flex;
      justify-content: space-between;
    }
    .hero-arrow {
      pointer-events: auto;
      width: 48px;
      height: 48px;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, 0.35);
      background: rgba(0, 0, 0, 0.4);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      color: var(--white);
      font-size: 1.35rem;
      line-height: 1;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.2s, border-color 0.2s, transform 0.2s;
    }
    .hero-arrow:hover {
      background: rgba(255, 255, 255, 0.12);
      border-color: rgba(255, 255, 255, 0.9);
    }
    .hero-arrow:active {
      transform: scale(0.96);
    }
    @media (max-width: 640px) {
      .hero-arrows {
        display: none;
      }
      .hero-controls {
        bottom: 4.5rem;
      }
    }
    .hero-strip {
      position: relative;
      z-index: 7;
      background: linear-gradient(90deg, var(--forest), var(--leaf));
      color: var(--white);
      text-align: center;
      padding: 1rem 1.5rem;
      font-weight: 600;
      font-size: 0.95rem;
      letter-spacing: 0.02em;
    }

    section {
      max-width: 1200px;
      margin: 0 auto;
      padding: 4.5rem 1.5rem;
    }
    .section-label {
      font-size: 0.8rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      color: var(--mint);
      margin-bottom: 0.5rem;
    }
    h2 {
      font-family: Fraunces, Georgia, serif;
      font-size: clamp(1.85rem, 3.5vw, 2.5rem);
      color: var(--forest);
      margin-bottom: 1.25rem;
      line-height: 1.2;
    }
    .lead { font-size: 1.1rem; color: var(--muted); max-width: 720px; margin-bottom: 1.5rem; }

    .grid-2 {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2.5rem;
      align-items: start;
    }
    @media (max-width: 768px) { .grid-2 { grid-template-columns: 1fr; } }

    .card {
      background: var(--white);
      border-radius: var(--radius);
      padding: 1.75rem;
      box-shadow: var(--shadow);
      border: 1px solid rgba(45, 106, 79, 0.08);
    }
    .card h3 {
      font-family: Fraunces, Georgia, serif;
      font-size: 1.35rem;
      color: var(--leaf);
      margin-bottom: 0.75rem;
    }
    ul.check {
      list-style: none;
      margin-top: 0.75rem;
    }
    ul.check li {
      padding: 0.35rem 0 0.35rem 1.5rem;
      position: relative;
      color: var(--muted);
    }
    ul.check li::before {
      content: "✓";
      position: absolute;
      left: 0;
      color: var(--mint);
      font-weight: 700;
    }

    .img-wrap {
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
      aspect-ratio: 4/3;
    }
    .img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    /* Compliance: smaller dummy certificate preview (local SVG — always loads) */
    .img-wrap.img-wrap--cert {
      max-width: 260px;
      width: 100%;
      margin-inline: auto;
      aspect-ratio: 320 / 420;
      background: linear-gradient(165deg, #fafaf7 0%, #eef2ec 100%);
      box-shadow: var(--shadow);
      padding: 0.5rem;
    }
    @media (min-width: 769px) {
      .img-wrap.img-wrap--cert {
        margin-inline: 0;
        margin-left: auto;
        max-width: 240px;
      }
    }
    .img-wrap--cert img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      object-position: center;
      display: block;
    }
    .img-wrap--cert .cert-svg {
      width: 100%;
      height: 100%;
      display: block;
    }

    .stats {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1rem;
      margin-top: 2rem;
    }
    @media (max-width: 640px) { .stats { grid-template-columns: repeat(2, 1fr); } }
    .stat {
      text-align: center;
      padding: 1.25rem;
      background: var(--white);
      border-radius: 12px;
      border: 1px solid rgba(45, 106, 79, 0.1);
    }
    .stat strong {
      display: block;
      font-family: Fraunces, Georgia, serif;
      font-size: 1.75rem;
      color: var(--forest);
    }
    .stat span { font-size: 0.8rem; color: var(--muted); }

    .logistics-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
      margin-top: 2rem;
    }
    @media (max-width: 768px) { .logistics-grid { grid-template-columns: 1fr; } }
    .log-box {
      border-radius: var(--radius);
      overflow: hidden;
      background: var(--white);
      box-shadow: var(--shadow);
    }
    .log-box .log-img {
      height: 200px;
      background-size: cover;
      background-position: center;
    }
    .log-air .log-img {
  background-image: url("images/1570710891163-6d3b5c47248b.jpg");
    }
    .log-sea .log-img {
      background-image: url("images/1578575437130-527eed3abbec.jpg");
    }
    .log-box .log-body { padding: 1.5rem; }
    .log-box h3 { font-family: Fraunces, Georgia, serif; margin-bottom: 0.5rem; color: var(--forest); }
    .pill-list {
      display: flex;
      flex-wrap: wrap;
      gap: 0.4rem;
      margin-top: 0.75rem;
    }
    .pill {
      font-size: 0.78rem;
      padding: 0.35rem 0.65rem;
      background: var(--cream);
      border-radius: 6px;
      color: var(--ink);
      border: 1px solid rgba(45, 106, 79, 0.15);
    }

    .products {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.5rem;
      margin-top: 2rem;
    }
    @media (max-width: 1100px) { .products { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 560px) { .products { grid-template-columns: 1fr; } }
    .product-card {
      border-radius: var(--radius);
      overflow: hidden;
      background: var(--white);
      box-shadow: var(--shadow);
    }
    .product-card .ph {
      height: 180px;
      background-size: cover;
      background-position: center;
    }
    .products > .product-card-link:nth-child(1) .ph {
      background-image: url("images/ss.jpg");
    }
    .products > .product-card-link:nth-child(2) .ph {
      background-image: url("images/1631178306815-7f9a2cb0aafb.jpg");
      background-position: center 45%;
    }
    .products > .product-card-link:nth-child(3) .ph {
      background-image: url("images/1586201375761-83865001e31c.jpg");
    }
    .products > .product-card-link:nth-child(4) .ph {
      background-image: url("images/1596040033229-a9821ebd058d.jpg");
      background-position: center 50%;
    }
    .product-card .pb { padding: 1.35rem; }
    .product-card h3 { font-family: Fraunces, Georgia, serif; color: var(--forest); margin-bottom: 0.5rem; font-size: 1.2rem; }
    .product-card ul { font-size: 0.88rem; color: var(--muted); padding-left: 1.1rem; }

    .band {
      background: linear-gradient(135deg, var(--forest) 0%, #0f3d24 100%);
      color: var(--white);
      max-width: none;
      padding: 4rem 1.5rem;
    }
    .band .inner { max-width: 1200px; margin: 0 auto; }
    .band h2 { color: var(--white); }
    .band .lead { color: rgba(255,255,255,0.88); }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
      margin-top: 2rem;
    }
    @media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }
    .contact-grid--single {
      grid-template-columns: 1fr;
      max-width: none;
    }
    #contact {
      background: linear-gradient(180deg, rgba(45, 106, 79, 0.06) 0%, transparent 55%);
    }
    #contact .contact-wrap {
      max-width: 960px;
      margin-top: 0.5rem;
    }
    .contact-lead {
      margin-bottom: 0;
      margin-top: 0.35rem;
    }
    .contact-card {
      background: var(--white);
      padding: 0;
      border-radius: calc(var(--radius) + 4px);
      box-shadow: var(--shadow);
      border: 1px solid rgba(45, 106, 79, 0.1);
      overflow: hidden;
    }
    .contact-card-accent {
      height: 4px;
      background: linear-gradient(90deg, var(--forest), var(--mint), var(--sage));
    }
    .contact-card-inner {
      padding: 2rem 2rem 1.75rem;
    }
    @media (max-width: 480px) {
      .contact-card-inner { padding: 1.5rem 1.35rem 1.35rem; }
    }
    .contact-card h3.contact-company {
      font-family: Fraunces, Georgia, serif;
      color: var(--forest);
      font-size: 1.35rem;
      font-weight: 700;
      line-height: 1.25;
      margin: 0 0 0.35rem;
      letter-spacing: -0.02em;
    }
    .contact-card .contact-location {
      color: var(--muted);
      font-size: 0.95rem;
      margin: 0 0 1.5rem;
      padding-bottom: 1.5rem;
      border-bottom: 1px solid rgba(45, 106, 79, 0.1);
    }
    .contact-rows {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 0.25rem;
    }
    .contact-row a {
      display: flex;
      align-items: center;
      gap: 1rem;
      padding: 0.9rem 1rem;
      margin: 0 -1rem;
      border-radius: 12px;
      text-decoration: none;
      color: var(--ink);
      font-weight: 500;
      transition: background 0.2s, color 0.2s;
    }
    .contact-row a:hover {
      background: rgba(45, 106, 79, 0.08);
      color: var(--forest);
    }
    .contact-row a:hover .contact-row-label { color: var(--muted); }
    .contact-row-icon {
      flex-shrink: 0;
      width: 44px;
      height: 44px;
      border-radius: 12px;
      background: linear-gradient(145deg, var(--cream), rgba(116, 198, 157, 0.2));
      border: 1px solid rgba(45, 106, 79, 0.12);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--leaf);
    }
    .contact-row-icon svg {
      width: 22px;
      height: 22px;
    }
    .contact-row-icon--email {
      background: linear-gradient(145deg, #e8f1ff, #d4e4fc);
      border-color: rgba(26, 115, 232, 0.3);
      color: #1a73e8;
    }
    .contact-row-icon--email svg {
      width: 24px;
      height: 24px;
    }
    .contact-row-icon--wa {
      background: linear-gradient(145deg, #e8fff0, #c8f0d8);
      border-color: rgba(37, 211, 102, 0.25);
      color: #128c7e;
    }
    .contact-row-icon--wa svg {
      width: 24px;
      height: 24px;
    }
    .email-fab {
      position: fixed;
      right: max(1rem, env(safe-area-inset-right));
      bottom: calc(max(1.1rem, env(safe-area-inset-bottom)) + 70px);
      z-index: 998;
      width: 58px;
      height: 58px;
      border-radius: 50%;
      background: linear-gradient(145deg, #1a73e8, #1557b0);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 6px 24px rgba(26, 115, 232, 0.42), 0 2px 8px rgba(0, 0, 0, 0.12);
      text-decoration: none;
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .email-fab:hover {
      transform: scale(1.06);
      box-shadow: 0 8px 28px rgba(26, 115, 232, 0.5), 0 2px 10px rgba(0, 0, 0, 0.15);
      color: #fff;
    }
    .email-fab:active {
      transform: scale(0.98);
    }
    .email-fab svg {
      width: 30px;
      height: 30px;
      fill: currentColor;
    }
    .wa-fab {
      position: fixed;
      right: max(1rem, env(safe-area-inset-right));
      bottom: max(1.1rem, env(safe-area-inset-bottom));
      z-index: 998;
      width: 58px;
      height: 58px;
      border-radius: 50%;
      background: #25d366;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45), 0 2px 8px rgba(0, 0, 0, 0.12);
      text-decoration: none;
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .wa-fab:hover {
      transform: scale(1.06);
      box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55), 0 2px 10px rgba(0, 0, 0, 0.15);
      color: #fff;
    }
    .wa-fab:active {
      transform: scale(0.98);
    }
    .wa-fab svg {
      width: 30px;
      height: 30px;
      fill: currentColor;
    }
    .contact-row-text {
      display: flex;
      flex-direction: column;
      gap: 0.15rem;
      min-width: 0;
    }
    .contact-row-kicker {
      font-size: 0.72rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--mint);
    }
    .contact-row-value {
      font-size: 0.98rem;
      font-weight: 600;
      color: var(--leaf);
      word-break: break-word;
    }
    .contact-row-label {
      font-size: 0.8rem;
      color: var(--muted);
      font-weight: 500;
    }
    .contact-footnote {
      margin: 1.25rem 0 0;
      padding-top: 1.25rem;
      border-top: 1px solid rgba(45, 106, 79, 0.1);
      font-size: 0.88rem;
      color: var(--muted);
      line-height: 1.5;
    }

    .register-card h3.register-title {
      font-family: Fraunces, Georgia, serif;
      color: var(--forest);
      font-size: 1.28rem;
      font-weight: 700;
      margin: 0 0 0.35rem;
      letter-spacing: -0.02em;
    }
    .register-card .register-lead {
      margin: 0 0 1.2rem;
      font-size: 0.9rem;
      color: var(--muted);
      line-height: 1.5;
    }
    .register-form {
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }
    .register-field {
      display: flex;
      flex-direction: column;
      gap: 0.35rem;
    }
    .register-field label {
      font-size: 0.82rem;
      font-weight: 600;
      color: var(--forest);
    }
    .register-field input {
      width: 100%;
      padding: 0.65rem 0.85rem;
      font-family: inherit;
      font-size: 0.95rem;
      border: 1px solid rgba(45, 106, 79, 0.22);
      border-radius: 10px;
      background: var(--cream);
      color: var(--ink);
      transition: border-color 0.2s, box-shadow 0.2s;
    }
    .register-field input:focus {
      outline: none;
      border-color: var(--leaf);
      box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.12);
    }
    .register-submit {
      margin-top: 0.35rem;
      width: 100%;
      padding: 0.75rem 1.25rem;
      font-family: inherit;
      font-size: 0.95rem;
      font-weight: 700;
      color: var(--white);
      background: linear-gradient(135deg, var(--leaf), var(--forest));
      border: none;
      border-radius: 999px;
      cursor: pointer;
      transition: filter 0.2s, transform 0.15s;
    }
    .register-submit:hover {
      filter: brightness(1.06);
    }
    .register-submit:active {
      transform: scale(0.99);
    }
    .register-msg {
      margin: 0;
      padding: 0.75rem 0.9rem;
      font-size: 0.88rem;
      border-radius: 10px;
      background: rgba(64, 145, 108, 0.12);
      color: var(--forest);
      font-weight: 600;
      border: 1px solid rgba(45, 106, 79, 0.12);
    }
    .register-msg[hidden] {
      display: none;
    }
    .register-demo-note {
      margin: 0.85rem 0 0;
      font-size: 0.8rem;
      color: var(--muted);
      line-height: 1.45;
    }

    footer {
      background: var(--ink);
      color: rgba(255,255,255,0.75);
      padding: 2.5rem 1.5rem;
      text-align: center;
      font-size: 0.88rem;
    }
    @media (max-width: 768px) {
      footer {
        padding-bottom: 9.5rem;
      }
    }
    footer a { color: var(--sage); }
    .footer-brand {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1rem;
      text-decoration: none;
      color: inherit;
    }
    .footer-brand img {
      height: 100px;
      width: auto;
      max-width: 400px;
      object-fit: contain;
      opacity: 0.95;
    }
    .ref-note {
      margin-top: 1rem;
      font-size: 0.8rem;
      opacity: 0.7;
    }

    /* Product detail subpages */
    .page-main {
      margin-top: 72px;
      padding: 2.5rem 1.5rem 4rem;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }
    @media (max-width: 900px) {
      .page-main {
        margin-top: 80px;
      }
    }
    .back-row {
      margin-bottom: 1.25rem;
    }
    .back-link {
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      font-weight: 600;
      font-size: 0.9rem;
      color: var(--leaf);
      text-decoration: none;
    }
    .back-link:hover {
      color: var(--forest);
      text-decoration: underline;
    }
    .product-page-hero {
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
      margin-bottom: 2rem;
      aspect-ratio: 21 / 9;
      min-height: 200px;
      background-size: cover;
      background-position: center;
    }

    /* Product detail pages — hero image slider (3+ slides) */
    .product-hero-slider {
      position: relative;
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
      margin-bottom: 2rem;
      aspect-ratio: 21 / 9;
      min-height: 200px;
      background: #142818;
    }
    .product-hero-slides {
      position: absolute;
      inset: 0;
    }
    .product-hero-slide {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      opacity: 0;
      transition: opacity 1s ease-in-out;
      z-index: 0;
    }
    .product-hero-slide.active {
      opacity: 1;
      z-index: 1;
    }
    .product-hero-slider .product-hero-arrow {
      position: absolute;
      z-index: 3;
      top: 50%;
      transform: translateY(-50%);
      width: 42px;
      height: 42px;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, 0.35);
      background: rgba(0, 0, 0, 0.38);
      backdrop-filter: blur(6px);
      color: #fff;
      font-size: 1.25rem;
      line-height: 1;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.2s, border-color 0.2s;
    }
    .product-hero-slider .product-hero-arrow:hover {
      background: rgba(255, 255, 255, 0.12);
      border-color: rgba(255, 255, 255, 0.85);
    }
    .product-hero-arrow--prev {
      left: 0.6rem;
    }
    .product-hero-arrow--next {
      right: 0.6rem;
    }
    .product-hero-dots {
      position: absolute;
      z-index: 3;
      bottom: 0.75rem;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      align-items: center;
      gap: 0.45rem;
      padding: 0.45rem 0.85rem;
      border-radius: 999px;
      background: rgba(0, 0, 0, 0.42);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.1);
    }
    .product-hero-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      border: 2px solid rgba(255, 255, 255, 0.55);
      background: transparent;
      padding: 0;
      cursor: pointer;
      transition: background 0.25s, border-color 0.25s, width 0.25s, border-radius 0.25s;
    }
    .product-hero-dot:hover {
      background: rgba(255, 255, 255, 0.35);
    }
    .product-hero-dot.active {
      background: #fff;
      border-color: #fff;
      width: 22px;
      border-radius: 5px;
    }
    @media (max-width: 560px) {
      .product-hero-slider .product-hero-arrow {
        display: none;
      }
    }
    .product-page-body .lead {
      margin-bottom: 1.25rem;
    }
    .product-page-body h3 {
      font-family: Fraunces, Georgia, serif;
      color: var(--forest);
      font-size: 1.25rem;
      margin: 2rem 0 0.75rem;
    }
    .product-page-body h3:first-of-type {
      margin-top: 1rem;
    }
    .product-page-body ul.detail-list {
      list-style: none;
      margin: 0 0 1rem;
      padding: 0;
    }
    .product-page-body ul.detail-list li {
      padding: 0.4rem 0 0.4rem 1.4rem;
      position: relative;
      color: var(--muted);
    }
    .product-page-body ul.detail-list li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0.65em;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--mint);
    }
    .product-cta {
      margin-top: 2.5rem;
      padding-top: 1.5rem;
      border-top: 1px solid rgba(45, 106, 79, 0.12);
    }
    .product-cta .btn {
      display: inline-block;
      padding: 0.65rem 1.35rem;
      border-radius: 999px;
      font-weight: 600;
      font-size: 0.9rem;
      text-decoration: none;
      background: linear-gradient(135deg, var(--leaf), var(--forest));
      color: var(--white);
      transition: filter 0.2s, transform 0.15s;
    }
    .product-cta .btn:hover {
      filter: brightness(1.06);
      transform: translateY(-1px);
    }
    .product-card-link {
      display: block;
      text-decoration: none;
      color: inherit;
      height: 100%;
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
      background: var(--white);
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .product-card-link .product-card {
      box-shadow: none;
      height: 100%;
      display: flex;
      flex-direction: column;
    }
    .product-card-link .product-card .pb {
      flex: 1;
    }
    .product-card-link:hover {
      transform: translateY(-4px);
      box-shadow: 0 28px 50px rgba(26, 77, 46, 0.14);
    }
    .product-card-link:focus-visible {
      outline: 3px solid var(--mint);
      outline-offset: 3px;
    }
    .product-card-link .pb h3 {
      color: var(--forest);
    }
    .product-card-link:hover .pb h3 {
      color: var(--leaf);
    }
    .card-read-more {
      display: inline-block;
      margin-top: 0.75rem;
      font-size: 0.82rem;
      font-weight: 700;
      color: var(--mint);
      letter-spacing: 0.04em;
    }