:root {
  --mojo-ink: #073644;
  --mojo-dark: #00343e;
  --mojo-dark-2: #042a35;
  --mojo-blue: #155f72;
  --mojo-soft-blue: #2c94a7;
  --mojo-accent: #ffa24d;
  --mojo-paper: #f8f6ef;
  --mojo-white: #fff;
  --mojo-muted: #eaf3f3;
  --shadow: 0 24px 60px rgba(2, 42, 53, 0.18);
  --radius: 28px;
  --pattern: url("assets/figma/pattern.svg");
  --pattern-blue: url("assets/figma/pattern-blue.svg");
  --torn-edge-top: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%201200%20120'%20preserveAspectRatio='none'%3E%3Cpath%20fill='black'%20d='M0%200H1200V82C1154%2074%201135%2091%201092%2082C1050%2073%201027%2098%20982%2080C944%2065%20929%2078%20890%2092C850%20107%20837%2089%20795%2075C757%2062%20737%2078%20700%2088C655%20100%20640%2086%20582%2075C535%2066%20510%2088%20462%2080C420%2072%20404%20100%20362%2081C327%2065%20303%2077%20265%2086C219%2097%20207%2073%20166%2079C128%2085%20112%2070%2078%2081C44%2092%2034%2076%200%2084Z'/%3E%3C/svg%3E");
  --torn-edge-bottom: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%201200%20120'%20preserveAspectRatio='none'%3E%3Cpath%20fill='black'%20d='M0%2034C34%2026%2044%2042%2078%2031C112%2020%20128%2035%20166%2029C207%2023%20219%2047%20265%2036C303%2027%20327%2015%20362%2031C404%2050%20420%2022%20462%2030C510%2038%20535%2016%20582%2025C640%2036%20655%2050%20700%2038C737%2028%20757%2012%20795%2025C837%2039%20850%2057%20890%2042C929%2028%20944%2015%20982%2030C1027%2048%201050%2024%201092%2033C1134%2042%201155%2025%201200%2031V120H0Z'/%3E%3C/svg%3E");
  --font-display: "Cactron", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

@font-face {
  font-family: "Cactron";
  font-style: normal;
  font-weight: 400;
  src: url("assets/fonts/Cactron-Regular.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "Cactron";
  font-style: italic;
  font-weight: 400;
  src: url("assets/fonts/Cactron-Italic.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "Cactron";
  font-style: italic;
  font-weight: 700;
  src: url("assets/fonts/Cactron-Bold-Italic.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "Cactron";
  font-style: normal;
  font-weight: 700;
  src: url("assets/fonts/CactronBold.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "Pianaforma";
  font-style: normal;
  font-weight: 400;
  src: url("assets/fonts/Pianaforma.woff") format("woff");
  font-display: swap;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  color: var(--mojo-ink);
  background: var(--mojo-paper);
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    "Helvetica Neue",
    Arial,
    sans-serif;
}

img {
  display: block;
  max-width: 100%;
}

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

.page {
  overflow: clip;
}

.container {
  width: min(1160px, calc(100% - 56px));
  margin-inline: auto;
}

.section {
  padding: clamp(64px, 4vw, 84px) 0;
}

.section--dark {
  color: var(--mojo-white);
  background:
    var(--pattern),
    linear-gradient(180deg, rgba(4, 42, 53, 0.96), rgba(6, 50, 63, 0.98)),
    var(--mojo-dark);
  background-size: 620px auto, auto, auto;
}

.section--light {
  background:
    var(--pattern),
    linear-gradient(180deg, rgba(248, 246, 239, 0.96), rgba(248, 246, 239, 0.98));
  background-size: 680px auto, auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.button {
  appearance: none;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 24px;
  border: 2px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.button--primary {
  color: var(--mojo-white);
  background: var(--mojo-soft-blue);
}

.button--outline {
  color: var(--mojo-white);
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.04);
}

.button--outline-dark {
  color: var(--mojo-dark);
  border-color: rgba(7, 54, 68, 0.34);
  background: rgba(255, 255, 255, 0.58);
}

.eyebrow {
  margin: 0 0 14px;
  color: #9cd6de;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow--dark {
  color: var(--mojo-soft-blue);
}

.section-title {
  margin: 0 0 16px;
  color: var(--mojo-ink);
  font-family: var(--font-display);
  font-size: clamp(3.25rem, 4vw, 5.8rem);
  font-weight: 700;
  font-style: normal;
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.section-title span,
.hero__title span {
  color: var(--mojo-soft-blue);
}

.hero__wordmark {
  display: inline-block;
  width: auto;
  height: 1.2em;
  margin-left: 0;
  vertical-align: 0em;
  position: relative;
}

@media (min-width: 981px) {
  .hero__title span {
    white-space: nowrap;
  }
}

.section-title--center {
  text-align: center;
  margin-bottom: 32px;
}

.section-title--light {
  color: var(--mojo-white);
}

.section-subtitle {
  margin: -48px 0 48px;
  color: rgba(7, 54, 68, 0.72);
  text-align: center;
  font-weight: 800;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  color: var(--mojo-white);
  background:
    var(--pattern),
    radial-gradient(circle at 50% 10%, rgba(44, 148, 167, 0.22), transparent 38%),
    linear-gradient(180deg, rgba(4, 42, 53, 0.96), rgba(6, 50, 63, 0.99)),
    var(--mojo-dark);
  background-position: top center, center top, center, center;
  background-size: 1280px auto, auto, auto, auto;
  padding-bottom: clamp(34px, 4vw, 52px);
}

.hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -75px;
  left: 0;
  z-index: 0;
  height: 130px;
  background:
    var(--pattern),
    linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 1));
  background-position: center top, center;
  background-size: 2620px auto, auto;
  pointer-events: none;
  -webkit-mask-image: var(--torn-edge-bottom);
  mask-image: var(--torn-edge-bottom);
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

.top-nav {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 118px 1fr auto;
  align-items: center;
  gap: 28px;
  width: min(1220px, calc(100% - 56px));
  margin: 0 auto;
  padding: 26px 0 clamp(32px, 4.8vh, 48px);
}

.top-nav__logo img {
  width: 96px;
  height: auto;
}

.top-nav__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2vw, 32px);
  font-weight: 900;
}

.top-nav__links a {
  opacity: 0.94;
}

.top-nav__instagram {
  padding: 9px 12px 8px;
  border: 2px solid var(--mojo-accent);
  border-radius: 999px;
  color: var(--mojo-accent);
  line-height: 1;
}

@media (max-width: 1180px) {
  .top-nav__instagram {
    display: none;
  }
}

.hero__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 40px 0;
}

.hero__title {
  margin: 0 auto 28px;
  max-width: 1360px;
  font-family: var(--font-display);
  font-size: clamp(3.8rem, 5.95vw, 7.4rem);
  font-weight: 700;
  font-style: normal;
  line-height: 0.98;
  text-transform: uppercase;
  letter-spacing: 0.018em;
  text-shadow: 0 7px 0 rgba(0, 0, 0, 0.12);
}

.hero__lede {
  max-width: 1120px;
  margin: 0 auto clamp(28px, 4vw, 44px);
  color: rgba(255, 255, 255, 0.92);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4;
}

.hero__lede span {
  color: var(--mojo-soft-blue);
}

.venues {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 48px);
  text-align: left;
}

.venue-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 34px);
  min-height: 250px;
  padding: clamp(24px, 3vw, 34px);
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.32);
  border-radius: var(--radius);
  background:
    url(assets/figma/pizza1.png),
    linear-gradient(90deg, rgba(4, 42, 53, 0.99) 0%, rgba(4, 42, 53, 0.92) 46%, rgba(4, 42, 53, 0.45) 74%, rgba(4, 42, 53, 0.18) 100%),
    var(--mojo-dark-2);
  background-size: auto 100%, auto, auto;
  background-repeat: no-repeat;
  background-position: top right, center, center;
  box-shadow: var(--shadow);
}

