/* ==========================================================================
   Lion Order — final frontend handoff layer
   --------------------------------------------------------------------------
   Purpose:
   - Keep the current backend markup/actions intact.
   - Restore the Collection gallery card presentation.
   - Normalize the footer ribbon/medallion proportions.
   - Keep section headings readable on the yellow patterned surface.

   This file is intentionally loaded last from /js/home.js.
   ========================================================================== */

:root {
  --lo-yellow: #f4c71f;
  --lo-ink: #0b0906;
  --lo-cream: #f8f2e3;
  --lo-gold-shadow: rgba(53, 38, 0, 0.28);
  --lo-pattern-yellow: url("/images/pattern.png");
  --lo-pattern-dark: linear-gradient(90deg, rgba(135, 108, 33, 0.86), rgba(124, 99, 30, 0.86) 50%, rgba(135, 108, 33, 0.86)), url("/images/BlackPattern LO.png");
  --lo-display: "Salter Roman", Georgia, serif;
  --lo-body: "Minion Variable Concept", "Minion Pro", Georgia, serif;
}

/* --------------------------------------------------------------------------
   01. Global brand typography / safe defaults
   -------------------------------------------------------------------------- */

body,
button,
input,
textarea,
select {
  font-family: var(--lo-body) !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
.section-title,
.footer-title {
  font-family: var(--lo-display) !important;
  font-weight: 400 !important;
}

html,
body {
  overflow-x: clip;
}

.site-content {
  margin-top: 0 !important;
}

/* --------------------------------------------------------------------------
   02. Collection section surface
   -------------------------------------------------------------------------- */

body .shop {
  background:
    linear-gradient(90deg, rgba(135, 108, 33, 0.84), rgba(124, 99, 30, 0.84) 50%, rgba(135, 108, 33, 0.84)),
    url("/images/BlackPattern LO.png") center top / 560px auto repeat,
    #85691f !important;
  color: #fff8df !important;
}

body .shop .section-title,
body .shop .section-title p,
body .shop .section-title h2,
body .shop .section-title h3 {
  text-align: center !important;
}

body .shop .section-title,
body .shop .section-title p {
  color: #fff8df !important;
}

body .shop .section-title h2,
body .shop .section-title h3 {
  color: var(--lo-yellow) !important;
}

/* --------------------------------------------------------------------------
   03. Collection gallery — restored product cards
   --------------------------------------------------------------------------
   The buttons remain the same elements/classes from the backend.
   Only visual layout is controlled here.
   -------------------------------------------------------------------------- */

body .shop .container {
  padding: 0 !important;
}

body .shop .product-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: clamp(16px, 1.9vw, 32px) !important;
  align-items: stretch !important;
}

body .shop .product-grid .product {
  position: relative !important;
  display: grid !important;
  grid-template-rows: auto 1fr auto !important;
  min-width: 0 !important;
  min-height: auto !important;
  padding: 16px !important;
  overflow: hidden !important;
  border: 1px solid rgba(17, 17, 17, 0.12) !important;
  border-radius: 5px !important;
  background: rgba(247, 241, 226, 0.96) !important;
  box-shadow: 0 16px 34px rgba(53, 38, 0, 0.2) !important;
  cursor: pointer !important;
  align-items: stretch !important;
  justify-items: stretch !important;
}

body .shop .product-grid .product > a {
  display: block !important;
  width: 100% !important;
  min-width: 0 !important;
  padding: 0 !important;
  align-self: stretch !important;
  justify-self: stretch !important;
  color: inherit !important;
  text-decoration: none !important;
}

body .shop .product-grid .product .image {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 1 / 1 !important;
  min-height: 0 !important;
  margin: 0 !important;
  border-radius: 14px !important;
  background-color: #fff !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  transform: none !important;
  transition: 600ms all cubic-bezier(0.4, 0, 0.2, 1) !important;
}

body .shop .product-grid .product .image[style*="no-image.png"],
body .shop .product-grid .product .image.no-image {
  background-size: contain !important;
  background-color: #fcfaf2 !important;
}

body .shop .product-grid .product:hover .image {
  transform: none !important;
}

body .shop .product-grid .product .titles {
  position: static !important;
  inset: auto !important;
  display: grid !important;
  grid-template-rows: auto auto 1fr !important;
  gap: 8px !important;
  min-height: auto !important;
  padding: 14px 2px 2px !important;
  background: transparent !important;
  z-index: 50 !important;
  width: 100% !important;
  align-self: start !important;
  justify-self: stretch !important;
}

body .shop .product-grid .product .titles::before,
body .shop .product-grid .product .titles::after {
  display: none !important;
}

body .shop .product-grid .product .titles .category-name {
  display: inline-flex !important;
  align-items: center !important;
  justify-self: flex-start !important;
  width: auto !important;
  max-width: max-content !important;
  margin: 0 !important;
  padding: 0.45rem 0.85rem !important;
  border-radius: 5px !important;
  background: #111 !important;
  color: #fff !important;
  font-family: var(--lo-body) !important;
  font-size: 0.66rem !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
}

body .shop .product-grid .product .titles .title,
body .shop .product-grid .product .titles .title span {
  margin: 0 !important;
  color: #111 !important;
  font-family: var(--lo-display) !important;
  font-size: clamp(1.18rem, 1.45vw, 1.65rem) !important;
  font-weight: 400 !important;
  line-height: 1.08 !important;
  text-transform: none !important;
}

body .shop .product-grid .product .product-buttons:empty {
  display: none !important;
}

body .shop .product-grid .product .product-buttons {
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  align-items: stretch !important;
  width: 100% !important;
  gap: 8px !important;
  margin-top: 12px !important;
  padding-right: 0 !important;
}

body .shop .product-grid .product .product-buttons button,
body .shop .product-grid .product .product-buttons a {
  width: 100% !important;
  min-height: 46px !important;
  border-radius: 12px !important;
  justify-content: center !important;
  text-align: center !important;
}

body .shop .product-grid .product .product-buttons .add-to-basket,
body .shop .product-grid .product .product-buttons .add-wishlist {
  background: var(--lo-yellow) !important;
  border-color: #d6a900 !important;
  color: var(--lo-ink) !important;
}

body .shop .product-grid .product .product-buttons .view-wishlist,
body .shop .product-grid .product .product-buttons .view {
  background: #5f5f5f !important;
  border-color: #5f5f5f !important;
  color: #fff !important;
}

