:root {
  --cream: #f3eee6;
  --cream-soft: #fbf7ef;
  --paper: #fffaf1;
  --espresso: #2a1f1a;
  --espresso-soft: #4b3c33;
  --olive: #686f3c;
  --olive-dark: #535936;
  --olive-soft: rgba(104, 111, 60, 0.13);
  --line: rgba(73, 58, 47, 0.16);
  --shadow: rgba(45, 33, 25, 0.13);
  --rose: #d8aea5;
  --font-display: ui-rounded, "Arial Rounded MT Bold", "Trebuchet MS", system-ui, sans-serif;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 50% 8%, rgba(255, 251, 242, 0.9), transparent 32rem),
    linear-gradient(135deg, #f7f1e8 0%, #efe6da 100%);
  color: var(--espresso);
  font-family: var(--font-body);
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

.site-grain {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.32;
  background-image:
    radial-gradient(circle at 12% 18%, rgba(52, 38, 29, 0.07) 0 1px, transparent 1.5px),
    radial-gradient(circle at 82% 28%, rgba(52, 38, 29, 0.05) 0 1px, transparent 1.5px),
    radial-gradient(circle at 36% 78%, rgba(255, 255, 255, 0.6) 0 1px, transparent 1.5px);
  background-size: 38px 38px, 54px 54px, 62px 62px;
}

.site-header {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: minmax(110px, 180px) 1fr auto;
  align-items: start;
  gap: 28px;
  width: min(100% - 56px, 1360px);
  margin: 0 auto;
  padding: 24px 0 4px;
}

.site-logo-link {
  display: inline-flex;
  width: 135px;
  border-radius: 22px;
}

.site-logo {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(22px, 4vw, 66px);
  min-height: 42px;
  padding-top: 9px;
  font-weight: 800;
  color: var(--espresso);
}

.site-nav button,
.site-nav a,
.site-language button,
.site-whatsapp {
  border: 0;
  background: transparent;
  color: inherit;
  font-weight: 800;
  cursor: pointer;
}

.site-nav button,
.site-nav a {
  position: relative;
  padding: 7px 0;
}

.site-nav button::after,
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--olive);
  opacity: 0;
  transform: scaleX(0.45);
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-nav button:hover::after,
.site-nav a:hover::after,
.site-nav button:focus-visible::after,
.site-nav a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.site-header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 21px;
  min-height: 42px;
  padding-top: 8px;
  white-space: nowrap;
}

.site-language {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--espresso);
  font-weight: 900;
}

.site-language button {
  position: relative;
  padding: 5px 0 7px;
  font-size: 0.92rem;
}

.site-language button::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--olive);
  opacity: 0;
  transform: scaleX(0.5);
  transition: opacity 160ms ease, transform 160ms ease;
}

.site-language button.is-active::after,
.site-language button:hover::after,
.site-language button:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.site-language span {
  color: rgba(42, 31, 26, 0.5);
}

.site-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 0;
}

.site-whatsapp img,
.social-links img {
  width: 21px;
  height: 21px;
}

.site-nav button:focus-visible,
.site-nav a:focus-visible,
.site-language button:focus-visible,
.site-whatsapp:focus-visible,
.carousel-arrow:focus-visible,
.product-orbit:focus-visible,
.category-pills button:focus-visible,
.full-menu-link:focus-visible,
.card-cta:focus-visible,
.phone-mockup-link:focus-visible,
.qr-card:focus-visible,
.social-links a:focus-visible {
  outline: 3px solid rgba(104, 111, 60, 0.34);
  outline-offset: 5px;
}

.site-hero {
  position: relative;
  display: grid;
  justify-items: center;
  width: min(100% - 36px, 1448px);
  margin: -16px auto 0;
  padding: 0 0 36px;
}

.hero-carousel {
  position: relative;
  width: 100%;
  height: clamp(330px, 43vw, 520px);
  min-height: 330px;
  overflow: hidden;
}

.carousel-stage {
  position: absolute;
  inset: 0;
}

.product-orbit {
  --slot-x: 0px;
  --slot-scale: 1;
  --slot-opacity: 1;
  --slot-z: 4;
  position: absolute;
  left: 50%;
  top: 54%;
  z-index: var(--slot-z);
  display: grid;
  place-items: end center;
  width: clamp(140px, 15vw, 235px);
  height: clamp(160px, 19vw, 295px);
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  opacity: var(--slot-opacity);
  transform: translate(-50%, -50%) translateX(var(--slot-x)) scale(var(--slot-scale));
  transition:
    transform 620ms cubic-bezier(0.2, 0.8, 0.18, 1),
    opacity 320ms ease,
    filter 320ms ease;
  will-change: transform, opacity;
}

.product-orbit img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  pointer-events: none;
  filter: drop-shadow(0 18px 24px rgba(35, 25, 20, 0.16));
}

.product-orbit[data-position="0"] {
  --slot-x: 0px;
  --slot-scale: 1.45;
  --slot-opacity: 1;
  --slot-z: 9;
  width: clamp(190px, 22vw, 320px);
  height: clamp(210px, 25vw, 360px);
}

.product-orbit[data-position="-1"] {
  --slot-x: clamp(-280px, -21vw, -190px);
  --slot-scale: 1.02;
  --slot-opacity: 0.96;
  --slot-z: 7;
}

.product-orbit[data-position="1"] {
  --slot-x: clamp(190px, 21vw, 280px);
  --slot-scale: 1.02;
  --slot-opacity: 0.96;
  --slot-z: 7;
}

.product-orbit[data-position="-2"] {
  --slot-x: clamp(-510px, -36vw, -300px);
  --slot-scale: 0.78;
  --slot-opacity: 0.92;
  --slot-z: 5;
}

.product-orbit[data-position="2"] {
  --slot-x: clamp(300px, 36vw, 510px);
  --slot-scale: 0.78;
  --slot-opacity: 0.92;
  --slot-z: 5;
}

.product-orbit[data-position="-3"] {
  --slot-x: clamp(-700px, -48vw, -430px);
  --slot-scale: 0.62;
  --slot-opacity: 0.82;
  --slot-z: 3;
}

.product-orbit[data-position="3"] {
  --slot-x: clamp(430px, 48vw, 700px);
  --slot-scale: 0.62;
  --slot-opacity: 0.82;
  --slot-z: 3;
}

.product-orbit.is-hidden {
  pointer-events: none;
  opacity: 0;
}

.product-orbit.is-unavailable img {
  filter: grayscale(0.18) drop-shadow(0 18px 24px rgba(35, 25, 20, 0.12));
}

.carousel-arrow {
  position: absolute;
  top: 58%;
  z-index: 12;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  padding: 0;
  border: 1px solid rgba(73, 58, 47, 0.08);
  border-radius: 50%;
  background: rgba(255, 250, 242, 0.72);
  color: var(--espresso);
  box-shadow: 0 14px 28px rgba(35, 25, 20, 0.11);
  cursor: pointer;
  backdrop-filter: blur(8px);
  transform: translateY(-50%);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.carousel-arrow:hover {
  background: var(--paper);
  box-shadow: 0 18px 32px rgba(35, 25, 20, 0.16);
  transform: translateY(-50%) scale(1.04);
}

.carousel-arrow span {
  font-size: 3rem;
  line-height: 1;
  transform: translateY(-2px);
}

.carousel-arrow-left {
  left: 18px;
}

.carousel-arrow-right {
  right: 18px;
}

.hero-product-copy {
  display: grid;
  justify-items: center;
  width: min(92vw, 560px);
  margin-top: -6px;
  text-align: center;
}

.hero-product-copy h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.1vw, 3rem);
  line-height: 1.03;
  font-weight: 950;
}

.hero-product-copy p {
  margin: 8px 0 0;
  max-width: 430px;
  color: var(--espresso-soft);
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  line-height: 1.45;
}

.hero-category {
  margin: 0 0 8px;
  color: var(--olive);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.hero-product-meta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 13px;
}

.hero-product-meta strong {
  font-size: clamp(1.25rem, 1.8vw, 1.65rem);
  font-weight: 950;
}

.availability-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 13px;
  border-radius: 999px;
  background: rgba(104, 111, 60, 0.13);
  color: var(--olive-dark);
  font-size: 0.85rem;
  font-weight: 900;
}

.availability-pill.is-unavailable {
  background: rgba(216, 174, 165, 0.32);
  color: #704c43;
}

.category-pills {
  display: flex;
  justify-content: center;
  gap: 14px;
  width: min(100%, 760px);
  margin-top: 30px;
  padding: 0 10px 4px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
}

.category-pills::-webkit-scrollbar {
  display: none;
}

.category-pills button {
  flex: 0 0 auto;
  min-width: 118px;
  min-height: 48px;
  padding: 12px 24px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.62);
  color: var(--espresso);
  font-weight: 900;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
  transition: background 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.category-pills button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(35, 25, 20, 0.08);
}

.category-pills button.is-active {
  border-color: transparent;
  background:
    linear-gradient(rgba(104, 111, 60, 0.84), rgba(83, 89, 54, 0.9)),
    url("../assets/textures/mobile-v3/FARO_OLIVE_CARD_TEXTURE.png") center / cover;
  color: #fff9ef;
  box-shadow: 0 14px 24px rgba(83, 89, 54, 0.24);
}

.full-menu-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  color: var(--olive-dark);
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1.1;
  text-decoration: none;
  border-bottom: 1px solid rgba(83, 89, 54, 0.34);
  transition: color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.full-menu-link:hover {
  color: var(--espresso);
  border-bottom-color: currentColor;
  transform: translateY(-1px);
}

.faro-card-section {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(360px, 520px);
  align-items: center;
  gap: clamp(28px, 5vw, 82px);
  width: min(100% - 64px, 1230px);
  min-height: 330px;
  margin: 18px auto 0;
  padding: clamp(34px, 5vw, 58px) clamp(30px, 6vw, 84px);
  border: 1px solid rgba(73, 58, 47, 0.12);
  border-radius: 28px;
  background:
    linear-gradient(130deg, rgba(255, 250, 242, 0.72), rgba(244, 236, 226, 0.66)),
    radial-gradient(circle at 78% 46%, rgba(104, 111, 60, 0.08), transparent 22rem);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.42),
    0 26px 60px rgba(35, 25, 20, 0.07);
}

.faro-card-copy h2 {
  max-width: 560px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 5.8rem);
  line-height: 0.98;
  font-weight: 950;
}

.faro-card-copy p {
  max-width: 480px;
  margin: 24px 0 0;
  color: var(--espresso-soft);
  font-size: clamp(1.1rem, 1.6vw, 1.42rem);
  line-height: 1.45;
}

.card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  margin-top: 34px;
  padding: 15px 34px;
  border-radius: 999px;
  background:
    linear-gradient(rgba(104, 111, 60, 0.88), rgba(83, 89, 54, 0.94)),
    url("../assets/textures/mobile-v3/FARO_OLIVE_CARD_TEXTURE.png") center / cover;
  color: #fff9ef;
  font-size: 1.08rem;
  font-weight: 900;
  box-shadow: 0 16px 26px rgba(83, 89, 54, 0.24);
}

.faro-card-media {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 30px;
  min-height: 300px;
}

.phone-mockup-link {
  display: inline-flex;
  border-radius: 38px;
}

.phone-mockup {
  position: relative;
  width: 175px;
  min-height: 300px;
  padding: 20px 15px 14px;
  border: 6px solid #141312;
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 8%, rgba(255, 255, 255, 0.7), transparent 9rem),
    #f7f1e8;
  box-shadow: 0 20px 32px rgba(35, 25, 20, 0.22);
}

.phone-notch {
  position: absolute;
  top: 7px;
  left: 50%;
  width: 54px;
  height: 15px;
  border-radius: 999px;
  background: #050505;
  transform: translateX(-50%);
}

.phone-status {
  margin-bottom: 13px;
  font-size: 0.55rem;
  font-weight: 900;
}

.phone-screen-logo {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.phone-screen-logo img:first-child {
  width: 62px;
}

.phone-screen-logo img:last-child {
  width: 22px;
}

.phone-greeting {
  margin: 10px 0 9px;
  font-size: 0.62rem;
  font-weight: 800;
}

.phone-card {
  position: relative;
  min-height: 92px;
  padding: 13px 12px;
  border-radius: 13px;
  background:
    linear-gradient(rgba(104, 111, 60, 0.92), rgba(83, 89, 54, 0.92)),
    url("../assets/textures/mobile-v3/FARO_OLIVE_CARD_TEXTURE.png") center / cover;
  color: #fff8ec;
  box-shadow: 0 12px 18px rgba(35, 25, 20, 0.15);
}

.phone-card span,
.phone-card small {
  display: block;
  opacity: 0.8;
  font-size: 0.45rem;
  text-transform: uppercase;
}

.phone-card strong {
  display: block;
  margin-top: 8px;
  font-size: 0.8rem;
}

.phone-card b {
  position: absolute;
  right: 11px;
  bottom: 10px;
  font-size: 0.9rem;
}

.phone-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 31px;
  margin-top: 7px;
  padding: 0 10px;
  border: 1px solid rgba(73, 58, 47, 0.12);
  border-radius: 11px;
  background: rgba(255, 250, 242, 0.74);
  font-size: 0.58rem;
  font-weight: 900;
}

.phone-bottom-nav {
  display: flex;
  justify-content: space-around;
  margin-top: 10px;
  padding-top: 8px;
  border-top: 1px solid rgba(73, 58, 47, 0.14);
  font-size: 0.48rem;
  font-weight: 800;
}

.qr-card {
  display: grid;
  justify-items: center;
  align-content: center;
  width: 190px;
  min-height: 250px;
  padding: 26px 18px 24px;
  border: 1px solid rgba(73, 58, 47, 0.14);
  border-radius: 20px;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.55), transparent 8rem),
    linear-gradient(135deg, rgba(255, 250, 242, 0.9), rgba(239, 230, 218, 0.9));
  box-shadow: 0 18px 32px rgba(35, 25, 20, 0.11);
}

.qr-card-lobita {
  width: 54px;
  height: 40px;
  object-fit: contain;
  margin-bottom: 12px;
}

.qr-card span {
  margin-bottom: 12px;
  font-weight: 850;
  color: var(--espresso-soft);
}

.website-paw-qr {
  position: relative;
  display: block;
  width: 152px;
  aspect-ratio: 1;
  background: transparent;
  overflow: visible;
}

.website-paw-qr img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
}

.website-paw-qr-tile {
  position: absolute;
  top: 71.5%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  padding: 6px;
  border: 1px solid rgba(47, 33, 26, 0.08);
  border-radius: 12px;
  background: #f7f2ea;
  box-shadow:
    0 8px 16px rgba(31, 24, 22, 0.14),
    0 2px 5px rgba(31, 24, 22, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  transform: translate(-50%, -50%);
}

.website-qr-code {
  width: 100%;
  height: 100%;
}

.site-about {
  width: min(100% - 56px, 860px);
  margin: 70px auto 46px;
  text-align: center;
}

.section-kicker {
  margin: 0 0 8px;
  color: var(--olive);
  font-size: 0.8rem;
  font-weight: 950;
  text-transform: uppercase;
}

.site-about h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1;
}

.site-about p:not(.section-kicker) {
  margin: 17px auto 0;
  max-width: 650px;
  color: var(--espresso-soft);
  font-size: 1.16rem;
  line-height: 1.55;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  width: min(100% - 56px, 1230px);
  margin: 0 auto;
  padding: 0 0 44px;
}

