﻿@charset "UTF-8";
:root {
  --charcoal:#111;
  --charcoal-light:#222;
  --gold:46.1 90.2% 53.9%;
  --goldDark:#b78e0a;
  --rasta-red:#5f4100;
  --cream:hsl(45 30% 96%);
  --muted-fg:#555;
  --border:hsl(45,15%,85%);
  --primary:#f4c71f;
  --headerHeight:132px;
  --maxCenterWidth:1280px;
  --goldBorderWidth:4px;
  --s1:4px;
  --s2:8px;
  --s3:12px;
  --s4:16px;
  --s5:20px;
  --s6:24px;
  --s7:32px;
  --s8:64px;
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.block {
  display: block;
}

.overflow-hidden {
  overflow: hidden;
}

.pointer {
  cursor: pointer;
}

.object-cover {
  object-fit: cover;
}

.aspect-square {
  aspect-ratio: 1/1;
}

.aspect-auto {
  aspect-ratio: auto;
}

.aspect-16-9 {
  aspect-ratio: 16/9;
}

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.min-h-screen {
  min-height: 100vh;
}

.pt-24 {
  padding-top: 6rem;
}

.overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10;
}
.overlay.light {
  background: rgba(0, 0, 0, 0.1);
}
.overlay.gradient-from-top {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 1%, rgba(0, 0, 0, 0.61) 50%, #000 100%);
}
.overlay.gradient-2 {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 1%, rgba(0, 0, 0, 0.7) 75%, rgba(0, 0, 0, 0.8) 100%);
}
.overlay.gradient-3 {
  background: linear-gradient(to left, rgba(17, 17, 17, 0.8) 0%, rgba(150, 150, 150, 0.3) 7%, rgba(17, 17, 17, 0.7) 75%, rgba(0, 0, 0, 0.8) 100%);
}
.overlay.char-gradient {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 1%, rgba(0, 0, 0, 0.06) 50%, #000 100%);
}

.flex-end {
  justify-content: flex-end;
}

/* grid stuff */
.grid {
  display: grid;
}

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

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

.col-span-1 {
  grid-column: span 1/span 1;
}

.row-span-2 {
  grid-row: span 2/span 2;
}

/* colour presets */
.bg-white {
  background-color: #fff;
}

.font-heading {
  font-family: Cinzel, serif;
}

.font-body {
  font-family: Outfit, sans-serif;
}

.font-bold {
  font-weight: 700;
}

.font-semibold {
  font-weight: 600;
}

.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}

.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}

.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}

.text-6xl {
  font-size: 4.25rem;
  line-height: 1;
}

.text-7xl {
  font-size: 4.75rem;
  line-height: 1;
}

.text-cream {
  color: var(--cream);
}

.text-gold {
  color: #f4c71f;
}

.uppercase {
  text-transform: uppercase;
}

.w-\[120\%\] {
  width: 120%;
}

.h-\[120\%\] {
  height: 120%;
}

.-top-\[10\%\] {
  top: -10%;
}

.-left-\[10\%\] {
  left: -10%;
}

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

  .grid-cols-2,
.grid-cols-3,
.grid-cols-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 768px) {
  .grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

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

  .col-span-2 {
    grid-column: span 2/span 2;
  }

  .row-span-2 {
    grid-row: span 2/span 2;
  }

  .aspect-auto {
    aspect-ratio: auto;
  }

  .h-full {
    height: 100%;
  }

  .columns-3 {
    -moz-columns: 3;
    columns: 3;
  }

  .grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
:root {
  --bg-card: #0a0a0a;
  --fg: #f2eee6;
  --fg-faint: rgba(242, 238, 230, 0.35);
  --border: rgba(244, 199, 31, 0.22);
}

body {
  background: #111;
}

.container {
  padding: 0 16px;
}

.breadcrumb {
  padding-top: 6.5rem;
  padding-bottom: 0;
}
.breadcrumb__inner {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--fg-faint);
}
.breadcrumb__inner a:hover {
  color: #f4c71f;
  transition: color 0.25s;
  cursor: pointer;
}
.breadcrumb__inner span {
  cursor: default;
}
.breadcrumb__inner__sep {
  opacity: 0.4;
}
.breadcrumb__inner__current {
  color: rgba(242, 238, 230, 0.7);
}

.character {
  padding-top: 3rem;
  padding-bottom: 6rem;
}

.character__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

/* Portrait column */
.character__portrait-wrap {
  position: relative;
}

.character__portrait-glow {
  position: absolute;
  inset: -0.75rem;
  background: var(--gold-glow);
  filter: blur(2rem);
  border-radius: 2px;
}

.character__portrait-frame {
  position: relative;
  border: 1px solid var(--border);
  overflow: hidden;
}

.character__portrait {
  width: 100%;
  aspect-ratio: 9/16;
  object-fit: cover;
  object-position: top;
  max-height: 70vh;
}

.character__portrait-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9, 8, 7, 0.6) 0%, transparent 50%);
}

/* Corner accents */
.corner {
  position: absolute;
  width: 2rem;
  height: 2rem;
}

.corner--tl {
  top: -0.75rem;
  left: -0.75rem;
  border-top: 2px solid rgba(244, 199, 31, 0.6);
  border-left: 2px solid rgba(244, 199, 31, 0.6);
}

.corner--br {
  bottom: -0.75rem;
  right: -0.75rem;
  border-bottom: 2px solid rgba(244, 199, 31, 0.6);
  border-right: 2px solid rgba(244, 199, 31, 0.6);
}

/* Content column */
.character__name {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1;
  color: #f4c71f;
  margin-bottom: 1.5rem;
}