.venue-card:nth-child(2){
  background:
    url(assets/figma/pates.png),
    linear-gradient(90deg, rgba(4, 42, 53, 0.99) 0%, rgba(4, 42, 53, 0.92) 46%, rgba(4, 42, 53, 0.45) 74%, rgba(4, 42, 53, 0.18) 100%),
    var(--mojo-dark-2);  
    background-size: auto 100%, auto, auto;
    background-repeat: no-repeat;
    background-position: top right, center, center;
}

.venue-card::after {
  content: "";
  position: absolute;
  inset: auto -180px -120px auto;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(44, 148, 167, 0.16);
  pointer-events: none;
}

.venue-card h3,
.service-card h3,
.dish-card h3,
.footer h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4.6vw, 3.55rem);
  font-weight: 400;
  font-style: normal;
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.venue-card p {
  margin: 12px 0 0;
  max-width: 30ch;
  font-weight: 700;
  line-height: 1.42;
}

.venue-card__address {
  color: #9cd6de;
}

.venue-card img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: 205px;
  object-fit: contain;
  filter: drop-shadow(0 22px 32px rgba(0, 0, 0, 0.32));
}

.venue-card__copy {
  position: relative;
  z-index: 1;
  width: min(100%, 470px);
}

.venue-card .venue-card__brand {
  margin: 0 0 14px;
  font-size: 0;
  line-height: 0;
  letter-spacing: 0;
  text-transform: none;
}

.venue-card__lockup {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  max-width: 100%;
  align-items: flex-end;
  gap: clamp(10px, 1.25vw, 16px);
}

.venue-card img.venue-card__logo-mark {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  width: auto;
  height: 60px;
  max-width: none;
  max-height: none;
  margin: 0;
  object-fit: contain;
  filter: drop-shadow(0 12px 0 rgba(0, 0, 0, 0.12));
}

.venue-card__logo-text {
  position: relative;
  z-index: 1;
  color: var(--mojo-white);
  font-family: "Pianaforma", "Brush Script MT", "Segoe Script", cursive;
  font-size: clamp(1.75rem, 2.85vw, 2.55rem);
  font-weight: 400;
  line-height: 0.95;
  text-transform: lowercase;
  white-space: nowrap;
}

.venue-card img.venue-card__food {
  position: absolute;
  top: clamp(-40px, -2.6vw, -28px);
  left: clamp(98px, 7.6vw, 118px);
  z-index: 0;
  width: clamp(70px, 6.2vw, 94px);
  height: auto;
  max-width: none;
  max-height: none;
  margin: 0;
  object-fit: contain;
  pointer-events: none;
  filter: drop-shadow(0 12px 14px rgba(0, 0, 0, 0.22));
}

.venue-card img.venue-card__food--pizza {
  transform: rotate(10deg);
}

.venue-card img.venue-card__food--restaurant {
  top: clamp(-42px, -2.7vw, -30px);
  left: clamp(94px, 7.2vw, 112px);
  width: clamp(74px, 6.5vw, 98px);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
}

.story {
  position: relative;
  padding: 100px 0px 70px;
  background:
    var(--pattern-blue),
    linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 1)),
    var(--mojo-paper);
  background-size: 2620px auto, auto, auto;
  background-position: center, center top, center;
  z-index: 2;
}

.story::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -50px;
  left: 0;
  z-index: 0;
  height: 130px;
  background: var(--pattern), linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 1));
  background-position: center top, center;
  background-size: 2620px auto, auto;
  pointer-events: none;
  -webkit-mask-image: var(--torn-edge-bottom);
  mask-image: var(--torn-edge-bottom);
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  transform: rotate(180deg);
}

.story__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(440px, 1.06fr);
  align-items: center;
  gap: clamp(48px, 6vw, 92px);
}

