/* Final visual consistency pass: typography, conversion controls, and responsive rhythm. */
:root {
  --under-ink: #071d43;
  --under-blue: #1351aa;
  --under-salmon: #ff751f;
  --under-mint: #00bf63;
  --under-paper: #f5f4f5;
}

html { scroll-behavior: smooth; }

body {
  color: var(--under-ink);
  font-family: "Manrope", Arial, sans-serif;
  text-rendering: optimizeLegibility;
}

button,
input,
textarea,
select { font: inherit; }

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(255, 117, 31, 0.7);
  outline-offset: 3px;
}

#menu { scroll-margin-top: 6px; }
#delivery,
#about { scroll-margin-top: 92px; }

/* Shared control language */
.button,
.source-button {
  border-radius: 6px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0;
}

.site-header {
  border-bottom-color: rgba(7, 29, 67, 0.14);
  background: rgba(245, 244, 245, 0.94);
}

.primary-nav a,
.language-switch button,
.language-switch a {
  letter-spacing: 0.03em;
}

.cart-trigger {
  border-radius: 6px;
  background: var(--under-blue);
}

.cart-trigger:hover { background: var(--under-ink); }

/* Menu: fixed rhythm, real food photographs, and one type scale. */
.menu-stage { background: var(--under-paper); }

.menu-stage .menu-section {
  width: min(1480px, calc(100% - 64px));
  margin: 0 auto;
  padding: clamp(72px, 8vw, 116px) 0 76px;
}

.menu-stage .section-head {
  gap: clamp(28px, 6vw, 84px);
  margin-bottom: 31px;
}

.menu-stage .section-title {
  color: var(--under-ink) !important;
  font-family: "Bricolage Grotesque", Arial, sans-serif !important;
  font-size: clamp(42px, 5vw, 70px) !important;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.92;
}

.menu-stage .section-note {
  max-width: 330px;
  color: #415a82;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.55;
}

.menu-stage .category-row {
  gap: 7px;
  margin-bottom: 26px;
  padding: 12px 0;
}

.menu-stage .category-button {
  min-height: 36px;
  padding: 0 13px;
  border-color: rgba(7, 29, 67, 0.2);
  border-radius: 999px;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 10px;
  font-weight: 800;
}

.menu-stage .menu-grid {
  grid-auto-rows: 390px;
  gap: 16px;
}