.character__rule {
  width: 5rem;
  height: 1px;
  background: linear-gradient(to right, #f4c71f, transparent);
  margin-bottom: 2rem;
}

.character__tagline {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(244, 199, 31, 0.8);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 3rem;
}

.character__bio {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.character__bio p {
  font-family: "Outfit", sans-serif;
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  line-height: 1.9;
  color: #cecece;
}

/* Traits grid */
.character__strains .strain {
  font-family: "Outfit", sans-serif;
  padding: 1rem 0rem;
}
.character__strains .strain__label {
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #c0c0c0;
  margin-bottom: 0.6rem;
}
.character__strains .strain__value {
  font-size: 0.875rem;
  color: #f4c71f;
}

/* ─── Related characters ──────────────────────── */
.related {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-block: 2rem;
}

.related__eyebrow {
  font-size: 1rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: #f4c71f;
  margin-bottom: 2.5rem;
}

.related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.related-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  overflow: hidden;
  cursor: pointer;
  display: block;
  transition: transform 0.3s ease;
}

.related-card:hover {
  transform: translateY(-8px);
}

.related-card__img-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.related-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.6s ease;
}

.related-card:hover .related-card__img {
  transform: scale(1.05);
}

.related-card__fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bg-card) 0%, rgba(17, 16, 14, 0.3) 50%, transparent 100%);
}

.related-card__info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem;
}

.related-card__title {
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #f4c71f;
  margin-bottom: 0.3rem;
}

.related-card__name {
  font-family: "Outfit", sans-serif;
  font-size: 1.3rem;
  color: var(--fg);
  transition: color 0.25s;
}

.related-card:hover .related-card__name {
  color: var(--gold);
}

.related-card__corner {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 1.5rem;
  height: 1.5rem;
  border-top: 1px solid rgba(244, 199, 31, 0.4);
  border-right: 1px solid rgba(244, 199, 31, 0.4);
  opacity: 0;
  transition: opacity 0.3s;
}

.related-card:hover .related-card__corner {
  opacity: 1;
}

