:root {
  --bg: #f7f1e7;
  --bg-deep: #e6d4b6;
  --surface: #fffaf2;
  --surface-2: #e6d4b6;
  --surface-3: #d7b899;
  --cream: #e6d4b6;
  --cream-2: #d7b899;
  --text: #2b1a0e;
  --muted: #5c3a21;
  --line: rgba(43, 26, 14, .14);
  --mint: #7a4e2d;
  --mint-2: #c69c6d;
  --ink: #f7f1e7;
  --shadow: 0 28px 70px rgba(43, 26, 14, .16);
  --ease: cubic-bezier(.2, .78, .2, 1);
  --header-h: 70px;
  --header-top: 16px;
  --rail-top: 98px;
  --rail-h: 58px;
}

* {
  box-sizing: border-box
}

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Tahoma, "Segoe UI", Arial, sans-serif;
  overflow-x: hidden
}

body.menu-open {
  overflow: hidden
}

.aref-ruqaa {
  font-family: "Aref Ruqaa", Tahoma, "Segoe UI", Arial, sans-serif
}

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

button {
  font: inherit
}

.shell {
  width: min(1200px, calc(100% - 44px));
  margin-inline: auto
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  opacity: .045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E")
}

.scroll-progress {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 2px;
  z-index: 300;
  background: transparent
}

.scroll-progress i {
  display: block;
  height: 100%;
  width: 100%;
  transform-origin: left;
  transform: scaleX(0);
  background: linear-gradient(90deg, var(--mint), var(--cream-2))
}

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1220px, calc(100% - 28px));
  height: 70px;
  z-index: 220;
  display: grid;
  grid-template-columns: 170px 1fr 170px;
  align-items: center;
  gap: 16px;
  padding: 0 12px 0 14px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 22px;
  background: rgba(42, 23, 17, .54);
  backdrop-filter: blur(20px) saturate(125%);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .18)
}

.brand {
  display: flex;
  align-items: center;
  height: 100%
}

.brand img {
  width: 132px;
  max-height: 44px;
  filter: brightness(0) saturate(100%) invert(92%) sepia(11%) saturate(929%) hue-rotate(338deg) brightness(102%)
}

.desktop-nav {
  justify-self: center;
  display: flex;
  gap: 2px;
  padding: 5px;
  background: rgba(255, 255, 255, .035);
  border-radius: 15px
}

.desktop-nav a {
  font-size: 12px;
  color: #c9b3a2;
  padding: 10px 15px;
  border-radius: 11px;
  transition: .25s
}

.desktop-nav a:hover {
  background: rgba(255, 255, 255, .07);
  color: #fff
}

.header-cta {
  justify-self: end;
  background: var(--mint);
  color: #17342f;
  font-weight: 800;
  font-size: 12px;
  padding: 13px 18px;
  border-radius: 999px
}

.header-cta span {
  margin-right: 7px
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, .08);
  position: relative
}

.menu-toggle span {
  position: absolute;
  width: 18px;
  height: 1.5px;
  background: #fff;
  left: 13px;
  transition: .3s
}

.menu-toggle span:first-child {
  top: 17px
}

.menu-toggle span:last-child {
  top: 25px
}

.menu-open .menu-toggle span:first-child {
  transform: translateY(4px) rotate(45deg)
}

.menu-open .menu-toggle span:last-child {
  transform: translateY(-4px) rotate(-45deg)
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 110;
  background: rgba(23, 10, 7, .97);
  backdrop-filter: blur(20px);
  display: none;
  flex-direction: column;
  justify-content: center;
  padding: 90px 28px 40px;
  opacity: 0;
  pointer-events: none;
  transition: .35s
}

.mobile-menu a {
  font-size: clamp(32px, 10vw, 56px);
  font-weight: 800;
  padding: 14px 0;
  border-bottom: 1px solid var(--line)
}

.menu-open .mobile-menu {
  opacity: 1;
  pointer-events: auto
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: radial-gradient(circle at 22% 30%, rgba(142, 74, 37, .20), transparent 28%), linear-gradient(120deg, #1a0b07 0%, #27120c 48%, #2b1610 100%)
}

.hero-media {
  position: absolute;
  inset: 0 0 0 auto;
  width: 58%;
  height: 100%;
  overflow: hidden;
  border-bottom-left-radius: 64px
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 43%;
  filter: saturate(.95) contrast(1.03)
}

.hero-media-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #20100a 0%, rgba(32, 16, 10, .52) 16%, rgba(32, 16, 10, .08) 55%, rgba(17, 8, 5, .06)), linear-gradient(0deg, rgba(20, 9, 6, .26), transparent 42%)
}

.hero-x {
  position: absolute;
  width: min(56vw, 850px);
  left: -16vw;
  bottom: -14vw;
  opacity: .035;
  filter: brightness(4);
  transform: rotate(-12deg)
}

.hero-inner {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  direction: ltr;
  position: relative;
  z-index: 3
}

.hero-copy {
  width: 46%;
  padding-top: 100px;
  direction: rtl;
  text-align: right
}

.kicker {
  display: inline-block;
  color: var(--mint-2);
  font: 800 10px/1 Arial, sans-serif;
  letter-spacing: .23em;
  direction: ltr
}

.hero-title {
  margin: 20px 0 24px;
  font-size: clamp(70px, 8vw, 118px);
  line-height: .82;
  letter-spacing: -.065em;
  max-width: 680px
}

.hero-title .line {
  display: block
}

.hero-sub {
  font-size: 17px;
  line-height: 1.9;
  color: var(--muted);
  max-width: 540px;
  margin: 0 0 30px
}

.hero-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 15px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  font-size: 13px
}

.btn-mint {
  background: var(--mint);
  color: var(--ink)
}

.btn-glass {
  border-color: var(--line);
  background: rgba(255, 255, 255, .045);
  backdrop-filter: blur(10px)
}

.hero-facts {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #bfa795;
  margin-top: 40px;
  font-size: 11px
}

.hero-facts b {
  font-size: 19px;
  color: #fff;
  margin-left: 5px
}

.hero-facts i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--mint)
}

.hero-stamp {
  position: absolute;
  left: 54%;
  bottom: 10%;
  padding: 15px 18px;
  background: rgba(25, 12, 8, .54);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 18px;
  backdrop-filter: blur(16px);
  display: grid;
  gap: 4px;
  direction: ltr;
  box-shadow: var(--shadow)
}

.hero-stamp small {
  font: 800 9px Arial;
  letter-spacing: .18em;
  color: var(--mint)
}

.hero-stamp strong {
  font: 800 15px Arial
}

.hero-stamp span {
  font: 700 8px Arial;
  letter-spacing: .13em;
  color: #cab4a1
}

.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: #aa9280;
  font: 700 8px Arial;
  letter-spacing: .2em
}

.hero-scroll i {
  font-style: normal;
  font-size: 17px;
  color: var(--mint)
}

@keyframes animotion-shimmerLoading {
  from {
    background-position: 200% 0
  }

  to {
    background-position: -200% 0
  }
}

@keyframes animotion-cardWobble {

  0%,
  to {
    transform: rotate(0)
  }

  15% {
    transform: rotate(-3deg)
  }

  30% {
    transform: rotate(2deg)
  }

  45% {
    transform: rotate(-2deg)
  }

  60% {
    transform: rotate(1deg)
  }

  75% {
    transform: rotate(-1deg)
  }
}

.btn.btn-mint {
  animation: animotion-cardWobble 1.2s ease-in-out infinite
}

.hero-stamp {
  overflow: hidden;
  isolation: isolate
}

.hero-stamp>* {
  position: relative;
  z-index: 1
}

.hero-stamp.is-visible::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .16;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: animotion-shimmerLoading 3s linear infinite
}

.hero-stamp.is-visible {
  animation: enterUp .85s var(--ease) .28s both
}

@media(min-width:981px) {
  .hero-copy {
    transform: translateX(-100px);
    text-align: center
  }

  .hero-sub {
    margin-inline: auto
  }

  .hero-actions,
  .hero-facts {
    justify-content: center
  }
}

.enter-up {
  opacity: 0;
  transform: translateY(26px);
  animation: enterUp .85s var(--ease) forwards
}

.delay-2 {
  animation-delay: .18s
}

.delay-3 {
  animation-delay: .28s
}

.delay-4 {
  animation-delay: .38s
}

@keyframes enterUp {
  to {
    opacity: 1;
    transform: none
  }
}

.char {
  display: inline-block;
  opacity: 0;
  transform: translateY(.85em) rotateX(44deg);
  transform-origin: 50% 100%;
  filter: blur(5px);
  transition: opacity .58s var(--ease), transform .68s var(--ease), filter .62s var(--ease);
  transition-delay: calc(var(--i) * var(--char-step, 22ms) + var(--base-delay, 0ms));
  will-change: transform, opacity
}

.char.space {
  width: .28em
}

.split-ready.is-visible .char,
.hero-title .char {
  opacity: 1;
  transform: none;
  filter: blur(0)
}

.hero-title .char {
  animation: heroChar .72s var(--ease) forwards;
  animation-delay: calc(.14s + var(--i) * 22ms)
}

@keyframes heroChar {
  from {
    opacity: 0;
    transform: translateY(.8em) rotateX(45deg);
    filter: blur(5px)
  }

  to {
    opacity: 1;
    transform: none;
    filter: blur(0)
  }
}

/* Arabic text must stay in one shaping run. We reveal the whole shaped line instead of splitting letters. */
.arabic-reveal {
  opacity: 0;
  transform: translateY(.45em);
  filter: blur(7px);
  clip-path: inset(0 0 0 100%);
  transition: opacity .72s var(--ease), transform .82s var(--ease), filter .72s var(--ease), clip-path 1.05s var(--ease);
  will-change: clip-path, transform, opacity
}

.arabic-reveal.is-visible {
  opacity: 1;
  transform: none;
  filter: blur(0);
  clip-path: inset(0 0 0 0)
}

.reveal-block {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .78s var(--ease), transform .84s var(--ease)
}

.reveal-block.is-visible {
  opacity: 1;
  transform: none
}

.featured {
  padding: 110px 0 130px
}

.section-title-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 38px
}

.section-title-row h2,
.menu-intro h2,
.story h2,
.find h2 {
  margin: 14px 0 0;
  font-size: clamp(48px, 6vw, 82px);
  line-height: .92;
  letter-spacing: -.055em
}

.section-title-row>p {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
  font-size: 13px
}

.featured-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: end;
  gap: 22px;
  direction: ltr
}

.feature-card {
  direction: rtl;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .065), rgba(255, 255, 255, .025));
  padding: 13px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .35s var(--ease), border-color .35s
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(120, 208, 198, .35)
}

.feature-main {
  transform: translateY(-26px)
}

.feature-main:hover {
  transform: translateY(-34px)
}

.feature-image {
  border-radius: 22px;
  overflow: hidden;
  height: 310px
}

.feature-main .feature-image {
  height: 360px
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s var(--ease)
}

.feature-card:hover img {
  transform: scale(1.035)
}

.feature-meta {
  padding: 17px 8px 8px
}

.feature-meta small {
  display: block;
  color: var(--mint-2);
  font: 800 9px Arial;
  letter-spacing: .16em;
  direction: ltr;
  text-align: right
}

.feature-meta h3 {
  font: 800 23px Arial;
  margin: 8px 0 14px;
  direction: ltr;
  text-align: right
}

.feature-meta strong {
  font: 800 18px Arial;
  direction: ltr;
  display: block
}

.menu-intro {
  position: relative;
  padding: 135px 0 80px;
  background: linear-gradient(180deg, #27140e, #21100b);
  overflow: hidden
}

.menu-intro::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 75% 42%, rgba(120, 208, 198, .055), transparent 25%)
}

.menu-watermark {
  position: absolute;
  width: min(70vw, 900px);
  right: -20vw;
  top: -18vw;
  opacity: .028;
  filter: brightness(4);
  transform: rotate(8deg)
}

.menu-intro-inner {
  position: relative
}

.menu-intro h2 em,
.story h2 em,
.find h2 em {
  font-style: normal;
  color: var(--cream-2)
}

.menu-intro p {
  max-width: 650px;
  color: var(--muted);
  line-height: 1.9;
  font-size: 15px;
  margin: 25px 0 0
}

.category-rail-wrap {
  position: sticky;
  top: var(--rail-top);
  z-index: 180;
  isolation: isolate;
  background: linear-gradient(180deg, rgba(31, 15, 10, .995), rgba(31, 15, 10, .97));
  backdrop-filter: blur(22px) saturate(120%);
  border-block: 1px solid rgba(255, 255, 255, .08);
  box-shadow: 0 14px 34px rgba(12, 5, 3, .30)
}

.category-rail {
  display: flex;
  gap: 7px;
  overflow-x: auto;
  overflow-y: hidden;
  min-height: var(--rail-h);
  padding-block: 12px;
  scrollbar-width: none;
  direction: ltr;
  overscroll-behavior-inline: contain
}

.category-rail::-webkit-scrollbar {
  display: none
}

.category-chip {
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, .09);
  background: #2b1812;
  color: #bfa794;
  border-radius: 999px;
  padding: 10px 15px;
  font: 800 9px Arial;
  letter-spacing: .06em;
  transition: .25s;
  white-space: nowrap
}

.category-chip:hover,
.category-chip.active {
  background: var(--mint);
  border-color: var(--mint);
  color: #18352f
}

.full-menu {
  padding: 38px 0 150px;
  position: relative;
  z-index: 1
}

.menu-category {
  display: grid;
  grid-template-columns: minmax(300px, .78fr) minmax(0, 1.22fr);
  gap: 64px;
  padding: 82px 0;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: calc(var(--rail-top) + var(--rail-h) + 24px);
  position: relative;
  z-index: 1
}

.menu-category:nth-child(even) .category-visual {
  order: 2
}

.category-visual {
  position: relative
}

.category-visual-inner {
  position: sticky;
  top: calc(var(--rail-top) + var(--rail-h) + 18px);
  border-radius: 34px;
  overflow: hidden;
  height: min(620px, 72vh);
  background: #2d1811;
  box-shadow: var(--shadow)
}

.category-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.category-visual::before {
  content: attr(data-number);
  position: absolute;
  z-index: 4;
  top: -24px;
  right: -10px;
  font: 800 clamp(70px, 8vw, 120px)/1 Arial;
  color: rgba(255, 255, 255, .045);
  pointer-events: none
}

.category-body {
  min-width: 0;
  padding-top: 18px
}

.category-head {
  margin-bottom: 35px
}

.category-head small {
  display: block;
  color: var(--mint-2);
  font: 800 9px Arial;
  letter-spacing: .2em;
  direction: ltr;
  text-align: right
}

.category-head h3 {
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: normal;
  font: 800 clamp(42px, 5vw, 72px)/.95 Arial;
  margin: 12px 0 14px;
  direction: ltr;
  text-align: right;
  letter-spacing: -.045em
}

.category-count {
  color: #9f8573;
  font-size: 11px
}

.product-list {
  display: grid
}

.product-row {
  display: grid;
  grid-template-columns: minmax(0, auto) 1fr auto;
  align-items: end;
  gap: 13px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .065);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .62s var(--ease), transform .72s var(--ease);
  transition-delay: var(--row-delay, 0ms)
}

.product-row.is-visible {
  opacity: 1;
  transform: none
}

.product-name {
  font: 700 15px/1.35 Arial;
  direction: ltr;
  text-align: left;
  color: #f5e7d5;
  min-width: 0
}

.product-row .product-name .char {
  --char-step: 14ms
}

.leader {
  border-bottom: 1px dotted rgba(255, 255, 255, .15);
  transform: translateY(-5px)
}

.price {
  font: 800 14px Arial;
  direction: ltr;
  color: var(--cream);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(-8px);
  transition: .55s var(--ease);
  transition-delay: calc(var(--row-delay, 0ms) + 120ms)
}

.product-row.is-visible .price {
  opacity: 1;
  transform: none
}

.add-ons {
  margin-top: 30px;
  padding: 22px;
  border: 1px solid rgba(120, 208, 198, .16);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(120, 208, 198, .07), rgba(255, 255, 255, .025))
}

.add-ons-title {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 16px
}

.add-ons-title strong {
  font-size: 14px
}

.add-ons-title small {
  font: 800 9px Arial;
  letter-spacing: .15em;
  color: var(--mint-2);
  direction: ltr
}

.add-on-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px
}

.add-on {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 10px 12px;
  border-radius: 13px;
  background: rgba(255, 255, 255, .035);
  font-size: 11px
}

.add-on span:first-child {
  direction: ltr;
  font-family: Arial;
  text-align: left
}

.add-on b {
  font: 800 11px Arial;
  color: var(--cream);
  white-space: nowrap
}

.story {
  padding: 100px 0 140px
}