.menu-stage .menu-card {
  overflow: hidden;
  border-color: rgba(19, 81, 170, 0.17);
  border-radius: 6px;
  background: #fff;
  box-shadow: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.menu-stage .menu-card:hover {
  border-color: var(--under-blue);
  box-shadow: 8px 8px 0 var(--under-salmon);
  transform: translate(-3px, -3px);
}

.menu-stage .menu-card:focus-visible {
  outline: 3px solid rgba(255, 117, 31, 0.7);
  outline-offset: 3px;
}

.menu-stage .menu-image {
  height: 206px;
  border-bottom-color: rgba(19, 81, 170, 0.17);
  background: #f4f3ef;
}

.menu-stage .menu-image::after {
  top: 11px;
  left: 11px;
  padding: 5px 7px;
  background: var(--under-blue);
  font-size: 8px;
}

.menu-stage .menu-image img {
  display: block;
  object-position: center;
  transition: transform 280ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.menu-stage .menu-body { padding: 15px 15px 13px; }

.menu-stage .menu-category {
  margin-bottom: 6px;
  color: var(--under-salmon);
  font-size: 8px;
}

.menu-stage .menu-name {
  display: -webkit-box;
  min-height: 34px;
  margin-bottom: 7px;
  overflow: hidden;
  color: var(--under-ink);
  font-family: "Bricolage Grotesque", Arial, sans-serif;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.menu-stage .menu-description {
  display: -webkit-box;
  min-height: 30px;
  margin: 0 0 12px;
  overflow: hidden;
  color: #52698d;
  font-size: 10px;
  font-weight: 550;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.menu-stage .price {
  font-family: "Bricolage Grotesque", Arial, sans-serif;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: 0;
}

.menu-stage .add-button {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: #fff;
  border-radius: 6px;
  background: var(--under-blue);
}

.menu-stage .add-button:hover {
  color: #fff;
  background: var(--under-salmon);
}

.menu-stage .add-button i { width: 17px; height: 17px; }

.menu-stage .menu-cta-row {
  justify-content: space-between;
  margin-top: 34px;
  padding-top: 24px;
  font-size: 13px;
  font-weight: 650;
}

/* Cart and checkout remove dead space and keep the primary step in reach. */
.cart-drawer { background: var(--under-paper); }

.drawer-header,
.cart-summary { background: #fff; }

.drawer-header h2,
.dialog-header h2 {
  color: var(--under-ink);
  font-family: "Bricolage Grotesque", Arial, sans-serif;
  font-weight: 800;
}

.cart-list { padding-top: 4px; }

.cart-row {
  margin-top: 12px;
  padding: 12px;
  border: 1px solid rgba(19, 81, 170, 0.13);
  border-radius: 6px;
  background: #fff;
}

.cart-row img { border-radius: 4px; }

.cart-summary { box-shadow: 0 -12px 32px rgba(7, 29, 67, 0.06); }

.cart-whatsapp-hint {
  max-width: 300px;
  color: #435c83;
  font-weight: 650;
}

.checkout-dialog {
  max-height: min(720px, calc(100dvh - 32px));
  border: 1px solid rgba(7, 29, 67, 0.15);
}

.checkout-receipt { background: #eef3fb; }
.checkout-form-area { padding: 24px 28px; }
.checkout-form-area > p { margin-bottom: 14px; }
.order-methods { margin-bottom: 14px; }
.order-method { min-height: 64px; border-radius: 5px; }
.text-input,
.select-input,
.textarea { border-radius: 5px; }
.form-grid { gap: 10px; }

.checkout-note {
  margin-top: 12px;
  color: #435c83;
  border-top: 1px solid rgba(19, 81, 170, 0.16);
}

.checkout-note summary {
  padding: 10px 0;
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
}

.checkout-note .form-field { padding-bottom: 12px; }
.checkout-note .textarea { min-height: 64px; }

.checkout-submit-row {
  margin-top: 8px;
  padding-top: 1px;
}

.checkout-submit-row .button { min-height: 48px; }

/* Product photography stays clean in details: one neutral stage, no decorative blocks. */
.product-detail-visual,
.product-detail-visual--source-photo {
  background: var(--under-paper);
}

.product-detail-visual::before,
.product-detail-visual::after,
.product-detail-visual--source-photo::before,
.product-detail-visual--source-photo::after { display: none; }

.dialog--product .product-detail-image,
.product-detail-visual--source-photo .product-detail-image {
  width: 94%;
  height: 94%;
  object-fit: contain;
  object-position: center;
  filter: saturate(1.12) contrast(1.04) drop-shadow(0 24px 19px rgba(7, 29, 67, 0.18));
  mix-blend-mode: multiply;
}

/* Product details use the same blue, salmon and paper system as the catalogue. */
.dialog--product .detail-category,
.dialog--product .detail-meta i { color: var(--under-salmon); }

/* The hero keeps the familiar poster composition, but now behaves like a live food display. */
.hero-showcase {
  perspective: 1200px;
}

.hero-showcase::before {
  position: absolute;
  top: 34px;
  right: 8%;
  z-index: -1;
  width: 436px;
  height: 436px;
  border: 1px solid rgba(19, 81, 170, 0.34);
  content: "";
  transform: rotate(-8deg);
  animation: hero-frame-shift 11s ease-in-out infinite;
}

.hero-showcase::after {
  position: absolute;
  top: 40px;
  right: 4%;
  z-index: -1;
  width: 2px;
  height: 74px;
  content: "";
  background: var(--under-blue);
  transform-origin: 50% 218px;
  animation: hero-signal-orbit 11s linear infinite;
}

.hero-orbit--outer { animation: hero-orbit-turn 18s linear infinite; }
.hero-orbit--inner { animation: hero-inner-breathe 7s ease-in-out infinite; }

.hero-sun--orange { animation: hero-orange-shift 11s ease-in-out infinite; }
.hero-sun--mint { animation: hero-mint-shift 8s ease-in-out infinite; }

.hero-roll {
  will-change: transform;
  animation-duration: 11s;
  animation-iteration-count: infinite;
  animation-timing-function: cubic-bezier(0.45, 0, 0.55, 1);
}

.hero-roll img {
  filter: saturate(1.12) contrast(1.03) drop-shadow(0 24px 20px rgba(7, 29, 67, 0.24));
  animation: hero-food-glow 5.5s ease-in-out infinite alternate;
  will-change: filter;
}

.hero-roll--duga { animation-name: hero-signature-duga; }
.hero-roll--zmaj { animation-name: hero-signature-zmaj; }
.hero-roll--fila { animation-name: hero-signature-fila; }

.hero-roll figcaption {
  padding: 5px 7px;
  background: rgba(245, 244, 245, 0.86);
  box-shadow: 4px 4px 0 rgba(255, 117, 31, 0.9);
}

.hero-showcase:hover .hero-roll,
.hero-showcase:hover .hero-orbit,
.hero-showcase:hover .hero-sun,
.hero-showcase:hover::before,
.hero-showcase:hover::after { animation-play-state: paused; }

@keyframes hero-orbit-turn { to { transform: rotate(360deg); } }

@keyframes hero-inner-breathe {
  0%, 100% { transform: scale(0.98); opacity: 0.65; }
  50% { transform: scale(1.04); opacity: 1; }
}

@keyframes hero-frame-shift {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-8deg); }
  50% { transform: translate3d(-16px, 10px, 0) rotate(-2deg); }
}

@keyframes hero-signal-orbit { to { transform: rotate(360deg); } }

@keyframes hero-orange-shift {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(11deg); }
  50% { transform: translate3d(-14px, 9px, 0) rotate(7deg); }
}

@keyframes hero-mint-shift {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(18deg) scale(1); }
  50% { transform: translate3d(-8px, -12px, 0) rotate(26deg) scale(1.08); }
}

@keyframes hero-signature-duga {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-7deg); }
  28% { transform: translate3d(-15px, -13px, 0) rotate(-3deg); }
  58% { transform: translate3d(-6px, 6px, 0) rotate(-8deg); }
  80% { transform: translate3d(5px, -5px, 0) rotate(-4deg); }
}

@keyframes hero-signature-zmaj {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(7deg); }
  26% { transform: translate3d(9px, -11px, 0) rotate(11deg); }
  55% { transform: translate3d(-11px, -5px, 0) rotate(4deg); }
  82% { transform: translate3d(6px, 8px, 0) rotate(9deg); }
}

@keyframes hero-signature-fila {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-5deg); }
  31% { transform: translate3d(-7px, 12px, 0) rotate(-1deg); }
  62% { transform: translate3d(10px, 1px, 0) rotate(-8deg); }
  84% { transform: translate3d(-4px, -7px, 0) rotate(-3deg); }
}

@keyframes hero-food-glow {
  from { filter: saturate(1.06) contrast(1.02) drop-shadow(0 21px 18px rgba(7, 29, 67, 0.22)); }
  to { filter: saturate(1.18) contrast(1.05) drop-shadow(0 29px 24px rgba(7, 29, 67, 0.28)); }
}