body .shop .product-grid .product.soon::after,
body .shop .product-grid .product.coming-soon::after {
  content: "Coming Soon" !important;
  position: absolute !important;
  top: 12px !important;
  left: 12px !important;
  z-index: 80 !important;
  padding: 4px 10px !important;
  border-radius: 4px !important;
  background: rgba(0, 0, 0, 0.75) !important;
  color: #fff !important;
  font-family: var(--lo-body) !important;
  font-size: 0.7rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  pointer-events: none !important;
}

body .shop .product-grid .product.coming-soon .image {
  filter: grayscale(40%) !important;
  opacity: 0.85 !important;
}

body .shop .product-grid .product.coming-soon .product-buttons button {
  opacity: 0.7 !important;
  cursor: default !important;
}

@media (max-width: 980px) {
  body .shop .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 640px) {
  body .shop .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
  }

  body .shop .product-grid .product {
    padding: 10px !important;
    border-radius: 14px !important;
  }

  body .shop .product-grid .product .image {
    border-radius: 10px !important;
  }

  body .shop .product-grid .product .titles {
    padding: 10px 0 0 !important;
    gap: 6px !important;
  }

  body .shop .product-grid .product .titles .category-name {
    padding: 0.35rem 0.55rem !important;
    font-size: 0.55rem !important;
    letter-spacing: 0.16em !important;
  }

  body .shop .product-grid .product .titles .title,
  body .shop .product-grid .product .titles .title span {
    font-size: 1rem !important;
  }

  body .shop .product-grid .product .product-buttons {
    gap: 6px !important;
  }

  body .shop .product-grid .product .product-buttons button,
  body .shop .product-grid .product .product-buttons a {
    min-height: 40px !important;
    border-radius: 10px !important;
  }
}

/* --------------------------------------------------------------------------
   04. Footer ribbon/medallion normalization
   -------------------------------------------------------------------------- */

body footer {
  overflow: visible !important;
}

body footer .lo-footer-brand {
  position: relative !important;
  display: grid !important;
  justify-items: center !important;
  text-align: center !important;
  overflow: visible !important;
  padding-top: clamp(78px, 7vw, 112px) !important;
}

body footer .lo-footer-brand__crestline {
  position: absolute !important;
  top: 0 !important;
  left: 50% !important;
  width: 100vw !important;
  height: clamp(96px, 9vw, 142px) !important;
  transform: translateX(-50%) !important;
  overflow: visible !important;
  pointer-events: none !important;
}

body footer .lo-footer-brand__ribbon {
  position: absolute !important;
  top: clamp(34px, 3.9vw, 58px) !important;
  left: 50% !important;
  width: 100vw !important;
  height: clamp(30px, 3.6vw, 54px) !important;
  transform: translateX(-50%) !important;
  object-fit: fill !important;
  object-position: center center !important;
  filter: drop-shadow(0 9px 10px rgba(0, 0, 0, 0.36)) !important;
}

body footer .lo-footer-brand__medallion {
  position: absolute !important;
  top: 0 !important;
  left: 50% !important;
  width: clamp(96px, 8.8vw, 138px) !important;
  height: clamp(96px, 8.8vw, 138px) !important;
  transform: translate(-50%, -12%) !important;
  z-index: 4 !important;
  filter: drop-shadow(0 16px 18px rgba(0, 0, 0, 0.36)) !important;
}

body footer .lo-footer-brand__wordmark {
  display: block !important;
  width: clamp(170px, 18vw, 260px) !important;
  max-width: 70vw !important;
  height: auto !important;
  margin-inline: auto !important;
  object-fit: contain !important;
  filter: drop-shadow(0 10px 10px rgba(0, 0, 0, 0.35)) !important;
}

body footer img[src*="LO%20text%20logo%20gold"],
body footer img[src*="LO text logo gold"] {
  display: block !important;
  width: clamp(170px, 18vw, 260px) !important;
  max-width: 70vw !important;
  height: auto !important;
  margin: 0 auto !important;
  object-fit: contain !important;
  filter: drop-shadow(0 10px 10px rgba(0, 0, 0, 0.35)) !important;
}

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

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__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;
}

/* --------------------------------------------------------------------------
   05. Product detail proportion pass
   -------------------------------------------------------------------------- */

@media (min-width: 981px) {
  body .product-container.product-container--commerce {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
    gap: clamp(24px, 3vw, 48px) !important;
  }

  body .product-container--commerce .product-details h2 {
    max-width: 13ch !important;
    font-size: clamp(2.8rem, 4vw, 5.4rem) !important;
    line-height: 0.92 !important;
  }

  body .product-container--commerce .product-gallery > #productImage {
    height: min(68svh, 720px) !important;
  }
}

/* Restore Collection product cards to the backup layout. */
body .shop .product-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 16px !important;
  align-items: stretch !important;
}

body .shop .product-grid .product {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) !important;
  grid-template-rows: auto 1fr !important;
  align-items: start !important;
  justify-items: stretch !important;
  justify-content: stretch !important;
  min-height: 0 !important;
  padding: 16px !important;
  overflow: visible !important;
  border: 1px solid rgba(17, 17, 17, .12) !important;
  border-radius: 18px !important;
  background: rgba(247, 241, 226, .96) !important;
  box-shadow: 0 18px 36px rgba(45, 32, 0, .16) !important;
}

body .shop .product-grid .product > a {
  display: block !important;
  width: 100% !important;
  justify-self: stretch !important;
  flex: initial !important;
}

body .shop .product-grid .product .image {
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  aspect-ratio: 1 / 1 !important;
  margin: 0 !important;
  border-radius: 14px !important;
  background-color: #fff !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  transform: none !important;
}

body .shop .product-grid .product .titles {
  position: static !important;
  inset: auto !important;
  display: grid !important;
  width: 100% !important;
  justify-self: stretch !important;
  grid-template-rows: auto auto 1fr !important;
  gap: 8px !important;
  min-height: 0 !important;
  padding: 14px 2px 2px !important;
  background: transparent !important;
  z-index: auto !important;
}

body .shop .product-grid .product .titles::before,
body .shop .product-grid .product .titles::after {
  display: none !important;
}