.story-panel {
  position: relative;
  min-height: 680px;
  border-radius: 48px;
  overflow: hidden;
  background: linear-gradient(135deg, #321c14, #21110c);
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  box-shadow: var(--shadow)
}

.story-copy {
  padding: 70px;
  position: relative;
  z-index: 4
}

.story-copy p {
  color: var(--muted);
  line-height: 1.9;
  max-width: 520px
}

.text-link {
  display: inline-flex;
  gap: 10px;
  margin-top: 18px;
  color: var(--mint-2);
  font-weight: 800;
  font-size: 13px
}

.story-visual {
  height: 100%;
  position: relative;
  display: grid;
  place-items: center
}

.story-mark {
  position: absolute;
  width: 620px;
  opacity: .035;
  filter: brightness(4);
  transform: rotate(-10deg)
}

.story-drink {
  height: 520px;
  width: 350px;
  object-fit: cover;
  border-radius: 38px;
  transform: rotate(4deg);
  box-shadow: 0 38px 80px rgba(0, 0, 0, .42);
  position: relative;
  z-index: 3
}

.story-pill {
  position: absolute;
  z-index: 4;
  background: rgba(245, 224, 194, .88);
  color: #2c1810;
  padding: 12px 14px;
  border-radius: 15px;
  font: 800 11px Arial;
  box-shadow: 0 18px 45px rgba(0, 0, 0, .22)
}

.pill-one {
  left: 7%;
  top: 23%;
  transform: rotate(-7deg)
}

.pill-two {
  right: 5%;
  bottom: 20%;
  transform: rotate(6deg)
}

.find {
  padding: 0 0 120px
}

.find-panel {
  border-radius: 44px;
  min-height: 560px;
  background: linear-gradient(105deg, #d8bb90, #a8754d);
  color: #2a160e;
  padding: 65px 70px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow)
}

.find-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 78% 50%, rgba(255, 255, 255, .3), transparent 31%)
}

.find-panel>div {
  position: relative;
  z-index: 3
}

.kicker.dark {
  color: #4f493d
}

.find-panel h2 {
  font-size: clamp(46px, 5vw, 74px)
}

.find-panel h2 em {
  color: #53301e
}

.find-panel p {
  line-height: 1.8;
  max-width: 510px
}

.btn-light {
  background: #f5e5cc;
  color: #3b2317;
  border: 0;
  cursor: not-allowed
}

.find-panel>img {
  position: relative;
  z-index: 2;
  justify-self: center;
  height: 470px;
  width: 320px;
  object-fit: cover;
  border-radius: 34px;
  transform: rotate(-5deg);
  box-shadow: 0 34px 75px rgba(55, 29, 14, .35)
}

.find-rotator {
  --find-tilt: -5deg;
  position: relative;
  z-index: 2;
  justify-self: center;
  width: 320px;
  height: 470px;
  margin: 0;
  border-radius: 34px;
  overflow: hidden;
  transform: rotate(var(--find-tilt));
  box-shadow: 0 34px 75px rgba(55, 29, 14, .35);
  background: #5c3a21 center bottom/cover no-repeat;
  will-change: transform, opacity
}

.find-rotator img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center bottom
}

.find-rotator.is-animation-reset {
  opacity: 0 !important
}

.find-rotator.animotion-rubber-band {
  animation: qahwaFindRubberBand 1s ease-in-out both !important
}

.find-rotator.animotion-light-speed-in-left {
  animation: qahwaFindLightSpeedInLeft .62s ease-out both !important
}

.find-rotator.animotion-light-speed-out-right {
  animation: qahwaFindLightSpeedOutRight .52s ease-in both !important
}

@keyframes qahwaFindRubberBand {
  from {
    transform: rotate(var(--find-tilt)) scale3d(1, 1, 1)
  }

  30% {
    transform: rotate(var(--find-tilt)) scale3d(1.12, .88, 1)
  }

  40% {
    transform: rotate(var(--find-tilt)) scale3d(.88, 1.12, 1)
  }

  50% {
    transform: rotate(var(--find-tilt)) scale3d(1.05, .95, 1)
  }

  65% {
    transform: rotate(var(--find-tilt)) scale3d(.98, 1.02, 1)
  }

  75% {
    transform: rotate(var(--find-tilt)) scale3d(1.02, .98, 1)
  }

  to {
    transform: rotate(var(--find-tilt)) scale3d(1, 1, 1)
  }
}

@keyframes qahwaFindLightSpeedInLeft {
  from {
    transform: translateX(-100%) skewX(30deg) rotate(var(--find-tilt));
    opacity: 0
  }

  60% {
    transform: translateX(0) skewX(-20deg) rotate(var(--find-tilt));
    opacity: 1
  }

  80% {
    transform: translateX(0) skewX(5deg) rotate(var(--find-tilt))
  }

  to {
    transform: translateX(0) skewX(0) rotate(var(--find-tilt));
    opacity: 1
  }
}

@keyframes qahwaFindLightSpeedOutRight {
  from {
    transform: translateX(0) skewX(0) rotate(var(--find-tilt));
    opacity: 1
  }

  to {
    transform: translateX(100%) skewX(30deg) rotate(var(--find-tilt));
    opacity: 0
  }
}

.footer {
  padding: 35px 0 65px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: #9c8372;
  font-size: 11px
}

.footer img {
  width: 118px;
  filter: brightness(0) saturate(100%) invert(83%) sepia(21%) saturate(595%) hue-rotate(344deg)
}

@media(max-width:980px) {
  :root {
    --header-h: 62px;
    --rail-top: 84px;
    --rail-h: 54px
  }

  .hero-media {
    width: 100%;
    border-radius: 0
  }

  .hero-media-shade {
    background: linear-gradient(0deg, rgba(20, 9, 6, .94) 0%, rgba(20, 9, 6, .67) 38%, rgba(20, 9, 6, .19) 68%, rgba(20, 9, 6, .08) 100%), linear-gradient(90deg, rgba(22, 10, 7, .34), transparent 55%)
  }

  .hero-inner {
    align-items: end;
    padding-bottom: 90px;
    direction: ltr
  }

  .hero-copy {
    direction: rtl;
    text-align: right
  }

  .hero-copy {
    width: 100%;
    padding-top: 120px
  }

  .hero-title {
    font-size: clamp(66px, 13vw, 96px);
    max-width: 620px
  }

  .hero-sub {
    max-width: 560px;
    color: #dbc7b5
  }

  .hero-stamp {
    left: auto;
    right: 22px;
    bottom: 72%;
    transform: scale(.9);
    transform-origin: right bottom
  }

  .featured-track {
    grid-template-columns: 1fr 1fr
  }

  .feature-card:last-child {
    grid-column: 1/-1
  }

  .feature-main {
    transform: none
  }

  .feature-main:hover {
    transform: translateY(-8px)
  }

  .menu-category {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 65px 0
  }

  .menu-category:nth-child(even) .category-visual {
    order: 0
  }

  .category-visual-inner {
    position: relative;
    top: auto;
    height: 480px
  }

  .category-body {
    padding-top: 0
  }

  .story-panel {
    grid-template-columns: 1fr
  }

  .story-copy {
    text-align: center;
    padding-bottom: 20px
  }

  .story-copy p {
    margin-inline: auto
  }

  .story-visual {
    min-height: 560px
  }

  .find-panel {
    grid-template-columns: 1fr;
    text-align: center
  }

  .find-panel p {
    margin-inline: auto
  }

  .find-panel>img,
  .find-rotator {
    margin-top: 35px
  }

  .footer {
    flex-wrap: wrap
  }
}

@media(max-width:640px) {
  html {
    scroll-padding-top: 138px
  }

  :root {
    --header-top: 9px;
    --header-h: 58px;
    --rail-top: 76px;
    --rail-h: 50px
  }

  .shell {
    width: min(100% - 24px, 1200px)
  }

  .hero {
    min-height: auto;
    padding-top: 56svh;
    background: #1f0f0a
  }

  .hero-media {
    height: 56svh;
    bottom: auto
  }

  .hero-media img {
    object-position: center 46%
  }

  .hero-media-shade {
    background: linear-gradient(0deg, rgba(31, 15, 10, .88) 0%, rgba(31, 15, 10, .16) 30%, rgba(31, 15, 10, .04) 72%)
  }

  .hero-inner {
    min-height: auto;
    display: block;
    padding-bottom: 70px
  }

  .hero-copy {
    width: 100%;
    padding-top: 32px
  }

  .hero-title {
    font-size: clamp(58px, 18vw, 78px);
    line-height: .86;
    margin: 15px 0 18px
  }

  .hero-sub {
    font-size: 14px;
    line-height: 1.75;
    margin-bottom: 22px;
    max-width: 94%
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    gap: 8px
  }

  .btn {
    padding: 13px 14px;
    font-size: 11px
  }

  .hero-facts {
    margin-top: 25px;
    gap: 10px;
    flex-wrap: wrap
  }

  .hero-facts b {
    font-size: 16px
  }

  .hero-stamp {
    right: 12px;
    top: 82px;
    bottom: auto;
    padding: 10px 12px;
    border-radius: 13px
  }

  .hero-stamp strong {
    font-size: 11px
  }

  .hero-stamp span,
  .hero-stamp small {
    font-size: 7px
  }

  .hero-scroll {
    display: none
  }

  .hero-x {
    width: 130vw;
    left: -50vw;
    bottom: -30vw
  }

  .featured {
    padding: 72px 0 86px
  }

  .section-title-row {
    display: block;
    margin-bottom: 26px
  }

  .section-title-row h2,
  .menu-intro h2,
  .story h2,
  .find h2 {
    font-size: clamp(40px, 12vw, 54px)
  }

  .section-title-row>p {
    margin-top: 16px;
    font-size: 12px
  }

  .featured-track {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    margin-inline: -12px;
    padding: 0 12px 14px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none
  }

  .featured-track::-webkit-scrollbar {
    display: none
  }

  .feature-card,
  .feature-main {
    flex: 0 0 82vw;
    scroll-snap-align: center;
    transform: none;
    border-radius: 24px
  }

  .feature-image,
  .feature-main .feature-image {
    height: 330px
  }

  .feature-meta h3 {
    font-size: 20px
  }

  .menu-intro {
    padding: 90px 0 52px
  }

  .menu-intro p {
    font-size: 13px
  }

  .category-rail-wrap {
    top: 76px
  }

  .category-rail {
    padding-block: 9px;
    margin-inline: 0;
    width: 100%;
    padding-inline: 12px
  }

  .category-chip {
    padding: 9px 13px;
    font-size: 8px
  }

  .full-menu {
    padding-top: 10px;
    padding-bottom: 100px
  }

  .menu-category {
    padding: 52px 0;
    gap: 22px;
    scroll-margin-top: 86px
  }

  .category-visual-inner {
    height: min(94vw, 390px);
    border-radius: 25px
  }

  .category-visual::before {
    font-size: 64px;
    top: -18px
  }

  .category-head {
    margin-bottom: 24px
  }

  .category-head h3 {
    font-size: clamp(38px, 11vw, 50px);
    margin-top: 9px
  }

  .product-row {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
    padding: 13px 0
  }

  .leader {
    display: none
  }

  .product-name {
    font-size: 13px;
    line-height: 1.4;
    text-align: left
  }

  .price {
    font-size: 12px
  }

  .product-row .product-name .char {
    --char-step: 10ms
  }

  .add-ons {
    padding: 16px;
    border-radius: 19px;
    margin-top: 22px
  }

  .add-ons-title {
    margin-bottom: 12px
  }

  .add-on-grid {
    grid-template-columns: 1fr
  }

  .add-on {
    font-size: 10px;
    padding: 9px 10px
  }

  .story {
    padding: 65px 0 90px
  }

  .story-panel {
    border-radius: 28px;
    min-height: auto
  }

  .story-copy {
    padding: 42px 20px 10px
  }

  .story-copy p {
    font-size: 13px
  }

  .story-visual {
    min-height: 470px
  }

  .story-drink {
    width: 72vw;
    max-width: 300px;
    height: 390px;
    border-radius: 28px
  }

  .story-mark {
    width: 130vw
  }

  .story-pill {
    font-size: 9px;
    padding: 10px
  }

  .pill-one {
    left: 3%;
    top: 18%
  }

  .pill-two {
    right: 2%;
    bottom: 17%
  }

  .find {
    padding-bottom: 80px
  }

  .find-panel {
    padding: 43px 20px 32px;
    border-radius: 28px;
    min-height: auto
  }

  .find-panel p {
    font-size: 13px
  }

  .find-panel>img,
  .find-rotator {
    width: 72vw;
    max-width: 300px;
    height: 390px;
    border-radius: 27px
  }

  .footer {
    justify-content: center;
    text-align: center;
    padding-bottom: 45px
  }

  .footer p {
    width: 100%;
    order: 3
  }
}

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

  .char,
  .arabic-reveal,
  .reveal-block,
  .product-row,
  .price,
  .feature-card,
  .feature-image img {
    transition: none !important;
    animation: none !important
  }

  .char,
  .arabic-reveal,
  .reveal-block,
  .product-row,
  .price {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    clip-path: none !important
  }

  }

/* V1.2 — category-filtered menu */
.category-chip {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  font-family: Arial, sans-serif
}

.full-menu {
  transition: opacity .28s ease, transform .34s var(--ease);
  will-change: opacity, transform
}

.full-menu.is-switching {
  opacity: 0;
  transform: translateY(14px)
}

.full-menu:not(.showing-all) .menu-category {
  border-bottom: 0;
  padding-bottom: 96px
}

.category-chip[data-cat="all"] {
  padding-inline: 22px;
  border-color: rgba(120, 208, 198, .22);
  color: var(--mint-2)
}

.category-chip[data-cat="all"].active {
  color: #17342f
}

@media (max-width:760px) {
  .category-rail-wrap {
    box-shadow: 0 10px 30px rgba(13, 5, 3, .22)
  }

  .category-rail {
    gap: 6px;
    scroll-padding-inline: 12px
  }

  .category-chip {
    min-height: 38px;
    padding: 10px 14px;
    font-size: 8px;
    touch-action: manipulation
  }

  .category-chip[data-cat="all"] {
    padding-inline: 18px
  }

  .full-menu:not(.showing-all) .menu-category {
    padding-top: 34px;
    padding-bottom: 72px
  }

  .full-menu.is-switching {
    transform: translateY(8px)
  }
}


/* V1.3 — sticky category rail + scrollable selected category */
.category-rail-wrap+.full-menu {
  scroll-margin-top: calc(var(--rail-top) + var(--rail-h) + 14px)
}

.full-menu:not(.showing-all) .menu-category {
  max-height: calc(100svh - var(--rail-top) - var(--rail-h) - 18px);
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(120, 208, 198, .45) rgba(255, 255, 255, .04);
  padding-inline-end: 10px;
}

.full-menu:not(.showing-all) .menu-category::-webkit-scrollbar {
  width: 7px
}

.full-menu:not(.showing-all) .menu-category::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, .035);
  border-radius: 999px
}

.full-menu:not(.showing-all) .menu-category::-webkit-scrollbar-thumb {
  background: rgba(120, 208, 198, .42);
  border-radius: 999px
}

.full-menu:not(.showing-all) .category-visual-inner {
  top: 18px
}

.category-rail-wrap::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -18px;
  height: 18px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(31, 15, 10, .45), transparent)
}

@media(max-width:980px) {
  .full-menu:not(.showing-all) .menu-category {
    max-height: calc(100svh - var(--rail-top) - var(--rail-h) - 12px);
    padding-inline-end: 6px
  }

  .full-menu:not(.showing-all) .category-visual-inner {
    top: 0
  }
}

@media(max-width:640px) {
  .category-rail-wrap {
    top: var(--rail-top)
  }

  .category-rail {
    min-height: var(--rail-h)
  }

  .full-menu {
    padding-top: 14px
  }

  .full-menu:not(.showing-all) .menu-category {
    max-height: calc(100svh - var(--rail-top) - var(--rail-h) - 10px);
    padding-top: 20px;
    padding-bottom: 36px;
    padding-inline-end: 4px;
  }
}

/* V1.4 — single menu browser: one top rail, full-width vertical scrolling */
:root {
  --rail-top: 0px;
  --rail-h: 64px
}

.site-header {
  transition: opacity .26s ease, transform .34s var(--ease), visibility .26s ease
}

.menu-browser {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 560px;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 15%, rgba(120, 208, 198, .035), transparent 25%),
    linear-gradient(180deg, #1e0e09, #1a0c08);
  border-block: 1px solid rgba(255, 255, 255, .06);
  isolation: isolate;
}

.category-rail-wrap {
  position: relative;
  top: auto;
  z-index: 30;
  width: 100%;
  height: var(--rail-h);
  background: #1f0f0a;
  backdrop-filter: none;
  border-top: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .09);
  box-shadow: 0 12px 26px rgba(0, 0, 0, .22);
}

.category-rail-wrap::after {
  display: none !important
}

.category-rail {
  height: 100%;
  min-height: 0;
  align-items: center;
  padding-block: 10px;
  overscroll-behavior-inline: contain;
}