.site-footer p {
  margin: 0 auto 0 0;
  color: rgba(42, 31, 26, 0.68);
  font-size: 0.95rem;
  font-weight: 700;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--espresso);
  color: var(--paper);
  box-shadow: 0 12px 24px rgba(35, 25, 20, 0.16);
}

.social-links img {
  filter: invert(1);
}

@media (max-width: 1020px) {
  .site-header {
    grid-template-columns: 118px 1fr;
    gap: 16px;
  }

  .site-nav {
    grid-column: 1 / -1;
    order: 3;
    justify-content: flex-start;
    gap: 24px;
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .site-header-actions {
    align-self: start;
  }

  .faro-card-section {
    grid-template-columns: 1fr;
  }

  .faro-card-media {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .site-header {
    width: min(100% - 28px, 640px);
    grid-template-columns: 96px 1fr;
    padding-top: 18px;
  }

  .site-logo-link {
    width: 95px;
  }

  .site-header-actions {
    flex-wrap: wrap;
    gap: 10px 16px;
  }

  .site-language {
    gap: 8px;
  }

  .site-whatsapp span {
    display: none;
  }

  .site-nav {
    gap: 20px;
    font-size: 0.95rem;
  }

  .site-hero {
    width: min(100% - 18px, 640px);
    margin-top: 8px;
  }

  .hero-carousel {
    height: 360px;
  }

  .product-orbit[data-position="0"] {
    --slot-scale: 1.2;
  }

  .product-orbit[data-position="-1"] {
    --slot-x: -130px;
    --slot-scale: 0.72;
  }

  .product-orbit[data-position="1"] {
    --slot-x: 130px;
    --slot-scale: 0.72;
  }

  .product-orbit[data-position="-2"],
  .product-orbit[data-position="2"],
  .product-orbit[data-position="-3"],
  .product-orbit[data-position="3"] {
    opacity: 0;
    pointer-events: none;
  }

  .carousel-arrow {
    width: 46px;
    height: 46px;
  }

  .carousel-arrow-left {
    left: 2px;
  }

  .carousel-arrow-right {
    right: 2px;
  }

  .category-pills {
    justify-content: flex-start;
    width: 100%;
    padding-inline: 6px;
  }

  .faro-card-section {
    width: min(100% - 24px, 640px);
    padding: 30px 22px;
    border-radius: 24px;
  }

  .faro-card-copy h2 {
    font-size: clamp(2.7rem, 16vw, 4.3rem);
  }

  .faro-card-media {
    flex-direction: column;
    align-items: center;
  }

  .phone-mockup {
    width: min(205px, 70vw);
  }

  .site-about,
  .site-footer {
    width: min(100% - 28px, 640px);
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Controlled website-only revision: QR, Events prototype pass, footer anchor. */
.site-page-menu .hero-carousel {
  height: clamp(235px, 25vw, 322px);
  min-height: 235px;
}

.site-page-menu .product-orbit[data-position="-2"],
.site-page-menu .product-orbit[data-position="2"] {
  pointer-events: auto;
}

.site-page-menu .product-orbit[data-position="3"],
.site-page-menu .product-orbit[data-position="4"],
.site-page-menu .product-orbit.is-hidden {
  pointer-events: none;
}

.site-page-menu .hero-product-copy {
  margin-top: -2px;
}

.site-page-menu .hero-product-copy p {
  margin-top: 5px;
}

.site-page-menu .hero-product-meta,
.site-page-menu .availability-pill {
  display: none;
}

.site-page-menu .category-pills {
  margin-top: 9px;
}

.faro-card-section-compact {
  min-height: 205px;
  margin-top: 0;
}

.faro-card-section-compact .faro-card-media {
  min-height: 212px;
  gap: 20px;
}

.website-phone-asset {
  width: clamp(132px, 12.3vw, 174px);
}

.qr-card-reference {
  width: clamp(188px, 16vw, 240px);
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.qr-card-reference-img {
  filter: drop-shadow(0 24px 31px rgba(35, 25, 20, 0.17));
}

.qr-card-live-title {
  top: 32.2%;
  max-width: 76%;
  padding: 0;
  background: transparent;
  color: #2b211c;
  font-size: clamp(0.86rem, 1.15vw, 1.15rem);
  font-weight: 650;
  line-height: 1.08;
}

.qr-card-reference .website-paw-qr-tile {
  top: 70.6%;
  width: 17.2%;
  padding: 1.9%;
  border-radius: 10px;
  background: #f5eddf;
  box-shadow:
    0 8px 16px rgba(35, 25, 20, 0.16),
    0 2px 6px rgba(35, 25, 20, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.68);
}

.events-page-shell {
  width: min(100% - 64px, 1450px);
  margin: 0 auto 24px;
}

.events-hero {
  grid-template-columns: minmax(280px, 0.78fr) minmax(520px, 1.2fr) minmax(340px, 0.86fr);
  grid-template-rows: auto 1fr;
  gap: 22px clamp(26px, 3vw, 54px);
  align-items: center;
  min-height: calc(100vh - 88px);
}

.event-filters {
  grid-column: 1 / -1;
  grid-row: 1;
  justify-self: center;
  margin-top: 0;
  gap: 9px;
}

.event-filters button {
  min-height: 35px;
  padding: 7px 15px;
  background: rgba(255, 250, 242, 0.78);
  box-shadow: 0 8px 15px rgba(35, 25, 20, 0.045);
}

.event-filters button span {
  min-width: 1.05em;
  text-align: center;
}

.events-copy {
  grid-column: 1;
  grid-row: 2;
  align-self: center;
}

.events-copy h1 {
  max-width: 455px;
  font-size: clamp(2.46rem, 3.95vw, 4.35rem);
}

.events-copy p:not(.section-kicker) {
  max-width: 385px;
  margin-top: 15px;
  font-size: 1.02rem;
  line-height: 1.42;
}

.events-community-note {
  display: grid;
  grid-template-columns: repeat(3, 34px);
  gap: 9px 11px;
  align-items: center;
  margin-top: 52px !important;
}

.events-community-note span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(104, 111, 60, 0.24);
  border-radius: 50%;
  background: rgba(247, 242, 234, 0.62);
  color: var(--olive-dark);
  font-size: 1rem;
  box-shadow: 0 8px 14px rgba(35, 25, 20, 0.045);
}

.events-community-note strong {
  grid-column: 1 / -1;
  color: var(--olive-dark);
  font-family: var(--font-display);
  font-size: 0.96rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  line-height: 1.18;
  text-transform: uppercase;
}

.events-collage {
  grid-column: 2;
  grid-row: 2;
  min-height: 548px;
}

.event-poster {
  width: clamp(166px, 14.5vw, 218px);
  min-height: 252px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 250, 242, 0.6), transparent 5.5rem),
    radial-gradient(circle at 78% 12%, rgba(255, 255, 255, 0.46), transparent 7rem),
    linear-gradient(135deg, color-mix(in srgb, var(--poster-bg, #efe6da) 82%, #fff 18%), color-mix(in srgb, var(--poster-bg-2, #f8f0e4) 88%, #fff 12%)),
    url("../assets/textures/mobile-v3/FARO_OLIVE_CARD_TEXTURE.png") center / cover;
  background-blend-mode: normal, normal, normal, soft-light;
  box-shadow:
    0 22px 40px rgba(35, 25, 20, 0.17),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.event-poster::before {
  inset: 11px;
  border-color: rgba(73, 58, 47, 0.14);
}

.event-poster-media {
  position: relative;
  z-index: 1;
  width: min(100%, 152px);
  aspect-ratio: 1.55;
  margin: 18px 0 6px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 28% 32%, rgba(255, 250, 242, 0.44), transparent 4.4rem),
    linear-gradient(135deg, rgba(42, 31, 26, 0.13), rgba(255, 250, 242, 0.18));
  box-shadow: inset 0 0 0 1px rgba(73, 58, 47, 0.1);
  overflow: hidden;
}

.event-poster-media::after {
  content: "";
  position: absolute;
  inset: 18% 12%;
  border: 2px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  border-radius: 999px 999px 0 0;
  opacity: 0.16;
  transform: rotate(-8deg);
}

.event-poster:nth-child(1) .event-poster-media {
  background:
    radial-gradient(circle at 35% 35%, rgba(83, 89, 54, 0.22), transparent 4.3rem),
    linear-gradient(135deg, rgba(35, 25, 20, 0.22), rgba(255, 250, 242, 0.2));
}

.event-poster:nth-child(4) .event-poster-media {
  background:
    radial-gradient(circle at 52% 34%, rgba(255, 250, 242, 0.34), transparent 4.2rem),
    linear-gradient(135deg, rgba(151, 91, 50, 0.32), rgba(255, 250, 242, 0.17));
}

.event-poster:nth-child(1) {
  left: 0%;
  top: 25%;
  --poster-rotate: -7deg;
}

.event-poster:nth-child(2) {
  left: 37%;
  top: 0%;
  --poster-bg: #66703d;
  --poster-bg-2: #4f5833;
  --poster-rotate: 2deg;
}

.event-poster:nth-child(3) {
  left: 66%;
  top: 17%;
  --poster-rotate: 7deg;
}

.event-poster:nth-child(4) {
  left: 46%;
  top: 55%;
  --poster-rotate: 3deg;
}

.event-poster:nth-child(5) {
  left: 17%;
  top: 58%;
  --poster-bg: #29241f;
  --poster-bg-2: #514339;
  --poster-rotate: -5deg;
  color: #fff8ec;
}

.events-panel {
  grid-column: 3;
  grid-row: 2;
  align-self: center;
  max-width: 390px;
  padding: 24px;
  border-radius: 24px;
  background:
    linear-gradient(rgba(255, 250, 242, 0.76), rgba(255, 250, 242, 0.68)),
    url("../assets/textures/mobile-v3/FARO_OLIVE_CARD_TEXTURE.png") center / cover;
  background-blend-mode: normal, soft-light;
  box-shadow: 0 18px 38px rgba(35, 25, 20, 0.1);
}

.events-panel h2 {
  font-size: 1.62rem;
}

.events-panel-heading > p:not(.section-kicker) {
  max-width: 260px;
  margin-top: 8px;
}

.events-list {
  gap: 11px;
  margin-top: 15px;
}

.event-row {
  position: relative;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 12px;
  min-height: 72px;
  padding: 10px 78px 10px 10px;
  border-radius: 16px;
  background: rgba(255, 252, 246, 0.74);
}

.event-date {
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 54px;
  padding: 5px;
  border: 1px solid rgba(73, 58, 47, 0.1);
  background: rgba(255, 250, 242, 0.82);
  color: var(--espresso);
  font-size: 0.66rem;
  line-height: 0.98;
  text-transform: uppercase;
}

.event-date strong {
  font-size: 1.25rem;
  line-height: 1;
}

.event-date small {
  font-size: 0.66rem;
  font-weight: 950;
}

.event-row:first-child .event-date {
  border-color: transparent;
  background:
    linear-gradient(rgba(104, 111, 60, 0.92), rgba(83, 89, 54, 0.94)),
    url("../assets/textures/mobile-v3/FARO_OLIVE_CARD_TEXTURE.png") center / cover;
  color: #fff9ef;
}

.event-row h3 {
  font-size: 0.92rem;
}

.event-row p {
  margin: 3px 0 0;
  padding-right: 0;
  font-size: 0.73rem;
}

.event-rsvp {
  position: absolute;
  right: 12px;
  top: 50%;
  min-height: 31px;
  padding: 7px 13px;
  border: 1px solid rgba(73, 58, 47, 0.12);
  background: rgba(255, 250, 242, 0.76);
  color: var(--espresso);
  font-size: 0.74rem;
  transform: translateY(-50%);
}

.event-rsvp::before {
  content: "◌";
  color: var(--olive-dark);
  font-size: 0.82rem;
}

.events-all-button {
  justify-content: flex-start;
  margin-top: 14px;
  border: 0;
  background: transparent;
  color: var(--olive-dark);
  box-shadow: none;
}

.site-page-events .lobita-helper {
  right: max(26px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  width: 174px;
}

.site-page-events .lobita-character,
.site-page-events .lobita-character:hover {
  width: 126px;
  height: 188px;
}

.site-page-contact {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}

.site-page-contact .editorial-page {
  flex: 1 0 auto;
}

.site-page-contact .website-footer-dark {
  width: 100%;
  margin: auto 0 0;
  box-sizing: border-box;
}

.lobita-character,
.lobita-character:hover {
  animation: lobitaBlackBreath 3.9s ease-in-out infinite;
}

@keyframes lobitaBlackBreath {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg) scale(1); }
  34% { transform: translate3d(0, -7px, 0) rotate(-0.9deg) scale(1.018); }
  62% { transform: translate3d(0, -3px, 0) rotate(0.55deg) scale(1.008); }
}

@keyframes lobitaBlackHowl {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg) scale(1); }
  30% { transform: translate3d(0, -13px, 0) rotate(-5deg) scale(1.035); }
  64% { transform: translate3d(0, -4px, 0) rotate(3.5deg) scale(1.012); }
}

@media (max-width: 1120px) {
  .events-community-note {
    margin-top: 28px !important;
  }

  .events-collage {
    min-height: 500px;
  }
}

@media (max-width: 720px) {
  .site-page-menu .hero-carousel {
    height: 288px;
  }

  .qr-card-reference {
    width: min(174px, 48vw);
  }

  .events-community-note {
    grid-template-columns: repeat(3, 30px);
  }

  .events-community-note span {
    width: 30px;
    height: 30px;
  }

  .event-row {
    padding-right: 10px;
  }

  .event-rsvp {
    position: static;
    justify-self: start;
    margin-top: 8px;
    transform: none;
  }

  .site-page-events .lobita-helper {
    width: 132px;
  }
}

/* Controlled fix pass 02: final desktop website refinement. */
.site-page .site-header {
  padding-top: 14px;
}

.site-page-menu .site-hero {
  margin-top: -12px;
  padding-bottom: 8px;
}

.site-page-menu .hero-carousel {
  height: clamp(224px, 24vw, 315px);
  min-height: 224px;
}

.site-page-menu .product-orbit {
  top: 55%;
  width: clamp(98px, 10vw, 158px);
  height: clamp(118px, 12.4vw, 196px);
}

.site-page-menu .product-orbit[data-position="0"] {
  --slot-scale: 1.08;
  width: clamp(158px, 15.2vw, 230px);
  height: clamp(178px, 17.4vw, 260px);
}

.site-page-menu .product-orbit[data-position="-1"] {
  --slot-x: clamp(-205px, -17vw, -138px);
  --slot-scale: 0.88;
}

.site-page-menu .product-orbit[data-position="1"] {
  --slot-x: clamp(138px, 17vw, 205px);
  --slot-scale: 0.88;
}

.site-page-menu .product-orbit[data-position="-2"] {
  --slot-x: clamp(-380px, -29vw, -238px);
}

.site-page-menu .product-orbit[data-position="2"] {
  --slot-x: clamp(238px, 29vw, 380px);
}

.site-page-menu .product-orbit img {
  width: 88%;
  height: 88%;
  object-position: center center;
}

.site-page-menu .product-orbit[data-product-category="coffee"] img,
.site-page-menu .product-orbit[data-product-category="iced-drinks"] img,
.site-page-menu .product-orbit[data-product-category="drinks"] img {
  width: 78%;
  height: 86%;
}

.site-page-menu .hero-product-copy {
  width: min(94vw, 780px);
  margin-top: -12px;
}

.site-page-menu .hero-product-copy h1 {
  max-width: 760px;
  overflow: hidden;
  font-size: clamp(1.45rem, 1.95vw, 2.05rem);
  line-height: 1.04;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-page-menu .hero-product-copy p {
  max-width: 560px;
  margin-top: 5px;
  font-size: clamp(0.86rem, 0.96vw, 1rem);
  line-height: 1.34;
}

.site-page-menu .hero-product-meta {
  margin-top: 7px;
}

.site-page-menu .hero-product-meta strong {
  font-size: clamp(1.02rem, 1.28vw, 1.28rem);
}

.site-page-menu .availability-pill {
  min-height: 25px;
  padding: 4px 10px;
  font-size: 0.73rem;
}

.site-page-menu .category-pills {
  gap: 9px;
  width: min(100%, 620px);
  margin-top: 11px;
}

.site-page-menu .category-pills button {
  min-width: auto;
  min-height: 34px;
  padding: 7px 17px;
  border-width: 1px;
  font-size: 0.83rem;
  font-weight: 850;
  box-shadow: none;
}

.faro-card-section-compact {
  grid-template-columns: minmax(300px, 1fr) minmax(270px, 380px);
  min-height: 172px;
  width: min(100% - 112px, 1040px);
  padding: 16px clamp(24px, 4vw, 48px);
}

.faro-card-section-compact .faro-card-copy h2 {
  max-width: 410px;
  font-size: clamp(2rem, 3.1vw, 3.65rem);
}

.faro-card-section-compact .faro-card-copy p {
  max-width: 370px;
  margin-top: 9px;
  font-size: clamp(0.86rem, 1.02vw, 1.02rem);
}

.faro-card-section-compact .card-cta {
  min-height: 39px;
  margin-top: 13px;
  padding: 9px 22px;
  font-size: 0.9rem;
}

.faro-card-section-compact .faro-card-media {
  min-height: 176px;
  gap: 16px;
}

.faro-card-section-compact .phone-mockup {
  width: 146px;
  min-height: 246px;
  padding: 18px 12px 10px;
  border-width: 5px;
  border-radius: 30px;
}

.faro-card-section-compact .phone-card {
  min-height: 82px;
  border-radius: 13px;
}

.faro-card-section-compact .qr-card {
  width: 148px;
  min-height: 176px;
  padding: 14px 11px 12px;
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.5), transparent 6rem),
    linear-gradient(145deg, rgba(247, 242, 234, 0.92), rgba(232, 221, 203, 0.84)),
    url("../assets/textures/mobile-v3/FARO_OLIVE_CARD_TEXTURE.png") center / cover;
}

.faro-card-section-compact .website-paw-qr {
  width: 118px;
}

.faro-card-section-compact .website-paw-qr-tile {
  width: 40px;
  height: 40px;
  padding: 5px;
}

.site-footer-compact {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto auto;
  gap: 18px;
  align-items: center;
  width: min(100% - 96px, 1040px);
  margin-top: 9px;
  padding: 0 0 14px;
}

.site-footer-compact p {
  margin: 0;
  font-size: 0.82rem;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  justify-content: center;
}

.footer-legal-links a,
.website-footer-dark nav a {
  font-size: 0.76rem;
  font-weight: 750;
  opacity: 0.82;
}

.site-footer-compact .social-links {
  gap: 9px;
}

.site-footer-compact .social-links a,
.social-links-footer a {
  width: 32px;
  height: 32px;
  box-shadow: 0 8px 15px rgba(35, 25, 20, 0.08);
}

.site-footer-compact .social-links img,
.social-links-footer img {
  width: 17px;
  height: 17px;
}

.events-hero {
  grid-template-columns: minmax(280px, 0.82fr) minmax(380px, 1.16fr) minmax(280px, 0.74fr);
  grid-template-rows: auto auto;
  gap: clamp(18px, 2.35vw, 32px);
}

.events-copy {
  display: grid;
  justify-items: start;
  grid-column: 1;
  grid-row: 1;
}

.events-copy h1 {
  font-size: clamp(2.55rem, 4.2vw, 4.6rem);
}

.event-filters {
  grid-column: 1 / -1;
  grid-row: 2;
  align-self: start;
  justify-self: center;
  justify-content: center;
  gap: 8px;
  width: min(100%, 620px);
  margin: -6px auto 0;
}

.events-collage {
  grid-column: 2;
  grid-row: 1 / span 2;
}

.events-panel {
  grid-column: 3;
  grid-row: 1 / span 2;
}

.event-filters button {
  min-height: 32px;
  padding: 7px 13px;
  font-size: 0.78rem;
}

.events-panel {
  padding: 18px;
  border-radius: 23px;
}

.events-panel h2 {
  font-size: 1.48rem;
}

.events-list {
  gap: 9px;
  margin-top: 13px;
}

.event-row {
  grid-template-columns: 54px 1fr;
  gap: 10px;
  padding: 10px;
  border-radius: 15px;
}

.event-date {
  min-height: 48px;
  border-radius: 13px;
  font-size: 0.72rem;
}

.event-row h3 {
  font-size: 0.9rem;
}

.event-row p {
  margin: 4px 0 7px;
  font-size: 0.77rem;
}

.event-rsvp {
  min-height: 29px;
  padding: 6px 12px;
  font-size: 0.76rem;
}

.events-all-button {
  min-height: 35px;
  margin-top: 12px;
  font-size: 0.78rem;
}

.event-poster {
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 250, 242, 0.58), transparent 5rem),
    radial-gradient(circle at 78% 12%, rgba(255, 255, 255, 0.42), transparent 6rem),
    linear-gradient(135deg, color-mix(in srgb, var(--poster-bg, #efe6da) 88%, #fff 12%), var(--poster-bg-2, #f8f0e4)),
    url("../assets/textures/mobile-v3/FARO_OLIVE_CARD_TEXTURE.png") center / cover;
  background-blend-mode: normal, normal, normal, soft-light;
}

.site-page-contact .editorial-page {
  width: min(100% - 64px, 1120px);
  margin: 18px auto 16px;
}

.site-page-contact .editorial-hero h1 {
  font-size: clamp(2.2rem, 3.8vw, 4rem);
}

.site-page-contact .editorial-hero p:not(.section-kicker) {
  max-width: 600px;
  margin-top: 10px;
  font-size: 1rem;
  line-height: 1.36;
}

.site-page-contact .contact-grid {
  gap: 12px;
  margin-top: 22px;
}

.site-page-contact .contact-card {
  min-height: 158px;
  padding: 17px;
  border-radius: 18px;
}

.site-page-contact .contact-card h2 {
  margin: 15px 0 7px;
  font-size: 1.24rem;
}

.site-page-contact .contact-card p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.34;
}

.site-page-contact .contact-card a {
  margin-top: 8px;
  font-size: 0.86rem;
}

.website-footer-dark {
  grid-template-columns: minmax(145px, 0.7fr) minmax(280px, 2fr) auto;
  gap: 18px;
  margin-top: 24px;
  padding: 22px clamp(22px, 5vw, 58px);
}

.website-footer-dark .footer-logo-wordmark {
  width: 92px;
  max-height: 45px;
  filter: brightness(0) invert(1) sepia(0.1) saturate(0.8);
}

.website-footer-dark p {
  font-size: 0.78rem;
}

.website-footer-dark nav {
  gap: 9px 16px;
}

.legal-shell {
  margin-top: 28px;
}

.legal-tabs {
  margin-bottom: 24px;
}

.legal-article h1 {
  font-size: clamp(2rem, 3vw, 3.1rem);
}

.legal-note {
  margin: 16px 0 20px;
}

.lobita-helper {
  right: max(28px, env(safe-area-inset-right));
  bottom: max(112px, env(safe-area-inset-bottom));
  width: 164px;
}

.lobita-character,
.lobita-character:hover {
  width: 128px;
  height: 136px;
  animation: lobitaBreath 3.4s ease-in-out infinite;
}

.lobita-character::before,
.lobita-character::after {
  content: none;
}

.lobita-mascot-img {
  display: block;
  width: 128px;
  height: 136px;
  object-fit: contain;
  filter: drop-shadow(0 16px 18px rgba(35, 25, 20, 0.16));
  pointer-events: none;
}

.lobita-helper.is-howling .lobita-mascot-img {
  animation: lobitaHowl 680ms ease;
}

.lobita-whatsapp-dot {
  right: 4px;
  bottom: 8px;
  width: 31px;
  height: 31px;
}

.lobita-bubble {
  max-width: 164px;
  font-size: 0.78rem;
}

@keyframes lobitaHowl {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  35% { transform: translateY(-8px) rotate(-4deg); }
  68% { transform: translateY(-3px) rotate(3deg); }
}

@media (max-width: 900px) {
  .events-hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .events-copy,
  .event-filters,
  .events-collage,
  .events-panel {
    grid-column: 1;
    grid-row: auto;
  }

  .event-filters {
    margin-top: 12px;
  }

  .site-footer-compact,
  .website-footer-dark {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .lobita-helper {
    right: 14px;
    bottom: 76px;
  }
}

@media (max-width: 720px) {
  .site-page-menu .hero-product-copy h1 {
    white-space: normal;
  }

  .site-footer-compact {
    width: min(100% - 24px, 640px);
  }

  .lobita-helper {
    width: 126px;
  }

  .lobita-character,
  .lobita-mascot-img {
    width: 92px;
    height: 98px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
  }
}

/* Website final revision: compact menu, events, contact, legal, and Lobita helper. */
.site-page {
  min-height: 100vh;
}

.site-page .site-header {
  padding-top: 18px;
}

.site-page .site-logo-link {
  width: 122px;
}

.site-page .site-nav {
  gap: clamp(28px, 5vw, 78px);
  font-family: var(--font-display);
  font-size: 1.02rem;
  letter-spacing: 0;
}

.site-nav a.is-active,
.site-nav button.is-active {
  min-height: 34px;
  padding-inline: 18px;
  border-radius: 999px;
  background:
    linear-gradient(rgba(104, 111, 60, 0.9), rgba(83, 89, 54, 0.94)),
    url("../assets/textures/mobile-v3/FARO_OLIVE_CARD_TEXTURE.png") center / cover;
  color: #fff9ef;
}

.site-nav a.is-active::after,
.site-nav button.is-active::after {
  opacity: 0;
}

.menu-onepage {
  display: grid;
  align-content: start;
  min-height: calc(100vh - 92px);
}

.site-page-menu .site-hero {
  width: min(100% - 40px, 1350px);
  margin-top: -4px;
  padding-bottom: 16px;
}

.site-page-menu .hero-carousel {
  height: clamp(250px, 27vw, 350px);
  min-height: 250px;
  overflow: visible;
  touch-action: pan-y;
  cursor: grab;
  user-select: none;
}

.site-page-menu .hero-carousel.is-dragging {
  cursor: grabbing;
}

.site-page-menu .product-orbit {
  top: 54%;
  width: clamp(108px, 11vw, 174px);
  height: clamp(126px, 14vw, 212px);
  transform: translate(-50%, -50%) translateX(calc(var(--slot-x) + var(--drag-x, 0px))) scale(var(--slot-scale));
}

.site-page-menu .product-orbit[data-position="0"] {
  --slot-scale: 1.16;
  width: clamp(170px, 17vw, 255px);
  height: clamp(190px, 19vw, 286px);
}

.site-page-menu .product-orbit[data-position="-1"] {
  --slot-x: clamp(-220px, -19vw, -150px);
  --slot-scale: 0.92;
}

.site-page-menu .product-orbit[data-position="1"] {
  --slot-x: clamp(150px, 19vw, 220px);
  --slot-scale: 0.92;
}

.site-page-menu .product-orbit[data-position="-2"] {
  --slot-x: clamp(-410px, -32vw, -255px);
  --slot-scale: 0.68;
}

.site-page-menu .product-orbit[data-position="2"] {
  --slot-x: clamp(255px, 32vw, 410px);
  --slot-scale: 0.68;
}

.site-page-menu .product-orbit[data-position="-3"] {
  --slot-x: clamp(-560px, -43vw, -350px);
  --slot-scale: 0.52;
  --slot-opacity: 0.7;
}

.site-page-menu .product-orbit[data-position="3"] {
  --slot-x: clamp(350px, 43vw, 560px);
  --slot-scale: 0.52;
  --slot-opacity: 0.7;
}

.site-page-menu .product-orbit img {
  width: 92%;
  height: 92%;
  object-fit: contain;
  object-position: center center;
  -webkit-user-drag: none;
  user-select: none;
}

.site-page-menu .hero-carousel.is-dragging .product-orbit {
  transition: none;
}

.site-page-menu .product-orbit[data-product-category="coffee"] img,
.site-page-menu .product-orbit[data-product-category="iced-drinks"] img,
.site-page-menu .product-orbit[data-product-category="drinks"] img {
  width: 84%;
  height: 90%;
}

.site-page-menu .hero-product-copy {
  margin-top: -10px;
}

.site-page-menu .hero-product-copy h1 {
  font-size: clamp(1.72rem, 2.22vw, 2.32rem);
}

.site-page-menu .hero-product-copy p {
  margin-top: 6px;
  font-size: clamp(0.94rem, 1.08vw, 1.08rem);
}

.site-page-menu .hero-product-meta {
  margin-top: 9px;
}

.site-page-menu .category-pills {
  margin-top: 14px;
}

.faro-card-section-compact {
  grid-template-columns: minmax(280px, 1fr) minmax(300px, 430px);
  min-height: 198px;
  width: min(100% - 92px, 1120px);
  margin-top: 0;
  padding: 19px clamp(26px, 4.6vw, 56px);
  border-radius: 23px;
}

.faro-card-section-compact .faro-card-copy h2 {
  max-width: 470px;
  font-size: clamp(2.25rem, 3.6vw, 4.25rem);
}

.faro-card-section-compact .faro-card-copy p {
  max-width: 430px;
  margin-top: 14px;
  font-size: clamp(1rem, 1.25vw, 1.24rem);
}

.faro-card-section-compact .card-cta {
  min-height: 48px;
  margin-top: 20px;
  padding: 12px 28px;
}

.faro-card-section-compact .faro-card-media {
  min-height: 202px;
  gap: 20px;
}

.faro-card-section-compact .phone-mockup {
  width: 136px;
  min-height: 235px;
  padding: 17px 12px 10px;
  border-width: 5px;
  border-radius: 27px;
}

.faro-card-section-compact .qr-card {
  width: 166px;
  min-height: 196px;
  padding: 17px 13px 14px;
}

.faro-card-section-compact .website-paw-qr {
  width: 132px;
}

.website-paw-qr {
  position: relative;
  display: grid;
  place-items: center;
  filter: none;
}

.website-paw-qr img {
  display: block;
  width: 100%;
  height: auto;
  mix-blend-mode: multiply;
}

.website-paw-qr-tile {
  position: absolute;
  left: 50%;
  top: 71%;
  width: 44px;
  height: 44px;
  padding: 5px;
  border-radius: 12px;
  background: #f4ede2;
  box-shadow:
    0 9px 18px rgba(35, 25, 20, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.68);
  transform: translate(-50%, -50%);
}

.qr-card {
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.42), transparent 7rem),
    linear-gradient(135deg, rgba(255, 250, 242, 0.82), rgba(239, 230, 218, 0.78));
}