.story__copy,
.story__visual {
  min-width: 0;
  background: radial-gradient(#ffffff, transparent);
}

.story .section-title {
  font-family: "Cactron", "Satoshi", sans-serif;
  margin-bottom: 32px;
  font-size: clamp(4.45rem, 5.4vw, 7.25rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.story__copy p {
  max-width: 43ch;
  margin: 0 0 30px;
  color: rgba(7, 54, 68, 0.9);
  font-size: clamp(1.12rem, 1.32vw, 1.42rem);
  font-weight: 400;
  line-height: 1.52;
}

.badges {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 3.2vw, 54px);
  width: 100%;
  max-width: 690px;
}

.badge {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  color: var(--mojo-blue);
  text-align: center;
}

.badge svg,
.badge img {
  width: clamp(58px, 5vw, 82px);
  aspect-ratio: 1;
}

.badge img {
  display: block;
  object-fit: contain;
}

.badge svg {
  overflow: visible;
  color: var(--mojo-soft-blue);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4.4;
}

.badge b {
  color: var(--mojo-ink);
  font-size: clamp(1rem, 1.3vw, 1.42rem);
  font-weight: 900;
  line-height: 1.02;
  overflow-wrap: anywhere;
}

.story__visual {
  position: relative;
  min-height: clamp(520px, 38vw, 640px);
}

.story__photo {
  position: absolute;
  top: 0;
  right: clamp(12px, 2.2vw, 38px);
  width: min(610px, 96%);
  aspect-ratio: 1;
  overflow: hidden;
  border: clamp(10px, 1vw, 14px) solid rgba(44, 148, 167, 0.92);
  border-radius: 50%;
  background: var(--mojo-dark);
  box-shadow: 0 24px 54px rgba(2, 42, 53, 0.2);
}

.story__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 32%;
}

.mascot {
  position: absolute;
  z-index: 3;
  width: clamp(80px, 10vw, 150px);
  filter: drop-shadow(0 20px 26px rgba(0, 0, 0, 0.22));
}

.mascot--story {
  right: 20px;
  bottom: -140px;
  width: 400px;
  z-index: 10;
}

.signature {
  position: relative;
  padding-block: clamp(68px, 6.5vw, 102px);
  z-index: 1;
}

.signature::after {
  content:"";
  position: absolute;
  right: 0;
  bottom: -50px;
  left: 0;
  z-index: 0;
  height: 130px;
  background: var(--pattern),    linear-gradient(180deg, rgba(4, 42, 53, 0.96), rgba(6, 50, 63, 0.98)),    var(--mojo-dark);
  background-position: center top, center;
  background-size: 620px auto, auto, auto;
  pointer-events: none;
  -webkit-mask-image: var(--torn-edge-bottom);
  mask-image: var(--torn-edge-bottom);
  -webkit-mask-position: center;
  mask-position: top center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  transform: rotate(180deg);
}

@supports not ((mask-image: url("")) or (-webkit-mask-image: url(""))) {
  .hero::after,
  .story::after,
  .signature::after {
    clip-path: polygon(0 28%, 5% 22%, 10% 31%, 17% 23%, 24% 35%, 31% 25%, 38% 32%, 45% 21%, 52% 34%, 59% 27%, 67% 38%, 74% 24%, 82% 34%, 90% 21%, 96% 29%, 100% 25%, 100% 100%, 0 100%);
  }
}

.signature > .container {
  position: relative;
  z-index: 1;
  width: min(1800px, calc(100% - 176px));
}

.signature__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(28px, 4vw, 72px);
  margin-bottom: clamp(26px, 3.2vw, 44px);
}

.signature .section-title {
  margin-bottom: 0;
  font-size: clamp(4.2rem, 6.6vw, 7.15rem);
  line-height: 0.9;
  text-align: left;
}

.dish-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 26px);
  align-items: stretch;
}

.dish-card {
  position: relative;
  display: grid;
  grid-template-rows:220px 1fr;
  overflow: hidden;
  min-height: clamp(405px, 28vw, 475px);
  border: 3px solid rgba(255, 255, 255, 0.5);
  border-radius: 22px;
  background: #fbfaf6;
  color: var(--mojo-ink);
  box-shadow: 0 26px 54px rgba(1, 25, 32, 0.34);
}

.dish-card__tag {
  position: absolute;
  z-index: 2;
  top: 18px;
  left: 18px;
  min-width: 94px;
  padding: 9px 15px 8px;
  border-radius: 10px;
  color: var(--mojo-white);
  background: var(--mojo-soft-blue);
  box-shadow: 0 8px 18px rgba(2, 42, 53, 0.22);
  font-size: clamp(0.82rem, 0.9vw, 1rem);
  font-weight: 900;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.dish-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.dish-card--pizza img {
  object-position: center 46%;
}

.dish-card--burrata img {
  object-position: center 50%;
}

.dish-card--dessert img {
  object-position: center 62%;
}

.dish-card__body {
  display: grid;
  grid-template-rows: auto 1fr auto;
  align-items: start;
  padding: clamp(22px, 1.8vw, 28px) clamp(20px, 1.8vw, 28px) clamp(22px, 2vw, 32px);
  text-align: center;
}

.dish-card h3 {
  color: var(--mojo-dark-2);
  font-size: clamp(1.95rem, 2.18vw, 2.8rem);
  line-height: 0.92;
}

.dish-card p {
  align-self: start;
  min-height: 2.72em;
  margin: clamp(12px, 1.2vw, 18px) auto clamp(12px, 1.5vw, 22px);
  max-width: 22ch;
  color: rgba(7, 54, 68, 0.88);
  font-size: clamp(1.02rem, 1.13vw, 1.22rem);
  font-weight: 400;
  line-height: 1.32;
}

.dish-card strong {
  color: var(--mojo-soft-blue);
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 3vw, 3.45rem);
  font-weight: 400;
  line-height: 0.9;
}

.menu-cta__actions {
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  justify-content: flex-end;
  width: min(100%, 320px);
  gap: 14px;
}

.menu-cta__actions .button {
  width: 100%;
  min-height: 58px;
  border-radius: 12px;
  font-size: clamp(0.88rem, 1vw, 1.05rem);
}

.services {
  padding: 0;
  background: none;
  position: relative;
  overflow: hidden;
}

.services::after {
  content: "";
  position: absolute;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 130px;
  background: var(--pattern), linear-gradient(180deg, rgb(4 43 53), rgb(4 43 54)), #00d6ff;
  z-index: 2;
  background-size: 620px auto, auto, auto;
  pointer-events: none;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  bottom: -80px;
  -webkit-mask-image: var(--torn-edge-bottom);
  mask-image: var(--torn-edge-bottom);
}

.services > .container {
  width: 100%;
}

.services__layout {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.services__hero {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 0;
  border: 0;
  background: #f8faf8;
  min-height: clamp(760px, 56vw, 920px);
}

.services__hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(25deg, #00000070 0%, transparent 40%), linear-gradient(331deg, #00000070 0%, transparent 40%);
}

.services__hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.services__hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  display: grid;
  align-content: end;
  padding: clamp(36px, 3.5vw, 54px);
}

.services__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: clamp(22px, 2.2vw, 28px);
  pointer-events: auto;
  width: min(1320px, 100%);
  margin-inline: auto;
}

.services__panel {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 176px 136px;
  align-items: center;
  gap: clamp(14px, 1.4vw, 18px);
  min-height: 186px;
  height: 100%;
  padding: clamp(18px, 1.6vw, 22px);
  border-radius: 32px;
  position: relative;
  overflow: hidden;
}

.services__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
}