/* The actual scrolling surface touches both edges of the viewport. */
.full-menu {
  width: 100%;
  max-width: none;
  height: calc(100svh - var(--rail-h));
  margin: 0;
  padding: 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
  transition: opacity .28s ease, transform .34s var(--ease);
}

.full-menu.is-switching {
  opacity: 0;
  transform: translateY(10px)
}

/* One selected category: that category owns the vertical scrollbar. */
.full-menu:not(.showing-all) .menu-category {
  width: 100%;
  height: 100%;
  max-height: none;
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior-y: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(120, 208, 198, .52) rgba(255, 255, 255, .035);
  border-bottom: 0;
  padding: 54px max(22px, calc((100vw - 1200px)/2)) 80px;
  scroll-margin-top: 0;
}

.full-menu:not(.showing-all) .menu-category::-webkit-scrollbar {
  width: 8px
}

.full-menu:not(.showing-all) .menu-category::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, .03)
}

.full-menu:not(.showing-all) .menu-category::-webkit-scrollbar-thumb {
  background: rgba(120, 208, 198, .48);
  border-radius: 999px;
  border: 2px solid #1a0c08
}

/* ALL: the whole full-width menu becomes one continuous vertical scroller. */
.full-menu.showing-all {
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior-y: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(120, 208, 198, .52) rgba(255, 255, 255, .035);
}

.full-menu.showing-all::-webkit-scrollbar {
  width: 8px
}

.full-menu.showing-all::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, .03)
}

.full-menu.showing-all::-webkit-scrollbar-thumb {
  background: rgba(120, 208, 198, .48);
  border-radius: 999px;
  border: 2px solid #1a0c08
}

.full-menu.showing-all .menu-category {
  width: 100%;
  max-height: none;
  overflow: visible;
  padding: 68px max(22px, calc((100vw - 1200px)/2));
  scroll-margin-top: 0;
}

/* Nothing in the category may visually sit behind the rail anymore. */
.menu-category {
  z-index: 1
}

.category-visual-inner {
  top: 22px
}

.full-menu:not(.showing-all) .category-visual-inner {
  top: 22px
}

@media(max-width:980px) {
  :root {
    --rail-top: 0px;
    --rail-h: 60px
  }

  .menu-browser {
    min-height: 520px
  }

  .full-menu {
    height: calc(100svh - var(--rail-h))
  }

  .full-menu:not(.showing-all) .menu-category,
  .full-menu.showing-all .menu-category {
    padding-inline: max(16px, calc((100vw - 760px)/2));
  }

  .full-menu:not(.showing-all) .menu-category {
    max-height: none;
    padding-top: 30px;
    padding-bottom: 52px
  }

  .category-visual-inner,
  .full-menu:not(.showing-all) .category-visual-inner {
    top: 0
  }
}

@media(max-width:640px) {
  :root {
    --rail-top: 0px;
    --rail-h: 56px
  }

  .menu-browser {
    height: 100svh;
    min-height: 480px
  }

  .category-rail-wrap {
    top: auto;
    height: var(--rail-h)
  }

  .category-rail {
    min-height: 0;
    padding: 8px 12px;
    gap: 6px
  }

  .category-chip {
    min-height: 38px
  }

  .full-menu {
    height: calc(100svh - var(--rail-h));
    padding-top: 0
  }

  .full-menu:not(.showing-all) .menu-category,
  .full-menu.showing-all .menu-category {
    padding-inline: 12px;
  }

  .full-menu:not(.showing-all) .menu-category {
    max-height: none;
    padding-top: 18px;
    padding-bottom: 34px;
    padding-inline-end: 12px
  }

  .full-menu.showing-all .menu-category {
    padding-top: 34px;
    padding-bottom: 42px
  }
}

/* =========================================================
   V1.5 — dedicated premium Menu page
   ========================================================= */
.delay-1 {
  animation-delay: .09s
}

/* Home: the menu is now a destination, not an embedded app. */
.home-menu-cta {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  background: linear-gradient(135deg, #2b160f 0%, #1b0c08 62%, #27130d 100%);
  border-block: 1px solid rgba(255, 255, 255, .07)
}

.home-menu-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 45%, rgba(120, 208, 198, .085), transparent 24%), linear-gradient(90deg, transparent, rgba(255, 255, 255, .012));
  pointer-events: none
}

.home-menu-cta-x {
  position: absolute;
  width: min(66vw, 850px);
  left: -16vw;
  top: -24vw;
  opacity: .035;
  filter: brightness(4);
  transform: rotate(-13deg)
}

.home-menu-cta-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: end;
  gap: 70px
}

.home-menu-cta h2 {
  margin: 15px 0 0;
  font-size: clamp(52px, 6vw, 88px);
  line-height: .9;
  letter-spacing: -.055em
}

.home-menu-cta h2 em {
  font-style: normal;
  color: var(--cream-2)
}

.home-menu-cta-copy {
  max-width: 470px;
  justify-self: start
}

.home-menu-cta-copy p {
  margin: 0 0 25px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9
}

/* The menu-page header scrolls away naturally. The category rail becomes the only top bar. */
.menu-page .site-header {
  position: absolute;
  z-index: 60
}

.menu-page .desktop-nav a.is-current {
  background: rgba(255, 255, 255, .08);
  color: #fff
}

.menu-page .menu-back {
  background: rgba(255, 255, 255, .075);
  border: 1px solid rgba(255, 255, 255, .09);
  color: var(--cream)
}

.menu-page-hero {
  position: relative;
  min-height: 82svh;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 124px 0 86px;
  background:
    radial-gradient(circle at 23% 36%, rgba(120, 208, 198, .12), transparent 22%),
    radial-gradient(circle at 74% 14%, rgba(174, 98, 50, .20), transparent 24%),
    linear-gradient(125deg, #170a07 0%, #26120c 48%, #321b13 100%);
  border-bottom: 1px solid rgba(255, 255, 255, .07)
}

.menu-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(255, 255, 255, .017), transparent 32%, rgba(255, 255, 255, .012) 58%, transparent);
  pointer-events: none
}

.menu-page-x {
  position: absolute;
  width: min(74vw, 980px);
  right: -24vw;
  bottom: -36vw;
  opacity: .032;
  filter: brightness(4);
  transform: rotate(14deg)
}

.menu-page-glow {
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  left: 8%;
  top: 12%;
  background: rgba(120, 208, 198, .08);
  filter: blur(100px);
  pointer-events: none
}

.menu-page-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  gap: 74px;
  min-height: 620px
}

.menu-page-copy {
  align-self: center;
  max-width: 690px
}

.menu-breadcrumb {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  color: #a88f7c;
  font-size: 11px
}

.menu-breadcrumb a {
  transition: .25s
}

.menu-breadcrumb a:hover {
  color: var(--mint-2)
}

.menu-breadcrumb span {
  color: var(--mint)
}

.menu-breadcrumb strong {
  color: #d4bcaa;
  font-weight: 700
}

.menu-page-title {
  margin: 19px 0 24px;
  font-size: clamp(66px, 7.3vw, 112px);
  line-height: .84;
  letter-spacing: -.065em;
  max-width: 780px
}

.menu-page-title em {
  font-style: normal;
  color: var(--cream-2)
}

.menu-page-sub {
  max-width: 590px;
  color: #c3a994;
  font-size: 16px;
  line-height: 1.9;
  margin: 0 0 28px
}

.menu-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px
}

.menu-page-stats {
  display: flex;
  align-items: center;
  gap: 19px;
  margin-top: 42px;
  direction: ltr
}

.menu-page-stats>div {
  display: grid;
  gap: 5px
}

.menu-page-stats strong {
  font: 800 26px/1 Arial;
  color: var(--text);
  letter-spacing: -.04em
}

.menu-page-stats span {
  font: 800 8px/1 Arial;
  letter-spacing: .19em;
  color: #927969
}

.menu-page-stats i {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, .11)
}

.menu-page-visual {
  position: relative;
  min-height: 560px;
  direction: ltr
}

.menu-visual-card {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .11);
  box-shadow: 0 38px 100px rgba(0, 0, 0, .42);
  background: #2d1811
}

.menu-visual-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover
}

.menu-visual-main {
  width: min(78%, 420px);
  height: 500px;
  right: 3%;
  top: 20px;
  border-radius: 42px;
  transform: rotate(3deg)
}

.menu-visual-side {
  width: 215px;
  height: 270px;
  left: 1%;
  bottom: 25px;
  border-radius: 30px;
  transform: rotate(-7deg);
  z-index: 3
}

.menu-visual-orbit {
  position: absolute;
  border: 1px solid rgba(120, 208, 198, .13);
  border-radius: 50%;
  pointer-events: none
}

.orbit-one {
  width: 490px;
  height: 490px;
  right: -4%;
  top: 10px
}

.orbit-two {
  width: 330px;
  height: 330px;
  right: 12%;
  top: 90px;
  border-color: rgba(242, 221, 189, .10)
}

.menu-visual-badge {
  position: absolute;
  z-index: 5;
  border: 1px solid rgba(255, 255, 255, .11);
  background: rgba(23, 10, 7, .68);
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .24)
}

.badge-top {
  right: -2%;
  bottom: 14%;
  padding: 15px 18px;
  border-radius: 18px;
  display: grid;
  gap: 5px
}

.badge-top small {
  font: 800 8px Arial;
  letter-spacing: .18em;
  color: var(--mint)
}

.badge-top strong {
  font: 800 15px Arial
}

.badge-bottom {
  left: 4%;
  top: 17%;
  padding: 11px 14px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 9px;
  font: 800 9px Arial;
  letter-spacing: .08em
}

.badge-bottom span {
  color: var(--cream)
}

.badge-bottom b {
  color: var(--mint-2);
  font-weight: 800
}

.badge-bottom i {
  font-style: normal;
  color: #7f6657
}

.menu-page-scroll {
  position: absolute;
  right: 50%;
  bottom: 24px;
  transform: translateX(50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  color: #988170;
  font: 800 8px Arial;
  letter-spacing: .19em
}

.menu-page-scroll i {
  font-style: normal;
  color: var(--mint);
  font-size: 18px;
  animation: menuScrollBounce 1.5s ease-in-out infinite
}

@keyframes menuScrollBounce {
  50% {
    transform: translateY(5px)
  }
}

/* Dedicated menu browser. No second navbar is visible when the rail reaches the top. */
.menu-page .menu-browser {
  height: 100svh;
  min-height: 560px;
  border-top: 0;
  background: linear-gradient(180deg, #1d0d09, #180b07)
}

.menu-page .category-rail-wrap {
  position: sticky;
  top: 0;
  z-index: 90;
  height: 68px;
  background: rgba(29, 13, 9, .97);
  backdrop-filter: blur(18px) saturate(120%);
  border-bottom: 1px solid rgba(255, 255, 255, .09);
  box-shadow: 0 13px 36px rgba(0, 0, 0, .28)
}

.menu-page .category-rail {
  height: 100%;
  padding-block: 11px
}

.menu-page .full-menu {
  height: calc(100svh - 68px);
  width: 100vw;
  max-width: 100vw
}

.menu-page .full-menu:not(.showing-all) .menu-category {
  padding-top: 48px;
  padding-bottom: 72px
}

.menu-page .full-menu.showing-all .menu-category {
  padding-top: 62px;
  padding-bottom: 62px
}

.menu-page .menu-category {
  width: 100%
}

.menu-page .category-visual-inner {
  top: 18px
}

.menu-footer {
  margin-top: 0
}

@media(max-width:980px) {
  .home-menu-cta-inner {
    grid-template-columns: 1fr;
    gap: 28px
  }

  .home-menu-cta-copy {
    justify-self: auto
  }

  .menu-page-hero {
    min-height: auto;
    padding: 116px 0 72px
  }

  .menu-page-hero-inner {
    grid-template-columns: 1fr;
    gap: 30px;
    min-height: auto
  }

  .menu-page-copy {
    max-width: 760px
  }

  .menu-page-title {
    font-size: clamp(64px, 11vw, 92px);
    max-width: 800px
  }

  .menu-page-visual {
    min-height: 480px;
    max-width: 650px;
    width: 100%;
    margin-inline: auto
  }

  .menu-visual-main {
    width: 62%;
    height: 430px;
    right: 8%
  }

  .menu-visual-side {
    width: 190px;
    height: 235px;
    left: 7%;
    bottom: 12px
  }

  .orbit-one {
    width: 430px;
    height: 430px;
    right: 0
  }

  .orbit-two {
    width: 290px;
    height: 290px
  }

  .menu-page .category-rail-wrap {
    height: 62px
  }

  .menu-page .full-menu {
    height: calc(100svh - 62px)
  }
}

@media(max-width:640px) {
  .home-menu-cta {
    padding: 76px 0
  }

  .home-menu-cta h2 {
    font-size: clamp(42px, 13vw, 58px)
  }

  .menu-page-hero {
    padding: 104px 0 54px;
    min-height: 100svh;
    align-items: flex-start
  }

  .menu-page-hero-inner {
    gap: 18px
  }

  .menu-breadcrumb {
    margin-bottom: 14px;
    font-size: 10px
  }

  .menu-page-title {
    font-size: clamp(54px, 17vw, 76px);
    line-height: .86;
    margin: 14px 0 17px
  }

  .menu-page-sub {
    font-size: 13px;
    line-height: 1.75;
    margin-bottom: 21px;
    max-width: 94%
  }

  .menu-page-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%
  }

  .menu-page-actions .btn {
    width: 100%
  }

  .menu-page-stats {
    margin-top: 25px;
    gap: 12px;
    justify-content: flex-start
  }

  .menu-page-stats strong {
    font-size: 20px
  }

  .menu-page-stats i {
    height: 27px
  }

  .menu-page-visual {
    min-height: 360px;
    margin-top: 5px
  }

  .menu-visual-main {
    width: 66vw;
    max-width: 300px;
    height: 340px;
    right: 2%;
    top: 10px;
    border-radius: 28px
  }

  .menu-visual-side {
    width: 36vw;
    max-width: 155px;
    height: 190px;
    left: 1%;
    bottom: 1px;
    border-radius: 21px
  }

  .orbit-one {
    width: 320px;
    height: 320px;
    right: -20%;
    top: 14px
  }

  .orbit-two {
    width: 230px;
    height: 230px;
    right: 2%;
    top: 60px
  }

  .badge-top {
    right: 0;
    bottom: 8%;
    padding: 10px 12px;
    border-radius: 13px
  }

  .badge-top strong {
    font-size: 11px
  }

  .badge-top small {
    font-size: 7px
  }

  .badge-bottom {
    left: 0;
    top: 12%;
    padding: 8px 10px;
    font-size: 7px
  }

  .menu-page-scroll {
    display: none
  }

  .menu-page-x {
    width: 145vw;
    right: -60vw;
    bottom: -50vw
  }

  .menu-page .category-rail-wrap {
    height: 58px
  }

  .menu-page .category-rail {
    padding: 8px 12px
  }

  .menu-page .full-menu {
    height: calc(100svh - 58px)
  }

  .menu-page .full-menu:not(.showing-all) .menu-category {
    padding: 18px 12px 34px
  }

  .menu-page .full-menu.showing-all .menu-category {
    padding: 34px 12px 42px
  }
}

/* V1.6 — Scroll-driven featured split + flip scene */
.featured-split-scene {
  position: relative;
  padding: 0;
  overflow: clip;
  background:
    radial-gradient(circle at 14% 28%, rgba(120, 208, 198, .05), transparent 22%),
    radial-gradient(circle at 82% 72%, rgba(216, 168, 111, .08), transparent 25%),
    linear-gradient(180deg, #1b0c08 0%, #24110c 55%, #1c0d09 100%);
}

.featured-split-scene::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .22;
  background: linear-gradient(115deg, transparent 0 35%, rgba(255, 255, 255, .018) 35% 52%, transparent 52% 100%);
}

.featured-stage {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
  padding-block: 118px 70px;
}

.split-feature-heading {
  width: min(84vw, 1420px);
  margin: 0 auto 32px;
  align-items: end;
  will-change: transform, opacity;
}

.split-feature-heading h2 {
  margin: 14px 0 0;
  font-size: clamp(48px, 5.6vw, 82px);
  line-height: .9;
  letter-spacing: -.055em;
}

.split-feature-heading>p {
  max-width: 430px
}

.split-flip-track {
  width: min(52vw, 900px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 0;
  perspective: 1900px;
  overflow: visible;
  padding: 0;
  will-change: width;
}

.featured-split-scene .split-feature-card {
  position: relative;
  display: block;
  aspect-ratio: 5/7;
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
  background: transparent;
  box-shadow: 0 34px 90px rgba(0, 0, 0, .34);
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  transform-origin: 50% 50%;
  overflow: visible;
  transition: none;
  will-change: transform, border-radius;
}

.featured-split-scene .split-feature-card:hover {
  border-color: transparent;
}

.featured-split-scene .feature-face {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, .10);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
}

.featured-split-scene .feature-front {
  z-index: 2;
  transform: rotateY(0deg) translateZ(1px);
  background: #28130d;
}

.featured-split-scene .feature-front::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, .02), rgba(17, 8, 5, .2));
}