/* ─── Responsive ──────────────────────────────── */
/* Tablet and up — two-column split */
@media (min-width: 768px) {
  .character__grid {
    grid-template-columns: 2fr 3fr;
    align-items: start;
    gap: 4rem;
  }

  .character__portrait-wrap {
    position: sticky;
    top: 6rem;
  }

  .character__portrait {
    max-height: 75vh;
  }

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

  .footer__inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    flex-wrap: wrap;
  }

  .footer__copy {
    border-top: none;
    margin-top: 0;
    padding-top: 0;
    text-align: right;
    flex: 1 0 100%;
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
    margin-top: 1rem;
  }
}
/* Desktop — wider layout */
@media (min-width: 1024px) {
  .character__grid {
    gap: 5rem;
  }

  .nav__links {
    display: flex;
  }
}
/* Mobile — stack nav, hide link list */
@media (max-width: 767px) {
  .nav__links {
    display: none;
  }

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

  .trait {
    border-right: none;
  }

  .trait:last-child {
    border-bottom: none;
  }

  .trait:nth-last-child(-n+2) {
    border-bottom: 1px solid var(--border);
  }

  .trait:last-child {
    border-bottom: none;
  }

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

/* Lion Order final character template */
@font-face {
  font-family: "Salter Roman";
  src: url("/fonts/Salter-Roman.otf") format("opentype"), url("/fonts/Salter-Roman.ttf") format("truetype");
  font-display: swap;
}

:root {
  --lo-yellow: #f4c71f;
  --lo-ink: #0b0a08;
  --lo-cream: #f7f1e3;
  --lo-black-pattern: url("/images/BlackPattern LO.png");
  --font-display: "Salter Roman", Georgia, serif;
  --font-body: "Minion Variable Concept", "Minion Pro", Georgia, serif;
}

body,
.site-content {
  background:
    radial-gradient(circle at 20% 8%, rgba(244,199,31,.14), transparent 34rem),
    linear-gradient(180deg, rgba(8,7,5,.72), rgba(8,7,5,.94)),
    var(--lo-black-pattern) center / 360px auto repeat,
    var(--lo-ink) !important;
  color: var(--lo-cream) !important;
  font-family: var(--font-body) !important;
}

.site-content > .container {
  width: min(calc(100% - 40px), 1240px) !important;
  margin-inline: auto !important;
  padding: clamp(24px, 4vw, 58px) 0 clamp(48px, 6vw, 90px) !important;
}

.breadcrumb {
  padding-top: clamp(24px, 4vw, 52px) !important;
}

.breadcrumb__inner,
.breadcrumb__inner a,
.breadcrumb__current {
  color: rgba(247,241,227,.74) !important;
  font-family: var(--font-body) !important;
}

.character {
  width: 100% !important;
  margin: 0 auto !important;
  padding: clamp(22px, 4vw, 42px) !important;
  border: 1px solid rgba(244,199,31,.22) !important;
  border-radius: 26px !important;
  background: linear-gradient(135deg, rgba(16,14,10,.78), rgba(7,7,5,.92)) !important;
  box-shadow: 0 32px 88px rgba(0,0,0,.38) !important;
}

.character__grid {
  align-items: center !important;
  gap: clamp(28px, 5vw, 72px) !important;
}

.character__portrait-wrap {
  max-width: 480px !important;
  width: 100% !important;
}

.character__portrait-frame {
  border-radius: 18px !important;
  border: 1px solid rgba(244,199,31,.32) !important;
  background: #080705 !important;
  box-shadow: 0 28px 70px rgba(0,0,0,.44) !important;
}

.character__portrait {
  width: 100% !important;
  aspect-ratio: 4 / 5 !important;
  max-height: min(72svh, 720px) !important;
  object-fit: cover !important;
  object-position: center top !important;
}

.character__portrait-glow {
  background: rgba(244,199,31,.18) !important;
}

.character__name {
  color: var(--lo-cream) !important;
  font-family: var(--font-display) !important;
  font-size: clamp(3.6rem, 7vw, 7rem) !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  line-height: .86 !important;
  text-transform: none !important;
}

.character__rule {
  background: linear-gradient(to right, var(--lo-yellow), transparent) !important;
}

.character__tagline,
.strain__value,
.related__eyebrow,
.related-card__title {
  color: var(--lo-yellow) !important;
}

.character__tagline,
.character__bio p,
.strain__label,
.strain__value {
  font-family: var(--font-body) !important;
}

.character__bio p {
  color: rgba(247,241,227,.84) !important;
  font-size: clamp(1.05rem, 1.35vw, 1.2rem) !important;
  line-height: 1.72 !important;
}

.related {
  margin-top: clamp(28px, 4vw, 52px) !important;
  padding: clamp(24px, 4vw, 48px) !important;
  border: 1px solid rgba(244,199,31,.18) !important;
  border-radius: 24px !important;
  background: linear-gradient(180deg, rgba(13,11,8,.78), rgba(7,7,5,.9)) !important;
}

.related__eyebrow {
  font-family: var(--font-body) !important;
}

.related-card {
  border-radius: 16px !important;
  border-color: rgba(244,199,31,.25) !important;
  background: #080705 !important;
}

.related-card__name {
  color: var(--lo-cream) !important;
  font-family: var(--font-display) !important;
  font-weight: 400 !important;
}

footer .footer-logo,
footer .footer-title {
  display: none !important;
}

@media (max-width: 767px) {
  .site-content > .container {
    width: min(calc(100% - 28px), 560px) !important;
  }

  .character {
    padding: 16px !important;
  }

  .character__grid {
    gap: 24px !important;
  }

  .character__name {
    font-size: clamp(3rem, 16vw, 5rem) !important;
  }

  .related {
    padding: 16px !important;
  }
}

/* Client-facing character surface: premium, but not black */
body,
.site-content {
  background:
    radial-gradient(circle at 16% 10%, rgba(255, 218, 43, .18), transparent 34rem),
    linear-gradient(90deg, rgba(132, 106, 33, .86), rgba(92, 74, 24, .86)),
    var(--lo-black-pattern) center / 560px auto repeat,
    #876b22 !important;
}

.character,
.related {
  background:
    linear-gradient(135deg, rgba(44, 35, 16, .9), rgba(24, 19, 10, .92)) !important;
}

.character__portrait-frame,
.related-card {
  background: #241c0f !important;
}

.site-content > .container {
  padding-top: clamp(24px, 4vw, 58px) !important;
  padding-bottom: clamp(34px, 5vw, 70px) !important;
}

/* Client request 2026-06-30: footer texture begins at the ribbon edge. */
body footer {
  --lo-footer-ribbon-top: clamp(14px, 1.8vw, 24px);
  --lo-footer-ribbon-height: clamp(30px, 3.4vw, 52px);
  --lo-footer-ribbon-center: clamp(29px, 3.5vw, 50px);
  --lo-footer-pad-top: clamp(116px, 10vw, 164px);
  isolation: isolate !important;
  overflow: visible !important;
  padding-top: var(--lo-footer-pad-top) !important;
  background: transparent !important;
}

body footer::before {
  content: "" !important;
  position: absolute !important;
  inset: var(--lo-footer-ribbon-center) 0 0 0 !important;
  z-index: -1 !important;
  width: auto !important;
  height: auto !important;
  transform: none !important;
  background: url("/images/pattern.png") center top / 260px auto repeat, #f4c71f !important;
  box-shadow: inset 0 1px 0 rgba(255, 235, 96, .7), 0 -14px 24px rgba(0, 0, 0, .18) !important;
  pointer-events: none !important;
}

body footer .lo-footer-brand {
  margin-top: calc(-1 * var(--lo-footer-pad-top)) !important;
  padding-top: clamp(86px, 8.2vw, 126px) !important;
}

body footer .lo-footer-brand__crestline {
  top: 0 !important;
  height: clamp(92px, 9vw, 142px) !important;
}

body footer .lo-footer-brand__ribbon {
  top: var(--lo-footer-ribbon-top) !important;
  height: var(--lo-footer-ribbon-height) !important;
}

body footer .lo-footer-brand__medallion {
  top: var(--lo-footer-ribbon-center) !important;
  width: clamp(92px, 8.6vw, 134px) !important;
  height: clamp(92px, 8.6vw, 134px) !important;
  transform: translate(-50%, -50%) !important;
}

/* Final footer lock: dark texture above the ribbon, yellow texture below it. */
body footer {
  background:
    linear-gradient(90deg, rgba(132, 106, 33, .92), rgba(92, 74, 24, .92)),
    url("/images/BlackPattern LO.png") center top / 560px auto repeat,
    #876b22 !important;
}

body footer::before {
  inset: var(--lo-footer-ribbon-center) 0 0 0 !important;
  background: url("/images/pattern.png") center top / 260px auto repeat, #f4c71f !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 235, 96, .72),
    0 -22px 36px rgba(0, 0, 0, .34),
    0 -5px 12px rgba(0, 0, 0, .28) !important;
}

body footer .lo-footer-brand__ribbon {
  filter:
    drop-shadow(0 18px 22px rgba(0, 0, 0, .52))
    drop-shadow(0 4px 5px rgba(0, 0, 0, .5)) !important;
}

body footer .lo-footer-brand__medallion {
  filter:
    drop-shadow(0 22px 28px rgba(0, 0, 0, .55))
    drop-shadow(0 5px 6px rgba(0, 0, 0, .48)) !important;
}

body footer .footer-column {
  width: min(100%, calc(100vw - 28px)) !important;
  max-width: 980px !important;
  margin-inline: auto !important;
}

body footer .footer-column > p,
body footer .footer-mailing-address,
body footer .regular-footer {
  max-width: min(100%, calc(100vw - 32px)) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 10px !important;
  padding-right: 10px !important;
  box-sizing: border-box !important;
  overflow-wrap: anywhere !important;
  text-align: center !important;
}

@media (max-width: 560px) {
  body footer .footer-column > p,
  body footer .footer-mailing-address {
    font-size: .95rem !important;
    line-height: 1.22 !important;
  }
}

/* Footer final: yellow footer only, no dark texture band. */
html,
body {
  overflow-x: hidden !important;
}

body footer {
  --lo-footer-ribbon-top: clamp(18px, 2vw, 30px) !important;
  --lo-footer-ribbon-height: clamp(34px, 3.4vw, 52px) !important;
  --lo-footer-ribbon-center: calc(var(--lo-footer-ribbon-top) + (var(--lo-footer-ribbon-height) / 2)) !important;
  --lo-footer-pad-top: calc(var(--lo-footer-ribbon-center) + clamp(92px, 8vw, 126px)) !important;
  margin-top: 0 !important;
  padding-top: var(--lo-footer-pad-top) !important;
  border: 0 !important;
  box-shadow: none !important;
  background-color: #f4c71f !important;
  background-image: url("/images/pattern.png") !important;
  background-repeat: repeat !important;
  background-position: center top !important;
  background-size: 260px auto !important;
}

body footer::before,
body footer::after {
  display: none !important;
  content: none !important;
  background: none !important;
  box-shadow: none !important;
}

body footer .lo-footer-brand {
  margin-top: calc(-1 * var(--lo-footer-pad-top)) !important;
  padding-top: calc(var(--lo-footer-ribbon-center) + clamp(64px, 5.6vw, 90px)) !important;
}

body footer .lo-footer-brand__crestline {
  top: 0 !important;
  left: 50% !important;
  width: 100vw !important;
  max-width: none !important;
  height: calc(var(--lo-footer-ribbon-center) + clamp(58px, 5.2vw, 84px)) !important;
  margin: 0 !important;
  padding: 0 !important;
  transform: translateX(-50%) !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  overflow: visible !important;
}

body footer .lo-footer-brand__ribbon {
  top: var(--lo-footer-ribbon-top) !important;
  left: 50% !important;
  width: 180vw !important;
  min-width: 180vw !important;
  max-width: none !important;
  height: var(--lo-footer-ribbon-height) !important;
  transform: translateX(-50%) !important;
  object-fit: fill !important;
  object-position: center center !important;
  filter:
    drop-shadow(0 16px 18px rgba(0, 0, 0, .34))
    drop-shadow(0 3px 4px rgba(0, 0, 0, .32)) !important;
}

body footer .lo-footer-brand__medallion {
  top: var(--lo-footer-ribbon-center) !important;
  filter:
    drop-shadow(0 18px 24px rgba(0, 0, 0, .42))
    drop-shadow(0 4px 5px rgba(0, 0, 0, .36)) !important;
}

@media (max-width: 640px) {
  body footer {
    --lo-footer-ribbon-top: 18px !important;
    --lo-footer-ribbon-height: 38px !important;
    --lo-footer-ribbon-center: calc(var(--lo-footer-ribbon-top) + (var(--lo-footer-ribbon-height) / 2)) !important;
    --lo-footer-pad-top: calc(var(--lo-footer-ribbon-center) + 112px) !important;
  }
}

/* Footer boundary: cover the previous dark section with the footer texture. */
body footer {
  --lo-footer-bleed: clamp(78px, 6vw, 118px) !important;
  position: relative !important;
  z-index: 20 !important;
  overflow: visible !important;
  isolation: isolate !important;
}

body footer::before {
  display: block !important;
  content: "" !important;
  position: absolute !important;
  top: calc(-1 * var(--lo-footer-bleed)) !important;
  left: 50% !important;
  right: auto !important;
  width: 100vw !important;
  height: var(--lo-footer-bleed) !important;
  transform: translateX(-50%) !important;
  z-index: 0 !important;
  background-color: #f4c71f !important;
  background-image: url("/images/pattern.png") !important;
  background-repeat: repeat !important;
  background-position: center bottom !important;
  background-size: 260px auto !important;
  box-shadow: none !important;
  pointer-events: none !important;
}

body footer::after {
  display: none !important;
  content: none !important;
}

body footer > .container,
body footer .footer-column,
body footer .lo-footer-brand,
body footer .regular-footer {
  position: relative !important;
  z-index: 2 !important;
}

body footer .lo-footer-brand__crestline {
  z-index: 3 !important;
}

body footer .lo-footer-brand__ribbon {
  width: 220vw !important;
  min-width: 220vw !important;
}

/* Footer clean final: flat yellow field and true full-bleed ribbon layer. */
body footer {
  --lo-footer-ribbon-top: clamp(22px, 2.5vw, 34px) !important;
  --lo-footer-ribbon-height: clamp(36px, 3.4vw, 52px) !important;
  --lo-footer-ribbon-center: calc(var(--lo-footer-ribbon-top) + (var(--lo-footer-ribbon-height) / 2)) !important;
  --lo-footer-bleed: clamp(86px, 6vw, 118px) !important;
  background-color: #f4c71f !important;
  background-image:
    linear-gradient(rgba(244, 199, 31, .88), rgba(244, 199, 31, .88)),
    url("/images/pattern.png") !important;
  background-repeat: repeat, repeat !important;
  background-position: center top, center top !important;
  background-size: auto, 420px auto !important;
}

body footer::before {
  display: block !important;
  content: "" !important;
  position: absolute !important;
  top: calc(-1 * var(--lo-footer-bleed)) !important;
  left: 50% !important;
  width: 100vw !important;
  height: var(--lo-footer-bleed) !important;
  transform: translateX(-50%) !important;
  z-index: 0 !important;
  background-color: #f4c71f !important;
  background-image:
    linear-gradient(rgba(244, 199, 31, .88), rgba(244, 199, 31, .88)),
    url("/images/pattern.png") !important;
  background-repeat: repeat, repeat !important;
  background-position: center bottom, center bottom !important;
  background-size: auto, 420px auto !important;
  box-shadow: none !important;
  pointer-events: none !important;
}

body footer::after {
  display: block !important;
  content: "" !important;
  position: absolute !important;
  top: var(--lo-footer-ribbon-top) !important;
  left: 50% !important;
  width: 100vw !important;
  height: var(--lo-footer-ribbon-height) !important;
  transform: translateX(-50%) !important;
  z-index: 4 !important;
  background-image:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .16) 0 1px, rgba(0, 0, 0, .14) 1px 2px, transparent 2px 4px),
    linear-gradient(to bottom, #006b45 0 33.333%, #f4c71f 33.333% 66.666%, #cf2027 66.666% 100%) !important;
  background-repeat: repeat, no-repeat !important;
  background-position: left center, center center !important;
  background-size: 4px 100%, 100% 100% !important;
  box-shadow: 0 16px 18px rgba(0, 0, 0, .26) !important;
  pointer-events: none !important;
}