.services__panel--restaurant {
  background: linear-gradient(180deg, rgba(248, 246, 239, 0.96), rgba(244, 239, 228, 0.98));
  color: var(--mojo-dark-2);
  box-shadow: 0 22px 54px rgba(60, 44, 25, 0.14);
  grid-template-columns: minmax(239px, 1fr) 120px 136px;
}

.services__panel--pizzeria {
  background: linear-gradient(180deg, rgba(248, 246, 239, 0.96), rgba(244, 239, 228, 0.98));
  color: var(--mojo-dark-2);
  box-shadow: 0 22px 54px rgba(60, 44, 25, 0.14);
}

.services__panel--restaurant::before,
.services__panel--pizzeria::before {
  border: 1px solid rgba(7, 54, 68, 0.08);
}

.services__panel-body {
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr) auto;
  gap: 8px;
  min-width: 0;
  align-self: stretch;
  align-content: start;
}

.services__panel-brand {
  margin: 0;
  min-height: 46px;
  display: flex;
  align-items: center;
  color: inherit;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 2.2vw, 2.6rem);
  font-weight: 400;
  line-height: 0.92;
  text-transform: uppercase;
}

.services__panel-brand img{
  position: relative;
  width: auto;
  height: 60px;
  max-width: min(100%, 228px);
}
.services__panel-brand span {
  color: var(--mojo-soft-blue);
}

.services__panel-kicker {
  margin: 0;
  color: var(--mojo-soft-blue);
  font-size: 0.84rem;
  font-weight: 900;
  line-height: 1.2;
}

.services__panel-copy {
  margin: 0;
  color: #0b313aba;
  font-size: clamp(0.9rem, 0.88vw, 0.98rem);
  font-weight: 500;
  line-height: 1.42;
}

.services__panel-delivery {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  margin-top: 2px;
}

.services__panel-delivery img {
  display: block;
  width: auto;
  height: 56px;
  padding: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(7, 54, 68, 0.1);
  object-fit: contain;
  position: relative;
}

.services__panel-delivery--placeholder {
  visibility: hidden;
}

.services__panel-services {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  justify-items: center;
  gap: 12px;
  width: auto;
  padding-inline: 16px 0;
}

.services__panel-services::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 10px;
  width: 1px;
  background: linear-gradient(180deg, transparent 0%, rgba(7, 54, 68, 0.18) 18%, rgba(7, 54, 68, 0.18) 82%, transparent 100%);
}

.services__panel-services--single {
  min-width: 0;
}

.services__panel-services--single .services__panel-service {
  grid-column: 1 / -1;
}

.services__panel-service {
  display: grid;
  justify-items: center;
  gap: 8px;
  min-width: 0;
  width: 100%;
}

.services__panel-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  width: 120px;
  padding: 0 8px;
  border-radius: 8px;
  font-size: 0.96rem;
  font-weight: 900;
  line-height: 1;
  text-transform: none;
  justify-self: end;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.services__panel-cta:hover {
  transform: translateY(-2px);
}

.services__panel-cta--restaurant,
.services__panel-cta--pizzeria {
  background: var(--mojo-soft-blue);
  color: var(--mojo-white);
  box-shadow: 0 10px 24px rgba(44, 148, 167, 0.24);
}

.services__panel .services__panel-icon {
  display: grid;
  place-items: center;
  width: clamp(62px, 4.4vw, 74px);
  aspect-ratio: 1;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(180deg, rgba(235, 246, 248, 0.98), rgba(247, 250, 250, 0.96));
  box-shadow: inset 0 0 0 2px rgba(44, 148, 167, 0.16);
}

.services__panel .services__panel-icon img {
  width: 48%;
  height: 48%;
  object-fit: contain;
  position: relative;
}

.services__panel-service-label {
  color: var(--mojo-dark-2);
  max-width: 8ch;
  font-size: 0.7rem;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
}

@media (max-width: 1320px) {
  .services__panel {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "body body"
      "services cta";
    align-items: end;
    row-gap: 18px;
  }

  .services__panel-body {
    grid-area: body;
  }

  .services__panel-services {
    grid-area: services;
    width: 196px;
    padding-inline: 0;
  }

  .services__panel-services::before {
    display: none;
  }

  .services__panel-cta {
    grid-area: cta;
    align-self: center;
  }
}

.services-duo {
  padding-block: clamp(56px, 6vw, 78px);
  background:
    radial-gradient(circle at top center, rgba(44, 148, 167, 0.08), transparent 34%),
    linear-gradient(180deg, #fefdf9 0%, #f8f4eb 100%);
  overflow: hidden;
}

.services-duo__inner {
  display: grid;
  gap: clamp(24px, 3vw, 38px);
}

.services-duo__heading {
  display: grid;
  justify-items: center;
  gap: 10px;
  text-align: center;
}

.services-duo__heading .section-title {
  max-width: none;
  font-size: clamp(2.6rem, 5.1vw, 4.6rem);
}

.services-duo__heading p:last-child {
  max-width: 60ch;
  margin: 0;
  color: color-mix(in srgb, var(--mojo-dark-2) 76%, white);
  font-size: 0.98rem;
  line-height: 1.52;
}

.services-duo__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 2.4vw, 30px);
  align-items: start;
}

.services-duo__venue {
  position: relative;
  display: grid;
  grid-template-columns: minmax(180px, 220px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(16px, 1.6vw, 22px);
  padding: clamp(18px, 2vw, 24px);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 246, 238, 0.98)),
    #fff;
  border: 1px solid rgba(7, 54, 68, 0.08);
  box-shadow: 0 20px 44px rgba(8, 41, 50, 0.07);
}

.services-duo__venue::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 22px;
  border: 1px solid rgba(44, 148, 167, 0.12);
  pointer-events: none;
}

.services-duo__media {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 0;
}

.services-duo__media::before {
  content: "";
  position: absolute;
  inset: auto 50% 8px;
  width: 72%;
  height: 14px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(7, 54, 68, 0.18) 0%, rgba(7, 54, 68, 0) 72%);
  transform: translateX(-50%);
  filter: blur(7px);
  opacity: 0.58;
}

.services-duo__media::after {
  content: "";
  position: absolute;
  inset: 10% 8% 14%;
  border-radius: 38%;
  background: radial-gradient(circle, rgba(44, 148, 167, 0.12) 0%, rgba(44, 148, 167, 0.04) 48%, rgba(44, 148, 167, 0) 72%);
  z-index: 0;
}

.services-duo__media img {
  position: relative;
  z-index: 1;
  display: block;
  width: min(100%, 248px);
  height: auto;
  object-fit: contain;
}