.featured-split-scene .feature-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.featured-split-scene .feature-back {
  transform: rotateY(180deg) translateZ(1px);
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #382017 0%, #24110c 100%);
  color: var(--text);
}

.featured-split-scene .feature-back-image {
  position: relative;
  height: 64%;
  overflow: hidden;
  background: #2b1710;
}

.featured-split-scene .feature-back-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(24, 10, 7, .48));
  pointer-events: none;
}

.featured-split-scene .feature-back-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .7s var(--ease);
}

.featured-split-scene .split-feature-card:hover .feature-back-image img {
  transform: scale(1.035)
}

.featured-split-scene .feature-meta {
  flex: 1;
  min-height: 0;
  padding: 18px 18px 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  direction: ltr;
  text-align: left;
}

.featured-split-scene .feature-meta small {
  color: var(--mint-2);
  font: 800 9px/1 Arial, sans-serif;
  letter-spacing: .16em;
  text-align: left;
}

.featured-split-scene .feature-meta h3 {
  margin: 8px 0 12px;
  font: 800 clamp(18px, 1.55vw, 25px)/1.05 Arial, sans-serif;
  text-align: left;
}

.featured-split-scene .feature-meta strong {
  font: 800 clamp(16px, 1.2vw, 20px)/1 Arial, sans-serif;
}

.featured-split-scene .feature-meta span {
  margin-top: auto;
  padding-top: 12px;
  color: #c7b3a2;
  font: 700 8px/1 Arial, sans-serif;
  letter-spacing: .14em;
}

.split-feature-hint {
  margin: 26px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: #ad9584;
  font: 800 8px/1 Arial, sans-serif;
  letter-spacing: .2em;
  will-change: transform, opacity;
}

.split-feature-hint i {
  font-style: normal;
  color: var(--mint);
  font-size: 17px
}

/* JS unavailable / reduced-motion fallback: show the useful product side. */
.featured-split-scene.split-feature-fallback {
  padding: 100px 0 120px
}

.featured-split-scene.split-feature-fallback .featured-stage {
  min-height: auto;
  padding: 0
}

.featured-split-scene.split-feature-fallback .split-feature-heading {
  opacity: 1 !important;
  transform: none !important;
  width: 100%;
  margin-bottom: 34px
}

.featured-split-scene.split-feature-fallback .split-flip-track {
  width: 100% !important;
  gap: 18px !important
}

.featured-split-scene.split-feature-fallback .split-feature-card {
  border-radius: 28px !important;
  transform: none !important
}

.featured-split-scene.split-feature-fallback .feature-front {
  display: none
}

.featured-split-scene.split-feature-fallback .feature-back {
  position: absolute;
  transform: none
}

.featured-split-scene.split-feature-fallback .split-feature-hint {
  display: none
}

@media(max-width:900px) {

  .featured-split-scene,
  .featured-split-scene.split-feature-mobile {
    padding: 72px 0 88px;
    overflow: hidden
  }

  .featured-split-scene .featured-stage,
  .featured-split-scene.split-feature-mobile .featured-stage {
    min-height: auto;
    padding: 0;
    display: block
  }

  .featured-split-scene .split-feature-heading,
  .featured-split-scene.split-feature-mobile .split-feature-heading {
    width: 100%;
    opacity: 1 !important;
    transform: none !important;
    display: block;
    margin-bottom: 28px;
  }

  .featured-split-scene .split-feature-heading>p {
    margin-top: 15px;
    font-size: 12px
  }

  .featured-split-scene .split-flip-track,
  .featured-split-scene.split-feature-mobile .split-flip-track {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 14px !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
    perspective: none;
  }

  .featured-split-scene .split-feature-card,
  .featured-split-scene.split-feature-mobile .split-feature-card {
    width: 100%;
    min-height: 270px;
    aspect-ratio: auto;
    border-radius: 26px !important;
    transform: none !important;
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .featured-split-scene .feature-front {
    display: none
  }

  .featured-split-scene .feature-back {
    position: relative;
    inset: auto;
    transform: none;
    min-height: 270px;
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
    border: 0;
    backface-visibility: visible;
  }

  .featured-split-scene .feature-back-image {
    height: 100%;
    min-height: 270px
  }

  .featured-split-scene .feature-meta {
    padding: 24px 20px;
    justify-content: center
  }

  .featured-split-scene .feature-meta h3 {
    font-size: clamp(21px, 4.5vw, 28px)
  }

  .featured-split-scene .feature-meta span {
    margin-top: 24px
  }

  .featured-split-scene .split-feature-hint {
    display: none
  }
}

@media(max-width:560px) {
  .featured-split-scene {
    padding: 62px 0 72px
  }

  .featured-split-scene .split-feature-heading h2 {
    font-size: clamp(42px, 12vw, 54px)
  }

  .featured-split-scene .feature-back {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .featured-split-scene .split-feature-card {
    min-height: 0
  }

  .featured-split-scene .feature-back-image {
    height: 250px;
    min-height: 250px
  }

  .featured-split-scene .feature-meta {
    min-height: 170px;
    padding: 20px
  }
}

@media(prefers-reduced-motion:reduce) {
  .featured-split-scene {
    padding: 72px 0 90px
  }

  .featured-split-scene .featured-stage {
    min-height: auto;
    padding: 0
  }

  .featured-split-scene .split-feature-heading {
    opacity: 1 !important;
    transform: none !important;
    width: 100%
  }

  .featured-split-scene .split-flip-track {
    width: 100% !important;
    gap: 16px !important
  }

  .featured-split-scene .split-feature-card {
    border-radius: 26px !important;
    transform: none !important
  }

  .featured-split-scene .feature-front {
    display: none
  }

  .featured-split-scene .feature-back {
    position: absolute;
    transform: none
  }

  .featured-split-scene .split-feature-hint {
    display: none
  }
}

/* Split scene startup state + seamless outer corners before GSAP separates cards. */
.home-page .featured-split-scene .split-feature-heading {
  opacity: 0;
  transform: translateY(48px)
}

.featured-split-scene .split-left {
  border-radius: 30px 0 0 30px
}

.featured-split-scene .split-center {
  border-radius: 0
}

.featured-split-scene .split-right {
  border-radius: 0 30px 30px 0
}

.featured-split-scene .split-feature-card:hover {
  transform: none
}

.featured-split-scene.split-feature-fallback .split-feature-heading,
.featured-split-scene.split-feature-mobile .split-feature-heading {
  opacity: 1;
  transform: none
}

@media(max-width:900px) {
  .home-page .featured-split-scene .split-feature-heading {
    opacity: 1;
    transform: none
  }
}

@media(prefers-reduced-motion:reduce) {
  .featured-split-scene .split-flip-track {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important
  }

  .featured-split-scene .split-feature-card {
    aspect-ratio: 5/7 !important;
    min-height: 0 !important
  }

  .featured-split-scene .feature-back {
    position: absolute !important;
    inset: 0 !important;
    display: flex !important;
    transform: none !important
  }
}

@media(max-width:900px) and (prefers-reduced-motion:reduce) {
  .featured-split-scene .split-flip-track {
    grid-template-columns: 1fr !important
  }

  .featured-split-scene .split-feature-card {
    aspect-ratio: auto !important;
    min-height: 270px !important
  }

  .featured-split-scene .feature-back {
    position: relative !important;
    inset: auto !important;
    display: grid !important;
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr) !important
  }
}

@media(max-width:560px) and (prefers-reduced-motion:reduce) {
  .featured-split-scene .split-feature-card {
    min-height: 0 !important
  }

  .featured-split-scene .feature-back {
    grid-template-columns: 1fr !important
  }
}

/* Offline/native-scroll fallback for the same split/flip choreography. */
.featured-split-scene.split-feature-native {
  height: 360svh;
  overflow: visible;
}

.featured-split-scene.split-feature-native .featured-stage {
  position: sticky;
  top: 0;
  min-height: 100svh;
  height: 100svh;
}

@media(max-width:900px) {
  .featured-split-scene.split-feature-native {
    height: auto;
    overflow: hidden
  }

  .featured-split-scene.split-feature-native .featured-stage {
    position: relative;
    top: auto;
    height: auto;
    min-height: auto
  }
}

/* =========================================================
   V1.7 — Redo Media-inspired 3D split / expand / flip scene
   Exact interaction model: DEFAULT → EXPAND → FLIP.
   ========================================================= */
.redo-split-scene {
  position: relative;
  min-height: 340svh;
  padding: 0 !important;
  overflow: visible !important;
  background: #120b08;
  border-block: 1px solid rgba(255, 255, 255, .045);
}

.redo-split-scene::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 34%, rgba(120, 208, 198, .055), transparent 25%),
    radial-gradient(circle at 50% 68%, rgba(214, 166, 110, .05), transparent 28%);
}

.redo-stage {
  position: sticky !important;
  top: 0;
  min-height: 100svh !important;
  height: 100svh;
  width: 100%;
  padding: 0 !important;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.redo-feature-heading {
  position: absolute;
  top: clamp(64px, 8.8vh, 96px);
  left: 50%;
  transform: translate(-50%, 28px);
  width: min(980px, calc(100% - 44px));
  text-align: center;
  opacity: 0;
  z-index: 8;
  pointer-events: none;
  will-change: transform, opacity;
}

.redo-feature-heading .kicker {
  display: block;
  margin-bottom: 12px;
  color: var(--mint-2);
}

.redo-feature-heading h2 {
  margin: 0;
  font-size: clamp(46px, 5.2vw, 78px);
  line-height: .94;
  letter-spacing: -.045em;
  color: var(--text);
}

.redo-split-track {
  --redo-width: 720px;
  --redo-gap: 0px;
  width: var(--redo-width) !important;
  max-width: none !important;
  margin: clamp(74px, 8vh, 104px) auto 0 !important;
  padding: 0 !important;
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: var(--redo-gap) !important;
  align-items: center !important;
  overflow: visible !important;
  perspective: 1500px !important;
  perspective-origin: 50% 45%;
  transform-style: preserve-3d;
  direction: ltr;
  will-change: width, gap;
}

.redo-split-scene .redo-card {
  position: relative !important;
  display: block !important;
  width: 100% !important;
  min-width: 0 !important;
  aspect-ratio: 5/7 !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  overflow: visible !important;
  transform-style: preserve-3d !important;
  -webkit-transform-style: preserve-3d !important;
  transform-origin: 50% 50% !important;
  box-shadow: none !important;
  transition: none !important;
  will-change: transform, border-radius;
}

.redo-split-scene .redo-card:hover {
  transform: none
}

.redo-split-scene .redo-card-left {
  z-index: 1;
  border-radius: 24px 0 0 24px
}

.redo-split-scene .redo-card-center {
  z-index: 2;
  border-radius: 0
}

.redo-split-scene .redo-card-right {
  z-index: 1;
  border-radius: 0 24px 24px 0
}

.redo-split-scene .feature-face {
  position: absolute !important;
  inset: 0 !important;
  width: 100%;
  height: 100%;
  overflow: hidden !important;
  border-radius: inherit !important;
  border: 1px solid rgba(255, 255, 255, .08) !important;
  backface-visibility: hidden !important;
  -webkit-backface-visibility: hidden !important;
  transform-style: preserve-3d !important;
  -webkit-transform-style: preserve-3d !important;
}

.redo-card-front {
  z-index: 2 !important;
  transform: rotateY(0deg) translateZ(.2px) !important;
  background: #21110c !important;
}

.redo-card-front::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .02), rgba(0, 0, 0, .09));
  pointer-events: none;
}

.redo-card-front img {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  object-fit: cover !important;
  transform: none !important;
}

.redo-card-back {
  z-index: 1 !important;
  transform: rotateY(180deg) translateZ(.2px) !important;
  display: block !important;
  padding: clamp(18px, 1.7vw, 28px) !important;
  color: #15120f !important;
  border: 1px solid rgba(255, 255, 255, .17) !important;
  box-shadow: 0 34px 80px rgba(0, 0, 0, .34);
}