body footer .lo-footer-brand__ribbon {
  display: none !important;
}

body footer .lo-footer-brand__medallion {
  z-index: 6 !important;
}

body footer .lo-footer-brand__crestline {
  z-index: 6 !important;
}

body footer .lo-footer-brand__medallion {
  z-index: 7 !important;
}

body footer .lo-footer-brand {
  z-index: 6 !important;
}

body footer .lo-footer-brand__crestline {
  z-index: 7 !important;
}

body footer .lo-footer-brand__medallion {
  z-index: 8 !important;
}

body footer::after {
  display: none !important;
  content: none !important;
}

body footer .lo-footer-brand__crestline::before {
  display: block !important;
  content: "" !important;
  position: absolute !important;
  top: var(--lo-footer-ribbon-top) !important;
  left: 50% !important;
  width: 100vw !important;
  height: var(--lo-footer-ribbon-height) !important;
  transform: translateX(-50%) !important;
  z-index: 1 !important;
  background-image: url("/images/footer/Rebbon web footer.png") !important;
  background-repeat: repeat-x !important;
  background-position: left center !important;
  background-size: auto 100% !important;
  box-shadow: 0 16px 18px rgba(0, 0, 0, .26) !important;
  pointer-events: none !important;
}

body footer::after {
  display: block !important;
  content: "" !important;
  position: absolute !important;
  top: var(--lo-footer-ribbon-top) !important;
  left: 50% !important;
  width: 100vw !important;
  height: var(--lo-footer-ribbon-height) !important;
  transform: translateX(-50%) !important;
  z-index: 1 !important;
  background-image: url("/images/footer/Rebbon web footer.png") !important;
  background-repeat: repeat-x !important;
  background-position: left center !important;
  background-size: auto 100% !important;
  box-shadow: 0 16px 18px rgba(0, 0, 0, .26) !important;
  pointer-events: none !important;
}