.services-duo__card {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  width: 100%;
  padding: clamp(18px, 1.8vw, 22px);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 244, 235, 0.98));
  border: 1px solid rgba(7, 54, 68, 0.1);
}

.services-duo__card-head {
  display: grid;
  gap: 10px;
}

.services-duo__logo {
  display: block;
  width: auto;
  max-width: min(100%, 240px);
  height: 40px;
}

.services-duo__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.services-duo__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 7px 13px;
  border-radius: 999px;
  border: 1px solid rgba(7, 54, 68, 0.12);
  background: rgba(255, 255, 255, 0.78);
  color: var(--mojo-dark-2);
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.services-duo__copy {
  max-width: 28ch;
  margin: 0;
  color: color-mix(in srgb, var(--mojo-dark-2) 78%, white);
  font-size: 0.96rem;
  font-weight: 500;
  line-height: 1.48;
}

.services-duo__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 16px;
  background: var(--mojo-soft-blue);
  color: var(--mojo-white);
  font-size: 0.95rem;
  font-weight: 900;
  line-height: 1;
  justify-self: start;
  box-shadow: 0 10px 22px rgba(44, 148, 167, 0.16);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.services-duo__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(44, 148, 167, 0.22);
}

.reviews {
  padding-block: clamp(58px, 5.8vw, 86px);
}

.reviews__inner {
  display: grid;
  grid-template-columns: minmax(250px, 0.52fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(32px, 5vw, 78px);
}

.reviews__heading .section-title {
  margin-bottom: 18px;
  font-size: clamp(3.2rem, 5vw, 5.6rem);
  line-height: 0.9;
  color: #fff;
}

.reviews__heading .section-title span{
  color:#fff;
}

.reviews__heading p:not(.eyebrow) {
  max-width: 34ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.1vw, 1.15rem);
  font-weight: 400;
  line-height: 1.45;
}

.reviews__heading p.reviews__note {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.94);
  font-weight: 700;
}

.review-grid {
  display: grid;
  gap: 18px;
}

.stars {
  color: var(--mojo-accent);
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  line-height: 1;
}

.review-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  padding: clamp(20px, 2.3vw, 28px);
  border: 2px solid rgba(7, 54, 68, 0.1);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(2, 42, 53, 0.08);
  position: relative;
}

.review-item__top {
  display: flex;
  grid-column: 1 / -1;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.review-item__logo{
  height: clamp(78px, 6vw, 94px);
  width: auto;
}

.review-item__google{
  display: inline;
  vertical-align: middle;
  width: 1em;
  margin-right: 5px;
}

.review-item h3 {
  margin: 0;
  color: var(--mojo-dark-2);
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.25vw, 2.75rem);
  font-weight: 400;
  line-height: 0.95;
  text-transform: uppercase;
}

.review-item__top > span {
  flex: 0 0 auto;
  padding: 7px 11px;
  border: 2px solid rgba(7, 54, 68, 0.12);
  border-radius: 999px;
  color: rgba(7, 54, 68, 0.72);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.review-item__rating {
  display: flex;
  flex-wrap: wrap;
  grid-column: 1 / -1;
  align-items: baseline;
  gap: 8px 14px;
  flex-direction: column;
  align-items: flex-end;
}

.review-item__rating strong {
  color: var(--mojo-dark-2);
  font-size: clamp(1.5rem, 2vw, 2rem);
  line-height: 1;
}

.review-item__rating > span:last-child,
.review-item p {
  color: rgba(7, 54, 68, 0.5);
  font-weight: 400;
}

.review-item p {
  margin: 0;
}

.review-item__actions {
  display: flex;
  flex-wrap: wrap;
  grid-column: 1 / -1;
  align-items: center;
  gap: 12px 16px;
}

.review-item a {
  color: var(--mojo-soft-blue);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.review-item__button {
  min-height: 46px;
  padding: 11px 18px;
  color: var(--mojo-white) !important;
  font-size: 0.82rem;
  font-weight: 900 !important;
  text-decoration: none !important;
  text-underline-offset: 0;
}
.quote{
  position: relative;
  overflow: hidden;
}
.quote::after {
  content: "";
  position: absolute;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 130px;
  background: var(--mojo-dark-2);
  pointer-events: none;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  bottom: -80px;
  -webkit-mask-image: var(--torn-edge-bottom);
  mask-image: var(--torn-edge-bottom);
}
.quote__backdrop {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  display: grid;
  place-items: center;
  text-align: center;
  background: var(--mojo-dark);
}

.quote__video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.quote__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7));
}

.quote__content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.quote__content p {
  width: min(720px, calc(100vw - 48px));
  margin: 0 0 18px;
  font-family: "Roboto Serif", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
}

.quote__content span {
  display: block;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
  text-transform: uppercase;
}

.gallery {
  position: relative;
}

.gallery .container {
  position: relative;
  width: 100vw;
}

.gallery__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: clamp(24px, 4vw, 56px);
  width: min(1160px, calc(100% - 24px));
  margin: 0 auto clamp(26px, 4vw, 44px);
}

.gallery__heading .section-title {
  margin-bottom: 0;
}