.redo-back-cream {
  background: linear-gradient(150deg, #f1ece4 0%, #d8d2c9 100%) !important
}

.redo-back-mint {
  background: linear-gradient(155deg, #8ad9cf 0%, #5db8ae 100%) !important;
  color: #10201d !important
}

.redo-back-dark {
  background: linear-gradient(150deg, #29231f 0%, #15120f 100%) !important;
  color: #f4eee5 !important
}

.redo-back-mark {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  object-fit: contain;
  opacity: .16;
  filter: brightness(.35);
}

.redo-back-dark .redo-back-mark {
  filter: brightness(4);
  opacity: .18
}

.redo-card-index {
  position: absolute;
  top: 20px;
  left: 20px;
  font: 800 10px/1 Arial, sans-serif;
  letter-spacing: .18em;
  opacity: .48;
}

.redo-back-copy {
  position: absolute;
  inset: auto clamp(18px, 1.7vw, 28px) clamp(18px, 1.7vw, 28px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  direction: ltr;
  text-align: left;
}

.redo-back-copy small {
  font: 800 8px/1 Arial, sans-serif;
  letter-spacing: .17em;
  opacity: .56;
}

.redo-back-copy h3 {
  margin: 16px 0 18px;
  max-width: 92%;
  font: 700 clamp(24px, 2.05vw, 34px)/.95 Arial, sans-serif;
  letter-spacing: -.04em;
  text-align: left;
}

.redo-back-copy p {
  margin: 0 0 clamp(18px, 2.4vw, 34px);
  max-width: 95%;
  font: 500 clamp(10px, .78vw, 13px)/1.45 Arial, sans-serif;
  opacity: .58;
}

.redo-back-copy>div {
  width: 100%;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
}

.redo-back-copy strong {
  font: 800 clamp(16px, 1.2vw, 20px)/1 Arial, sans-serif
}

.redo-back-copy span {
  font: 800 8px/1 Arial, sans-serif;
  letter-spacing: .14em;
  opacity: .62
}

.redo-scroll-hint {
  position: absolute;
  left: 50%;
  bottom: clamp(26px, 4vh, 48px);
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  color: #8e7769;
  font: 800 8px/1 Arial, sans-serif;
  letter-spacing: .2em;
  z-index: 7;
  will-change: opacity, transform;
}

.redo-scroll-hint i {
  font-style: normal;
  color: var(--mint);
  font-size: 17px
}

/* Tablet/mobile: exactly like the reference tutorial's fallback — no pinned 3D.
   Show the useful back faces in a clean vertical stack. */
@media(max-width:900px) {
  .redo-split-scene {
    min-height: 0 !important;
    padding: 82px 0 94px !important;
    overflow: hidden !important;
  }

  .redo-stage {
    position: relative !important;
    top: auto !important;
    min-height: 0 !important;
    height: auto !important;
    overflow: visible !important;
    display: block !important;
    width: min(100% - 30px, 720px) !important;
    margin-inline: auto !important;
  }

  .redo-feature-heading {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: 100% !important;
    transform: none !important;
    opacity: 1 !important;
    margin: 0 0 30px !important;
    text-align: right !important;
  }

  .redo-feature-heading h2 {
    font-size: clamp(44px, 12vw, 68px)
  }

  .redo-split-track {
    width: 100% !important;
    margin: 0 !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 14px !important;
    perspective: none !important;
  }

  .redo-split-scene .redo-card {
    aspect-ratio: auto !important;
    min-height: 310px !important;
    transform: none !important;
    border-radius: 26px !important;
    overflow: hidden !important;
    box-shadow: 0 24px 70px rgba(0, 0, 0, .28) !important;
  }

  .redo-card-front {
    display: none !important
  }

  .redo-card-back {
    position: relative !important;
    inset: auto !important;
    min-height: 310px !important;
    transform: none !important;
    backface-visibility: visible !important;
    -webkit-backface-visibility: visible !important;
  }

  .redo-back-copy h3 {
    font-size: clamp(28px, 7vw, 38px)
  }

  .redo-back-copy p {
    font-size: 12px;
    max-width: 520px
  }

  .redo-scroll-hint {
    display: none !important
  }
}

@media(max-width:520px) {
  .redo-split-scene {
    padding: 66px 0 76px !important
  }

  .redo-stage {
    width: calc(100% - 20px) !important
  }

  .redo-split-scene .redo-card {
    min-height: 300px !important;
    border-radius: 22px !important
  }

  .redo-card-back {
    min-height: 300px !important;
    padding: 20px !important
  }

  .redo-back-copy {
    inset: auto 20px 20px
  }

  .redo-back-mark {
    top: 18px;
    right: 18px;
    width: 38px;
    height: 38px
  }

  .redo-card-index {
    top: 18px;
    left: 18px
  }
}

@media(prefers-reduced-motion:reduce) {
  .redo-split-scene {
    min-height: 0 !important;
    padding: 84px 0 !important
  }

  .redo-stage {
    position: relative !important;
    height: auto !important;
    min-height: 0 !important
  }

  .redo-feature-heading {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    opacity: 1 !important;
    margin: 0 auto 28px !important
  }

  .redo-split-track {
    width: min(1080px, calc(100% - 44px)) !important;
    gap: 18px !important;
    margin: 0 auto !important
  }

  .redo-split-scene .redo-card {
    transform: none !important;
    border-radius: 24px !important
  }

  .redo-card-front {
    display: none !important
  }

  .redo-card-back {
    transform: none !important;
    backface-visibility: visible !important;
    -webkit-backface-visibility: visible !important
  }

  .redo-scroll-hint {
    display: none !important
  }
}


/* =========================================================
   V1.8 — smoother one-image → split → slow flip choreography
   ========================================================= */

/* The header starts edge-to-edge and JS contracts it into the current floating pill. */
.site-header {
  top: 0;
  width: 100%;
  max-width: none;
  border-radius: 0;
}

.hero-copy {
  transform: translateX(-100px);
}

.hero-title {
  will-change: opacity, transform, filter, clip-path;
}

/* Longer scroll runway makes the interaction feel deliberate rather than twitchy. */
.redo-split-scene {
  min-height: 430svh !important;
}

.redo-stage {
  perspective: 1800px;
}

.redo-split-track {
  position: relative !important;
  transform-origin: 50% 50%;
  perspective: 1800px !important;
  perspective-origin: 50% 48% !important;
  will-change: width, gap, transform !important;
}

/* Literal full image shown before the split. */
.redo-master-frame {
  position: absolute;
  inset: 0;
  z-index: 30;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 28px;
  box-shadow: 0 42px 110px rgba(0, 0, 0, .42);
  background: #20100b;
  pointer-events: none;
  transform: translateZ(2px);
  transform-origin: 50% 50%;
  will-change: opacity, border-radius;
}

.redo-master-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, .015), rgba(12, 6, 4, .12));
}

.redo-master-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* A 5:3 master split into 3 equal vertical panels produces 5:9 cards. */
.redo-split-scene .redo-card {
  aspect-ratio: 5/9 !important;
  opacity: 0;
}

.redo-card-front img {
  object-fit: cover !important;
}

.redo-card-back {
  padding: clamp(16px, 1.45vw, 24px) !important;
}

.redo-back-copy {
  inset: auto clamp(16px, 1.45vw, 24px) clamp(16px, 1.45vw, 24px);
}

.redo-back-copy h3 {
  font-size: clamp(20px, 1.65vw, 30px);
}

.redo-back-copy p {
  font-size: clamp(9px, .7vw, 12px);
}

/* Tablet keeps the actual 3D perspective rather than falling back to stacked cards. */
@media(max-width:900px) {
  .redo-split-scene {
    min-height: 365svh !important;
    padding: 0 !important;
    overflow: visible !important;
  }

  .redo-stage {
    position: sticky !important;
    top: 0 !important;
    width: 100% !important;
    height: 100svh !important;
    min-height: 100svh !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
    perspective: 1100px !important;
  }

  .redo-feature-heading {
    position: absolute !important;
    top: clamp(62px, 8vh, 84px) !important;
    left: 50% !important;
    width: min(92vw, 700px) !important;
    margin: 0 !important;
    transform: translate(-50%, 34px);
    text-align: center !important;
    opacity: 0;
    pointer-events: none;
  }

  .redo-feature-heading h2 {
    font-size: clamp(40px, 9vw, 62px) !important;
  }

  .redo-split-track {
    width: 72vw !important;
    max-width: none !important;
    margin: clamp(70px, 8vh, 96px) auto 0 !important;
    padding: 0 !important;
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    align-items: center !important;
    gap: 0 !important;
    perspective: 1100px !important;
    overflow: visible !important;
  }

  .redo-split-scene .redo-card {
    width: 100% !important;
    min-width: 0 !important;
    min-height: 0 !important;
    aspect-ratio: 5/9 !important;
    border: 0 !important;
    border-radius: 22px 0 0 22px;
    overflow: visible !important;
    box-shadow: none !important;
    transform-style: preserve-3d !important;
  }

  .redo-split-scene .redo-card-center {
    border-radius: 0
  }

  .redo-split-scene .redo-card-right {
    border-radius: 0 22px 22px 0
  }

  .redo-card-front {
    display: block !important;
    position: absolute !important;
    inset: 0 !important;
    transform: rotateY(0deg) translateZ(.2px) !important;
    backface-visibility: hidden !important;
    -webkit-backface-visibility: hidden !important;
  }

  .redo-card-back {
    position: absolute !important;
    inset: 0 !important;
    min-height: 0 !important;
    display: block !important;
    transform: rotateY(180deg) translateZ(.2px) !important;
    backface-visibility: hidden !important;
    -webkit-backface-visibility: hidden !important;
    padding: 14px !important;
  }

  .redo-back-mark {
    width: 28px;
    height: 28px;
    top: 12px;
    right: 12px;
  }

  .redo-card-index {
    top: 12px;
    left: 12px;
    font-size: 7px;
  }

  .redo-back-copy {
    inset: auto 12px 13px;
  }

  .redo-back-copy small {
    font-size: 6px
  }

  .redo-back-copy h3 {
    margin: 10px 0 8px;
    font-size: clamp(13px, 2.8vw, 20px);
    line-height: .95;
  }

  .redo-back-copy p {
    font-size: 8px;
    line-height: 1.3;
    margin-bottom: 11px;
  }

  .redo-back-copy strong {
    font-size: 12px
  }

  .redo-back-copy span {
    font-size: 5px
  }

  .redo-scroll-hint {
    display: flex !important;
    bottom: 24px !important;
  }
}

@media(max-width:640px) {
  .hero-copy {
    transform: none;
  }

  .redo-split-scene {
    min-height: 340svh !important;
  }

  .redo-feature-heading {
    top: 72px !important;
    width: calc(100% - 28px) !important;
  }

  .redo-feature-heading .kicker {
    font-size: 8px;
    margin-bottom: 8px;
  }

  .redo-feature-heading h2 {
    font-size: clamp(34px, 10vw, 48px) !important;
  }

  .redo-split-track {
    width: 84vw !important;
    margin-top: 74px !important;
    perspective: 850px !important;
  }

  .redo-master-frame {
    border-radius: 20px;
  }

  .redo-split-scene .redo-card {
    aspect-ratio: 5/9 !important;
  }

  .redo-card-back {
    padding: 10px !important;
  }

  .redo-back-copy {
    inset: auto 9px 10px;
  }

  .redo-back-copy h3 {
    font-size: clamp(11px, 3.4vw, 16px);
    margin: 7px 0 7px;
  }

  .redo-back-copy p {
    display: none;
  }

  .redo-back-copy>div {
    align-items: center;
  }

  .redo-back-copy strong {
    font-size: 10px;
  }

  .redo-back-copy span {
    display: none;
  }

  .redo-back-mark {
    width: 22px;
    height: 22px;
    top: 9px;
    right: 9px;
  }

  .redo-card-index {
    top: 9px;
    left: 9px;
  }
}

/* Reduced motion remains intentionally static/accessibility-first. */
@media(prefers-reduced-motion:reduce) {

  .redo-master-frame {
    display: none
  }

  .redo-split-scene .redo-card {
    opacity: 1
  }
}

/* =========================================================
   V1.9 — hero readability + BIG→small→split + product backs
   ========================================================= */

/* Hero title must remain a hero element, not disappear mid-read. */
.hero-title.arabic-reveal.is-visible {
  opacity: 1;
  visibility: visible;
}

/* Give the featured choreography a longer, calmer runway. */
.redo-split-scene {
  min-height: 520svh !important;
}

.redo-stage {
  perspective: 1900px !important;
  perspective-origin: 50% 48% !important;
}

.redo-feature-heading {
  top: clamp(82px, 9.5vh, 108px) !important;
  z-index: 70 !important;
  text-shadow: 0 10px 34px rgba(0, 0, 0, .42);
}

.redo-feature-heading h2 {
  font-size: clamp(52px, 5.6vw, 86px) !important;
}

.redo-split-track {
  margin: 0 auto !important;
  z-index: 20;
  perspective: 1900px !important;
  perspective-origin: 50% 46% !important;
}

.redo-master-frame {
  z-index: 35 !important;
  box-shadow: 0 54px 140px rgba(0, 0, 0, .52) !important;
}

/* The back is now a real product side, not a flat colour card. */
.redo-card-back {
  padding: 0 !important;
  overflow: hidden !important;
  background: #17100c !important;
  color: #fff !important;
}

.redo-back-product {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.035);
  filter: saturate(.92) contrast(1.04) brightness(.9);
}

.redo-back-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(12, 6, 4, .02) 0%, rgba(12, 6, 4, .08) 36%, rgba(12, 6, 4, .72) 68%, rgba(12, 6, 4, .96) 100%);
  pointer-events: none;
}

.redo-back-cream .redo-back-overlay {
  background: linear-gradient(180deg, rgba(25, 12, 7, .01) 0%, rgba(25, 12, 7, .10) 34%, rgba(72, 38, 20, .74) 69%, rgba(36, 18, 11, .97) 100%);
}

.redo-back-mint .redo-back-overlay {
  background: linear-gradient(180deg, rgba(3, 34, 31, .02) 0%, rgba(3, 34, 31, .10) 34%, rgba(7, 47, 43, .72) 69%, rgba(8, 27, 25, .97) 100%);
}

.redo-back-dark .redo-back-overlay {
  background: linear-gradient(180deg, rgba(5, 4, 3, .03) 0%, rgba(5, 4, 3, .16) 36%, rgba(5, 4, 3, .76) 69%, rgba(5, 4, 3, .98) 100%);
}

.redo-back-mark,
.redo-card-index,
.redo-back-copy {
  z-index: 4 !important;
}

.redo-back-mark {
  filter: brightness(5) !important;
  opacity: .72 !important;
}

.redo-card-index {
  color: #fff !important;
  opacity: .82 !important;
  text-shadow: 0 3px 18px rgba(0, 0, 0, .55);
}

.redo-back-copy {
  left: clamp(12px, 1vw, 18px) !important;
  right: clamp(12px, 1vw, 18px) !important;
  bottom: clamp(12px, 1vw, 18px) !important;
  padding: clamp(13px, 1vw, 18px) !important;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 18px;
  background: rgba(18, 10, 7, .44);
  backdrop-filter: blur(13px) saturate(115%);
  -webkit-backdrop-filter: blur(13px) saturate(115%);
  color: #fff !important;
  text-shadow: 0 2px 16px rgba(0, 0, 0, .42);
}

.redo-back-copy small,
.redo-back-copy p,
.redo-back-copy span {
  color: #fff !important;
}

.redo-back-copy small {
  opacity: .72 !important
}

.redo-back-copy p {
  opacity: .76 !important
}

.redo-back-copy span {
  opacity: .78 !important
}

.redo-back-copy strong {
  color: #fff !important
}

/* Keep the product photo visually alive after the flip settles. */
.redo-card:hover .redo-back-product {
  transform: scale(1.065);
  transition: transform .8s var(--ease);
}

@media(max-width:900px) {
  .redo-split-scene {
    min-height: 455svh !important;
    padding: 0 !important;
    overflow: visible !important
  }

  .redo-stage {
    position: sticky !important;
    top: 0 !important;
    width: 100% !important;
    height: 100svh !important;
    min-height: 100svh !important;
    overflow: hidden !important;
    perspective: 1250px !important;
  }

  .redo-feature-heading {
    position: absolute !important;
    top: clamp(74px, 8vh, 92px) !important;
    opacity: 0 !important;
    margin: 0 !important;
    z-index: 70 !important;
  }

  .redo-split-track {
    margin: 0 auto !important;
    perspective: 1250px !important;
  }

  .redo-card-front {
    display: block !important
  }

  .redo-card-back {
    position: absolute !important;
    inset: 0 !important;
    min-height: 0 !important;
    transform: rotateY(180deg) translateZ(.2px) !important;
    backface-visibility: hidden !important;
    -webkit-backface-visibility: hidden !important;
  }

  .redo-back-copy {
    padding: 10px !important;
    border-radius: 13px !important;
    background: rgba(13, 8, 6, .48) !important;
  }

  .redo-back-copy h3 {
    font-size: clamp(13px, 2.8vw, 20px) !important;
    margin: 8px 0 7px !important
  }

  .redo-back-copy p {
    font-size: 8px !important;
    margin-bottom: 9px !important
  }

  .redo-back-copy strong {
    font-size: 11px !important
  }
}

@media(max-width:640px) {
  .redo-split-scene {
    min-height: 420svh !important
  }

  .redo-feature-heading {
    top: 70px !important;
    width: calc(100% - 24px) !important;
  }

  .redo-feature-heading h2 {
    font-size: clamp(36px, 10.8vw, 50px) !important
  }

  .redo-back-copy {
    left: 7px !important;
    right: 7px !important;
    bottom: 7px !important;
    padding: 8px !important;
    border-radius: 10px !important;
  }

  .redo-back-copy small {
    font-size: 5.5px !important
  }

  .redo-back-copy h3 {
    font-size: clamp(10px, 3vw, 14px) !important;
    margin: 5px 0 !important
  }

  .redo-back-copy p {
    display: none !important
  }

  .redo-back-copy strong {
    font-size: 9px !important
  }

  .redo-back-copy span {
    display: none !important
  }

  .redo-back-mark {
    width: 20px !important;
    height: 20px !important;
    top: 8px !important;
    right: 8px !important
  }

  .redo-card-index {
    top: 8px !important;
    left: 8px !important;
    font-size: 6px !important
  }
}

/* V1.9 — keep the redo featured scene cinematic on mobile, not stacked. */
@media(max-width:900px) {

  .redo-split-scene {
    min-height: 455svh !important;
    padding: 0 !important;
    overflow: visible !important;
  }

  .redo-stage {
    position: sticky !important;
    top: 0 !important;
    width: 100% !important;
    height: 100svh !important;
    min-height: 100svh !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
    perspective: 1250px !important;
    perspective-origin: 50% 46% !important;
  }

  .redo-split-scene .redo-split-track {
    width: 88vw !important;
    max-width: none !important;
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    align-items: center !important;
    gap: 0 !important;
    margin: 0 auto !important;
    overflow: visible !important;
    perspective: 1250px !important;
    transform-style: preserve-3d !important;
  }

  .redo-split-scene .redo-card {
    grid-column: auto !important;
    grid-row: 1 !important;
    width: 100% !important;
    min-width: 0 !important;
    aspect-ratio: 5/9 !important;
    min-height: 0 !important;
    overflow: visible !important;
    box-shadow: none !important;
    transform-style: preserve-3d !important;
    -webkit-transform-style: preserve-3d !important;
  }

  .redo-split-scene .redo-card-front {
    display: block !important;
    position: absolute !important;
    inset: 0 !important;
    transform: rotateY(0deg) translateZ(.2px) !important;
    backface-visibility: hidden !important;
    -webkit-backface-visibility: hidden !important;
  }

  .redo-split-scene .redo-card-back {
    position: absolute !important;
    inset: 0 !important;
    min-height: 0 !important;
    display: block !important;
    transform: rotateY(180deg) translateZ(.2px) !important;
    backface-visibility: hidden !important;
    -webkit-backface-visibility: hidden !important;
  }

  .redo-split-scene .redo-scroll-hint {
    display: flex !important;
  }
}

@media(max-width:640px) {

  .redo-split-scene {
    min-height: 420svh !important;
  }

  .redo-feature-heading {
    top: 74px !important;
    width: calc(100% - 28px) !important;
  }

  .redo-feature-heading h2 {
    font-size: clamp(34px, 10vw, 48px) !important;
  }

  .redo-split-scene .redo-split-track {
    width: 92vw !important;
  }

  .redo-back-copy {
    left: 8px !important;
    right: 8px !important;
    bottom: 8px !important;
  }
}

/* Hero video keeps the existing crop and fills the media frame. */
.hero-media video.hero-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 43%;
}

@media(max-width:980px) {
  .hero-media video.hero-video {
    object-position: center 46%;
  }
}

/* Redo featured scene: the three slices are the source image at rest. */
.redo-split-scene {
  min-height: 432svh !important;
  padding: 0 !important;
  overflow: visible !important;
}

.redo-stage {
  position: sticky !important;
  top: 0 !important;
  width: 100% !important;
  height: 100svh !important;
  min-height: 100svh !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
  perspective: 1900px !important;
}

.redo-feature-heading {
  opacity: 0;
  transform: translate(-50%, 28px);
}

.redo-feature-heading.animotion-fade-in-up {
  animation: animotion-fade-in-up .85s cubic-bezier(.22, 1, .36, 1) .22s both;
}

.redo-scroll-hint {
  opacity: 1 !important;
  transform: translateX(-50%) !important;
}