body footer .lo-footer-brand__crestline::before {
  display: none !important;
  content: none !important;
}

/* Footer ribbon absolute final: CSS-rendered, edge-to-edge, no PNG edge gaps. */
body footer::after {
  background-image:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .16) 0 1px, rgba(0, 0, 0, .14) 1px 2px, transparent 2px 4px),
    linear-gradient(to bottom, #006b45 0 33.333%, #f4c71f 33.333% 66.666%, #cf2027 66.666% 100%) !important;
  background-repeat: repeat, no-repeat !important;
  background-position: left center, center center !important;
  background-size: 4px 100%, 100% 100% !important;
}

/* Footer final clean rebuild: real assets, no washed overlay, no clipped ribbon. */
html,
body {
  overflow-x: hidden !important;
}

body footer {
  --lo-footer-ribbon-top: clamp(24px, 2.7vw, 38px) !important;
  --lo-footer-ribbon-height: clamp(38px, 3.6vw, 56px) !important;
  --lo-footer-ribbon-center: calc(var(--lo-footer-ribbon-top) + (var(--lo-footer-ribbon-height) / 2)) !important;
  --lo-footer-bleed: clamp(96px, 7vw, 132px) !important;
  position: relative !important;
  z-index: 20 !important;
  isolation: isolate !important;
  overflow: visible !important;
  background-color: #f4c71f !important;
  background-image: url("/images/pattern.png") !important;
  background-repeat: repeat !important;
  background-position: center top !important;
  background-size: 260px auto !important;
}

body footer::before {
  display: block !important;
  content: "" !important;
  position: absolute !important;
  top: calc(-1 * var(--lo-footer-bleed)) !important;
  left: 50% !important;
  width: 100vw !important;
  height: var(--lo-footer-bleed) !important;
  transform: translateX(-50%) !important;
  z-index: 0 !important;
  background-color: #f4c71f !important;
  background-image: url("/images/pattern.png") !important;
  background-repeat: repeat !important;
  background-position: center bottom !important;
  background-size: 260px auto !important;
  box-shadow: none !important;
  pointer-events: none !important;
}

body footer::after {
  display: block !important;
  content: "" !important;
  position: absolute !important;
  top: var(--lo-footer-ribbon-top) !important;
  left: 50% !important;
  width: calc(100vw + 96px) !important;
  height: var(--lo-footer-ribbon-height) !important;
  transform: translateX(-50%) !important;
  z-index: 1 !important;
  background-image: url("/images/footer/Rebbon web footer.png") !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  background-size: 100% 100% !important;
  box-shadow: 0 16px 18px rgba(0, 0, 0, .30) !important;
  pointer-events: none !important;
}