.site-footer-compact {
  padding-bottom: 18px;
}

.events-page-shell {
  width: min(100% - 56px, 1360px);
  margin: 6px auto 36px;
}

.events-hero {
  display: grid;
  grid-template-columns: minmax(285px, 0.82fr) minmax(380px, 1.16fr) minmax(305px, 0.82fr);
  gap: clamp(20px, 2.6vw, 38px);
  align-items: center;
  min-height: calc(100vh - 102px);
}

.events-copy h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.72rem, 4.72vw, 5.15rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.events-copy p:not(.section-kicker) {
  max-width: 460px;
  margin: 20px 0 0;
  color: var(--espresso-soft);
  font-size: 1.18rem;
  line-height: 1.45;
}

.event-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.event-filters button,
.events-all-button,
.event-rsvp {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.72);
  color: var(--espresso);
  font-weight: 900;
  cursor: pointer;
}

.event-filters button {
  min-height: 39px;
  padding: 9px 17px;
}

.event-filters button.is-active,
.events-all-button:hover,
.event-rsvp {
  border-color: transparent;
  background:
    linear-gradient(rgba(104, 111, 60, 0.9), rgba(83, 89, 54, 0.94)),
    url("../assets/textures/mobile-v3/FARO_OLIVE_CARD_TEXTURE.png") center / cover;
  color: #fff9ef;
}

