/* LOB 06 - ABC Nutri Mix (Retail)
   Extracted verbatim from <style>
   in design file lob-06-abc-nutri-mix.html (block 1 of 1).
   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 {
      --ink: #1c1611;
      --ink-soft: #473b30;
      --cream: #fbf6ee;
      --cream-2: #f4ecdf;
      --paper: #ffffff;
      --amber: #FC5C12;
      --amber-2: #ff7b3b;
      --amber-deep: #d94b0f;
      --honey: #ffb17c;
      --muted: #8c7f70;
      --muted-2: #a99c8c;
      --line: rgba(28, 22, 17, .10);
      --line-2: rgba(28, 22, 17, .06);
      --sky: #ffd8c2;
      --leaf: #ffd8c2;
      --bloom: #f0b8c4;
      --sun: #ffe7d7;
      --lilac: #cabceb;
      --mint: #bde3d2;
      --sky-d: #d94b0f;
      --leaf-d: #d94b0f;
      --bloom-d: #c25d77;
      --sun-d: #ff7b3b;
      --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: #FC5C12;
      --accent-2: #ff7b3b;
      --accent-soft: #ffe0d0;
      --accent-deep: #d94b0f;
    }

    *,
    *::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, 60px) 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: 110px 0 0;
      overflow: hidden;
      min-height: 100vh;
      display: flex;
      flex-direction: column
    }

    .lhero-bg {
      position: absolute;
      inset: 0;
      z-index: 0;
      overflow: hidden;
      background-image: url('/img/lob-06/slider-section-background.webp');
      background-size: cover;
      background-position: center right;
      background-repeat: no-repeat
    }

    .lhero-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, rgba(246, 242, 235, .88) 0%, rgba(246, 242, 235, .70) 38%, rgba(246, 242, 235, 0) 60%, rgba(246, 242, 235, 0) 100%)
    }

    .grain {
      position: absolute;
      inset: 0;
      opacity: .3;
      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: 1fr;
      gap: 0;
      align-items: center;
      padding-bottom: clamp(50px, 6vw, 80px);
      flex: 1
    }

    .lhero-copy {
      max-width: 580px
    }

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

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

    .lhero-tag {
      font-size: clamp(16px, 1.4vw, 19px);
      color: #473b30;
      margin-top: 24px;
      max-width: 50ch;
      line-height: 1.6
    }

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

    .geo-pill {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      background: rgba(255, 255, 255, .7);
      border: 1px solid rgba(28, 22, 17, .12);
      border-radius: 100px;
      padding: 8px 16px 8px 12px;
      font-size: 13px;
      font-weight: 500;
      color: var(--ink-soft);
      box-shadow: var(--shadow-sm);
      margin-top: 22px;
      backdrop-filter: blur(6px)
    }

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

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

    /* leaf decoration */
    .lhero-leaf {
      position: absolute;
      bottom: 120px;
      left: -18px;
      z-index: 1;
      opacity: .35;
      pointer-events: none
    }

    .lhero-leaf svg {
      width: 90px;
      height: 90px;
      color: var(--accent-deep)
    }

    /* hero bottom feature bar */
    .lhero-bar {
      position: relative;
      z-index: 2;
      background: var(--accent-deep);
      margin-top: auto
    }

    .lhero-bar-inner {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0;
      flex-wrap: nowrap
    }

    .lhero-feat {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 20px 34px;
      color: #fff;
      border-right: 1px solid rgba(255, 255, 255, .15);
      flex: 1;
      justify-content: center
    }

    .lhero-feat:last-child {
      border-right: none
    }

    .lhero-feat .fi {
      width: 42px;
      height: 42px;
      flex-shrink: 0;
      opacity: .92
    }

    .lhero-feat .fi svg {
      width: 42px;
      height: 42px;
      stroke: #fff
    }

    .lhero-feat-txt {
      display: flex;
      flex-direction: column;
      gap: 2px
    }

    .lhero-feat-txt span {
      font-size: 14.5px;
      font-weight: 600;
      color: #fff;
      line-height: 1.2
    }

    .lhero-feat-txt small {
      font-size: 12px;
      color: rgba(255, 255, 255, .72)
    }

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

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

    /* 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)
      }
    }

    /* ============================== DETAILS SECTION ============================== */
    .details-sec {
      position: relative;
      overflow: hidden;
      padding: 0
    }

    .details-inner {
      display: grid;
      grid-template-columns: 1fr 1.1fr;
      min-height: 700px
    }

    .details-art {
      position: relative;
      overflow: hidden
    }

    .details-art-bg {
      position: absolute;
      inset: 0;
      background-image: url('/img/lob-06/the-details-section-background.webp');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat
    }

    .details-copy {
      padding: clamp(60px, 7vw, 100px) clamp(40px, 5vw, 80px) clamp(60px, 7vw, 100px) clamp(30px, 3vw, 50px);
      background: #f7f3ec;
      display: flex;
      flex-direction: column;
      justify-content: center
    }

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

    .details-eyebrow i {
      display: inline-block;
      width: 28px;
      height: 1.5px;
      background: var(--accent-deep)
    }

    .details-copy h2 {
      font-size: clamp(36px, 5vw, 60px);
      font-weight: 300;
      letter-spacing: -.03em;
      color: #1c1611;
      margin-bottom: 28px;
      line-height: 1.05
    }

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

    /* spec table with icons */
    .dspec {
      width: 100%;
      border-collapse: separate;
      border-spacing: 0;
      background: #fff;
      border: 1px solid rgba(28, 22, 17, .1);
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 8px 30px rgba(28, 22, 17, .07)
    }

    .dspec tr {
      border-bottom: 1px solid rgba(28, 22, 17, .07)
    }

    .dspec tr:last-child {
      border-bottom: none
    }

    .dspec td {
      padding: 14px 16px;
      vertical-align: middle
    }

    .dspec .td-ic {
      width: 52px;
      padding: 12px 8px 12px 14px
    }

    .dspec .td-k {
      width: 110px;
      padding: 12px 8px;
      font-family: var(--mono);
      font-size: 12px;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: #8c7f70;
      font-weight: 500
    }

    .dspec .td-v {
      padding: 12px 16px 12px 4px;
      font-size: 16.5px;
      color: #1c1611;
      line-height: 1.4
    }

    .dspec .td-v b {
      font-weight: 700
    }

    .dspec-ic {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: var(--accent);
      display: grid;
      place-items: center;
      flex-shrink: 0
    }

    .dspec-ic svg {
      width: 18px;
      height: 18px;
      stroke: #fff;
      fill: none
    }

    /* details bottom bar */
    .details-bar {
      background: var(--accent-deep);
      padding: 20px 0
    }

    .details-bar-inner {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0
    }

    .details-bfeat {
      display: flex;
      align-items: center;
      gap: 11px;
      padding: 0 28px;
      color: #fff;
      border-right: 1px solid rgba(255, 255, 255, .18);
      flex: 1;
      justify-content: center
    }

    .details-bfeat:last-child {
      border-right: none
    }

    .details-bfeat .dfi {
      width: 36px;
      height: 36px;
      flex-shrink: 0;
      opacity: .9
    }

    .details-bfeat .dfi svg {
      width: 36px;
      height: 36px;
      stroke: #fff
    }

    .details-bfeat-txt span {
      font-size: 13.5px;
      font-weight: 600;
      color: #fff;
      display: block;
      line-height: 1.2
    }

    .details-bfeat-txt small {
      font-size: 11.5px;
      color: rgba(255, 255, 255, .72)
    }

    /* ============================== 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
    }

    /* ============================== SIGNATURE RECIPE SECTION ============================== */

    .sig-sec {
      position: relative;
      overflow: hidden;
      padding: 0;
      min-height: 760px;
      display: flex;
      align-items: center
    }

    .sig-bg {
      position: absolute;
      inset: 0;
      background-image: url('/img/lob-06/signature-recipe-section-background.webp');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      z-index: 0
    }

    .sig-bg::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgb(253 253 253) 0%, rgba(252, 92, 18, 0.04) 100%);
      z-index: 1;
      pointer-events: none;
    }

    .sig-inner {
      position: relative;
      z-index: 1;
      display: block;
      padding: 150px 10px
    }

    .sig-copy {
      color: #1c1611;
      max-width: 100%
    }

    .sig-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: var(--mono);
      font-size: 11.5px;
      font-weight: 500;
      letter-spacing: .15em;
      text-transform: uppercase;
      color: #4a6549;
      margin-bottom: 20px;
      border-bottom: 1.5px solid #4a6549;
      padding-bottom: 6px
    }

    .sig-title {
      font-size: clamp(36px, 4.5vw, 56px);
      font-weight: 400;
      letter-spacing: -.02em;
      line-height: 1.05;
      margin-bottom: 18px
    }

    .sig-title em {
      font-style: italic;
      color: #4a6549
    }

    .sig-lead {
      font-size: 17px;
      color: #473b30;
      margin-bottom: 34px
    }

    .sig-step-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 18px;
      margin: 26px 0 30px;
      width: 100%
    }

    .sig-step-card {
      position: relative;
      background: linear-gradient(140deg, rgba(255, 255, 255, .98), rgba(255, 244, 232, .96));
      border: 1px solid rgba(252, 92, 18, .14);
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 20px 40px rgba(28, 22, 17, .08);
      transform: translateY(0);
      transition: transform .3s ease, box-shadow .3s ease
    }

    .sig-step-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 24px 48px rgba(28, 22, 17, .12)
    }

    .sig-step-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(252, 92, 18, .04), transparent 55%);
      pointer-events: none
    }

    .sig-step-media {
      position: relative;
      aspect-ratio: 3 / 3;
      background: linear-gradient(135deg, #fff8f1 0%, #ffe8db 100%);
      display: grid;
      place-items: center;
      border-bottom: 1px solid rgba(252, 92, 18, .12);
      overflow: hidden;
    }

    .sig-step-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
    }

    .sig-step-media::before {
      content: "";
      position: absolute;
      inset: 14px;
      border: 1px dashed rgba(252, 92, 18, .28);
      border-radius: 16px;
      display: none;
      pointer-events: none;
    }

    .sig-step-media:has(img) .ph-icon,
    .sig-step-media:has(img)::before {
      display: none;
    }

    .sig-step-media .ph-icon {
      position: relative;
      z-index: 1;
      width: 54px;
      height: 54px;
      border-radius: 50%;
      background: rgba(252, 92, 18, .16);
      color: var(--accent-deep);
      display: grid;
      place-items: center;
      font-size: 20px;
      box-shadow: inset 0 0 0 1px rgba(252, 92, 18, .12)
    }

    .sig-step-media .ph-label {
      position: absolute;
      left: 16px;
      bottom: 16px;
      z-index: 1;
      font-family: var(--mono);
      font-size: 10px;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: var(--accent-deep)
    }

    .sig-step-body {
      padding: 18px 18px 20px;
      position: relative;
      z-index: 1
    }

    .sig-step-number {
      font-family: var(--mono);
      font-size: 10px;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--accent-deep);
      font-weight: 700;
      margin-bottom: 8px;
      display: inline-block
    }

    .sig-step-title {
      font-family: var(--display);
      font-size: 20px;
      line-height: 1.15;
      margin-bottom: 7px;
      color: var(--ink)
    }

    .sig-step-desc {
      font-size: 14.5px;
      color: var(--ink-soft);
      line-height: 1.6
    }

    .sig-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 12px
    }

    .sig-pill {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: #fff;
      border: 1px solid rgba(28, 22, 17, .08);
      border-radius: 100px;
      padding: 10px 18px;
      font-size: 13.5px;
      font-weight: 500;
      color: #473b30;
      box-shadow: 0 4px 14px rgba(28, 22, 17, .03)
    }

    .sig-pill svg {
      color: #708465
    }

    /* ============================== 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-sec {
      position: relative;
      background: url('/img/lob-06/how-to-prepare-section-background.webp') center/cover no-repeat;
      padding: 80px 0 0;
      color: #1c1611;
      overflow: hidden;
    }

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

    .prep-sec .sec-head span.eyebrow {
      color: var(--accent-deep);
      letter-spacing: .22em;
    }

    .prep-sec .sec-head h2 {
      color: #1c1611;
      font-size: clamp(36px, 5vw, 64px);
    }

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

    /* eyebrow with lines and leaf icon */
    .prep-eyebrow {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 8px;
      margin-bottom: 16px;
    }

    .prep-eyebrow-icon {
      color: var(--accent-deep);
      font-size: 18px;
    }

    .prep-eyebrow-text {
      display: flex;
      align-items: center;
      gap: 14px;
      font-family: var(--mono);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: .28em;
      text-transform: uppercase;
      color: var(--accent-deep);
    }

    .prep-eyebrow-text::before,
    .prep-eyebrow-text::after {
      content: "";
      width: 50px;
      height: 1px;
      background: var(--accent-deep);
      opacity: .5;
    }

    .prep-title {
      font-family: var(--display);
      font-size: clamp(42px, 6vw, 72px);
      font-weight: 400;
      letter-spacing: -.02em;
      color: #1c1611;
      text-align: center;
      line-height: 1.1;
      margin-bottom: 0;
    }

    .prep-title em {
      font-style: italic;
      color: var(--accent-deep);
    }

    .prep {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      position: relative;
      margin-top: 50px;
      align-items: start;
    }

    /* dashed connector line between circles */
    .prep::before {
      content: "";
      position: absolute;
      top: 105px;
      /* centers on the circles */
      left: calc(12.5% + 100px);
      /* start after first circle center */
      right: calc(12.5% + 100px);
      /* end before last circle center */
      height: 1px;
      border-top: 2px dashed rgba(252, 92, 18, 0.3);
      z-index: 0;
    }

    .prep-step {
      text-align: center;
      position: relative;
      padding: 0;
      z-index: 1;
    }

    .prep-img-wrap {
      position: relative;
      margin: 0 auto 10px;
      width: 200px;
      height: 200px;
      border-radius: 50%;
      background: rgba(200, 195, 185, 0.25);
      border: 1.5px solid rgba(200, 195, 185, 0.5);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    /* inner green ring */
    .prep-img-wrap::before {
      content: "";
      position: absolute;
      inset: 14px;
      border: 1.5px solid rgba(252, 92, 18, 0.45);
      border-radius: 50%;
      z-index: 0;
    }

    /* leaf sprig - bottom left of circle */
    .prep-img-wrap::after {
      content: "\f06c";
      font-family: "Font Awesome 6 Free";
      font-weight: 900;
      position: absolute;
      bottom: 28px;
      left: 20px;
      color: rgba(252, 92, 18, 0.6);
      font-size: 16px;
      z-index: 3;
      transform: rotate(-30deg);
    }

    .prep-img-wrap img {
      width: 145px;
      height: 145px;
      border-radius: 50%;
      object-fit: cover;
      display: block;
      position: relative;
      z-index: 2;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    }

    /* step number - pill at top-left of outer ring */
    .prep-step .step-num {
      position: absolute;
      top: 8px;
      left: 50%;
      transform: translateX(-70px);
      background: var(--accent);
      color: #fff;
      font-size: 15px;
      font-weight: 700;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 4;
      box-shadow: 0 4px 10px rgba(252, 92, 18, 0.25);
    }

    /* icon badge - bottom center below image */
    .prep-step .step-icon {
      position: absolute;
      bottom: -2px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--accent-deep);
      color: #fff;
      border-radius: 10px;
      width: 46px;
      height: 46px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      z-index: 4;
      box-shadow: 0 4px 12px rgba(252, 92, 18, 0.2);
    }

    .prep-step h4 {
      font-size: 18px;
      font-weight: 700;
      margin: 28px 0 8px;
      color: #1c1611;
    }

    .prep-step p {
      font-size: 14px;
      color: #6b5e50;
      margin: 0 auto;
      max-width: 200px;
      line-height: 1.6;
    }

    /* bottom green curved band */
    .prep-band {
      position: relative;
      margin-top: 60px;
      border-radius: 60% 60% 0 0 / 40px 40px 0 0;
      padding: 36px 0 40px;
    }

    .prep-band-inner {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      display: none;
    }

    .prep-band-item {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 0 30px;
      border-right: 1px solid rgba(255, 255, 255, 0.3);
    }

    .prep-band-item:last-child {
      border-right: none;
    }

    .prep-band-item i {
      color: rgba(255, 255, 255, 0.9);
      font-size: 24px;
      flex-shrink: 0;
    }

    .prep-band-item span {
      font-size: 13.5px;
      color: #fff;
      font-weight: 500;
      line-height: 1.4;
    }

    /* ============================== 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)
    }

    /* ============================== WHAT'S INSIDE SECTION ============================== */
    .wsec {
      position: relative;
      background: url("/img/lob-06/whats-inside-section-background.webp") center/cover no-repeat;
      padding: 90px 0 70px;
      overflow: hidden;
    }

    .wsec-eyebrow {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 8px;
      margin-bottom: 14px;
    }

    .wsec-eyebrow-icon {
      color: var(--accent-deep);
      font-size: 18px;
    }

    .wsec-eyebrow-text {
      display: flex;
      align-items: center;
      gap: 14px;
      font-family: var(--mono);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: .28em;
      text-transform: uppercase;
      color: var(--accent-deep);
    }

    .wsec-eyebrow-text::before,
    .wsec-eyebrow-text::after {
      content: "";
      width: 50px;
      height: 1px;
      background: var(--accent-deep);
      opacity: .5;
    }

    .wsec-title {
      font-family: var(--display);
      font-size: clamp(42px, 6vw, 72px);
      font-weight: 400;
      letter-spacing: -.02em;
      color: #1c1611;
      text-align: center;
      line-height: 1.1;
      margin-bottom: 6px;
    }

    .wsec-title em {
      font-style: italic;
      color: var(--accent-deep);
    }

    .wsec-sub {
      text-align: center;
      color: #6b5e50;
      font-size: 16px;
      margin-bottom: 56px;
    }

    /* 7 ingredient cards row */
    .wing-grid {
      display: grid;
      grid-template-columns: repeat(7, minmax(0, 1fr));
      gap: 16px;
      margin-bottom: 60px;
    }

    .wing-card {
      position: relative;
      border: 1px solid rgba(252, 92, 18, 0.16);
      border-radius: 24px;
      background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 244, 232, 0.94));
      padding: 22px 12px 20px;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0;
      box-shadow: 0 12px 28px rgba(28, 22, 17, 0.06);
      transition: transform .3s ease, box-shadow .3s ease;
    }

    .wing-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 18px 40px rgba(252, 92, 18, 0.14);
    }

    /* green leaf badge at top-center overlapping border */
    .wing-badge {
      position: absolute;
      top: -18px;
      left: 50%;
      transform: translateX(-50%);
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--accent), var(--accent-deep));
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      box-shadow: 0 8px 16px rgba(252, 92, 18, 0.24);
    }

    .wing-img {
      width: 100%;
      height: 130px;
      object-fit: contain;
      margin-top: 12px;
      margin-bottom: 14px;
      filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.08));
    }

    .wing-name {
      font-family: var(--display);
      font-size: 17px;
      font-weight: 400;
      color: #1c1611;
      margin-bottom: 8px;
    }

    .wing-dash {
      width: 24px;
      height: 2px;
      background: linear-gradient(90deg, var(--accent), var(--accent-2));
      border-radius: 2px;
    }

    /* bottom benefits strip */
    .wing-strip {
      display: grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      gap: 0;
      border-top: 1px solid rgba(252, 92, 18, 0.14);
      padding-top: 40px;
    }

    .wing-strip-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
      padding: 0 20px;
      border-right: 1px solid rgba(252, 92, 18, 0.12);
      text-align: center;
    }

    .wing-strip-item:last-child {
      border-right: none;
    }

    .wing-strip-item i {
      color: var(--accent-deep);
      font-size: 28px;
    }

    .wing-strip-item span {
      font-size: 13px;
      color: var(--accent-deep);
      line-height: 1.4;
      font-weight: 500;
    }

    /* ============================== WHY SPECIAL (freeze-dried advantages) ============================== */
    .freeze-why {
      position: relative;
      background: url('/img/lob-06/how-to-prepare-section-background.webp') center/cover no-repeat;
      padding: 84px 0 90px;
      overflow: hidden;
    }

    .freeze-why-grid {
      display: grid;
      grid-template-columns: 1.05fr 1fr;
      gap: 30px;
      align-items: center;
    }

    .freeze-why-media {
      min-height: 380px;
      border-radius: 30px;
      background: linear-gradient(145deg, rgba(255, 240, 225, 0.95), rgba(255, 255, 255, 0.98));
      border: 1px solid rgba(252, 92, 18, 0.16);
      box-shadow: var(--shadow-sm);
      padding: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .freeze-why-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 24px;
    }

    .freeze-why-placeholder {
      width: 100%;
      height: 100%;
      min-height: 332px;
      border-radius: 24px;
      border: 2px dashed rgba(252, 92, 18, 0.42);
      background:
        linear-gradient(rgba(252, 92, 18, 0.05), rgba(252, 92, 18, 0.02)),
        repeating-linear-gradient(45deg, rgba(252, 92, 18, 0.04) 0 10px, transparent 10px 20px);
      display: grid;
      place-items: center;
      text-align: center;
      padding: 28px;
    }

    .freeze-why-placeholder-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 12px;
      border-radius: 999px;
      background: rgba(252, 92, 18, 0.08);
      color: var(--accent-deep);
      font-family: var(--mono);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .16em;
      text-transform: uppercase;
      margin-bottom: 16px;
    }

    .freeze-why-placeholder strong {
      display: block;
      font-family: var(--display);
      font-size: clamp(28px, 3vw, 40px);
      font-weight: 400;
      color: #1c1611;
      margin-bottom: 10px;
    }

    .freeze-why-placeholder p {
      max-width: 30ch;
      margin: 0 auto;
      color: #6b5e50;
      font-size: 14px;
    }

    .freeze-why-copy {
      max-width: 640px;
    }

    .freeze-why-copy .eyebrow {
      margin-bottom: 14px;
    }

    .freeze-why-copy h2 {
      font-size: clamp(36px, 4.8vw, 58px);
      line-height: 1.1;
      margin-bottom: 16px;
      color: #1c1611;
    }

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

    .freeze-why-copy p {
      font-size: 16px;
      color: #5d5349;
      margin-bottom: 22px;
    }

    .freeze-why-list {
      list-style: none;
      display: grid;
      gap: 14px;
    }

    .freeze-why-list li {
      display: grid;
      grid-template-columns: 28px 1fr;
      gap: 12px;
      align-items: start;
      padding: 14px 0;
      border-bottom: 1px solid rgba(28, 22, 17, 0.08);
    }

    .freeze-why-list li:last-child {
      border-bottom: none;
    }

    .freeze-why-list i {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: var(--accent-soft);
      display: grid;
      place-items: center;
      color: var(--accent-deep);
      font-size: 12px;
      margin-top: 2px;
    }

    .freeze-why-list span {
      color: #5d5349;
      font-size: 14.5px;
      line-height: 1.6;
    }

    .freeze-why-list strong {
      color: #1c1611;
    }

    .freeze-why-note {
      margin-top: 24px;
      padding: 16px 18px;
      border-radius: 16px;
      background: rgba(252, 92, 18, 0.06);
      border: 1px solid rgba(252, 92, 18, 0.16);
      color: #4f453d;
      font-size: 14px;
    }

    .freeze-why-note strong {
      color: var(--accent-deep);
    }

    @media (max-width: 900px) {
      .freeze-why-grid {
        grid-template-columns: 1fr;
      }

      .freeze-why-media {
        min-height: 320px;
      }
    }

    @media (max-width: 640px) {
      .freeze-why {
        padding: 72px 0 76px;
      }

      .freeze-why-media {
        min-height: 280px;
      }

      .freeze-why-list li {
        grid-template-columns: 24px 1fr;
      }
    }

    .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 CARD ============================== */
    .cta-card {
      position: relative;
      border-radius: 32px;
      background: url('/img/lob-06/cta-section-background.webp') center/cover no-repeat;
      padding: 80px 60px;
      display: flex;
      align-items: center;
      min-height: 480px;
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
      margin-bottom: 60px;
    }

    .cta-left {
      max-width: 480px;
      position: relative;
      z-index: 2;
    }

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

    .cta-eyebrow .icon-circle {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: var(--accent);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
    }

    .cta-eyebrow .line {
      height: 1px;
      background: var(--accent-deep);
      opacity: 0.3;
      width: 160px;
    }

    .cta-title {
      font-family: var(--display);
      font-size: clamp(42px, 5vw, 64px);
      font-weight: 400;
      color: var(--ink);
      line-height: 1.1;
      margin-bottom: 20px;
      letter-spacing: -0.02em;
    }

    .cta-desc {
      font-size: 17px;
      color: var(--ink-soft);
      line-height: 1.5;
      margin-bottom: 40px;
    }

    .cta-desc b {
      font-weight: 700;
    }

    .cta-actions {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }

    .btn-green {
      background: var(--accent);
      color: #fff;
      display: inline-flex;
      align-items: center;
      gap: 5px;
      padding: 14px 10px;
      border-radius: 40px;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .btn-green .ic {
      background: rgba(255, 255, 255, 0.2);
      width: 28px;
      height: 28px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 13px;
    }

    .btn-green:hover {
      background: var(--accent-deep);
      color: #fff;
    }

    .btn-white-outline {
      background: #fdfbf7;
      color: #111;
      display: inline-flex;
      align-items: center;
      gap: 12px;
      padding: 14px 28px;
      border-radius: 40px;
      font-weight: 600;
      text-decoration: none;
      border: 1px solid rgba(0, 0, 0, 0.08);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
      transition: all 0.3s ease;
    }

    .btn-white-outline:hover {
      background: #fff;
      transform: translateY(-2px);
    }

    .btn-white-outline i.fa-amazon {
      font-size: 20px;
    }

    /* ============================== 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='%23FC5C12' 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(252, 92, 18, .16);
      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
    }

    /* ============================== 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
      }

      .details-inner {
        grid-template-columns: 1fr
      }

      .details-art {
        min-height: 400px
      }

      .lhero-bar-inner {
        flex-wrap: wrap
      }

      .lhero-feat {
        flex: 1 1 45%;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, .15);
        padding: 16px 20px
      }

      .details-bar-inner {
        flex-wrap: wrap
      }

      .details-bfeat {
        flex: 1 1 40%;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, .15);
        padding: 14px 16px
      }

      .sig-inner {
        grid-template-columns: 1fr
      }

      .sig-art {
        order: 2
      }

      .sig-copy {
        order: 1
      }
    }

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

      .shell {
        padding: 0 20px
      }

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

      .lhero {
        padding: 88px 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
      }

      .lhero-feat {
        flex: 1 1 100%;
        border-bottom: 1px solid rgba(255, 255, 255, .15)
      }

      .details-bfeat {
        flex: 1 1 100%;
        border-bottom: 1px solid rgba(255, 255, 255, .15)
      }

      .lhero-bg {
        background-position: right center
      }

      .dspec .td-k {
        width: 80px;
        font-size: 9.5px
      }
    }

    @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
    }

    :root {
      --accent: #FC5C12;
      --accent-2: #ff7b3b;
      --accent-soft: #ffe0d0;
      --accent-deep: #d94b0f
    }

    /* ===== variables needed for ported enquiry + footer ===== */
    :root {
      --navy: #274a61;
      --navy-d: #1d3a4d;
      --navy-2: #FC5C12;
      --gold: #ff7b3b;
      --gold-2: #ff9b63;
      --gold-soft: #ffd0b0;
      --wink: #473d30;
      --wmuted: #7c7160;
    }

    /* ============================== ENQUIRY (ported from lob-02) ============================== */
    .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;
    }

    .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(--navy-2);
      margin-bottom: 14px
    }

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

    .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(--accent-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(--accent-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: 0
    }

    .wenq-ci {
      display: flex;
      gap: 20px;
      align-items: center;
      padding: 14px 0;
      position: relative
    }

    .wenq-ci .cic {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      flex-shrink: 0;
      display: grid;
      place-items: center;
      background: var(--accent);
      color: #fff
    }

    .wenq-ci .cic-sep {
      position: absolute;
      left: 28px;
      top: 100%;
      bottom: -14px;
      width: 1px;
      background: rgba(28, 22, 17, .1)
    }

    .wenq-ci:last-child .cic-sep {
      display: none
    }

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

    .wenq-ci small {
      font-size: 13px;
      color: #473b30
    }

    .enq-form-card {
      position: relative;
      background: #fff;
      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, .15)
    }

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

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

    .wenq-tagwrap i.r {
      background: linear-gradient(90deg, #d4d9d1, transparent)
    }

    .wenq-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--accent);
      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: var(--accent-deep)
    }

    .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(--navy-2)
    }

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

    .finput2 {
      width: 100%;
      padding: 14px 16px 14px 44px;
      border-radius: 12px;
      background: #fbfbfb;
      border: 1px solid #eaeaea;
      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(--accent);
      background: #fff;
      box-shadow: 0 0 0 3px rgba(252, 92, 18, .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='%23FC5C12' 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(--accent);
      color: #fff;
      box-shadow: 0 14px 30px -12px rgba(252, 92, 18, .35);
      font-size: 15.5px;
      padding: 16px 26px
    }

    .btn-navy:hover {
      transform: translateY(-2px);
      box-shadow: 0 20px 40px -12px rgba(252, 92, 18, .4)
    }

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

    .wenq-note {
      font-size: 12.5px;
      color: #473b30;
      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(252, 92, 18, .16);
      display: grid;
      place-items: center;
      margin: 0 auto 18px;
      color: var(--accent-deep)
    }

    .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
    }

