/* LOB 02 - Breakfast Cereals (Wholesale)
   Extracted verbatim from <style>
   in design file lob-02-cereals-wholesale.html (block 1 of 3).
   Load order matters -- keep the numeric prefix. */

    /* ============================================================
   SPOONCRAFT FOODS — shared design system  (LOB pages)
   Built to match the landing-page mockup. Each page sets
   --accent / --accent-2 / --accent-soft for its own identity.
   ============================================================ */
    :root {
      --panel: #ece4d4;
      --panel-ink: #2a251c;
      --panel-sub: #6f6656;
      --panel-div: rgba(28, 22, 17, .16);
      --badge: #7e9a6e;
      --ink: #1c1611;
      --ink-soft: #473b30;
      --cream: #fbf6ee;
      --cream-2: #f4ecdf;
      --paper: #ffffff;
      --amber: #e85d1f;
      --amber-2: #f4933a;
      --amber-deep: #bf4310;
      --honey: #f2a65a;
      --muted: #8c7f70;
      --muted-2: #a99c8c;
      --line: rgba(28, 22, 17, .10);
      --line-2: rgba(28, 22, 17, .06);
      --sky: #9dc7dd;
      --leaf: #a6cfa0;
      --bloom: #f0b8c4;
      --sun: #f3d58a;
      --lilac: #cabceb;
      --mint: #bde3d2;
      --sky-d: #3f7d9c;
      --leaf-d: #4f8a54;
      --bloom-d: #c25d77;
      --sun-d: #b88a1c;
      --lilac-d: #6f57aa;
      --mint-d: #3f8f74;
      --shadow-sm: 0 1px 2px rgba(28, 22, 17, .05), 0 4px 14px rgba(28, 22, 17, .05);
      --shadow: 0 8px 30px rgba(28, 22, 17, .09), 0 2px 8px rgba(28, 22, 17, .05);
      --shadow-lg: 0 30px 80px rgba(28, 22, 17, .16), 0 8px 24px rgba(28, 22, 17, .08);
      --r-sm: 14px;
      --r: 22px;
      --r-lg: 34px;
      --r-xl: 46px;
      --ease: cubic-bezier(.22, .61, .36, 1);
      --ease-in-out: cubic-bezier(.65, .05, .36, 1);
      --shell: 1240px;
      --display: "Fraunces", Georgia, serif;
      --sans: "DM Sans", system-ui, sans-serif;
      --mono: "DM Mono", ui-monospace, monospace;
      /* defaults; overridden per page */
      --accent: #223a2c;
      --accent-2: #f4933a;
      --accent-soft: #f3d58a;
      --accent-deep: #223a2c;
    }

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

    html {
      scroll-behavior: smooth;
      -webkit-text-size-adjust: 100%
    }

    body {
      font-family: var(--sans);
      background: var(--cream);
      color: var(--ink);
      line-height: 1.6;
      font-size: 17px;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
      font-optical-sizing: auto;
    }

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

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

    button {
      font-family: inherit;
      cursor: pointer;
      border: none;
      background: none;
      color: inherit
    }

    ::selection {
      background: var(--accent);
      color: #fff
    }

    h1,
    h2,
    h3,
    h4 {
      font-family: var(--display);
      font-weight: 400;
      line-height: 1.05;
      letter-spacing: -.02em
    }

    .shell {
      max-width: var(--shell);
      margin: 0 auto;
      padding: 0 28px;
      width: 100%
    }

    .shell-narrow {
      max-width: 980px
    }

    .eyebrow {
      font-family: var(--mono);
      font-size: 12px;
      font-weight: 500;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: var(--accent-deep);
      display: inline-flex;
      align-items: center;
      gap: 10px;
    }

    .eyebrow::before {
      content: "";
      width: 22px;
      height: 1.5px;
      background: var(--accent);
      display: inline-block
    }

    .eyebrow.center {
      justify-content: center
    }

    .eyebrow.center::before {
      display: none
    }

    .eyebrow.light {
      color: var(--accent-soft)
    }

    /* ---- buttons ---- */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      font-family: var(--sans);
      font-weight: 600;
      font-size: 15px;
      letter-spacing: .01em;
      padding: 15px 26px;
      border-radius: 100px;
      transition: transform .4s var(--ease), box-shadow .4s var(--ease), background .3s;
      white-space: nowrap;
      position: relative;
      min-height: 48px;
    }

    .btn svg {
      width: 17px;
      height: 17px;
      transition: transform .4s var(--ease)
    }

    .btn-primary {
      background: var(--accent);
      color: #fff;
      box-shadow: 0 10px 26px -8px color-mix(in srgb, var(--accent) 70%, transparent)
    }

    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 18px 38px -10px var(--accent)
    }

    .btn-primary:hover svg {
      transform: translateX(4px)
    }

    .btn-ghost {
      background: rgba(28, 22, 17, .04);
      color: var(--ink);
      border: 1px solid var(--line)
    }

    .btn-ghost:hover {
      background: rgba(28, 22, 17, .08);
      transform: translateY(-3px)
    }

    .btn-light {
      background: #fff;
      color: var(--ink);
      box-shadow: var(--shadow-sm)
    }

    .btn-light:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow)
    }

    .btn-dark {
      background: var(--ink);
      color: var(--cream)
    }

    .btn-dark:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow)
    }

    .btn-outline-light {
      border: 1px solid rgba(255, 255, 255, .28);
      color: #fff
    }

    .btn-outline-light:hover {
      background: rgba(255, 255, 255, .1);
      transform: translateY(-3px)
    }

    .btn-wa {
      background: #1faf54;
      color: #fff;
      box-shadow: 0 10px 26px -10px rgba(31, 175, 84, .7)
    }

    .btn-wa:hover {
      transform: translateY(-3px);
      box-shadow: 0 16px 34px -10px rgba(31, 175, 84, .85)
    }

    /* reveal */
    .reveal {
      opacity: 0;
      transform: translateY(34px);
      transition: opacity 1s var(--ease), transform 1s var(--ease)
    }

    .reveal.in {
      opacity: 1;
      transform: none
    }

    .reveal[data-d="1"] {
      transition-delay: .07s
    }

    .reveal[data-d="2"] {
      transition-delay: .14s
    }

    .reveal[data-d="3"] {
      transition-delay: .21s
    }

    .reveal[data-d="4"] {
      transition-delay: .28s
    }

    .reveal[data-d="5"] {
      transition-delay: .35s
    }

    @media (prefers-reduced-motion:reduce) {
      * {
        animation: none !important;
        transition-duration: .01ms !important
      }

      html {
        scroll-behavior: auto
      }

      .reveal {
        opacity: 1;
        transform: none
      }
    }

    /* ============================== NAV ============================== */
    .nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      padding: 18px 0;
      transition: padding .5s var(--ease), background .5s, box-shadow .5s, border-color .5s;
      border-bottom: 1px solid transparent
    }

    .nav.scrolled {
      padding: 11px 0;
    }

    .nav-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-shrink: 0
    }

    .brand-mark {
      width: 42px;
      height: 42px;
      border-radius: 13px;
      flex-shrink: 0;
      background: linear-gradient(145deg, var(--amber), var(--amber-deep));
      display: grid;
      place-items: center;
      box-shadow: 0 6px 16px -6px rgba(232, 93, 31, .7)
    }

    .brand-mark svg {
      width: 23px;
      height: 23px
    }

    .brand-txt {
      display: flex;
      flex-direction: column;
      line-height: 1
    }

    .brand-txt b {
      font-family: var(--display);
      font-size: 19px;
      font-weight: 500;
      letter-spacing: -.01em
    }

    .brand-txt span {
      font-family: var(--mono);
      font-size: 10px;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--muted);
      margin-top: 3px
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 4px
    }

    .nav-links a {
      font-size: 14.5px;
      font-weight: 500;
      padding: 9px 15px;
      border-radius: 100px;
      transition: background .25s, color .25s
    }

    .nav-links a:hover,
    .nav-links a.active {
      background: rgba(28, 22, 17, .05);
    }

    .nav-cta {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-shrink: 0
    }

    .nav-cta .btn {
      padding: 11px 20px;
      min-height: 42px;
      font-size: 14px
    }

    .burger {
      display: none;
      width: 44px;
      height: 44px;
      border-radius: 12px;
      border: 1px solid var(--line);
      flex-direction: column;
      gap: 5px;
      align-items: center;
      justify-content: center
    }

    .burger span {
      width: 18px;
      height: 2px;
      background: var(--ink);
      border-radius: 2px;
      transition: .3s
    }

    .mobile-menu {
      position: fixed;
      inset: 0;
      z-index: 99;
      background: rgba(251, 246, 238, .97);
      -webkit-backdrop-filter: blur(20px);
      backdrop-filter: blur(20px);
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 0 28px;
      gap: 4px;
      transform: translateY(-100%);
      transition: transform .5s var(--ease);
      pointer-events: none
    }

    .mobile-menu.open {
      transform: none;
      pointer-events: auto
    }

    .mobile-menu a {
      font-family: var(--display);
      font-size: 30px;
      font-weight: 400;
      padding: 11px 0;
      border-bottom: 1px solid var(--line)
    }

    .mobile-menu .btn {
      margin-top: 24px;
      justify-content: center
    }

    /* ============================== SECTIONS ============================== */
    .section {
      position: relative;
      padding: clamp(76px, 10vw, 140px) 0
    }

    .section.tight {
      padding: clamp(56px, 7vw, 96px) 0
    }

    .section.cream-2 {
      background: var(--cream-2)
    }

    .section.paper {
      background: var(--paper)
    }

    .sec-head {
      max-width: 760px;
      margin-bottom: 60px
    }

    .sec-head.center {
      margin-left: auto;
      margin-right: auto;
      text-align: center
    }

    .sec-head h2 {
      font-size: clamp(30px, 4.4vw, 54px);
      font-weight: 300;
      margin: 20px 0 18px;
      letter-spacing: -.03em
    }

    .sec-head h2 em {
      font-style: italic;
      color: var(--accent-deep)
    }

    .sec-head p {
      font-size: clamp(16px, 1.4vw, 19px);
      color: var(--ink-soft)
    }

    /* ============================== BREADCRUMB ============================== */
    .crumb {
      display: flex;
      align-items: center;
      gap: 9px;
      flex-wrap: wrap;
      font-family: var(--mono);
      font-size: 12px;
      letter-spacing: .04em;
      color: var(--muted);
      margin-bottom: 26px
    }

    .crumb a {
      color: var(--muted);
      transition: color .25s
    }

    .crumb a:hover {
      color: var(--accent-deep)
    }

    .crumb .sep {
      opacity: .5
    }

    .crumb b {
      color: var(--ink-soft);
      font-weight: 500
    }

    /* ============================== LOB HERO ============================== */
    .lhero {
      position: relative;
      padding: 140px 0 0;
      overflow: hidden
    }

    .lhero-bg {
      position: absolute;
      inset: 0;
      z-index: 0;
      overflow: hidden
    }

    .lhero-mesh {
      position: absolute;
      inset: -25%;
      background:
        radial-gradient(38% 48% at 16% 26%, color-mix(in srgb, var(--accent-2) 42%, transparent), transparent 70%),
        radial-gradient(34% 44% at 86% 18%, color-mix(in srgb, var(--accent-soft) 60%, transparent), transparent 70%),
        radial-gradient(44% 50% at 78% 80%, color-mix(in srgb, var(--accent) 26%, transparent), transparent 72%);
      filter: blur(10px);
      animation: meshDrift 28s var(--ease-in-out) infinite alternate
    }

    @keyframes meshDrift {
      0% {
        transform: translate3d(0, 0, 0) scale(1)
      }

      100% {
        transform: translate3d(2%, -2%, 0) scale(1.08)
      }
    }

    .grain {
      position: absolute;
      inset: 0;
      opacity: .5;
      mix-blend-mode: multiply;
      pointer-events: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.05'/%3E%3C/svg%3E")
    }

    .lhero-inner {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      gap: clamp(30px, 5vw, 70px);
      align-items: center;
      padding-bottom: clamp(60px, 7vw, 96px)
    }

    .lhero-copy h1 {
      font-size: clamp(40px, 6vw, 76px);
      font-weight: 300;
      letter-spacing: -.035em;
      margin: 22px 0 0
    }

    .lhero-copy h1 em {
      font-style: italic;
      color: var(--accent-deep)
    }

    .lhero-tag {
      font-size: clamp(17px, 1.7vw, 21px);
      color: var(--ink-soft);
      margin-top: 24px;
      max-width: 46ch
    }

    .lhero-actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      margin-top: 36px
    }

    .geo-pill {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      background: var(--paper);
      border: 1px solid var(--line);
      border-radius: 100px;
      padding: 9px 17px 9px 13px;
      font-size: 13.5px;
      font-weight: 500;
      color: var(--ink-soft);
      box-shadow: var(--shadow-sm);
      margin-top: 30px
    }

    .geo-pill svg {
      width: 15px;
      height: 15px;
      color: var(--accent-deep)
    }

    .geo-pill b {
      color: var(--ink);
      font-weight: 600
    }

    /* placeholder image blocks */
    .ph {
      position: relative;
      border-radius: var(--r-lg);
      overflow: hidden;
      background:
        linear-gradient(135deg, color-mix(in srgb, var(--accent-soft) 70%, #fff), color-mix(in srgb, var(--accent-2) 38%, #fff));
      border: 1px solid color-mix(in srgb, var(--accent) 22%, transparent);
      display: grid;
      place-items: center;
      box-shadow: var(--shadow);
      isolation: isolate
    }

    .ph::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(60% 60% at 30% 25%, rgba(255, 255, 255, .55), transparent 70%);
      mix-blend-mode: soft-light
    }

    .ph .ph-lbl {
      position: relative;
      z-index: 1;
      font-family: var(--mono);
      font-size: 11px;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: color-mix(in srgb, var(--accent-deep) 80%, var(--ink));
      text-align: center;
      padding: 10px 14px;
      line-height: 1.5
    }

    .ph .ph-ico {
      width: 34px;
      height: 34px;
      margin: 0 auto 10px;
      display: block;
      opacity: .55;
      color: var(--accent-deep)
    }

    .ph.sq {
      aspect-ratio: 1/1
    }

    .ph.wide {
      aspect-ratio: 16/9
    }

    .ph.portrait {
      aspect-ratio: 4/5
    }

    .ph.banner {
      aspect-ratio: 21/9
    }

    .lhero-art {
      position: relative
    }

    .lhero-art .ph {
      aspect-ratio: 5/6;
      width: 100%
    }

    .lhero-chip {
      position: absolute;
      background: var(--paper);
      border: 1px solid var(--line);
      border-radius: 16px;
      padding: 13px 17px;
      box-shadow: var(--shadow-lg);
      display: flex;
      align-items: center;
      gap: 11px
    }

    .lhero-chip svg {
      width: 24px;
      height: 24px;
      color: var(--accent-deep);
      flex-shrink: 0
    }

    .lhero-chip b {
      font-size: 14px;
      display: block;
      line-height: 1.2
    }

    .lhero-chip small {
      font-size: 11.5px;
      color: var(--muted)
    }

    .lhero-chip.c1 {
      top: 18%;
      left: -26px;
      animation: floaty 6s var(--ease-in-out) infinite alternate
    }

    .lhero-chip.c2 {
      bottom: 14%;
      right: -22px;
      animation: floaty 7s var(--ease-in-out) .6s infinite alternate
    }

    @keyframes floaty {
      0% {
        transform: translateY(0)
      }

      100% {
        transform: translateY(-12px)
      }
    }

    /* ============================== BADGE / CLEAN-LABEL ROW ============================== */
    .clean-row {
      display: flex;
      flex-wrap: wrap;
      gap: 11px;
      margin-top: 8px
    }

    .clean-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--paper);
      border: 1px solid var(--line);
      border-radius: 100px;
      padding: 10px 18px;
      font-size: 14px;
      font-weight: 500;
      box-shadow: var(--shadow-sm)
    }

    .clean-pill svg {
      width: 15px;
      height: 15px;
      color: var(--mint-d)
    }

    .trust-strip {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      justify-content: center
    }

    .trust-badge {
      display: flex;
      align-items: center;
      gap: 13px;
      background: var(--paper);
      border: 1px solid var(--line);
      border-radius: var(--r);
      padding: 18px 26px;
      box-shadow: var(--shadow-sm)
    }

    .trust-badge .ic {
      width: 44px;
      height: 44px;
      border-radius: 13px;
      display: grid;
      place-items: center;
      background: color-mix(in srgb, var(--accent-soft) 55%, #fff)
    }

    .trust-badge .ic svg {
      width: 22px;
      height: 22px;
      color: var(--accent-deep)
    }

    .trust-badge b {
      font-size: 15.5px;
      display: block
    }

    .trust-badge small {
      font-size: 12.5px;
      color: var(--muted)
    }

    /* ============================== PRODUCT GRID ============================== */
    .pgrid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(248px, 1fr));
      gap: 22px
    }

    .pgrid.cols-3 {
      grid-template-columns: repeat(3, 1fr)
    }

    .pgrid.cols-2 {
      grid-template-columns: repeat(2, 1fr)
    }

    .pcard {
      background: var(--paper);
      border: 1px solid var(--line);
      border-radius: var(--r-lg);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      transition: transform .5s var(--ease), box-shadow .5s var(--ease);
      display: flex;
      flex-direction: column
    }

    .pcard:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-lg)
    }

    .pcard .ph {
      border-radius: 0;
      box-shadow: none;
      border: none;
      border-bottom: 1px solid var(--line-2)
    }

    .pcard-body {
      padding: 22px 22px 24px;
      display: flex;
      flex-direction: column;
      gap: 9px;
      flex: 1
    }

    .pcard-body h3 {
      font-size: 21px
    }

    .pcard-tag {
      font-family: var(--mono);
      font-size: 10.5px;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--accent-deep);
      font-weight: 500
    }

    .pcard-body p {
      font-size: 14px;
      color: var(--ink-soft);
      flex: 1
    }

    .pcard-foot {
      font-size: 12.5px;
      color: var(--muted);
      padding-top: 6px;
      border-top: 1px solid var(--line-2);
      margin-top: 4px
    }

    /* ============================== FEATURE SPLIT ============================== */
    .fsplit {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(34px, 5vw, 76px);
      align-items: center
    }

    .fsplit.flip .fsplit-art {
      order: 2
    }

    .fsplit-copy h2 {
      font-size: clamp(28px, 3.6vw, 46px);
      font-weight: 300;
      letter-spacing: -.025em;
      margin: 18px 0 16px
    }

    .fsplit-copy h2 em {
      font-style: italic;
      color: var(--accent-deep)
    }

    .fsplit-copy p {
      color: var(--ink-soft);
      margin-bottom: 14px
    }

    .fsplit-list {
      list-style: none;
      margin-top: 22px;
      display: flex;
      flex-direction: column;
      gap: 14px
    }

    .fsplit-list li {
      display: flex;
      gap: 13px;
      align-items: flex-start;
      font-size: 15.5px
    }

    .fsplit-list .tick {
      width: 26px;
      height: 26px;
      border-radius: 8px;
      flex-shrink: 0;
      display: grid;
      place-items: center;
      background: color-mix(in srgb, var(--accent-soft) 55%, #fff);
      margin-top: 1px
    }

    .fsplit-list .tick svg {
      width: 14px;
      height: 14px;
      color: var(--accent-deep)
    }

    .fsplit-list li b {
      font-weight: 600
    }

    .fsplit-art .ph {
      width: 100%
    }

    /* ============================== USE-CASE GRID ============================== */
    .ucgrid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
      gap: 16px
    }

    .uc {
      background: var(--paper);
      border: 1px solid var(--line);
      border-radius: var(--r);
      padding: 24px 22px;
      transition: transform .4s var(--ease), border-color .4s;
      display: flex;
      flex-direction: column;
      gap: 12px
    }

    .uc:hover {
      transform: translateY(-4px);
      border-color: color-mix(in srgb, var(--accent) 40%, transparent)
    }

    .uc .ic {
      width: 46px;
      height: 46px;
      border-radius: 13px;
      display: grid;
      place-items: center;
      background: color-mix(in srgb, var(--accent-soft) 50%, #fff)
    }

    .uc .ic svg {
      width: 23px;
      height: 23px;
      color: var(--accent-deep)
    }

    .uc h4 {
      font-size: 17px
    }

    .uc p {
      font-size: 13.5px;
      color: var(--ink-soft)
    }

    /* ============================== COMPARISON TABLE ============================== */
    .ctable {
      width: 100%;
      border-collapse: separate;
      border-spacing: 0;
      background: var(--paper);
      border: 1px solid var(--line);
      border-radius: var(--r-lg);
      overflow: hidden;
      box-shadow: var(--shadow-sm)
    }

    .ctable th,
    .ctable td {
      padding: 18px 22px;
      text-align: left;
      font-size: 15px;
      border-bottom: 1px solid var(--line-2)
    }

    .ctable thead th {
      font-family: var(--mono);
      font-size: 11px;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--muted);
      background: var(--cream-2);
      font-weight: 500
    }

    .ctable thead th.us {
      color: var(--accent-deep)
    }

    .ctable tbody tr:last-child td {
      border-bottom: none
    }

    .ctable td.us {
      font-weight: 600;
      color: var(--ink)
    }

    .ctable td.them {
      color: var(--muted)
    }

    .ctable .row-h {
      font-weight: 600
    }

    .ctable td .yes {
      color: var(--mint-d);
      font-weight: 700
    }

    .ctable td .no {
      color: var(--bloom-d)
    }

    /* ============================== MOQ / PRICING ============================== */
    .moq-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 18px
    }

    .moq-card {
      background: var(--paper);
      border: 1px solid var(--line);
      border-radius: var(--r-lg);
      padding: 30px 28px;
      box-shadow: var(--shadow-sm);
      position: relative;
      overflow: hidden
    }

    .moq-card .k {
      font-family: var(--mono);
      font-size: 11px;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--muted)
    }

    .moq-card .v {
      font-family: var(--display);
      font-size: clamp(34px, 4vw, 46px);
      font-weight: 300;
      color: var(--accent-deep);
      letter-spacing: -.03em;
      margin: 10px 0 6px
    }

    .moq-card p {
      font-size: 14px;
      color: var(--ink-soft)
    }

    /* ============================== PROCESS STRIP (freeze-dry infographic) ============================== */
    .pstrip {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
      position: relative
    }

    .pstep {
      background: var(--paper);
      border: 1px solid var(--line);
      border-radius: var(--r-lg);
      padding: 28px 24px;
      box-shadow: var(--shadow-sm);
      position: relative;
      overflow: hidden
    }

    .pstep::before {
      content: "";
      position: absolute;
      inset: 0 0 auto 0;
      height: 4px;
      background: linear-gradient(90deg, var(--accent), var(--accent-2))
    }

    .pstep .num {
      font-family: var(--mono);
      font-size: 12px;
      letter-spacing: .1em;
      color: var(--accent-deep);
      font-weight: 500
    }

    .pstep .ph-ico {
      width: 40px;
      height: 40px;
      margin: 14px 0;
      color: var(--accent-deep);
      opacity: .85
    }

    .pstep h4 {
      font-size: 19px;
      margin-bottom: 8px
    }

    .pstep p {
      font-size: 13.5px;
      color: var(--ink-soft)
    }

    .pstep .arrow {
      position: absolute;
      right: -13px;
      top: 50%;
      transform: translateY(-50%);
      z-index: 2;
      width: 26px;
      height: 26px;
      border-radius: 50%;
      background: var(--accent);
      display: grid;
      place-items: center;
      box-shadow: var(--shadow-sm)
    }

    .pstep .arrow svg {
      width: 13px;
      height: 13px;
      color: #fff
    }

    .pstep:last-child .arrow {
      display: none
    }

    .result-band {
      margin-top: 26px;
      background: linear-gradient(135deg, var(--ink), #2a221a);
      color: var(--cream);
      border-radius: var(--r-lg);
      padding: 30px 34px;
      display: flex;
      align-items: center;
      gap: 24px;
      flex-wrap: wrap;
      justify-content: space-between
    }

    .result-band .big {
      font-family: var(--display);
      font-size: clamp(38px, 5vw, 62px);
      font-weight: 300;
      color: var(--accent-2);
      letter-spacing: -.03em;
      line-height: 1
    }

    .result-band p {
      max-width: 42ch;
      color: rgba(251, 246, 238, .8);
      font-size: 15px
    }

    /* ============================== PREP STEPS (numbered flow) ============================== */
    .prep {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px
    }

    .prep-step {
      text-align: center;
      padding: 8px
    }

    .prep-step .circle {
      width: 64px;
      height: 64px;
      border-radius: 50%;
      margin: 0 auto 16px;
      display: grid;
      place-items: center;
      background: color-mix(in srgb, var(--accent-soft) 55%, #fff);
      border: 1px solid color-mix(in srgb, var(--accent) 25%, transparent);
      font-family: var(--display);
      font-size: 26px;
      color: var(--accent-deep)
    }

    .prep-step h4 {
      font-size: 16px;
      margin-bottom: 6px
    }

    .prep-step p {
      font-size: 13px;
      color: var(--ink-soft)
    }

    /* ============================== SPEC TABLE (key:value) ============================== */
    .spec {
      background: var(--paper);
      border: 1px solid var(--line);
      border-radius: var(--r-lg);
      overflow: hidden;
      box-shadow: var(--shadow-sm)
    }

    .spec .row {
      display: grid;
      grid-template-columns: 200px 1fr;
      gap: 0;
      border-bottom: 1px solid var(--line-2)
    }

    .spec .row:last-child {
      border-bottom: none
    }

    .spec .k {
      padding: 16px 22px;
      font-family: var(--mono);
      font-size: 11.5px;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--muted);
      background: var(--cream-2)
    }

    .spec .v {
      padding: 16px 22px;
      font-size: 15px;
      color: var(--ink)
    }

    .spec .v b {
      font-weight: 600
    }

    /* ============================== INGREDIENT CHIPS ============================== */
    .ing-row {
      display: flex;
      flex-wrap: wrap;
      gap: 12px
    }

    .ing {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 9px;
      width: 96px;
      text-align: center
    }

    .ing .dot {
      width: 62px;
      height: 62px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: color-mix(in srgb, var(--accent-soft) 50%, #fff);
      border: 1px solid var(--line)
    }

    .ing .dot svg {
      width: 28px;
      height: 28px;
      color: var(--accent-deep)
    }

    .ing span {
      font-size: 12.5px;
      color: var(--ink-soft);
      font-weight: 500
    }

    /* ============================== OCCASION GRID ============================== */
    .occ-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 14px
    }

    .occ {
      position: relative;
      border-radius: var(--r);
      overflow: hidden;
      min-height: 150px;
      display: flex;
      align-items: flex-end;
      padding: 20px;
      color: #fff;
      background: linear-gradient(160deg, var(--accent-2), var(--accent-deep));
      box-shadow: var(--shadow-sm)
    }

    .occ:nth-child(2) {
      background: linear-gradient(160deg, var(--lilac), var(--lilac-d))
    }

    .occ:nth-child(3) {
      background: linear-gradient(160deg, var(--bloom), var(--bloom-d))
    }

    .occ:nth-child(4) {
      background: linear-gradient(160deg, var(--sky), var(--sky-d))
    }

    .occ:nth-child(5) {
      background: linear-gradient(160deg, var(--mint), var(--mint-d))
    }

    .occ h4 {
      font-size: 19px;
      color: #fff;
      position: relative;
      z-index: 1
    }

    .occ::after {
      content: "";
      position: absolute;
      right: -30px;
      top: -30px;
      width: 120px;
      height: 120px;
      border-radius: 50%;
      background: rgba(255, 255, 255, .14)
    }

    /* ============================== MENU CATEGORY ============================== */
    .menu-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px
    }

    .menu-cat {
      background: var(--paper);
      border: 1px solid var(--line);
      border-radius: var(--r-lg);
      overflow: hidden;
      box-shadow: var(--shadow-sm)
    }

    .menu-cat-head {
      padding: 22px 24px;
      display: flex;
      align-items: center;
      gap: 12px;
      border-bottom: 1px solid var(--line-2);
      background: color-mix(in srgb, var(--accent-soft) 32%, #fff)
    }

    .menu-cat-head .em {
      font-size: 24px
    }

    .menu-cat-head h4 {
      font-size: 19px
    }

    .menu-cat ul {
      list-style: none;
      padding: 20px 24px 24px;
      display: flex;
      flex-direction: column;
      gap: 10px
    }

    .menu-cat li {
      font-size: 14.5px;
      color: var(--ink-soft);
      display: flex;
      gap: 9px;
      align-items: flex-start
    }

    .menu-cat li::before {
      content: "";
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--accent);
      margin-top: 9px;
      flex-shrink: 0
    }

    /* client mentions */
    .client-row {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      align-items: center
    }

    .client {
      font-family: var(--display);
      font-size: clamp(20px, 2.4vw, 30px);
      font-weight: 400;
      color: var(--ink-soft);
      padding: 14px 28px;
      border: 1px solid var(--line);
      border-radius: var(--r);
      background: var(--paper)
    }

    /* ============================== CTA BAND ============================== */
    .cta-band {
      position: relative;
      overflow: hidden;
      border-radius: var(--r-xl);
      background: linear-gradient(135deg, var(--accent), var(--accent-deep));
      color: #fff;
      padding: clamp(40px, 6vw, 76px);
      text-align: center;
      box-shadow: 0 36px 80px -34px var(--accent)
    }

    .cta-band::after {
      content: "";
      position: absolute;
      right: -70px;
      top: -70px;
      width: 320px;
      height: 320px;
      border-radius: 50%;
      background: rgba(255, 255, 255, .12)
    }

    .cta-band::before {
      content: "";
      position: absolute;
      left: -60px;
      bottom: -80px;
      width: 260px;
      height: 260px;
      border-radius: 50%;
      background: rgba(255, 255, 255, .08)
    }

    .cta-band h2 {
      font-size: clamp(30px, 4.4vw, 52px);
      font-weight: 300;
      color: #fff;
      letter-spacing: -.03em;
      position: relative;
      z-index: 1;
      max-width: 18ch;
      margin: 0 auto
    }

    .cta-band p {
      position: relative;
      z-index: 1;
      color: rgba(255, 255, 255, .88);
      margin: 18px auto 0;
      max-width: 52ch
    }

    .cta-band .cta-actions {
      position: relative;
      z-index: 1;
      display: flex;
      gap: 14px;
      justify-content: center;
      flex-wrap: wrap;
      margin-top: 34px
    }

    /* ============================== ENQUIRY (B2B) ============================== */
    .enquiry {
      background: var(--ink);
      color: var(--cream);
      position: relative;
      overflow: hidden
    }

    .enquiry-mesh {
      position: absolute;
      inset: 0;
      opacity: .5;
      background:
        radial-gradient(40% 60% at 80% 20%, color-mix(in srgb, var(--accent) 30%, transparent), transparent 70%),
        radial-gradient(40% 60% at 10% 90%, color-mix(in srgb, var(--accent-2) 22%, transparent), transparent 70%)
    }

    .enquiry-grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(34px, 5vw, 70px);
      align-items: center
    }

    .enquiry-info h2 {
      font-size: clamp(30px, 4vw, 50px);
      font-weight: 300;
      color: var(--cream);
      letter-spacing: -.03em
    }

    .enquiry-info h2 em {
      font-style: italic;
      color: var(--accent-2)
    }

    .enquiry-info p {
      color: rgba(251, 246, 238, .72);
      margin-top: 18px;
      max-width: 44ch
    }

    .cinfo-list {
      display: flex;
      flex-direction: column;
      gap: 18px;
      margin-top: 34px
    }

    .cinfo {
      display: flex;
      align-items: center;
      gap: 15px
    }

    .cinfo .ic {
      width: 46px;
      height: 46px;
      border-radius: 13px;
      background: rgba(255, 255, 255, .06);
      border: 1px solid rgba(255, 255, 255, .12);
      display: grid;
      place-items: center;
      flex-shrink: 0
    }

    .cinfo .ic svg {
      width: 21px;
      height: 21px;
      color: var(--accent-2)
    }

    .cinfo b {
      font-size: 15.5px;
      display: block
    }

    .cinfo small {
      color: rgba(251, 246, 238, .6);
      font-size: 13px
    }

    .form-panel {
      background: rgba(255, 255, 255, .06);
      -webkit-backdrop-filter: blur(20px);
      backdrop-filter: blur(20px);
      border: 1px solid rgba(255, 255, 255, .12);
      border-radius: var(--r-lg);
      padding: clamp(28px, 3vw, 42px);
      box-shadow: var(--shadow-lg)
    }

    .form-tag {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      background: color-mix(in srgb, var(--accent) 22%, transparent);
      border: 1px solid color-mix(in srgb, var(--accent) 40%, transparent);
      border-radius: 100px;
      padding: 8px 16px;
      font-size: 12.5px;
      font-weight: 600;
      color: var(--accent-2);
      margin-bottom: 22px
    }

    .fgroup {
      margin-bottom: 18px
    }

    .frow {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px
    }

    .flabel {
      display: block;
      font-size: 12.5px;
      font-weight: 600;
      letter-spacing: .02em;
      margin-bottom: 8px;
      color: rgba(251, 246, 238, .85)
    }

    .finput {
      width: 100%;
      padding: 14px 16px;
      border-radius: 13px;
      background: rgba(255, 255, 255, .06);
      border: 1px solid rgba(255, 255, 255, .14);
      color: var(--cream);
      font-family: var(--sans);
      font-size: 15px;
      transition: border-color .3s, background .3s
    }

    .finput::placeholder {
      color: rgba(251, 246, 238, .4)
    }

    .finput:focus {
      outline: none;
      border-color: var(--accent-2);
      background: rgba(255, 255, 255, .1)
    }

    select.finput {
      appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' stroke='%23f2a65a' stroke-width='2'%3E%3Cpath d='M3 5l4 4 4-4'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 16px center
    }

    textarea.finput {
      resize: vertical;
      min-height: 90px
    }

    .form-panel .btn {
      width: 100%;
      justify-content: center;
      margin-top: 8px
    }

    .form-note {
      font-size: 12px;
      color: rgba(251, 246, 238, .5);
      margin-top: 14px;
      text-align: center
    }

    .form-ok {
      display: none;
      text-align: center;
      padding: 30px 0
    }

    .form-ok.show {
      display: block
    }

    .form-panel.sent .form-fields {
      display: none
    }

    .form-ok .ok-ic {
      width: 64px;
      height: 64px;
      border-radius: 50%;
      background: rgba(166, 207, 160, .18);
      display: grid;
      place-items: center;
      margin: 0 auto 18px
    }

    .form-ok h3 {
      font-size: 26px;
      color: var(--cream);
      margin-bottom: 8px
    }

    .form-ok p {
      color: rgba(251, 246, 238, .7);
      font-size: 14.5px
    }

    /* ============================== FOOTER ============================== */
    .footer {
      background: #15110d;
      color: rgba(251, 246, 238, .7);
      padding: 70px 0 34px
    }

    .foot-grid {
      display: grid;
      grid-template-columns: 1.6fr 1fr 1fr 1fr;
      gap: 40px;
      padding-bottom: 48px;
      border-bottom: 1px solid rgba(255, 255, 255, .1)
    }

    .foot-brand .brand-txt b {
      color: var(--cream)
    }

    .foot-brand p {
      font-size: 14px;
      margin: 20px 0;
      max-width: 34ch;
      line-height: 1.6
    }

    .foot-col h5 {
      font-family: var(--mono);
      font-size: 11px;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: var(--muted-2);
      margin-bottom: 18px
    }

    .foot-col a {
      display: block;
      font-size: 14px;
      padding: 6px 0;
      color: rgba(251, 246, 238, .7);
      transition: color .25s, padding-left .25s
    }

    .foot-col a:hover {
      color: var(--honey);
      padding-left: 5px
    }

    .foot-bot {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      flex-wrap: wrap;
      padding-top: 30px;
      font-size: 12.5px;
      color: var(--muted-2)
    }

    .foot-bot .addr {
      max-width: 40ch
    }

    .foot-social {
      display: flex;
      gap: 10px
    }

    .foot-social a {
      width: 38px;
      height: 38px;
      border-radius: 11px;
      border: 1px solid rgba(255, 255, 255, .12);
      display: grid;
      place-items: center;
      transition: .3s
    }

    .foot-social a:hover {
      background: var(--accent);
      border-color: var(--accent);
      transform: translateY(-3px)
    }

    .foot-social svg {
      width: 17px;
      height: 17px
    }

    .footer-main {
      position: relative;
      z-index: 2;
      max-width: 1240px;
      margin: 0 auto;
      padding: 50px 30px clamp(120px, 15vw, 205px)
    }

    .footer-scene {
      position: relative;
      background-position-y: 85%;
      background-image: url("/img/embedded/f420e3d4de33.webp");
      background-size: 100% auto;
      background-repeat: no-repeat
    }

    .footer-grid {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1fr 1.6fr;
      gap: clamp(26px, 2.5vw, 40px)
    }

    .f-brand .f-brandrow {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 14px
    }

    .f-brand .brand-mark {
      width: 42px;
      height: 42px;
      border-radius: 12px
    }

    .f-brand .brand-mark i {
      color: #fff;
      font-size: 18px
    }

    .f-brand .bt b {
      font-family: var(--display);
      font-size: 21px;
      font-weight: 500;
      color: var(--ink);
      display: block;
      line-height: 1
    }

    .f-brand .bt span {
      font-family: var(--mono);
      font-size: 9.5px;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: var(--muted)
    }

    .f-tagline {
      color: var(--ink-soft);
      font-size: 14.5px;
      max-width: 33ch;
      line-height: 1.6
    }

    .f-col h4 {
      font-family: var(--mono);
      font-size: 12px;
      letter-spacing: .15em;
      text-transform: uppercase;
      color: var(--amber-deep);
      margin-bottom: 16px;
      display: flex;
      align-items: center;
      gap: 10px
    }

    .f-col h4::after {
      content: "";
      flex: 1;
      height: 1px;
      background: var(--line)
    }

    .f-col a {
      display: block;
      color: var(--ink-soft);
      font-size: 14.5px;
      padding: 7px 0;
      transition: color .25s, transform .25s
    }

    .f-col a:hover {
      color: var(--amber-deep);
      transform: translateX(5px)
    }

    .f-news .news-head {
      display: flex;
      gap: 11px;
      align-items: flex-start;
      margin-bottom: 16px
    }

    .f-news .news-ic {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: rgba(95, 113, 64, .16);
      display: grid;
      place-items: center;
      color: #5f7140;
      flex-shrink: 0
    }

    .f-news .news-head p {
      font-family: var(--display);
      font-size: 17px;
      color: var(--ink);
      line-height: 1.3
    }

    .news-input {
      display: flex;
      align-items: center;
      gap: 8px;
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 100px;
      padding: 6px 6px 6px 18px;
      max-width: 330px
    }

    .news-input input {
      flex: 1;
      border: none;
      outline: none;
      background: none;
      font-family: var(--sans);
      font-size: 14.5px;
      color: var(--ink)
    }

    .news-input input::placeholder {
      color: var(--muted-2)
    }

    .news-send {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: #5f7140;
      color: #fff;
      display: grid;
      place-items: center;
      flex-shrink: 0;
      transition: transform .3s, background .3s
    }

    .news-send:hover {
      background: #6a7d49;
      transform: scale(1.07)
    }

    .f-social {
      display: flex;
      gap: 11px;
      margin-top: 18px
    }

    .f-social a {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      border: 1px solid var(--line);
      display: grid;
      place-items: center;
      color: var(--ink-soft);
      background: #fff;
      transition: transform .3s, color .3s, border-color .3s
    }

    .f-social a:hover {
      transform: translateY(-3px);
      color: var(--amber-deep);
      border-color: var(--amber)
    }

    .f-social a i {
      font-size: 17px
    }

    .footer-bar {
      position: relative;
      z-index: 2;
      background: #e7ece0
    }

    .footer-bar .shell {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: clamp(16px, 3vw, 46px);
      flex-wrap: wrap;
      padding: 16px 30px;
      font-size: 13.5px;
      color: var(--muted)
    }

    .footer-bar .leaf-sep {
      color: var(--honey);
      opacity: .55;
      font-size: 12px
    }

    /* ---- responsive: marquee/slider/footer ---- */
    @media (max-width:1024px) {
      .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 34px
      }

      .f-brand,
      .f-news {
        grid-column: 1 / -1
      }

      .f-news .news-input {
        max-width: 420px
      }
    }

    @media (max-width:680px) {
      .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 26px
      }

      .footer-bar .shell {
        gap: 10px;
        font-size: 12.5px
      }

      .m-fixed {
        display: none
      }

      .marquee {
        left: 10px;
        right: 10px
      }

      .slider-arrow {
        display: none
      }

      .cta-banner {
        min-height: 0
      }

      .cta-banner::before {
        background-position: 78% center
      }
    }



    /* ============================== RESPONSIVE ============================== */
    @media (max-width:1024px) {

      .lhero-inner,
      .fsplit,
      .enquiry-grid {
        grid-template-columns: 1fr;
        gap: 46px
      }

      .fsplit.flip .fsplit-art {
        order: -1
      }

      .lhero-art {
        max-width: 460px;
        margin: 0 auto
      }

      .pstrip {
        grid-template-columns: 1fr 1fr
      }

      .pstep .arrow {
        display: none
      }

      .prep {
        grid-template-columns: 1fr 1fr
      }

      .menu-grid {
        grid-template-columns: 1fr
      }

      .pgrid.cols-3 {
        grid-template-columns: repeat(2, 1fr)
      }

      .nav-links {
        display: none
      }

      .burger {
        display: flex
      }
    }

    @media (max-width:680px) {
      body {
        font-size: 16px
      }

      .shell {
        padding: 0 20px
      }

      .nav-cta .btn.shop-lbl {
        display: none
      }

      .lhero {
        padding: 118px 0 0
      }

      .lhero-actions .btn {
        flex: 1;
        justify-content: center
      }

      .lhero-chip {
        display: none
      }

      .pgrid,
      .pgrid.cols-3,
      .pgrid.cols-2 {
        grid-template-columns: 1fr
      }

      .pstrip,
      .prep {
        grid-template-columns: 1fr
      }

      .spec .row {
        grid-template-columns: 1fr
      }

      .spec .k {
        border-bottom: 1px solid var(--line-2)
      }

      .frow {
        grid-template-columns: 1fr
      }

      .foot-grid {
        grid-template-columns: 1fr 1fr
      }

      .sec-head {
        margin-bottom: 42px
      }

      .result-band {
        flex-direction: column;
        align-items: flex-start;
        text-align: left
      }
    }

    @media (max-width:460px) {
      .foot-grid {
        grid-template-columns: 1fr
      }
    }

    /* ============================== NAV DROPDOWN ============================== */
    .has-drop {
      position: relative
    }

    .drop-toggle {
      display: inline-flex;
      align-items: center;
      gap: 6px
    }

    .drop-toggle svg {
      width: 13px;
      height: 13px;
      transition: transform .3s
    }

    .has-drop:hover .drop-toggle svg {
      transform: rotate(180deg)
    }

    .drop {
      position: absolute;
      top: calc(100% + 10px);
      left: 50%;
      transform: translateX(-50%) translateY(8px);
      background: rgba(251, 246, 238, .96);
      -webkit-backdrop-filter: blur(18px);
      backdrop-filter: blur(18px);
      border: 1px solid var(--line);
      border-radius: var(--r);
      box-shadow: var(--shadow-lg);
      padding: 10px;
      width: 300px;
      opacity: 0;
      pointer-events: none;
      transition: opacity .3s var(--ease), transform .3s var(--ease);
      display: grid;
      grid-template-columns: 1fr;
      gap: 2px
    }

    .has-drop:hover .drop {
      opacity: 1;
      pointer-events: auto;
      transform: translateX(-50%) translateY(0)
    }

    .drop a {
      display: flex;
      align-items: center;
      gap: 11px;
      padding: 11px 13px;
      border-radius: 13px;
      font-size: 14px;
      color: var(--ink-soft)
    }

    .drop a:hover {
      background: rgba(28, 22, 17, .05);
      color: var(--ink)
    }

    .drop a .di {
      width: 30px;
      height: 30px;
      border-radius: 9px;
      flex-shrink: 0;
      display: grid;
      place-items: center;
      font-family: var(--mono);
      font-size: 11px;
      font-weight: 500;
      color: #fff
    }

    .drop a small {
      display: block;
      font-size: 11.5px;
      color: var(--muted)
    }

    .drop a b {
      font-weight: 500;
      font-size: 13.5px
    }



    /* ============================================================
   PREMIUM WHOLESALE SECTIONS — rebuilt to match mockups 1:1
   (hero / problem+solution / wholesale range)
   ============================================================ */
    .whero,
    .wproblem,
    .wrange {
      --pine-deep: #223a2c;
      --pine-deep-2: #223a2c;
      --pine-deep-deep: #223a2c;
      --gold: #b5894a;
      --gold-2: #c39a58;
      --gold-soft: #d4b878;
      --sand: #f4ece0;
      --sand-2: #efe6d4;
      --wink: #473d30;
      --wmuted: #7c7160;
      --prob-green: #4d7159;
    }

    /* ---------------- HERO ---------------- */
    .whero {
      position: relative;
      overflow: hidden;
      padding: 104px 0 0;
      background: radial-gradient(130% 100% at 14% 4%, #faf5ea, #f3ead8 56%, #ece1cd)
    }

    .whero .crumb {
      margin: 16px 0 0
    }

    .whero-stage {
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      min-height: clamp(520px, 52vw, 672px)
    }

    .whero-photo {
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      width: 53%;
      z-index: 0;
      background-repeat: no-repeat;
      background-position: center center;
      background-size: cover;
      -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 17%);
      mask-image: linear-gradient(90deg, transparent 0, #000 17%)
    }

    .whero-shell {
      position: relative;
      z-index: 2;
      width: 100%
    }

    .whero-copy {
      max-width: 548px;
      padding: 24px 0
    }

    .whero-eyebrow {
      display: flex;
      align-items: center;
      gap: 13px;
      margin-bottom: 24px
    }

    .whero-eyebrow .sprig {
      width: 27px;
      height: 27px;
      color: var(--gold);
      flex-shrink: 0
    }

    .whero-eyebrow .ln {
      width: 30px;
      height: 1.5px;
      background: var(--gold-soft);
      flex-shrink: 0;
      opacity: .8
    }

    .whero-eyebrow .txt {
      font-family: var(--mono);
      font-size: 12.5px;
      font-weight: 500;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: var(--pine-deep-2);
      white-space: nowrap
    }

    .whero-eyebrow .ln-tail {
      flex: 1;
      height: 1.5px;
      min-width: 18px;
      opacity: .8;
      background: linear-gradient(90deg, var(--gold-soft), transparent)
    }

    .whero h1 {
      font-family: var(--display);
      font-weight: 400;
      font-size: clamp(46px, 7vw, 88px);
      line-height: .97;
      letter-spacing: -.035em;
      color: #2d4a37;
      margin: 0
    }

    .whero h1 em {
      font-style: italic;
      color: var(--gold)
    }

    .whero-tag {
      font-size: clamp(16px, 1.55vw, 19px);
      color: var(--wink);
      margin-top: 22px;
      max-width: 44ch;
      line-height: 1.62
    }

    .whero-actions {
      display: flex;
      gap: 13px;
      flex-wrap: wrap;
      margin-top: 32px
    }

    .btn-pine {
      background: var(--pine-deep);
      color: #fbf5ea;
      box-shadow: 0 16px 32px -14px rgba(34, 58, 44, .9)
    }

    .btn-pine:hover {
      transform: translateY(-3px);
      box-shadow: 0 22px 44px -14px rgba(34, 58, 44, .95)
    }

    .btn-pine:hover svg {
      transform: translateX(4px)
    }

    .btn-pine-ghost {
      background: rgba(255, 255, 255, .6);
      color: var(--pine-deep);
      border: 1px solid var(--gold-2);
      -webkit-backdrop-filter: blur(4px);
      backdrop-filter: blur(4px)
    }

    .btn-pine-ghost svg {
      color: #1faf54
    }

    .btn-pine-ghost:hover {
      background: #fff;
      transform: translateY(-3px);
      box-shadow: var(--shadow-sm)
    }

    .whero-geo {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 100px;
      padding: 10px 18px 10px 14px;
      font-size: 13.5px;
      font-weight: 500;
      color: var(--wink);
      box-shadow: var(--shadow-sm);
      margin-top: 24px
    }

    .whero-geo svg {
      width: 15px;
      height: 15px;
      color: var(--gold)
    }

    .whero-geo b {
      color: var(--gold);
      font-weight: 600
    }

    .whero-trust {
      position: relative;
      z-index: 2
    }

    .whero-trust-band {
      position: relative;
      overflow: hidden;
      padding: 34px 0 38px;
      background: linear-gradient(108deg, var(--pine-deep-deep) 0, var(--pine-deep) 68%);
      border-top-right-radius: clamp(70px, 13vw, 160px)
    }

    .whero-trust-band::after {
      content: "";
      position: absolute;
      right: 6%;
      bottom: -95%;
      width: 330px;
      height: 330px;
      border-radius: 50%;
      background: rgba(150, 176, 140, .18)
    }

    .whero-trust-row {
      position: relative;
      z-index: 1;
      display: flex;
      max-width: 716px
    }

    .wtrust {
      flex: 1;
      min-width: 120px;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 13px;
      padding: 2px 30px;
      border-left: 1px solid rgba(212, 184, 120, .30)
    }

    .wtrust:first-child {
      border-left: none;
      padding-left: 2px
    }

    .wtrust .tic {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      border: 1.5px solid var(--gold-soft);
      display: grid;
      place-items: center;
      color: var(--gold-soft)
    }

    .wtrust .tic svg {
      width: 24px;
      height: 24px
    }

    .wtrust b {
      font-family: var(--sans);
      font-weight: 500;
      font-size: 15px;
      color: #f1e9d9;
      line-height: 1.3
    }

    /* ---------------- PROBLEM / SOLUTION ---------------- */
    .wproblem {
      position: relative
    }

    .wprob-top {
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      min-height: clamp(380px, 40vw, 470px);
      background: linear-gradient(115deg, #f5efe3, #efe5d3)
    }

    .wprob-top-img {
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      width: 55%;
      z-index: 1;
      background-repeat: no-repeat;
      background-position: center center;
      background-size: cover;
      -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 15%);
      mask-image: linear-gradient(90deg, transparent 0, #000 15%)
    }

    .wprob-intro {
      position: relative;
      z-index: 2;
      max-width: 524px;
      padding: 60px 0
    }

    .wprob-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-family: var(--mono);
      font-size: 12px;
      font-weight: 500;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: var(--prob-green);
      margin-bottom: 20px
    }

    .wprob-eyebrow svg {
      width: 20px;
      height: 20px;
      color: var(--prob-green)
    }

    .wprob-intro h2 {
      font-family: var(--display);
      font-weight: 400;
      font-size: clamp(32px, 4.6vw, 55px);
      line-height: 1.04;
      letter-spacing: -.03em;
      color: #211a12
    }

    .wprob-intro h2 em {
      font-style: italic;
      color: var(--prob-green)
    }

    .wprob-intro p {
      color: var(--wmuted);
      margin-top: 18px;
      max-width: 40ch;
      line-height: 1.68;
      font-size: 15.5px
    }

    .wprob-bottom {
      position: relative;
      overflow: hidden;
      background: var(--sand);
      padding: 58px 0
    }

    .wprob-bottom::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 42%;
      z-index: 0;
      background: linear-gradient(155deg, #2c4836, #21382a);
      border-top-right-radius: clamp(56px, 8vw, 116px)
    }

    .wprob-bottom-grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr);
      gap: clamp(28px, 4.5vw, 72px);
      align-items: center
    }

    .wprob-visual {
      padding: 6px 0 6px 6px
    }

    .wprob-card {
      position: relative;
      border-radius: 22px;
      border-top-right-radius: 46px;
      overflow: hidden;
      box-shadow: 0 34px 64px -32px rgba(0, 0, 0, .55)
    }

    .wprob-card>img {
      display: block;
      width: 100%;
      aspect-ratio: 16/11;
      object-fit: cover;
      object-position: center 42%
    }

    .wprob-emblem {
      position: absolute;
      top: 18px;
      left: 18px;
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: #fbf6ec;
      border: 1.5px solid var(--gold-soft);
      display: grid;
      place-items: center;
      box-shadow: var(--shadow)
    }

    .wprob-emblem svg {
      width: 23px;
      height: 23px;
      color: var(--gold)
    }

    .wprob-caption {
      position: absolute;
      left: 16px;
      right: 16px;
      bottom: 16px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      background: linear-gradient(100deg, #c0a05c, #a8843a);
      border-radius: 13px;
      overflow: hidden;
      box-shadow: 0 16px 30px -14px rgba(120, 90, 30, .7)
    }

    .wprob-caption>div {
      display: flex;
      align-items: center;
      gap: 9px;
      padding: 12px 15px;
      font-size: 12px;
      font-weight: 600;
      color: #fff;
      line-height: 1.25
    }

    .wprob-caption>div+div {
      border-left: 1px solid rgba(255, 255, 255, .34)
    }

    .wprob-caption svg {
      width: 17px;
      height: 17px;
      flex-shrink: 0;
      opacity: .95
    }

    .wprob-solution {
      position: relative;
      padding: 6px 0
    }

    .wprob-solution .se {
      display: inline-flex;
      align-items: center;
      gap: 11px;
      font-family: var(--mono);
      font-size: 12px;
      font-weight: 500;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: var(--prob-green);
      margin-bottom: 16px
    }

    .wprob-solution .se::before {
      content: "";
      width: 26px;
      height: 1.5px;
      background: var(--prob-green)
    }

    .wprob-solution h2 {
      font-family: var(--display);
      font-weight: 400;
      font-size: clamp(29px, 3.8vw, 48px);
      line-height: 1.05;
      letter-spacing: -.025em;
      color: #211a12;
      margin: 0
    }

    .wprob-solution h2 em {
      font-style: italic;
      color: var(--prob-green)
    }

    .wprob-solution>p {
      color: var(--wmuted);
      margin: 15px 0 4px;
      max-width: 48ch;
      line-height: 1.62;
      font-size: 15px
    }

    .wprob-list {
      list-style: none;
      margin-top: 24px;
      display: flex;
      flex-direction: column;
      gap: 18px
    }

    .wprob-list li {
      display: flex;
      gap: 15px;
      align-items: flex-start
    }

    .wprob-list .ic {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      flex-shrink: 0;
      display: grid;
      place-items: center;
      background: linear-gradient(150deg, #33543f, #22382a);
      color: #d6c9a4;
      box-shadow: 0 9px 18px -9px rgba(34, 56, 42, .7)
    }

    .wprob-list .ic svg {
      width: 20px;
      height: 20px
    }

    .wprob-list .tx {
      font-size: 14.5px;
      color: var(--wmuted);
      line-height: 1.5;
      padding-top: 3px
    }

    .wprob-list .tx b {
      color: #211a12;
      font-weight: 600
    }

    .wprob-leaf {
      position: absolute;
      right: 2.5%;
      bottom: 5%;
      width: clamp(78px, 8.5vw, 124px);
      opacity: .4;
      z-index: 0;
      color: var(--prob-green)
    }

    /* ---------------- WHOLESALE RANGE ---------------- */
    .wrange {
      position: relative;
      overflow: hidden;
      background: var(--sand)
    }

    .wrange::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(255, 248, 236, 0.75), rgba(255, 248, 236, 0.92));
      pointer-events: none;
      z-index: 0;
    }

    .wrange .shell {
      position: relative;
      z-index: 1;
    }

    .wrange-deco {
      position: absolute;
      top: -18px;
      right: -10px;
      z-index: 0;
      pointer-events: none;
      width: clamp(320px, 37vw, 520px);
      aspect-ratio: 611/440;
      background-repeat: no-repeat;
      background-position: right top;
      background-size: cover
    }

    .wrange-head {
      position: relative;
      z-index: 1;
      max-width: 750px;
      margin-bottom: 44px
    }

    .wrange-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 11px;
      font-family: var(--mono);
      font-size: 12px;
      font-weight: 500;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: var(--accent-deep);
      margin-bottom: 16px
    }

    .wrange-eyebrow::before {
      content: "";
      width: 26px;
      height: 1.5px;
      background: var(--accent)
    }

    .wrange-eyebrow svg {
      width: 18px;
      height: 18px;
      color: var(--accent-deep)
    }

    .wrange-head h2 {
      font-family: var(--display);
      font-weight: 400;
      font-size: clamp(35px, 5vw, 62px);
      line-height: 1.0;
      letter-spacing: -.035em;
      color: #211a12;
      margin: 0
    }

    .wrange-head h2 em {
      font-style: italic;
      color: var(--accent)
    }

    .wrange-head p {
      color: var(--wmuted);
      margin-top: 13px;
      font-size: clamp(16px, 1.4vw, 18px)
    }

    .wrange-grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 26px
    }

    .wr-card {
      position: relative;
      border-radius: 22px;
      overflow: hidden;
      background: var(--panel);
      display: flex;
      flex-direction: column;
      transition: transform .5s var(--ease), box-shadow .5s var(--ease);
      box-shadow: 0 22px 44px -22px rgba(92, 67, 31, 0.42), 0 10px 24px rgba(255, 249, 238, 0.95), inset 0 1px 0 rgba(255,255,255,0.35);
    }

    .wr-card:hover {
      transform: translateY(-7px);
      box-shadow: 0 30px 58px -24px rgba(82, 58, 26, 0.5), 0 14px 28px rgba(255, 246, 228, 0.98), inset 0 1px 0 rgba(255,255,255,0.45);
    }

    .wr-card .pic {
      position: relative;
      aspect-ratio: 10/9;
      overflow: hidden
    }

    .wr-card .pic img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top
    }

    .wr-card .bdg {
      position: absolute;
      top: 18px;
      right: 18px;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: var(--badge);
      display: grid;
      place-items: center;
      box-shadow: 0 9px 18px -7px rgba(0, 0, 0, .45)
    }

    .wr-card .bdg svg {
      width: 24px;
      height: 24px;
      color: #fff
    }

    .wr-card .pn {
      padding: 24px 25px 26px;
      display: flex;
      flex-direction: column;
      flex: 1;
      background: var(--panel)
    }

    .wr-card .pn h3 {
      font-family: var(--display);
      font-weight: 500;
      font-size: 23px;
      letter-spacing: -.01em;
      color: var(--panel-ink)
    }

    .wr-card .pn p {
      font-size: 14px;
      color: var(--panel-sub);
      margin-top: 9px;
      line-height: 1.5;
      flex: 1
    }

    .wr-card .pn .foot {
      margin-top: 18px;
      padding-top: 15px;
      border-top: 1px dashed var(--panel-div);
      font-size: 12.5px;
      color: var(--panel-sub)
    }

    .wr-card.c1 {
      --panel: #4a3a8a;
      --panel-ink: #fff;
      --panel-sub: rgba(255, 255, 255, .74);
      --panel-div: rgba(255, 255, 255, .26);
      --badge: #c2974c;
      box-shadow: 0 24px 46px -22px rgba(74, 58, 138, 0.48), 0 12px 24px rgba(244, 232, 255, 0.9), inset 0 1px 0 rgba(255,255,255,0.28);
    }

    .wr-card.c2 {
      --panel: #dad8d4;
      --panel-ink: #27241f;
      --panel-sub: #6a655c;
      --panel-div: rgba(28, 22, 17, .18);
      --badge: #2c2a27;
      box-shadow: 0 24px 46px -22px rgba(118, 100, 69, 0.38), 0 12px 24px rgba(247, 242, 232, 0.95), inset 0 1px 0 rgba(255,255,255,0.28);
    }

    .wr-card.c3 {
      --panel: #ece4d4;
      --panel-ink: #2a251c;
      --panel-sub: #6f6656;
      --panel-div: rgba(28, 22, 17, .16);
      --badge: #7e9a6e;
      box-shadow: 0 24px 46px -22px rgba(162, 129, 78, 0.4), 0 12px 24px rgba(251, 244, 226, 0.96), inset 0 1px 0 rgba(255,255,255,0.3);
    }

    .wr-card.c2 .pic img {
      object-position: center 12%
    }

    .wr-card.c3 .pic img {
      object-position: center 6%
    }

    /* ---------------- RESPONSIVE ---------------- */
    @media (max-width:1024px) {
      .whero {
        padding-top: 96px
      }

      .whero-stage {
        flex-direction: column-reverse;
        min-height: 0
      }

      .whero-photo {
        position: relative;
        right: auto;
        width: 100%;
        aspect-ratio: 16/9;
        margin-top: 8px;
        -webkit-mask-image: none;
        mask-image: none
      }

      .whero-copy {
        max-width: none;
        padding: 22px 0 28px
      }

      .whero-trust-row {
        max-width: none
      }

      .wprob-top {
        min-height: 0;
        display: block
      }

      .wprob-top-img {
        position: relative;
        width: 100%;
        aspect-ratio: 21/9;
        -webkit-mask-image: none;
        mask-image: none
      }

      .wprob-intro {
        max-width: none;
        padding: 46px 0 42px
      }

      .wprob-bottom::before {
        width: 100%;
        bottom: auto;
        height: 330px;
        top: 0;
        border-radius: 0
      }

      .wprob-bottom-grid {
        grid-template-columns: 1fr;
        gap: 32px
      }

      .wprob-solution {
        background: var(--sand);
        border-radius: 26px;
        padding: 32px 26px
      }

      .wrange-grid {
        grid-template-columns: 1fr 1fr
      }

      .wrange-deco {
        opacity: .55
      }
    }

    @media (max-width:680px) {
      .whero-actions .btn {
        flex: 1;
        justify-content: center
      }

      .whero-trust-row {
        flex-direction: column;
        gap: 20px
      }

      .wtrust {
        flex-direction: row;
        align-items: center;
        gap: 15px;
        border-left: none;
        padding: 0
      }

      .wtrust b br {
        display: none
      }

      .whero-trust-band {
        border-top-right-radius: 44px
      }

      .wprob-caption {
        grid-template-columns: 1fr
      }

      .wprob-caption>div+div {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, .34)
      }

      .wrange-grid {
        grid-template-columns: 1fr
      }

      .wrange-deco {
        width: 190px;
        top: -8px;
        opacity: .5
      }
    }

    /* ============================================================
   PRICING / COMPARISON / ENQUIRY  (premium, mockup-matched)
   ============================================================ */
    .wpricing,
    .wcompare,
    .wenq {
      --pine-deep: #223a2c;
      --gold: #b5894a;
      --gold-2: #c39a58;
      --gold-soft: #d4b878;
      --sand: #f4ece0;
      --wink: #473d30;
      --wmuted: #7c7160;
      --navy: #223a2c;
      --navy-d: #223a2c;
      --pine-deep: #223a2c;
      --rose: #b86b76;
      --olive: #5f7d4f;
    }

    /* ---------------- PRICING ---------------- */
    .wpricing {
      position: relative;
      overflow: hidden;
      background: radial-gradient(120% 95% at 12% 0%, #faf4e8, #f3e9d6 58%, #efe4cf)
    }

    .wpricing::before {
      content: "";
      position: absolute;
      inset: -12%;
      background: radial-gradient(circle at 50% 42%, rgba(255, 251, 241, .98) 0%, rgba(255, 251, 241, .82) 16%, rgba(255, 251, 241, .46) 32%, rgba(255, 251, 241, .14) 52%, rgba(20, 16, 12, .10) 74%, rgba(20, 16, 12, .34) 100%);
      pointer-events: none;
      z-index: 0
    }

    .wpricing::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      height: 34%;
      background: linear-gradient(180deg, rgba(236, 221, 194, 0) 0%, rgba(236, 221, 194, .24) 100%);
      pointer-events: none;
      z-index: 0
    }

    .wpricing-wheat {
      position: absolute;
      left: -6px;
      top: 54px;
      width: clamp(120px, 15vw, 210px);
      opacity: .10;
      color: #9a7b3a;
      z-index: 0;
      pointer-events: none
    }

    .wpricing-deco {
      position: absolute;
      top: -22px;
      right: -14px;
      z-index: 0;
      pointer-events: none;
      width: clamp(260px, 29vw, 440px);
      aspect-ratio: 592/440;
      background-repeat: no-repeat;
      background-position: right top;
      background-size: cover
    }

    .wpricing .shell {
      position: relative;
      z-index: 1
    }

    .wpricing-head {
      text-align: center;
      max-width: 780px;
      margin: 0 auto 50px
    }

    .wpricing-eyebrow {
      font-family: var(--mono);
      font-size: 12px;
      letter-spacing: .24em;
      text-transform: uppercase;
      color: var(--pine-deep);
      font-weight: 500
    }

    .wpricing-rule {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 13px;
      margin: 13px 0 16px
    }

    .wpricing-rule i {
      height: 1px;
      width: clamp(50px, 9vw, 96px);
      display: block
    }

    .wpricing-rule i.l {
      background: linear-gradient(90deg, transparent, #cab588)
    }

    .wpricing-rule i.r {
      background: linear-gradient(90deg, #cab588, transparent)
    }

    .wpricing-rule svg {
      width: 22px;
      height: 22px;
      color: #9a7b3a
    }

    .wpricing-head h2 {
      font-family: var(--display);
      font-weight: 300;
      font-size: clamp(34px, 4.9vw, 60px);
      letter-spacing: -.03em;
      color: #211a12;
      margin: 0;
      line-height: 1.05
    }

    .wpricing-head h2 em {
      font-style: italic;
      color: var(--pine-deep)
    }

    .wprice-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 26px;
      align-items: stretch;
      padding-top: 34px;
      position: relative;
      z-index: 1
    }

    .pr-card {
      position: relative;
      padding-top: 85px;
      border-radius: 24px;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      min-height: 486px;
      overflow: hidden;
      background: var(--tint);
      box-shadow: 0 26px 58px -30px rgba(28, 22, 17, .48), 0 2px 0 rgba(255, 255, 255, .55) inset;
      border: 1px solid rgba(70, 52, 27, .08)
    }

    .pr-card.c2 {
      transform: translateY(-16px) scale(1.03);
      z-index: 2;
      box-shadow: 0 36px 78px -34px rgba(14, 12, 10, .66), 0 0 0 1px rgba(68, 93, 114, .1), 0 2px 0 rgba(255, 255, 255, .65) inset
    }

    .pr-badge {
      position: absolute;
      top: 0px;
      left: 50%;
      transform: translateX(-50%);
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: var(--ac);
      display: grid;
      place-items: center;
      z-index: 3;
      box-shadow: 0 12px 22px -8px rgba(0, 0, 0, .32);
      border: 4px solid var(--tint)
    }

    .pr-badge svg {
      width: 25px;
      height: 25px;
      color: #fff
    }

    .pr-label {
      font-family: var(--mono);
      font-size: 11px;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--ac);
      font-weight: 500
    }

    .pr-value {
      font-family: var(--display);
      font-weight: 300;
      font-size: clamp(46px, 5.2vw, 74px);
      line-height: 1;
      color: var(--vc);
      letter-spacing: -.02em;
      margin-top: 13px
    }

    .pr-value span {
      font-size: .5em;
      margin-left: 4px;
      letter-spacing: 0
    }

    .pr-card.c3 .pr-value {
      font-size: clamp(33px, 3.7vw, 52px)
    }

    .pr-divider {
      display: flex;
      align-items: center;
      gap: 10px;
      width: 54%;
      margin: 15px 0 14px;
      color: var(--ac)
    }

    .pr-divider::before,
    .pr-divider::after {
      content: "";
      height: 1px;
      flex: 1;
      background: currentColor;
      opacity: .45
    }

    .pr-divider svg {
      width: 15px;
      height: 15px;
      opacity: .85
    }

    .pr-desc {
      font-size: 14px;
      color: #5f564a;
      line-height: 1.55;
      max-width: 30ch
    }

    .pr-art {
      position: relative;
      width: 100%;
      height: 190px;
      margin-top: auto
    }

    .pr-wave {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      width: 100%;
      height: 128px;
      z-index: 1
    }

    .pr-wave path {
      fill: var(--wc)
    }

    .pr-img {
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: auto;
      max-width: 92%;
      z-index: 2
    }

    .pr-card.c1 {
      --tint: #f7efe0;
      --ac: #bf8f44;
      --vc: #7e5527;
      --wc: #e7d2a3
    }

    .pr-card.c2 {
      --tint: #eef2f6;
      --ac: #3f7d9c;
      --vc: #2d627d;
      --wc: #aecadb
    }

    .pr-card.c3 {
      --tint: #eef1e7;
      --ac: #6f9460;
      --vc: #567a45;
      --wc: #c4d4af
    }

    .pr-card.c1 .pr-img {
      max-height: 250px
    }

    .pr-card.c2 .pr-img {
      max-height: 250px;
      bottom: -2px
    }

    .pr-card.c3 .pr-img {
      max-height: 250px
    }

    /* ---------------- FEATURE STORY ---------------- */
    .feature-story {
      position: relative;
      padding: 110px 0 90px;
      background:
        linear-gradient(90deg, rgba(139, 89, 47, .22) 0%, rgba(139, 89, 47, .16) 28%, rgba(255, 252, 247, .18) 62%, rgba(255, 252, 247, .82) 100%),
        url('/img/lob-02/what-makes-trigotales-cereals-special-bg.webp') center/cover no-repeat;
      overflow: hidden;
    }

    .feature-story::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(88, 56, 28, .08) 0%, rgba(88, 56, 28, .03) 26%, rgba(255,255,255,0) 72%),
        radial-gradient(circle at top left, rgba(255, 255, 255, .34), transparent 36%);
      pointer-events: none;
    }

    .feature-grid {
      display: grid;
      grid-template-columns: 0.95fr 1.05fr;
      gap: 100px;
      align-items: center;
      position: relative;
      z-index: 1;
    }

    .feature-placeholder {
      width: min(100%, 650px);
      aspect-ratio: 650 / 750;
      margin: 0 auto;
      border-radius: 30px;
      border: 1px solid rgba(51, 41, 23, .12);
      background:
        linear-gradient(180deg, rgba(255,255,255,.76), rgba(234, 225, 208, .84)),
        radial-gradient(circle at top, rgba(193, 169, 116, .24), transparent 48%);
      box-shadow: 0 30px 70px -34px rgba(28, 22, 17, .48), inset 0 1px 0 rgba(255,255,255,.88);
      display: grid;
      place-items: center;
      text-align: center;
      color: #5b4b32;
      font-family: var(--display);
      font-size: clamp(22px, 2.5vw, 30px);
      padding: 34px;
      position: relative;
      overflow: hidden;
      animation: featureFloat 7s ease-in-out infinite;
    }

    .feature-placeholder::before {
      content: "";
      position: absolute;
      inset: 18px;
      border: 1px dashed rgba(68, 53, 27, .26);
      border-radius: 22px;
    }

    .feature-placeholder span {
      position: relative;
      z-index: 1;
      max-width: 11ch;
      line-height: 1.25;
      letter-spacing: -.02em;
    }

    .feature-copy {
      display: grid;
      gap: 22px;
    }

    .feature-eyebrow {
      font-family: var(--mono);
      font-size: 12px;
      letter-spacing: .24em;
      text-transform: uppercase;
      color: #5c7458;
      font-weight: 600;
    }

    .feature-copy h2 {
      font-family: var(--display);
      font-size: clamp(42px, 5vw, 62px);
      line-height: 1.02;
      color: #2a251c;
      max-width: 11ch;
      letter-spacing: -.03em;
      text-shadow: 0 1px 0 rgba(255,255,255,.4);
    }

    .feature-copy p {
      color: #6d6356;
      font-size: 15px;
      max-width: 52ch;
      margin-top: -4px;
    }

    .feature-list {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 18px;
      margin-top: 8px;
    }

    .feature-card {
      position: relative;
      padding: 22px 20px 20px;
      border-radius: 22px;
      background: rgba(255, 255, 255, .55);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid rgba(112, 96, 69, .14);
      box-shadow: 0 18px 44px -28px rgba(28, 22, 17, .5), inset 0 1px 0 rgba(255,255,255,.75);
      transition: transform .45s var(--ease), box-shadow .45s var(--ease);
    }

    .feature-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 26px 54px -28px rgba(28, 22, 17, .64), inset 0 1px 0 rgba(255,255,255,.78);
    }

    .feature-card .icon {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      margin-bottom: 14px;
      background: linear-gradient(135deg, #264433, #567962);
      color: #fff;
      box-shadow: 0 12px 22px -12px rgba(38, 68, 51, .72);
    }

    .feature-card h3 {
      font-size: 20px;
      margin-bottom: 8px;
      color: #2a251c;
    }

    .feature-card p {
      font-size: 14.5px;
      line-height: 1.6;
      color: #665f52;
    }

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

    @media (max-width: 960px) {
      .feature-grid {
        grid-template-columns: 1fr;
      }

      .feature-copy h2 {
        max-width: 100%;
      }
    }

    @media (max-width: 640px) {
      .feature-story {
        padding: 78px 0 70px;
      }

      .feature-list {
        grid-template-columns: 1fr;
      }

      .feature-placeholder {
        width: min(100%, 520px);
      }
    }

    /* ---------------- COMPARISON ---------------- */
    .wcompare {
      position: relative;
      overflow: hidden;
      background: var(--sand)
    }

    .wcompare-deco {
      position: absolute;
      top: -30px;
      right: -22px;
      z-index: 0;
      pointer-events: none;
      width: clamp(300px, 33vw, 520px);
      aspect-ratio: 592/540;
      background-repeat: no-repeat;
      background-position: right top;
      background-size: cover
    }

    .wcompare .shell {
      position: relative;
      z-index: 1
    }

    .wcompare-head {
      max-width: 660px;
      margin-bottom: 34px
    }

    .wcompare-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 11px;
      font-family: var(--mono);
      font-size: 12px;
      font-weight: 500;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: var(--pine-deep);
      margin-bottom: 14px
    }

    .wcompare-eyebrow::before {
      content: "";
      width: 26px;
      height: 1.5px;
      background: var(--pine-deep)
    }

    .wcompare-head h2 {
      font-family: var(--display);
      font-weight: 400;
      font-size: clamp(34px, 4.6vw, 56px);
      line-height: 1.02;
      letter-spacing: -.03em;
      color: #211a12;
      margin: 0
    }

    .wcompare-head h2 em {
      font-style: italic;
      color: var(--pine-deep)
    }

    .wcompare-head p {
      color: var(--wmuted);
      margin-top: 13px;
      max-width: 46ch;
      line-height: 1.6;
      font-size: 15.5px
    }

    .ctable2 {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1.3fr 1fr 1fr;
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 26px;
      overflow: hidden;
      box-shadow: 0 26px 60px -34px rgba(28, 22, 17, .42)
    }

    .ctable2 .cc {
      padding: 16px 26px;
      display: flex;
      align-items: center;
      gap: 14px;
      border-bottom: 1px solid var(--line-2)
    }

    .ctable2 .us {
      background: linear-gradient(180deg, rgba(120, 153, 108, .22), rgba(120, 153, 108, .12));
      box-shadow: inset 0 0 0 1px rgba(85, 117, 68, .22), inset 0 0 0 12px rgba(255, 255, 255, .24)
    }

    .ctable2 .hd {
      padding: 24px 26px;
      border-bottom: 1px solid var(--line)
    }

    .ctable2 .cc.us {
      position: relative;
      z-index: 1;
      border-left: 1px solid rgba(90, 120, 67, .34);
      border-right: 1px solid rgba(90, 120, 67, .34)
    }

    .ctable2 .cc.us::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(219, 189, 109, .24), rgba(219, 189, 109, 0) 42%, rgba(219, 189, 109, .12) 100%);
      pointer-events: none;
      z-index: 0
    }

    .ctable2 .cc.us > * {
      position: relative;
      z-index: 1
    }

    .ctable2 .cc:nth-last-child(-n+3) {
      border-bottom: none
    }

    .ct-hico {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      flex-shrink: 0;
      display: grid;
      place-items: center;
      color: #fff
    }

    .ct-hico svg {
      width: 22px;
      height: 22px
    }

    .ct-hico.navy {
      background: linear-gradient(150deg, #2f5168, #1e3a4d)
    }

    .ct-hico.green {
      background: linear-gradient(150deg, #6f9460, #557544);
      font-family: var(--display);
      font-size: 11px;
      font-weight: 600;
      box-shadow: 0 12px 24px -14px rgba(39, 58, 31, .72), 0 0 0 2px rgba(255, 255, 255, .55)
    }

    .ct-hico.rose {
      background: linear-gradient(150deg, #c98a92, #b3636f)
    }

    .ct-htxt {
      font-family: var(--mono);
      font-size: 11.5px;
      font-weight: 500;
      letter-spacing: .14em;
      text-transform: uppercase;
      line-height: 1.4
    }

    .ct-htxt.navy {
      color: var(--navy)
    }

    .ct-htxt.green {
      color: #557544
    }

    .ct-htxt.rose {
      color: #a85863
    }

    .ct-ico {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      flex-shrink: 0;
      display: grid;
      place-items: center;
      border: 1.4px solid var(--line);
      color: var(--pine-deep)
    }

    .ct-ico svg {
      width: 18px;
      height: 18px
    }

    .ct-label {
      font-size: 15px;
      color: #2a241c;
      font-weight: 500
    }

    .cc .mk {
      width: 24px;
      height: 24px;
      border-radius: 50%;
      flex-shrink: 0;
      display: grid;
      place-items: center
    }

    .cc .mk.yes {
      background: rgba(95, 140, 80, .16);
      color: #557544
    }

    .cc .mk.no {
      background: rgba(180, 107, 118, .16);
      color: #a85863
    }

    .cc .mk svg {
      width: 14px;
      height: 14px
    }

    .cc .cv {
      font-size: 14.5px;
      font-weight: 500
    }

    .cc .cv.yes {
      color: #4f7340
    }

    .cc .cv.no {
      color: #a85863
    }

    /* ---------------- ENQUIRY (light) ---------------- */
    .wenq {
      position: relative;
      overflow: hidden;
      background: #f3ebdd
    }

    .wenq-bg {
      position: absolute;
      inset: 0;
      z-index: 0;
      background-repeat: no-repeat;
      background-size: cover;
      background-position: center
    }

    .wenq-bg::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(100deg, rgba(245, 238, 226, .92) 0%, rgba(245, 238, 226, .78) 38%, rgba(245, 238, 226, .45) 60%, rgba(245, 238, 226, .25) 100%)
    }

    .wenq .shell {
      position: relative;
      z-index: 1
    }

    .wenq-grid {
      display: grid;
      grid-template-columns: 1fr 1.16fr;
      gap: clamp(34px, 5vw, 70px);
      align-items: center
    }

    .wenq-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 11px;
      font-family: var(--mono);
      font-size: 12px;
      font-weight: 500;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: var(--pine-deep);
      margin-bottom: 14px
    }

    .wenq-eyebrow::before {
      content: "";
      width: 26px;
      height: 1.5px;
      background: var(--pine-deep)
    }

    .wenq-info h2 {
      font-family: var(--display);
      font-weight: 400;
      font-size: clamp(34px, 4.6vw, 56px);
      line-height: 1.02;
      letter-spacing: -.03em;
      color: #211a12;
      margin: 0
    }

    .wenq-info h2 em {
      font-style: italic;
      color: var(--pine-deep)
    }

    .wenq-rule {
      display: flex;
      align-items: center;
      gap: 10px;
      margin: 18px 0 4px;
      color: var(--gold)
    }

    .wenq-rule svg {
      width: 18px;
      height: 18px
    }

    .wenq-rule i {
      height: 1px;
      width: 160px;
      max-width: 40%;
      background: linear-gradient(90deg, var(--gold-soft), transparent)
    }

    .wenq-info>p {
      color: var(--wink);
      margin: 14px 0 4px;
      max-width: 42ch;
      line-height: 1.6;
      font-size: 15.5px
    }

    .wenq-clist {
      margin-top: 30px;
      display: flex;
      flex-direction: column;
      gap: 6px
    }

    .wenq-ci {
      display: flex;
      gap: 16px;
      align-items: flex-start;
      padding: 8px 0
    }

    .wenq-ci .cic {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      flex-shrink: 0;
      display: grid;
      place-items: center;
      background: #ece3d3;
      color: var(--navy);
      box-shadow: inset 0 0 0 1px rgba(39, 74, 97, .08)
    }

    .wenq-ci .cic svg {
      width: 21px;
      height: 21px
    }

    .wenq-ci b {
      font-size: 16px;
      color: #211a12;
      display: block;
      font-weight: 600;
      letter-spacing: .01em
    }

    .wenq-ci small {
      font-size: 13px;
      color: var(--wmuted)
    }

    .wenq-form {
      position: relative;
      background: #fdfbf6;
      border: 1px solid rgba(28, 22, 17, .08);
      border-radius: 26px;
      padding: clamp(26px, 3vw, 40px);
      box-shadow: 0 34px 70px -34px rgba(28, 22, 17, .34)
    }

    .wenq-tagwrap {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      margin-bottom: 26px;
      color: var(--gold)
    }

    .wenq-tagwrap i {
      height: 1px;
      flex: 1;
      background: linear-gradient(90deg, transparent, var(--gold-soft))
    }

    .wenq-tagwrap i.r {
      background: linear-gradient(90deg, var(--gold-soft), transparent)
    }

    .wenq-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--navy);
      color: #fff;
      border-radius: 100px;
      padding: 9px 18px;
      font-size: 13px;
      font-weight: 600;
      white-space: nowrap;
      flex-shrink: 0
    }

    .wenq-tag svg {
      width: 15px;
      height: 15px
    }

    .wenq-tagwrap .leaf {
      flex-shrink: 0;
      color: #7d9a6e
    }

    .wenq-tagwrap .leaf svg {
      width: 22px;
      height: 22px
    }

    .wf-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px
    }

    .wf-field {
      margin-bottom: 17px
    }

    .wf-field label {
      display: block;
      font-size: 13px;
      font-weight: 600;
      color: #3a3225;
      margin-bottom: 7px
    }

    .wf-field label span {
      color: #9c917f;
      font-weight: 400
    }

    .wf-input {
      position: relative
    }

    .wf-input>svg {
      position: absolute;
      left: 15px;
      top: 50%;
      transform: translateY(-50%);
      width: 18px;
      height: 18px;
      color: var(--pine-deep)
    }

    .wf-input textarea+svg,
    .wf-input.ta>svg {
      top: 18px;
      transform: none
    }

    .finput2 {
      width: 100%;
      padding: 14px 16px 14px 44px;
      border-radius: 12px;
      background: #fbf8f1;
      border: 1px solid #ddd5c6;
      color: #211a12;
      font-family: var(--sans);
      font-size: 15px;
      transition: border-color .25s, background .25s
    }

    .finput2::placeholder {
      color: #a89c88
    }

    .finput2:focus {
      outline: none;
      border-color: var(--pine-deep);
      background: #fff;
      box-shadow: 0 0 0 3px rgba(63, 125, 156, .12)
    }

    select.finput2 {
      appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' stroke='%23274a61' stroke-width='2'%3E%3Cpath d='M3 5l4 4 4-4'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 16px center
    }

    textarea.finput2 {
      resize: vertical;
      min-height: 104px;
      padding-top: 14px
    }

    .btn-navy {
      width: 100%;
      justify-content: center;
      margin-top: 6px;
      background: var(--navy);
      color: #fff;
      box-shadow: 0 14px 30px -12px rgba(39, 74, 97, .7);
      font-size: 15.5px;
      padding: 16px 26px
    }

    .btn-navy:hover {
      transform: translateY(-2px);
      box-shadow: 0 20px 40px -12px rgba(39, 74, 97, .8)
    }

    .btn-navy:hover svg {
      transform: translateX(3px)
    }

    .wenq-note {
      font-size: 12.5px;
      color: var(--wmuted);
      margin-top: 16px;
      text-align: center;
      line-height: 1.5
    }

    .wenq-note b {
      color: #3a3225;
      font-weight: 600
    }

    .wenq .form-ok {
      display: none;
      text-align: center;
      padding: 26px 4px
    }

    .wenq .form-ok.show {
      display: block
    }

    .wenq-form.sent .form-fields {
      display: none
    }

    .wenq .form-ok .ok-ic {
      width: 64px;
      height: 64px;
      border-radius: 50%;
      background: rgba(122, 154, 110, .18);
      display: grid;
      place-items: center;
      margin: 0 auto 18px;
      color: #557544
    }

    .wenq .form-ok h3 {
      font-family: var(--display);
      font-weight: 400;
      font-size: 27px;
      color: #211a12;
      margin-bottom: 8px
    }

    .wenq .form-ok p {
      color: var(--wmuted);
      font-size: 14.5px
    }

    /* responsive for the three new sections */
    @media (max-width:1024px) {
      .wprice-grid {
        grid-template-columns: 1fr;
        max-width: 440px;
        margin: 0 auto
      }

      .pr-card.c2 {
        transform: none
      }

      .ctable2 {
        grid-template-columns: 1.2fr 1fr 1fr
      }

      .wenq-grid {
        grid-template-columns: 1fr;
        gap: 40px
      }

      .wcompare-deco,
      .wpricing-deco {
        opacity: .6
      }
    }

    @media (max-width:680px) {
      .ctable2 {
        grid-template-columns: 1fr;
        border-radius: 20px
      }

      .ctable2 .cc {
        border-bottom: 1px solid var(--line-2) !important
      }

      .ctable2 .us {
        background: rgba(120, 153, 108, .08)
      }

      .ctable2 .hd {
        padding: 18px 22px
      }

      .wf-row {
        grid-template-columns: 1fr
      }

      .wcompare-deco,
      .wpricing-deco {
        display: none
      }
    }

    /* ============================== WHOLESALE HERO SLIDER ============================== */
    .w-hero-slider {
      position: relative;
      width: 100%;
      height: clamp(520px, 65vw, 700px);
      overflow: hidden;
      background: #1c1611;
      margin-top: 0
    }

    .w-slider-track {
      display: flex;
      height: 100%;
      transition: transform .8s cubic-bezier(.22, .61, .36, 1);
      will-change: transform
    }

    .w-slide {
      position: relative;
      min-width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      overflow: hidden
    }

    .w-slide-bg {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      transition: transform 8s linear
    }

    .w-slide.active .w-slide-bg {
      transform: scale(1.06)
    }

    .w-slide-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(100deg, rgba(28, 22, 17, .84) 0%, rgba(28, 22, 17, .55) 55%, rgba(28, 22, 17, .18) 100%)
    }

    .w-slide-content {
      position: relative;
      z-index: 2;
      max-width: 1240px;
      margin: 0 auto;
      padding: 0 28px;
      width: 100%
    }

    .w-slide-eyebrow {
      font-family: var(--mono);
      font-size: 12px;
      font-weight: 500;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: #c39a58;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 20px;
      opacity: 0;
      transform: translateY(20px);
      transition: opacity .7s .2s ease, transform .7s .2s ease
    }

    .w-slide.active .w-slide-eyebrow {
      opacity: 1;
      transform: none
    }

    .w-slide-eyebrow::before {
      content: "";
      width: 22px;
      height: 1.5px;
      background: #c39a58;
      display: inline-block
    }

    .w-slide h2 {
      font-family: var(--display);
      font-size: clamp(34px, 4.8vw, 68px);
      font-weight: 300;
      color: #fff;
      line-height: 1.05;
      letter-spacing: -.03em;
      max-width: 14ch;
      margin: 0 0 18px;
      opacity: 0;
      transform: translateY(24px);
      transition: opacity .7s .35s ease, transform .7s .35s ease
    }

    .w-slide.active h2 {
      opacity: 1;
      transform: none
    }

    .w-slide h2 em {
      font-style: italic;
      color: #c39a58
    }

    .w-slide-desc {
      font-size: clamp(15px, 1.3vw, 18px);
      color: rgba(255, 255, 255, .82);
      max-width: 44ch;
      line-height: 1.65;
      margin-bottom: 34px;
      opacity: 0;
      transform: translateY(20px);
      transition: opacity .7s .5s ease, transform .7s .5s ease
    }

    .w-slide.active .w-slide-desc {
      opacity: 1;
      transform: none
    }

    .w-slide-badges {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      opacity: 0;
      transform: translateY(16px);
      transition: opacity .7s .65s ease, transform .7s .65s ease
    }

    .w-slide.active .w-slide-badges {
      opacity: 1;
      transform: none
    }

    .w-slide-badge {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      background: rgba(255, 255, 255, .1);
      border: 1px solid rgba(255, 255, 255, .22);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      border-radius: 100px;
      padding: 10px 20px;
      font-size: 13.5px;
      font-weight: 500;
      color: #fff;
      white-space: nowrap
    }

    .w-slide-badge i {
      color: #c39a58;
      font-size: 14px
    }

    .w-slide-badge.solid {
      background: #c39a58;
      border-color: #c39a58;
      color: #fff
    }

    .w-slider-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 5;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: rgba(255, 255, 255, .12);
      border: 1px solid rgba(255, 255, 255, .22);
      color: #fff;
      display: grid;
      place-items: center;
      cursor: pointer;
      transition: background .3s, transform .3s;
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px)
    }

    .w-slider-nav:hover {
      background: rgba(255, 255, 255, .22);
      transform: translateY(-50%) scale(1.1)
    }

    .w-slider-nav.prev {
      left: 28px
    }

    .w-slider-nav.next {
      right: 28px
    }

    .w-slider-nav i {
      font-size: 18px
    }

    .w-slider-dots {
      position: absolute;
      bottom: 28px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 8px;
      z-index: 5
    }

    .w-slider-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: rgba(255, 255, 255, .35);
      border: none;
      cursor: pointer;
      transition: all .3s;
      padding: 0
    }

    .w-slider-dot.active {
      background: #c39a58;
      width: 24px;
      border-radius: 4px
    }

    .w-slider-progress {
      position: absolute;
      bottom: 0;
      left: 0;
      height: 3px;
      background: #c39a58;
      transition: width 5s linear;
      z-index: 5
    }

    @media(max-width:768px) {
      .w-hero-slider {
        height: clamp(420px, 85vw, 560px)
      }

      .w-slider-nav {
        width: 40px;
        height: 40px
      }

      .w-slider-nav.prev {
        left: 12px
      }

      .w-slider-nav.next {
        right: 12px
      }

      .w-slide-badge {
        font-size: 12px;
        padding: 8px 14px
      }
    }

    /* ============================== WRANGE CAROUSEL ============================== */
    .wrange-grid {
      display: flex;
      gap: 22px;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      scroll-behavior: smooth;
      -webkit-overflow-scrolling: touch;
      padding-bottom: 12px
    }

    .wrange-grid::-webkit-scrollbar {
      height: 4px
    }

    .wrange-grid::-webkit-scrollbar-track {
      background: rgba(44, 72, 54, .08);
      border-radius: 2px
    }

    .wrange-grid::-webkit-scrollbar-thumb {
      background: rgba(44, 72, 54, .3);
      border-radius: 2px
    }

    .wrange-grid .wr-card {
      flex: 0 0 calc(33.333% - 16px);
      scroll-snap-align: start;
      min-width: 280px
    }

    .wrange-nav-row {
      display: flex;
      justify-content: center;
      align-items: center;
      margin-top: 24px;
      flex-wrap: wrap;
      gap: 14px
    }

    .wrange-carousel-dots {
      display: flex;
      gap: 8px
    }

    .wrange-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: rgba(44, 72, 54, .22);
      border: none;
      cursor: pointer;
      transition: all .3s;
      padding: 0
    }

    .wrange-dot.active {
      background: var(--pine-deep, #2c4836);
      width: 22px;
      border-radius: 4px
    }

    .wrange-nav-btns {
      display: flex;
      gap: 10px
    }

    .wrange-nav-btn {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: #fff;
      border: 1px solid rgba(44, 72, 54, .15);
      box-shadow: 0 2px 12px rgba(44, 72, 54, .1);
      display: grid;
      place-items: center;
      cursor: pointer;
      transition: all .3s;
      color: var(--pine-deep, #2c4836)
    }

    .wrange-nav-btn:hover {
      background: var(--pine-deep, #2c4836);
      color: #fff;
      box-shadow: 0 6px 20px rgba(44, 72, 54, .25)
    }

    .wrange-nav-btn i {
      font-size: 15px
    }

    @media(max-width:960px) {
      .wrange-grid .wr-card {
        flex: 0 0 calc(50% - 12px)
      }
    }

    @media(max-width:600px) {
      .wrange-grid .wr-card {
        flex: 0 0 100%
      }

      .wrange-grid {
        gap: 14px
      }
    }

    /* ============================== WCOMPARE REDESIGN ============================== */
    .wcompare {
      background-size: cover;
      background-position: center bottom;
      background-repeat: no-repeat;
      position: relative
    }

    .wcompare-eyebrow i {
      font-size: 13px;
      margin-right: 5px;
      color: var(--gold, #b5894a)
    }

    .wcompare-divider {
      display: flex;
      align-items: center;
      gap: 14px;
      margin: 16px 0 22px;
      color: var(--gold, #b5894a)
    }

    .wcompare-divider::before,
    .wcompare-divider::after {
      content: "";
      flex: 0 0 38px;
      height: 1.5px;
      background: currentColor;
      opacity: .5
    }

    .wcompare-divider i {
      font-size: 15px
    }

    .ct-hico.green {
      background: linear-gradient(135deg, #2c4836, #3d5e48) !important;
      color: #fff !important;
      width: 52px;
      height: 52px;
      border-radius: 50%;
      display: flex !important;
      align-items: center;
      justify-content: center;
      font-family: var(--display);
      font-size: 10.5px;
      font-weight: 500;
      letter-spacing: 0;
      text-align: center;
      line-height: 1.2;
      flex-shrink: 0
    }

    .wcompare-footer {
      display: flex;
      align-items: stretch;
      gap: 0;
      margin-top: 40px;
      background: rgba(255, 255, 255, .88);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid rgba(44, 72, 54, .12);
      border-radius: var(--r-lg);
      overflow: hidden;
      box-shadow: var(--shadow)
    }

    .wcompare-fp {
      flex: 1;
      padding: 30px 24px;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px
    }

    .wcompare-fp+.wcompare-fp {
      border-left: 1px solid rgba(44, 72, 54, .1)
    }

    .fp-icon {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      display: grid;
      place-items: center
    }

    .wcompare-fp:nth-child(1) .fp-icon {
      background: rgba(181, 137, 74, .18);
      color: #b5894a
    }

    .wcompare-fp:nth-child(2) .fp-icon {
      background: rgba(44, 72, 54, .14);
      color: #2c4836
    }

    .wcompare-fp:nth-child(3) .fp-icon {
      background: rgba(139, 58, 90, .13);
      color: #8b3a5a
    }

    .fp-icon i {
      font-size: 26px
    }

    .wcompare-fp p {
      font-family: var(--mono);
      font-size: 11px;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--ink-soft);
      font-weight: 600;
      line-height: 1.6;
      margin: 0;
      max-width: 18ch
    }

    @media(max-width:768px) {
      .wcompare-footer {
        flex-direction: column
      }

      .wcompare-fp+.wcompare-fp {
        border-left: none;
        border-top: 1px solid rgba(44, 72, 54, .1)
      }
    }
  