body footer .lo-footer-brand {
  z-index: 6 !important;
}

body footer .lo-footer-brand__crestline {
  z-index: 7 !important;
}

body footer .lo-footer-brand__ribbon,
body footer .lo-footer-brand__crestline::before {
  display: none !important;
  content: none !important;
}

body footer .lo-footer-brand__medallion {
  z-index: 8 !important;
}

@media (max-width: 640px) {
  body footer {
    --lo-footer-ribbon-top: 22px !important;
    --lo-footer-ribbon-height: 42px !important;
    --lo-footer-ribbon-center: calc(var(--lo-footer-ribbon-top) + (var(--lo-footer-ribbon-height) / 2)) !important;
    --lo-footer-bleed: 104px !important;
  }
}

/* QA responsive cleanup 2026-06-30: character pages must not let the footer cover content. */
body .character,
body .related {
  position: relative !important;
  z-index: 2 !important;
}

body .character {
  padding-bottom: clamp(42px, 6vw, 86px) !important;
}

body footer {
  --lo-footer-bleed: 0px !important;
  margin-top: clamp(24px, 4vw, 56px) !important;
}

body footer::before {
  display: none !important;
  content: none !important;
}

@media (max-width: 760px) {
  body .breadcrumb {
    padding-top: 84px !important;
  }

  body .character {
    padding-top: 24px !important;
    padding-bottom: 44px !important;
  }

  body .container {
    width: min(100% - 28px, 520px) !important;
    padding-inline: 0 !important;
  }

  body .character__grid {
    gap: 24px !important;
  }

  body .character__portrait {
    max-height: min(72svh, 620px) !important;
  }

  body .character__name {
    font-size: clamp(2.6rem, 12vw, 4rem) !important;
    line-height: .95 !important;
  }

  body .character__bio p {
    font-size: clamp(1rem, 4.2vw, 1.08rem) !important;
    line-height: 1.55 !important;
  }

  body .related__grid {
    grid-template-columns: 1fr !important;
  }
}

/* QA 2026-06-30 pass 2: same footer entrance as home, without covering content. */
body footer {
  --lo-footer-bleed: clamp(74px, 13vw, 124px) !important;
  margin-top: var(--lo-footer-bleed) !important;
}

body footer::before {
  display: block !important;
  content: "" !important;
  position: absolute !important;
  top: calc(-1 * var(--lo-footer-bleed)) !important;
  left: 50% !important;
  width: 100vw !important;
  height: var(--lo-footer-bleed) !important;
  transform: translateX(-50%) !important;
  z-index: 0 !important;
  background-color: #f4c71f !important;
  background-image: url("/images/pattern.png") !important;
  background-repeat: repeat !important;
  background-position: center bottom !important;
  background-size: 260px auto !important;
  pointer-events: none !important;
}

@media (max-width: 760px) {
  body .character {
    padding-bottom: 24px !important;
  }

  body footer {
    --lo-footer-bleed: 82px !important;
  }
}

/* Footer boundary hard lock: no external texture strip above the footer. */
body footer {
  --lo-footer-bleed: 0px !important;
  margin-top: 0 !important;
}

body footer::before {
  display: none !important;
  content: none !important;
  top: 0 !important;
  height: 0 !important;
  background: none !important;
}

/* Footer hard reset: the ribbon is the first footer pixel; no bleed or stray crestline texture. */
body footer {
  --lo-footer-bleed: 0px !important;
  --lo-footer-ribbon-top: 0px !important;
  --lo-footer-ribbon-height: clamp(44px, 4vw, 62px) !important;
  --lo-footer-ribbon-center: calc(var(--lo-footer-ribbon-height) / 2) !important;
  position: relative !important;
  isolation: isolate !important;
  overflow: visible !important;
  margin-top: 0 !important;
  padding-top: 0 !important;
  background-color: #f4c71f !important;
  background-image: url("/images/pattern.png") !important;
  background-repeat: repeat !important;
  background-position: center top !important;
  background-size: 260px auto !important;
}

body footer::before {
  display: none !important;
  content: none !important;
  width: 0 !important;
  height: 0 !important;
  background: none !important;
  box-shadow: none !important;
}

body footer::after {
  display: block !important;
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: 50% !important;
  width: calc(100vw + 160px) !important;
  height: var(--lo-footer-ribbon-height) !important;
  transform: translateX(-50%) !important;
  z-index: 2 !important;
  background-image: url("/images/footer/Rebbon web footer.png") !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  background-size: 100% 100% !important;
  box-shadow:
    0 16px 20px rgba(0, 0, 0, .32),
    0 4px 7px rgba(0, 0, 0, .24) !important;
  pointer-events: none !important;
}

body footer .lo-footer-brand,
body footer .lo-footer-brand::before,
body footer .lo-footer-brand::after,
body footer .lo-footer-brand__crestline,
body footer .lo-footer-brand__crestline::before,
body footer .lo-footer-brand__crestline::after {
  background: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
}

body footer .lo-footer-brand {
  width: 100% !important;
  position: relative !important;
  z-index: 4 !important;
  margin: 0 0 clamp(10px, 1.4vw, 18px) !important;
  padding-top: calc(var(--lo-footer-ribbon-height) + clamp(64px, 5.6vw, 92px)) !important;
}

body footer .lo-footer-brand__crestline {
  position: absolute !important;
  top: 0 !important;
  left: 50% !important;
  width: 100vw !important;
  height: 0 !important;
  transform: translateX(-50%) !important;
  z-index: 5 !important;
  pointer-events: none !important;
}

body footer .lo-footer-brand__ribbon {
  display: none !important;
}

body footer .lo-footer-brand__medallion {
  position: absolute !important;
  top: var(--lo-footer-ribbon-center) !important;
  left: 50% !important;
  width: clamp(76px, 7vw, 112px) !important;
  max-width: clamp(76px, 7vw, 112px) !important;
  height: auto !important;
  transform: translate(-50%, -50%) !important;
  z-index: 7 !important;
}