@media (max-width: 820px) {
  #menu { scroll-margin-top: 2px; }
  #delivery,
  #about { scroll-margin-top: 78px; }

  .menu-stage .menu-section {
    width: min(100% - 28px, 640px);
    padding: 64px 0 58px;
  }

  .menu-stage .section-title { font-size: 43px !important; }
  .menu-stage .section-note { margin-top: 15px; }
  .menu-stage .category-row { margin-right: -14px; margin-left: -14px; padding-right: 14px; padding-left: 14px; }
  .menu-stage .menu-grid { grid-auto-rows: 250px; gap: 10px; }
  .menu-stage .menu-image { height: 112px; }
  .menu-stage .menu-body { padding: 10px 10px 9px; }
  .menu-stage .menu-category { display: none; }
  .menu-stage .menu-name { min-height: 27px; margin-bottom: 4px; font-size: 13px; line-height: 1.02; }
  .menu-stage .menu-description { display: -webkit-box; min-height: 24px; margin: 0 0 7px; font-size: 8.5px; line-height: 1.35; -webkit-line-clamp: 2; }
  .menu-stage .price { font-size: 15px; }
  .menu-stage .add-button { width: 32px; height: 32px; }
  .menu-stage .menu-cta-row { display: block; text-align: center; }
  .menu-stage .menu-cta-row .source-button { margin-top: 14px; }

  .checkout-dialog { max-height: calc(100dvh - 20px); }
  .checkout-layout { grid-template-columns: 1fr; }
  .checkout-receipt { display: none; }
  .checkout-form-area { padding: 20px 17px 18px; }

  .hero--v4,
  .hero-inner { min-height: 838px; }

  .hero-showcase {
    min-height: 383px;
    margin-top: 12px;
  }

  .hero-showcase::before {
    top: 22px;
    right: 10%;
    width: 282px;
    height: 282px;
  }

  .hero-showcase::after {
    top: 25px;
    right: 8%;
    height: 48px;
    transform-origin: 50% 141px;
  }

  .hero-roll figcaption { display: none; }
  .hero-showcase-note { bottom: 0; left: 5%; }
}

@media (max-width: 430px) {
  .menu-stage .menu-grid { grid-auto-rows: 232px; gap: 8px; }
  .menu-stage .menu-image { height: 116px; }
  .menu-stage .menu-name { font-size: 13px; }
  .hero--v4,
  .hero-inner { min-height: 820px; }
  .hero-showcase { min-height: 365px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-showcase::before,
  .hero-showcase::after,
  .hero-orbit,
  .hero-sun,
  .hero-roll,
  .hero-roll img { animation: none !important; }
  .menu-stage .menu-card,
  .menu-stage .menu-image img { transition: none; }
}

/* Audit pass 03: the lower journey, page hierarchy, and action colour system. */
button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline-color: rgba(255, 117, 31, 0.82);
}

.menu-stage .add-button:hover,
.menu-stage .add-button:focus-visible {
  color: #fff;
  background: var(--under-salmon);
}

.menu-stage .menu-card:focus-visible {
  outline-color: rgba(255, 117, 31, 0.8);
}

.dialog--product .button-primary {
  color: #fff;
  background: var(--under-salmon);
}