.redo-split-track {
  width: min(1540px, 92vw) !important;
  max-width: none !important;
  margin: 0 auto !important;
  padding: 0 !important;
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 0 !important;
  align-items: center !important;
  overflow: visible !important;
  perspective: 1900px !important;
  perspective-origin: 50% 46% !important;
  transform: none !important;
  transform-style: preserve-3d !important;
  will-change: gap !important;
  pointer-events: none;
}

.redo-split-scene .redo-card {
  pointer-events: auto;
  width: 100% !important;
  min-width: 0 !important;
  min-height: 0 !important;
  aspect-ratio: 5/9 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  opacity: 1 !important;
  overflow: visible !important;
  box-shadow: none !important;
  transform-style: preserve-3d !important;
  -webkit-transform-style: preserve-3d !important;
  transition: transform .95s cubic-bezier(.2, .72, .18, 1) !important;
  transition-delay: var(--redo-flip-delay, 0ms) !important;
  will-change: transform, border-radius !important;
}

.redo-split-scene .redo-card.animotion-card-flip-3d {
  animation: none !important;
}

.redo-split-scene .redo-card-front,
.redo-split-scene .redo-card-back {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  overflow: hidden !important;
  border: 0 !important;
  border-radius: inherit !important;
  backface-visibility: hidden !important;
  -webkit-backface-visibility: hidden !important;
  transform-style: preserve-3d !important;
  -webkit-transform-style: preserve-3d !important;
}

.redo-split-scene .redo-card-front {
  display: block !important;
  transform: rotateY(0deg) translateZ(.2px) !important;
}

.redo-split-scene .redo-card-back {
  display: block !important;
  transform: rotateY(180deg) translateZ(.2px) !important;
}

.redo-split-scene .redo-card-front img {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  object-fit: fill !important;
}

.redo-split-scene .redo-card-mobile-extra {
  display: none !important;
}

.redo-back-blue .redo-back-overlay {
  background: linear-gradient(180deg, rgba(2, 29, 43, .03) 0%, rgba(2, 54, 80, .14) 34%, rgba(5, 73, 102, .72) 69%, rgba(5, 25, 39, .98) 100%);
}

@media(max-width:900px) {
  .redo-split-scene {
    min-height: 380svh !important
  }

  .redo-stage {
    perspective: 1250px !important
  }

  .redo-split-track {
    width: 88vw !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 0 !important;
    perspective: 1250px !important;
  }

  .redo-split-scene .redo-card {
    aspect-ratio: 5/9 !important
  }
}

@media(max-width:640px) {
  .redo-split-scene {
    min-height: 353svh !important
  }

  .redo-split-scene .redo-split-track {
    width: min(92vw, 460px) !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    grid-template-rows: repeat(2, minmax(0, 1fr)) !important;
    grid-auto-flow: row !important;
    grid-auto-columns: auto !important;
    align-items: stretch !important;
  }

  .redo-split-scene .redo-card-mobile-extra {
    display: block !important;
  }

  .redo-split-scene .redo-card {
    aspect-ratio: 4/5 !important;
    transform: translate3d(0, 0, 0) rotateZ(0deg) rotateY(0deg);
    grid-column: auto !important;
    grid-row: auto !important;
  }

  .redo-split-scene .redo-card-left {
    grid-column: 1 !important;
    grid-row: 1 !important;
  }

  .redo-split-scene .redo-card-center {
    grid-column: 2 !important;
    grid-row: 1 !important;
  }

  .redo-split-scene .redo-card-right {
    grid-column: 1 !important;
    grid-row: 2 !important;
  }

  .redo-split-scene .redo-card-blue {
    grid-column: 2 !important;
    grid-row: 2 !important;
  }

  .redo-split-scene .redo-card-front {
    background: url("assets/featured-qahwa-mobile-grid.png") center/200% 200% no-repeat !important;
  }

  .redo-split-scene .redo-card-front img {
    opacity: 0 !important;
  }

  .redo-split-scene .redo-card-left .redo-card-front {
    background-position: left top !important;
  }

  .redo-split-scene .redo-card-center .redo-card-front {
    background-position: right top !important;
  }

  .redo-split-scene .redo-card-right .redo-card-front {
    background-position: left bottom !important;
  }

  .redo-split-scene .redo-card-blue .redo-card-front {
    background-position: right bottom !important;
  }

  .redo-split-scene .redo-card.animotion-card-flip-3d {
    transform: translate3d(0, 0, 0) rotateZ(0deg) rotateY(180deg) !important;
  }

  .redo-split-scene .redo-card-back {
    border-radius: inherit !important;
  }

  .redo-split-scene .redo-back-product {
    object-position: center top !important;
    transform: scale(1.01) !important;
  }

  .redo-split-scene .redo-back-copy {
    left: 12px !important;
    right: 12px !important;
    bottom: 12px !important;
    padding: 9px 11px !important;
    border-radius: 14px !important;
    text-align: left !important;
  }

  .redo-split-scene .redo-back-copy small {
    display: none !important;
  }

  .redo-split-scene .redo-back-copy h3 {
    font-size: clamp(13px, 4.4vw, 18px) !important;
    margin: 0 0 8px !important;
    line-height: .95 !important;
    white-space: nowrap !important;
  }

  .redo-split-scene .redo-back-copy h3 br {
    display: none !important;
  }

  .redo-split-scene .redo-back-copy p {
    display: none !important;
  }

  .redo-split-scene .redo-back-copy strong {
    font-size: 13px !important;
    display: block !important;
  }

  .redo-split-scene .redo-back-copy span {
    display: none !important;
  }
}

@keyframes animotion-fade-in-up {
  from {
    opacity: 0;
    transform: translate(-50%, 28px)
  }

  to {
    opacity: 1;
    transform: translate(-50%, 0)
  }
}

/* Qahwa X public light theme */
html,
body {
  background: #f7f1e7;
  color: #2b1a0e;
}

.grain {
  opacity: .026;
  mix-blend-mode: multiply;
}