.events-collage {
  position: relative;
  min-height: 530px;
}

.event-poster {
  position: absolute;
  display: grid;
  align-content: space-between;
  overflow: hidden;
  width: clamp(178px, 15.8vw, 222px);
  min-height: 258px;
  padding: 19px;
  border: 1px solid rgba(73, 58, 47, 0.14);
  border-radius: 25px;
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 250, 242, 0.56), transparent 5.4rem),
    radial-gradient(circle at 78% 12%, rgba(255, 255, 255, 0.58), transparent 7rem),
    linear-gradient(135deg, var(--poster-bg, #efe6da), var(--poster-bg-2, #f8f0e4));
  box-shadow:
    0 24px 44px rgba(35, 25, 20, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.44);
  transform: rotate(var(--poster-rotate, -4deg));
  transition: transform 260ms ease, opacity 200ms ease;
}

.event-poster::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px dashed rgba(73, 58, 47, 0.18);
  border-radius: 19px;
  pointer-events: none;
}

.event-poster::after {
  content: "FARO";
  position: absolute;
  right: 16px;
  bottom: 14px;
  color: rgba(42, 31, 26, 0.08);
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 950;
  letter-spacing: 0;
}

.event-poster:hover {
  transform: translateY(-7px) rotate(var(--poster-rotate, -4deg));
}

.event-poster:nth-child(1) {
  left: 6%;
  top: 5%;
  --poster-bg: #f7efe4;
  --poster-bg-2: #fff7ec;
  --poster-rotate: -7deg;
}

.event-poster:nth-child(2) {
  left: 40%;
  top: 0;
  --poster-bg: #69713f;
  --poster-bg-2: #596031;
  --poster-rotate: 5deg;
  color: #fff9ef;
}

.event-poster:nth-child(3) {
  left: 23%;
  top: 36%;
  --poster-bg: #d8aea5;
  --poster-bg-2: #f0ccc2;
  --poster-rotate: 4deg;
}

.event-poster:nth-child(4) {
  left: 58%;
  top: 32%;
  --poster-bg: #e3c36d;
  --poster-bg-2: #f2db92;
  --poster-rotate: -5deg;
}

.event-poster:nth-child(5) {
  left: 4%;
  top: 57%;
  --poster-bg: #efe7dc;
  --poster-bg-2: #fff5e8;
  --poster-rotate: 7deg;
}

.event-poster-mark {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: start;
}

.event-poster img {
  width: 48px;
  height: 38px;
  object-fit: contain;
  opacity: 0.85;
}

.event-poster-tag,
.event-poster time {
  font-weight: 950;
  text-transform: uppercase;
}

.event-poster-tag {
  display: inline-flex;
  max-width: 118px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.48);
  font-size: 0.7rem;
  line-height: 1.05;
}

.event-poster-doodle {
  position: absolute;
  right: 23px;
  top: 68px;
  width: 54px;
  height: 54px;
  border: 3px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  border-radius: 0 32px 0 0;
  opacity: 0.18;
  transform: rotate(-10deg);
}

.event-poster h3 {
  position: relative;
  margin: 30px 0 10px;
  font-family: var(--font-display);
  font-size: clamp(1.62rem, 2.25vw, 2.12rem);
  line-height: 0.98;
}

.event-poster p {
  margin: 0;
  line-height: 1.35;
  font-weight: 750;
}

.event-poster small {
  display: inline-flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
  font-weight: 950;
  text-transform: uppercase;
}

.events-panel {
  align-self: center;
  padding: 24px;
  border: 1px solid rgba(73, 58, 47, 0.13);
  border-radius: 28px;
  background: rgba(255, 250, 242, 0.67);
  box-shadow: 0 20px 45px rgba(35, 25, 20, 0.09);
  backdrop-filter: blur(8px);
}

.events-panel h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.92rem;
  line-height: 1;
}

.events-list {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.event-row {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 14px;
  padding: 13px;
  border: 1px solid rgba(73, 58, 47, 0.12);
  border-radius: 18px;
  background: rgba(255, 252, 246, 0.72);
}

.event-date {
  display: grid;
  place-items: center;
  align-self: start;
  min-height: 62px;
  border-radius: 16px;
  background: var(--olive-soft);
  color: var(--olive-dark);
  font-weight: 950;
  text-align: center;
}

.event-row h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.2;
}

.event-row p {
  margin: 5px 0 10px;
  color: var(--espresso-soft);
  font-size: 0.9rem;
  line-height: 1.35;
}

.event-rsvp {
  display: inline-flex;
  min-height: 34px;
  padding: 8px 15px;
  align-items: center;
  justify-content: center;
  font-size: 0.86rem;
}

.events-all-button {
  width: 100%;
  min-height: 42px;
  margin-top: 17px;
}

.editorial-page {
  width: min(100% - 56px, 1120px);
  margin: 52px auto 74px;
}

.editorial-hero {
  max-width: 780px;
}

.editorial-hero h1,
.legal-article h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.65rem, 4.6vw, 4.95rem);
  line-height: 1;
}

.legal-article h1 {
  font-size: clamp(2.15rem, 3.5vw, 3.55rem);
}

.editorial-hero p:not(.section-kicker) {
  margin: 18px 0 0;
  max-width: 650px;
  color: var(--espresso-soft);
  font-size: 1.24rem;
  line-height: 1.52;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.contact-card {
  min-height: 230px;
  padding: 24px;
  border: 1px solid rgba(73, 58, 47, 0.13);
  border-radius: 22px;
  background:
    radial-gradient(circle at 92% 12%, rgba(104, 111, 60, 0.08), transparent 5.5rem),
    rgba(255, 250, 242, 0.72);
  box-shadow: 0 18px 34px rgba(35, 25, 20, 0.07);
}

.contact-card span {
  color: var(--olive);
  font-weight: 950;
}

.contact-card h2 {
  margin: 28px 0 10px;
  font-family: var(--font-display);
  font-size: 1.55rem;
}

.contact-card p {
  color: var(--espresso-soft);
  line-height: 1.48;
}

.contact-card a {
  display: inline-flex;
  margin-top: 12px;
  font-weight: 950;
  color: var(--olive-dark);
}

.website-footer-dark {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) minmax(280px, 2fr) auto;
  gap: 26px;
  align-items: center;
  margin-top: 70px;
  padding: 36px clamp(24px, 6vw, 76px);
  background: #1e1714;
  color: #fff7eb;
}

.website-footer-dark img {
  width: 108px;
  max-height: 82px;
  object-fit: contain;
  filter: brightness(1.3);
}

.website-footer-dark p {
  margin: 8px 0 0;
  color: rgba(255, 247, 235, 0.72);
}

.website-footer-dark nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  justify-content: center;
}

.website-footer-dark a {
  color: #fff7eb;
  font-weight: 850;
}

.social-links-footer a {
  background: #fff7eb;
}

.social-links-footer img {
  filter: none;
}

.legal-shell {
  width: min(100% - 56px, 980px);
  margin: 42px auto 70px;
}

.legal-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 42px;
}

.legal-tabs a {
  min-height: 42px;
  padding: 11px 17px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.72);
  font-weight: 900;
}

.legal-tabs a.is-active {
  border-color: transparent;
  background: var(--olive);
  color: #fff9ef;
}

.legal-article {
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid rgba(73, 58, 47, 0.12);
  border-radius: 30px;
  background: rgba(255, 250, 242, 0.68);
}

.legal-note {
  display: inline-flex;
  margin: 22px 0 26px;
  padding: 12px 16px;
  border-radius: 16px;
  background: rgba(216, 174, 165, 0.24);
  color: #6d4c42;
  font-weight: 850;
}

.legal-article h2 {
  margin: 32px 0 10px;
  font-family: var(--font-display);
  font-size: 1.65rem;
}

.legal-article p {
  color: var(--espresso-soft);
  font-size: 1.04rem;
  line-height: 1.62;
}

.lobita-helper {
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 60;
  display: grid;
  justify-items: end;
  gap: 8px;
  width: 188px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--espresso);
  cursor: pointer;
}

.lobita-bubble {
  max-width: 188px;
  padding: 11px 13px;
  border: 1px solid rgba(73, 58, 47, 0.14);
  border-radius: 17px 17px 4px 17px;
  background: rgba(255, 250, 242, 0.92);
  box-shadow: 0 12px 24px rgba(35, 25, 20, 0.1);
  font-size: 0.84rem;
  font-weight: 900;
  line-height: 1.2;
  transform-origin: right bottom;
  transition: transform 180ms ease, opacity 180ms ease;
}

.lobita-helper.is-howling .lobita-bubble {
  transform: scale(1.04) rotate(-1deg);
}

.lobita-character {
  position: relative;
  display: block;
  width: 134px;
  height: 144px;
  filter: drop-shadow(0 18px 18px rgba(35, 25, 20, 0.15));
  animation: lobitaBreath 3.4s ease-in-out infinite;
}

.lobita-character::before,
.lobita-character::after {
  content: "";
  position: absolute;
  background: #fff7eb;
  border: 2px solid #2f2723;
  opacity: 0.95;
}

.lobita-character::before {
  left: 23px;
  top: 58px;
  width: 28px;
  height: 35px;
  border-radius: 60% 45% 50% 60%;
  transform: rotate(-28deg);
}

.lobita-character::after {
  right: 25px;
  top: 59px;
  width: 27px;
  height: 35px;
  border-radius: 45% 60% 60% 50%;
  transform: rotate(25deg);
}

.lobita-body {
  position: absolute;
  left: 38px;
  top: 54px;
  width: 68px;
  height: 78px;
  border: 3px solid #2f2723;
  border-radius: 42px 42px 34px 34px;
  background:
    radial-gradient(circle at 50% 34%, #fffdf6 0 36%, transparent 37%),
    #fff4e5;
  box-shadow:
    -7px 5px 0 -3px #fff7eb,
    7px 5px 0 -3px #fff7eb;
}

.lobita-body::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 19px;
  width: 44px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.64);
}

.lobita-head {
  position: absolute;
  left: 25px;
  top: 8px;
  width: 84px;
  height: 72px;
  border: 3px solid #2f2723;
  border-radius: 46px 44px 37px 37px;
  background:
    radial-gradient(circle at 38% 53%, rgba(255, 255, 255, 0.9) 0 20%, transparent 21%),
    radial-gradient(circle at 62% 53%, rgba(255, 255, 255, 0.9) 0 20%, transparent 21%),
    #fff4e5;
}

.lobita-head::before {
  content: "";
  position: absolute;
  left: 34px;
  top: 35px;
  width: 33px;
  height: 20px;
  border: 3px solid #2f2723;
  border-left: 0;
  border-radius: 0 18px 18px 0;
  background: #fffaf1;
  transform: rotate(3deg);
}

.lobita-head::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 39px;
  width: 8px;
  height: 6px;
  border-radius: 50%;
  background: #2f2723;
}

.lobita-ear {
  position: absolute;
  top: -23px;
  width: 27px;
  height: 39px;
  border: 3px solid #2f2723;
  border-bottom: 0;
  background: #fff4e5;
  animation: lobitaEar 4s ease-in-out infinite;
}

.lobita-ear-left {
  left: 8px;
  border-radius: 18px 20px 0 0;
  transform: rotate(-17deg);
}

.lobita-ear-right {
  right: 8px;
  border-radius: 20px 18px 0 0;
  transform: rotate(17deg);
}

.lobita-face::before,
.lobita-face::after {
  content: "";
  position: absolute;
  top: 31px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #2f2723;
}

.lobita-face::before {
  left: 29px;
}

.lobita-face::after {
  right: 33px;
}

.lobita-smile {
  position: absolute;
  left: 49px;
  top: 51px;
  width: 12px;
  height: 6px;
  border-bottom: 3px solid #2f2723;
  border-radius: 0 0 18px 18px;
}

.lobita-scarf {
  position: absolute;
  left: 38px;
  top: 76px;
  width: 68px;
  height: 20px;
  border-radius: 999px;
  background:
    linear-gradient(rgba(104, 111, 60, 0.9), rgba(83, 89, 54, 0.94)),
    url("../assets/textures/mobile-v3/FARO_OLIVE_CARD_TEXTURE.png") center / cover;
  transform: rotate(-4deg);
}

.lobita-tail {
  position: absolute;
  right: 4px;
  top: 78px;
  width: 46px;
  height: 21px;
  border: 3px solid #2f2723;
  border-left: 0;
  border-bottom: 0;
  border-radius: 0 22px 0 0;
  background: #fff4e5;
  transform-origin: left center;
  animation: lobitaTail 2.8s ease-in-out infinite;
}

.lobita-paw {
  position: absolute;
  bottom: 3px;
  width: 27px;
  height: 20px;
  border: 3px solid #2f2723;
  border-radius: 50%;
  background: #fff8ec;
}

.lobita-paw-left {
  left: 41px;
}

.lobita-paw-right {
  left: 76px;
}

.lobita-whatsapp-dot {
  position: absolute;
  right: 0;
  bottom: 4px;
  display: grid;
  place-items: center;
  width: 33px;
  height: 33px;
  border-radius: 50%;
  background: #fff8ec;
  box-shadow: 0 8px 18px rgba(35, 25, 20, 0.16);
}

.lobita-whatsapp-dot img {
  width: 19px;
  height: 19px;
}

@keyframes lobitaBreath {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-3px) scale(1.015); }
}

@keyframes lobitaTail {
  0%, 100% { transform: rotate(-7deg); }
  50% { transform: rotate(12deg) translateY(-1px); }
}

@keyframes lobitaEar {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 1px; }
}

@media (max-width: 1100px) {
  .events-hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .events-collage {
    min-height: 520px;
  }

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

  .website-footer-dark {
    grid-template-columns: 1fr;
    justify-items: start;
  }
}

@media (max-width: 720px) {
  .site-page .site-header {
    width: min(100% - 24px, 640px);
  }

  .site-page .site-nav {
    gap: 10px;
  }

  .site-nav a.is-active,
  .site-nav button.is-active {
    padding-inline: 14px;
  }

  .site-page-menu .hero-carousel {
    height: 310px;
    overflow: hidden;
  }

  .faro-card-section-compact {
    width: min(100% - 24px, 640px);
  }

  .events-page-shell,
  .editorial-page,
  .legal-shell {
    width: min(100% - 24px, 640px);
  }

  .events-copy h1,
  .editorial-hero h1,
  .legal-article h1 {
    font-size: clamp(2.8rem, 16vw, 4.6rem);
  }

  .events-collage {
    display: flex;
    min-height: 0;
    gap: 16px;
    overflow-x: auto;
    padding: 8px 4px 22px;
  }

  .event-poster,
  .event-poster:nth-child(n) {
    position: relative;
    left: auto;
    top: auto;
    flex: 0 0 240px;
    transform: rotate(var(--poster-rotate, -3deg));
  }

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

  .lobita-helper {
    right: 12px;
    bottom: 12px;
    width: 136px;
  }

  .lobita-bubble {
    max-width: 136px;
    font-size: 0.74rem;
  }

  .lobita-character {
    width: 82px;
    height: 92px;
    transform: scale(0.82);
    transform-origin: right bottom;
  }
}