.dialog--product .button-primary:hover { background: #e86317; }

.cart-summary .button-primary,
.checkout-submit-row .button-primary {
  color: #fff;
  background: var(--under-blue);
}

.cart-summary .button-primary:hover,
.checkout-submit-row .button-primary:hover { background: var(--under-ink); }

/* The lower content now follows the same font, spacing and action logic as the ordering surface. */
.signature-band {
  min-height: 280px;
  grid-template-columns: minmax(260px, 1.1fr) minmax(260px, 0.84fr) minmax(220px, 0.5fr);
  gap: clamp(24px, 4vw, 64px);
  padding: 34px clamp(28px, 8vw, 150px);
  border-top: 1px solid rgba(7, 29, 67, 0.78);
  border-bottom: 1px solid rgba(7, 29, 67, 0.78);
}

.signature-word {
  bottom: -3px;
  left: clamp(28px, 7vw, 130px);
  font-family: "Bricolage Grotesque", Arial, sans-serif;
  font-size: clamp(72px, 10vw, 158px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.78;
}

.signature-content {
  align-self: start;
  grid-column: 2;
  padding-top: 17px;
}

.source-eyebrow {
  letter-spacing: 0;
}

.signature-content > p:last-child {
  max-width: 450px;
  font-family: "Bricolage Grotesque", Arial, sans-serif;
  font-size: clamp(21px, 2.1vw, 30px);
  font-weight: 750;
  letter-spacing: 0;
  line-height: 1.08;
}

.signature-band img {
  align-self: end;
  height: 188px;
  border: 1px solid rgba(7, 29, 67, 0.82);
  object-fit: cover;
}

.delivery-section {
  align-items: start;
  gap: clamp(42px, 7vw, 112px);
  padding: clamp(82px, 9vw, 136px) clamp(28px, 8vw, 150px);
  background: #edf2fa;
  border-bottom: 1px solid rgba(7, 29, 67, 0.16);
}

.delivery-main h2 {
  max-width: 640px;
  font-family: "Bricolage Grotesque", Arial, sans-serif;
  font-size: clamp(42px, 5.3vw, 76px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.91;
}

.delivery-main > p:not(.source-eyebrow) {
  max-width: 490px;
  color: #3e5780;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.62;
}

.source-button {
  min-height: 50px;
  padding: 0 16px 0 19px;
  border: 1px solid transparent;
  border-radius: 6px;
  background: var(--under-blue);
  box-shadow: none;
  letter-spacing: 0;
}

.source-button:hover {
  color: #fff;
  background: var(--under-ink);
  box-shadow: 5px 5px 0 var(--under-salmon);
  transform: translate(-2px, -2px);
}

.delivery-options { gap: 10px; }

.delivery-options article {
  min-height: 111px;
  padding: 20px 54px 19px 21px;
  border: 1px solid rgba(7, 29, 67, 0.14);
  border-left: 4px solid var(--under-salmon);
  border-radius: 0;
  background: #fff;
}

.delivery-options article:nth-child(2) { border-left-color: var(--under-blue); }
.delivery-options article:nth-child(3) { border-left-color: var(--under-mint); }

.delivery-options span {
  top: 19px;
  right: 20px;
  color: var(--under-blue);
}

.delivery-options h3 {
  font-family: "Bricolage Grotesque", Arial, sans-serif;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: 0;
}

.delivery-options p {
  color: #506889;
  font-weight: 600;
}

.source-footer {
  min-height: 84px;
  padding: 24px clamp(28px, 5vw, 84px);
  background: var(--under-ink);
}

.source-footer-brand {
  font-family: "Bricolage Grotesque", Arial, sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
}

.source-footer p,
.source-footer div a {
  font-family: "DM Mono", monospace;
  font-weight: 500;
  letter-spacing: 0;
}

.source-footer div a:hover { color: var(--under-salmon); }

/* Location has its own URL now: it is no longer an afterthought at the foot of the order flow. */
#location { scroll-margin-top: 92px; }

.about-page { background: var(--under-paper); }

.about-page-hero {
  display: grid;
  min-height: 590px;
  grid-template-columns: minmax(0, 0.95fr) minmax(440px, 1.05fr);
  background: var(--under-blue);
}

.about-page-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(60px, 9vw, 142px);
  color: #fff;
}

.about-page-hero-copy .source-eyebrow { color: #bcd3ff; }

.about-page-hero h1,
.location-copy h2,
.about-order-band h2 {
  margin: 0;
  font-family: "Bricolage Grotesque", Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.9;
}

.about-page-hero h1 {
  max-width: 590px;
  font-size: clamp(56px, 7vw, 104px);
}

.about-page-hero-copy > p:not(.source-eyebrow) {
  max-width: 470px;
  margin: 28px 0 42px;
  color: #d5e1f7;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.6;
}

.about-page-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  max-width: 480px;
  padding-top: 17px;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
}

.about-page-meta div { display: grid; gap: 7px; }

.about-page-meta span {
  color: #b7caeb;
  font-family: "DM Mono", monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
}

.about-page-meta strong {
  color: #fff;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.about-page-hero-image {
  min-height: 440px;
  margin: 0;
  overflow: hidden;
  background: var(--under-salmon);
}

.about-page-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: multiply;
  transform: scale(1.035);
}

.location-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(440px, 1.2fr);
  gap: clamp(48px, 8vw, 140px);
  padding: clamp(80px, 9vw, 136px) clamp(28px, 8vw, 150px);
  background: #fff;
}

.location-copy { align-self: center; }

.location-copy h2 {
  max-width: 500px;
  color: var(--under-ink);
  font-size: clamp(45px, 5vw, 76px);
}

.location-copy > p:not(.source-eyebrow) {
  max-width: 470px;
  margin: 27px 0 30px;
  color: #415a82;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.62;
}

.location-copy address {
  display: grid;
  gap: 7px;
  margin: 0 0 30px;
  padding: 18px 0;
  color: #355179;
  border-top: 1px solid rgba(7, 29, 67, 0.18);
  border-bottom: 1px solid rgba(7, 29, 67, 0.18);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.45;
}

.location-copy address strong {
  color: var(--under-salmon);
  font-family: "DM Mono", monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0;
}

.location-copy address a { color: var(--under-blue); font-weight: 800; }

.location-map {
  min-height: 492px;
  overflow: hidden;
  border: 1px solid var(--under-ink);
  background: #dce7f6;
  box-shadow: 9px 9px 0 var(--under-salmon);
}

.location-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 492px;
  border: 0;
}

.about-order-band {
  padding: clamp(76px, 9vw, 132px) clamp(28px, 13vw, 240px);
  color: var(--under-ink);
  background: var(--under-salmon);
  text-align: center;
}

.about-order-band .source-eyebrow {
  justify-content: center;
  color: var(--under-ink);
}

.about-order-band h2 {
  max-width: 840px;
  margin: 0 auto;
  font-size: clamp(44px, 6vw, 92px);
}

.about-order-band > p:not(.source-eyebrow) {
  max-width: 540px;
  margin: 24px auto 31px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.58;
}

.about-order-band .source-button {
  color: #fff;
  background: var(--under-blue);
  text-align: left;
}

/* Mobile navigation gives the compact header a real route map instead of hidden destinations. */
.mobile-nav-toggle,
.mobile-nav { display: none; }