/* ============================== SITE FOOTER (ported from lob-02) ============================== 
    .site-footer {
      position: relative
    }

    .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: linear-gradient(180deg, #f6efe2, #eef3e6);
      background-repeat: no-repeat;
      background-size: 100% auto
    }

    .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
    }

    @media (max-width:1024px) {
      .wenq-grid {
        grid-template-columns: 1fr;
        gap: 40px
      }

      .freeze-why-grid {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
      }

      .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) {
      .wf-row {
        grid-template-columns: 1fr
      }

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

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

    @media (max-width:460px) {
      .footer-grid {
        grid-template-columns: 1fr
      }
    }
        */
    /* ============================== HERO MOBILE OVERRIDE ============================== */
    @media (max-width: 680px) {
      .lhero {
        padding: 95px 0 30px;
        min-height: unset;
      }
      .lhero-copy {
        width: 100%;
        max-width: 100%;
      }
      .lhero-actions {
        width: 100%;
        max-width: 100%;
        flex-direction: column;
        align-items: stretch;
        flex-wrap: nowrap;
        gap: 10px;
        margin-top: 24px;
      }
      .lhero-actions .btn {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        white-space: normal;
        text-align: center;
        justify-content: center;
        padding: 13px 18px;
        font-size: 14px;
        line-height: 1.3;
        min-height: 48px;
        flex: unset;
      }
    }

    /* ============================== RESPONSIVE OVERRIDES (TABLET & MOBILE) ============================== */
    @media (max-width: 1024px) {
      /* What's Inside */
      .wsec {
        padding: 80px 0 !important;
      }
      .wing-grid {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 16px !important;
      }
      .wing-strip {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 24px !important;
      }
      .wing-strip-item {
        border-right: none !important;
      }
      
      /* Why It Stands Out */
      .freeze-why {
        padding: 70px 0 !important;
      }
      .freeze-why-grid {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
      }
      .freeze-why-media {
        min-height: 400px !important;
      }
      
      /* The Details Section */
      .details-inner {
        grid-template-columns: 1fr !important;
      }
      .details-art {
        min-height: 450px !important;
      }
      .details-copy {
        padding: 60px 30px !important;
      }
      .details-bar-inner {
        flex-wrap: wrap !important;
      }
      .details-bfeat {
        flex: 1 1 50% !important;
        border-right: none !important;
        padding: 20px !important;
      }
      
      /* Signature Recipe */
      .sig-step-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px !important;
      }
      .sig-inner {
        padding: 80px 10px !important;
      }
    }

    @media (max-width: 680px) {
      /* What's Inside */
      .wsec {
        padding: 60px 0 !important;
      }
      .wing-grid {
        grid-template-columns: repeat(2, 1fr) !important;
      }
      .wing-strip {
        grid-template-columns: repeat(2, 1fr) !important;
      }
      
      /* Why It Stands Out */
      .freeze-why {
        padding: 50px 0 !important;
      }
      .freeze-why-media {
        min-height: 270px !important;
      }
      
      /* The Details Section */
      .details-art {
        min-height: 300px !important;
      }
      .details-copy {
        padding: 40px 20px !important;
      }
      .details-bfeat {
        flex: 1 1 100% !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15) !important;
      }
      
      /* Signature Recipe */
      .sig-step-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 12px !important;
      }
      .sig-inner {
        padding: 60px 10px !important;
      }
      .sig-pills {
        flex-wrap: wrap !important;
        gap: 8px !important;
      }
      .sig-pill {
        font-size: 12px !important;
        padding: 6px 12px !important;
      }
      
      /* CTA Card */
      .cta-actions {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 10px !important;
        width: 100% !important;
      }
      .cta-actions .btn-green,
      .cta-actions .btn-white-outline {
        width: 100% !important;
        box-sizing: border-box !important;
        text-align: center !important;
        justify-content: center !important;
        white-space: normal !important;
        padding: 13px 18px !important;
        font-size: 14px !important;
        min-height: 48px !important;
      }
      .cta-card {
        padding: 32px 20px !important;
      }
      
      /* Enquiry Form */
      .wenq-grid {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
      }
      .wenq-form {
        padding: 24px 20px !important;
      }
      .wf-row {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
      }
    }

    @media (max-width: 480px) {
      /* What's Inside */
      .wing-grid {
        grid-template-columns: 1fr !important;
      }
      .wing-strip {
        grid-template-columns: 1fr !important;
      }
      
      /* The Details Section */
      .dspec {
        font-size: 13px !important;
      }
      .dspec .td-k {
        width: 70px !important;
        font-size: 9px !important;
      }
      .details-copy {
        padding: 40px 15px !important;
      }
      
      /* Signature Recipe */
      .sig-step-grid {
        grid-template-columns: 1fr !important;
      }
      .sig-step-media {
        aspect-ratio: 16 / 9 !important;
      }
    }
  
  