.scroll-progress i {
  background: linear-gradient(90deg, #7a4e2d, #c69c6d);
}

.site-header {
  border-color: rgba(92, 58, 33, .16);
  background: rgba(247, 241, 231, .82);
  box-shadow: 0 18px 48px rgba(43, 26, 14, .12);
}

.brand img {
  filter: none;
}

.desktop-nav {
  background: rgba(230, 212, 182, .52);
}

.desktop-nav a {
  color: #5c3a21;
}

.desktop-nav a:hover,
.menu-page .desktop-nav a.is-current {
  background: rgba(255, 250, 242, .74);
  color: #2b1a0e;
}

.header-cta,
.btn-mint {
  background: #7a4e2d;
  color: #f7f1e7;
  box-shadow: 0 16px 35px rgba(92, 58, 33, .22);
}

.header-cta:hover,
.btn-mint:hover {
  background: #5c3a21;
}

.menu-toggle {
  background: rgba(122, 78, 45, .12);
}

.menu-toggle span {
  background: #2b1a0e;
}

.mobile-menu {
  background: rgba(247, 241, 231, .97);
  color: #2b1a0e;
}

.hero {
  background:
    radial-gradient(circle at 16% 24%, rgba(198, 156, 109, .26), transparent 24%),
    linear-gradient(115deg, #f7f1e7 0%, #f7f1e7 52%, #e6d4b6 100%);
}

.hero-media {
  box-shadow: inset 1px 0 0 rgba(43, 26, 14, .10);
}

.hero-media-shade {
  background:
    linear-gradient(90deg, #f7f1e7 0%, rgba(247, 241, 231, .78) 20%, rgba(247, 241, 231, .15) 58%, rgba(247, 241, 231, .02) 100%),
    linear-gradient(0deg, rgba(247, 241, 231, .30), transparent 46%);
}

.hero-x,
.menu-watermark,
.home-menu-cta-x,
.menu-page-x,
.story-mark {
  filter: none;
  opacity: .055;
}

.kicker,
.hero-stamp small,
.feature-meta small,
.category-head small,
.add-ons-title small,
.menu-breadcrumb span,
.menu-visual-badge .badge-top small,
.menu-page-scroll i,
.hero-scroll i {
  color: #7a4e2d;
}

.hero-sub,
.section-title-row>p,
.menu-intro p,
.home-menu-cta-copy p,
.story-copy p,
.menu-page-sub {
  color: #5c3a21;
}

.btn-glass,
.menu-page .menu-back {
  border-color: rgba(92, 58, 33, .18);
  background: rgba(255, 250, 242, .60);
  color: #5c3a21;
}

.hero-facts {
  color: #7a4e2d;
}

.hero-facts b,
.menu-page-stats strong {
  color: #2b1a0e;
}

.hero-facts i {
  background: #c69c6d;
}

.hero-stamp,
.menu-visual-badge {
  border-color: rgba(92, 58, 33, .14);
  background: rgba(255, 250, 242, .72);
  color: #2b1a0e;
  box-shadow: 0 22px 58px rgba(43, 26, 14, .14);
}

.hero-stamp span,
.hero-scroll,
.menu-page-stats span,
.menu-page-scroll,
.category-count,
.menu-breadcrumb {
  color: #7a4e2d;
}

.featured,
.redo-split-scene {
  background: linear-gradient(180deg, #f7f1e7 0%, #e6d4b6 100%) !important;
  color: #2b1a0e;
}

.feature-card {
  border-color: rgba(92, 58, 33, .14);
  background: linear-gradient(180deg, rgba(255, 250, 242, .82), rgba(230, 212, 182, .42));
  box-shadow: 0 24px 60px rgba(43, 26, 14, .14);
}

.feature-card:hover {
  border-color: rgba(198, 156, 109, .54);
}

.feature-meta h3,
.feature-meta strong,
.product-name,
.category-head h3,
.menu-page-title,
.section-title-row h2,
.menu-intro h2,
.home-menu-cta h2,
.story h2,
.find h2 {
  color: #2b1a0e;
}

.menu-intro {
  background: linear-gradient(180deg, #e6d4b6 0%, #f7f1e7 100%);
  border-block-color: rgba(92, 58, 33, .12);
}

.home-menu-cta {
  background-image:
    url("assets/navbar-texture.png"),
    linear-gradient(180deg, #e6d4b6 0%, #f7f1e7 100%);
  background-repeat: repeat-x, no-repeat;
  background-position: center top, center;
  background-size: auto 100%, cover;
  border-block-color: rgba(92, 58, 33, .12);
}

.menu-page-hero {
  background:
    radial-gradient(circle at 23% 36%, rgba(198, 156, 109, .22), transparent 22%),
    radial-gradient(circle at 74% 14%, rgba(215, 184, 153, .34), transparent 24%),
    linear-gradient(125deg, #f7f1e7 0%, #f7f1e7 50%, #e6d4b6 100%);
  border-bottom-color: rgba(92, 58, 33, .12);
}

.menu-page-hero::before {
  background: linear-gradient(105deg, rgba(255, 250, 242, .30), transparent 32%, rgba(198, 156, 109, .14) 58%, transparent);
}

.menu-page-glow {
  background: rgba(198, 156, 109, .18);
}

.menu-page-stats i {
  background: rgba(92, 58, 33, .16);
}

.orbit-one {
  border-color: rgba(122, 78, 45, .16);
}

.orbit-two {
  border-color: rgba(198, 156, 109, .18);
}

.menu-intro::before,
.home-menu-cta::after {
  background:
    radial-gradient(circle at 20% 45%, rgba(198, 156, 109, .20), transparent 26%),
    linear-gradient(90deg, rgba(255, 250, 242, .16), transparent);
}

.menu-intro h2 em,
.home-menu-cta h2 em,
.story h2 em {
  color: #7a4e2d;
}

.category-rail-wrap,
.menu-page .category-rail-wrap {
  background: rgba(247, 241, 231, .92);
  border-block-color: rgba(92, 58, 33, .13);
  border-bottom-color: rgba(92, 58, 33, .13);
  box-shadow: 0 14px 34px rgba(43, 26, 14, .10);
}

.category-rail-wrap::after {
  background: linear-gradient(180deg, rgba(198, 156, 109, .18), transparent);
}

.category-chip {
  border-color: rgba(92, 58, 33, .15);
  background: rgba(230, 212, 182, .62);
  color: #5c3a21;
}

.category-chip:hover,
.category-chip.active,
.category-chip[data-cat="all"].active {
  border-color: #7a4e2d;
  background: #7a4e2d;
  color: #f7f1e7;
}

.category-chip[data-cat="all"] {
  border-color: rgba(122, 78, 45, .22);
  color: #7a4e2d;
}

.full-menu,
.menu-page .menu-browser {
  background: #f7f1e7;
}

.menu-category {
  border-bottom-color: rgba(92, 58, 33, .13);
}

.category-visual-inner,
.menu-visual-card {
  border-color: rgba(92, 58, 33, .13);
  background: #e6d4b6;
  box-shadow: 0 28px 72px rgba(43, 26, 14, .16);
}

.category-visual::before {
  color: rgba(92, 58, 33, .08);
}

.product-row {
  border-bottom-color: rgba(92, 58, 33, .12);
}

.leader {
  border-bottom-color: rgba(92, 58, 33, .22);
}

.price,
.add-on b {
  color: #7a4e2d;
}

.add-ons {
  border-color: rgba(122, 78, 45, .18);
  background: linear-gradient(135deg, rgba(230, 212, 182, .58), rgba(255, 250, 242, .72));
}

.add-on {
  background: rgba(255, 250, 242, .74);
}

.story {
  background: #f7f1e7;
}

.story-panel {
  border-color: rgba(92, 58, 33, .14);
  background: linear-gradient(135deg, #fffaf2 0%, #e6d4b6 100%);
  box-shadow: 0 28px 74px rgba(43, 26, 14, .14);
}

.story-drink {
  box-shadow: 0 30px 70px rgba(43, 26, 14, .20);
}

.story-pill {
  background: rgba(247, 241, 231, .88);
  color: #2b1a0e;
  box-shadow: 0 16px 42px rgba(43, 26, 14, .16);
}

.text-link {
  color: #7a4e2d;
}

.find-panel {
  background: linear-gradient(135deg, #5c3a21 0%, #2b1a0e 100%);
  color: #f7f1e7;
  box-shadow: 0 30px 80px rgba(43, 26, 14, .22);
}

.find-panel::before {
  background:
    radial-gradient(circle at 78% 50%, rgba(215, 184, 153, .22), transparent 32%),
    linear-gradient(90deg, rgba(198, 156, 109, .10), transparent);
}

.kicker.dark {
  color: #d7b899;
}

.find-panel h2,
.find-panel h2 em {
  color: #f7f1e7;
}

.find-panel p {
  color: #e6d4b6;
}

.btn-light {
  background: #e6d4b6;
  color: #2b1a0e;
}

.find-rotator {
  background: #5c3a21 center bottom/cover no-repeat;
  box-shadow: 0 34px 75px rgba(43, 26, 14, .28);
}

.footer {
  margin-top: 0;
  padding: 35px 28px 65px;
  border-top: 0;
  border-radius: 34px 34px 0 0;
  background: #2b1a0e;
  color: #e6d4b6;
}

.footer img {
  filter: brightness(0) saturate(100%) invert(89%) sepia(14%) saturate(576%) hue-rotate(346deg) brightness(97%);
}

@media(max-width:980px) {

  .hero-media-shade {
    background:
      linear-gradient(0deg, #f7f1e7 0%, rgba(247, 241, 231, .78) 30%, rgba(247, 241, 231, .20) 68%, rgba(247, 241, 231, .06) 100%),
      linear-gradient(90deg, rgba(247, 241, 231, .42), transparent 58%);
  }

  .hero-sub {
    color: #5c3a21;
  }
}

@media(max-width:640px) {
  .hero {
    background: #f7f1e7;
  }

  .hero-media-shade {
    background: linear-gradient(0deg, #f7f1e7 0%, rgba(247, 241, 231, .46) 36%, rgba(247, 241, 231, .08) 78%);
  }

  .footer {
    padding-inline: 20px;
  }
}

body.site-theme-dark {
  background: #1f0f0a;
  color: #fff3e3;
}

body.site-theme-dark .grain {
  opacity: .045;
  mix-blend-mode: normal;
}

body.site-theme-dark .site-header {
  border-color: rgba(255, 255, 255, .08);
  background: rgba(42, 23, 17, .54);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .18);
}

body.site-theme-dark .brand img {
  filter: brightness(0) saturate(100%) invert(92%) sepia(11%) saturate(929%) hue-rotate(338deg) brightness(102%);
}

body.site-theme-dark .desktop-nav {
  background: rgba(255, 255, 255, .035);
}

body.site-theme-dark .desktop-nav a {
  color: #c9b3a2;
}

body.site-theme-dark .desktop-nav a:hover,
body.site-theme-dark.menu-page .desktop-nav a.is-current {
  background: rgba(255, 255, 255, .07);
  color: #fff;
}

body.site-theme-dark .header-cta,
body.site-theme-dark .btn-mint {
  background: #78d0c6;
  color: #17342f;
  box-shadow: none;
}

body.site-theme-dark .menu-toggle {
  background: rgba(255, 255, 255, .08);
}

body.site-theme-dark .menu-toggle span {
  background: #fff;
}

body.site-theme-dark .mobile-menu {
  background: rgba(23, 10, 7, .97);
  color: #fff3e3;
}

body.site-theme-dark .hero {
  background: radial-gradient(circle at 22% 30%, rgba(142, 74, 37, .20), transparent 28%), linear-gradient(120deg, #1a0b07 0%, #27120c 48%, #2b1610 100%);
}

body.site-theme-dark .hero-media-shade {
  background: linear-gradient(90deg, #20100a 0%, rgba(32, 16, 10, .52) 16%, rgba(32, 16, 10, .08) 55%, rgba(17, 8, 5, .06)), linear-gradient(0deg, rgba(20, 9, 6, .26), transparent 42%);
}

body.site-theme-dark .hero-x,
body.site-theme-dark .menu-watermark,
body.site-theme-dark .home-menu-cta-x,
body.site-theme-dark .menu-page-x,
body.site-theme-dark .story-mark {
  filter: brightness(4);
  opacity: .035;
}

body.site-theme-dark .hero-sub,
body.site-theme-dark .section-title-row>p,
body.site-theme-dark .menu-intro p,
body.site-theme-dark .home-menu-cta-copy p,
body.site-theme-dark .story-copy p,
body.site-theme-dark .menu-page-sub {
  color: #bca18d;
}

body.site-theme-dark .btn-glass,
body.site-theme-dark.menu-page .menu-back {
  border-color: rgba(255, 255, 255, .10);
  background: rgba(255, 255, 255, .045);
  color: #fff3e3;
}

body.site-theme-dark .hero-facts {
  color: #bfa795;
}

body.site-theme-dark .hero-facts b,
body.site-theme-dark .menu-page-stats strong,
body.site-theme-dark .feature-meta h3,
body.site-theme-dark .feature-meta strong,
body.site-theme-dark .product-name,
body.site-theme-dark .category-head h3,
body.site-theme-dark .menu-page-title,
body.site-theme-dark .section-title-row h2,
body.site-theme-dark .menu-intro h2,
body.site-theme-dark .home-menu-cta h2,
body.site-theme-dark .story h2,
body.site-theme-dark .find h2 {
  color: #fff3e3;
}

body.site-theme-dark .hero-stamp,
body.site-theme-dark .menu-visual-badge {
  border-color: rgba(255, 255, 255, .11);
  background: rgba(23, 10, 7, .68);
  color: #fff3e3;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .24);
}

body.site-theme-dark .hero-stamp span,
body.site-theme-dark .hero-scroll,
body.site-theme-dark .menu-page-stats span,
body.site-theme-dark .menu-page-scroll,
body.site-theme-dark .category-count,
body.site-theme-dark .menu-breadcrumb {
  color: #aa9280;
}

body.site-theme-dark .featured,
body.site-theme-dark .redo-split-scene {
  background: #120b08 !important;
  color: #fff3e3;
}

body.site-theme-dark .feature-card {
  border-color: rgba(255, 255, 255, .10);
  background: linear-gradient(180deg, rgba(255, 255, 255, .065), rgba(255, 255, 255, .025));
  box-shadow: 0 32px 90px rgba(0, 0, 0, .34);
}

body.site-theme-dark .menu-intro {
  background: linear-gradient(135deg, #2b160f 0%, #1b0c08 62%, #27130d 100%);
  border-block-color: rgba(255, 255, 255, .07);
}

body.site-theme-dark .home-menu-cta {
  background-image:
    url("assets/navbar-texture.png"),
    linear-gradient(135deg, #2b160f 0%, #1b0c08 62%, #27130d 100%);
  background-repeat: repeat-x, no-repeat;
  background-position: center top, center;
  background-size: auto 100%, cover;
  background-blend-mode: soft-light, normal;
  border-block-color: rgba(255, 255, 255, .07);
}

body.site-theme-dark .menu-page-hero {
  background:
    radial-gradient(circle at 23% 36%, rgba(120, 208, 198, .12), transparent 22%),
    radial-gradient(circle at 74% 14%, rgba(174, 98, 50, .20), transparent 24%),
    linear-gradient(125deg, #170a07 0%, #26120c 48%, #321b13 100%);
  border-bottom-color: rgba(255, 255, 255, .07);
}

body.site-theme-dark .category-rail-wrap,
body.site-theme-dark.menu-page .category-rail-wrap {
  background: linear-gradient(180deg, rgba(31, 15, 10, .995), rgba(31, 15, 10, .97));
  border-block-color: rgba(255, 255, 255, .08);
  border-bottom-color: rgba(255, 255, 255, .09);
  box-shadow: 0 14px 34px rgba(12, 5, 3, .30);
}

body.site-theme-dark .category-chip {
  border-color: rgba(255, 255, 255, .09);
  background: #2b1812;
  color: #bfa794;
}

body.site-theme-dark .category-chip:hover,
body.site-theme-dark .category-chip.active,
body.site-theme-dark .category-chip[data-cat="all"].active {
  border-color: #78d0c6;
  background: #78d0c6;
  color: #18352f;
}

body.site-theme-dark .full-menu,
body.site-theme-dark.menu-page .menu-browser {
  background: #1f0f0a;
}

body.site-theme-dark .menu-category,
body.site-theme-dark .product-row {
  border-bottom-color: rgba(255, 255, 255, .065);
}

body.site-theme-dark .leader {
  border-bottom-color: rgba(255, 255, 255, .15);
}

body.site-theme-dark .category-visual-inner,
body.site-theme-dark .menu-visual-card {
  border-color: rgba(255, 255, 255, .11);
  background: #2d1811;
  box-shadow: 0 32px 90px rgba(0, 0, 0, .34);
}

body.site-theme-dark .category-visual::before {
  color: rgba(255, 255, 255, .045);
}

body.site-theme-dark .price,
body.site-theme-dark .add-on b {
  color: #f2ddbd;
}

body.site-theme-dark .add-ons {
  border-color: rgba(120, 208, 198, .16);
  background: linear-gradient(135deg, rgba(120, 208, 198, .07), rgba(255, 255, 255, .025));
}

body.site-theme-dark .add-on {
  background: rgba(255, 255, 255, .035);
}

body.site-theme-dark .story {
  background: #1f0f0a;
}

body.site-theme-dark .story-panel {
  border-color: rgba(255, 255, 255, .10);
  background: linear-gradient(135deg, #321c14, #21110c);
  box-shadow: 0 32px 90px rgba(0, 0, 0, .34);
}

body.site-theme-dark .story-drink {
  box-shadow: 0 38px 80px rgba(0, 0, 0, .42);
}

body.site-theme-dark .story-pill {
  background: rgba(245, 224, 194, .88);
  color: #2c1810;
  box-shadow: 0 18px 45px rgba(0, 0, 0, .22);
}

body.site-theme-dark .find-panel {
  background: linear-gradient(105deg, #d8bb90, #a8754d);
  color: #2a160e;
  box-shadow: 0 32px 90px rgba(0, 0, 0, .34);
}

body.site-theme-dark .find-panel h2,
body.site-theme-dark .find-panel h2 em {
  color: #2a160e;
}

body.site-theme-dark .find-panel p {
  color: #2a160e;
}

body.site-theme-dark .kicker.dark {
  color: #4f493d;
}

body.site-theme-dark .btn-light {
  background: #f5e5cc;
  color: #3b2317;
}

body.site-theme-dark .footer {
  border-top: 1px solid rgba(255, 255, 255, .10);
  border-radius: 0;
  background: transparent;
  color: #9c8372;
}

@media(max-width:980px) {

  body.site-theme-dark .hero-media-shade {
    background: linear-gradient(0deg, rgba(20, 9, 6, .94) 0%, rgba(20, 9, 6, .67) 38%, rgba(20, 9, 6, .19) 68%, rgba(20, 9, 6, .08) 100%), linear-gradient(90deg, rgba(22, 10, 7, .34), transparent 55%);
  }

  body.site-theme-dark .hero-sub {
    color: #dbc7b5;
  }
}

@media(max-width:640px) {
  body.site-theme-dark .hero {
    background: #1f0f0a;
  }

  body.site-theme-dark .hero-media-shade {
    background: linear-gradient(0deg, rgba(31, 15, 10, .88) 0%, rgba(31, 15, 10, .16) 30%, rgba(31, 15, 10, .04) 72%);
  }
}

/* Final public polish: integrated navbar, floating scroll state, and natural menu flow. */
.site-header {
  position: relative !important;
  top: 0;
  inset-inline: auto;
  margin-inline: auto;
  transform: none;
  width: 100%;
  height: 78px;
  padding: 0 16px 0 18px;
  border-radius: 0;
  box-shadow: none;
  transition: top .34s var(--ease), width .34s var(--ease), height .3s var(--ease), border-radius .34s var(--ease), background-color .34s ease, box-shadow .34s ease, border-color .34s ease;
}

.brand img {
  width: 140px;
  max-height: 47px
}

.desktop-nav {
  gap: 18px;
  padding: 0;
  background: transparent !important;
  border-radius: 0;
}

.desktop-nav a {
  font-family: "Aref Ruqaa", Tahoma, "Segoe UI", Arial, sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
  padding: 12px 18px;
}

.header-cta {
  font-size: 13px;
  padding: 14px 20px
}

body:not(.site-theme-dark) .site-header {
  background: rgba(247, 241, 231, .98);
  border-color: rgba(92, 58, 33, .10);
}

body.site-theme-dark .site-header {
  background: rgba(42, 23, 17, .34);
  border-color: rgba(255, 255, 255, .08);
}

body.home-page.header-floating .site-header {
  position: fixed !important;
  top: 12px;
  inset-inline: 20px;
  width: auto;
  height: 78px;
  border-radius: 18px;
  box-shadow: 0 12px 40px rgba(43, 26, 14, .10);
}

body.home-page:not(.site-theme-dark).header-floating .site-header {
  background: rgba(247, 241, 231, .88);
  border-color: rgba(92, 58, 33, .12);
  backdrop-filter: blur(18px) saturate(125%);
}

body.home-page.site-theme-dark.header-floating .site-header {
  background: rgba(42, 23, 17, .54);
  border-color: rgba(255, 255, 255, .08);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .18);
}

/* The menu header now occupies the same first-flow slot as the home header. */
body.menu-page .site-header {
  position: relative !important;
  top: auto !important;
  inset-inline: auto !important;
  width: 100% !important;
  transform: none;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.menu-page-hero {
  padding-top: 46px
}

body:not(.site-theme-dark) .menu-page-hero {
  background:
    radial-gradient(circle at 25% 35%, rgba(198, 156, 109, .18), transparent 36%),
    linear-gradient(135deg, #5c3a21 0%, #3d2819 55%, #2b1a0e 100%);
  border-bottom-color: rgba(230, 212, 182, .18);
}

body:not(.site-theme-dark) .menu-page-hero .kicker {
  color: #c69c6d
}

body:not(.site-theme-dark) .menu-page-hero .menu-breadcrumb {
  color: #d7b899
}

body:not(.site-theme-dark) .menu-page-hero .menu-breadcrumb strong {
  color: #e6d4b6
}

body:not(.site-theme-dark) .menu-page-hero .menu-page-title {
  color: #e6d4b6
}

body:not(.site-theme-dark) .menu-page-hero .menu-page-title em {
  color: #d7b899
}

body:not(.site-theme-dark) .menu-page-hero .menu-page-sub {
  color: #d7b899
}

body:not(.site-theme-dark) .menu-page-hero .menu-page-stats strong {
  color: #e6d4b6
}

body:not(.site-theme-dark) .menu-page-hero .menu-page-stats span {
  color: #d7b899
}

body:not(.site-theme-dark) .menu-page-hero .menu-page-stats i {
  background: rgba(230, 212, 182, .24)
}

body:not(.site-theme-dark) .menu-page-hero .btn-mint {
  background: #c69c6d;
  color: #2b1a0e
}

body:not(.site-theme-dark) .menu-page-hero .btn-mint:hover {
  background: #7a4e2d;
  color: #f7f1e7
}

body:not(.site-theme-dark) .menu-page-hero .btn-glass {
  border-color: rgba(230, 212, 182, .28);
  background: rgba(230, 212, 182, .10);
  color: #e6d4b6
}

/* The browser page owns scrolling; categories never become nested scroll surfaces. */
.menu-page .menu-browser {
  height: auto;
  min-height: 0;
  overflow: visible;
}

.menu-page .full-menu {
  height: auto;
  max-height: none;
  overflow: visible;
  width: 100%;
  max-width: none;
}

.menu-page .full-menu:not(.showing-all) .menu-category,
.menu-page .full-menu.showing-all .menu-category {
  height: auto;
  max-height: none;
  overflow: visible;
  overscroll-behavior: auto;
}

@media(max-width:980px) {

  .menu-page-hero {
    padding-top: 47px
  }
}

@media(max-width:640px) {

  .menu-page-hero {
    padding-top: 40px
  }
}

/* Requested home refinements: stronger hero mark and orbiting story labels. */
.hero-x {
  opacity: .14;
}

body.site-theme-dark .hero-x {
  opacity: .08;
}

.story-visual {
  --story-orbit-radius: 235px;
}

.story-drink.animotion-swing {
  transform-origin: 50% 10%;
  animation: qahwaStorySwingSoft 6.8s ease-in-out infinite !important;
}

.story-pill {
  left: 50%;
  top: 50%;
  right: auto;
  bottom: auto;
  will-change: transform;
}

.pill-one {
  animation: storyPillOrbitOne 28s linear infinite;
}

.pill-two {
  animation: storyPillOrbitTwo 28s linear infinite;
}

@keyframes qahwaStorySwingSoft {

  0%,
  100% {
    transform: rotate(3deg)
  }

  25% {
    transform: rotate(-2.4deg)
  }

  50% {
    transform: rotate(2deg)
  }

  75% {
    transform: rotate(-1.2deg)
  }
}

@keyframes storyPillOrbitOne {
  from {
    transform: translate(-50%, -50%) rotate(218deg) translateX(var(--story-orbit-radius)) rotate(-225deg)
  }

  to {
    transform: translate(-50%, -50%) rotate(578deg) translateX(var(--story-orbit-radius)) rotate(-585deg)
  }
}

@keyframes storyPillOrbitTwo {
  from {
    transform: translate(-50%, -50%) rotate(38deg) translateX(var(--story-orbit-radius)) rotate(-32deg)
  }

  to {
    transform: translate(-50%, -50%) rotate(398deg) translateX(var(--story-orbit-radius)) rotate(-392deg)
  }
}

@media(max-width:980px) {
  .story-visual {
    --story-orbit-radius: min(36vw, 215px);
  }
}

@media(max-width:640px) {
  .story-visual {
    --story-orbit-radius: min(40vw, 170px);
  }
}

@media(prefers-reduced-motion:reduce) {

  .story-drink.animotion-swing,
  .pill-one,
  .pill-two {
    animation: none !important;
  }

  .pill-one {
    transform: translate(-50%, -50%) rotate(218deg) translateX(var(--story-orbit-radius)) rotate(-225deg)
  }

  .pill-two {
    transform: translate(-50%, -50%) rotate(38deg) translateX(var(--story-orbit-radius)) rotate(-32deg)
  }
}

/* Swap only the Story / Find panel skins; content and section order stay intact. */
body:not(.site-theme-dark) .story-panel {
  background:
    linear-gradient(105deg, rgba(43, 26, 14, .86), rgba(43, 26, 14, .58) 54%, rgba(43, 26, 14, .90)),
    url("assets/story-panel-bg.png") center/cover no-repeat;
  border-color: rgba(230, 212, 182, .16);
  box-shadow: 0 30px 80px rgba(43, 26, 14, .22);
}

body:not(.site-theme-dark) .story-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 78% 50%, rgba(215, 184, 153, .22), transparent 32%),
    linear-gradient(90deg, rgba(198, 156, 109, .10), transparent);
}

body:not(.site-theme-dark) .story-copy,
body:not(.site-theme-dark) .story-visual {
  position: relative;
  z-index: 2;
}

body:not(.site-theme-dark) .story-panel .kicker {
  color: #d7b899;
}

body:not(.site-theme-dark) .story-panel h2,
body:not(.site-theme-dark) .story-panel h2 em {
  color: #f7f1e7;
}

body:not(.site-theme-dark) .story-copy p {
  color: #e6d4b6;
}

body:not(.site-theme-dark) .story-panel .text-link {
  color: #c69c6d;
}

body:not(.site-theme-dark) .find-panel {
  background: linear-gradient(135deg, #fffaf2 0%, #e6d4b6 100%);
  border: 1px solid rgba(92, 58, 33, .14);
  color: #2b1a0e;
  box-shadow: 0 28px 74px rgba(43, 26, 14, .14);
}

body:not(.site-theme-dark) .find-panel::before {
  background: radial-gradient(circle at 78% 50%, rgba(198, 156, 109, .20), transparent 31%);
}

body:not(.site-theme-dark) .find-panel .kicker.dark {
  color: #7a4e2d;
}

body:not(.site-theme-dark) .find-panel h2,
body:not(.site-theme-dark) .find-panel h2 em {
  color: #2b1a0e;
}

body:not(.site-theme-dark) .find-panel p {
  color: #5c3a21;
}

body:not(.site-theme-dark) .find-panel .btn-light {
  background: #7a4e2d;
  color: #f7f1e7;
}

body.site-theme-dark .story-panel {
  background:
    linear-gradient(105deg, rgba(43, 26, 14, .48), rgba(215, 184, 153, .16) 54%, rgba(43, 26, 14, .54)),
    url("assets/story-panel-bg.png") center/cover no-repeat;
  border-color: rgba(255, 255, 255, .10);
  color: #2a160e;
}

body.site-theme-dark .story-panel h2,
body.site-theme-dark .story-panel h2 em,
body.site-theme-dark .story-copy p {
  color: #2a160e;
}

body.site-theme-dark .story-panel .kicker,
body.site-theme-dark .story-panel .text-link {
  color: #4f493d;
}

body.site-theme-dark .find-panel {
  background: linear-gradient(135deg, #321c14, #21110c);
  border-color: rgba(255, 255, 255, .10);
  color: #f7f1e7;
}

body.site-theme-dark .find-panel h2,
body.site-theme-dark .find-panel h2 em {
  color: #f7f1e7;
}

body.site-theme-dark .find-panel p {
  color: #dbc7b5;
}

.find-panel .find-mark {
  position: absolute;
  z-index: 1;
  width: min(58vw, 620px);
  left: -8%;
  top: revert-layer;
  transform: rotate(-10deg);
  pointer-events: none;
}

.find-panel>div,
.find-panel .find-rotator {
  position: relative;
  z-index: 3;
}

@media(max-width:640px) {
  .find-panel .find-mark {
    width: 130vw;
    left: -42vw;
    top: -20vw;
  }
}

/* Public footer content block. */
.footer {
  margin-top: 0;
  margin-bottom: 30px;
  padding: 30px 38px 28px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(285px, .4fr);
  align-items: center;
  gap: 26px;
  border: 1px solid rgba(230, 212, 182, .12);
  border-radius: 42px;
  background: linear-gradient(270deg, rgba(43, 26, 14, .98) 0%, rgba(92, 58, 33, .96) 58%, rgba(122, 78, 45, .92) 100%);
  color: #e6d4b6;
  box-shadow: 0 30px 82px rgba(43, 26, 14, .24);
  backdrop-filter: blur(18px) saturate(120%);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
  direction: ltr;
}

.footer-brand {
  grid-column: 2;
  grid-row: 1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  justify-items: start;
  gap: 20px;
  text-align: right;
  direction: ltr;
}

.footer-brand-copy {
  display: grid;
  justify-items: start;
  gap: 14px;
  direction: rtl;
  text-align: right;
}

.footer-brand-copy img {
  width: 172px;
  filter: none;
}

.footer-brand-copy p {
  margin: 0;
  max-width: 255px;
  color: #e6d4b6;
  font: 700 18px/1.55 "Aref Ruqaa", Tahoma, "Segoe UI", Arial, sans-serif;
}

.footer-brand-copy .footer-copyright {
  max-width: 340px;
  color: #d7b899;
  font: 500 11px/1.45 Arial, sans-serif;
  direction: ltr;
  text-align: left;
}

.footer-grid {
  grid-column: 1;
  grid-row: 1;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
  min-height: 210px;
}

.footer-card {
  min-height: 0;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  text-align: center;
  direction: ltr;
}

.footer-card+.footer-card {
  border-left: 1px solid rgba(230, 212, 182, .12);
}

.footer-info-icon {
  grid-column: 1;
  grid-row: 1 / span 3;
  width: clamp(165px, 13vw, 220px);
  height: clamp(145px, 11vw, 190px);
  margin: 0 0 10px;
  display: grid;
  place-items: center;
  overflow: visible;
  border: 0;
  border-radius: 0;
  color: #d7b899;
  background: transparent;
  box-shadow: none;
  font-style: normal;
}

.footer-info-icon img {
  width: 100%;
  height: 85%;
  display: block;
  object-fit: contain;
  opacity: 1;
  filter: none;
  transform: none;
}

.footer-card small {
  grid-column: 2;
  grid-row: 1;
  display: block;
  margin: 0 0 8px;
  color: #c69c6d;
  font: 800 11px/1 Arial, sans-serif;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.footer-card strong {
  grid-column: 2;
  grid-row: 2;
  display: block;
  color: #fffaf2;
  font: 800 17px/1.3 Arial, sans-serif;
  text-wrap: balance;
}

.footer-card span {
  grid-column: 2;
  grid-row: 3;
  display: block;
  max-width: 250px;
  margin-top: 7px;
  color: #d7b899;
  font-size: 13px;
  line-height: 1.45;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 7px;
  direction: ltr;
}

.footer-brand .footer-social {
  flex-direction: column;
  grid-column: 1;
  grid-row: 1;
  align-self: center;
}

.footer-social a {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 250, 242, .32);
  border-radius: 999px;
  background: rgba(255, 250, 242, .82);
  color: #5c3a21;
  transition: transform .24s var(--ease), background-color .24s ease, border-color .24s ease;
}

.footer-social a:hover {
  animation: animotion-tremble .2s linear infinite;
  border-color: rgba(255, 250, 242, .60);
  background: rgba(255, 250, 242, .96);
}

.footer-social img {
  width: 45px;
  height: 45px;
  display: block;
  object-fit: contain;
  filter: none;
}

body.site-theme-dark .footer {
  background: linear-gradient(270deg, rgba(43, 26, 14, .98) 0%, rgba(92, 58, 33, .96) 58%, rgba(122, 78, 45, .92) 100%);
  color: #e6d4b6;
  border-color: rgba(230, 212, 182, .12);
  box-shadow: 0 26px 80px rgba(0, 0, 0, .22);
}

body.site-theme-dark .footer-brand-copy p,
body.site-theme-dark .footer-card span {
  color: #d7b899;
}

body.site-theme-dark .footer-brand-copy p:first-of-type {
  color: #e6d4b6;
}

body.site-theme-dark .footer-card strong {
  color: #fffaf2;
}

body.site-theme-dark .footer-card small,
body.site-theme-dark .footer-info-icon,
body.site-theme-dark .footer-social a {
  color: #d7b899;
}

@media(max-width:900px) {
  .footer {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 30px 24px 26px;
    border-radius: 32px;
  }

  .footer-brand,
  .footer-grid {
    grid-column: 1;
    grid-row: auto;
  }

  .footer-brand {
    justify-items: start;
    text-align: left;
  }

  .footer-brand-copy {
    justify-items: start;
    text-align: left;
  }

  .footer-grid {
    grid-auto-flow: row;
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .footer-card {
    padding: 16px 0;
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    grid-template-rows: auto auto auto;
    align-items: center;
    justify-content: initial;
    column-gap: 18px;
    text-align: left;
  }

  .footer-card+.footer-card {
    border-left: 0;
    border-top: 1px solid rgba(230, 212, 182, .12);
  }

  .footer-info-icon {
    width: 106px;
    height: 96px;
    margin: 0;
  }

  .footer-card small {
    margin: 2px 0 5px;
    font-size: 9px;
  }

  .footer-card strong {
    font-size: 14px;
  }

  .footer-card span {
    margin-top: 4px;
    font-size: 11px;
  }
}

/* One navigation rule: desktop starts at 1200px; touch-first tablets retain
   the mobile interaction even on a larger iPad landscape viewport. */
@media(max-width:1199px), (hover:none) and (pointer:coarse) {
  .site-header,
  body.home-page.header-floating .site-header {
    position: sticky !important;
    top: 0 !important;
    inset-inline: 0 !important;
    margin-inline: auto;
    width: calc(100% - 20px) !important;
    height: 62px;
    padding: 0 12px;
    grid-template-columns: 46px minmax(0, 1fr) auto;
    gap: 12px;
    direction: ltr;
    border-radius: 20px !important;
    transition: background-color .34s ease, box-shadow .34s ease, border-color .34s ease;
  }

  .desktop-nav, .header-cta {
    display: none;
  }

  .brand {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    min-width: 0;
  }

  .brand img {
    width: 104px;
    max-height: 40px;
  }

  .menu-toggle {
    display: block;
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
    width: 44px;
    height: 44px;
    border-radius: 15px;
  }

  .menu-toggle span {
    left: 13px;
    width: 18px;
  }

  .mobile-menu {
    display: flex;
    z-index: 210;
    inset: 74px 12px auto;
    width: min(420px, calc(100% - 24px));
    height: auto;
    max-height: calc(100dvh - 86px - env(safe-area-inset-bottom));
    margin-inline: auto;
    overflow-y: auto;
    overscroll-behavior: contain;
    justify-content: flex-start;
    padding: 10px 16px;
    border-radius: 22px;
    border: 1px solid rgba(92, 58, 33, .14);
    background: rgba(247, 241, 231, .72);
    backdrop-filter: blur(34px) saturate(145%);
    -webkit-backdrop-filter: blur(34px) saturate(145%);
    box-shadow: 0 20px 50px rgba(43, 26, 14, .20),
      inset 0 1px 0 rgba(255, 250, 242, .55),
      inset 0 -1px 0 rgba(255, 250, 242, .12);
  }

  .mobile-menu a {
    font-size: 20px;
    line-height: 1.2;
    padding: 10px 4px;
    min-height: 44px;
    flex-shrink: 0;
    font-weight: 700;
  }

  .mobile-menu a:last-child {
    border-bottom: 0;
  }

  body.site-theme-dark .mobile-menu {
    background: rgba(23, 10, 7, .68);
    border-color: rgba(255, 243, 227, .20);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .35),
      inset 0 1px 0 rgba(255, 250, 242, .22),
      inset 0 -1px 0 rgba(255, 250, 242, .06);
  }

  .hero-media {
    z-index: 1;
  }

  .hero-x {
    z-index: 0;
  }

  .hero-inner {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-end;
  }

  .hero-copy {
    transform: none;
  }

  .hero-stamp {
    position: relative;
    order: -1;
    align-self: flex-end;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    margin-top: 110px;
    margin-bottom: 24px;
  }

}

@media(min-width:641px) and (max-width:1199px), (min-width:641px) and (hover:none) and (pointer:coarse) {
  .hero-inner {
    padding-bottom: 90px;
  }

  .hero-copy {
    width: 100%;
    padding-top: 0;
    text-align: right;
  }

  .hero-media {
    width: 100%;
    border-radius: 0;
  }

}

@media(max-width:640px) {
  .site-header,
  body.home-page.header-floating .site-header {
    height: 58px;
    padding-inline: 10px;
    grid-template-columns: 42px minmax(0, 1fr) auto;
    border-radius: 18px !important;
  }

  .brand img {
    width: 96px;
    max-height: 36px;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
    border-radius: 14px;
  }

  .menu-toggle span {
    left: 11px;
  }

  .mobile-menu {
    top: 70px;
    max-height: calc(100dvh - 82px - env(safe-area-inset-bottom));
  }

  .hero-stamp {
    position: absolute;
    right: 12px;
    top: -86px;
    margin: 0;
  }

}

/* The original GIF is centered independently from its short introduction. */
body.is-splash-active {
  overflow: hidden;
}

.splash-screen {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: #ECE3D5;
  color: #2b1a0e;
  --character-size: min(480px, 72vw, 48svh);
}

.splash-character {
  position: absolute;
  top: 50%;
  left: 50%;
  width: var(--character-size);
  height: var(--character-size);
  object-fit: contain;
  transform: translate(-50%, -50%);
}

.splash-content {
  position: absolute;
  top: calc(50% + var(--character-size) / 2 + 12px);
  left: 50%;
  transform: translateX(-50%);
  width: min(440px, calc(100% - 40px));
  text-align: center;
}

.splash-content strong {
  font-size: clamp(18px, 2.5vw, 24px);
}

.splash-content p {
  margin: 12px 0 0;
  font-size: clamp(12px, 1.8vw, 14px);
  line-height: 1.65;
  color: #5c3a21;
}

@media(max-height:500px) {
  .splash-screen {
    --character-size: min(220px, 38svh);
  }

  .splash-content {
    top: calc(50% + var(--character-size) / 2 + 4px);
  }

  .splash-content p {
    margin-top: 4px;
  }

}

/* Home splash screen. */
.loading-splash-screen {
  position: fixed;
  inset: 0;
  z-index: 10002;
  display: grid;
  place-items: center;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  color: #2b1a0e;
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  transition: opacity .72s ease, visibility .72s ease, transform .85s cubic-bezier(.22, .61, .36, 1);
}

.loading-splash-screen.animotion-mesh-gradient {
  background:
    radial-gradient(at 40% 20%, #f7f1e7 0%, transparent 50%),
    radial-gradient(at 82% 0%, #c69c6d 0%, transparent 50%),
    radial-gradient(at 0% 48%, #d7b899 0%, transparent 50%),
    radial-gradient(at 82% 82%, #7a4e2d 0%, transparent 50%),
    radial-gradient(at 0% 100%, #5c3a21 0%, transparent 50%),
    #e6d4b6;
  background-size: 200% 200%;
  animation: animotion-meshGradient 8s ease-in-out infinite;
}

.loading-splash-screen::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(115deg, rgba(255, 255, 255, .14), transparent 34%, rgba(43, 26, 14, .08) 100%);
}

.loading-splash-screen::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .12;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.72' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.34'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

.loading-splash-content {
  width: min(520px, calc(100% - 44px));
  display: grid;
  justify-items: center;
  text-align: center;
  direction: ltr;
  animation: loadingSplashContentIn .68s cubic-bezier(.22, .61, .36, 1) both;
}

.loading-splash-mark {
  width: clamp(112px, 14vw, 190px);
  max-height: 32vh;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 20px 30px rgba(43, 26, 14, .18));
}

.loading-splash-wordmark {
  margin-top: 12px;
  color: #4b2816;
  font: 500 clamp(27px, 3vw, 40px)/1.1 Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}

.loading-splash-bean {
  width: 18px;
  height: 25px;
  margin: 17px 0 20px;
  border: 1px solid rgba(92, 58, 33, .72);
  border-radius: 60% 42% 58% 40%;
  position: relative;
  transform: rotate(42deg);
}

.loading-splash-bean::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 2px;
  bottom: 2px;
  width: 1px;
  background: rgba(92, 58, 33, .72);
  transform: rotate(18deg);
}

.loading-splash-progress {
  width: min(430px, 78vw);
  height: 9px;
  padding: 2px;
  overflow: hidden;
  border: 1px solid rgba(43, 26, 14, .52);
  border-radius: 999px;
  background: rgba(247, 241, 231, .48);
  box-shadow: inset 0 1px 4px rgba(43, 26, 14, .14), 0 10px 30px rgba(43, 26, 14, .10);
}

.loading-splash-progress span {
  --loading-splash-progress: 0;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  transform: scaleX(var(--loading-splash-progress));
  transform-origin: left center;
  background: linear-gradient(90deg, #c69c6d 0%, #7a4e2d 54%, #2b1a0e 100%);
  transition: transform .18s ease-out;
}

.loading-splash-message {
  margin-top: 18px;
  color: #5c3a21;
}

.loading-splash-message p {
  margin: 0;
  font: 500 14px/1.65 Tahoma, "Segoe UI", Arial, sans-serif;
}

.loading-splash-message p+p {
  color: #7a4e2d;
  font-family: "Aref Ruqaa", Tahoma, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
}

.loading-splash-screen.is-complete {
  opacity: 0;
  visibility: hidden;
  transform: scale(1.025);
  pointer-events: none;
}

.loading-splash-screen.is-complete .loading-splash-content {
  opacity: 0;
  transform: translateY(-16px) scale(.98);
  transition: opacity .45s ease, transform .58s ease;
}

@keyframes loadingSplashContentIn {
  from {
    opacity: .32;
    transform: translateY(14px) scale(.985)
  }

  to {
    opacity: 1;
    transform: none
  }
}

@media(max-width:640px) {
  .loading-splash-mark {
    width: 120px;
    max-height: 27vh;
  }

  .loading-splash-wordmark {
    margin-top: 8px;
    font-size: 28px;
  }

  .loading-splash-bean {
    margin: 14px 0 18px;
  }

  .loading-splash-progress {
    width: min(310px, 82vw);
  }
}

@media(prefers-reduced-motion:reduce) {

  .loading-splash-screen.animotion-mesh-gradient,
  .loading-splash-content {
    animation: none;
  }

  .loading-splash-screen,
  .loading-splash-progress span {
    transition-duration: .01ms;
  }
}