@media (max-width: 820px) {
  .site-header { height: 66px; }
  .header-inner { width: min(100% - 28px, 640px); gap: 10px; }
  .primary-nav { display: none; }
  .brand { gap: 7px; font-size: 18px; }
  .brand-stamp { width: 34px; height: 34px; font-size: 10px; }
  .header-actions { gap: 7px; }
  .language-switch { gap: 2px; padding: 2px; }
  .language-switch button,
  .language-switch a { min-width: 25px; min-height: 29px; padding: 0 4px; font-size: 9px; }
  .mobile-nav-toggle {
    display: inline-grid;
    width: 36px;
    height: 36px;
    place-items: center;
    padding: 0;
    color: var(--under-ink);
    border: 1px solid rgba(7, 29, 67, 0.18);
    border-radius: 5px;
    background: #fff;
  }
  .mobile-nav-toggle:hover { color: #fff; background: var(--under-blue); }
  .mobile-nav {
    position: absolute;
    z-index: 31;
    top: 65px;
    right: 0;
    left: 0;
    display: grid;
    max-height: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    overflow: hidden;
    background: rgba(245, 244, 245, 0.98);
    border-bottom: 0 solid rgba(7, 29, 67, 0.18);
    box-shadow: none;
    opacity: 0;
    transition: max-height 180ms ease, opacity 160ms ease, border-color 160ms ease;
  }
  .mobile-nav.is-open {
    max-height: 180px;
    border-bottom-width: 1px;
    box-shadow: 0 14px 24px rgba(7, 29, 67, 0.13);
    opacity: 1;
  }
  .mobile-nav a {
    min-height: 56px;
    display: flex;
    align-items: center;
    padding: 0 16px;
    color: var(--under-ink);
    border-right: 1px solid rgba(7, 29, 67, 0.12);
    border-bottom: 1px solid rgba(7, 29, 67, 0.12);
    font-family: "Manrope", Arial, sans-serif;
    font-size: 12px;
    font-weight: 800;
  }
  .mobile-nav a:nth-child(even) { border-right: 0; }
  .mobile-nav a:hover { color: #fff; background: var(--under-blue); }

  .signature-band {
    display: grid;
    min-height: 300px;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 26px 18px;
  }
  .signature-word { bottom: -1px; left: 18px; font-size: 88px; line-height: 0.75; }
  .signature-content { z-index: 2; grid-column: 1; width: 76%; padding-top: 0; }
  .signature-content > p:last-child { font-size: 19px; }
  .signature-band img {
    position: absolute;
    right: 18px;
    bottom: 21px;
    width: 43%;
    height: 134px;
  }

  .delivery-section { display: block; padding: 70px 18px; }
  .delivery-main h2 { font-size: 45px; }
  .delivery-main > p:not(.source-eyebrow) { font-size: 13px; }
  .delivery-options { margin-top: 36px; }
  .delivery-options article { min-height: 104px; }
  .source-footer { grid-template-columns: 1fr auto; padding: 21px 18px; }
  .source-footer p { display: none; }
  .source-footer div { gap: 11px; }
  .source-footer div a { font-size: 9px; }

  #location { scroll-margin-top: 66px; }
  .about-page-hero { display: block; min-height: 0; }
  .about-page-hero-copy { min-height: 510px; padding: 66px 18px 48px; }
  .about-page-hero h1 { font-size: 62px; }
  .about-page-hero-copy > p:not(.source-eyebrow) { margin: 22px 0 30px; font-size: 14px; }
  .about-page-meta { gap: 14px; }
  .about-page-meta strong { font-size: 12px; }
  .about-page-hero-image { min-height: 340px; }
  .location-section { display: block; padding: 69px 18px 74px; }
  .location-copy h2 { font-size: 49px; }
  .location-copy > p:not(.source-eyebrow) { font-size: 13px; }
  .location-map { min-height: 360px; margin-top: 38px; box-shadow: 6px 6px 0 var(--under-salmon); }
  .location-map iframe { min-height: 360px; }
  .about-order-band { padding: 72px 18px; }
  .about-order-band h2 { font-size: 50px; }
  .about-order-band > p:not(.source-eyebrow) { font-size: 14px; }
}

@media (max-width: 390px) {
  .header-inner { width: calc(100% - 20px); }
  .brand-lockup { display: none; }
  .language-switch button,
  .language-switch a { min-width: 23px; }
  .signature-word { font-size: 76px; }
  .signature-content { width: 72%; }
  .about-page-hero h1 { font-size: 54px; }
}

/* Quiet Maki: an editorial product gallery with the food, not decoration, in focus. */
.hero--v4::before,
.hero--v4::after,
.hero-showcase::before,
.hero-showcase::after { display: none; }

.hero-kicker span {
  width: 14px;
  height: 2px;
  border-radius: 0;
  background: var(--under-salmon);
  box-shadow: none;
}

.hero-showcase {
  position: relative;
  width: min(760px, 100%);
  min-height: 720px;
  justify-self: end;
  overflow: hidden;
  perspective: none;
}

.hero--v4,
.hero-inner { min-height: 850px; }

.hero-orbit,
.hero-sun,
.hero-mural { display: none; }

.hero-studio-scene {
  position: absolute;
  inset: 0 0 70px;
  margin: 0;
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
  transform: translateY(12px) scale(0.99);
  transition: opacity 760ms ease, transform 760ms cubic-bezier(0.2, 0.75, 0.25, 1);
  will-change: opacity, transform;
}

.hero-studio-scene.is-active {
  z-index: 1;
  opacity: 1;
  transform: translateY(0) scale(1);
}

.hero-studio-scene img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 53% 50%;
  filter: saturate(1.07) contrast(1.025);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.92) 30%, #000 52%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.92) 30%, #000 52%, #000 100%);
}

.hero-gallery-rail {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 5%;
  z-index: 4;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  border-top: 1px solid rgba(19, 81, 170, 0.22);
}