/* Official website Lobita helper. Keep this last so older placeholder styles cannot leak through. */
.lobita-helper {
  right: max(34px, env(safe-area-inset-right));
  bottom: max(108px, env(safe-area-inset-bottom));
  width: 194px;
  justify-items: end;
  gap: 7px;
  background: transparent;
}

.lobita-bubble {
  max-width: 194px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(5px) scale(0.96);
}

.lobita-helper:hover .lobita-bubble,
.lobita-helper:focus-visible .lobita-bubble,
.lobita-helper.is-howling .lobita-bubble {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.lobita-character,
.lobita-character:hover {
  width: 150px;
  height: 208px;
  overflow: visible;
  background: transparent;
  filter: none;
  transform-origin: center bottom;
  animation: lobitaOfficialBreath 4.4s ease-in-out infinite;
}

.lobita-character::before,
.lobita-character::after {
  content: none;
}

.lobita-mascot-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  background: transparent;
  filter: drop-shadow(0 18px 20px rgba(35, 25, 20, 0.16));
  pointer-events: none;
}

.lobita-helper.is-howling .lobita-mascot-img {
  animation: lobitaOfficialHowl 760ms ease;
}

.lobita-whatsapp-dot {
  right: 5px;
  bottom: 20px;
  width: 34px;
  height: 34px;
  box-shadow: 0 10px 18px rgba(65, 73, 45, 0.22);
}

@keyframes lobitaOfficialBreath {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg) scale(1); }
  48% { transform: translate3d(0, -5px, 0) rotate(-0.7deg) scale(1.012); }
  72% { transform: translate3d(0, -2px, 0) rotate(0.35deg) scale(1.004); }
}

@keyframes lobitaOfficialHowl {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg) scale(1); }
  32% { transform: translate3d(0, -10px, 0) rotate(-4deg) scale(1.025); }
  64% { transform: translate3d(0, -4px, 0) rotate(3deg) scale(1.012); }
}

@media (max-width: 920px) {
  .lobita-helper {
    right: 22px;
    bottom: 92px;
    width: 158px;
  }

  .lobita-bubble {
    max-width: 158px;
    font-size: 0.74rem;
  }

  .lobita-character,
  .lobita-character:hover {
    width: 118px;
    height: 164px;
  }

  .lobita-whatsapp-dot {
    right: 3px;
    bottom: 15px;
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 620px) {
  .lobita-helper {
    right: 14px;
    bottom: 78px;
    width: 138px;
  }

  .lobita-bubble {
    max-width: 138px;
    padding: 9px 10px;
    font-size: 0.7rem;
  }

  .lobita-character,
  .lobita-character:hover {
    width: 100px;
    height: 139px;
  }

  .lobita-whatsapp-dot {
    right: 1px;
    bottom: 12px;
    width: 28px;
    height: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lobita-character,
  .lobita-character:hover,
  .lobita-helper.is-howling .lobita-mascot-img {
    animation: none;
  }
}

/* Urgent controlled website revision: reference assets, compact desktop rhythm. */
.site-page .site-header {
  width: min(100% - 72px, 1500px);
  padding-top: 20px;
}

.site-page .site-logo-link {
  width: 116px;
}

.site-page .site-nav {
  gap: clamp(26px, 4.3vw, 66px);
}

.site-header-actions {
  gap: 19px;
}

.site-page-menu .site-hero {
  width: min(100% - 56px, 1380px);
  margin-top: -8px;
  padding-bottom: 10px;
}

.site-page-menu .hero-carousel {
  height: clamp(235px, 24.5vw, 325px);
  min-height: 235px;
  overflow: visible;
}

.site-page-menu .product-orbit {
  top: 50%;
  width: clamp(100px, 10vw, 158px);
  height: clamp(118px, 12.2vw, 190px);
}

.site-page-menu .product-orbit[data-position="0"] {
  --slot-scale: 1.08;
  width: clamp(158px, 15.5vw, 228px);
  height: clamp(184px, 17vw, 258px);
}

.site-page-menu .product-orbit[data-product-category="coffee"] img,
.site-page-menu .product-orbit[data-product-category="iced-drinks"] img,
.site-page-menu .product-orbit[data-product-category="drinks"] img {
  width: 78%;
  height: 82%;
  object-position: center center;
}

.site-page-menu .hero-product-copy {
  margin-top: 8px;
}

.site-page-menu .hero-product-copy h1 {
  max-width: min(92vw, 760px);
  font-size: clamp(1.42rem, 1.85vw, 2rem);
  white-space: nowrap;
}

.site-page-menu .hero-product-copy p {
  max-width: 520px;
  font-size: clamp(0.82rem, 0.94vw, 0.96rem);
}

.site-page-menu .hero-product-meta {
  display: none;
}

.site-page-menu .hero-product-meta strong {
  display: none;
}

.site-page-menu .availability-pill {
  display: none;
}

.site-page-menu .category-pills {
  gap: 8px;
  width: min(100%, 570px);
  margin-top: 12px;
}

.site-page-menu .category-pills button {
  min-height: 31px;
  padding: 6px 14px;
  font-size: 0.78rem;
  font-weight: 850;
}

.faro-card-section-compact {
  grid-template-columns: minmax(265px, 0.9fr) minmax(320px, 0.76fr);
  width: min(100% - 108px, 1040px);
  min-height: 182px;
  margin-top: 4px;
  padding: 16px clamp(24px, 4.2vw, 48px);
  border-radius: 22px;
}

.faro-card-section-compact .faro-card-copy h2 {
  max-width: 430px;
  font-size: clamp(2rem, 3.1vw, 3.65rem);
}

.faro-card-section-compact .faro-card-copy p {
  max-width: 390px;
  margin-top: 10px;
  font-size: clamp(0.9rem, 1.06vw, 1.06rem);
}

.faro-card-section-compact .card-cta {
  min-height: 42px;
  margin-top: 15px;
  padding: 10px 24px;
  font-size: 0.9rem;
}

.faro-card-section-compact .faro-card-media {
  min-height: 190px;
  gap: 18px;
  align-items: center;
}

.website-phone-asset {
  display: block;
  width: clamp(128px, 12.5vw, 176px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 30px rgba(35, 25, 20, 0.16));
  pointer-events: none;
}

.qr-card-reference {
  position: relative;
  display: block;
  width: clamp(170px, 15.8vw, 240px);
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.qr-card-reference-img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 32px rgba(35, 25, 20, 0.18));
  pointer-events: none;
}

.qr-card-live-title {
  position: absolute;
  left: 50%;
  top: 24.4%;
  z-index: 2;
  max-width: 70%;
  margin: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--espresso);
  font-size: clamp(0.84rem, 1.06vw, 1.14rem);
  font-weight: 650;
  line-height: 1.05;
  text-align: center;
  transform: translate(-50%, -50%);
}

.qr-card-reference .website-paw-qr {
  position: absolute;
  inset: 0;
  width: auto;
  aspect-ratio: auto;
  pointer-events: none;
}

.qr-card-reference .website-paw-qr-tile {
  top: 74.53%;
  left: 44.98%;
  width: 21.98%;
  height: auto;
  aspect-ratio: 1;
  padding: 2.1%;
  border-color: rgba(47, 33, 26, 0.08);
  border-radius: 8.8%;
  background: #f5eee3;
  box-shadow:
    0 9px 18px rgba(35, 25, 20, 0.16),
    0 2px 6px rgba(35, 25, 20, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.site-footer-compact {
  width: min(100% - 108px, 1040px);
  margin-top: 5px;
  padding-bottom: 16px;
}

.site-footer-compact .social-links a,
.social-links-footer a {
  width: 30px;
  height: 30px;
}

.site-footer-compact .social-links img,
.social-links-footer img {
  width: 15px;
  height: 15px;
}

.events-page-shell {
  width: min(100% - 64px, 1480px);
  margin: 4px auto 26px;
}

.events-hero {
  grid-template-columns: minmax(260px, 0.82fr) minmax(470px, 1.22fr) minmax(300px, 0.82fr);
  grid-template-rows: auto 1fr;
  align-items: center;
  gap: 18px clamp(22px, 2.8vw, 44px);
  min-height: calc(100vh - 94px);
}

.events-copy {
  grid-column: 1;
  grid-row: 2;
}

.event-filters {
  grid-column: 1 / -1;
  grid-row: 1;
  justify-self: center;
  align-self: start;
  width: auto;
  max-width: min(100%, 720px);
  margin: 4px auto 0;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.event-filters button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 33px;
  padding: 7px 14px;
  font-size: 0.8rem;
  box-shadow: 0 7px 14px rgba(35, 25, 20, 0.04);
}

.events-copy h1 {
  max-width: 440px;
  font-size: clamp(2.42rem, 4vw, 4.28rem);
}

.events-copy p:not(.section-kicker) {
  max-width: 390px;
  margin-top: 16px;
  font-size: 1rem;
  line-height: 1.42;
}

.events-primary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: 22px;
  padding: 10px 23px;
  border-radius: 999px;
  background:
    linear-gradient(rgba(104, 111, 60, 0.9), rgba(83, 89, 54, 0.94)),
    url("../assets/textures/mobile-v3/FARO_OLIVE_CARD_TEXTURE.png") center / cover;
  color: #fff9ef;
  font-weight: 900;
  box-shadow: 0 14px 22px rgba(83, 89, 54, 0.22);
}

.events-community-note {
  margin-top: 54px !important;
  color: var(--olive-dark) !important;
  font-family: var(--font-display);
  font-size: 1rem !important;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.events-collage {
  grid-column: 2;
  grid-row: 2;
  min-height: 500px;
}

.events-panel {
  grid-column: 3;
  grid-row: 2;
  max-width: 390px;
  padding: 22px;
  border-radius: 24px;
}

.events-panel-heading > p:not(.section-kicker) {
  margin: 8px 0 0;
  color: var(--espresso-soft);
  font-size: 0.9rem;
  line-height: 1.35;
}

.events-panel h2 {
  font-size: 1.62rem;
}

.events-list {
  gap: 10px;
  margin-top: 15px;
}

.event-row {
  grid-template-columns: 58px 1fr;
  gap: 11px;
  padding: 10px;
  border-radius: 16px;
}

.event-date {
  min-height: 54px;
  padding: 6px;
  font-size: 0.7rem;
  line-height: 1.02;
}

.event-row h3 {
  font-size: 0.9rem;
}

.event-row p {
  margin: 4px 0 7px;
  font-size: 0.76rem;
}

.event-rsvp {
  min-height: 27px;
  padding: 6px 12px;
  font-size: 0.74rem;
}

.events-all-button {
  min-height: 34px;
  margin-top: 12px;
  font-size: 0.78rem;
}

.event-poster {
  width: clamp(158px, 14vw, 205px);
  min-height: 236px;
  padding: 17px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 250, 242, 0.5), transparent 5rem),
    radial-gradient(circle at 78% 12%, rgba(255, 255, 255, 0.44), transparent 6rem),
    linear-gradient(135deg, color-mix(in srgb, var(--poster-bg, #efe6da) 88%, #fff 12%), var(--poster-bg-2, #f8f0e4)),
    url("../assets/textures/mobile-v3/FARO_OLIVE_CARD_TEXTURE.png") center / cover;
  background-blend-mode: normal, normal, normal, soft-light;
}

.event-poster h3 {
  margin-top: 26px;
  font-size: clamp(1.36rem, 1.85vw, 1.86rem);
}

.event-poster p {
  font-size: 0.86rem;
}

.event-poster:nth-child(1) {
  left: 2%;
  top: 21%;
}

.event-poster:nth-child(2) {
  left: 37%;
  top: 2%;
}

.event-poster:nth-child(3) {
  left: 55%;
  top: 17%;
}

.event-poster:nth-child(4) {
  left: 49%;
  top: 52%;
}

.event-poster:nth-child(5) {
  left: 17%;
  top: 48%;
}

.event-empty {
  display: grid;
  place-items: center;
  min-height: 220px;
  padding: 28px;
  border: 1px dashed rgba(73, 58, 47, 0.18);
  border-radius: 24px;
  background: rgba(255, 250, 242, 0.55);
  color: var(--espresso-soft);
  font-weight: 850;
  text-align: center;
}

.event-empty-panel {
  min-height: 110px;
  border-radius: 16px;
  font-size: 0.85rem;
}

.site-page-contact .editorial-page {
  width: min(100% - 72px, 1080px);
  margin: 18px auto 24px;
}

.site-page-contact .editorial-hero h1 {
  font-size: clamp(2.05rem, 3.4vw, 3.55rem);
}

.site-page-contact .editorial-hero p:not(.section-kicker) {
  max-width: 560px;
  font-size: 0.96rem;
}

.site-page-contact .contact-grid {
  gap: 12px;
  margin-top: 20px;
}

.site-page-contact .contact-card {
  min-height: 142px;
  padding: 16px;
  border-radius: 17px;
}

.site-page-contact .contact-card h2 {
  margin: 12px 0 6px;
  font-size: 1.16rem;
}

.site-page-contact .contact-card p {
  font-size: 0.86rem;
}

.website-footer-dark {
  margin-top: 18px;
  padding: 18px clamp(24px, 5vw, 56px);
}

.website-footer-dark .footer-logo-wordmark,
.website-footer-dark img.footer-logo-wordmark {
  width: 88px;
  max-height: 42px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.website-footer-dark nav {
  gap: 8px 15px;
}

.website-footer-dark nav a {
  font-size: 0.74rem;
}

.legal-shell {
  max-width: 940px;
  margin-top: 28px;
}

.legal-note {
  font-size: 0.92rem;
}

.lobita-helper {
  right: max(36px, env(safe-area-inset-right));
  bottom: max(86px, env(safe-area-inset-bottom));
  width: 178px;
}

.lobita-character,
.lobita-character:hover {
  width: 132px;
  height: 196px;
  animation: lobitaBlackBreath 4.6s ease-in-out infinite;
}

.lobita-mascot-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 18px 18px rgba(20, 15, 12, 0.18));
}

.lobita-whatsapp-dot {
  right: 2px;
  bottom: 16px;
  width: 32px;
  height: 32px;
}

.lobita-helper.is-howling .lobita-mascot-img {
  animation: lobitaBlackHowl 760ms ease;
}

.site-page-events .lobita-helper {
  right: max(38px, env(safe-area-inset-right));
  bottom: max(24px, env(safe-area-inset-bottom));
  width: 156px;
}

.site-page-events .lobita-character,
.site-page-events .lobita-character:hover {
  width: 112px;
  height: 166px;
}

.site-page-contact .lobita-helper {
  bottom: max(92px, env(safe-area-inset-bottom));
}

@keyframes lobitaBlackBreath {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  46% { transform: translate3d(0, -4px, 0) rotate(-0.5deg) scale(1.01); }
  72% { transform: translate3d(0, -2px, 0) rotate(0.25deg) scale(1.004); }
}

@keyframes lobitaBlackHowl {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg) scale(1); }
  34% { transform: translate3d(0, -9px, 0) rotate(-4deg) scale(1.025); }
  66% { transform: translate3d(0, -3px, 0) rotate(3deg) scale(1.01); }
}

@media (max-width: 1120px) {
  .events-hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    min-height: 0;
  }

  .events-copy,
  .event-filters,
  .events-collage,
  .events-panel {
    grid-column: 1;
    grid-row: auto;
  }

  .events-panel {
    max-width: none;
  }
}

