/* LOB 05 - Corporate Catering
   Extracted verbatim from <style>
   in design file lob-05-corporate-catering.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: #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: #e85d1f;
      --accent-2: #f4933a;
      --accent-soft: #f3d58a;
      --accent-deep: #bf4310;
    }

    *,
    *::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;
      min-height: 100svh;
      padding: 160px 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: -250px;
      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
    }

    .section-why-us {
      background-image: url('/img/lob-05/why-choose-us-section-background.webp');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      padding: 100px 0;
    }

    .fsplit-copy h2 {
      font-size: clamp(32px, 4vw, 54px);
      font-weight: 300;
      letter-spacing: -.025em;
      margin: 18px 0 40px;
      color: var(--ink);
      line-height: 1.1;
    }

    .fsplit-copy h2 em {
      font-style: italic;
    }

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

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

    .fsplit-list li {
      display: flex;
      gap: 18px;
      align-items: center;
      font-size: 15.5px;
      color: var(--ink-soft);
    }

    .fsplit-list .tick {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      flex-shrink: 0;
      display: grid;
      place-items: center;
      background: #3b2d6e;
      color: #fff;
    }

    .fsplit-list .tick svg {
      width: 22px;
      height: 22px;
      stroke: currentColor;
      stroke-width: 1.5;
      fill: none;
    }

    .fsplit-list li b {
      font-weight: 600;
      color: var(--ink);
    }

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

    /* ============================== WHY CHOOSE US ============================== */
    .section-why-us {
      position: relative;
      padding: 110px 0;
      background:
        linear-gradient(135deg, color-mix(in srgb, var(--cream-2) 82%, #fff), color-mix(in srgb, var(--accent-soft) 40%, #fff));
    }

    .section-why-us::before {
      content: "";
      position: absolute;
      inset: 0;
      background: url('/img/lob-05/why-choose-us-section.webp') center/cover no-repeat;
      opacity: .16;
      pointer-events: none;
    }

    .section-why-us .why-source {
      position: relative;
      z-index: 1;
    }

    .section-why-us .why-source .sec-head {
      max-width: 760px;
      margin: 0 auto 56px;
      text-align: center;
    }

    .section-why-us .why-source .eyebrow {
      justify-content: center;
      color: var(--accent-deep);
      margin-bottom: 12px;
    }

    .section-why-us .why-source .eyebrow::before,
    .section-why-us .why-source .eyebrow::after {
      content: "";
      width: 34px;
      height: 1px;
      background: var(--accent);
      opacity: .8;
      display: inline-block;
    }

    .section-why-us .why-source .eyebrow::before {
      margin-right: 10px;
    }

    .section-why-us .why-source .eyebrow::after {
      margin-left: 10px;
    }

    .section-why-us .why-source h2 {
      font-size: clamp(32px, 4vw, 54px);
      font-weight: 300;
      letter-spacing: -.025em;
      margin: 16px 0 16px;
      color: var(--ink);
      line-height: 1.1;
    }

    .section-why-us .why-source h2 em {
      color: var(--accent-deep);
      font-style: italic;
    }

    .section-why-us .why-source p {
      font-size: clamp(16px, 1.4vw, 19px);
      color: var(--ink-soft);
      max-width: 680px;
      margin: 0 auto;
    }

    .section-why-us .why-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 24px;
      max-width: 1180px;
      margin: 0 auto;
    }

    .section-why-us .why-card {
      background: rgba(255, 255, 255, .96);
      border: 1px solid color-mix(in srgb, var(--accent) 20%, transparent);
      border-radius: 32px;
      overflow: visible;
      box-shadow: 0 18px 45px rgba(28, 22, 17, .08);
      position: relative;
      display: flex;
      flex-direction: column;
    }

    .section-why-us .why-card-icon {
      width: 74px;
      height: 74px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: linear-gradient(135deg, var(--accent), var(--accent-2));
      color: #fff;
      border: 4px solid color-mix(in srgb, var(--cream) 80%, #fff);
      box-shadow: 0 12px 24px rgba(232, 93, 31, .22);
      position: absolute;
      top: -37px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 2;
    }

    .section-why-us .why-card-top {
      padding: 56px 24px 26px;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      flex: 1;
    }

    .section-why-us .why-card-img-wrap {
      width: 100%;
      height: 200px;
      overflow: hidden;
      border-bottom-left-radius: 32px;
      border-bottom-right-radius: 32px;
      border-top: 1px solid var(--line-2);
    }

    .section-why-us .why-card-icon {
      width: 74px;
      height: 74px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: linear-gradient(135deg, var(--accent), var(--accent-2));
      color: #fff;
      border: 4px solid color-mix(in srgb, var(--cream) 80%, #fff);
      box-shadow: 0 12px 24px rgba(232, 93, 31, .22);
      position: absolute;
      top: -37px;
      left: 50%;
      transform: translateX(-50%);
    }

    .section-why-us .why-card-icon svg {
      width: 30px;
      height: 30px;
      stroke: currentColor;
      stroke-width: 1.6;
      fill: none;
    }

    .section-why-us .why-card h4 {
      font-size: 22px;
      color: var(--ink);
      margin-bottom: 10px;
      font-weight: 400;
      line-height: 1.2;
    }

    .section-why-us .why-card .divider {
      width: 22px;
      height: 2px;
      background: linear-gradient(90deg, var(--accent), transparent);
      margin-bottom: 12px;
      border-radius: 999px;
    }

    .section-why-us .why-card p {
      font-size: 14.5px;
      color: var(--ink-soft);
      line-height: 1.6;
      margin: 0;
    }

    .section-why-us .why-card-img-wrap {
      width: 100%;
      height: 200px;
      overflow: hidden;
      border-top: 1px solid var(--line-2);
    }

    .section-why-us .why-card-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
    }

    @media (max-width: 1024px) {
      .section-why-us .why-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 640px) {
      .section-why-us .why-grid {
        grid-template-columns: 1fr;
      }

      .section-why-us .why-card-img-wrap {
        height: 180px;
      }
    }

    /* ============================== 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 ============================== */
    .section-menu {
      background-image: url('/img/lob-05/the-menu-section-background.webp');
      background-size: cover;
      background-position: top center;
      background-repeat: no-repeat;
    }

    .menu-header {
      max-width: 460px;
      margin-bottom: 40px;
    }

    .menu-header h2 {
      font-size: clamp(34px, 4.5vw, 56px);
      font-weight: 300;
      letter-spacing: -.03em;
      line-height: 1.1;
    }

    .menu-header h2 em {
      display: block;
      font-style: italic;
      color: var(--accent);
    }

    .menu-header p {
      margin-top: 14px;
      color: var(--ink-soft);
      max-width: 44ch;
    }

    .menu-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      align-items: stretch;
    }

    /* Each card: soft background, row layout (text left, image right) */
    .menu-cat {
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
      display: grid;
      grid-template-columns: 1fr 165px;
      align-items: stretch;
      position: relative;
      min-height: 340px;
    }

    .menu-cat.purple {
      background: #ede8f7;
    }

    .menu-cat.green {
      background: #eaf1ec;
    }

    .menu-cat.orange {
      background: #f5ede1;
    }

    .menu-cat-top {
      padding: 26px 10px 24px 24px;
      display: flex;
      flex-direction: column;
    }

    .menu-cat-icon {
      width: 54px;
      height: 54px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 18px;
      flex-shrink: 0;
    }

    .menu-cat-icon svg {
      width: 26px;
      height: 26px;
    }

    .menu-cat-icon.purple {
      background: var(--accent);
      color: #fff;
    }

    .menu-cat-icon.green {
      background: #4a7c59;
      color: #fff;
    }

    .menu-cat-icon.orange {
      background: #c97c38;
      color: #fff;
    }

    .menu-cat h4 {
      font-size: 20px;
      font-weight: 600;
      color: var(--ink);
      letter-spacing: -.01em;
      margin-bottom: 10px;
      line-height: 1.2;
    }

    .menu-cat-rule {
      width: 36px;
      height: 3px;
      border-radius: 2px;
      margin-bottom: 18px;
    }

    .menu-cat-rule.purple {
      background: var(--accent);
    }

    .menu-cat-rule.green {
      background: #4a7c59;
    }

    .menu-cat-rule.orange {
      background: #c97c38;
    }

    .menu-cat ul {
      list-style: none;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 9px;
      flex: 1;
    }

    .menu-cat li {
      font-size: 14px;
      color: var(--ink-soft);
      display: flex;
      align-items: flex-start;
      gap: 8px;
      line-height: 1.4;
    }

    .menu-cat li .mc-tick {
      flex-shrink: 0;
      width: 18px;
      height: 18px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: 1px;
    }

    .mc-tick.purple {
      background: var(--accent);
      color: #fff;
    }

    .mc-tick.green {
      background: #4a7c59;
      color: #fff;
    }

    .mc-tick.orange {
      background: #c97c38;
      color: #fff;
    }

    .mc-tick svg {
      width: 10px;
      height: 10px;
    }

    /* Image column - right side, fills full height */
    .menu-cat-img-wrap {
      position: relative;
      overflow: hidden;
      border-radius: 100% 0 0 100% / 50% 0 0 50%;
      flex-shrink: 0;
      height: 100%;
      margin-left: -15px;
    }

    .menu-cat-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    /* Bottom feature bar */
    .menu-foot-bar {
      display: flex;
      justify-content: space-around;
      align-items: center;
      padding: 28px 0 20px;
      margin-top: 40px;
    }

    .menu-foot-item {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      font-size: 13.5px;
      color: var(--ink-soft);
      flex: 1;
    }

    .menu-foot-item svg {
      width: 22px;
      height: 22px;
      stroke: var(--accent);
      stroke-width: 1.6;
      fill: none;
    }

    .menu-foot-item:not(:last-child) {
      border-right: 1px solid var(--line);
    }

    .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) ============================== */
    .section-enquiry {
      background-image: url('/img/lob-05/enquiry-section-background.webp');
      background-size: cover;
      background-position: center bottom;
      background-repeat: no-repeat;
      padding: 100px 0;
    }

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

    .enquiry-info .eyebrow {
      margin-bottom: 20px;
    }

    .enquiry-info h2 {
      font-size: clamp(34px, 4.5vw, 58px);
      font-weight: 300;
      color: var(--ink);
      letter-spacing: -.03em;
      line-height: 1.05;
      margin-bottom: 24px;
    }

    .enquiry-info h2 em {
      font-style: italic;
      color: #3b2d6e;
      display: block;
    }

    .enquiry-info h2 .enq-underline {
      display: block;
      width: 60px;
      height: 3px;
      background: #3b2d6e;
      margin-top: 12px;
      border-radius: 2px;
    }

    .enquiry-info>p {
      color: var(--ink-soft);
      font-size: 16px;
      line-height: 1.6;
      max-width: 44ch;
      margin-bottom: 36px;
    }

    .cinfo-list {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .cinfo {
      display: flex;
      align-items: center;
      gap: 16px;
      background: rgba(255, 255, 255, 0.7);
      border: 1px solid rgba(200, 195, 220, 0.4);
      border-radius: 100px;
      padding: 10px 20px 10px 10px;
    }

    .cinfo .ic {
      width: 46px;
      height: 46px;
      border-radius: 50%;
      background: #3b2d6e;
      display: grid;
      place-items: center;
      flex-shrink: 0;
    }

    .cinfo .ic svg {
      width: 20px;
      height: 20px;
      stroke: #fff;
      stroke-width: 1.8;
    }

    .cinfo b {
      font-size: 15px;
      display: block;
      color: var(--ink);
    }

    .cinfo small {
      color: var(--ink-soft);
      font-size: 13px;
    }

    /* ---- Form panel ---- */
    .form-panel {
      background: #fff;
      border-radius: 24px;
      padding: clamp(28px, 3vw, 40px);
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    }

    .form-header {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 30px;
    }

    .form-avatar {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: #3b2d6e;
      display: grid;
      place-items: center;
      flex-shrink: 0;
    }

    .form-avatar svg {
      width: 26px;
      height: 26px;
      stroke: #fff;
      stroke-width: 1.5;
      fill: none;
    }

    .form-header-label {
      font-family: var(--mono);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: .15em;
      text-transform: uppercase;
      color: #3b2d6e;
    }

    .fgroup {
      margin-bottom: 18px;
    }

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

    .flabel {
      display: block;
      font-size: 13px;
      font-weight: 600;
      margin-bottom: 8px;
      color: var(--ink);
    }

    .finput-wrap {
      position: relative;
    }

    .finput-wrap .finput-icon {
      position: absolute;
      right: 14px;
      top: 50%;
      transform: translateY(-50%);
      width: 18px;
      height: 18px;
      stroke: #bbb;
      stroke-width: 1.5;
      fill: none;
      pointer-events: none;
    }

    .finput-wrap textarea~.finput-icon {
      top: 16px;
      transform: none;
    }

    .finput {
      width: 100%;
      padding: 13px 42px 13px 16px;
      border-radius: 12px;
      background: #f7f6f9;
      border: 1.5px solid #e5e2ef;
      color: var(--ink);
      font-family: var(--sans);
      font-size: 15px;
      transition: border-color .25s;
    }

    .finput::placeholder {
      color: #aaa;
    }

    .finput:focus {
      outline: none;
      border-color: #3b2d6e;
      background: #fff;
    }

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

    textarea.finput {
      resize: vertical;
      min-height: 100px;
      padding-right: 16px;
    }

    .form-divider {
      display: flex;
      align-items: center;
      gap: 14px;
      margin: 24px 0;
    }

    .form-divider::before,
    .form-divider::after {
      content: '';
      flex: 1;
      height: 1px;
      background: #e5e2ef;
    }

    .form-divider-icon {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      border: 1.5px solid #e5e2ef;
      display: grid;
      place-items: center;
      flex-shrink: 0;
    }

    .form-divider-icon svg {
      width: 18px;
      height: 18px;
      stroke: #3b2d6e;
      stroke-width: 1.5;
      fill: none;
    }

    .btn-enq {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      background: #3b2d6e;
      color: #fff;
      border: none;
      border-radius: 100px;
      padding: 16px 28px;
      font-size: 16px;
      font-weight: 500;
      font-family: var(--sans);
      cursor: pointer;
      transition: opacity .2s;
    }

    .btn-enq:hover {
      opacity: 0.88;
    }

    .btn-enq svg {
      width: 18px;
      height: 18px;
      stroke: currentColor;
      stroke-width: 2;
      fill: none;
    }

    .form-note {
      font-size: 13px;
      color: var(--ink-soft);
      text-align: center;
      margin-top: 14px;
    }

    .form-note strong {
      color: #3b2d6e;
    }

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

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

    .form-ok .ok-ic {
      width: 64px;
      height: 64px;
      border-radius: 50%;
      background: #efeafb;
      display: grid;
      place-items: center;
      margin: 0 auto 18px;
    }

    .form-ok .ok-ic svg {
      stroke: #3b2d6e;
    }

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

    .form-ok p {
      color: var(--ink-soft);
      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
      }
    }

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

    :root {
      --accent: #6f57aa;
      --accent-2: #9a83cf;
      --accent-soft: #cabceb;
      --accent-deep: #564189
    }

    /* Mockup Specific Styles */
    .lhero {
      background-image: url('/img/lob-05/lob-05-corporate-catering-slider-section-background.webp');
      background-size: cover;
      background-position: center center;
      background-repeat: no-repeat;
      padding-bottom: 0;
    }

    .lhero-bg {
      display: none;
    }

    .lhero-art .ph {
      display: none;
    }

    .lhero-inner {
      padding-bottom: 40px;
    }

    .lhero-bottom-bar {
      background: var(--accent-deep);
      color: #fff;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 24px 40px;
      border-radius: 16px;
      margin-top: 40px;
      margin-bottom: 40px;
    }

    .lhero-bottom-bar-item {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 14px;
    }

    .lhero-bottom-bar-item svg {
      width: 32px;
      height: 32px;
      stroke-width: 1.2;
    }

    .lhero-bottom-bar-item:not(:last-child) {
      border-right: 1px solid rgba(255, 255, 255, 0.2);
      padding-right: 40px;
    }

    .lhero-chip {
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }



    .lhero-badge-circle {
      position: absolute;
      bottom: -290px;
      left: -80px;
      width: 120px;
      height: 120px;
      background: var(--accent-deep);
      border: 2px solid #d4af37;
      border-radius: 50%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-align: center;
      line-height: 1.2;
    }

    .lhero-badge-circle svg {
      width: 28px;
      height: 28px;
      margin-bottom: 4px;
      color: #d4af37;
      stroke-width: 1.2;
    }

    .section-who-we-serve {
      background-image: url('/img/lob-05/who-we-serve-section-image.webp');
      background-size: cover;
      background-position: top;
      background-repeat: no-repeat;
      padding: 120px 0 100px;
      position: relative;
      overflow: hidden;
    }

    .section-who-we-serve::before {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
    }

    .section-who-we-serve .shell {
      position: relative;
      z-index: 1;
    }

    .client-row-logos {
      display: flex;
      gap: 20px;
      margin-top: 16px;
      flex-wrap: wrap;
      justify-content: flex-start;
    }

    .client-logo-card {
      background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(255,255,255,0.80));
      border: 1px solid rgba(255,255,255,0.85);
      border-radius: 24px;
      padding: 0px;
      display: grid;
      place-items: center;
      box-shadow: 0 20px 40px rgba(18, 27, 41, 0.12);
      backdrop-filter: blur(10px);
      min-width: 160px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .client-logo-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 24px 48px rgba(18, 27, 41, 0.16);
    }

    .client-logo-card img {
      max-height: 70px;
      max-width: 120px;
    }

    .sec-head.wws {
      max-width: 580px;
      margin-bottom: 40px;
      padding-right: 18px;
    }

    .ucgrid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 24px;
      align-items: stretch;
      margin-top: 16px;
    }

    .uc {
      display: grid;
      grid-template-columns: auto 1fr;
      grid-template-areas:
        "icon title"
        "desc desc";
      gap: 18px;
      padding: 28px 24px;
      background: rgba(255, 255, 255, 0.95);
      border: 1px solid rgba(255, 255, 255, 0.7);
      border-radius: 28px;
      box-shadow: 0 22px 48px rgba(19, 20, 28, 0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      min-height: 180px;
      align-items: center;
    }

    .uc:hover {
      transform: translateY(-4px);
      box-shadow: 0 28px 60px rgba(19, 20, 28, 0.12);
    }

    .uc .ic {
      grid-area: icon;
      width: 56px;
      height: 56px;
      display: grid;
      place-items: center;
      border-radius: 20px;
      background: rgba(255,255,255,0.88);
      box-shadow: inset 0 0 0 1px rgba(0,0,0,0.06);
      color: var(--accent-deep);
      margin-top: 4px;
    }

    .uc h4 {
      grid-area: title;
      margin: 0;
      align-self: center;
    }

    .uc p {
      grid-area: desc;
      margin: 0;
      padding-right: 6px;
    }


    .uc h4 {
      margin: 0;
      font-size: 1.05rem;
      line-height: 1.3;
      color: var(--ink);
    }

    .uc p {
      margin: 0;
      color: var(--ink-soft);
      line-height: 1.65;
    }

    @media (max-width: 1160px) {
      .ucgrid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

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

      .sec-head.wws {
        max-width: 100%;
        padding-right: 0;
      }
    }

    /* ============================== MENU SHOWCASE ZIGZAG ============================== */
    .menu-showcase {
      width: 100%;
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .ms-row {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 60px;
      padding: 50px max(20px, calc(50vw - 640px));
      min-height: 100svh;
      position: sticky;
      top: calc(80px + var(--mi, 0) * 14px);
      border-radius: 32px 32px 0 0;
      overflow: hidden;
      box-shadow: 0 -12px 50px -10px rgba(0, 0, 0, 0.22);
      z-index: calc(10 + var(--mi, 0));
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
    }

    .ms-row.ms-reverse {
      justify-content: flex-start;
    }

    @supports (animation-timeline: view()) {
      .ms-row {
        animation: msStackOut linear both;
        animation-timeline: view();
        animation-range: exit 5% exit 95%;
      }

      @keyframes msStackOut {
        to {
          transform: scale(0.92);
          filter: brightness(0.6);
        }
      }
    }

    /* Content glass card */
    .ms-content {
      width: 100%;
      max-width: 600px;
      flex: none;
      display: flex;
      flex-direction: column;
      gap: 0;
      background: rgba(255, 255, 255, 0.82);
      backdrop-filter: blur(22px);
      -webkit-backdrop-filter: blur(22px);
      border: 1px solid rgba(255, 255, 255, 0.65);
      border-radius: 28px;
      padding: clamp(24px, 3.5vw, 44px);
      box-shadow: 0 8px 40px rgba(0, 0, 0, 0.10), inset 0 1px 0 rgba(255, 255, 255, 0.9);
      opacity: 0;
      transform: translateX(60px);
      transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1), transform 1s cubic-bezier(0.25, 1, 0.5, 1);
    }

    .ms-content.in {
      opacity: 1;
      transform: none;
    }

    .ms-row.ms-reverse .ms-content {
      transform: translateX(-60px);
    }

    .ms-row.ms-reverse .ms-content.in {
      transform: none;
    }

    .ms-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 11px;
      font-family: var(--mono);
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--accent-deep);
      background: rgba(111, 87, 170, 0.10);
      border: 1px solid rgba(111, 87, 170, 0.25);
      border-radius: 100px;
      padding: 6px 16px;
      margin-bottom: 14px;
      width: fit-content;
    }

    .ms-eyebrow::before {
      content: '';
      display: block;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--accent-deep);
    }

    .ms-title {
      font-size: clamp(1.4rem, 2.6vw, 2.2rem);
      font-family: var(--display);
      font-weight: 400;
      color: #1a1710;
      margin: 0 0 14px;
      line-height: 1.15;
      letter-spacing: -0.025em;
      display: flex;
      align-items: flex-start;
      gap: 10px;
      flex-wrap: wrap;
    }

    .ms-title::after {
      content: "";
      display: inline-block;
      width: 16px;
      height: 16px;
      flex-shrink: 0;
      margin-top: 5px;
      background: url('/img/lob-05/veg-icon.webp') center/contain no-repeat;
    }

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

    /* Duo-card titles — slightly smaller to handle longer names */
    .ms-duo-content .ms-title {
      font-size: clamp(1.25rem, 2.2vw, 1.9rem);
    }

    .ms-divider {
      width: 48px;
      height: 2px;
      background: linear-gradient(90deg, var(--accent-deep), transparent);
      border-radius: 2px;
      margin-bottom: 18px;
    }

    /* Pricing Table */
    .ms-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 13px;
      border-radius: 12px;
      overflow: hidden;
      border: 1px solid rgba(111, 87, 170, 0.15);
    }

    .ms-table thead tr {
      background: var(--accent-deep);
      color: #fff;
    }

    .ms-table thead th {
      padding: 10px 10px;
      font-weight: 600;
      text-align: left;
      font-size: 11px;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      white-space: nowrap;
    }

    .ms-table tbody tr {
      border-bottom: 1px solid rgba(111, 87, 170, 0.09);
      transition: background 0.2s;
    }

    .ms-table tbody tr:nth-child(even) {
      background: rgba(111, 87, 170, 0.04);
    }

    .ms-table tbody tr:hover {
      background: rgba(111, 87, 170, 0.09);
    }

    .ms-table tbody td {
      padding: 9px 10px;
      color: #3a3228;
      vertical-align: middle;
    }

    .ms-table tbody td:first-child {
      max-width: 140px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      cursor: pointer;
      user-select: none;
    }

    .ms-table tbody td:first-child.expanded {
      white-space: normal;
      overflow: visible;
      text-overflow: clip;
    }

    .ms-table .td-price-mrp {
      color: #111;
      text-decoration: line-through;
      text-decoration-color: #d62828;
      text-decoration-thickness: 2px;
      font-size: 1rem;
      font-weight: 700;
      text-align: center;
    }

    .ms-table .td-price-smartq {
      color: #2a7a3b;
      font-weight: 700;
      font-size: 1.2rem;
      text-align: center;
    }

    .ms-table th:nth-child(n + 2),
    .ms-table td.td-price-mrp,
    .ms-table td.td-price-smartq {
      text-align: center;
    }

    .ms-table .td-discount {
      background: #e8f7ec;
      color: #1a6b2e;
      font-weight: 700;
      border-radius: 4px;
      text-align: center;
      padding: 4px 8px;
      white-space: nowrap;
    }


    /* Side-by-side rows */
    .ms-duo-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
      position: sticky;
      top: calc(80px + var(--mi, 0) * 14px);
      border-radius: 32px 32px 0 0;
      overflow: hidden;
      box-shadow: 0 -12px 50px -10px rgba(0, 0, 0, 0.22);
      z-index: calc(10 + var(--mi, 0));
    }

    .ms-duo-card {
      min-height: 90svh;
      display: flex;
      align-items: center;
      justify-content: flex-end;
      padding: 60px max(16px, 3vw);
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      position: relative;
    }

    /* Overlays removed per user request */

    .ms-duo-content {
      position: relative;
      z-index: 2;
      max-width: 340px;
      background: rgba(255, 255, 255, 0.84);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      border: 1px solid rgba(255, 255, 255, 0.7);
      border-radius: 20px;
      padding: clamp(18px, 2.5vw, 32px);
      box-shadow: 0 6px 30px rgba(0, 0, 0, 0.09);
      opacity: 0;
      transform: translateX(40px);
      transition: opacity 0.9s cubic-bezier(0.25, 1, 0.5, 1), transform 0.9s cubic-bezier(0.25, 1, 0.5, 1);
    }

    .ms-duo-card.ms-duo-left .ms-duo-content {
      transform: translateX(-40px);
    }

    .ms-duo-content.in {
      opacity: 1;
      transform: none !important;
    }

    /* Responsive */
    @media (max-width: 860px) {
    }

    @media (max-width: 1024px) {
      /* Hero — match AbcMaltWholesale style */
      .lhero {
        padding: 110px 0 40px !important;
        min-height: auto !important;
        background: url('/img/lob-05/lob-05-corporate-catering-slider-section-background.webp') center/cover no-repeat !important;
      }
      .lhero-bg,
      .lhero-mesh,
      .grain {
        display: none !important;
      }
      .lhero-inner {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
        padding-bottom: 20px !important;
      }
      .lhero-art {
        display: none !important;
      }
      .section-who-we-serve {
        background-image: none !important;
      }
      .ucgrid,
      .pgrid.cols-3,
      .process-grid,
      .prep {
        grid-template-columns: 1fr 1fr !important;
      }
      .wenq-grid {
        grid-template-columns: 1fr;
        gap: 40px
      }

      /* Menu Showcase un-stick and layout */
      .ms-row {
        padding: 60px clamp(18px, 5vw, 36px);
        min-height: auto;
        justify-content: center;
        position: relative;
        top: unset;
      }
      .ms-content {
        max-width: 100%;
        transform: translateX(-50px);
        text-align: left;
        box-sizing: border-box;
      }
      .ms-content.in {
        transform: none !important;
      }
      .ms-eyebrow {
        flex-wrap: wrap;
        justify-content: flex-start;
        text-align: left;
        height: auto;
        white-space: normal;
      }
      .ms-duo-row {
        grid-template-columns: 1fr;
        position: relative;
        top: unset;
      }
      .ms-duo-card {
        justify-content: center;
        min-height: 70svh;
      }
      .ms-duo-content {
        max-width: 100%;
        transform: translateX(-50px);
        text-align: left;
        box-sizing: border-box;
      }
      .ms-duo-content.in {
        transform: none !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) {
      .lhero {
        padding: 90px 0 36px !important;
      }
      .lhero h1 {
        font-size: clamp(30px, 9vw, 48px) !important;
      }
      .lhero-actions {
        flex-direction: column;
      }
      .lhero-actions .btn {
        width: 100%;
        justify-content: center;
      }
      .ucgrid,
      .pgrid.cols-3,
      .process-grid,
      .prep {
        grid-template-columns: 1fr !important;
      }
      .spec .row {
        grid-template-columns: 1fr !important;
      }
      .spec .k {
        padding-bottom: 8px !important;
      }
      .spec .v {
        padding-top: 8px !important;
      }
      .ing-row {
        justify-content: center;
      }
      .wf-row {
        grid-template-columns: 1fr
      }

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

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

      /* Match tt-products 576px behavior */
      .ms-row {
        padding: 40px 16px !important;
        border-radius: 20px 20px 0 0;
      }
      .ms-content, .ms-duo-content {
        padding: 28px 20px !important;
      }
      .ms-title {
        font-size: 26px;
      }
      .ms-duo-content .ms-title {
        font-size: 22px;
      }
    }
  