.hero-gallery-item {
  display: flex;
  min-height: 58px;
  align-items: center;
  gap: 9px;
  padding: 11px 12px;
  color: #52627d;
  border-right: 1px solid rgba(19, 81, 170, 0.18);
  font-family: "DM Mono", monospace;
  font-size: 9px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero-gallery-item:last-child { border-right: 0; }
.hero-gallery-item b { color: var(--under-salmon); font-weight: 500; }
.hero-gallery-item em { font-style: normal; }
.hero-gallery-item.is-active { color: var(--under-blue); }
.hero-gallery-item.is-active::after {
  width: 24px;
  height: 2px;
  margin-left: auto;
  background: var(--under-salmon);
  content: "";
}

.menu-stage .menu-card { cursor: default; }

.menu-stage .menu-card-open {
  display: flex;
  width: 100%;
  min-height: 0;
  flex: 1;
  flex-direction: column;
  color: inherit;
  text-align: left;
  text-decoration: none;
}

.menu-stage .menu-card-open:focus-visible {
  position: relative;
  z-index: 1;
  outline: 3px solid rgba(255, 117, 31, 0.82);
  outline-offset: -3px;
}

.menu-stage .menu-card .add-button {
  position: absolute;
  inset: auto 15px 13px auto;
  margin: 0;
  z-index: 2;
}

.menu-stage .menu-bottom { padding-right: 48px; }

.delivery-options article:nth-child(3) { border-left-color: var(--under-blue); }

@media (max-width: 820px) {
  .hero--v4,
  .hero-inner { min-height: 838px; }
  .hero-showcase { width: 100%; min-height: 365px; margin-top: 12px; }
  .hero-studio-scene { inset: 0 0 54px; }
  .hero-studio-scene img { object-position: 57% 50%; }
  .hero-gallery-rail { left: 2%; grid-template-columns: 1.55fr 1fr 1fr; }
  .hero-gallery-item { min-height: 46px; gap: 5px; padding: 8px 5px; font-size: 8px; }
  .hero-gallery-item.is-active::after { display: none; }
  .hero-service-strip { grid-template-columns: 1fr; padding: 0; }
  .hero-service-item { min-height: 70px; padding: 15px 18px; border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, 0.18); }
  .hero-service-item:last-child { border-right: 0; }
  .menu-stage .menu-card .add-button { inset: auto 10px 9px auto; }
  .menu-stage .menu-bottom { padding-right: 38px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-koi-wave,
  .hero-studio-scene { animation: none !important; transition: none !important; }
}

/* Reference-matched desktop hero: one continuous studio surface, not a card around a photo. */
@media (min-width: 821px) {
  .site-header {
    background: rgba(254, 250, 245, 0.92);
  }

  .site-header .header-inner {
    width: calc(100% - 88px);
    max-width: none;
  }

  .hero--v4 {
    min-height: min(960px, calc(100dvh - 78px));
    background: #fefaf5;
  }

  .hero--v4,
  .hero-inner {
    min-height: min(960px, calc(100dvh - 78px));
  }

  .hero-inner {
    width: calc(100% - 88px);
    max-width: none;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: start;
    gap: 0;
    padding: 0;
  }

  .hero-copy-wrap--v3 {
    align-self: center;
    max-width: 720px;
  }

  .hero h1 {
    max-width: 760px;
    font-size: 188px !important;
  }

  .hero h1 span { color: var(--under-blue); }

  .hero-showcase {
    width: 100%;
    min-height: min(900px, calc(100dvh - 112px));
    align-self: start;
  }

  .hero-studio-scene {
    inset: 0;
  }

  .hero-studio-scene img {
    object-position: 100% 0;
    transform: translateY(-24px) scale(1.01);
    transform-origin: 72% 0;
  }

  .hero-gallery-rail {
    right: 0;
    bottom: 0;
    left: 0;
  }

  .hero-copy-wrap--v3 {
    align-self: start;
    padding-top: 220px;
  }

  .hero-kicker { margin-bottom: 36px; }
  .hero h1 { line-height: 0.75; }
  .hero-copy { margin-top: 53px; }
  .hero-actions { margin-top: 92px; }
  .hero-facts { margin-top: 95px; }
}

@media (min-width: 821px) and (max-height: 1000px) {
  .hero-copy-wrap--v3 { padding-top: 126px; }
  .hero-kicker { margin-bottom: 25px; }
  .hero h1 { line-height: 0.7; }
  .hero-copy { margin-top: 38px; }
  .hero-actions { margin-top: 42px; }
  .hero-facts { margin-top: 56px; }
}

/* Keep the released hero faithful to the selected reference while the motion frames are refined. */
@media (min-width: 821px) {
  .hero--v4,
  .hero-inner { min-height: 850px; }

  .hero-showcase {
    width: min(760px, 100%);
    min-height: 720px;
    justify-self: end;
  }

  .hero-studio-scene {
    display: block;
    inset: 0 0 70px;
    opacity: 1;
    transform: none;
  }

  .hero-studio-scene img {
    object-position: 100% 0;
    transform: none;
    transform-origin: center;
  }
}

/* Compact text-led hero after the studio photograph was retired. */
@media (min-width: 821px) {
  .hero--v4,
  .hero-inner {
    min-height: 620px;
  }

  .hero-inner {
    display: block;
    padding: 72px 0 58px;
  }

  .hero-copy-wrap--v3 {
    max-width: 760px;
    padding-top: 0;
  }

  .hero h1 { font-size: 156px !important; }
  .hero-kicker { margin-bottom: 20px; }
  .hero-copy { margin-top: 34px; }
  .hero-actions { margin-top: 32px; }
  .hero-facts { margin-top: 48px; }
}

@media (max-width: 820px) {
  .hero--v4,
  .hero-inner { min-height: 560px; }
}

@media (max-width: 430px) {
  .hero--v4,
  .hero-inner { min-height: 530px; }
}

/* Motion hero: the products move through one continuous studio composition. */
.hero--v4 { background: #fefaf5; }

.hero-inner {
  position: relative;
  z-index: 3;
  pointer-events: none;
}

.hero-copy-wrap--v3 {
  position: relative;
  z-index: 4;
  pointer-events: auto;
}

.hero-motion-scene {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: 55%;
  overflow: hidden;
  pointer-events: auto;
  isolation: isolate;
}

.hero-motion-stage {
  position: absolute;
  inset: 16px 0 58px;
  pointer-events: none;
}

.hero-ink-path {
  position: absolute;
  inset: 1% 0 0;
  z-index: 0;
  width: 100%;
  height: 96%;
  overflow: visible;
  pointer-events: none;
}

.hero-ink-path path {
  fill: none;
  vector-effect: non-scaling-stroke;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-ink-path-shadow {
  stroke: rgba(16, 19, 31, 0.035);
  stroke-width: 7;
}

.hero-ink-path-line {
  stroke: rgba(16, 19, 31, 0.2);
  stroke-width: 1.35;
}

.hero-ink-path-accent {
  stroke: var(--under-salmon);
  stroke-width: 2.2;
  stroke-dasharray: 86 914;
  stroke-dashoffset: 1000;
  animation: hero-ink-travel 8s linear infinite;
}

.hero-motion-roll {
  position: absolute;
  top: 38%;
  left: 5%;
  z-index: 3;
  width: clamp(280px, 26vw, 390px);
  margin: 0;
  transform-origin: 50% 58%;
  animation: hero-motion-cycle 18s cubic-bezier(0.55, 0.04, 0.32, 1) infinite;
  isolation: isolate;
  will-change: top, left, transform, opacity;
}

.hero-motion-roll::after {
  position: absolute;
  top: 82%;
  left: 21%;
  z-index: 0;
  width: 58%;
  height: 9px;
  border-radius: 50%;
  background: rgba(16, 19, 31, 0.24);
  box-shadow: 0 8px 14px rgba(16, 19, 31, 0.16);
  filter: blur(7px);
  transform: scaleX(0.92);
  transform-origin: center;
  animation: hero-contact-shadow 4.8s ease-in-out infinite alternate;
  content: "";
  pointer-events: none;
}

.hero-motion-roll--zmaj { animation-delay: 0s; }
.hero-motion-roll--duga { animation-delay: -6s; }
.hero-motion-roll--fila { animation-delay: -12s; }

.hero-motion-roll img,
.hero-motion-cameo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-motion-roll img {
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 12px 12px rgba(16, 19, 31, 0.12));
  animation: hero-motion-breathe 4.8s ease-in-out infinite alternate;
}

.hero-motion-roll--duga img { animation-delay: -1.6s; }
.hero-motion-roll--fila img { animation-delay: -3.2s; }
.hero-motion-roll--duga::after { animation-delay: -1.6s; }
.hero-motion-roll--fila::after { animation-delay: -3.2s; }

.hero-motion-cameo {
  position: absolute;
  z-index: 0;
  margin: 0;
  opacity: 0;
  filter: saturate(0.96);
  will-change: transform, opacity;
}

.hero-motion-cameo--salmon {
  top: 3%;
  right: auto;
  left: 5%;
  width: clamp(130px, 12vw, 185px);
  height: clamp(130px, 12vw, 185px);
  opacity: 0.3;
  animation: hero-motion-cameo-top 6.8s ease-in-out -2s infinite alternate;
}

.hero-motion-cameo--masago {
  top: 42%;
  right: auto;
  bottom: auto;
  left: 5%;
  width: clamp(135px, 11vw, 175px);
  height: clamp(135px, 11vw, 175px);
  opacity: 0.24;
  animation: hero-motion-cameo-bottom 7.6s ease-in-out -4s infinite alternate;
}

.hero-motion-rail {
  position: absolute;
  right: clamp(22px, 4vw, 64px);
  bottom: 18px;
  left: clamp(140px, 13vw, 220px);
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  pointer-events: auto;
}

.hero-motion-label {
  appearance: none;
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
  padding-top: 10px;
  overflow: hidden;
  color: rgba(16, 19, 31, 0.42);
  border-top: 1px solid rgba(16, 19, 31, 0.18);
  border-right: 0;
  border-bottom: 0;
  border-left: 0;
  background: transparent;
  font-family: "DM Mono", monospace;
  font-size: 9px;
  font-weight: 600;
  line-height: 1;
  text-overflow: ellipsis;
  text-align: left;
  white-space: nowrap;
  animation: hero-motion-label 18s linear infinite;
  cursor: pointer;
}

.hero-motion-label b {
  color: inherit;
  font: inherit;
}

.hero-motion-label:hover {
  color: var(--under-blue);
  border-top-color: rgba(255, 117, 31, 0.72);
}

.hero-motion-label:focus-visible {
  outline: 2px solid var(--under-salmon);
  outline-offset: 4px;
}

.hero-motion-scene.is-manual .hero-motion-label {
  color: rgba(16, 19, 31, 0.42);
  border-top-color: rgba(16, 19, 31, 0.18);
  opacity: 0.74;
  animation: none;
}

.hero-motion-scene.is-manual .hero-motion-label.is-active {
  color: var(--under-blue);
  border-top-color: var(--under-salmon);
  opacity: 1;
}

.hero-motion-label--zmaj { animation-delay: 0s; }
.hero-motion-label--fila { animation-delay: -12s; }
.hero-motion-label--duga { animation-delay: -6s; }

@keyframes hero-motion-cycle {
  0%, 4%, 100% {
    top: 35%;
    left: 3%;
    z-index: 3;
    opacity: 1;
    transform: scale(1) rotate(-2deg);
  }
  30%, 37% {
    top: -2%;
    left: 62%;
    z-index: 2;
    opacity: 0.88;
    transform: scale(0.54) rotate(6deg);
  }
  63%, 70% {
    top: 56%;
    left: 68%;
    z-index: 1;
    opacity: 0.64;
    transform: scale(0.42) rotate(-5deg);
  }
  94% {
    top: 43%;
    left: 8%;
    z-index: 3;
    opacity: 0.96;
    transform: scale(0.96) rotate(-3deg);
  }
}

@keyframes hero-motion-breathe {
  from { transform: translate3d(0, 0, 0) rotate(-0.8deg); }
  to { transform: translate3d(0, -7px, 0) rotate(0.8deg); }
}

@keyframes hero-contact-shadow {
  from {
    opacity: 0.82;
    transform: translate3d(0, 1px, 0) scaleX(0.92);
  }
  to {
    opacity: 0.48;
    transform: translate3d(0, 6px, 0) scaleX(0.74);
  }
}

@keyframes hero-ink-travel {
  to { stroke-dashoffset: 0; }
}

@keyframes hero-motion-cameo-top {
  from { transform: translate3d(0, -3px, 0) scale(0.68) rotate(7deg); }
  to { transform: translate3d(5px, 6px, 0) scale(0.72) rotate(3deg); }
}

@keyframes hero-motion-cameo-bottom {
  from { transform: translate3d(0, 5px, 0) scale(0.66) rotate(-6deg); }
  to { transform: translate3d(-6px, -4px, 0) scale(0.7) rotate(-2deg); }
}

@keyframes hero-motion-label {
  0%, 28%, 100% {
    color: var(--under-blue);
    border-top-color: var(--under-salmon);
    opacity: 1;
  }
  35%, 94% {
    color: rgba(16, 19, 31, 0.42);
    border-top-color: rgba(16, 19, 31, 0.18);
    opacity: 0.74;
  }
}

@media (min-width: 821px) {
  .hero-copy-wrap--v3 { max-width: 620px; }
  .hero-motion-roll--fila { translate: -34px 24px; }
  .hero h1 {
    max-width: 640px;
    font-size: clamp(126px, 10.3vw, 156px) !important;
  }
}

@media (min-width: 821px) and (max-width: 1120px) {
  .hero-motion-scene { width: 57%; }
  .hero-motion-roll { width: clamp(260px, 29vw, 330px); }
  .hero-motion-rail { left: 92px; }
  .hero h1 { font-size: 122px !important; }
}

@media (max-width: 820px) {
  .hero--v4,
  .hero-inner { min-height: 710px !important; }

  .hero-inner {
    display: block;
    padding: 34px 0 282px;
  }

  .hero-copy-wrap--v3 { max-width: 100%; }

  .hero-motion-scene {
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 294px;
  }

  .hero-motion-stage { inset: 0 0 45px; }

  .hero-ink-path {
    inset: 2% -4% 0;
    width: 108%;
    opacity: 0.78;
  }

  .hero-motion-roll {
    width: min(64vw, 255px);
    animation-duration: 5.6s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-direction: alternate;
  }

  .hero-motion-roll--zmaj {
    top: 20%;
    left: 1%;
    z-index: 3;
    opacity: 1;
    transform: scale(0.96) rotate(-2deg);
    animation-name: hero-motion-mobile-front;
    animation-delay: -1s;
  }

  .hero-motion-roll--duga {
    top: -2%;
    left: 44%;
    z-index: 2;
    opacity: 0.9;
    transform: scale(0.58) rotate(6deg);
    animation-name: hero-motion-mobile-top;
    animation-delay: -3s;
  }

  .hero-motion-roll--fila {
    top: 53%;
    left: 47%;
    z-index: 1;
    opacity: 0.64;
    transform: scale(0.37) rotate(-5deg);
    animation-name: hero-motion-mobile-bottom;
    animation-delay: -4.5s;
  }

  .hero-motion-cameo--masago { display: none; }

  .hero-motion-cameo--salmon {
    display: block;
    top: -20%;
    left: 9%;
    width: 150px;
    height: 150px;
    opacity: 0.52;
    animation: hero-motion-mobile-cameo 5.8s ease-in-out -2s infinite alternate;
  }

  .hero-motion-roll--fila { translate: 0 0; }

  .hero-motion-rail {
    right: 15px;
    bottom: 11px;
    left: 15px;
    gap: 9px;
  }

  .hero-motion-label {
    gap: 5px;
    padding-top: 7px;
    font-size: 7px;
    animation: none;
  }

  @keyframes hero-motion-mobile-front {
    from { transform: translate3d(0, 4px, 0) scale(0.96) rotate(-2.5deg); }
    to { transform: translate3d(8px, -5px, 0) scale(0.98) rotate(-0.5deg); }
  }

  @keyframes hero-motion-mobile-top {
    from { transform: translate3d(0, 0, 0) scale(0.58) rotate(6deg); }
    to { transform: translate3d(-7px, 5px, 0) scale(0.6) rotate(3deg); }
  }

  @keyframes hero-motion-mobile-bottom {
    from { transform: translate3d(0, 0, 0) scale(0.37) rotate(-5deg); }
    to { transform: translate3d(-5px, -6px, 0) scale(0.38) rotate(-2deg); }
  }

  @keyframes hero-motion-mobile-cameo {
    from { transform: translate3d(0, 2px, 0) scale(0.7) rotate(5deg); }
    to { transform: translate3d(7px, -5px, 0) scale(0.74) rotate(1deg); }
  }
}

@media (max-width: 430px) {
  .hero--v4,
  .hero-inner { min-height: 690px !important; }

  .hero-inner { padding-bottom: 272px; }
  .hero h1 { font-size: 68px !important; }
  .hero-motion-scene { height: 278px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-motion-roll,
  .hero-motion-roll img,
  .hero-motion-roll::after,
  .hero-motion-cameo,
  .hero-motion-label {
    animation: none !important;
  }

  .hero-ink-path-accent { animation: none !important; stroke-dashoffset: 0; }

  .hero-motion-roll--zmaj { top: 35%; left: 3%; transform: scale(1) rotate(-2deg); }
  .hero-motion-roll--duga { top: -2%; left: 62%; transform: scale(0.54) rotate(6deg); }
  .hero-motion-roll--fila { top: 56%; left: 68%; transform: scale(0.42) rotate(-5deg); }
  .hero-motion-cameo--salmon { opacity: 0.3; transform: scale(0.7) rotate(5deg); }
  .hero-motion-cameo--masago { opacity: 0.3; transform: scale(0.68) rotate(-4deg); }
}