body .shop .product-grid .product .titles .category-name {
  display: inline-flex !important;
  width: fit-content !important;
  margin: 0 !important;
  padding: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #f4c71f !important;
  font-size: .66rem !important;
  font-weight: 800 !important;
  letter-spacing: .22em !important;
}


	body .shop .product-grid .product .titles .title,
	body .shop .product-grid .product .titles .title span { color: #050505 !important; font-size: clamp(1.28rem, 1.35vw, 1.62rem) !important; line-height: 1.08 !important; }

	body .shop .product-grid .product .titles .price span { color: #050505 !important; font-size: clamp(1.28rem, 1.35vw, 1.62rem) !important; line-height: 1.08 !important; }

body .shop .product-grid .product .product-buttons {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 10px !important;
  width: 100% !important;
  margin-top: 12px !important;
  padding: 0 !important;
}

@media (max-width: 920px) {
  body .shop .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 620px) {
body .shop .product-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Guard against white gaps without letting the yellow texture climb above the ribbon. */
body footer {
  background: transparent !important;
}

body footer::before {
  background: url("/images/pattern.png") center top / 260px auto repeat, #f4c71f !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;
  }
}

/* Mobile fixes: keep TV carousel visible and make Gatherings copy black. */
body .events .section-title,
body .events .section-title p,
body .events .section-title h2,
body .events .section-title h2 span {
  color: #050505 !important;
  text-shadow: none !important;
}

@media (max-width: 640px) {
  body .video-wall {
    min-height: 0 !important;
    padding: 30px 0 36px !important;
  }

  body .video-wall .section-title {
    padding: 0 16px 18px !important;
  }

  body .video-wall .video-gallery,
  body .video-wall .lo-carousel,
  body .video-wall .carousel-wrapper {
    min-height: 0 !important;
    height: auto !important;
    overflow: visible !important;
  }

  body .video-wall .carousel-wrapper {
    width: min(100% - 24px, 360px) !important;
    padding: 0 0 24px !important;
    gap: 18px !important;
  }

  body .video-wall .carousel-track-container {
    width: 100% !important;
    min-height: 264px !important;
    overflow: hidden !important;
  }

  body .video-wall .carousel-track {
    display: flex !important;
    align-items: stretch !important;
    gap: 18px !important;
    min-height: 264px !important;
    padding: 0 !important;
  }

  body .video-wall .carousel-track > .card {
    display: flex !important;
    flex: 0 0 min(300px, calc(100vw - 72px)) !important;
    width: min(300px, calc(100vw - 72px)) !important;
    min-width: min(300px, calc(100vw - 72px)) !important;
    min-height: 250px !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  body .video-wall .carousel-track > .card.hidden {
    opacity: 0 !important;
    visibility: hidden !important;
  }

  body .video-wall .carousel-track > .card.active,
  body .video-wall .carousel-track > .card.adjacent {
    opacity: 1 !important;
    visibility: visible !important;
  }
}

/* Founder highlight: subtle lift over the yellow pattern. */
body .founder-title-sub {
  text-shadow:
    0 1px 0 rgba(255, 237, 138, .42),
    0 5px 12px rgba(45, 32, 0, .24) !important;
}

body .founder-signature {
  filter:
    drop-shadow(0 1px 0 rgba(255, 239, 150, .5))
    drop-shadow(0 7px 10px rgba(45, 32, 0, .28)) !important;
}

@media (max-width: 640px) {
  body .events .featured-event {
    width: min(100% - 28px, 400px) !important;
    min-height: 0 !important;
    margin: 0 auto 22px !important;
    padding: 0 !important;
    border-radius: 8px !important;
    background: transparent !important;
    box-shadow: none !important;
    overflow: visible !important;
  }

  body .events .featured-event .image {
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    aspect-ratio: 16 / 9 !important;
    border-radius: 8px !important;
    background: transparent !important;
    overflow: hidden !important;
  }

  body .events .featured-event .image img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    background: transparent !important;
  }
}

/* Footer final rebuild: ribbon is the exact boundary between dark and yellow. */
body footer {
  --lo-footer-ribbon-top: clamp(76px, 7.2vw, 112px);
  --lo-footer-ribbon-height: clamp(34px, 3.8vw, 56px);
  --lo-footer-ribbon-center: calc(var(--lo-footer-ribbon-top) + (var(--lo-footer-ribbon-height) / 2));
  --lo-footer-pad-top: calc(var(--lo-footer-ribbon-center) + clamp(92px, 8vw, 130px));
  position: relative !important;
  isolation: isolate !important;
  overflow: visible !important;
  padding-top: var(--lo-footer-pad-top) !important;
  background: url("/images/pattern.png") center top / 260px auto repeat, #f4c71f !important;
}

body footer::before {
  content: "" !important;
  position: absolute !important;
  z-index: 0 !important;
  top: 0 !important;
  right: 0 !important;
  bottom: auto !important;
  left: 0 !important;
  width: auto !important;
  height: var(--lo-footer-ribbon-top) !important;
  transform: none !important;
  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;
  box-shadow: none !important;
  pointer-events: none !important;
}

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

body footer .lo-footer-brand {
  position: relative !important;
  z-index: 3 !important;
  margin-top: calc(-1 * var(--lo-footer-pad-top)) !important;
  padding-top: calc(var(--lo-footer-ribbon-center) + clamp(64px, 5.8vw, 92px)) !important;
}

body footer .lo-footer-brand__crestline {
  position: absolute !important;
  top: 0 !important;
  left: 50% !important;
  z-index: 4 !important;
  width: 100vw !important;
  height: calc(var(--lo-footer-ribbon-center) + clamp(54px, 5vw, 82px)) !important;
  margin: 0 !important;
  padding: 0 !important;
  transform: translateX(-50%) !important;
  background: transparent !important;
  overflow: visible !important;
  pointer-events: none !important;
}

body footer .lo-footer-brand__ribbon {
  position: absolute !important;
  top: var(--lo-footer-ribbon-top) !important;
  left: 50% !important;
  z-index: 4 !important;
  width: 100vw !important;
  height: var(--lo-footer-ribbon-height) !important;
  transform: translateX(-50%) !important;
  object-fit: fill !important;
  object-position: center center !important;
}

body footer .lo-footer-brand__medallion {
  content: url("/images/footer/Golden logo web.png") !important;
  position: absolute !important;
  top: var(--lo-footer-ribbon-center) !important;
  left: 50% !important;
  z-index: 5 !important;
  width: clamp(88px, 8.5vw, 132px) !important;
  height: clamp(88px, 8.5vw, 132px) !important;
  transform: translate(-50%, -50%) !important;
  object-fit: contain !important;
}

@media (max-width: 640px) {
  body footer {
    --lo-footer-ribbon-top: clamp(88px, 23vw, 108px);
    --lo-footer-ribbon-height: clamp(32px, 8.8vw, 42px);
    --lo-footer-ribbon-center: calc(var(--lo-footer-ribbon-top) + (var(--lo-footer-ribbon-height) / 2));
    --lo-footer-pad-top: calc(var(--lo-footer-ribbon-center) + 118px);
  }

  body footer .lo-footer-brand {
    padding-top: calc(var(--lo-footer-ribbon-center) + 78px) !important;
  }

  body footer .lo-footer-brand__crestline {
    height: calc(var(--lo-footer-ribbon-center) + 74px) !important;
  }

  body footer .lo-footer-brand__medallion {
    width: clamp(78px, 22vw, 96px) !important;
    height: clamp(78px, 22vw, 96px) !important;
  }
}

/* Typography and spacing final rhythm. */
:root {
  --lo-display: "Salter Roman", Georgia, serif;
  --lo-body: Georgia, "Times New Roman", serif;
  --lo-track: .13em;
}

body,
button,
input,
textarea,
select,
footer,
footer p,
footer a,
footer span,
header,
header a,
header button,
.hero__lede,
.hero__taglines p,
.hero__cta,
.hero__claim-button {
  font-family: var(--lo-body) !important;
}

h1,
h2,
h3,
.hero__title,
.section-title h2,
.product-title,
.footer-title,
.founder-title-sub,
.video-wall .section-title h2 {
  font-family: var(--lo-display) !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
}

.hero__topTitle,
.hero__taglines p,
.hero__cta,
.hero__claim-button,
header nav a,
header .nav a,
header .menu a,
footer .regular-footer a,
footer .regular-footer span,
footer .footer-mailing-address {
  font-family: var(--lo-body) !important;
  font-weight: 700 !important;
  letter-spacing: var(--lo-track) !important;
}

footer .footer-column {
  display: grid !important;
  justify-items: center !important;
  gap: clamp(14px, 2vw, 22px) !important;
}

footer .footer-column > p,
footer .footer-mailing-address {
  max-width: 920px !important;
  margin: 0 auto !important;
  font-size: clamp(1rem, 1.35vw, 1.25rem) !important;
  line-height: 1.35 !important;
  letter-spacing: 0 !important;
}

footer .footer-column .socials {
  margin: clamp(8px, 1.6vw, 16px) 0 !important;
  gap: clamp(10px, 1.4vw, 16px) !important;
}

footer .regular-footer {
  width: min(100%, 760px) !important;
  margin: clamp(10px, 2vw, 20px) auto 0 !important;
  justify-content: center !important;
  gap: clamp(18px, 3vw, 34px) !important;
  font-size: clamp(.82rem, 1vw, .95rem) !important;
  line-height: 1.2 !important;
}

footer .regular-footer .menu ul {
  gap: clamp(14px, 2.4vw, 28px) !important;
}

@media (max-width: 640px) {
  .hero__title {
    font-size: clamp(3rem, 14vw, 4.75rem) !important;
    line-height: .95 !important;
  }

  .hero__lede {
    font-size: clamp(.98rem, 4.2vw, 1.12rem) !important;
    line-height: 1.35 !important;
  }

  .hero__topTitle,
  .hero__taglines p {
    font-size: .82rem !important;
    line-height: 1.35 !important;
    letter-spacing: .16em !important;
  }

  .hero__actions {
    gap: 10px !important;
  }

  .hero__cta {
    min-height: 52px !important;
    padding-inline: 14px !important;
    font-size: .82rem !important;
    letter-spacing: .14em !important;
  }

  footer .footer-column {
    gap: 12px !important;
  }

  footer .footer-column > p,
  footer .footer-mailing-address {
    max-width: min(340px, calc(100vw - 44px)) !important;
    font-size: .98rem !important;
    line-height: 1.28 !important;
  }

  footer .regular-footer {
    display: grid !important;
    justify-items: center !important;
    gap: 10px !important;
    font-size: .88rem !important;
  }
}

/* Footer clean cap: remove old overlap artifacts and force full-bleed ribbon. */
body footer {
  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 {
  inset: auto !important;
  top: 0 !important;
  right: 0 !important;
  bottom: auto !important;
  left: 0 !important;
  height: var(--lo-footer-ribbon-top) !important;
  z-index: 0 !important;
  border: 0 !important;
  box-shadow: none !important;
}

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

body footer .lo-footer-brand__crestline {
  width: 100vw !important;
  max-width: none !important;
  margin: 0 !important;
  border: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
  overflow: visible !important;
}

body footer .lo-footer-brand__ribbon {
  display: block !important;
  width: 120vw !important;
  min-width: 120vw !important;
  max-width: none !important;
  margin: 0 !important;
  border: 0 !important;
  box-shadow: none !important;
  transform: translateX(-50%) !important;
  object-fit: fill !important;
  object-position: center center !important;
  filter:
    drop-shadow(0 16px 18px rgba(0, 0, 0, .42))
    drop-shadow(0 3px 4px rgba(0, 0, 0, .38)) !important;
}

body footer .lo-footer-brand__medallion {
  filter:
    drop-shadow(0 18px 20px rgba(0, 0, 0, .45))
    drop-shadow(0 4px 5px rgba(0, 0, 0, .38)) !important;
}

/* Footer hard reset: compact dark cap, no yellow strip before the ribbon. */
body footer {
  --lo-footer-ribbon-top: clamp(34px, 3.4vw, 54px) !important;
  --lo-footer-ribbon-height: clamp(34px, 3.2vw, 50px) !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, 128px)) !important;
  margin-top: 0 !important;
  padding-top: var(--lo-footer-pad-top) !important;
}

body footer::before {
  height: var(--lo-footer-ribbon-top) !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 {
  height: calc(var(--lo-footer-ribbon-center) + clamp(58px, 5.2vw, 84px)) !important;
}

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

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

body .join-the-order + footer,
body section + footer {
  margin-top: 0 !important;
}

body .join-the-order {
  padding-bottom: 0 !important;
}

@media (max-width: 640px) {
  body footer {
    --lo-footer-ribbon-top: 42px !important;
    --lo-footer-ribbon-height: 36px !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) + 118px) !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: final loaded home layer. */
body .featured-video .section-title h2,
body .events .section-title h2,
body .video-wall .section-title h2,
body .instagram-feed__title,
body .founder-title-sub {
  letter-spacing: 0 !important;
  text-wrap: balance !important;
}

body .founder-title-sub {
  color: #0b0906 !important;
  font-size: clamp(2.6rem, 6vw, 5.1rem) !important;
  line-height: .92 !important;
  text-shadow:
    0 1px 0 rgba(255, 237, 138, .42),
    0 5px 12px rgba(45, 32, 0, .24) !important;
}

body .founder-signature {
  filter:
    drop-shadow(0 1px 0 rgba(255, 239, 150, .5))
    drop-shadow(0 7px 10px rgba(45, 32, 0, .28)) !important;
}

body .founder-text,
body .founder-text p {
  max-width: min(100% - 32px, 820px) !important;
  margin-inline: auto !important;
  color: #0b0906 !important;
  font-family: var(--font-body, Georgia, serif) !important;
  font-size: clamp(1rem, 1.35vw, 1.18rem) !important;
  font-weight: 600 !important;
  line-height: 1.55 !important;
  letter-spacing: .02em !important;
  text-align: center !important;
}

body .events .section-title,
body .events .section-title p,
body .events .section-title h2,
body .events .section-title h2 span {
  color: #050505 !important;
  text-shadow: none !important;
}

body .events .section-title h2 {
  font-size: clamp(3rem, 7vw, 6.2rem) !important;
  line-height: .9 !important;
}

@media (max-width: 760px) {
  body .shop,
  body .featured-video,
  body .events,
  body .video-wall,
  body .instagram-feed {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  body .shop .section-title,
  body .events .section-title,
  body .featured-video .section-title,
  body .video-wall .section-title {
    width: min(100% - 28px, 430px) !important;
    margin-inline: auto !important;
  }

  body .shop .section-title h2,
  body .events .section-title h2,
  body .featured-video .section-title h2,
  body .video-wall .section-title h2 {
    font-size: clamp(2.7rem, 12vw, 4rem) !important;
    line-height: .9 !important;
  }

  body .shop .section-title p,
  body .events .section-title p,
  body .featured-video .section-title p {
    font-size: .76rem !important;
    letter-spacing: .24em !important;
  }

  body .shop .container {
    width: min(100% - 24px, 430px) !important;
  }

  body .shop .product-grid {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  body .shop .product-grid .product {
    min-height: 0 !important;
    border-radius: 10px !important;
  }

  body .shop .product-grid .product .image {
    aspect-ratio: 4 / 3 !important;
    max-height: 340px !important;
  }

  body .shop .product-grid .product .titles {
    min-height: 0 !important;
    padding: 14px !important;
  }

  body .shop .product-grid .product .titles .title,
  body .shop .product-grid .product .titles .title span {
    font-size: clamp(1.65rem, 8vw, 2.15rem) !important;
    line-height: 1.04 !important;
  }

  body .shop .product-grid .product .product-buttons {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
  }

  body .shop .product-grid .product .product-buttons button,
  body .shop .product-grid .product .product-buttons a {
    min-height: 48px !important;
    padding: 0 10px !important;
    border-radius: 10px !important;
    font-size: clamp(.86rem, 4vw, 1rem) !important;
    letter-spacing: 0 !important;
    line-height: 1.1 !important;
  }

  body .events {
    padding-top: 42px !important;
  }

  body .events .featured-event {
    width: min(100% - 28px, 430px) !important;
    margin: 0 auto 20px !important;
    padding: 0 !important;
    border-radius: 8px !important;
    background: transparent !important;
    box-shadow: none !important;
    overflow: visible !important;
  }

  body .events .featured-event .image {
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    aspect-ratio: 16 / 9 !important;
    border-radius: 8px !important;
    background: transparent !important;
    overflow: hidden !important;
  }

  body .events .featured-event .image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center !important;
  }

  body .founder-title-sub {
    font-size: clamp(2.6rem, 11vw, 3.6rem) !important;
  }

  body .founder-signature {
    width: min(82vw, 360px) !important;
  }

  body .founder-text,
  body .founder-text p {
    max-width: min(100% - 32px, 430px) !important;
    font-size: clamp(1rem, 4.7vw, 1.12rem) !important;
    line-height: 1.38 !important;
    letter-spacing: 0 !important;
  }
}

/* QA exact overrides: events lives inside .characters in current markup. */
body .site-content section.characters section.events .section-title,
body .site-content section.characters section.events .section-title p,
body .site-content section.characters section.events .section-title h2,
body .site-content section.characters section.events .section-title h2.loadin,
body .site-content section.characters section.events .section-title h2 span {
  color: #050505 !important;
  text-shadow: none !important;
}

body .site-content .founder-text,
body .site-content .founder-text p,
body .site-content section .founder-text p {
  max-width: min(100% - 32px, 820px) !important;
  margin-inline: auto !important;
  color: #0b0906 !important;
  font-family: var(--font-body, Georgia, serif) !important;
  font-size: clamp(1rem, 1.35vw, 1.18rem) !important;
  font-weight: 600 !important;
  line-height: 1.55 !important;
  letter-spacing: 0 !important;
  text-align: center !important;
  text-transform: none !important;
}

@media (max-width: 760px) {
  body .site-content section.characters section.events .section-title h2,
  body .site-content section.characters section.events .section-title h2.loadin {
    font-size: clamp(2.7rem, 12vw, 4rem) !important;
    line-height: .9 !important;
  }

  body .site-content .founder-text,
  body .site-content .founder-text p,
  body .site-content section .founder-text p {
    max-width: min(100% - 32px, 430px) !important;
    font-size: clamp(1rem, 4.7vw, 1.12rem) !important;
    line-height: 1.38 !important;
    letter-spacing: 0 !important;
  }
}

/* Restore footer capture form from the original template. */
body footer > .join-the-order,
body footer > .join-the-order[hidden] {
  display: block !important;
  width: min(100% - 28px, 980px) !important;
  margin: clamp(8px, 1vw, 14px) auto clamp(18px, 2.4vw, 30px) !important;
  padding: 0 !important;
  color: #0b0906 !important;
  background: transparent !important;
}

body footer > .join-the-order .container {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

body footer > .join-the-order .mailer {
  display: grid !important;
  gap: 12px !important;
  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;
  color: #0b0906 !important;
  text-align: center !important;
}

body footer > .join-the-order .mailer h3 {
  max-width: 860px !important;
  margin: 0 auto !important;
  color: #0b0906 !important;
  font-family: var(--font-body, Georgia, serif) !important;
  font-size: clamp(1.02rem, 1.45vw, 1.28rem) !important;
  font-weight: 700 !important;
  line-height: 1.28 !important;
  letter-spacing: 0 !important;
  text-align: center !important;
  text-shadow: none !important;
}

body footer > .join-the-order .mailer .input {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto !important;
  gap: 10px !important;
  align-items: center !important;
}

body footer > .join-the-order .mailer input,
body footer > .join-the-order .mailer button {
  min-height: 42px !important;
  height: 42px !important;
  border-radius: 4px !important;
  font-family: var(--font-body, Georgia, serif) !important;
  font-size: 1rem !important;
  line-height: 1 !important;
}

body footer > .join-the-order .mailer input {
  width: 100% !important;
  padding: 0 14px !important;
  border: 1px solid rgba(17, 17, 17, .18) !important;
  background: rgba(255, 255, 255, .94) !important;
  color: #0b0906 !important;
}

body footer > .join-the-order .mailer button {
  min-width: 150px !important;
  padding: 0 18px !important;
  border: 1px solid rgba(166, 120, 40, .28) !important;
  background: rgba(255, 246, 199, .84) !important;
  color: #0b0906 !important;
  font-weight: 700 !important;
  white-space: nowrap !important;
}

body footer > .join-the-order .mailer button .submitting {
  display: none !important;
}

body footer > .join-the-order .mailer:not(.submitting) button .ready {
  display: inline !important;
}

body footer > .join-the-order .mailer.submitting button .ready {
  display: none !important;
}

body footer > .join-the-order .mailer.submitting button .submitting {
  display: inline-flex !important;
  align-items: center !important;
  gap: 4px !important;
}

body footer > .join-the-order .joined {
  color: #0b0906 !important;
  font-size: 1.1rem !important;
  font-weight: 700 !important;
}

@media (max-width: 720px) {
  body footer > .join-the-order {
    width: min(100% - 24px, 430px) !important;
    margin-bottom: 18px !important;
  }

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

  body footer > .join-the-order .mailer h3 {
    font-size: clamp(1rem, 4.5vw, 1.18rem) !important;
    line-height: 1.24 !important;
  }

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

  body footer > .join-the-order .mailer input,
  body footer > .join-the-order .mailer button {
    width: 100% !important;
    min-width: 0 !important;
  }
}

/* QA 2026-06-30 pass 2: tighter mobile collection, gatherings and stable loading states. */
body .loadin,
body .featured-card,
body .char-card,
body .shop .product-grid .product,
body .events .featured-event {
  opacity: 1 !important;
  visibility: visible !important;
}

body .events {
  padding-top: clamp(30px, 4vw, 54px) !important;
  padding-bottom: clamp(30px, 4vw, 56px) !important;
}

body .events .section-title {
  margin-bottom: clamp(18px, 3vw, 30px) !important;
}

body .events .featured-event {
  margin-bottom: clamp(14px, 2vw, 22px) !important;
}

body .events .featured-event:last-child {
  margin-bottom: 0 !important;
}

@media (max-width: 760px) {
  body .shop .container {
    width: min(100% - 18px, 500px) !important;
  }

  body .shop .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
  }

  body .shop .product-grid .product {
    min-height: 0 !important;
    padding: 10px !important;
    border-radius: 8px !important;
  }

  body .shop .product-grid .product .image {
    aspect-ratio: 1 / 1 !important;
    max-height: none !important;
    border-radius: 8px !important;
  }

  body .shop .product-grid .product .titles {
    gap: 6px !important;
    min-height: 0 !important;
    padding: 10px 0 0 !important;
  }

  body .shop .product-grid .product .titles .category-name {
    padding: .35rem .5rem !important;
    font-size: .52rem !important;
    letter-spacing: .18em !important;
  }

  body .shop .product-grid .product .titles .title,
  body .shop .product-grid .product .titles .title span {
    font-size: clamp(1.15rem, 6vw, 1.55rem) !important;
    line-height: 1.02 !important;
  }

  body .shop .product-grid .product .product-buttons {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 7px !important;
    margin-top: 10px !important;
  }

  body .shop .product-grid .product .product-buttons button,
  body .shop .product-grid .product .product-buttons a {
    min-height: 40px !important;
    padding: 0 8px !important;
    border-radius: 8px !important;
    font-size: clamp(.76rem, 3.5vw, .92rem) !important;
    letter-spacing: 0 !important;
    line-height: 1.05 !important;
  }

  body .events {
    padding-top: 30px !important;
    padding-bottom: 34px !important;
  }

  body .events .section-title {
    margin-bottom: 18px !important;
  }

  body .site-content section.characters section.events .section-title h2,
  body .site-content section.characters section.events .section-title h2.loadin {
    font-size: clamp(2.45rem, 11vw, 3.55rem) !important;
  }

  body .events .featured-event {
    width: min(100% - 24px, 420px) !important;
    margin-bottom: 16px !important;
  }

  body .events .featured-event .image {
    aspect-ratio: 16 / 9 !important;
  }
}

/* Collection heading rhythm: equal spacing and white premium line. */
body .shop .section-title {
  display: grid !important;
  justify-items: center !important;
  gap: clamp(8px, 1.1vw, 14px) !important;
  margin-bottom: clamp(28px, 3.6vw, 48px) !important;
  text-align: center !important;
}

body .shop .section-title p,
body .shop .section-title h2,
body .shop .section-title h3 {
  margin: 0 !important;
  padding: 0 !important;
}

body .shop .section-title p {
  color: #fff8df !important;
  font-size: clamp(.76rem, .9vw, .9rem) !important;
  line-height: 1.15 !important;
  letter-spacing: .32em !important;
}

body .shop .section-title h2 {
  color: #050505 !important;
  font-size: clamp(3.2rem, 7vw, 6.5rem) !important;
  line-height: .86 !important;
}

body .shop .section-title h3 {
  max-width: min(100%, 920px) !important;
  color: #fff8df !important;
  font-family: var(--font-body, Georgia, serif) !important;
  font-size: clamp(1.05rem, 1.5vw, 1.55rem) !important;
  font-weight: 700 !important;
  line-height: 1.16 !important;
  letter-spacing: 0 !important;
  text-wrap: balance !important;
}

@media (max-width: 760px) {
  body .shop .section-title {
    gap: 9px !important;
    margin-bottom: 24px !important;
  }

  body .shop .section-title p {
    font-size: .76rem !important;
    line-height: 1.15 !important;
    letter-spacing: .28em !important;
  }

  body .shop .section-title h2 {
    font-size: clamp(2.75rem, 13vw, 4rem) !important;
    line-height: .86 !important;
  }

  body .shop .section-title h3 {
    max-width: min(100%, 340px) !important;
    font-size: clamp(1.05rem, 5.3vw, 1.35rem) !important;
    line-height: 1.18 !important;
  }
}

/* Lion Order TV carousel: start clean, no half-empty left gutter, premium controls. */
body .video-wall .carousel-wrapper,
body .video-wall .video-gallery {
  width: min(calc(100% - 48px), 1120px) !important;
  max-width: 1120px !important;
  margin-inline: auto !important;
  padding: 0 !important;
  overflow: visible !important;
}

body .video-wall .carousel-track-container {
  width: 100% !important;
  overflow: hidden !important;
}

body .video-wall .carousel-track {
  justify-content: flex-start !important;
  align-items: stretch !important;
  gap: clamp(18px, 2vw, 32px) !important;
  padding: 0 !important;
  will-change: transform !important;
}

body .video-wall .carousel-track > .card,
body .video-wall .carousel-track > .card:nth-child(1),
body .video-wall .carousel-track > .card:nth-child(5) {
  flex: 0 0 clamp(440px, 31vw, 544px) !important;
  width: clamp(440px, 31vw, 544px) !important;
  min-width: clamp(440px, 31vw, 544px) !important;
  opacity: 1 !important;
  visibility: visible !important;
  border-radius: 8px !important;
  border: 1px solid rgba(255, 211, 42, .28) !important;
  background: #0d0b07 !important;
  box-shadow:
    0 18px 38px rgba(0, 0, 0, .22),
    inset 0 1px 0 rgba(255, 235, 156, .16) !important;
  filter: none !important;
  transform: none !important;
}

body .video-wall .carousel-track > .card.hidden,
body .video-wall .carousel-track > .card.adjacent {
  opacity: 1 !important;
  visibility: visible !important;
  filter: none !important;
}

body .video-wall .card-image-wrapper {
  aspect-ratio: 16 / 9 !important;
  background: #050505 !important;
}

body .video-wall .card-image-wrapper img {
  object-fit: cover !important;
}

body .video-wall .card-body {
  min-height: 86px !important;
  padding: 18px 22px !important;
  background:
    linear-gradient(90deg, rgba(10, 8, 4, .98), rgba(30, 24, 12, .94)) !important;
}

body .video-wall .carousel-controls {
  gap: 18px !important;
  margin-top: clamp(24px, 3vw, 36px) !important;
}

body .video-wall .carousel-controls button,
body .video-wall .carousel-btn {
  width: 58px !important;
  height: 58px !important;
  border: 1px solid rgba(255, 205, 31, .55) !important;
  box-shadow:
    0 12px 22px rgba(0, 0, 0, .20),
    inset 0 1px 0 rgba(255, 255, 255, .22) !important;
}

body .video-wall #js-prev.carousel-btn,
body .video-wall .carousel-controls button:first-child {
  background: rgba(255, 248, 226, .96) !important;
  color: #15110a !important;
}

body .video-wall #js-next.carousel-btn,
body .video-wall .carousel-controls button:last-child {
  background: #050505 !important;
  color: #f7c915 !important;
}

body .video-wall .carousel-controls button:disabled,
body .video-wall .carousel-btn:disabled {
  opacity: .48 !important;
}

@media (max-width: 760px) {
  body .video-wall .carousel-wrapper,
  body .video-wall .video-gallery {
    width: min(calc(100% - 28px), 390px) !important;
  }

  body .video-wall .carousel-track {
    gap: 16px !important;
  }

  body .video-wall .carousel-track > .card,
  body .video-wall .carousel-track > .card:nth-child(1),
  body .video-wall .carousel-track > .card:nth-child(5) {
    flex-basis: min(330px, calc(100vw - 56px)) !important;
    width: min(330px, calc(100vw - 56px)) !important;
    min-width: min(330px, calc(100vw - 56px)) !important;
  }

  body .video-wall .carousel-controls button,
  body .video-wall .carousel-btn {
    width: 54px !important;
    height: 54px !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 rebuild: one shared structure for home, products, and characters. */
body footer {
  --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;
  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::after {
  display: block !important;
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: 50% !important;
  width: calc(100vw + 120px) !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, .34),
    0 4px 7px rgba(0, 0, 0, .26) !important;
  pointer-events: none !important;
}

body footer > .container,
body footer .footer-column {
  position: relative !important;
  z-index: 3 !important;
}

body footer .footer-column {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: clamp(14px, 1.7vw, 22px) !important;
}

body footer .lo-footer-brand {
  width: 100% !important;
  position: relative !important;
  z-index: 5 !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: calc(var(--lo-footer-ribbon-height) + clamp(58px, 5vw, 82px)) !important;
  transform: translateX(-50%) !important;
  z-index: 6 !important;
  pointer-events: none !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 {
  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: 8 !important;
}

body footer .lo-footer-brand__wordmark {
  position: relative !important;
  z-index: 5 !important;
  display: block !important;
  width: clamp(180px, 18vw, 292px) !important;
  max-width: min(72vw, 292px) !important;
  margin: 0 auto !important;
}

body footer .footer-column > .join-the-order,
body footer .footer-column > .join-the-order[hidden] {
  display: block !important;
  order: 3 !important;
  width: min(100% - 28px, 980px) !important;
  margin: 0 auto clamp(6px, 1vw, 12px) !important;
  padding: 0 !important;
  background: transparent !important;
}

body footer .footer-column > .join-the-order .container {
  width: 100% !important;
  max-width: none !important;
  padding: 0 !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;
  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 {
  top: 0 !important;
  width: calc(100vw + 160px) !important;
  height: var(--lo-footer-ribbon-height) !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__crestline {
  height: 0 !important;
}

/* Home typography + footer canonical pass 2026-07-01.
   Dark pattern sections use gold titles; light yellow sections use black text. */
:root {
  --lo-home-ink: #0b0906;
  --lo-home-gold: #f4c71f;
  --lo-home-cream: #fff7df;
}

body .chapter .section-title h2,
body .characters .section-title h2,
body .shop .section-title h2,
body .shop .section-title h2 span,
body .shop .section-title h3 {
  color: var(--lo-home-gold) !important;
  font-family: var(--font-display, "Salter Roman", Georgia, serif) !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  line-height: .95 !important;
  text-wrap: balance !important;
  text-shadow: 0 8px 18px rgba(0, 0, 0, .28) !important;
}

body .shop .section-title p,
body .shop .section-title p.loadin {
  color: var(--lo-home-cream) !important;
  font-family: var(--font-body, "Minion Variable Concept", Georgia, serif) !important;
  font-size: clamp(1.12rem, 1.6vw, 1.55rem) !important;
  font-weight: 600 !important;
  letter-spacing: 0 !important;
  line-height: 1.18 !important;
  margin-top: clamp(12px, 1.3vw, 20px) !important;
}

body .featured-video,
body .events,
body .instagram-feed,
body .video-wall {
  color: var(--lo-home-ink) !important;
}

body .featured-video .section-title h2,
body .events .section-title h2,
body .events .section-title h2 span,
body .video-wall .section-title h2,
body .instagram-feed__title,
body .founder-title-sub {
  color: var(--lo-home-ink) !important;
  font-family: var(--font-display, "Salter Roman", Georgia, serif) !important;
  font-size: clamp(2.65rem, 4.8vw, 5.1rem) !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  line-height: .96 !important;
  text-transform: none !important;
  text-wrap: balance !important;
}

body .chapter p,
body .characters p,
body .shop .section-title p,
body .featured-video p,
body .events p,
body .instagram-feed p,
body .video-wall p,
body .featured-video .section-title p,
body .events .section-title p {
  font-family: var(--font-body, "Minion Variable Concept", Georgia, serif) !important;
  font-size: clamp(1.02rem, 1.18vw, 1.18rem) !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  line-height: 1.45 !important;
}

body .featured-video strong,
body .featured-video b,
body .events strong,
body .events b,
body .instagram-feed strong,
body .instagram-feed b,
body .video-wall strong,
body .video-wall b {
  font-weight: 600 !important;
}

body .featured-video {
  padding-block: clamp(58px, 7vw, 96px) !important;
}

body .featured-video .container {
  width: min(calc(100% - 36px), 980px) !important;
}

body .featured-video .section-title {
  width: min(100%, 900px) !important;
  margin: 0 auto !important;
  padding: clamp(32px, 4vw, 54px) clamp(18px, 4vw, 56px) !important;
  border-top: 1px solid rgba(12, 9, 4, .16) !important;
  border-bottom: 1px solid rgba(12, 9, 4, .16) !important;
  background:
    linear-gradient(90deg, transparent, rgba(255, 244, 166, .34), transparent) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .26),
    0 18px 42px rgba(73, 55, 0, .08) !important;
  text-align: center !important;
}

body .featured-video .section-title p {
  max-width: 720px !important;
  margin: clamp(20px, 2vw, 30px) auto 0 !important;
  color: var(--lo-home-ink) !important;
  text-align: center !important;
}

body .founder-signature {
  width: clamp(220px, 24vw, 360px) !important;
  max-width: 78vw !important;
  margin: clamp(12px, 1.8vw, 22px) auto clamp(24px, 3vw, 38px) !important;
  filter: drop-shadow(0 8px 8px rgba(74, 55, 0, .32)) !important;
}

body .shop .section-title {
  gap: clamp(8px, 1vw, 14px) !important;
  padding-block: clamp(42px, 5.5vw, 82px) clamp(26px, 4vw, 58px) !important;
}

@media (max-width: 760px) {
  body .featured-video .section-title h2,
  body .events .section-title h2,
  body .events .section-title h2 span,
  body .video-wall .section-title h2,
  body .instagram-feed__title,
  body .founder-title-sub,
  body .chapter .section-title h2,
  body .characters .section-title h2,
  body .shop .section-title h2 {
    font-size: clamp(2.25rem, 10vw, 3.35rem) !important;
    line-height: .98 !important;
  }

  body .featured-video,
  body .events,
  body .instagram-feed,
  body .video-wall {
    padding-block: clamp(42px, 10vw, 66px) !important;
  }

  body .featured-video .section-title {
    padding: 30px 16px !important;
  }
}

/* Canonical footer: ribbon/crest attached to the footer top edge, content flows below it. */
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: var(--lo-home-ink) !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) {
  order: 2 !important;
  max-width: 760px !important;
  margin: 0 auto !important;
  color: var(--lo-home-ink) !important;
  font-family: var(--font-body, Georgia, serif) !important;
  font-size: clamp(1rem, 1.2vw, 1.18rem) !important;
  font-weight: 400 !important;
  line-height: 1.38 !important;
}

body footer .footer-mailing-address {
  order: 3 !important;
  margin: 0 auto !important;
  color: var(--lo-home-ink) !important;
  font-size: clamp(1rem, 1.15vw, 1.14rem) !important;
  font-weight: 700 !important;
  line-height: 1.35 !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 h3 {
  max-width: 780px !important;
  margin: 0 auto clamp(10px, 1.2vw, 16px) !important;
  color: var(--lo-home-ink) !important;
  font-family: var(--font-body, Georgia, serif) !important;
  font-size: clamp(1.02rem, 1.25vw, 1.22rem) !important;
  font-weight: 600 !important;
  line-height: 1.34 !important;
  text-align: center !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 .footer-column > .join-the-order .mailer input,
body footer .footer-column > .join-the-order .mailer button {
  min-height: 42px !important;
  height: 42px !important;
  border-radius: 4px !important;
  font-family: var(--font-body, Georgia, serif) !important;
  font-size: 1rem !important;
  line-height: 1 !important;
}

body footer .footer-column > .join-the-order .mailer input {
  width: 100% !important;
  padding: 0 14px !important;
  border: 1px solid rgba(17, 17, 17, .18) !important;
  background: rgba(255, 255, 255, .94) !important;
  color: var(--lo-home-ink) !important;
}

body footer .footer-column > .join-the-order .mailer button {
  min-width: 150px !important;
  padding: 0 18px !important;
  border: 1px solid rgba(166, 120, 40, .28) !important;
  background: rgba(255, 246, 199, .86) !important;
  color: var(--lo-home-ink) !important;
  font-weight: 700 !important;
  white-space: nowrap !important;
}

body footer .socials {
  order: 5 !important;
  margin-top: clamp(8px, 1vw, 16px) !important;
}

body footer .regular-footer {
  order: 6 !important;
  width: 100% !important;
  margin-top: clamp(18px, 2vw, 32px) !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: clamp(18px, 3vw, 44px) !important;
  color: var(--lo-home-ink) !important;
  font-size: clamp(.92rem, 1vw, 1.04rem) !important;
  font-weight: 600 !important;
  line-height: 1.25 !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;
  }

  body footer .regular-footer {
    flex-wrap: wrap !important;
    gap: 10px 22px !important;
  }
}

/* Final title color lock for the dark collection panel. */
body #collection.shop .section-title h2,
body #collection.shop .section-title h2.loadin {
  color: #f4c71f !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;
  }

  body footer .regular-footer {
    margin-top: 10px !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;
  }
}