@media (max-width: 720px) {
  .site-page .site-header {
    width: min(100% - 24px, 640px);
  }

  .site-page-menu .hero-carousel {
    height: 305px;
    overflow: hidden;
  }

  .site-page-menu .hero-product-copy h1 {
    white-space: normal;
  }

  .faro-card-section-compact {
    width: min(100% - 24px, 640px);
  }

  .faro-card-section-compact .faro-card-media {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .website-phone-asset {
    width: min(145px, 40vw);
  }

  .qr-card-reference {
    width: min(174px, 46vw);
  }

  .lobita-helper,
  .site-page-events .lobita-helper,
  .site-page-contact .lobita-helper {
    right: 14px;
    bottom: 76px;
    width: 128px;
  }

  .lobita-character,
  .lobita-character:hover,
  .site-page-events .lobita-character,
  .site-page-events .lobita-character:hover {
    width: 90px;
    height: 134px;
  }
}

/* Strict visual review pass: website-only layout fixes. */
.site-header-actions {
  align-items: center;
  gap: 12px;
}

.site-social-links {
  gap: 7px;
  margin-inline: 1px 2px;
}

.site-social-links a {
  width: 30px;
  height: 30px;
  background: rgba(255, 250, 242, 0.72);
  border: 1px solid rgba(73, 58, 47, 0.12);
  box-shadow: 0 8px 18px rgba(35, 25, 20, 0.08);
}

.site-social-links img {
  width: 14px;
  height: 14px;
  filter: none;
  opacity: 0.9;
}

.site-page-menu .site-header {
  padding-top: 14px;
  padding-bottom: 0;
}

.site-page-menu .menu-onepage {
  display: grid;
  align-content: start;
  gap: 5px;
  min-height: calc(100vh - 72px);
  padding-bottom: 8px;
}

.site-page-menu .site-hero {
  margin-top: -12px;
  padding-bottom: 0;
}

.site-page-menu .hero-carousel {
  height: clamp(215px, 22vw, 292px);
  min-height: 215px;
}

.site-page-menu .product-orbit {
  width: clamp(96px, 9.4vw, 146px);
  height: clamp(114px, 11.5vw, 178px);
}

.site-page-menu .product-orbit[data-position="0"] {
  width: clamp(150px, 14.3vw, 212px);
  height: clamp(174px, 15.8vw, 238px);
}

.site-page-menu .product-orbit[data-position="-2"],
.site-page-menu .product-orbit[data-position="2"] {
  pointer-events: auto;
  cursor: pointer;
}

.site-page-menu .hero-product-copy {
  margin-top: 3px;
}

.site-page-menu .hero-product-copy h1 {
  max-width: min(92vw, 800px);
  font-size: clamp(1.34rem, 1.72vw, 1.88rem);
}

.site-page-menu .hero-product-copy p {
  max-width: 500px;
  margin-top: 4px;
  font-size: clamp(0.78rem, 0.88vw, 0.92rem);
  line-height: 1.32;
}

.site-page-menu .category-pills {
  margin-top: 8px;
}

.site-page-menu .category-pills button {
  min-height: 29px;
  padding: 5px 12px;
  font-size: 0.74rem;
}

.faro-card-section-compact {
  grid-template-columns: minmax(260px, 0.9fr) minmax(330px, 0.78fr);
  width: min(100% - 116px, 1040px);
  min-height: 168px;
  margin-top: 0;
  padding: 12px clamp(22px, 3.8vw, 44px);
}

.faro-card-section-compact .faro-card-copy h2 {
  max-width: 415px;
  font-size: clamp(1.82rem, 2.9vw, 3.28rem);
}

.faro-card-section-compact .faro-card-copy p {
  max-width: 385px;
  margin-top: 7px;
  font-size: clamp(0.78rem, 0.92vw, 0.96rem);
  line-height: 1.36;
}

.faro-card-section-compact .card-cta {
  min-height: 38px;
  margin-top: 11px;
  padding: 9px 21px;
  font-size: 0.82rem;
}

.faro-card-section-compact .faro-card-media {
  min-height: 174px;
  gap: 18px;
}

.website-phone-asset {
  width: clamp(120px, 11vw, 156px);
  filter:
    drop-shadow(0 24px 26px rgba(35, 25, 20, 0.2))
    drop-shadow(0 8px 10px rgba(35, 25, 20, 0.08));
}

.qr-card-reference {
  width: clamp(176px, 14.5vw, 212px);
}

.qr-card-reference-img {
  filter:
    drop-shadow(0 25px 28px rgba(35, 25, 20, 0.2))
    drop-shadow(0 8px 10px rgba(35, 25, 20, 0.08));
}

.qr-card-lobita-mark {
  position: absolute;
  left: 50%;
  top: 17.9%;
  z-index: 2;
  width: 10.5%;
  height: auto;
  object-fit: contain;
  opacity: 0.92;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.qr-card-live-title {
  top: 24.4%;
  max-width: 82%;
  color: #2b211c;
  font-size: clamp(0.48rem, 0.58vw, 0.66rem);
  font-weight: 650;
  line-height: 1;
  white-space: nowrap;
}

.qr-card-reference .website-paw-qr-tile {
  top: 74.53%;
  left: 44.98%;
  width: 21.98%;
  padding: 2.1%;
  border-radius: 8.8%;
}

.site-footer-compact {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px 14px;
  width: min(100% - 116px, 1040px);
  margin: 1px auto 0;
  padding: 0;
}

.site-footer-compact p {
  flex: 0 0 100%;
  margin: 0;
  color: rgba(42, 31, 26, 0.58);
  font-size: 0.7rem;
  line-height: 1.2;
  text-align: center;
}

.footer-legal-links {
  gap: 8px 12px;
}

.footer-legal-links a {
  font-size: 0.68rem;
  font-weight: 650;
  opacity: 0.72;
}

.event-filters button span {
  min-width: 1.05em;
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1;
  transform: rotate(-7deg);
}

.events-hero {
  grid-template-columns: minmax(250px, 0.8fr) minmax(530px, 1.28fr) minmax(330px, 0.84fr);
  gap: 16px clamp(24px, 3vw, 52px);
}

.events-copy h1 {
  max-width: 430px;
  font-size: clamp(2.3rem, 3.66vw, 3.96rem);
}

.events-collage {
  min-height: 525px;
}

.event-poster {
  width: clamp(174px, 13.6vw, 214px);
  min-height: clamp(220px, 17.4vw, 258px);
  padding: 17px;
  border-radius: 23px;
  box-shadow:
    0 23px 40px rgba(35, 25, 20, 0.15),
    0 8px 16px rgba(35, 25, 20, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.48);
}

.event-poster:nth-child(1) {
  left: 0;
  top: 22%;
  --poster-rotate: -8deg;
}

.event-poster:nth-child(2) {
  left: 39%;
  top: 0;
  --poster-rotate: 2.5deg;
}

.event-poster:nth-child(3) {
  left: 68%;
  top: 14%;
  --poster-rotate: 7deg;
}

.event-poster:nth-child(4) {
  left: 52%;
  top: 53%;
  --poster-rotate: -4deg;
}

.event-poster:nth-child(5) {
  left: 16%;
  top: 51%;
  --poster-rotate: 5deg;
}

.event-poster h3 {
  margin-top: 22px;
  font-size: clamp(1.32rem, 1.68vw, 1.78rem);
}

.events-panel {
  max-width: 386px;
  padding: 20px;
  border-radius: 22px;
}

.events-panel h2 {
  font-size: 1.46rem;
}

.events-list {
  gap: 8px;
  margin-top: 13px;
}

.event-row {
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 10px;
  padding: 9px;
  border-radius: 15px;
}

.event-date {
  min-height: 50px;
  border-radius: 13px;
}

.event-row > div:not(.event-date) {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  column-gap: 10px;
  align-items: center;
}

.event-row h3,
.event-row p {
  grid-column: 1;
}

.event-row h3 {
  font-size: 0.86rem;
}

.event-row p {
  margin: 3px 0 0;
  font-size: 0.72rem;
}

.event-rsvp {
  grid-column: 2;
  grid-row: 1 / 3;
  min-height: 26px;
  padding: 6px 10px;
  font-size: 0.7rem;
}

.site-page-events .lobita-helper {
  right: max(24px, env(safe-area-inset-right));
  bottom: max(16px, env(safe-area-inset-bottom));
  width: 198px;
}

.site-page-events .lobita-character,
.site-page-events .lobita-character:hover {
  width: 148px;
  height: 218px;
}

.site-page-contact {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

.site-page-contact .editorial-page {
  flex: 1;
  margin-top: 14px;
  margin-bottom: 14px;
}

.site-page-contact .editorial-hero h1 {
  font-size: clamp(1.9rem, 3vw, 3.12rem);
}

.website-footer-dark {
  margin-top: auto;
  padding: 16px clamp(24px, 5vw, 56px);
}

.legal-shell {
  width: min(100% - 64px, 860px);
  margin: 22px auto 34px;
}

.legal-tabs {
  justify-content: center;
  gap: 7px;
  margin-bottom: 18px;
}

.legal-tabs a {
  min-height: 31px;
  padding: 7px 12px;
  font-size: 0.72rem;
  font-weight: 720;
}

.legal-article {
  padding: clamp(20px, 3vw, 32px);
  border-radius: 22px;
}

.legal-article .section-kicker {
  margin-bottom: 5px;
  font-size: 0.66rem;
}

.legal-article h1 {
  font-size: clamp(1.66rem, 2.5vw, 2.28rem);
  line-height: 1.05;
}

.legal-note {
  margin: 12px 0 16px;
  padding: 8px 11px;
  border-radius: 12px;
  font-size: 0.74rem;
  line-height: 1.25;
}

.legal-article h2 {
  margin: 18px 0 6px;
  font-size: 1.02rem;
  line-height: 1.15;
}

.legal-article p {
  margin: 0 0 8px;
  font-size: 0.86rem;
  line-height: 1.48;
}

.lobita-character,
.lobita-character:hover {
  animation: lobitaBlackBreath 3.8s ease-in-out infinite;
}

@keyframes lobitaBlackBreath {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg) scale(1); }
  38% { transform: translate3d(0, -7px, 0) rotate(-0.85deg) scale(1.018); }
  68% { transform: translate3d(0, -2px, 0) rotate(0.45deg) scale(1.006); }
}

@media (max-width: 1120px) {
  .site-social-links {
    display: none;
  }

  .site-page-events .lobita-helper {
    width: 150px;
  }

  .site-page-events .lobita-character,
  .site-page-events .lobita-character:hover {
    width: 108px;
    height: 160px;
  }
}

@media (max-width: 720px) {
  .site-page-menu .menu-onepage {
    min-height: 0;
  }

  .site-footer-compact {
    width: min(100% - 24px, 640px);
    padding-bottom: 10px;
  }
}

/* Final controlled website visual fix pass. Website-only. */
.site-header-actions {
  gap: 11px;
}

.site-social-links {
  order: -1;
  gap: 7px;
  margin-inline: 0 2px;
}

.site-social-links a {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 250, 242, 0.2);
  background:
    linear-gradient(145deg, rgba(68, 47, 37, 0.98), rgba(38, 28, 24, 0.98)),
    url("../assets/textures/mobile-v3/FARO_OLIVE_CARD_TEXTURE.png") center / cover;
  box-shadow:
    0 10px 18px rgba(35, 25, 20, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.site-social-links img {
  width: 14px;
  height: 14px;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

.site-page-menu .hero-carousel {
  height: clamp(238px, 24.4vw, 326px);
  min-height: 232px;
}

.site-page-menu .product-orbit {
  width: clamp(116px, 10.9vw, 168px);
  height: clamp(136px, 13vw, 198px);
}

.site-page-menu .product-orbit[data-position="0"] {
  width: clamp(176px, 16.6vw, 252px);
  height: clamp(202px, 18.6vw, 282px);
}

.site-page-menu .product-orbit[data-position="-1"],
.site-page-menu .product-orbit[data-position="1"] {
  width: clamp(132px, 12vw, 184px);
  height: clamp(152px, 14.2vw, 214px);
}

.site-page-menu .product-orbit[data-position="-2"],
.site-page-menu .product-orbit[data-position="2"] {
  width: clamp(104px, 9.4vw, 146px);
  height: clamp(122px, 11vw, 168px);
  pointer-events: auto;
  cursor: pointer;
}

.site-page-menu .product-orbit img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-page-menu .hero-product-copy {
  margin-top: 0;
}

.site-page-menu .hero-product-copy h1 {
  font-size: clamp(1.28rem, 1.62vw, 1.78rem);
  line-height: 1.05;
}

.site-page-menu .hero-product-copy p {
  margin-top: 4px;
  font-size: clamp(0.76rem, 0.84vw, 0.9rem);
  line-height: 1.32;
}

.site-page-menu .category-pills {
  margin-top: 7px;
  gap: 6px;
}

.site-page-menu .category-pills button {
  min-height: 27px;
  padding: 5px 11px;
  font-size: 0.7rem;
  letter-spacing: 0.01em;
}

.qr-card-reference {
  width: clamp(186px, 16.2vw, 246px);
}

.qr-card-lobita-mark {
  top: 18.2%;
  width: 13.2%;
  opacity: 0.96;
}

.qr-card-live-title {
  top: 25.55%;
  max-width: 76%;
  font-size: clamp(0.48rem, 0.54vw, 0.62rem);
  font-weight: 650;
  white-space: nowrap;
}

.qr-card-reference .website-paw-qr-tile {
  top: 74.6%;
  left: 48.35%;
  width: 22.1%;
}

.event-filter-icon {
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  width: 18px;
  height: 18px;
  min-width: 18px;
  transform: rotate(-5deg);
}

.event-filter-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.86;
}

.event-filters button.is-active .event-filter-icon img {
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.events-community-note {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  margin-top: 42px !important;
}

.events-community-doodle {
  width: 45px;
  height: 45px;
  object-fit: contain;
  transform: rotate(-8deg);
  opacity: 0.82;
}

.events-community-note strong {
  grid-column: auto;
  font-size: 0.9rem;
  letter-spacing: 0.035em;
}

.events-hero {
  grid-template-columns: minmax(250px, 0.78fr) minmax(540px, 1.24fr) minmax(330px, 0.84fr);
  gap: 16px clamp(24px, 2.9vw, 50px);
}

.events-copy h1 {
  max-width: 420px;
  font-size: clamp(2.2rem, 3.5vw, 3.72rem);
}

.events-copy p:not(.section-kicker) {
  max-width: 360px;
  font-size: 0.96rem;
  line-height: 1.4;
}

.events-collage {
  min-height: 512px;
}

.event-poster {
  width: clamp(180px, 13.9vw, 222px);
  min-height: clamp(214px, 16.5vw, 256px);
}

.event-poster:nth-child(1) {
  left: 1%;
  top: 24%;
}

.event-poster:nth-child(2) {
  left: 38%;
  top: 2%;
}

.event-poster:nth-child(3) {
  left: 69%;
  top: 16%;
}

.event-poster:nth-child(4) {
  left: 52%;
  top: 54%;
}

.event-poster:nth-child(5) {
  left: 15%;
  top: 55%;
}

.events-panel {
  max-width: 390px;
  padding: 19px;
}

.event-row {
  padding: 8px 9px;
}

.event-row h3 {
  font-size: 0.84rem;
}

.event-rsvp {
  min-height: 26px;
}

.site-page-events .lobita-helper {
  right: max(22px, env(safe-area-inset-right));
  bottom: max(12px, env(safe-area-inset-bottom));
  width: 214px;
}

.site-page-events .lobita-character,
.site-page-events .lobita-character:hover {
  width: 162px;
  height: 238px;
}

.lobita-character,
.lobita-character:hover {
  animation: lobitaBlackBreath 3.9s ease-in-out infinite;
}

@keyframes lobitaBlackBreath {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg) scale(1); }
  36% { transform: translate3d(0, -8px, 0) rotate(-1deg) scale(1.024); }
  68% { transform: translate3d(0, -2px, 0) rotate(0.55deg) scale(1.008); }
}

.legal-page {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

.legal-page .legal-shell {
  flex: 1 0 auto;
}

.legal-page .website-footer-dark {
  margin-top: auto;
}

@media (max-width: 1120px) {
  .site-social-links {
    display: none;
  }

  .site-page-events .lobita-helper {
    width: 150px;
  }

  .site-page-events .lobita-character,
  .site-page-events .lobita-character:hover {
    width: 108px;
    height: 160px;
  }
}

@media (max-width: 720px) {
  .site-page-menu .hero-carousel {
    height: clamp(218px, 62vw, 286px);
  }

  .site-page-menu .product-orbit[data-position="0"] {
    width: clamp(150px, 47vw, 210px);
    height: clamp(176px, 53vw, 248px);
  }

  .events-community-note {
    margin-top: 26px !important;
  }
}

/* Final micro fix pass: Menu and Events only. */
@media (min-width: 1121px) {
  .site-page-menu .site-nav,
  .site-page-events .site-nav {
    position: absolute;
    left: 50%;
    top: 20px;
    width: max-content;
    transform: translateX(-50%);
  }
}

.site-page-menu .site-social-links,
.site-page-events .site-social-links {
  order: 0;
  margin-inline: 2px 0;
}

.site-page-menu .hero-carousel {
  height: clamp(252px, 26vw, 350px);
  min-height: 246px;
}

.site-page-menu .product-orbit {
  width: clamp(128px, 12vw, 184px);
  height: clamp(150px, 14.2vw, 218px);
}

.site-page-menu .product-orbit[data-position="0"] {
  width: clamp(214px, 19vw, 300px);
  height: clamp(244px, 21.2vw, 334px);
}

.site-page-menu .product-orbit[data-position="-1"],
.site-page-menu .product-orbit[data-position="1"] {
  width: clamp(150px, 13.2vw, 204px);
  height: clamp(172px, 15.2vw, 232px);
}

.site-page-menu .product-orbit[data-position="-2"],
.site-page-menu .product-orbit[data-position="2"] {
  width: clamp(116px, 10.4vw, 160px);
  height: clamp(134px, 12.1vw, 184px);
}

.site-page-menu .hero-product-copy {
  margin-top: -4px;
}

.qr-card-lobita-mark {
  top: 18.1%;
  width: 16.4%;
}

.qr-card-reference .website-paw-qr-tile {
  left: 46.85%;
}

.events-hero {
  grid-template-columns: minmax(245px, 0.76fr) minmax(540px, 1.2fr) minmax(350px, 0.9fr);
  column-gap: clamp(28px, 3.5vw, 64px);
}

.events-collage {
  min-height: 490px;
  transform: translateY(-18px);
}

.event-poster {
  width: clamp(184px, 13.2vw, 214px);
  min-height: 0;
  height: clamp(190px, 13.9vw, 226px);
  padding: 15px;
}

.event-poster h3 {
  margin: 18px 0 8px;
  font-size: clamp(1.12rem, 1.42vw, 1.48rem);
  line-height: 1.02;
}

.event-poster p {
  font-size: 0.78rem;
  line-height: 1.24;
}

.event-poster small {
  margin-top: 10px;
  font-size: 0.66rem;
}

.event-poster-tag {
  max-width: 112px;
  padding: 6px 9px;
  font-size: 0.62rem;
}

.event-poster img {
  width: 40px;
  height: 32px;
}

.event-poster:nth-child(1) {
  left: 0;
  top: 19%;
}

.event-poster:nth-child(2) {
  left: 37%;
  top: 0;
}

.event-poster:nth-child(3) {
  left: 67%;
  top: 13%;
}

.event-poster:nth-child(4) {
  left: 50%;
  top: 51%;
}

.event-poster:nth-child(5) {
  left: 13%;
  top: 52%;
}

.events-panel {
  justify-self: end;
  transform: translate(12px, -18px);
}

.site-page-events .lobita-helper {
  right: max(10px, env(safe-area-inset-right));
  bottom: max(4px, env(safe-area-inset-bottom));
  width: 190px;
}

.site-page-events .lobita-character,
.site-page-events .lobita-character:hover {
  width: 144px;
  height: 212px;
}

@media (max-width: 1120px) {
  .site-page-menu .site-social-links,
  .site-page-events .site-social-links {
    display: none;
  }

  .events-collage,
  .events-panel {
    transform: none;
  }
}

@media (max-width: 720px) {
  .site-page-menu .hero-carousel {
    height: clamp(230px, 65vw, 300px);
  }

  .site-page-menu .product-orbit[data-position="0"] {
    width: clamp(168px, 52vw, 224px);
    height: clamp(194px, 58vw, 258px);
  }
}

/* Final polish fix pass: website-only header, QR, shadow, and event motion. */
@media (min-width: 1121px) {
  .site-page .site-nav {
    position: absolute;
    left: 50%;
    top: 20px;
    width: max-content;
    transform: translateX(-50%);
  }
}

.site-social-links {
  order: 0;
  margin-inline: 2px 0;
}

.phone-mockup-link {
  position: relative;
  display: block;
  filter:
    drop-shadow(18px 30px 26px rgba(35, 25, 20, 0.17))
    drop-shadow(5px 8px 9px rgba(35, 25, 20, 0.08));
}

.website-phone-asset {
  clip-path: inset(0 0 1.55% 0);
  filter: none;
}

.qr-card-reference-img {
  filter:
    drop-shadow(18px 31px 28px rgba(35, 25, 20, 0.18))
    drop-shadow(5px 8px 10px rgba(35, 25, 20, 0.08));
}

.qr-card-reference .website-paw-qr-tile {
  top: 73.9%;
  left: 45.75%;
}

.events-collage .event-poster {
  animation: faroPosterFloat 7.6s ease-in-out infinite;
  animation-delay: var(--poster-float-delay, 0s);
  transform-origin: 50% 52%;
}

.events-collage .event-poster:nth-child(1) {
  --poster-float-delay: -0.8s;
  --poster-float-y: -3px;
  --poster-float-tilt: -0.35deg;
}

.events-collage .event-poster:nth-child(2) {
  --poster-float-delay: -2.1s;
  --poster-float-y: -4px;
  --poster-float-tilt: 0.35deg;
}

.events-collage .event-poster:nth-child(3) {
  --poster-float-delay: -3.2s;
  --poster-float-y: -3px;
  --poster-float-tilt: 0.3deg;
}

.events-collage .event-poster:nth-child(4) {
  --poster-float-delay: -1.4s;
  --poster-float-y: -3px;
  --poster-float-tilt: -0.3deg;
}

.events-collage .event-poster:nth-child(5) {
  --poster-float-delay: -2.8s;
  --poster-float-y: -2px;
  --poster-float-tilt: 0.25deg;
}

@keyframes faroPosterFloat {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotate(var(--poster-rotate, 0deg));
  }
  50% {
    transform: translate3d(0, var(--poster-float-y, -3px), 0) rotate(calc(var(--poster-rotate, 0deg) + var(--poster-float-tilt, 0.25deg)));
  }
}

@media (prefers-reduced-motion: reduce) {
  .events-collage .event-poster {
    animation: none;
  }
}

/* Final events interaction and agenda collision fix. */
button.event-poster {
  appearance: none;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.events-collage {
  isolation: isolate;
}

.events-collage .event-poster {
  transition:
    transform 340ms cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 340ms ease,
    filter 260ms ease,
    opacity 260ms ease,
    left 420ms cubic-bezier(0.2, 0.8, 0.2, 1),
    top 420ms cubic-bezier(0.2, 0.8, 0.2, 1),
    width 420ms cubic-bezier(0.2, 0.8, 0.2, 1),
    height 420ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.events-collage .event-poster:hover,
.events-collage .event-poster:focus-visible {
  animation-play-state: paused;
  z-index: 18;
  filter: brightness(1.045) saturate(1.04);
  box-shadow:
    0 34px 54px rgba(35, 25, 20, 0.22),
    0 12px 20px rgba(35, 25, 20, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.52);
  transform: translate3d(0, -10px, 0) rotate(calc(var(--poster-rotate, 0deg) * 0.62)) scale(1.06) !important;
}

.events-collage .event-poster:focus-visible {
  outline: 2px solid rgba(104, 111, 60, 0.64);
  outline-offset: 4px;
}

.events-collage.has-focused .event-poster:not(.is-focused) {
  animation-play-state: paused;
  z-index: 2;
  opacity: 0.68;
  filter: saturate(0.78) blur(0.35px) brightness(0.94);
  transform: translate3d(0, 5px, 0) rotate(var(--poster-rotate, 0deg)) scale(0.92) !important;
}

.events-collage .event-poster.is-focused {
  left: 50% !important;
  top: 48% !important;
  z-index: 30;
  width: clamp(226px, 16.2vw, 270px);
  height: clamp(244px, 17.4vw, 292px);
  animation: none !important;
  filter: none;
  box-shadow:
    0 44px 70px rgba(35, 25, 20, 0.28),
    0 16px 24px rgba(35, 25, 20, 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 0.56);
  transform: translate(-50%, -50%) rotate(-0.8deg) scale(1) !important;
}

.events-collage .event-poster.is-focused h3 {
  font-size: clamp(1.32rem, 1.72vw, 1.82rem);
}

.events-collage .event-poster.is-focused p {
  font-size: 0.88rem;
}

.event-row {
  grid-template-columns: 54px minmax(0, 1fr) max-content !important;
  align-items: center;
  column-gap: 10px;
}

.event-row-copy {
  display: block !important;
  grid-column: 2;
  min-width: 0;
}

.event-row-copy h3,
.event-row-copy p {
  min-width: 0;
}

.event-row-copy h3 {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.event-row-copy p {
  overflow: hidden;
  margin-bottom: 0;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.event-row .event-rsvp {
  grid-column: 3;
  grid-row: 1;
  align-self: center;
  justify-self: end;
  min-width: 64px;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .event-row {
    grid-template-columns: 50px minmax(0, 1fr) !important;
  }

  .event-row .event-rsvp {
    grid-column: 2;
    grid-row: 2;
    justify-self: start;
    margin-top: 7px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .events-collage .event-poster {
    transition: opacity 180ms ease, filter 180ms ease;
  }

  .events-collage .event-poster:hover,
  .events-collage .event-poster:focus-visible,
  .events-collage.has-focused .event-poster:not(.is-focused) {
    transform: rotate(var(--poster-rotate, 0deg)) !important;
  }

  .events-collage .event-poster.is-focused {
    transform: translate(-50%, -50%) rotate(-0.8deg) !important;
  }
}

/* Premium events card-stack motion refinement. */
.events-collage .event-poster {
  backface-visibility: hidden;
  transform-style: preserve-3d;
  will-change: transform, opacity, filter;
  transition:
    transform 760ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 560ms ease,
    filter 520ms ease,
    opacity 520ms ease,
    left 760ms cubic-bezier(0.22, 1, 0.36, 1),
    top 760ms cubic-bezier(0.22, 1, 0.36, 1),
    width 760ms cubic-bezier(0.22, 1, 0.36, 1),
    height 760ms cubic-bezier(0.22, 1, 0.36, 1);
}

.events-collage.is-animating .event-poster {
  animation: none !important;
  pointer-events: none;
}

.events-collage:not(.has-focused) .event-poster:hover,
.events-collage:not(.has-focused) .event-poster:focus-visible {
  transition-duration: 380ms;
  z-index: 20;
  filter: brightness(1.035) saturate(1.035);
  box-shadow:
    0 34px 58px rgba(35, 25, 20, 0.2),
    0 12px 22px rgba(35, 25, 20, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.54);
  transform: translate3d(0, -8px, 0) rotate(calc(var(--poster-rotate, 0deg) * 0.72)) scale(1.045) !important;
}

.events-collage.has-focused .event-poster:not(.is-focused) {
  animation: none !important;
  z-index: 3;
  opacity: 0.72;
  filter: saturate(0.78) blur(0.4px) brightness(0.94);
  transform: translate3d(var(--stack-shift-x, 0), var(--stack-shift-y, 4px), 0) rotate(var(--poster-rotate, 0deg)) scale(0.88) !important;
}

.events-collage.has-focused .event-poster:nth-child(1) {
  --stack-shift-x: -18px;
  --stack-shift-y: 12px;
}

.events-collage.has-focused .event-poster:nth-child(2) {
  --stack-shift-x: 4px;
  --stack-shift-y: -8px;
}

.events-collage.has-focused .event-poster:nth-child(3) {
  --stack-shift-x: 18px;
  --stack-shift-y: 8px;
}

.events-collage.has-focused .event-poster:nth-child(4) {
  --stack-shift-x: 14px;
  --stack-shift-y: 16px;
}

.events-collage.has-focused .event-poster:nth-child(5) {
  --stack-shift-x: -12px;
  --stack-shift-y: 16px;
}

.events-collage .event-poster.is-focused {
  left: 50% !important;
  top: 49% !important;
  z-index: 40;
  width: clamp(252px, 18.4vw, 308px);
  height: clamp(266px, 19.4vw, 324px);
  animation: none !important;
  opacity: 1;
  filter: brightness(1.02) saturate(1.02);
  box-shadow:
    0 48px 78px rgba(35, 25, 20, 0.3),
    0 18px 28px rgba(35, 25, 20, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.58);
  transform: translate(-50%, -50%) rotate(-0.65deg) scale(1) !important;
}

.events-collage .event-poster.is-focused h3 {
  font-size: clamp(1.38rem, 1.76vw, 1.9rem);
}

.events-collage .event-poster.is-focused p {
  font-size: 0.9rem;
  line-height: 1.3;
}

.site-page-events .event-row {
  grid-template-columns: 54px minmax(0, 1fr) 68px !important;
  column-gap: 11px;
}

.site-page-events .event-rsvp {
  width: 68px;
  min-width: 68px;
  padding-inline: 8px;
}

.site-page-events .event-row-copy h3 {
  font-size: 0.82rem;
  line-height: 1.16;
}

.site-page-events .event-row-copy p {
  font-size: 0.68rem;
}

.site-page-events .events-list {
  max-height: clamp(382px, 39vh, 462px);
  overflow-y: auto;
  padding-right: 4px;
  scrollbar-width: thin;
  scrollbar-color: rgba(83, 89, 54, 0.34) transparent;
}

.site-page-events .events-list::-webkit-scrollbar {
  width: 6px;
}

.site-page-events .events-list::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(83, 89, 54, 0.3);
}

@media (max-width: 1180px) {
  .events-collage .event-poster.is-focused {
    width: clamp(224px, 21vw, 270px);
    height: clamp(238px, 23vw, 292px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .events-collage .event-poster,
  .events-collage .event-poster.is-focused {
    transition: opacity 180ms ease, filter 180ms ease, box-shadow 180ms ease;
  }
}

/* Website-only phone asset replacement. */
.phone-mockup-link {
  filter:
    drop-shadow(18px 30px 28px rgba(35, 25, 20, 0.16))
    drop-shadow(5px 9px 10px rgba(35, 25, 20, 0.08));
}

.website-phone-asset {
  clip-path: none;
  object-fit: contain;
  filter: none;
}

/* Urgent menu phone size fix: restore the phone as a primary visual. */
.site-page-menu .faro-card-section-compact .faro-card-media {
  min-height: clamp(270px, 22vw, 350px);
  gap: clamp(18px, 2.2vw, 30px);
  align-items: center;
}

.site-page-menu .phone-mockup-link {
  flex: 0 0 auto;
  width: clamp(206px, 18.2vw, 268px);
  filter:
    drop-shadow(20px 34px 30px rgba(35, 25, 20, 0.16))
    drop-shadow(6px 10px 11px rgba(35, 25, 20, 0.08));
}

.site-page-menu .website-phone-asset {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
  clip-path: none;
  object-fit: contain;
  filter: none;
}

@media (max-width: 1120px) {
  .site-page-menu .faro-card-section-compact .faro-card-media {
    min-height: clamp(238px, 38vw, 330px);
  }

  .site-page-menu .phone-mockup-link {
    width: clamp(172px, 32vw, 238px);
  }
}

/* Final menu hero card balance: phone + QR board only. */
.site-page-menu .faro-card-section-compact {
  grid-template-columns: minmax(260px, 0.9fr) minmax(430px, 0.78fr);
  column-gap: clamp(24px, 3.4vw, 44px);
  width: min(100% - 116px, 1040px);
}

.site-page-menu .faro-card-section-compact .faro-card-media {
  min-height: clamp(286px, 21vw, 334px);
  gap: 0;
  align-items: flex-end;
}

.site-page-menu .phone-mockup-link {
  width: clamp(250px, 16.3vw, 294px);
  filter:
    drop-shadow(24px 38px 34px rgba(35, 25, 20, 0.18))
    drop-shadow(7px 12px 13px rgba(35, 25, 20, 0.09));
}

.site-page-menu .qr-card-reference {
  flex: 0 0 auto;
  width: clamp(218px, 13.6vw, 238px);
  margin: 0 0 clamp(72px, 4.8vw, 88px) clamp(-82px, -4.3vw, -62px);
  overflow: visible;
}

.site-page-menu .qr-card-reference-img {
  filter:
    drop-shadow(17px 30px 29px rgba(35, 25, 20, 0.18))
    drop-shadow(5px 9px 11px rgba(35, 25, 20, 0.08));
}

.site-page-menu .qr-card-lobita-mark {
  top: 18.4%;
  width: 14.8%;
  opacity: 0.97;
}

.site-page-menu .qr-card-live-title {
  top: 29.35%;
  max-width: 84%;
  color: #2b211c;
  font-size: clamp(0.43rem, 0.48vw, 0.56rem);
  line-height: 1.04;
  white-space: nowrap;
}

.site-page-menu .qr-card-reference .website-paw-qr-tile {
  top: var(--website-qr-sticker-top, calc(72.9% - 10px));
  left: var(--website-qr-sticker-left, calc(49.55% - 4px));
  width: var(--website-qr-sticker-size, 18.2%);
  padding: 1.72%;
  border-color: rgba(47, 33, 26, 0.06);
  border-radius: 9.5%;
  background: #f4eadc;
  box-shadow:
    0 9px 18px rgba(35, 25, 20, 0.13),
    0 2px 6px rgba(35, 25, 20, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.66);
}

@media (max-width: 1120px) {
  .site-page-menu .faro-card-section-compact {
    grid-template-columns: 1fr;
    width: min(100% - 48px, 820px);
  }

  .site-page-menu .faro-card-section-compact .faro-card-media {
    min-height: clamp(266px, 45vw, 360px);
  }

  .site-page-menu .phone-mockup-link {
    width: clamp(218px, 36vw, 292px);
  }

  .site-page-menu .qr-card-reference {
    width: clamp(188px, 30vw, 238px);
  }
}

@media (max-width: 640px) {
  .site-page-menu .faro-card-section-compact .faro-card-media {
    gap: 14px;
  }

  .site-page-menu .phone-mockup-link {
    width: clamp(170px, 44vw, 224px);
  }

  .site-page-menu .qr-card-reference {
    width: clamp(152px, 39vw, 190px);
  }
}

/* Full website menu catalog */
.site-page-full-menu {
  background:
    radial-gradient(circle at 50% 3%, rgba(255, 251, 242, 0.92), transparent 40rem),
    linear-gradient(135deg, #f7f1e8 0%, #efe6da 100%);
}

body.has-full-menu-info-open {
  overflow: hidden;
}

.site-page-full-menu .site-header {
  width: min(100% - 110px, 1320px);
}

.full-menu-shell {
  width: min(100% - 96px, 1120px);
  margin: 10px auto 70px;
  padding-bottom: 36px;
}

.full-menu-hero {
  display: grid;
  justify-items: center;
  text-align: center;
  padding: 18px 0 42px;
}

.full-menu-lobita {
  width: 62px;
  height: 62px;
  object-fit: contain;
  margin-bottom: 8px;
}

.full-menu-hero h1 {
  margin: 0;
  color: var(--espresso);
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 5.1vw, 4.95rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.full-menu-hero p {
  max-width: 510px;
  margin: 18px auto 0;
  color: rgba(42, 31, 26, 0.72);
  font-size: clamp(0.9rem, 1vw, 1.03rem);
  line-height: 1.38;
  font-weight: 560;
}

.full-menu-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 34px;
}

.full-menu-pills button {
  min-width: 84px;
  min-height: 35px;
  padding: 8px 22px;
  border: 1px solid rgba(42, 31, 26, 0.14);
  border-radius: 999px;
  color: var(--espresso);
  background: rgba(255, 250, 241, 0.58);
  font-size: 0.86rem;
  font-weight: 900;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.full-menu-pills button.is-active,
.full-menu-pills button:hover,
.full-menu-pills button:focus-visible {
  color: #fff8e7;
  border-color: transparent;
  background: linear-gradient(135deg, var(--olive), var(--olive-dark));
  box-shadow: 0 10px 18px rgba(52, 60, 32, 0.16);
}

.full-menu-pills button:focus-visible,
.full-menu-info-button:focus-visible,
.full-menu-info-close:focus-visible {
  outline: 3px solid rgba(104, 111, 60, 0.34);
  outline-offset: 4px;
}

.full-menu-catalog {
  display: grid;
  gap: 52px;
}

.full-menu-section {
  scroll-margin-top: 26px;
}

.full-menu-section-head {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  align-items: center;
  gap: 13px;
  margin-bottom: 17px;
}

.full-menu-section-icon {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  color: var(--espresso);
}

.full-menu-section-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.75;
}

.full-menu-section-head h2 {
  margin: 0;
  color: var(--espresso);
  font-family: var(--font-display);
  font-size: clamp(1.42rem, 2.1vw, 1.78rem);
  line-height: 1;
}

.full-menu-section-head p {
  margin: 4px 0 0;
  color: rgba(42, 31, 26, 0.66);
  font-size: 0.78rem;
  line-height: 1.28;
  font-weight: 650;
}

.full-menu-section-head small {
  align-self: end;
  margin-bottom: 3px;
  padding: 6px 11px;
  border-radius: 999px;
  color: rgba(42, 31, 26, 0.62);
  background: rgba(255, 250, 241, 0.66);
  font-size: 0.68rem;
  font-weight: 860;
}

.full-menu-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px 24px;
}

.full-menu-product-card {
  position: relative;
  display: grid;
  grid-template-rows: 156px minmax(92px, auto) auto;
  min-height: 284px;
  padding: 13px 13px 12px;
  border: 1px solid rgba(42, 31, 26, 0.11);
  border-radius: 13px;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.72), transparent 58%),
    rgba(255, 250, 241, 0.52);
  box-shadow:
    0 17px 34px rgba(45, 33, 25, 0.045),
    inset 0 1px 0 rgba(255, 255, 255, 0.56);
}

.full-menu-product-image {
  display: grid;
  place-items: center;
  min-height: 0;
  padding: 6px 12px 0;
}

.full-menu-product-image img {
  width: 100%;
  height: 146px;
  object-fit: contain;
  filter: drop-shadow(0 18px 14px rgba(35, 25, 20, 0.12));
}

.full-menu-product-copy {
  align-self: end;
  min-width: 0;
  padding: 2px 0 0;
}

.full-menu-product-copy h3 {
  margin: 0 0 4px;
  color: var(--espresso);
  font-size: 0.91rem;
  line-height: 1.06;
  font-weight: 920;
}

.full-menu-product-copy p {
  display: -webkit-box;
  min-height: 34px;
  margin: 0 0 8px;
  overflow: hidden;
  color: rgba(42, 31, 26, 0.72);
  font-size: 0.71rem;
  line-height: 1.28;
  font-weight: 620;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.full-menu-product-copy strong {
  display: block;
  color: var(--espresso);
  font-size: 0.92rem;
  line-height: 1;
  font-weight: 940;
}

.full-menu-product-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 13px;
}

.full-menu-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 22px;
  padding: 4px 9px;
  border-radius: 999px;
  color: var(--olive-dark);
  background: rgba(104, 111, 60, 0.12);
  font-size: 0.61rem;
  line-height: 1;
  font-weight: 900;
}

.full-menu-status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2d8f42;
}

.full-menu-status.is-unavailable {
  color: #8a5a3c;
  background: rgba(184, 106, 71, 0.12);
}

.full-menu-status.is-unavailable i {
  background: #c17a35;
}

.full-menu-info-button {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 31px;
  height: 31px;
  padding: 0;
  border: 1px solid rgba(42, 31, 26, 0.09);
  border-radius: 50%;
  color: var(--espresso);
  background: rgba(255, 253, 247, 0.76);
  cursor: pointer;
  box-shadow: 0 7px 13px rgba(45, 33, 25, 0.06);
}

.full-menu-info-button span {
  color: var(--olive-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  font-style: italic;
  font-weight: 800;
  line-height: 1;
}

.full-menu-info-layer {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
}

.full-menu-info-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(38, 29, 24, 0.26);
  backdrop-filter: blur(9px);
  cursor: pointer;
}

.full-menu-info-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  width: min(100%, 760px);
  max-height: min(82vh, 720px);
  overflow: auto;
  gap: 22px 28px;
  padding: 28px;
  border: 1px solid rgba(42, 31, 26, 0.13);
  border-radius: 26px;
  background:
    radial-gradient(circle at 22% 10%, rgba(255, 255, 255, 0.78), transparent 26rem),
    rgba(255, 250, 241, 0.96);
  box-shadow:
    0 28px 70px rgba(45, 33, 25, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.62);
}

.full-menu-info-handle {
  display: none;
}

.full-menu-info-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: var(--espresso);
  background: rgba(42, 31, 26, 0.06);
  font-size: 1.85rem;
  line-height: 1;
  cursor: pointer;
}

.full-menu-info-media {
  display: grid;
  place-items: center;
  align-self: start;
  min-height: 220px;
  border-radius: 22px;
  background: rgba(255, 253, 247, 0.64);
}

.full-menu-info-media img {
  width: 100%;
  max-height: 220px;
  object-fit: contain;
  filter: drop-shadow(0 20px 18px rgba(35, 25, 20, 0.13));
}

.full-menu-info-copy {
  align-self: center;
  padding-right: 28px;
}

.full-menu-info-copy > span {
  display: block;
  margin-bottom: 6px;
  color: rgba(42, 31, 26, 0.52);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.full-menu-info-copy h2 {
  margin: 0 0 8px;
  color: var(--espresso);
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 0.98;
}

.full-menu-info-copy strong {
  display: block;
  margin-bottom: 12px;
  color: var(--espresso);
  font-size: 1.08rem;
  font-weight: 940;
}

.full-menu-info-copy p {
  margin: 0 0 14px;
  color: rgba(42, 31, 26, 0.72);
  font-size: 0.96rem;
  line-height: 1.45;
  font-weight: 620;
}

.full-menu-info-status {
  width: fit-content;
}

.full-menu-info-list {
  grid-column: 1 / -1;
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(42, 31, 26, 0.1);
  border-radius: 18px;
  background: rgba(255, 253, 247, 0.5);
}

.full-menu-info-row + .full-menu-info-row {
  border-top: 1px solid rgba(42, 31, 26, 0.09);
}

.full-menu-info-row summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 56px;
  padding: 14px 18px;
  color: var(--espresso);
  font-size: 0.98rem;
  font-weight: 920;
  cursor: pointer;
  list-style: none;
}

.full-menu-info-row summary::-webkit-details-marker {
  display: none;
}

.full-menu-info-row-title {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 11px;
}

.full-menu-info-row-icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  color: var(--olive-dark);
  background: rgba(229, 217, 199, 0.52);
}

