/**
 * Taqueria La Favorita Footer CSS
 * Extracted from footer-5-9-26-8-30pm.txt
 * Upload path: /wp-content/themes/gatsby-child/assets/css/lf-footer.css
 */

#lf-menu-grain-footer {
      --lf-menu-navy: #14132F;
      --lf-menu-purple: #211D4B;
      --lf-menu-purple-2: #2B245E;
      --lf-menu-black: #0C0B18;

      --lf-menu-magenta: #E02A83;
      --lf-menu-magenta-soft: rgba(224, 42, 131, 0.46);

      --lf-menu-cream: #ffe4b3;
      --lf-menu-cream-soft: rgba(255, 228, 179, 0.82);

      --lf-menu-white: #F7F3EA;
      --lf-menu-muted: rgba(247, 243, 234, 0.58);

      --lf-teal: #00B592;
      --lf-green: #AACF3A;

      --lf-line: rgba(255, 228, 179, 0.13);
      --lf-line-strong: rgba(255, 228, 179, 0.28);

      --lf-ease: cubic-bezier(.18,.85,.25,1);

      position: relative;
      overflow: hidden;
      isolation: isolate;
      color: var(--lf-menu-white);
      background:
        radial-gradient(circle at 13% 22%, rgba(224, 42, 131, 0.18), transparent 31%),
        radial-gradient(circle at 82% 20%, rgba(255, 228, 179, 0.08), transparent 24%),
        radial-gradient(circle at 74% 78%, rgba(0, 181, 146, 0.10), transparent 27%),
        linear-gradient(135deg, var(--lf-menu-black) 0%, var(--lf-menu-navy) 38%, var(--lf-menu-purple) 100%);
      font-family: "Josefin Sans", "Montserrat", "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

      opacity: 0;
      transform: translateY(46px) scale(.965);
      filter: blur(18px);
      transition:
        opacity 1100ms var(--lf-ease),
        transform 1100ms var(--lf-ease),
        filter 1100ms var(--lf-ease);
      will-change: opacity, transform, filter;
    }

    #lf-menu-grain-footer.lf-ready {
      opacity: 1;
      transform: translateY(0) scale(1);
      filter: blur(0);
    }

    #lf-menu-grain-footer * {
      box-sizing: border-box;
    }

    #lf-menu-grain-footer a {
      color: inherit;
      text-decoration: none;
    }

    #lf-menu-grain-footer img,
    #lf-menu-grain-footer svg {
      display: block;
    }

    /* Dreamy blur wave */
    #lf-menu-grain-footer::before {
      content: "";
      position: absolute;
      inset: -20%;
      z-index: 0;
      pointer-events: none;
      background:
        radial-gradient(circle at 16% 42%, rgba(224, 42, 131, 0.24), transparent 22%),
        radial-gradient(circle at 45% 18%, rgba(255, 228, 179, 0.10), transparent 18%),
        radial-gradient(circle at 82% 64%, rgba(0, 181, 146, 0.13), transparent 22%),
        radial-gradient(circle at 56% 76%, rgba(77, 63, 153, 0.34), transparent 34%),
        radial-gradient(circle at 28% 82%, rgba(224, 42, 131, 0.14), transparent 26%);
      filter: blur(50px);
      opacity: 0.95;
      animation: lfFooterDreamMove 16s ease-in-out infinite alternate;
    }

    @keyframes lfFooterDreamMove {
      0% { transform: translate3d(-1.4%, -1%, 0) scale(1); }
      100% { transform: translate3d(1.8%, 1.6%, 0) scale(1.05); }
    }

    /* Extra ambient wave */
    #lf-menu-grain-footer .lf-wave {
      position: absolute;
      inset: -10%;
      z-index: 0;
      pointer-events: none;
      opacity: .45;
      background:
        conic-gradient(
          from 180deg at 50% 50%,
          transparent 0deg,
          rgba(224, 42, 131, 0.10) 65deg,
          transparent 130deg,
          rgba(0, 181, 146, 0.07) 225deg,
          transparent 310deg
        );
      filter: blur(70px);
      animation: lfFooterWaveRotate 18s linear infinite;
    }

    @keyframes lfFooterWaveRotate {
      0% { transform: rotate(0deg) scale(1); }
      100% { transform: rotate(360deg) scale(1.03); }
    }

    /* Glass slide sweep */
    #lf-menu-grain-footer .lf-glass-sheen {
      position: absolute;
      inset: -22%;
      z-index: 2;
      pointer-events: none;
      opacity: 0;
      background:
        linear-gradient(
          112deg,
          transparent 0%,
          transparent 36%,
          rgba(255, 255, 255, 0.05) 43%,
          rgba(255, 228, 179, 0.13) 48%,
          rgba(255, 255, 255, 0.06) 53%,
          transparent 62%,
          transparent 100%
        );
      filter: blur(7px);
      transform: translateX(-120%) skewX(-10deg);
    }

    #lf-menu-grain-footer.lf-ready .lf-glass-sheen {
      animation: lfFooterGlassSweep 1550ms var(--lf-ease) 260ms both;
    }

    @keyframes lfFooterGlassSweep {
      0% {
        opacity: 0;
        transform: translateX(-120%) skewX(-10deg);
      }
      18% {
        opacity: .9;
      }
      100% {
        opacity: 0;
        transform: translateX(120%) skewX(-10deg);
      }
    }

    /* SVG grain overlay */
    #lf-menu-grain-footer::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 1;
      pointer-events: none;
      opacity: 0.24;
      mix-blend-mode: soft-light;
      background-image:
        url("data:image/svg+xml,%3Csvg viewBox='0 0 240 240' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='grain'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.78' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23grain)' opacity='0.75'/%3E%3C/svg%3E");
      background-size: 170px 170px;
    }

    #lf-menu-grain-footer .lf-shell {
      position: relative;
      z-index: 3;
      display: grid;
      grid-template-columns: 1.02fr 1fr;
      min-height: 610px;
      overflow: hidden;
      background:
        linear-gradient(135deg, rgba(255,255,255,.035), rgba(255,255,255,.012));
      box-shadow:
        inset 0 1px 0 rgba(255, 228, 179, 0.09),
        inset 0 -1px 0 rgba(255, 228, 179, 0.05);
    }

    #lf-menu-grain-footer .lf-shell::before {
      content: "";
      position: absolute;
      inset: 18px;
      z-index: 0;
      pointer-events: none;
      border-radius: 34px;
      background:
        linear-gradient(135deg, rgba(255,255,255,.055), rgba(255,255,255,.012));
      opacity: .45;
      filter: blur(.2px);
    }

    /* LEFT SIDE */
    #lf-menu-grain-footer .lf-brand-side {
      position: relative;
      z-index: 2;
      min-height: 610px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: clamp(28px, 4vw, 54px);
      border-right: 1px solid var(--lf-line);
      overflow: hidden;
      backdrop-filter: blur(10px);
    }

    #lf-menu-grain-footer .lf-brand-side::before {
      content: "";
      position: absolute;
      width: 430px;
      height: 430px;
      border-radius: 999px;
      background:
        radial-gradient(circle, rgba(224, 42, 131, 0.18), transparent 57%),
        radial-gradient(circle, rgba(255, 228, 179, 0.10), transparent 72%);
      filter: blur(16px);
      animation: lfFooterGlowPulse 7s ease-in-out infinite alternate;
    }

    #lf-menu-grain-footer .lf-brand-side::after {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      background:
        linear-gradient(135deg, rgba(255,255,255,.055), transparent 42%),
        linear-gradient(315deg, rgba(255,228,179,.045), transparent 48%);
      opacity: .75;
    }

    @keyframes lfFooterGlowPulse {
      0% { transform: scale(.96) translateY(10px); opacity: .64; }
      100% { transform: scale(1.08) translateY(-10px); opacity: .94; }
    }

    #lf-menu-grain-footer .lf-brand-center {
      position: relative;
      z-index: 2;
      opacity: 0;
      transform: translateY(26px) scale(.92);
      filter: blur(10px);
      transition:
        opacity 900ms var(--lf-ease) 180ms,
        transform 900ms var(--lf-ease) 180ms,
        filter 900ms var(--lf-ease) 180ms;
    }

    #lf-menu-grain-footer.lf-ready .lf-brand-center {
      opacity: 1;
      transform: translateY(0) scale(1);
      filter: blur(0);
    }

    #lf-menu-grain-footer .lf-emblem {
      width: clamp(122px, 17vw, 210px);
      color: rgba(255, 228, 179, 0.76);
      opacity: .9;
      filter: drop-shadow(0 22px 38px rgba(0,0,0,.30));
      animation: lfFooterMenuFloat 5.5s ease-in-out infinite, lfFooterMenuPulse 4s ease-in-out infinite;
      transform-origin: center center;
    }

    @keyframes lfFooterMenuFloat {
      0%, 100% { transform: translateY(7px) rotate(-1deg); }
      50% { transform: translateY(-8px) rotate(1deg); }
    }

    @keyframes lfFooterMenuPulse {
      0%, 100% { opacity: .82; filter: drop-shadow(0 22px 38px rgba(0,0,0,.30)); }
      50% { opacity: 1; filter: drop-shadow(0 24px 48px rgba(255, 228, 179, .16)); }
    }

    #lf-menu-grain-footer .lf-left-bottom {
      position: absolute;
      left: clamp(18px, 3vw, 38px);
      right: clamp(18px, 3vw, 38px);
      bottom: 22px;
      z-index: 3;
      display: grid;
      grid-template-columns: auto 1fr auto;
      align-items: end;
      gap: 18px;
      color: rgba(255, 228, 179, 0.45);
      font-size: 11px;
      font-weight: 900;
      letter-spacing: .08em;
      text-transform: uppercase;
      opacity: 0;
      transform: translateY(18px);
      filter: blur(8px);
      transition:
        opacity 900ms var(--lf-ease) .22s,
        transform 900ms var(--lf-ease) .22s,
        filter 900ms var(--lf-ease) .22s;
    }

    #lf-menu-grain-footer.lf-ready .lf-left-bottom {
      opacity: 1;
      transform: translateY(0);
      filter: blur(0);
    }

    #lf-menu-grain-footer .lf-logo-wrap {
      transition: transform 300ms var(--lf-ease), filter 300ms var(--lf-ease);
    }

    #lf-menu-grain-footer .lf-logo-wrap:hover {
      transform: translateY(-2px) scale(1.02);
      filter: drop-shadow(0 10px 26px rgba(224,42,131,.18));
    }

    #lf-menu-grain-footer .lf-logo-mini {
      width: clamp(136px, 15vw, 215px);
      height: auto;
      filter: drop-shadow(0 14px 24px rgba(0,0,0,.30));
    }

    #lf-menu-grain-footer .lf-credit-desktop {
      justify-self: end;
    }

    #lf-menu-grain-footer .lf-credit-desktop a,
    #lf-menu-grain-footer .lf-mobile-credit a {
      color: rgba(255, 228, 179, 0.78);
      transition: color 180ms var(--lf-ease);
    }

    #lf-menu-grain-footer .lf-credit-desktop a:hover,
    #lf-menu-grain-footer .lf-mobile-credit a:hover {
      color: var(--lf-teal);
    }

    /* RIGHT SIDE */
    #lf-menu-grain-footer .lf-content-side {
      position: relative;
      z-index: 3;
      padding: clamp(34px, 4.7vw, 62px) clamp(26px, 4vw, 58px) 20px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      backdrop-filter: blur(10px);
    }

    #lf-menu-grain-footer .lf-content-side::before {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      background:
        linear-gradient(135deg, rgba(255,255,255,.04), transparent 44%),
        radial-gradient(circle at 74% 28%, rgba(255,228,179,.045), transparent 24%);
      opacity: .9;
    }

    #lf-menu-grain-footer .lf-content-inner {
      position: relative;
      z-index: 2;
      width: 100%;
      max-width: 680px;
      margin-left: auto;
    }

    #lf-menu-grain-footer .lf-section,
    #lf-menu-grain-footer .lf-bottom-row,
    #lf-menu-grain-footer .lf-mobile-credit {
      opacity: 0;
      transform: translateY(26px) scale(.985);
      filter: blur(12px);
      transition:
        opacity 820ms var(--lf-ease),
        transform 820ms var(--lf-ease),
        filter 820ms var(--lf-ease);
    }

    #lf-menu-grain-footer .lf-section {
      position: relative;
      padding: 0 0 33px;
      margin: 0 0 29px;
      border-bottom: 1px solid var(--lf-line);
      overflow: hidden;
    }

    #lf-menu-grain-footer .lf-section::before {
      content: "";
      position: absolute;
      left: 0;
      right: 100%;
      bottom: -1px;
      height: 1px;
      background: rgba(255, 228, 179, 0.42);
      transition: right 900ms var(--lf-ease);
    }

    #lf-menu-grain-footer.lf-ready .lf-section::before {
      right: 0;
    }

    #lf-menu-grain-footer.lf-ready .lf-section,
    #lf-menu-grain-footer.lf-ready .lf-bottom-row,
    #lf-menu-grain-footer.lf-ready .lf-mobile-credit {
      opacity: 1;
      transform: translateY(0) scale(1);
      filter: blur(0);
    }

    #lf-menu-grain-footer.lf-ready .lf-section:nth-child(1) { transition-delay: .12s; }
    #lf-menu-grain-footer.lf-ready .lf-section:nth-child(2) { transition-delay: .24s; }
    #lf-menu-grain-footer.lf-ready .lf-section:nth-child(3) { transition-delay: .36s; }
    #lf-menu-grain-footer.lf-ready .lf-bottom-row { transition-delay: .48s; }
    #lf-menu-grain-footer.lf-ready .lf-mobile-credit { transition-delay: .58s; }

    /* Text micro-animation */
    #lf-menu-grain-footer .lf-label,
    #lf-menu-grain-footer .lf-large-link,
    #lf-menu-grain-footer .lf-note,
    #lf-menu-grain-footer .lf-order-line,
    #lf-menu-grain-footer .lf-nav-list li,
    #lf-menu-grain-footer .lf-small-actions,
    #lf-menu-grain-footer .lf-socials {
      opacity: 0;
      transform: translateY(18px);
      filter: blur(8px);
      clip-path: inset(0 0 100% 0);
      transition:
        opacity 760ms var(--lf-ease),
        transform 760ms var(--lf-ease),
        filter 760ms var(--lf-ease),
        clip-path 760ms var(--lf-ease);
    }

    #lf-menu-grain-footer.lf-ready .lf-label,
    #lf-menu-grain-footer.lf-ready .lf-large-link,
    #lf-menu-grain-footer.lf-ready .lf-note,
    #lf-menu-grain-footer.lf-ready .lf-order-line,
    #lf-menu-grain-footer.lf-ready .lf-nav-list li,
    #lf-menu-grain-footer.lf-ready .lf-small-actions,
    #lf-menu-grain-footer.lf-ready .lf-socials {
      opacity: 1;
      transform: translateY(0);
      filter: blur(0);
      clip-path: inset(0 0 0 0);
    }

    #lf-menu-grain-footer.lf-ready .lf-section:nth-child(1) .lf-label { transition-delay: .18s; }
    #lf-menu-grain-footer.lf-ready .lf-section:nth-child(1) .lf-large-link { transition-delay: .25s; }
    #lf-menu-grain-footer.lf-ready .lf-section:nth-child(1) .lf-note { transition-delay: .32s; }

    #lf-menu-grain-footer.lf-ready .lf-section:nth-child(2) .lf-label { transition-delay: .32s; }
    #lf-menu-grain-footer.lf-ready .lf-section:nth-child(2) .lf-large-link { transition-delay: .39s; }
    #lf-menu-grain-footer.lf-ready .lf-section:nth-child(2) .lf-order-line { transition-delay: .47s; }

    #lf-menu-grain-footer.lf-ready .lf-nav-list li:nth-child(1) { transition-delay: .46s; }
    #lf-menu-grain-footer.lf-ready .lf-nav-list li:nth-child(2) { transition-delay: .50s; }
    #lf-menu-grain-footer.lf-ready .lf-nav-list li:nth-child(3) { transition-delay: .54s; }
    #lf-menu-grain-footer.lf-ready .lf-nav-list li:nth-child(4) { transition-delay: .58s; }
    #lf-menu-grain-footer.lf-ready .lf-nav-list li:nth-child(5) { transition-delay: .62s; }

    #lf-menu-grain-footer.lf-ready .lf-small-actions { transition-delay: .64s; }
    #lf-menu-grain-footer.lf-ready .lf-socials { transition-delay: .70s; }

    #lf-menu-grain-footer .lf-label {
      margin: 0 0 13px;
      color: var(--lf-menu-magenta);
      font-size: clamp(20px, 2.1vw, 31px);
      line-height: .9;
      font-weight: 950;
      letter-spacing: .025em;
      text-transform: uppercase;
      text-shadow:
        0 0 22px rgba(224, 42, 131, 0.20),
        0 2px 0 rgba(0,0,0,0.22);
      font-family: "Impact", "Anton", "Oswald", "Arial Black", sans-serif;
    }

    #lf-menu-grain-footer .lf-large-link {
      position: relative;
      display: block;
      width: fit-content;
      max-width: 100%;
      color: var(--lf-menu-cream);
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(30px, 3.2vw, 44px);
      line-height: 1.08;
      letter-spacing: -.055em;
      transition:
        color 220ms var(--lf-ease),
        transform 220ms var(--lf-ease),
        text-shadow 220ms var(--lf-ease),
        opacity 760ms var(--lf-ease),
        filter 760ms var(--lf-ease),
        clip-path 760ms var(--lf-ease);
    }

    #lf-menu-grain-footer .lf-large-link:hover {
      color: var(--lf-menu-white);
      transform: translateX(4px);
      text-shadow: 0 0 24px rgba(224,42,131,.22);
    }

    #lf-menu-grain-footer .lf-note {
      margin: 14px 0 0;
      color: var(--lf-menu-muted);
      font-size: 13px;
      line-height: 1.7;
      font-weight: 700;
      letter-spacing: .02em;
    }

    #lf-menu-grain-footer .lf-order-line {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
      margin-top: 18px;
    }

    #lf-menu-grain-footer .lf-doordash-link {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      min-height: 44px;
      padding: 11px 15px;
      border-radius: 999px;
      background: var(--lf-menu-white);
      color: #111;
      font-size: 11px;
      font-weight: 950;
      letter-spacing: .12em;
      text-transform: uppercase;
      transition:
        transform 220ms var(--lf-ease),
        box-shadow 220ms var(--lf-ease),
        background 220ms var(--lf-ease);
    }

    #lf-menu-grain-footer .lf-doordash-link:hover {
      transform: translateY(-2px);
      box-shadow: 0 16px 34px rgba(0,0,0,.30);
      background: #fff;
    }

    #lf-menu-grain-footer .lf-doordash-link img {
      height: 16px;
      width: auto;
      max-width: 108px;
    }

    #lf-menu-grain-footer .lf-mini-cta {
      display: inline-flex;
      align-items: center;
      min-height: 44px;
      padding: 11px 15px;
      border-radius: 999px;
      color: var(--lf-menu-cream);
      background: rgba(255,255,255,.065);
      box-shadow: inset 0 0 0 1px rgba(255,228,179,.10);
      font-size: 11px;
      font-weight: 950;
      letter-spacing: .12em;
      text-transform: uppercase;
      transition:
        background 220ms var(--lf-ease),
        color 220ms var(--lf-ease),
        transform 220ms var(--lf-ease),
        box-shadow 220ms var(--lf-ease);
    }

    #lf-menu-grain-footer .lf-mini-cta:hover {
      background: var(--lf-menu-magenta);
      color: var(--lf-menu-white);
      transform: translateY(-2px);
      box-shadow: 0 10px 26px rgba(224,42,131,.20);
    }

    #lf-menu-grain-footer .lf-nav-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 34px;
    }

    #lf-menu-grain-footer .lf-nav-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      gap: 15px;
    }

    #lf-menu-grain-footer .lf-nav-list a {
      display: inline-flex;
      width: fit-content;
      color: var(--lf-menu-cream);
      font-size: 15px;
      line-height: 1.2;
      font-weight: 950;
      letter-spacing: .045em;
      transition:
        color 180ms var(--lf-ease),
        transform 180ms var(--lf-ease),
        opacity 180ms var(--lf-ease);
      font-family: Georgia, "Times New Roman", serif;
    }

    #lf-menu-grain-footer .lf-nav-list a:hover {
      color: var(--lf-menu-magenta);
      transform: translateX(5px);
    }

    #lf-menu-grain-footer .lf-bottom-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      flex-wrap: wrap;
    }

    #lf-menu-grain-footer .lf-socials {
      display: flex;
      align-items: center;
      border: 1px solid rgba(255,228,179,.26);
      overflow: hidden;
      background: rgba(255,255,255,.025);
      backdrop-filter: blur(8px);
      position: relative;
    }

    #lf-menu-grain-footer .lf-socials::before {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      background: linear-gradient(120deg, rgba(255,255,255,.08), transparent 44%);
      opacity: .7;
    }

    #lf-menu-grain-footer .lf-social {
      position: relative;
      z-index: 2;
      width: 53px;
      height: 50px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: rgba(255,228,179,.74);
      border-right: 1px solid rgba(255,228,179,.26);
      transition:
        background 180ms var(--lf-ease),
        color 180ms var(--lf-ease),
        transform 180ms var(--lf-ease);
    }

    #lf-menu-grain-footer .lf-social:last-child {
      border-right: 0;
    }

    #lf-menu-grain-footer .lf-social:hover {
      background: var(--lf-menu-magenta);
      color: var(--lf-menu-white);
      transform: translateY(-1px);
    }

    #lf-menu-grain-footer .lf-social svg {
      width: 17px;
      height: 17px;
      fill: currentColor;
    }

    #lf-menu-grain-footer .lf-small-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      color: var(--lf-menu-muted);
      font-size: 11px;
      font-weight: 950;
      letter-spacing: .12em;
      text-transform: uppercase;
    }

    #lf-menu-grain-footer .lf-small-actions a {
      transition: color 180ms var(--lf-ease), transform 180ms var(--lf-ease);
    }

    #lf-menu-grain-footer .lf-small-actions a:hover {
      color: var(--lf-menu-cream);
      transform: translateY(-1px);
    }

    #lf-menu-grain-footer .lf-mobile-credit {
      display: none;
      margin-top: 18px;
      text-align: center;
      color: rgba(255, 228, 179, 0.60);
      font-size: 11px;
      font-weight: 900;
      letter-spacing: .08em;
      text-transform: uppercase;
      line-height: 1.7;
    }

    @media (max-width: 980px) {
      #lf-menu-grain-footer .lf-shell {
        grid-template-columns: 1fr;
      }

      #lf-menu-grain-footer .lf-brand-side {
        min-height: 360px;
        border-right: 0;
        border-bottom: 1px solid var(--lf-line);
      }

      #lf-menu-grain-footer .lf-content-inner {
        max-width: none;
        margin-left: 0;
      }
    }

    @media (max-width: 640px) {
      #lf-menu-grain-footer .lf-brand-side {
        min-height: 330px;
        padding: 28px 18px;
      }

      #lf-menu-grain-footer .lf-content-side {
        padding: 34px 18px 20px;
      }

      #lf-menu-grain-footer .lf-section {
        padding-bottom: 26px;
        margin-bottom: 24px;
      }

      #lf-menu-grain-footer .lf-nav-grid {
        grid-template-columns: 1fr;
        gap: 22px;
      }

      #lf-menu-grain-footer .lf-left-bottom {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
        left: 18px;
        right: 18px;
        bottom: 18px;
      }

      #lf-menu-grain-footer .lf-year-desktop,
      #lf-menu-grain-footer .lf-credit-desktop {
        display: none;
      }

      #lf-menu-grain-footer .lf-logo-wrap {
        display: inline-flex;
        justify-content: center;
      }

      #lf-menu-grain-footer .lf-logo-mini {
        width: 158px;
        max-width: 70vw;
      }

      #lf-menu-grain-footer .lf-bottom-row {
        justify-content: center;
      }

      #lf-menu-grain-footer .lf-small-actions {
        justify-content: center;
        text-align: center;
      }

      #lf-menu-grain-footer .lf-social {
        width: 48px;
      }

      #lf-menu-grain-footer .lf-mobile-credit {
        display: block;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      #lf-menu-grain-footer,
      #lf-menu-grain-footer *,
      #lf-menu-grain-footer *::before,
      #lf-menu-grain-footer *::after {
        animation: none !important;
        transition: none !important;
      }

      #lf-menu-grain-footer,
      #lf-menu-grain-footer .lf-brand-center,
      #lf-menu-grain-footer .lf-left-bottom,
      #lf-menu-grain-footer .lf-section,
      #lf-menu-grain-footer .lf-bottom-row,
      #lf-menu-grain-footer .lf-mobile-credit,
      #lf-menu-grain-footer .lf-label,
      #lf-menu-grain-footer .lf-large-link,
      #lf-menu-grain-footer .lf-note,
      #lf-menu-grain-footer .lf-order-line,
      #lf-menu-grain-footer .lf-nav-list li,
      #lf-menu-grain-footer .lf-small-actions,
      #lf-menu-grain-footer .lf-socials {
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
        clip-path: none !important;
      }
    }
