:root {
      --green: #0e3524;
      --green-2: #17462f;
      --green-soft: #d8e5c8;
      --gold: #f0a629;
      --gold-deep: #c9801e;
      --red: #b63a2b;
      --red-deep: #7b211a;
      --cream: #fff6e6;
      --paper: #f4dfb8;
      --paper-2: #efe2cf;
      --ink: #1f1712;
      --muted: #77634f;
      --white: #fffdf8;
      --shadow: 0 22px 60px rgba(26, 16, 10, .18);
      --radius: 8px;
      --container: min(1180px, calc(100% - 40px));
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: "Be Vietnam Pro", Arial, sans-serif;
      color: var(--ink);
      background:
        repeating-linear-gradient(90deg, rgba(79, 56, 28, .035) 0 1px, transparent 1px 18px),
        linear-gradient(180deg, #fff6e6 0%, #f2dfbd 44%, #fff8ea 100%);
      letter-spacing: 0;
    }

    body.menu-open {
      overflow: hidden;
    }

    img {
      display: block;
      max-width: 100%;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    button,
    input,
    textarea,
    select {
      font: inherit;
    }

    .top-promo {
      position: sticky;
      top: 0;
      z-index: 10000;
      background: var(--gold);
      color: #261606;
      text-align: center;
      font-size: 13px;
      font-weight: 800;
      padding: 10px 16px;
      text-transform: uppercase;
    }

    .site-header {
      position: sticky;
      top: 37px;
      z-index: 9999;
      background: rgba(14, 53, 36, .94);
      color: var(--white);
      border-bottom: 1px solid rgba(255, 255, 255, .12);
      backdrop-filter: blur(14px);
    }


    .top-promo,
    .site-header,
    body > #wrapper > .top-promo,
    body > #wrapper > .site-header {
      isolation: isolate;
    }

    body .site-header:first-child,
    body :not(.top-promo) + .site-header,
    body > #wrapper > .site-header:first-child,
    body > #wrapper > :not(.top-promo) + .site-header {
      top: 0;
    }

    .admin-bar body .site-header:first-child,
    .admin-bar body :not(.top-promo) + .site-header,
    .admin-bar body > #wrapper > .site-header:first-child,
    .admin-bar body > #wrapper > :not(.top-promo) + .site-header {
      top: 32px;
    }

    .nav-wrap {
      width: var(--container);
      min-height: 76px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: auto minmax(0, 1fr) auto;
      align-items: center;
      gap: 22px;
    }

    .menu-toggle,
    .icon-btn {
      width: 44px;
      height: 44px;
      border: 1px solid rgba(255, 255, 255, .42);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, .06);
      color: var(--white);
      display: grid;
      place-items: center;
      cursor: pointer;
      transition: transform .2s ease, border-color .2s ease, background .2s ease;
    }

    .menu-toggle {
      display: none;
    }

    .menu-toggle:hover,
    .icon-btn:hover {
      transform: translateY(-1px);
      border-color: var(--gold);
      background: rgba(240, 166, 41, .13);
    }

    .brand {
      justify-self: start;
      display: flex;
      align-items: center;
      gap: 12px;
      min-width: 0;
    }

    .brand-logo {
      width: 54px;
      height: 54px;
      object-fit: contain;
      flex: 0 0 auto;
      filter: drop-shadow(0 8px 14px rgba(0, 0, 0, .18));
    }

    .brand-text {
      display: grid;
      gap: 2px;
      line-height: 1;
    }

    .brand-kicker {
      color: var(--gold);
      font-size: 11px;
      font-weight: 800;
      text-transform: uppercase;
    }

    .brand-name {
      font-family: "Noto Serif", serif;
      font-size: clamp(22px, 3vw, 32px);
      font-weight: 900;
      white-space: nowrap;
    }

    .main-nav {
      justify-self: center;
      display: flex;
      align-items: center;
      gap: 22px;
      color: rgba(255, 253, 248, .85);
      font-size: 13px;
      font-weight: 800;
      text-transform: uppercase;
    }

    .main-nav a {
      position: relative;
      padding: 10px 0;
    }

    .main-nav a::after {
      content: "";
      position: absolute;
      left: 0;
      right: 100%;
      bottom: 4px;
      height: 2px;
      background: var(--gold);
      transition: right .25s ease;
    }

    .main-nav a:hover::after {
      right: 0;
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .btn {
      min-height: 44px;
      border: 0;
      border-radius: var(--radius);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      padding: 0 18px;
      cursor: pointer;
      font-weight: 900;
      text-transform: uppercase;
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
      white-space: nowrap;
    }

    .btn:hover {
      transform: translateY(-2px);
    }

    .btn-primary {
      background: var(--gold);
      color: #231306;
      box-shadow: 0 14px 34px rgba(240, 166, 41, .25);
    }

    .btn-primary:hover {
      background: #ffb947;
    }

    .btn-outline {
      border: 2px solid var(--gold);
      background: transparent;
      color: var(--gold);
    }

    .btn-outline:hover {
      background: rgba(240, 166, 41, .13);
    }

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

    .btn-red {
      background: var(--red);
      color: var(--white);
    }

    .mobile-panel {
      position: fixed;
      inset: 0;
      z-index: 10020;
      display: none;
      background: rgba(13, 31, 23, .68);
    }

    .mobile-panel.is-open {
      display: block;
    }

    .mobile-drawer {
      width: min(360px, 88vw);
      height: 100%;
      padding: 24px;
      background: var(--green);
      color: var(--white);
      box-shadow: var(--shadow);
      transform: translateX(-100%);
      transition: transform .28s ease;
    }

    .mobile-panel.is-open .mobile-drawer {
      transform: translateX(0);
    }

    .drawer-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 28px;
    }

    .drawer-nav {
      display: grid;
      gap: 8px;
      font-size: 18px;
      font-weight: 900;
      text-transform: uppercase;
    }

    .drawer-nav a {
      padding: 14px 0;
      border-bottom: 1px solid rgba(255, 255, 255, .12);
    }

    .drawer-note {
      margin-top: 28px;
      padding-top: 20px;
      border-top: 1px solid rgba(255, 255, 255, .12);
      color: rgba(255, 253, 248, .75);
      line-height: 1.7;
    }

    .hero {
      position: relative;
      min-height: 74svh;
      display: flex;
      align-items: center;
      overflow: hidden;
      color: var(--white);
      background-image: url("nem-xu-thanh-assets/hero-nem-table-scene.png");
      background-size: cover;
      background-position: center 56%;
      isolation: isolate;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -2;
      background: rgba(7, 34, 22, .58);
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -1;
      background:
        linear-gradient(90deg, rgba(9, 33, 22, .94) 0%, rgba(9, 33, 22, .78) 44%, rgba(9, 33, 22, .18) 100%),
        linear-gradient(0deg, rgba(9, 33, 22, .58) 0%, rgba(9, 33, 22, .08) 48%, rgba(9, 33, 22, .24) 100%);
    }

    .hero-inner {
      width: var(--container);
      margin: 0 auto;
      padding: 60px 0 72px;
      display: grid;
      grid-template-columns: minmax(0, 610px) minmax(420px, 1fr);
      gap: clamp(24px, 4vw, 48px);
      align-items: center;
    }

    .hero-copy {
      position: relative;
      z-index: 2;
      display: grid;
      gap: 20px;
      align-content: center;
      max-width: 720px;
    }

    .eyebrow {
      display: inline-flex;
      width: fit-content;
      align-items: center;
      gap: 10px;
      color: var(--gold);
      font-size: 13px;
      font-weight: 900;
      text-transform: uppercase;
    }

    .eyebrow::before {
      content: "";
      width: 48px;
      height: 3px;
      background: var(--gold);
    }

    .hero h1 {
      margin: 0;
      font-family: "Noto Serif", "Lora", serif;
      font-size: clamp(58px, 10vw, 138px);
      line-height: .86;
      font-weight: 900;
      color: var(--gold);
      text-shadow: 0 5px 0 rgba(123, 33, 26, .7), 0 16px 38px rgba(0, 0, 0, .35);
      text-transform: uppercase;
      max-width: 780px;
    }

    .hero-lead {
      max-width: 610px;
      margin: 0;
      color: rgba(255, 253, 248, .9);
      font-family: "Lora", serif;
      font-size: clamp(18px, 2.1vw, 25px);
      line-height: 1.55;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 8px;
    }

    .hero-stats {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 10px;
    }

    .stat-chip {
      border: 1px solid rgba(255, 255, 255, .22);
      border-radius: var(--radius);
      padding: 11px 13px;
      background: rgba(255, 255, 255, .08);
      backdrop-filter: blur(10px);
    }

    .stat-chip strong {
      display: block;
      color: var(--gold);
      font-size: 18px;
      line-height: 1;
    }

    .stat-chip span {
      display: block;
      margin-top: 4px;
      color: rgba(255, 253, 248, .82);
      font-size: 12px;
      font-weight: 700;
    }

    .hero-visual {
      align-self: center;
      justify-self: end;
      position: relative;
      width: min(820px, 118%);
      min-height: 520px;
      margin-right: -90px;
      display: grid;
      place-items: center;
      isolation: isolate;
      z-index: 1;
    }

    .hero-visual::before {
      content: "";
      position: absolute;
      z-index: -2;
      width: 70%;
      aspect-ratio: 1 / .74;
      border-radius: 50%;
      background:
        radial-gradient(circle at 55% 46%, rgba(240, 166, 41, .34), transparent 58%),
        radial-gradient(circle at 42% 56%, rgba(255, 246, 230, .18), transparent 64%);
      filter: blur(18px);
      transform: rotate(-7deg);
    }

    .hero-visual::after {
      content: "";
      position: absolute;
      z-index: -1;
      bottom: 54px;
      left: 18%;
      width: 66%;
      height: 32px;
      border-radius: var(--radius);
      background: rgba(0, 0, 0, .34);
      filter: blur(16px);
    }

    .hero-cutout {
      width: min(880px, 138%);
      max-width: none;
      max-height: 560px;
      object-fit: contain;
      transform: translateX(112px) translateY(16px) rotate(.4deg);
      filter: saturate(1.16) contrast(1.08) brightness(1.12) drop-shadow(0 38px 52px rgba(0, 0, 0, .48));
      pointer-events: none;
      user-select: none;
    }

    .quick-order {
      background: var(--gold);
      color: #231306;
    }

    .quick-order-inner {
      width: var(--container);
      margin: 0 auto;
      min-height: 104px;
      display: grid;
      grid-template-columns: 1.1fr repeat(3, minmax(160px, 1fr)) auto;
      gap: 1px;
      align-items: stretch;
    }

    .quick-cell {
      display: grid;
      align-content: center;
      gap: 4px;
      padding: 18px 20px;
      background: rgba(255, 246, 230, .28);
      border-left: 1px solid rgba(35, 19, 6, .13);
    }

    .quick-cell:first-child {
      border-left: 0;
    }

    .quick-cell span {
      color: rgba(35, 19, 6, .72);
      font-size: 12px;
      font-weight: 800;
      text-transform: uppercase;
    }

    .quick-cell strong {
      font-size: 17px;
      line-height: 1.35;
    }

    .quick-cell.action {
      place-items: center;
      min-width: 168px;
    }

    .section {
      padding: clamp(64px, 8vw, 110px) 0;
    }

    section[id] {
      scroll-margin-top: 132px;
    }

    .section-dark {
      background:
        repeating-linear-gradient(90deg, rgba(255, 255, 255, .035) 0 1px, transparent 1px 26px),
        var(--green);
      color: var(--white);
    }

    .section-gold {
      background: var(--gold);
      color: #251405;
    }

    .section-paper {
      background:
        repeating-linear-gradient(0deg, rgba(80, 55, 30, .035) 0 1px, transparent 1px 19px),
        var(--cream);
    }

    .container {
      width: var(--container);
      margin: 0 auto;
    }

    .section-head {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: clamp(26px, 3vw, 40px);
      margin-bottom: clamp(44px, 5vw, 58px);
    }

    .section-head > div {
      min-width: 0;
      display: grid;
      gap: clamp(22px, 2.4vw, 34px);
    }

    .section-title {
      margin: 0;
      font-family: "Noto Serif", "Lora", serif;
      font-size: clamp(36px, 6.2vw, 76px);
      line-height: 1.18;
      font-weight: 900;
      text-transform: uppercase;
      color: var(--green);
      padding-top: .05em;
      text-wrap: balance;
    }

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

    .section-gold .section-title {
      color: var(--green);
    }

    .section-gold .eyebrow {
      color: var(--green);
    }

    .section-gold .eyebrow::before {
      background: var(--green);
    }

    .section-copy {
      max-width: 520px;
      margin: 0;
      color: var(--muted);
      line-height: 1.75;
      font-size: 16px;
      font-weight: 600;
      align-self: flex-end;
    }

    .section-dark .section-copy {
      color: rgba(255, 253, 248, .78);
    }

    .trust-section {
      padding: clamp(34px, 5vw, 58px) 0;
      background:
        radial-gradient(circle at 18% 10%, rgba(240, 166, 41, .22), transparent 30%),
        linear-gradient(135deg, #fffaf0 0%, #f1dfbd 100%);
      border-top: 1px solid rgba(31, 23, 18, .08);
      border-bottom: 1px solid rgba(31, 23, 18, .08);
    }

    .trust-grid {
      width: var(--container);
      margin: 0 auto;
      display: grid;
      grid-template-columns: minmax(340px, 1.15fr) repeat(2, minmax(260px, 1fr));
      gap: 18px;
      align-items: stretch;
    }

    .trust-intro {
      display: grid;
      align-content: center;
      gap: 18px;
      padding-right: 22px;
    }

    .trust-intro h2 {
      margin: 0;
      color: var(--green);
      font-family: "Noto Serif", "Lora", serif;
      font-size: clamp(36px, 3.35vw, 48px);
      line-height: 1.14;
      text-transform: uppercase;
      padding-top: .05em;
      text-wrap: balance;
    }

    .trust-intro h2 .keep-line {
      white-space: nowrap;
    }

    .trust-intro p {
      margin: 0;
      color: var(--muted);
      font-weight: 700;
      line-height: 1.7;
    }

    .cert-card {
      position: relative;
      min-height: 230px;
      overflow: hidden;
      border-radius: var(--radius);
      border: 1px solid rgba(14, 53, 36, .14);
      background: rgba(255, 253, 248, .82);
      box-shadow: 0 18px 36px rgba(36, 24, 15, .11);
      padding: 22px;
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 18px;
      align-items: start;
    }

    .cert-card::after {
      content: "";
      position: absolute;
      right: -58px;
      bottom: -68px;
      width: 172px;
      height: 172px;
      border-radius: 50%;
      background: rgba(240, 166, 41, .16);
    }

    .cert-emblem {
      position: relative;
      z-index: 1;
      width: 94px;
      height: 94px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      color: var(--white);
      box-shadow: 0 16px 32px rgba(14, 53, 36, .22);
    }

    .cert-emblem.vsattp {
      background:
        radial-gradient(circle at 30% 22%, rgba(255, 255, 255, .34), transparent 23%),
        linear-gradient(145deg, #27a86b, #0f6c3d 52%, #0e3524);
      border: 1px solid rgba(216, 229, 200, .58);
      box-shadow: 0 16px 34px rgba(15, 108, 61, .25);
    }

    .cert-emblem.ocop {
      background:
        radial-gradient(circle at 30% 24%, rgba(255, 255, 255, .28), transparent 24%),
        linear-gradient(145deg, #0f6c3d, #0e3524);
    }

    .food-safety-logo {
      position: relative;
      width: 76px;
      height: 76px;
      border-radius: 50%;
      border: 4px solid rgba(216, 229, 200, .92);
      background:
        radial-gradient(circle at 50% 44%, rgba(255, 253, 248, .16), transparent 52%),
        rgba(255, 255, 255, .08);
      display: grid;
      place-items: center;
      text-align: center;
      line-height: 1;
    }

    .food-safety-logo .leaf-mark {
      position: absolute;
      left: 13px;
      top: 11px;
      color: var(--green-soft);
      width: 20px;
      height: 20px;
      transform: rotate(-18deg);
    }

    .food-safety-logo .shield-mark {
      color: var(--white);
      width: 30px;
      height: 30px;
    }

    .ocop-logo {
      width: 76px;
      height: 76px;
      border-radius: 50%;
      border: 4px solid var(--gold);
      display: grid;
      place-items: center;
      text-align: center;
      line-height: 1;
      background: rgba(255, 246, 230, .08);
    }

    .ocop-logo strong {
      color: var(--gold);
      font-size: 18px;
      letter-spacing: 0;
    }

    .ocop-logo span {
      display: block;
      margin-top: 4px;
      color: rgba(255, 253, 248, .88);
      font-size: 9px;
      font-weight: 900;
      text-transform: uppercase;
    }

    .cert-content {
      position: relative;
      z-index: 1;
      display: grid;
      gap: 12px;
    }

    .cert-kicker {
      width: fit-content;
      border-radius: var(--radius);
      background: rgba(14, 53, 36, .08);
      color: var(--green);
      padding: 7px 10px;
      font-size: 11px;
      font-weight: 900;
      text-transform: uppercase;
    }

    .cert-content h3 {
      margin: 0;
      color: var(--green);
      font-size: 24px;
      line-height: 1.2;
    }

    .cert-content p {
      margin: 0;
      color: var(--muted);
      line-height: 1.65;
      font-size: 14px;
      font-weight: 650;
    }

    .cert-points {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 2px;
    }

    .cert-points span {
      border-radius: var(--radius);
      background: rgba(15, 108, 61, .09);
      color: #0f6c3d;
      padding: 8px 10px;
      font-size: 12px;
      font-weight: 900;
    }

    .product-toolbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      margin-bottom: 18px;
    }

    .pill-row {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
    }

    .pill {
      border: 1px solid rgba(14, 53, 36, .22);
      border-radius: var(--radius);
      background: rgba(255, 253, 248, .68);
      color: var(--green);
      padding: 10px 13px;
      font-size: 13px;
      font-weight: 900;
      cursor: pointer;
    }

    .pill.is-active {
      background: var(--green);
      color: var(--white);
      border-color: var(--green);
    }

    .slider-buttons {
      display: flex;
      gap: 8px;
    }

    .slider-btn {
      width: 42px;
      height: 42px;
      border: 1px solid rgba(14, 53, 36, .2);
      border-radius: var(--radius);
      background: var(--white);
      color: var(--green);
      display: grid;
      place-items: center;
      cursor: pointer;
    }

    .products {
      display: grid;
      grid-auto-flow: column;
      grid-auto-columns: minmax(260px, 300px);
      gap: 16px;
      overflow-x: auto;
      overscroll-behavior-inline: contain;
      scroll-snap-type: inline mandatory;
      padding: 2px 2px 18px;
      scrollbar-width: thin;
    }

    .product-card {
      scroll-snap-align: start;
      background: var(--white);
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: 0 18px 36px rgba(36, 24, 15, .12);
      border: 1px solid rgba(31, 23, 18, .08);
      display: grid;
      grid-template-rows: auto 1fr;
    }

    .product-media {
      position: relative;
      overflow: hidden;
      background: var(--paper);
    }

    .product-media img {
      width: 100%;
      aspect-ratio: 16 / 10;
      display: block;
      object-fit: cover;
      object-position: center;
      transition: transform .45s ease;
    }

    .product-card:hover .product-media img {
      transform: scale(1.06);
    }

    .product-card:nth-child(1) .product-media img {
      object-position: center 58%;
    }

    .product-card:nth-child(2) .product-media img {
      object-position: 58% 54%;
    }

    .product-card:nth-child(3) .product-media img {
      object-position: center 50%;
    }

    .product-card:nth-child(4) .product-media img {
      object-position: center 58%;
    }

    .product-card:nth-child(5) .product-media img {
      object-position: 58% 50%;
    }

    .product-card:nth-child(6) .product-media img {
      object-position: center 56%;
    }

    .tag {
      position: absolute;
      left: 12px;
      top: 12px;
      border-radius: var(--radius);
      background: var(--red);
      color: var(--white);
      padding: 7px 10px;
      font-size: 11px;
      font-weight: 900;
      text-transform: uppercase;
    }

    .product-body {
      padding: 18px;
      display: grid;
      gap: 12px;
    }

    .product-body h3 {
      margin: 0;
      font-size: 20px;
      line-height: 1.25;
      color: var(--green);
    }

    .product-body p {
      margin: 0;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.6;
      min-height: 68px;
    }

    .product-foot {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-top: 4px;
    }

    .price {
      display: grid;
      gap: 2px;
    }

    .price span {
      color: var(--muted);
      font-size: 11px;
      font-weight: 800;
      text-transform: uppercase;
    }

    .price strong {
      color: var(--red);
      font-size: 19px;
    }

    .mini-btn {
      width: 42px;
      height: 42px;
      border-radius: var(--radius);
      border: 1px solid rgba(14, 53, 36, .18);
      background: var(--green);
      color: var(--white);
      display: grid;
      place-items: center;
      cursor: pointer;
      transition: transform .2s ease;
    }

    .mini-btn:hover {
      transform: translateY(-2px);
    }

    .story-grid {
      display: grid;
      grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
      gap: clamp(28px, 5vw, 62px);
      align-items: center;
    }

    .story-photo {
      position: relative;
    }

    .story-photo img {
      width: 100%;
      aspect-ratio: 1 / 1.1;
      object-fit: cover;
      border-radius: var(--radius);
      box-shadow: var(--shadow);
    }

    .stamp {
      position: absolute;
      left: -16px;
      bottom: 24px;
      width: 138px;
      min-height: 138px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      text-align: center;
      padding: 16px;
      background: var(--red);
      color: var(--white);
      font-family: "Noto Serif", serif;
      font-size: 23px;
      font-weight: 900;
      line-height: 1;
      box-shadow: 0 18px 42px rgba(123, 33, 26, .35);
      transform: rotate(-9deg);
    }

    .story-content {
      display: grid;
      gap: 22px;
    }

    .story-content .section-title {
      max-width: 780px;
    }

    .story-content p {
      margin: 0;
      line-height: 1.85;
      color: rgba(255, 253, 248, .82);
      font-size: 17px;
    }

    .checks {
      display: grid;
      gap: 12px;
      margin-top: 4px;
    }

    .check-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      color: rgba(255, 253, 248, .88);
      font-weight: 700;
      line-height: 1.55;
    }

    .check-icon {
      flex: 0 0 auto;
      width: 26px;
      height: 26px;
      border: 2px solid var(--gold);
      border-radius: 50%;
      display: grid;
      place-items: center;
      color: var(--gold);
      margin-top: 1px;
    }

    .combo-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 16px;
    }

    .combo-card {
      background: var(--white);
      border-radius: var(--radius);
      overflow: hidden;
      border: 1px solid rgba(31, 23, 18, .09);
      box-shadow: 0 18px 36px rgba(36, 24, 15, .12);
    }

    .combo-card img {
      width: 100%;
      aspect-ratio: 1.2 / .78;
      object-fit: cover;
    }

    .combo-card:nth-child(1) img {
      object-position: 50% 52%;
    }

    .combo-card:nth-child(2) img {
      object-position: 58% 50%;
    }

    .combo-card:nth-child(3) img {
      object-position: 50% 46%;
    }

    .combo-body {
      padding: 20px;
      display: grid;
      gap: 14px;
    }

    .combo-body h3 {
      margin: 0;
      color: var(--green);
      font-size: 22px;
    }

    .combo-body p {
      margin: 0;
      color: var(--muted);
      line-height: 1.65;
    }

    .combo-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .combo-meta span {
      border-radius: var(--radius);
      background: rgba(14, 53, 36, .08);
      color: var(--green);
      padding: 8px 10px;
      font-size: 12px;
      font-weight: 900;
    }

    .process {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 1px;
      background: rgba(255, 253, 248, .16);
      border: 1px solid rgba(255, 255, 255, .16);
      border-radius: var(--radius);
      overflow: hidden;
    }

    .process-step {
      min-height: 220px;
      padding: 26px 24px 24px;
      background: rgba(255, 255, 255, .05);
      display: grid;
      grid-template-rows: 58px 1fr;
      align-content: start;
      gap: 28px;
    }

    .process-step strong {
      color: var(--gold);
      font-family: "Noto Serif", serif;
      font-size: 52px;
      line-height: 1;
    }

    .process-step h3 {
      margin: 0;
      font-size: 21px;
      line-height: 1.25;
    }

    .process-step > div {
      display: grid;
      align-content: start;
      gap: 8px;
    }

    .process-step p {
      margin: 0;
      color: rgba(255, 253, 248, .72);
      line-height: 1.65;
      font-size: 14px;
    }

    .gallery-section {
      position: relative;
      overflow: hidden;
    }

    .gallery-section::before {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      background:
        radial-gradient(circle at 12% 18%, rgba(240, 166, 41, .14), transparent 32%),
        radial-gradient(circle at 90% 72%, rgba(14, 53, 36, .12), transparent 34%);
    }

    .gallery-section .container {
      position: relative;
      z-index: 1;
    }

    .gallery-section .section-title {
      max-width: 760px;
    }

    .gallery-section .title-line {
      display: block;
      white-space: nowrap;
    }

    .product-gallery {
      display: grid;
      grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr) minmax(0, .92fr);
      grid-auto-rows: 210px;
      gap: 14px;
    }

    .gallery-tile {
      position: relative;
      min-height: 0;
      overflow: hidden;
      border-radius: var(--radius);
      background: var(--paper);
      border: 1px solid rgba(31, 23, 18, .1);
      box-shadow: 0 18px 38px rgba(36, 24, 15, .13);
      margin: 0;
    }

    .gallery-tile--feature {
      grid-column: 1;
      grid-row: span 2;
    }

    .gallery-tile--wide {
      grid-column: span 2;
    }

    .gallery-tile:nth-child(5) {
      grid-column: span 2;
    }

    .gallery-tile img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .5s ease, filter .5s ease;
    }

    .gallery-tile:hover img {
      transform: scale(1.045);
      filter: saturate(1.08) contrast(1.04);
    }

    .gallery-tile--thinh img {
      object-position: 58% 50%;
    }

    .gallery-tile--rolls img {
      object-position: 55% 52%;
    }

    .gallery-tile--leaf img {
      object-position: 50% 46%;
    }

    .gallery-caption {
      position: absolute;
      left: 12px;
      right: 12px;
      bottom: 12px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      color: var(--white);
      z-index: 1;
    }

    .gallery-caption::before {
      content: "";
      position: absolute;
      inset: -48px -12px -12px;
      z-index: -1;
      background: linear-gradient(0deg, rgba(8, 31, 20, .82), rgba(8, 31, 20, 0));
    }

    .gallery-caption strong {
      font-size: 16px;
      line-height: 1.25;
      text-shadow: 0 2px 8px rgba(0, 0, 0, .34);
    }

    .gallery-caption span {
      flex: 0 0 auto;
      border-radius: var(--radius);
      background: rgba(240, 166, 41, .92);
      color: #231306;
      padding: 7px 9px;
      font-size: 11px;
      font-weight: 900;
      text-transform: uppercase;
    }

    .order-grid {
      display: grid;
      grid-template-columns: minmax(0, .9fr) minmax(320px, 1fr);
      gap: clamp(28px, 5vw, 58px);
      align-items: center;
    }

    .order-copy {
      display: grid;
      gap: 20px;
    }

    .order-copy .section-title {
      color: var(--green);
    }

    .order-copy p {
      margin: 0;
      line-height: 1.75;
      font-weight: 700;
      color: rgba(37, 20, 5, .78);
    }

    .order-highlights {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
    }

    .highlight {
      border-radius: var(--radius);
      border: 1px solid rgba(37, 20, 5, .16);
      padding: 16px;
      background: rgba(255, 246, 230, .55);
    }

    .highlight strong {
      display: block;
      margin-bottom: 4px;
      font-size: 18px;
    }

    .highlight span {
      color: rgba(37, 20, 5, .68);
      line-height: 1.5;
      font-size: 13px;
      font-weight: 700;
    }

    .order-form {
      background: var(--white);
      border-radius: var(--radius);
      padding: clamp(20px, 3vw, 30px);
      box-shadow: var(--shadow);
      display: grid;
      gap: 16px;
      border: 1px solid rgba(31, 23, 18, .08);
    }

    .form-row {
      display: grid;
      gap: 8px;
    }

    .form-row label {
      color: var(--green);
      font-weight: 900;
      font-size: 13px;
      text-transform: uppercase;
    }

    .form-row input,
    .form-row textarea,
    .form-row select {
      width: 100%;
      border: 1px solid rgba(31, 23, 18, .16);
      border-radius: var(--radius);
      background: #fffaf0;
      color: var(--ink);
      padding: 13px 14px;
      outline: none;
      transition: border-color .2s ease, box-shadow .2s ease;
    }

    .form-row textarea {
      min-height: 112px;
      resize: vertical;
    }

    .form-row input:focus,
    .form-row textarea:focus,
    .form-row select:focus {
      border-color: var(--red);
      box-shadow: 0 0 0 4px rgba(182, 58, 43, .12);
    }

    .form-split {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }

    .form-note {
      color: var(--muted);
      font-size: 13px;
      line-height: 1.6;
      margin: 0;
    }

    .toast {
      display: none;
      border-radius: var(--radius);
      padding: 12px 14px;
      background: rgba(14, 53, 36, .08);
      color: var(--green);
      font-weight: 800;
      line-height: 1.5;
    }

    .toast.is-visible {
      display: block;
    }

    .locations {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 16px;
    }

    .location-card {
      border-radius: var(--radius);
      background: var(--white);
      border: 1px solid rgba(31, 23, 18, .09);
      padding: 22px;
      display: grid;
      gap: 12px;
      box-shadow: 0 18px 36px rgba(36, 24, 15, .1);
    }

    .location-card h3 {
      margin: 0;
      color: var(--green);
      font-size: 21px;
    }

    .location-card p {
      margin: 0;
      color: var(--muted);
      line-height: 1.65;
    }

    .location-card a {
      width: fit-content;
      color: var(--red);
      font-weight: 900;
      text-transform: uppercase;
      font-size: 13px;
    }

    .site-footer {
      background:
        radial-gradient(circle at 12% 8%, rgba(246, 166, 35, .18), transparent 34%),
        linear-gradient(135deg, #1d120c 0%, #10281d 100%);
      color: rgba(255, 253, 248, .82);
      padding: 56px 0 22px;
    }

    .footer-grid {
      width: var(--container);
      margin: 0 auto;
      display: grid;
      grid-template-columns: minmax(280px, 1.35fr) repeat(3, minmax(170px, .75fr));
      gap: 32px;
      align-items: start;
    }

    .footer-brand {
      display: grid;
      gap: 14px;
      max-width: 620px;
    }

    .footer-brand-head {
      display: flex;
      align-items: center;
      gap: 14px;
      flex-wrap: nowrap;
    }

    .footer-logo {
      width: 72px;
      height: 72px;
      object-fit: contain;
      flex: 0 0 auto;
      filter: drop-shadow(0 12px 22px rgba(0, 0, 0, .22));
    }

    .footer-brand strong {
      color: var(--gold);
      font-family: "Noto Serif", serif;
      font-size: clamp(30px, 2.65vw, 40px);
      line-height: .95;
      white-space: nowrap;
    }

    .footer-brand p,
    .footer-note,
    .footer-bottom {
      margin: 0;
      line-height: 1.75;
      font-size: 13px;
    }

    .footer-hotline {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      align-items: center;
    }

    .footer-hotline a,
    .footer-pill {
      border-radius: var(--radius);
      border: 1px solid rgba(255, 255, 255, .16);
      padding: 10px 12px;
      font-weight: 900;
      font-size: 12px;
      text-transform: uppercase;
    }

    .footer-hotline a {
      background: var(--gold);
      color: #1f140c;
      border-color: transparent;
    }

    .footer-col {
      display: grid;
      gap: 12px;
    }

    .footer-col h3 {
      margin: 0;
      color: var(--cream);
      font-size: 12px;
      letter-spacing: .08em;
      text-transform: uppercase;
    }

    .footer-links {
      display: grid;
      gap: 9px;
    }

    .footer-links a,
    .footer-links span {
      color: rgba(255, 253, 248, .76);
      font-size: 13px;
      line-height: 1.45;
    }

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

    .footer-bottom {
      width: var(--container);
      margin: 36px auto 0;
      padding-top: 18px;
      border-top: 1px solid rgba(255, 255, 255, .12);
      display: flex;
      justify-content: space-between;
      gap: 18px;
      flex-wrap: wrap;
      color: rgba(255, 253, 248, .62);
    }

    .mfp-hide,
    #main-menu.mfp-hide,
    .mobile-sidebar.mfp-hide {
      display: none !important;
    }

    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity .55s ease, transform .55s ease;
    }

    .reveal.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    @media (min-width: 1021px) and (max-width: 1500px) {
      .hero-visual {
        width: min(620px, 100%);
        min-height: 500px;
        margin-right: -30px;
      }

      .hero-cutout {
        width: min(650px, 124%);
        max-height: 500px;
        transform: translateX(-4px) translateY(14px) rotate(.4deg);
      }
    }

    @media (max-width: 1020px) {
      .menu-toggle {
        display: grid;
        flex: 0 0 44px;
        align-self: center;
        justify-self: start;
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
        max-width: 44px;
        max-height: 44px;
        margin: 0;
        padding: 0;
        line-height: 1;
        transform: none;
      }

      .main-nav {
        display: none;
      }

      .nav-wrap {
        grid-template-columns: 44px minmax(0, 1fr) auto;
      }

      .brand,
      .brand-text {
        min-width: 0;
      }

      .brand {
        justify-content: flex-start;
      }

      .brand-name {
        overflow: hidden;
        text-overflow: clip;
        white-space: nowrap;
      }

      .nav-actions {
        min-width: 44px;
        justify-content: flex-end;
      }

      .nav-actions .icon-btn {
        flex: 0 0 44px;
      }

      .hero-inner {
        grid-template-columns: 1fr;
        padding-bottom: 46px;
      }

      .hero-visual {
        justify-self: end;
        width: min(820px, 112vw);
        min-height: 430px;
        margin-right: -18vw;
      }

      .hero-cutout {
        width: min(820px, 118vw);
        max-height: 500px;
        transform: translateX(16vw) translateY(10px) rotate(.5deg);
      }

      .quick-order-inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .quick-cell.action {
        grid-column: 1 / -1;
        min-height: 76px;
      }

      .story-grid,
      .order-grid {
        grid-template-columns: 1fr;
      }

      .trust-grid {
        grid-template-columns: 1fr;
      }

      .trust-intro {
        padding-right: 0;
      }

      .combo-grid,
      .locations {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .product-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 190px;
      }

      .gallery-tile,
      .gallery-tile--feature,
      .gallery-tile--wide,
      .gallery-tile:nth-child(5) {
        grid-column: auto;
        grid-row: auto;
      }

      .gallery-tile--feature {
        grid-row: span 2;
      }

      .process {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .footer-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }

      .footer-brand {
        grid-column: 1 / -1;
        max-width: none;
      }
    }

    @media (max-width: 720px) {
      :root {
        --container: min(100% - 28px, 1180px);
      }

      .top-promo {
        display: block;
        font-size: 11px;
        padding: 10px 16px;
        min-height: 0;
        line-height: 1.35;
      }

      .site-header {
        top: 48px;
      }

      .nav-wrap {
        min-height: 68px;
        grid-template-columns: 44px minmax(0, 1fr) 44px;
        gap: 8px;
      }

      .brand {
        gap: 6px;
      }

      .brand-logo {
        width: 38px;
        height: 38px;
      }

      .brand-kicker {
        display: none;
      }

      .brand-name {
        font-size: 22px;
      }

      .nav-actions .btn {
        display: none;
      }

      .hero {
        min-height: auto;
        background-position: center top;
      }

      .hero-inner {
        display: grid;
        grid-template-columns: 1fr;
        gap: 22px;
        padding: 40px 0 28px;
      }

      .hero h1 {
        font-size: clamp(52px, 17vw, 82px);
      }

      .hero-lead {
        font-size: 17px;
      }

      .hero-actions .btn {
        width: 100%;
      }

      .hero-visual {
        position: relative;
        right: auto;
        bottom: auto;
        justify-self: center;
        width: min(440px, 112vw);
        min-height: clamp(190px, 54vw, 280px);
        margin: 0 -12vw 6px;
        z-index: 1;
      }

      .hero-visual::before {
        width: 72%;
        filter: blur(14px);
      }

      .hero-visual::after {
        bottom: 18px;
        left: 15%;
        width: 70%;
        height: 20px;
      }

      .hero-cutout {
        width: min(420px, 98vw);
        max-height: clamp(210px, 62vw, 330px);
        transform: translateX(0) translateY(-2px) rotate(.5deg);
      }

      .hero-stats .stat-chip:nth-child(3) {
        display: none;
      }

      .quick-order-inner,
      .trust-grid,
      .combo-grid,
      .locations,
      .process,
      .product-gallery,
      .order-highlights,
      .form-split {
        grid-template-columns: 1fr;
      }

      .product-gallery {
        grid-auto-rows: auto;
      }

      .gallery-tile,
      .gallery-tile--feature,
      .gallery-tile--wide,
      .gallery-tile:nth-child(5) {
        grid-column: auto;
        grid-row: auto;
      }

      .gallery-tile img {
        aspect-ratio: 1 / .72;
        height: auto;
      }

      .gallery-caption {
        left: 10px;
        right: 10px;
        bottom: 10px;
      }

      .gallery-caption strong {
        font-size: 14px;
      }

      .gallery-caption span {
        padding: 6px 8px;
        font-size: 10px;
      }

      .cert-card {
        min-height: auto;
        grid-template-columns: 76px 1fr;
        padding: 18px;
      }

      .cert-emblem {
        width: 76px;
        height: 76px;
      }

      .ocop-logo {
        width: 62px;
        height: 62px;
      }

      .ocop-logo strong {
        font-size: 15px;
      }

      .quick-cell {
        border-left: 0;
        border-top: 1px solid rgba(35, 19, 6, .13);
      }

      .quick-cell:first-child {
        border-top: 0;
      }

      .section-head,
      .product-toolbar {
        align-items: start;
        flex-direction: column;
      }

      .section-copy {
        align-self: stretch;
        max-width: 100%;
      }

      .slider-buttons {
        display: none;
      }

      .products {
        grid-auto-columns: minmax(245px, 84vw);
      }

      .stamp {
        left: 12px;
        width: 112px;
        min-height: 112px;
        font-size: 18px;
      }

      .process-step {
        min-height: 190px;
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }

      .footer-bottom {
        flex-direction: column;
      }

      .footer-hotline {
        align-items: stretch;
      }

      .footer-hotline a,
      .footer-pill {
        width: fit-content;
      }
    }

    @media (max-width: 380px) {
      .nav-wrap {
        width: calc(100% - 20px);
        grid-template-columns: 42px minmax(0, 1fr) 42px;
        gap: 6px;
      }

      .menu-toggle,
      .icon-btn,
      .nav-actions .icon-btn {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
      }

      .brand-logo {
        width: 34px;
        height: 34px;
      }

      .brand-name {
        font-size: 18px;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      *,
      *::before,
      *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
      }
    }