/* Canonical footer for character pages: same structure as home. */
html,
body {
  overflow-x: hidden !important;
}

body footer {
  --lo-footer-ribbon-height: clamp(42px, 3.8vw, 62px) !important;
  --lo-footer-medallion: clamp(84px, 7.2vw, 118px) !important;
  --lo-footer-clearance: calc(var(--lo-footer-ribbon-height) + (var(--lo-footer-medallion) / 2) + clamp(12px, 1.4vw, 22px)) !important;
  position: relative !important;
  isolation: isolate !important;
  overflow: visible !important;
  margin: 0 !important;
  padding: 0 clamp(16px, 3vw, 32px) clamp(34px, 4.4vw, 60px) !important;
  background-color: #f4c71f !important;
  background-image: url("/images/pattern.png") !important;
  background-repeat: repeat !important;
  background-position: center top !important;
  background-size: 260px auto !important;
  color: #0b0906 !important;
}

body footer::before,
body footer .lo-footer-brand__crestline::before,
body footer .lo-footer-brand__crestline::after,
body footer .lo-footer-brand::before,
body footer .lo-footer-brand::after {
  display: none !important;
  content: none !important;
  background: none !important;
  box-shadow: none !important;
}

body footer::after {
  display: block !important;
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: 50% !important;
  width: calc(100vw + 4px) !important;
  height: var(--lo-footer-ribbon-height) !important;
  transform: translateX(-50%) !important;
  z-index: 2 !important;
  background: url("/images/footer/Rebbon web footer.png") center center / 100% 100% no-repeat !important;
  box-shadow: 0 22px 28px rgba(0, 0, 0, .38), 0 6px 9px rgba(0, 0, 0, .28) !important;
  pointer-events: none !important;
}

body footer > .container {
  position: relative !important;
  z-index: 3 !important;
  width: min(100%, 1120px) !important;
  margin: 0 auto !important;
  padding: 0 !important;
}

body footer .footer-column {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: clamp(12px, 1.4vw, 18px) !important;
  text-align: center !important;
}

body footer .lo-footer-brand {
  order: 1 !important;
  position: relative !important;
  width: 100% !important;
  margin: 0 !important;
  padding-top: var(--lo-footer-clearance) !important;
  background: transparent !important;
  box-shadow: none !important;
  z-index: 4 !important;
}

body footer .lo-footer-brand__crestline {
  position: absolute !important;
  inset: 0 auto auto 50% !important;
  width: 100vw !important;
  height: 0 !important;
  transform: translateX(-50%) !important;
  background: transparent !important;
  box-shadow: none !important;
  pointer-events: none !important;
  z-index: 5 !important;
}

body footer .lo-footer-brand__ribbon {
  display: none !important;
}

body footer .lo-footer-brand__medallion {
  position: absolute !important;
  top: calc(var(--lo-footer-ribbon-height) / 2) !important;
  left: 50% !important;
  width: var(--lo-footer-medallion) !important;
  max-width: none !important;
  height: var(--lo-footer-medallion) !important;
  transform: translate(-50%, -50%) !important;
  object-fit: contain !important;
  filter: drop-shadow(0 16px 18px rgba(0, 0, 0, .42)) !important;
  z-index: 6 !important;
}

body footer .lo-footer-brand__wordmark {
  display: block !important;
  width: clamp(150px, 14vw, 220px) !important;
  max-width: 68vw !important;
  height: auto !important;
  margin: 0 auto !important;
  filter: drop-shadow(0 8px 9px rgba(0, 0, 0, .34)) !important;
}

body footer .footer-column > p:not(.footer-mailing-address),
body footer .footer-mailing-address,
body footer .footer-column > .join-the-order,
body footer .socials,
body footer .regular-footer {
  color: #0b0906 !important;
}

body footer .footer-column > .join-the-order {
  order: 4 !important;
  display: block !important;
  width: min(100%, 980px) !important;
  margin: clamp(4px, .8vw, 10px) auto 0 !important;
  padding: 0 !important;
  background: transparent !important;
}

body footer .footer-column > .join-the-order .container,
body footer .footer-column > .join-the-order .mailer {
  width: 100% !important;
  max-width: none !important;
  margin: 0 auto !important;
  padding: 0 !important;
  background: transparent !important;
}

body footer .footer-column > .join-the-order .mailer .input {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto !important;
  gap: 10px !important;
  width: min(100%, 880px) !important;
  margin: 0 auto !important;
}

body footer .socials {
  order: 5 !important;
}

body footer .regular-footer {
  order: 6 !important;
  display: flex !important;
  justify-content: center !important;
  gap: clamp(18px, 3vw, 44px) !important;
}

@media (max-width: 720px) {
  body footer {
    --lo-footer-ribbon-height: 42px !important;
    --lo-footer-medallion: 88px !important;
    padding-inline: 16px !important;
    background-size: 230px auto !important;
  }

  body footer .footer-column > .join-the-order .mailer .input {
    grid-template-columns: 1fr !important;
    width: min(100%, 430px) !important;
  }
}

/* Footer compact rhythm: keep the classic footer, remove oversized vertical air. */
body footer {
  --lo-footer-ribbon-height: clamp(38px, 3.1vw, 54px) !important;
  --lo-footer-medallion: clamp(74px, 6vw, 102px) !important;
  --lo-footer-clearance: calc(var(--lo-footer-ribbon-height) + (var(--lo-footer-medallion) / 2) + clamp(0px, .7vw, 10px)) !important;
  padding-bottom: clamp(20px, 2.4vw, 34px) !important;
}

body footer .footer-column {
  gap: clamp(7px, .8vw, 12px) !important;
}