.instagram-sticker {
  position: relative;
  z-index: 2;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
  max-width: 100%;
  padding: 13px 18px 13px 14px;
  border: 3px solid var(--mojo-dark);
  border-radius: 18px;
  color: var(--mojo-dark);
  background: var(--mojo-accent);
  box-shadow: 8px 8px 0 var(--mojo-dark);
  transform: rotate(1.5deg);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

.instagram-sticker:hover {
  transform: translateY(-2px) rotate(-1deg);
  box-shadow: 10px 11px 0 var(--mojo-dark);
}

.instagram-sticker__mark {
  display: grid;
  width: 42px;
  aspect-ratio: 1;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 14px;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.instagram-sticker small,
.instagram-sticker strong {
  display: block;
}

.instagram-sticker small {
  margin-bottom: 2px;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.instagram-sticker strong {
  font-size: clamp(1.08rem, 1.5vw, 1.36rem);
  line-height: 1;
}

.instagram-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 0;
  align-items: stretch;
}

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0Px;
}

.gallery-strip img {
  width: 100%;
  aspect-ratio: 1 / 1.5;
  object-fit: cover;
  box-shadow: 0 14px 32px rgba(2, 42, 53, 0.12);
}

.instagram-panel {
  position: relative;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 16px 24px;
  border: 3px solid var(--mojo-dark);
  border-radius: 0;
  color: var(--mojo-white);
  background:
    var(--pattern),
    linear-gradient(160deg, rgba(4, 42, 53, 0.98), rgba(18, 98, 116, 0.96));
  background-size: 520px auto, auto;
  box-shadow: 0 20px 42px rgba(2, 42, 53, 0.2);
}

.instagram-panel::after {
  content: "@";
  position: absolute;
  right: -18px;
  bottom: -38px;
  color: var(--mojo-accent);
  font-family: var(--font-display);
  font-size: 12rem;
  font-weight: 700;
  line-height: 0.8;
  pointer-events: none;
  opacity: .1;
}

.instagram-panel__label {
  margin: 0 0 14px;
  color: var(--mojo-accent);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.instagram-panel__handle {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  line-height: 0.9;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.instagram-panel__copy {
  position: relative;
  z-index: 1;
  margin: 22px 0 28px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.45;
}

.instagram-panel .button {
  position: relative;
  z-index: 1;
  align-self: flex-start;
}

.gallery__cta {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.mascot--gallery {
  left: -90px;
  bottom: -110px;
  width: 300px;
  transform: scaleX(-100%) rotate(5deg);
  transform-origin: 50% 100%;
}

.booking {
  position: relative;
  padding: 0;
}

.booking__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  align-items: center;
  gap: clamp(34px, 5vw, 68px);
  min-height: 360px;
}

.booking p {
  max-width: 42ch;
  margin: 0;
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.6;
}

.booking__actions {
  display: grid;
  gap: 18px;
}

.booking__actions .button {
  width: 100%;
  justify-content: space-between;
  min-height: 64px;
}

.mascot--booking {
  right: -8px;
  top: -110px;
  width: clamp(120px, 14vw, 180px);
}

.footer {
  padding: 56px 0;
  color: var(--mojo-white);
  background:
    var(--pattern),
    linear-gradient(180deg, rgba(4, 42, 53, 1), rgba(4, 42, 53, 1));
  background-size: 620px auto, auto;
}

.footer__stack {
  display: grid;
  gap: 34px;
}

.footer__venue {
  padding: clamp(10px, 1.4vw, 18px) 0;
}

.footer__venue--pizzeria{
  border-bottom: 1px solid #ffffff45;
}

.footer__venue-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px 28px;
  margin-bottom: 18px;
}

.footer__venue-logo {
  width: auto;
  max-width: min(100%, 260px);
  height: 64px;
}

.footer__venue-kicker {
  margin: 0;
  color: var(--mojo-accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1.1;
  text-transform: uppercase;
}

.footer__venue-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px 24px;
  align-items: start;
}

.footer__venue-block {
  display: grid;
  gap: 8px;
  align-content: start;
}

.footer__venue-block p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
  line-height: 1.5;
}

p.footer__label{
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.footer__venue-block--actions {
  justify-items: start;
}

.footer__actions {
  display: grid;
  gap: 12px;
  width: 100%;
}

.footer__action {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 0;
  border-radius: 12px;
  background: var(--mojo-soft-blue);
  color: var(--mojo-white);
  cursor: pointer;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 12px 24px rgba(44, 148, 167, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.footer__action:hover,
.footer__action:focus-visible {
  filter: brightness(1.04);
  transform: translateY(-2px);
  box-shadow: 0 18px 28px rgba(44, 148, 167, 0.22);
}

.footer__instagram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 9px 13px;
  border: 2px solid rgba(242, 181, 50, 0.72);
  border-radius: 12px;
  color: var(--mojo-accent);
  font-weight: 900;
}

.footer__delivery-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
}

.footer__delivery-links a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 48px;
  padding: 5px 12px 5px 5px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  color: var(--mojo-white);
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 10px 22px rgba(1, 22, 27, 0.18);
  transition: transform 180ms ease, filter 180ms ease;
}

.footer__delivery-links a:hover,
.footer__delivery-links a:focus-visible {
  filter: brightness(1.04);
  transform: translateY(-2px);
}

.footer__delivery-links a:active {
  transform: translateY(0) scale(0.98);
}

.footer__delivery-links img {
  display: block;
  width: 38px;
  height: auto;
}

@media (min-width: 981px) and (max-height: 860px) {
  .hero {
    padding-bottom: 28px;
  }

  .top-nav {
    padding-top: 22px;
    padding-bottom: 24px;
  }

  .top-nav__logo img {
    width: 88px;
  }

  .hero__title {
    font-size: 80px;
    margin-bottom: 14px;
  }

  .hero__lede {
    max-width: 720px;
    margin-bottom: 42px;
  }

  .venue-card {
    min-height: 220px;
    padding: 24px 28px;
  }

  .venue-card img {
    max-height: 180px;
  }

  .venue-card p {
    font-size: 0.94rem;
  }

  .actions {
    margin-top: 16px;
  }
}

@media (max-width: 980px) {
  .gallery .container {
    padding-right: 0;
  }

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

  .instagram-showcase {
    grid-template-columns: 1fr;
  }

  .instagram-panel {
    width: min(100% - 24px, 620px);
    margin-inline: auto;
    min-width: 100%;
  }

  .gallery.section{
    padding-bottom: 0;
  }

  .services > .container,
  .signature > .container {
    width: min(100% - 60px, 1160px);
  }

  .top-nav {
    grid-template-columns: auto 1fr;
  }

  .top-nav__links {
    display: none;
  }

  .top-nav .button {
    justify-self: end;
  }

  .venues,
  .story__grid,
  .reviews__inner,
  .booking__grid {
    grid-template-columns: 1fr;
  }

  .reviews__heading {
    position: static;
  }

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

  .venue-card img {
    max-width: 340px;
    margin-inline: auto;
  }

  .story__copy {
    max-width: 760px;
    margin-inline: auto;
  }

  .story .section-title {
    white-space: normal;
  }

  .story__copy p {
    max-width: 48ch;
  }

  .badges {
    margin-inline: auto;
  }

  .story__visual {
    min-height: clamp(460px, 68vw, 620px);
  }

  .story__photo {
    right: 50%;
    width: min(560px, 86vw);
    transform: translateX(50%);
  }

  .mascot--story {
    right: max(0px, calc(50% - 330px));
    bottom: 0;
    width: clamp(140px, 20vw, 215px);
  }

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

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

  .menu-cta__actions {
    width: min(100%, 360px);
  }

  .services__layout {
    width: 100%;
    min-width: 100%;
    margin-left: 0;
  }

  .services__hero {
    min-height: auto;
  }

  .services__hero img {
    position: relative;
    height: 48px;
    object-position: center top;
  }

  .services__hero-overlay {
    position: relative;
    inset: auto;
    margin-top: -110px;
    padding: 0 20px 20px;
    pointer-events: auto;
  }

  .services__hero::after {
    display: none;
  }

  .services__cards {
    gap: 16px;
    width: min(920px, 100%);
  }

  .services-duo {
    padding-block: 60px 72px;
  }

  .services-duo__heading {
    justify-items: start;
    text-align: left;
  }

  .services-duo__heading .section-title,
  .services-duo__heading p:last-child {
    max-width: none;
  }

  .services-duo__grid {
    grid-template-columns: 1fr;
  }

  .services-duo__venue {
    grid-template-columns: minmax(180px, 220px) minmax(0, 1fr);
    padding: 20px;
  }

  .services-duo__media {
    width: 100%;
    min-height: 0;
  }

  .services-duo__card {
    width: 100%;
  }

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

  .footer__venue-head {
    flex-direction: column;
    align-items: flex-start;
  }

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

@media (min-width: 621px) and (max-width: 980px) {
  .services__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
  }

  .services__panel {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    min-height: 0;
    padding: 22px 18px 20px;
    row-gap: 14px;
  }

  .services__panel-body {
    grid-template-rows: auto auto auto auto;
    justify-items: center;
    align-content: start;
  }

  .services__panel-brand {
    min-height: auto;
  }

  .services__panel-brand img {
    height: 36px;
    max-width: min(100%, 210px);
  }

  .services__panel-kicker {
    font-size: 0.82rem;
  }

  .services__panel-copy {
    max-width: 26ch;
    font-size: 0.93rem;
    text-align: center;
  }

  .services__panel-delivery {
    justify-content: center;
  }

  .services__panel-services {
    width: 100%;
    grid-template-columns: repeat(2, minmax(92px, 108px));
    justify-content: center;
    justify-items: center;
    gap: 14px;
    padding-inline: 0;
    padding-top: 12px;
  }

  .services__panel-services::before {
    top: 0;
    left: 50%;
    right: auto;
    bottom: auto;
    width: 124px;
    height: 1px;
    transform: translateX(-50%);
  }

  .services__panel-services--single {
    grid-template-columns: 1fr;
    max-width: 124px;
  }

  .services__panel .services__panel-icon {
    width: 70px;
  }

  .services__panel-service-label {
    max-width: none;
    font-size: 0.88rem;
  }

  .services__panel-cta {
    width: min(100%, 220px);
    justify-self: center;
  }
}

@media (max-width: 620px) {
  .services > .container,
  .signature > .container,
  .container,
  .top-nav {
    width: min(100% - 60px, 1160px);
  }

  .section {
    padding: 68px 0;
  }

  .hero {
    padding-bottom: 68px;
  }

  .top-nav {
    padding: 24px 0 56px;
  }

  .top-nav__logo img {
    width: 92px;
  }

  .top-nav .button {
    min-width: 0;
    padding-inline: 16px;
  }
  .eyebrow{
    font-size: 12px;
  }

  .hero__inner{
    padding: 20px 0;
  }

  .hero__title {
    font-size: 40px;
  }

  .hero__lede {
    font-size: 0.96rem;
  }

  .venue-card {
    padding: 26px;
    min-height: auto;
    background:
      url(assets/figma/pizza1.png),
      linear-gradient(90deg, rgba(4, 42, 53, 0.99) 0%, rgba(4, 42, 53, 0.94) 58%, rgba(4, 42, 53, 0.82) 100%),
      var(--mojo-dark-2);
    background-size: auto 140px, auto, auto;
    background-repeat: no-repeat;
    background-position: right top, center, center;
    border-color:#3f5f64;
  }

  .venue-card:nth-child(2){
    background: url(assets/figma/pates.png), linear-gradient(90deg, rgba(4, 42, 53, 0.99) 0%, rgba(4, 42, 53, 0.94) 58%, rgba(4, 42, 53, 0.82) 100%), var(--mojo-dark-2);
    background-size: auto 140px, auto, auto;
    background-repeat: no-repeat;
    background-position: right top, center, center;
  }

  .venue-card h3 {
    font-size: 2.25rem;
  }

  .venue-card .venue-card__brand {
    margin-bottom: 12px;
    font-size: 0;
    line-height: 0;
  }

  .venue-card__logo-text {
    font-size: 1.45rem;
  }

  .venue-card img.venue-card__food {
    top: -24px;
    left: 94px;
    width: 54px;
  }

  .venue-card img.venue-card__food--restaurant {
    top: -26px;
    left: 88px;
    width: 58px;
  }

  .actions,
  .booking__actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .section-title {
    font-size: clamp(2.55rem, 13vw, 3.7rem);
  }

  .services {
    padding: 0;
    display: none;
  }

  .services__layout {
    width: 100%;
    margin-left: 0;
  }

  .services__hero-overlay {
    margin-top: -20px;
    padding: 0 14px 14px;
  }

  .services__cards {
    grid-template-columns: 1fr;
    gap: 14px;
    width: 100%;
  }

  .services__panel {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    min-height: 0;
    padding: 18px 16px 18px;
  }

  .services__panel-body {
    justify-items: center;
  }

  .services__panel-brand {
    font-size: clamp(1.65rem, 7vw, 2.1rem);
  }

  .services__panel-brand img {
    height: 34px;
    max-width: min(100%, 192px);
  }

  .services__panel-kicker {
    font-size: 0.8rem;
  }

  .services__panel-services {
    width: 100%;
    grid-template-columns: repeat(2, minmax(96px, 112px));
    justify-content: center;
    justify-items: center;
    padding-inline: 0;
    padding-top: 12px;
  }

  .services__panel-services::before {
    top: 0;
    left: 50%;
    right: auto;
    bottom: auto;
    width: 120px;
    height: 1px;
    transform: translateX(-50%);
  }

  .services__panel-copy {
    max-width: 100%;
    font-size: 0.94rem;
    text-align: center;
  }

  .services__panel-delivery {
    justify-content: center;
    flex-wrap: wrap;
  }

  .services__panel-delivery--placeholder{
    display: none;
  }

  .services__panel-cta {
    width: 100%;
  }

  .services-duo {
    padding-block: 56px 68px;
    background:
      radial-gradient(circle at top center, rgba(44, 148, 167, 0.09), transparent 28%),
      linear-gradient(180deg, #fdfaf3 0%, #f7f1e6 100%);
  }

  .services-duo__inner {
    gap: 30px;
  }

  .services-duo__heading {
    gap: 10px;
  }

  .services-duo__heading p:last-child {
    font-size: 0.98rem;
  }

  .services-duo__venue {
    grid-template-columns: 1fr;
    padding: 18px;
    border-radius: 28px;
  }

  .services-duo__venue::before {
    inset: 12px;
    border-radius: 22px;
  }

  .services-duo__media {
    min-height: 0;
  }

  .services-duo__media img {
    width: min(100%, 240px);
  }

  .services-duo__card {
    gap: 16px;
    padding: 18px;
    border-radius: 24px;
  }

  .services-duo__logo {
    height: 40px;
  }

  .services-duo__tags {
    gap: 8px;
  }

  .services-duo__tag {
    min-height: 34px;
    padding: 7px 14px;
    font-size: 0.8rem;
  }

  .services-duo__copy {
    max-width: none;
    font-size: 0.96rem;
  }

  .services-duo__cta {
    width: 100%;
  }

  .story {
    padding: 0px 0px 68px;
  }

  .story .section-title {
    margin-bottom: 26px;
    font-size: clamp(3.25rem, 15vw, 4.45rem);
    line-height: 0.95;
  }

  .story__copy p {
    width: min(100%, calc(100vw - 32px));
    max-width: calc(100vw - 32px);
    margin-bottom: 24px;
    font-size: 1rem;
    line-height: 1.4;
  }

  .badges {
    width: min(100%, calc(100vw - 32px));
    max-width: calc(100vw - 32px);
    gap: 10px;
    margin-top: 34px;
  }

  .badge {
    gap: 8px;
  }

  .badge svg,
  .badge img {
    width: 48px;
  }

  .badge svg {
    stroke-width: 4;
  }

  .badge b {
    font-size: 0.82rem;
  }

  .story__visual {
    min-height: 390px;
    background: none;;
    margin-top: -50px;;
  }

  .story__copy{
    order:2;
  }

  .story__photo {
    right: 50%;
    transform: translateX(50%);
    width: min(340px, 88%);
    border-width: 8px;
  }

  .mascot--story {
    left: 20px;
    right: 0;
    margin: auto;
    bottom: -30px;
    width: 240px;
  }

  .dish-grid,
  .gallery-strip,
  .footer__venue-grid {
    grid-template-columns: 1fr;
  }

  .gallery-strip{
    grid-template-columns: 1fr 1fr;
  }

  .footer__venue {
    padding: 6px 0;
  }

  .footer__venue-logo {
    height: 42px;
  }

  .footer__delivery-links a,
  .footer__action,
  .footer__instagram {
    width: 100%;
  }

  .gallery__heading {
    width: min(100% - 28px, 1160px);
  }

  .instagram-sticker {
    width: 100%;
    justify-content: center;
    transform: none;
  }

  .instagram-sticker:hover {
    transform: translateY(-2px);
  }

  .dish-card img {
    height: 220px;
  }

  .menu-cta__actions,
  .menu-cta__actions .button {
    width: 100%;
  }

  .review-item {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .review-item__logo{
    height: 48px;
  }
  .review-item__rating > span:last-child, .review-item p{
    font-size: 12px;
  }

  .review-item a {
    justify-self: start;
  }

  .mascot--gallery,
  .mascot--booking {
    display: none;
  }
}

.footer__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.82);
}

.footer__meta p {
  margin: 0;
}

.footer__meta-link {
  color: var(--mojo-white);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.footer__meta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.footer__meta-button {
  appearance: none;
  padding: 0;
  border: 0;
  color: var(--mojo-white);
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.cookie-banner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 1000;
  display: flex;
  justify-content: flex-end;
  pointer-events: none;
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner__panel {
  width: min(340px, 100%);
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background:
  linear-gradient(180deg, rgb(255 255 255 / 96%), rgb(223 229 231 / 98%)), var(--mojo-dark);
  box-shadow: 0 18px 42px rgba(2, 42, 53, 0.28);
  backdrop-filter: blur(14px);
  pointer-events: auto;
}

.cookie-banner__eyebrow {
  margin: 0 0 8px;
  color: var(--mojo-dark);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cookie-banner__copy,
.cookie-banner__note {
  margin: 0;
  color: var(--mojo-dark);
  font-size: 0.75rem;
  line-height: 1.5;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 14px 0 10px;
}

.cookie-banner .button {
  min-height: 42px;
  padding: 11px 18px;
  font-size: 0.82rem;
}

.cookie-banner .button--primary {
  background: #5da7bc;
}

.cookie-banner .button--outline-dark {
  color: var(--mojo-dark);
  border-color: rgba(7, 54, 68, 0.34);
  background: transparent;
}

.legal-page {
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(2, 49, 60, 0.96) 0%, rgba(4, 42, 53, 0.92) 100%),
    var(--pattern),
    var(--mojo-dark-2);
  color: var(--mojo-white);
}

.legal-hero {
  position: relative;
  overflow: hidden;
  padding: 0px 0 44px 96px;
  background:
    radial-gradient(circle at top right, rgba(255, 162, 77, 0.26), transparent 34%),
    linear-gradient(180deg, rgba(21, 95, 114, 0.3), rgba(0, 52, 62, 0));
}

.legal-hero__inner {
  display: grid;
  gap: 20px;
  padding-top: 80px;
}

.legal-hero__title {
  max-width: 9ch;
}

.legal-hero__lede {
  max-width: 760px;
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.7;
}

.legal-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.legal-section {
  padding: 0 0 88px;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.legal-card {
  padding: 28px;
  border: 2px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.legal-card h2 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2vw, 2rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.legal-card p,
.legal-card li {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
}

.legal-card ul {
  margin: 0;
  padding-left: 18px;
}

.legal-card a {
  color: var(--mojo-white);
}

.legal-note {
  padding: 14px 16px;
  border-left: 4px solid var(--mojo-accent);
  border-radius: 12px;
  background: rgba(255, 162, 77, 0.12);
}

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

@media (max-width: 640px) {
  .footer__meta {
    align-items: flex-start;
  }

  .footer__meta-actions {
    align-items: flex-start;
  }

  .cookie-banner {
    right: 12px;
    bottom: 12px;
    left: 12px;
    justify-content: stretch;
  }

  .cookie-banner__panel {
    width: 100%;
    padding: 16px;
  }

  .legal-hero {
    padding: 0 0 80px;
  }

  .legal-card {
    padding: 22px;
  }

  .legal-hero__actions,
  .legal-hero__actions .button {
    width: 100%;
  }
}