.full-menu-info-row-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.full-menu-info-row summary i {
  width: 9px;
  height: 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  opacity: 0.72;
  transition: transform 180ms ease;
}

.full-menu-info-row[open] summary i {
  transform: rotate(225deg);
}

.full-menu-info-row p {
  margin: -4px 18px 16px;
  color: rgba(42, 31, 26, 0.7);
  font-size: 0.91rem;
  line-height: 1.45;
  font-weight: 600;
}

.full-menu-option-line {
  display: block;
}

.full-menu-option-line + .full-menu-option-line {
  margin-top: 8px;
}

.extra-charge-highlight {
  display: inline-flex;
  align-items: center;
  min-height: 1.45em;
  padding: 0.08em 0.42em;
  border-radius: 999px;
  color: var(--olive-dark);
  background: rgba(104, 111, 60, 0.12);
  font-weight: 900;
  white-space: nowrap;
}

@media (max-width: 1180px) {
  .site-page-full-menu .site-header,
  .full-menu-shell {
    width: min(100% - 48px, 980px);
  }

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

@media (max-width: 820px) {
  .site-page-full-menu .site-header,
  .full-menu-shell {
    width: min(100% - 30px, 680px);
  }

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

  .full-menu-info-panel {
    grid-template-columns: 160px minmax(0, 1fr);
    gap: 18px;
    padding: 24px;
  }

  .full-menu-info-media {
    min-height: 170px;
  }

  .full-menu-info-media img {
    max-height: 170px;
  }
}

@media (max-width: 560px) {
  .full-menu-shell {
    margin-top: 0;
  }

  .full-menu-hero {
    padding-top: 12px;
  }

  .full-menu-pills {
    flex-wrap: nowrap;
    justify-content: flex-start;
    width: 100%;
    gap: 8px;
    overflow-x: auto;
    padding: 0 2px 7px;
    scrollbar-width: none;
  }

  .full-menu-pills::-webkit-scrollbar {
    display: none;
  }

  .full-menu-grid {
    grid-template-columns: 1fr;
  }

  .full-menu-product-card {
    grid-template-rows: 170px minmax(86px, auto) auto;
  }

  .full-menu-info-layer {
    align-items: end;
    padding: 0;
  }

  .full-menu-info-panel {
    grid-template-columns: 1fr;
    width: 100%;
    max-height: 88dvh;
    gap: 14px;
    padding: 14px 18px 22px;
    border-radius: 28px 28px 0 0;
  }

  .full-menu-info-handle {
    display: block;
    justify-self: center;
    width: 74px;
    height: 5px;
    margin: 0 0 4px;
    border-radius: 999px;
    background: rgba(42, 31, 26, 0.2);
  }

  .full-menu-info-close {
    top: 16px;
    right: 16px;
  }

  .full-menu-info-media {
    min-height: 156px;
    padding-top: 8px;
  }

  .full-menu-info-media img {
    max-height: 150px;
  }

  .full-menu-info-copy {
    padding-right: 46px;
  }

  .full-menu-section-head {
    grid-template-columns: 30px minmax(0, 1fr);
  }

  .full-menu-section-head small {
    grid-column: 2;
    justify-self: start;
  }
}