body footer .lo-footer-brand__wordmark {
  width: clamp(132px, 11vw, 190px) !important;
}

body footer .footer-column > p:not(.footer-mailing-address),
body footer .footer-mailing-address {
  max-width: 760px !important;
  font-size: clamp(.92rem, .92vw, 1.04rem) !important;
  line-height: 1.24 !important;
}

body footer .footer-column > .join-the-order {
  width: min(100%, 860px) !important;
  margin-top: 2px !important;
}

body footer .footer-column > .join-the-order .mailer {
  border: 0 !important;
  box-shadow: none !important;
}

body footer .footer-column > .join-the-order .mailer h3 {
  max-width: 720px !important;
  margin-bottom: 8px !important;
  font-size: clamp(.96rem, 1vw, 1.1rem) !important;
  line-height: 1.22 !important;
}

body footer .footer-column > .join-the-order .mailer .input {
  gap: 8px !important;
}

body footer .footer-column > .join-the-order .mailer input,
body footer .footer-column > .join-the-order .mailer button {
  min-height: 38px !important;
  height: 38px !important;
}

body footer .socials {
  margin-top: 6px !important;
}

body footer .socials a {
  width: clamp(36px, 3vw, 44px) !important;
  height: clamp(36px, 3vw, 44px) !important;
}

body footer .regular-footer {
  margin-top: clamp(8px, 1.2vw, 16px) !important;
  gap: clamp(14px, 2.2vw, 32px) !important;
  font-size: clamp(.84rem, .88vw, .98rem) !important;
}

@media (max-width: 720px) {
  body footer {
    --lo-footer-ribbon-height: 38px !important;
    --lo-footer-medallion: 76px !important;
    padding-bottom: 22px !important;
  }

  body footer .footer-column > .join-the-order .mailer .input {
    gap: 6px !important;
  }
}

/* Footer symmetric rhythm final: every footer group shares one spacing scale. */
body footer {
  --lo-footer-gap: clamp(10px, .85vw, 14px) !important;
  --lo-footer-ribbon-height: clamp(38px, 2.8vw, 50px) !important;
  --lo-footer-medallion: clamp(74px, 5.6vw, 96px) !important;
  --lo-footer-clearance: calc(var(--lo-footer-ribbon-height) + (var(--lo-footer-medallion) / 2) + var(--lo-footer-gap)) !important;
  margin: 0 !important;
  padding: 0 clamp(16px, 3vw, 32px) clamp(20px, 2vw, 30px) !important;
}

body footer::after {
  top: 0 !important;
  height: var(--lo-footer-ribbon-height) !important;
}

body footer > .container {
  padding: 0 !important;
}

body footer .footer-column {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: var(--lo-footer-gap) !important;
  text-align: center !important;
}

body footer .lo-footer-brand {
  margin: 0 !important;
  padding-top: var(--lo-footer-clearance) !important;
}

body footer .lo-footer-brand__medallion {
  top: calc(var(--lo-footer-ribbon-height) / 2) !important;
  width: var(--lo-footer-medallion) !important;
  height: var(--lo-footer-medallion) !important;
}

body footer .lo-footer-brand__wordmark {
  width: clamp(126px, 9vw, 174px) !important;
  margin: 0 auto !important;
}

body footer .footer-column > p:not(.footer-mailing-address),
body footer .footer-mailing-address {
  margin: 0 auto !important;
  padding: 0 !important;
  max-width: 760px !important;
  font-size: clamp(.9rem, .88vw, 1rem) !important;
  line-height: 1.24 !important;
}

body footer .footer-column > .join-the-order,
body footer .footer-mailer {
  display: block !important;
  width: min(100%, 760px) !important;
  margin: 0 auto !important;
  padding: 0 !important;
  background: transparent !important;
}

body footer .join-the-order .container,
body footer .join-the-order .mailer,
body footer .footer-mailer {
  width: 100% !important;
  max-width: none !important;
  margin: 0 auto !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

body footer .join-the-order .mailer h3,
body footer .footer-mailer h3 {
  margin: 0 auto calc(var(--lo-footer-gap) * .65) !important;
  color: #0b0906 !important;
  font-family: var(--font-body, Georgia, serif) !important;
  font-size: clamp(.95rem, .92vw, 1.05rem) !important;
  font-weight: 600 !important;
  letter-spacing: 0 !important;
  line-height: 1.18 !important;
  text-transform: none !important;
}

body footer .join-the-order .mailer .input,
body footer .footer-mailer .input {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto !important;
  gap: 8px !important;
  width: min(100%, 760px) !important;
  margin: 0 auto !important;
}

body footer .join-the-order .mailer input,
body footer .join-the-order .mailer button,
body footer .footer-mailer input,
body footer .footer-mailer button {
  min-height: 36px !important;
  height: 36px !important;
  font-size: .92rem !important;
  line-height: 1 !important;
}

body footer .socials {
  margin: 0 !important;
  gap: 10px !important;
}

body footer .socials a {
  width: clamp(36px, 2.8vw, 42px) !important;
  height: clamp(36px, 2.8vw, 42px) !important;
}

body footer .regular-footer {
  margin: 0 !important;
  padding: 0 !important;
  gap: clamp(14px, 2vw, 28px) !important;
  font-size: clamp(.82rem, .82vw, .94rem) !important;
  line-height: 1.2 !important;
}

@media (max-width: 720px) {
  body footer {
    --lo-footer-gap: 10px !important;
    --lo-footer-ribbon-height: 38px !important;
    --lo-footer-medallion: 74px !important;
    padding-inline: 14px !important;
    padding-bottom: 20px !important;
  }

  body footer .join-the-order .mailer .input,
  body footer .footer-mailer .input {
    grid-template-columns: 1fr !important;
    gap: 6px !important;
  }
}
