/* ══════════════════════════════════════════════
   Sutocafe — Main Stylesheet
   Companion to sutocafe-v2.html
══════════════════════════════════════════════ */

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

/* Lenis handles smooth scroll — no CSS scroll-behavior needed */
/* overflow-x MUST stay on body only — setting it on html makes html the scroll container,
   which breaks position:sticky on every page. Horizontal overflow is handled per-component. */
html {
  height: 100%;
}

body {
  font-family: 'Inter', sans-serif;
  background: #f5f0e8;
  color: #052a42;
  overflow-x: hidden;
}

/* Clip horizontal overflow caused by AOS fade-left / fade-right translateX offsets.
   overflow-x:clip does NOT create a scroll container, so position:sticky still works. */
section {
  overflow-x: clip;
}

/* ── Scrollbar ──────────────────────────── */
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: #f5f0e8;
}

::-webkit-scrollbar-thumb {
  background: #c8874a;
  border-radius: 4px;
}

/* ── Header ─────────────────────────────── */
#site-header,
#fr2-header {
  transition: background .4s ease, box-shadow .4s ease;
}

#site-header.scrolled,
#fr2-header.scrolled {
  background: rgba(5, 42, 66, .97) !important;
  box-shadow: 0 2px 40px rgba(0, 0, 0, .5);
  backdrop-filter: blur(14px);
}

/* ── Mobile menu ────────────────────────── */
#mobile-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s cubic-bezier(.16, 1, .32, 1);
}

#mobile-menu.open {
  max-height: 480px;
}

/* ── Hamburger ──────────────────────────── */
#hamburger.open .bar1 {
  transform: translateY(8px) rotate(45deg);
}

#hamburger.open .bar2 {
  opacity: 0;
}

#hamburger.open .bar3 {
  transform: translateY(-8px) rotate(-45deg);
}

.bar1,
.bar2,
.bar3 {
  transition: transform .3s ease, opacity .3s ease;
}

/* ── Hero swiper ────────────────────────── */
.hero-swiper {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
}

.hero-swiper .swiper-slide {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.hero-swiper .swiper-slide img {
  animation: none;
  transform: scale(1);
  transition: transform 0s;
}

.hero-swiper .swiper-slide-active img {
  transform: scale(1.12);
  transition: transform 9s ease-out;
}

/* ── Hero slide overlays ────────────────── */
.hero-slide-ov {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.hero-slide-ov-navy {
  background:
    linear-gradient(to right, rgba(5, 42, 66, .82) 0%, rgba(5, 42, 66, .45) 38%, rgba(5, 42, 66, .12) 68%, transparent 100%),
    linear-gradient(to bottom, rgba(5, 42, 66, .48) 0%, rgba(5, 42, 66, .04) 28%, transparent 100%),
    linear-gradient(to top, rgba(5, 42, 66, .92) 0%, rgba(5, 42, 66, .05) 38%, transparent 100%),
    linear-gradient(135deg, rgba(5, 42, 66, .52) 0%, rgba(5, 42, 66, .16) 52%, transparent 100%);
}

.hero-slide-ov-maroon {
  background:
    linear-gradient(to right, rgba(5, 42, 66, .82) 0%, rgba(5, 42, 66, .45) 38%, rgba(5, 42, 66, .12) 68%, transparent 100%),
    linear-gradient(to bottom, rgba(5, 42, 66, .48) 0%, rgba(5, 42, 66, .04) 28%, transparent 100%),
    linear-gradient(to top, rgba(5, 42, 66, .92) 0%, rgba(5, 42, 66, .05) 38%, transparent 100%),
    linear-gradient(135deg, rgba(63, 15, 2, .52) 0%, rgba(63, 15, 2, .16) 52%, transparent 100%);
}

.hero-slide-ov-blend {
  background:
    linear-gradient(to right, rgba(5, 42, 66, .82) 0%, rgba(5, 42, 66, .45) 38%, rgba(5, 42, 66, .12) 68%, transparent 100%),
    linear-gradient(to bottom, rgba(5, 42, 66, .48) 0%, rgba(5, 42, 66, .04) 28%, transparent 100%),
    linear-gradient(to top, rgba(5, 42, 66, .92) 0%, rgba(5, 42, 66, .05) 38%, transparent 100%),
    linear-gradient(135deg, rgba(5, 42, 66, .48) 0%, rgba(63, 15, 2, .16) 52%, transparent 100%);
}

/* ── Film grain ─────────────────────────── */
.hero-grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='250' height='250'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.78' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='250' height='250' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
  opacity: 0.065;
}

/* ── Decorative rings ───────────────────── */
.hero-rings-deco {
  position: absolute;
  z-index: 3;
  pointer-events: none;
  right: -170px;
  top: 50%;
  transform: translateY(-50%);
  width: 620px;
  height: 620px;
}

@media (max-width: 767px) {
  .hero-rings-deco {
    display: none;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .hero-rings-deco {
    right: -290px;
    width: 480px;
    height: 480px;
    opacity: .4;
  }
}

.hero-ring-1,
.hero-ring-2,
.hero-ring-3,
.hero-ring-badge {
  position: absolute;
  border-radius: 50%;
}

.hero-ring-1 {
  inset: 0;
  border: 1px solid rgba(200, 135, 74, .09);
  animation: heroSpinCW 55s linear infinite;
}

.hero-ring-2 {
  inset: 72px;
  border: 1px solid rgba(200, 135, 74, .15);
  animation: heroSpinCCW 38s linear infinite;
}

.hero-ring-3 {
  inset: 164px;
  border: 1px solid rgba(200, 135, 74, .22);
  animation: heroSpinCW 22s linear infinite;
}

.hero-ring-badge {
  inset: 0;
  animation: heroSpinCW 28s linear infinite;
}

.hero-ring-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c8874a;
  opacity: .6;
}

.hero-ring-dot-t {
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-ring-dot-b {
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
}

.hero-ring-dot-r {
  right: 0;
  top: 50%;
  transform: translate(50%, -50%);
}

.hero-ring-dot-l {
  left: 0;
  top: 50%;
  transform: translate(-50%, -50%);
}

.hero-ring-glow {
  position: absolute;
  inset: 210px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 135, 74, .1) 0%, transparent 70%);
}

@keyframes heroSpinCW {
  to {
    transform: rotate(360deg);
  }
}

@keyframes heroSpinCCW {
  to {
    transform: rotate(-360deg);
  }
}

/* ── Floating particles ─────────────────── */
@keyframes heroPt {
  0% {
    opacity: 0;
    transform: translateY(0) scale(1);
  }

  18% {
    opacity: 0.85;
  }

  75% {
    opacity: 0.2;
  }

  100% {
    opacity: 0;
    transform: translateY(-80px) scale(0.1);
  }
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 3;
}

.hero-pt {
  position: absolute;
  bottom: 30%;
  display: block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(200, 135, 74, .55);
  animation: heroPt 5.5s ease-in-out infinite;
}

.hero-pt-sm {
  width: 2px;
  height: 2px;
  background: rgba(200, 135, 74, .35);
}

.hero-pt-1 {
  left: 6%;
  animation-delay: 0s;
  animation-duration: 5.5s;
}

.hero-pt-2 {
  left: 16%;
  animation-delay: 1.3s;
  animation-duration: 6.5s;
}

.hero-pt-3 {
  left: 29%;
  animation-delay: 2.7s;
  animation-duration: 4.8s;
}

.hero-pt-4 {
  left: 43%;
  animation-delay: 0.6s;
  animation-duration: 7s;
}

.hero-pt-5 {
  left: 57%;
  animation-delay: 3.4s;
  animation-duration: 5.2s;
}

.hero-pt-6 {
  left: 69%;
  animation-delay: 1.1s;
  animation-duration: 6s;
}

.hero-pt-7 {
  left: 82%;
  animation-delay: 2s;
  animation-duration: 5.8s;
}

.hero-pt-8 {
  left: 93%;
  animation-delay: 4.2s;
  animation-duration: 4.5s;
}

/* ── Vertical brand text ────────────────── */
.hero-side-text {
  position: absolute;
  right: 1.25rem;
  top: 50%;
  z-index: 4;
  pointer-events: none;
  writing-mode: vertical-rl;
  transform: translateY(-50%) rotate(180deg);
}

/* ── Hero slide text animations ─────────── */
@keyframes heroSlideUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-slide-tag,
.hero-slide-heading,
.hero-slide-sep,
.hero-slide-desc,
.hero-slide-btns {
  opacity: 0;
  transform: translateY(22px);
}

.swiper-slide-active .hero-slide-tag {
  animation: heroSlideUp .8s cubic-bezier(.16, 1, .32, 1) .35s forwards;
}

.swiper-slide-active .hero-slide-heading {
  animation: heroSlideUp .9s cubic-bezier(.16, 1, .32, 1) .65s forwards;
}

.swiper-slide-active .hero-slide-sep {
  animation: heroSlideUp .7s cubic-bezier(.16, 1, .32, 1) .90s forwards;
}

.swiper-slide-active .hero-slide-desc {
  animation: heroSlideUp .8s cubic-bezier(.16, 1, .32, 1) 1.05s forwards;
}

.swiper-slide-active .hero-slide-btns {
  animation: heroSlideUp .8s cubic-bezier(.16, 1, .32, 1) 1.25s forwards;
}

/* ── Hero separator line ────────────────── */
.hero-sep-line {
  width: 0;
  height: 1px;
  background: linear-gradient(to right, #c8874a, rgba(200, 135, 74, .35), transparent);
  transition: width 0s;
}

.swiper-slide-active .hero-sep-line {
  width: 56px;
  transition: width 1.1s cubic-bezier(.4, 0, .2, 1) 1.2s;
}

/* ── Glass stats bar ────────────────────── */
.hero-glass-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: rgba(5, 42, 66, .42);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.hero-stat-sep {
  height: 1rem;
  width: 1px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, .14);
}

/* ── Card gradient overlay ──────────────── */
.card-ov-btm {
  background: linear-gradient(to top,
      rgba(5, 42, 66, 1) 0%,
      rgba(5, 42, 66, .92) 28%,
      rgba(5, 42, 66, .45) 55%,
      rgba(5, 42, 66, .08) 100%);
}

/* ── Map pins ───────────────────────────── */
.map-pin-1 {
  position: absolute;
  left: 62%;
  top: 52%;
  transform: translate(-50%, -50%);
}

.map-pin-2 {
  position: absolute;
  left: 55.5%;
  top: 44%;
  transform: translate(-50%, -50%);
}

.map-pin-3 {
  position: absolute;
  left: 45%;
  top: 29%;
  transform: translate(-50%, -50%);
}

.map-pin-4 {
  position: absolute;
  left: 75%;
  top: 59%;
  transform: translate(-50%, -50%);
}

.map-ping-delay-1 {
  animation-delay: .5s;
}

.map-ping-delay-2 {
  animation-delay: 1s;
}

.map-ping-delay-3 {
  animation-delay: 1.5s;
}

/* ── Gallery backdrop ───────────────────── */
.gallery-backdrop {
  background: rgba(5, 42, 66, .96);
  backdrop-filter: blur(10px);
}

/* ── Slide indicators ───────────────────── */
.hero-indicator>span {
  display: block;
  height: 1px;
  width: 100%;
  background: rgba(245, 240, 232, .25);
  transition: background .4s ease, height .4s ease;
}

.hero-indicator.active>span {
  height: 2px;
  background: #c8874a;
}

/* ── Image zoom on hover ────────────────── */
.img-zoom {
  transition: transform .7s ease;
}

.group:hover .img-zoom {
  transform: scale(1.06);
}

/* ── Swiper pagination ──────────────────── */
.swiper-pagination-bullet {
  background: rgba(200, 135, 74, .35) !important;
  width: 24px !important;
  height: 2px !important;
  border-radius: 0 !important;
  opacity: 1 !important;
}

.swiper-pagination-bullet-active {
  background: #c8874a !important;
  width: 42px !important;
}

/* ── Back to top ────────────────────────── */
#back-top {
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity .3s, transform .3s;
}

#back-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* ── Page loader ────────────────────────── */
#page-loader {
  position: fixed;
  inset: 0;
  background: #052a42;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
  transition: opacity .75s cubic-bezier(.4, 0, .2, 1), visibility .75s ease;
}

#page-loader.out {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

/* Central warm glow */
#page-loader::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -58%);
  width: 70vmin;
  height: 70vmin;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 135, 74, .1) 0%, transparent 70%);
  pointer-events: none;
}

/* Corner bracket decorations */
.loader-corner {
  position: absolute;
  width: 36px;
  height: 36px;
}

.loader-corner-tl {
  top: 1.75rem;
  left: 1.75rem;
  border-top: 1.5px solid rgba(200, 135, 74, .35);
  border-left: 1.5px solid rgba(200, 135, 74, .35);
}

.loader-corner-tr {
  top: 1.75rem;
  right: 1.75rem;
  border-top: 1.5px solid rgba(200, 135, 74, .35);
  border-right: 1.5px solid rgba(200, 135, 74, .35);
}

.loader-corner-bl {
  bottom: 1.75rem;
  left: 1.75rem;
  border-bottom: 1.5px solid rgba(200, 135, 74, .35);
  border-left: 1.5px solid rgba(200, 135, 74, .35);
}

.loader-corner-br {
  bottom: 1.75rem;
  right: 1.75rem;
  border-bottom: 1.5px solid rgba(200, 135, 74, .35);
  border-right: 1.5px solid rgba(200, 135, 74, .35);
}

/* Logo reveal */
.loader-logo-wrap {
  animation: loaderLogoIn .9s cubic-bezier(.16, 1, .32, 1) .05s both;
}

.loader-logo-wrap img {
  margin: auto;
}

@keyframes loaderLogoIn {
  from {
    opacity: 0;
    transform: translateY(22px) scale(.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Accent divider line */
.loader-line {
  width: 56px;
  height: 1px;
  margin: 1.4rem auto 0;
  background: linear-gradient(to right, transparent, rgba(200, 135, 74, .65), transparent);
  animation: loaderFadeUp .55s ease .65s both;
}

/* Tagline */
.loader-tagline {
  margin-top: 1rem;
  font-family: 'Inter', sans-serif;
  font-size: .62rem;
  font-weight: 400;
  letter-spacing: .38em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, .32);
  animation: loaderFadeUp .55s ease .8s both;
}

/* Three pulsing dots */
.loader-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  margin-top: 1.85rem;
  animation: loaderFadeUp .45s ease 1s both;
}

.loader-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(200, 135, 74, .45);
  animation: loaderDotPulse 1.3s ease-in-out infinite;
}

.loader-dot:nth-child(1) {
  animation-delay: 0s;
}

.loader-dot:nth-child(2) {
  animation-delay: .2s;
}

.loader-dot:nth-child(3) {
  animation-delay: .4s;
}

@keyframes loaderDotPulse {

  0%,
  70%,
  100% {
    transform: scale(1);
    opacity: .45;
  }

  35% {
    transform: scale(1.6);
    opacity: 1;
    background: #c8874a;
  }
}

/* Bottom progress sweep */
.loader-bar-track {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(200, 135, 74, .07);
}

.loader-bar-fill {
  height: 100%;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(to right, rgba(200, 135, 74, .3), #c8874a 50%, rgba(200, 135, 74, .3));
  animation: loaderBar 1.35s cubic-bezier(.4, 0, .2, 1) .1s forwards;
}

@keyframes loaderBar {
  to {
    transform: scaleX(1);
  }
}

@keyframes loaderFadeUp {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Menu card hover reveal ─────────────── */
.menu-card .reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .4s ease, transform .4s ease;
}

.menu-card:hover .reveal {
  opacity: 1;
  transform: translateY(0);
}

/* ── Moment card ────────────────────────── */
.moment-card .view-overlay {
  opacity: 0;
  transition: opacity .4s ease;
  background: rgba(5, 42, 66, 0);
}

.moment-card:hover .view-overlay {
  opacity: 1;
  background: rgba(5, 42, 66, .65);
}

/* ── Gallery modal ──────────────────────── */
#gallery-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

#gallery-modal.open {
  display: flex;
}

#gallery-modal .gal-img-wrap {
  max-width: min(90vw, 1000px);
  max-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

#gallery-modal .gal-img-wrap img {
  max-height: 75vh;
  max-width: 100%;
  object-fit: contain;
  border-radius: 4px;
  transition: opacity .25s ease;
}

#gallery-modal .gal-img-wrap img.loading {
  opacity: 0;
}

/* ── Partners swiper ────────────────────── */
.partners-swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Cursors ────────────────────────────── */
.menu-card,
.moment-card {
  cursor: pointer;
}

/* ── Feature card — left border draw animation ── */
.feature-card-border {
  position: absolute;
  left: 0;
  top: 1.25rem;
  bottom: 1.25rem;
  width: 2px;
  border-radius: 9999px;
  background: rgba(200, 135, 74, .75);
  transform: scaleY(0);
  transform-origin: center center;
  transition: transform .45s cubic-bezier(.16, 1, .32, 1);
}

.group:hover .feature-card-border {
  transform: scaleY(1);
}

/* ── Stat card — top accent bar ─────────── */
.stat-card-top-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 1rem 1rem 0 0;
  background: linear-gradient(to right, transparent, rgba(200, 135, 74, .9), transparent);
  opacity: 0;
  transition: opacity .5s ease;
}

.group:hover .stat-card-top-bar {
  opacity: 1;
}

/* ════════════════════════════════════════════
   Shared inner-page hero entrance animations
   Triggered by .page-loaded on <body>
   (added ~980 ms after load, after loader fades)
════════════════════════════════════════════ */
.page-hero-tag,
.page-hero-heading,
.page-hero-sep,
.page-hero-desc,
.page-hero-btns {
  opacity: 0;
  transform: translateY(22px);
}

.page-loaded .page-hero-tag {
  animation: heroSlideUp .8s cubic-bezier(.16, 1, .32, 1) .45s forwards;
}

.page-loaded .page-hero-heading {
  animation: heroSlideUp .9s cubic-bezier(.16, 1, .32, 1) .72s forwards;
}

.page-loaded .page-hero-sep {
  animation: heroSlideUp .7s cubic-bezier(.16, 1, .32, 1) .98s forwards;
}

.page-loaded .page-hero-desc {
  animation: heroSlideUp .8s cubic-bezier(.16, 1, .32, 1) 1.1s forwards;
}

.page-loaded .page-hero-btns {
  animation: heroSlideUp .8s cubic-bezier(.16, 1, .32, 1) 1.28s forwards;
}

/* Right-side media panel on inner page heroes */
@keyframes heroSlideRight {
  from {
    opacity: 0;
    transform: translateX(32px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.page-hero-media {
  opacity: 0;
  transform: translateX(32px);
}

.page-loaded .page-hero-media {
  animation: heroSlideRight 1s cubic-bezier(.16, 1, .32, 1) .9s forwards;
}

/* Separator line grows on page-loaded */
.page-sep-line {
  width: 0;
  height: 1px;
  background: linear-gradient(to right, #c8874a, rgba(200, 135, 74, .35), transparent);
  transition: width 0s;
}

.page-loaded .page-sep-line {
  width: 56px;
  transition: width 1.1s cubic-bezier(.4, 0, .2, 1) 1.3s;
}

/* ── Founder card ───────────────────────── */
.founder-desc {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(10px);
  margin-top: 0;
  transition: max-height .6s ease,
    margin-top .6s ease,
    opacity .5s ease .15s,
    transform .5s ease .15s;
}

.founder-card:hover .founder-desc {
  max-height: 160px;
  opacity: 1;
  transform: translateY(0);
  margin-top: 0.75rem;
}

.founder-underline {
  height: 1px;
  width: 2rem;
  background: #c8874a;
  transition: width .5s cubic-bezier(.16, 1, .32, 1);
}

.founder-card:hover .founder-underline {
  width: 4rem;
}

/* ── Pillar card — top bar draws left→right on hover */
.pillar-top-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 1rem 1rem 0 0;
  background: #c8874a;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .5s cubic-bezier(.16, 1, .32, 1);
}

.pillar-card:hover .pillar-top-bar {
  transform: scaleX(1);
}

/* ── Value / progress bar fill ──────────── */
.value-bar-fill {
  height: 100%;
  width: 0;
  border-radius: 9999px;
  background: linear-gradient(to right, rgba(200, 135, 74, .5), rgba(200, 135, 74, .9));
  transition: width .7s ease-out;
}

.group:hover .value-bar-fill {
  width: 100%;
}

/* ── Generic fade-in-up (JS-driven) ─────── */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Active nav link (set by IntersectionObserver) */
#site-header a.nav-active {
  color: #c8874a;
}

/* ── Active page nav link (current page, set by JS) */
#site-header a.page-active {
  color: #c8874a !important;
  position: relative;
}
#site-header a.page-active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #c8874a;
}
#mobile-menu a.page-active {
  color: #c8874a !important;
}

/* ════════════════════════════════════════════
   About page hero animations
════════════════════════════════════════════ */

/* Image panel — GSAP sets & animates clip-path */
.about-hero-img-wrap {
  overflow: hidden;
}

/* ════════════════════════════════════════════
   Reusable decorative background utilities
   (replaces all inline style= attributes)
════════════════════════════════════════════ */

/* Radial accent glows — varying opacity/spread */
.deco-glow-accent {
  background: radial-gradient(circle, rgba(200, 135, 74, .12) 0%, transparent 55%);
}

.deco-glow-accent-md {
  background: radial-gradient(circle, rgba(200, 135, 74, .12) 0%, transparent 60%);
}

.deco-glow-accent-sm {
  background: radial-gradient(circle, rgba(200, 135, 74, .10) 0%, transparent 60%);
}

.deco-glow-accent-xs {
  background: radial-gradient(circle, rgba(200, 135, 74, .08) 0%, transparent 60%);
}

.deco-glow-accent-2xs {
  background: radial-gradient(circle, rgba(200, 135, 74, .07) 0%, transparent 60%);
}

/* Horizontal accent hairlines */
.deco-line-accent {
  background: linear-gradient(to right, transparent, rgba(200, 135, 74, .50), transparent);
}

.deco-line-accent-md {
  background: linear-gradient(to right, transparent, rgba(200, 135, 74, .38), transparent);
}

/* Hero image panel feather overlays */
.img-fade-left {
  background: linear-gradient(to right, rgba(5, 42, 66, .60) 0%, rgba(5, 42, 66, .10) 28%, transparent 55%);
}

.img-fade-btm {
  background: linear-gradient(to top, rgba(5, 42, 66, .35) 0%, transparent 40%);
}

/* Dark-section glass card base */
.card-glass {
  background: linear-gradient(160deg, rgba(255, 255, 255, .05) 0%, rgba(255, 255, 255, .02) 100%);
}

/* Card top-edge radial hover glow */
.card-hover-glow {
  background: radial-gradient(ellipse at 50% -10%, rgba(200, 135, 74, .10) 0%, transparent 65%);
}

/* Section watermark text (barely visible large lettering) */
.section-watermark {
  color: rgba(255, 255, 255, .018);
}

/* Stat / value number gradient text */
.stat-num-gradient {
  background-image: linear-gradient(140deg, #ffffff 25%, rgba(200, 135, 74, .9) 100%);
}

/* Value-bar progress track */
.value-bar-track {
  background: rgba(255, 255, 255, .07);
}

/* Franchise CTA section dark overlay */
.cta-overlay {
  background: linear-gradient(to right, rgba(5, 42, 66, 1) 0%, rgba(5, 42, 66, .88) 50%, rgba(5, 42, 66, .95) 100%);
}

/* ══════════════════════════════════════════════
   Location page
══════════════════════════════════════════════ */

/* Hero decorative floating pins */
@keyframes locPinFloat {

  0%,
  100% {
    opacity: .10;
    transform: translateY(0);
  }

  50% {
    opacity: .18;
    transform: translateY(-8px);
  }
}

.loc-hero-pin {
  position: absolute;
  color: #c8874a;
  pointer-events: none;
  animation: locPinFloat 4s ease-in-out infinite;
}

.loc-pin-1 {
  top: 20%;
  left: 28%;
  font-size: 1.3rem;
  animation-delay: 0s;
}

.loc-pin-2 {
  top: 52%;
  left: 14%;
  font-size: 1.8rem;
  animation-delay: .9s;
}

.loc-pin-3 {
  top: 34%;
  left: 42%;
  font-size: 1rem;
  animation-delay: 1.8s;
}

.loc-pin-4 {
  top: 68%;
  left: 32%;
  font-size: 1.5rem;
  animation-delay: .4s;
}

.loc-pin-5 {
  top: 16%;
  left: 48%;
  font-size: .9rem;
  animation-delay: 2.4s;
}

/* Search input */
.loc-search-input {
  width: 100%;
  background: rgba(5, 42, 66, .04);
  border: 1px solid rgba(5, 42, 66, .18);
  border-radius: 9999px;
  padding: .65rem 3rem .65rem 2.6rem;
  color: #052a42;
  font-family: 'Inter', sans-serif;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .02em;
  outline: none;
  transition: border-color .3s ease, background .3s ease, box-shadow .3s ease;
}

.loc-search-input::placeholder {
  color: rgba(5, 42, 66, .35);
}

.loc-search-input:focus {
  border-color: rgba(200, 135, 74, .5);
  background: rgba(5, 42, 66, .02);
  box-shadow: 0 0 0 3px rgba(200, 135, 74, .10);
}

.loc-search-icon {
  position: absolute;
  left: .9rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(5, 42, 66, .38);
  pointer-events: none;
  font-size: .72rem;
}

.loc-search-clear {
  position: absolute;
  right: .8rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: rgba(5, 42, 66, .08);
  border: none;
  color: rgba(5, 42, 66, .45);
  cursor: pointer;
  font-size: .55rem;
  display: none;
  align-items: center;
  justify-content: center;
  transition: background .2s ease, color .2s ease;
}

.loc-search-clear:hover {
  background: rgba(200, 135, 74, .18);
  color: #c8874a;
}

.loc-search-clear.visible {
  display: flex;
}

.loc-city-wrap {
  display: none;
}

.loc-city-wrap.visible {
  display: block;
}

/* City cards */
.city-card {
  position: relative;
  background: #ede8e0;
  border: 1px solid rgba(5, 42, 66, .08);
  border-radius: 1rem;
  padding: 1.5rem;
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.city-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(5, 42, 66, .10);
  border-color: rgba(200, 135, 74, .28);
}

.city-card-top-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 1rem 1rem 0 0;
  background: #c8874a;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .45s cubic-bezier(.16, 1, .32, 1);
}

.city-card:hover .city-card-top-bar {
  transform: scaleX(1);
}

.city-outlet-badge {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  background: rgba(200, 135, 74, .12);
  color: #c8874a;
  border: 1px solid rgba(200, 135, 74, .22);
  border-radius: 9999px;
  padding: .2rem .6rem;
  font-family: 'Inter', sans-serif;
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  white-space: nowrap;
}

.city-flagship-label {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  color: #c8874a;
  font-family: 'Inter', sans-serif;
  font-size: .625rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.outlet-area-chip {
  display: inline-flex;
  align-items: center;
  background: rgba(5, 42, 66, .06);
  color: rgba(5, 42, 66, .5);
  border-radius: 9999px;
  padding: .175rem .6rem;
  font-family: 'Inter', sans-serif;
  font-size: .68rem;
  font-weight: 500;
  transition: background .25s ease, color .25s ease;
}

.city-card:hover .outlet-area-chip {
  background: rgba(200, 135, 74, .09);
  color: rgba(5, 42, 66, .65);
}

/* Coming soon city pills */
.coming-city-pill {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 9999px;
  padding: .4rem .9rem;
  font-family: 'Inter', sans-serif;
  font-size: .75rem;
  font-weight: 500;
  color: rgba(245, 240, 232, .58);
  background: rgba(255, 255, 255, .04);
  transition: border-color .3s ease, background .3s ease, color .3s ease;
  cursor: default;
}

.coming-city-pill:hover {
  border-color: rgba(200, 135, 74, .38);
  background: rgba(200, 135, 74, .08);
  color: rgba(245, 240, 232, .88);
}

/* International destination card */
.intl-dest-card {
  position: relative;
  background: #ede8e0;
  border: 1px solid rgba(5, 42, 66, .08);
  border-radius: 1rem;
  padding: 2rem 1.5rem;
  text-align: center;
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.intl-dest-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(5, 42, 66, .11);
  border-color: rgba(200, 135, 74, .28);
}

.intl-dest-top-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 1rem 1rem 0 0;
  background: #c8874a;
  transform: scaleX(0);
  transform-origin: center center;
  transition: transform .45s cubic-bezier(.16, 1, .32, 1);
}

.intl-dest-card:hover .intl-dest-top-bar {
  transform: scaleX(1);
}

/* Filter hide */
.loc-card-hidden {
  display: none !important;
}

/* Empty search state */
.loc-empty {
  display: none;
  text-align: center;
  padding: 4rem 1rem;
  grid-column: 1 / -1;
}

.loc-empty.visible {
  display: block;
}

/* ── State filter select ──────────────────── */
.loc-state-select {
  appearance: none;
  -webkit-appearance: none;
  background: rgba(5, 42, 66, .05);
  border: 1px solid rgba(5, 42, 66, .12);
  border-radius: 9999px;
  padding: .65rem 2.5rem .65rem 1.1rem;
  font-family: 'Inter', sans-serif;
  font-size: .75rem;
  font-weight: 500;
  color: #052a42;
  cursor: pointer;
  outline: none;
  transition: border-color .3s ease, box-shadow .3s ease;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23052a42' opacity='.5' d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .75rem center;
  background-size: 1rem;
}

.loc-state-select:focus {
  border-color: rgba(200, 135, 74, .5);
  box-shadow: 0 0 0 3px rgba(200, 135, 74, .10);
}

/* ── Outlet card (image-left horizontal) ─── */
.outlet-card {
  display: flex;
  gap: 0;
  background: #ede8e0;
  border: 1px solid rgba(5, 42, 66, .08);
  border-radius: 1rem;
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.outlet-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(5, 42, 66, .11);
  border-color: rgba(200, 135, 74, .28);
}

.outlet-card-img-wrap {
  position: relative;
  flex-shrink: 0;
  width: 140px;
  overflow: hidden;
}

@media (max-width: 639px) {
  .outlet-card {
    flex-direction: column;
  }

  .outlet-card-img-wrap {
    width: 100%;
    height: 160px;
  }
}

.outlet-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}

.outlet-card:hover .outlet-card-img {
  transform: scale(1.06);
}

.outlet-card-badge {
  position: absolute;
  top: .6rem;
  left: .6rem;
  background: rgba(5, 42, 66, .72);
  backdrop-filter: blur(6px);
  color: #c8874a;
  font-family: 'Inter', sans-serif;
  font-size: .55rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  border-radius: 9999px;
  padding: .22rem .55rem;
  pointer-events: none;
}

.outlet-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1.25rem 1.4rem;
  min-width: 0;
}

.outlet-card-name {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #052a42;
  line-height: 1.25;
  margin-bottom: .25rem;
}

.outlet-card-location {
  font-family: 'Inter', sans-serif;
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #c8874a;
  margin-bottom: .75rem;
}

.outlet-card-divider {
  height: 1px;
  background: rgba(5, 42, 66, .08);
  margin-bottom: .75rem;
}

.outlet-detail {
  display: flex;
  align-items: flex-start;
  gap: .55rem;
  font-family: 'Inter', sans-serif;
  font-size: .75rem;
  color: #6b5f50;
  line-height: 1.45;
  margin-bottom: .45rem;
}

.outlet-detail i {
  flex-shrink: 0;
  margin-top: .15rem;
  color: #c8874a;
  font-size: .7rem;
  width: .85rem;
  text-align: center;
}

.outlet-dir-btn {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  margin-top: auto;
  padding-top: .85rem;
  font-family: 'Inter', sans-serif;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #052a42;
  border-bottom: 1px solid rgba(5, 42, 66, .18);
  padding-bottom: 1px;
  width: fit-content;
  transition: color .25s ease, border-color .25s ease;
}

.outlet-dir-btn:hover {
  color: #c8874a;
  border-color: #c8874a;
}

.outlet-dir-btn i {
  font-size: .7rem;
  color: #c8874a;
}


/* ══════════════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════════════ */

/* ── Form fields ─────────────────────────── */
.contact-field {
  width: 100%;
  background: rgba(5, 42, 66, .03);
  border: 1.5px solid rgba(5, 42, 66, .12);
  border-radius: .65rem;
  padding: .85rem 1.1rem;
  font-family: 'Inter', sans-serif;
  font-size: .82rem;
  color: #052a42;
  outline: none;
  transition: border-color .28s ease, box-shadow .28s ease, background .28s ease;
}

.contact-field::placeholder {
  color: rgba(5, 42, 66, .3);
}

.contact-field:focus {
  border-color: #c8874a;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 0 0 3px rgba(200, 135, 74, .10);
}

select.contact-field {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='7' viewBox='0 0 11 7'%3E%3Cpath fill='none' stroke='%23052a42' stroke-opacity='.4' stroke-width='1.5' d='M1 1l4.5 4.5L10 1'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.75rem;
}

textarea.contact-field {
  resize: vertical;
  min-height: 120px;
  line-height: 1.65;
}

/* ── Field label ─────────────────────────── */
.contact-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(5, 42, 66, .48);
  margin-bottom: .45rem;
}

/* ── Info cards ──────────────────────────── */
.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  padding: 1.3rem 1.4rem;
  background: #ede8e0;
  border: 1px solid rgba(5, 42, 66, .07);
  border-radius: 1rem;
  transition: box-shadow .3s ease, border-color .3s ease;
}

.contact-info-card:hover {
  box-shadow: 0 10px 30px rgba(5, 42, 66, .08);
  border-color: rgba(200, 135, 74, .22);
}

.contact-icon-wrap {
  width: 2.65rem;
  height: 2.65rem;
  flex-shrink: 0;
  border-radius: .6rem;
  background: rgba(200, 135, 74, .1);
  border: 1px solid rgba(200, 135, 74, .18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c8874a;
  font-size: .88rem;
}

/* ── Social icon row ─────────────────────── */
.contact-social-btn {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: .55rem;
  background: rgba(5, 42, 66, .06);
  border: 1px solid rgba(5, 42, 66, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #052a42;
  font-size: .85rem;
  transition: background .25s ease, border-color .25s ease, color .25s ease, transform .25s ease;
}

.contact-social-btn:hover {
  background: #c8874a;
  border-color: #c8874a;
  color: #fff;
  transform: translateY(-2px);
}

/* ── Map section ─────────────────────────── */
.contact-map-frame {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
  border-radius: 1rem;
  display: block;
  filter: grayscale(20%) contrast(1.02);
}

/* ── Submit button ───────────────────────── */
.contact-submit {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: #052a42;
  color: #f5f0e8;
  border: none;
  border-radius: 9999px;
  padding: .95rem 2rem;
  font-family: 'Inter', sans-serif;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .25s ease, box-shadow .25s ease, transform .22s ease;
}

.contact-submit:hover {
  background: #c8874a;
  box-shadow: 0 8px 28px rgba(200, 135, 74, .3);
  transform: translateY(-1px);
}

.contact-submit:active {
  transform: translateY(0);
}

/* ── Decorative accent bar on form card ─── */
.contact-form-card {
  background: #fff;
  border: 1px solid rgba(5, 42, 66, .08);
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 4px 40px rgba(5, 42, 66, .06);
}

.contact-form-top-bar {
  height: 3px;
  background: linear-gradient(90deg, #c8874a 0%, #e8a870 100%);
}


/* ══════════════════════════════════════════════
   GALLERY PAGE
══════════════════════════════════════════════ */

/* ── Sticky filter bar ───────────────────── */
.gal-filter-bar {
  position: sticky;
  top: 80px;
  z-index: 40;
  background: rgba(245, 240, 232, .94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(5, 42, 66, .07);
  width: 100%;
}

/* JS-driven fixed class (Elementor overflow workaround) */
.gal-filter-bar.gal-bar--fixed {
  position: fixed !important;
  top: 80px !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 400 !important;
  width: 100% !important;
}

/* ── Filter pill buttons ─────────────────── */
.gal-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .55rem 1.2rem;
  border-radius: 9999px;
  font-family: 'Inter', sans-serif;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  border: 1px solid rgba(5, 42, 66, .13);
  color: #6b5f50;
  background: transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: background .25s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.gal-filter-btn:hover {
  border-color: rgba(200, 135, 74, .45);
  color: #052a42;
  background: rgba(200, 135, 74, .06);
}

.gal-filter-btn.active {
  background: #052a42;
  color: #f5f0e8;
  border-color: #052a42;
  box-shadow: 0 4px 16px rgba(5, 42, 66, .18);
}

.gal-filter-btn .gal-count {
  font-size: .55rem;
  font-weight: 600;
  opacity: .55;
  letter-spacing: .1em;
}

.gal-filter-btn.active .gal-count {
  opacity: .6;
  color: #c8874a;
}

/* ── Gallery masonry grid ────────────────── */
.gal-grid {
  columns: 1;
  column-gap: .75rem;
}

@media (min-width: 640px) {
  .gal-grid {
    columns: 2;
  }
}

@media (min-width: 1024px) {
  .gal-grid {
    columns: 3;
  }
}

@media (min-width: 1280px) {
  .gal-grid {
    columns: 4;
  }
}

/* ── Gallery grid item ───────────────────── */
.gal-item {
  position: relative;
  overflow: hidden;
  border-radius: .85rem;
  cursor: zoom-in;
  break-inside: avoid;
  margin-bottom: .75rem;
  background: #ede8e0;
  transition: transform .38s ease, box-shadow .38s ease;
}

.gal-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 44px rgba(5, 42, 66, .14);
}

.gal-item img {
  width: 100%;
  display: block;
  object-fit: cover;
  transition: transform .65s ease;
}

.gal-item:hover img {
  transform: scale(1.05);
}

/* Height variants */
.gal-tall img {
  height: 360px;
}

.gal-mid img {
  height: 260px;
}

.gal-short img {
  height: 200px;
}

@media (max-width: 1023px) {
  .gal-tall img {
    height: 300px;
  }

  .gal-mid img {
    height: 230px;
  }

  .gal-short img {
    height: 180px;
  }
}

@media (max-width: 639px) {
  .gal-tall img {
    height: 260px;
  }

  .gal-mid img {
    height: 210px;
  }

  .gal-short img {
    height: 170px;
  }
}

/* ── Item hover overlay (light blur frosted glass) ── */
.gal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 42, 66, .18);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  opacity: 0;
  transition: opacity .32s ease;
}

.gal-item:hover .gal-overlay {
  opacity: 1;
}

.gal-overlay-icon {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, .5);
  background: rgba(255, 255, 255, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f5f0e8;
  font-size: .85rem;
  transition: background .22s ease, border-color .22s ease, transform .22s ease;
}

.gal-item:hover .gal-overlay-icon {
  background: #c8874a;
  border-color: #c8874a;
  transform: scale(1.08);
}

.gal-overlay-cat {
  font-family: 'Inter', sans-serif;
  font-size: .5rem;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(200, 135, 74, .9);
}

.gal-overlay-title {
  font-family: 'Poppins', sans-serif;
  font-size: .8rem;
  font-weight: 600;
  color: rgba(245, 240, 232, .92);
  text-align: center;
  line-height: 1.3;
  padding: 0 .5rem;
}

/* ── Gallery hidden (filter) ─────────────── */
.gal-hidden {
  display: none !important;
}

/* ── Gallery lightbox ────────────────────── */
#gal-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
}

#gal-lightbox.open {
  display: block;
}

.gal-lb-bg {
  position: absolute;
  inset: 0;
  background: rgba(3, 18, 30, .96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  z-index: 0;
}

/* Swiper fills the lightbox */
.gal-swiper {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.gal-swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 6rem 7rem;
  box-sizing: border-box;
}

.gal-swiper .swiper-slide img {
  max-height: 72vh;
  max-width: 100%;
  object-fit: contain;
  border-radius: 8px;
  display: block;
  user-select: none;
  box-shadow: 0 32px 80px rgba(0, 0, 0, .45);
}

/* Control buttons */
.gal-lb-btn {
  position: absolute;
  z-index: 20;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(5, 42, 66, .55);
  color: rgba(255, 255, 255, .85);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: .85rem;
  transition: background .22s ease, border-color .22s ease, color .22s ease;
}

.gal-lb-btn:hover {
  background: #c8874a;
  border-color: #c8874a;
  color: #fff;
}

#gal-lb-close {
  top: 1.25rem;
  right: 1.25rem;
}

#gal-lb-prev {
  left: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
}

#gal-lb-next {
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
}

/* Swiper disabled state for prev/next at edges */
#gal-lb-prev.swiper-button-disabled,
#gal-lb-next.swiper-button-disabled {
  opacity: .3;
  pointer-events: none;
}

/* Bottom meta strip */
.gal-lb-meta {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 20;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: linear-gradient(to top, rgba(3, 18, 30, .9) 0%, transparent 100%);
}

.gal-lb-cat {
  font-family: 'Inter', sans-serif;
  font-size: .55rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #c8874a;
}

.gal-lb-title {
  font-family: 'Poppins', sans-serif;
  font-size: .88rem;
  font-weight: 600;
  color: rgba(245, 240, 232, .88);
}

.gal-lb-sep {
  width: 1px;
  height: .9rem;
  background: rgba(255, 255, 255, .15);
}

.gal-lb-counter {
  font-family: 'Inter', sans-serif;
  font-size: .6rem;
  font-weight: 500;
  letter-spacing: .15em;
  color: rgba(255, 255, 255, .35);
}

@media (max-width: 639px) {
  .gal-swiper .swiper-slide {
    padding: 4.5rem 1rem 5.5rem;
  }

  #gal-lb-prev {
    left: .5rem;
  }

  #gal-lb-next {
    right: .5rem;
  }
}

/* ══════════════════════════════════════════════
   FRANCHISE PAGE
══════════════════════════════════════════════ */

/* ── Investment tier cards (dark bg) ──────── */
.fr-invest-card {
  position: relative;
  border-radius: 1.25rem;
  border: 1px solid rgba(255, 255, 255, .07);
  background: rgba(255, 255, 255, .03);
  padding: 2rem 1.75rem 2.25rem;
  display: flex;
  flex-direction: column;
  transition: border-color .3s ease, box-shadow .3s ease, transform .3s ease;
}

.fr-invest-card:hover {
  border-color: rgba(200, 135, 74, .35);
  box-shadow: 0 24px 60px -12px rgba(0, 0, 0, .55);
  transform: translateY(-4px);
}

.fr-invest-card.popular {
  border-color: rgba(200, 135, 74, .5);
  background: linear-gradient(160deg, rgba(200, 135, 74, .1) 0%, rgba(255, 255, 255, .04) 60%);
  box-shadow: 0 0 0 1px rgba(200, 135, 74, .2), 0 20px 60px -12px rgba(200, 135, 74, .18);
}

.fr-invest-card.popular:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 0 1px rgba(200, 135, 74, .35), 0 32px 80px -12px rgba(200, 135, 74, .25);
}

.fr-invest-badge {
  position: absolute;
  top: -1px;
  right: 1.5rem;
  transform: translateY(-50%);
  background: #c8874a;
  color: #052a42;
  font-family: 'Inter', sans-serif;
  font-size: .55rem;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  padding: .3rem .9rem;
  border-radius: 99px;
}

.fr-invest-price {
  font-family: 'Poppins', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  margin-top: .75rem;
}

.fr-invest-price span {
  font-size: 1rem;
  font-weight: 400;
  color: rgba(245, 240, 232, .45);
}

.fr-invest-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
  display: flex;
  flex-direction: column;
  gap: .65rem;
  flex: 1;
}

.fr-invest-list li {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  font-family: 'Inter', sans-serif;
  font-size: .82rem;
  color: rgba(245, 240, 232, .65);
  line-height: 1.45;
}

.fr-invest-list li::before {
  content: '';
  flex-shrink: 0;
  margin-top: .3rem;
  width: .45rem;
  height: .45rem;
  border-radius: 50%;
  background: #c8874a;
}

.fr-invest-cta {
  margin-top: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  border-radius: 99px;
  padding: .75rem 1.5rem;
  font-family: 'Inter', sans-serif;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .1);
  color: rgba(245, 240, 232, .8);
  text-decoration: none;
  transition: background .25s ease, border-color .25s ease, color .25s ease;
  cursor: pointer;
}

.fr-invest-cta:hover,
.fr-invest-card.popular .fr-invest-cta {
  background: #c8874a;
  border-color: #c8874a;
  color: #052a42;
}

.fr-invest-card.popular .fr-invest-cta:hover {
  background: rgba(255, 255, 255, .15);
  border-color: rgba(255, 255, 255, .2);
  color: #fff;
}

/* ── Process steps ────────────────────────── */
.fr-steps-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}

.fr-steps-track::before {
  content: '';
  position: absolute;
  top: 1.375rem;
  left: calc(10% + 1.375rem);
  right: calc(10% + 1.375rem);
  height: 2px;
  background: linear-gradient(to right, rgba(200, 135, 74, .1), rgba(200, 135, 74, .55) 50%, rgba(200, 135, 74, .1));
  pointer-events: none;
}

.fr-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 .75rem;
  position: relative;
}

.fr-step-num {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  border: 1.5px solid rgba(200, 135, 74, .45);
  background: rgba(5, 42, 66, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: .65rem;
  font-weight: 700;
  color: #c8874a;
  letter-spacing: .1em;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: background .3s ease, border-color .3s ease;
}

.fr-step:hover .fr-step-num {
  background: #c8874a;
  color: #052a42;
  border-color: #c8874a;
}

.fr-step-icon {
  margin-top: 1.25rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: .75rem;
  background: rgba(200, 135, 74, .08);
  border: 1px solid rgba(200, 135, 74, .18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c8874a;
  font-size: .88rem;
}

.fr-step-title {
  margin-top: .75rem;
  font-family: 'Poppins', sans-serif;
  font-size: .85rem;
  font-weight: 600;
  color: #052a42;
  line-height: 1.25;
}

.fr-step-desc {
  margin-top: .4rem;
  font-family: 'Inter', sans-serif;
  font-size: .72rem;
  color: #6b5f50;
  line-height: 1.55;
}

/* ── Support feature cards (light bg) ─────── */
.fr-support-card {
  background: #fff;
  border: 1px solid rgba(5, 42, 66, .07);
  border-radius: 1.1rem;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: .9rem;
  transition: border-color .28s ease, box-shadow .28s ease, transform .28s ease;
}

.fr-support-card:hover {
  border-color: rgba(200, 135, 74, .3);
  box-shadow: 0 12px 40px -8px rgba(200, 135, 74, .14);
  transform: translateY(-3px);
}

.fr-support-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: .85rem;
  background: linear-gradient(135deg, rgba(200, 135, 74, .12) 0%, rgba(200, 135, 74, .06) 100%);
  border: 1px solid rgba(200, 135, 74, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c8874a;
  font-size: 1rem;
  flex-shrink: 0;
}

/* ── FAQ accordion ────────────────────────── */
.fr-faq-item {
  border-bottom: 1px solid rgba(5, 42, 66, .09);
}

.fr-faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.fr-faq-q {
  font-family: 'Poppins', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  color: #052a42;
  line-height: 1.35;
}

.fr-faq-icon {
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  border: 1.5px solid rgba(200, 135, 74, .4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c8874a;
  font-size: .65rem;
  transition: background .22s ease, transform .32s ease;
}

.fr-faq-item.open .fr-faq-icon {
  background: #c8874a;
  color: #052a42;
  transform: rotate(45deg);
}

.fr-faq-body {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(6px);
  transition: max-height .42s ease, opacity .35s ease .06s, transform .35s ease .06s, margin-bottom .42s ease;
  margin-bottom: 0;
}

.fr-faq-item.open .fr-faq-body {
  max-height: 320px;
  opacity: 1;
  transform: translateY(0);
  margin-bottom: 1rem;
}

.fr-faq-body p {
  font-family: 'Inter', sans-serif;
  font-size: .875rem;
  color: #6b5f50;
  line-height: 1.7;
}

/* ── Partner testimonial cards ────────────── */
.fr-testi-card {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 1.1rem;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: border-color .28s ease, box-shadow .28s ease;
}

.fr-testi-card:hover {
  border-color: rgba(200, 135, 74, .3);
  box-shadow: 0 16px 48px -12px rgba(0, 0, 0, .45);
}

.fr-testi-stars {
  display: flex;
  gap: .25rem;
  color: #c8874a;
  font-size: .75rem;
}

.fr-testi-quote {
  font-family: 'Poppins', sans-serif;
  font-size: .9rem;
  font-style: italic;
  color: rgba(245, 240, 232, .75);
  line-height: 1.7;
  flex: 1;
}

.fr-testi-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(200, 135, 74, .35);
  flex-shrink: 0;
}

.fr-testi-name {
  font-family: 'Poppins', sans-serif;
  font-size: .82rem;
  font-weight: 600;
  color: rgba(245, 240, 232, .9);
}

.fr-testi-loc {
  font-family: 'Inter', sans-serif;
  font-size: .7rem;
  color: rgba(245, 240, 232, .38);
  letter-spacing: .08em;
}

@media (max-width: 767px) {
  .fr-steps-track {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .fr-steps-track::before {
    display: none;
  }

  .fr-step {
    display: grid;
    grid-template-columns: 2.75rem 1fr;
    grid-template-rows: auto auto;
    column-gap: 1rem;
    align-items: start;
    text-align: left;
    padding: 0 0 2rem 0;
    flex-direction: unset;
  }

  .fr-step:last-child {
    padding-bottom: 0;
  }

  /* Vertical connector line between steps */
  .fr-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 1.375rem;
    top: 2.75rem;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, rgba(200, 135, 74, .4), rgba(200, 135, 74, .05));
    transform: translateX(-50%);
  }

  .fr-step-num {
    grid-column: 1;
    grid-row: 1 / 3;
    margin-top: 0;
    flex-shrink: 0;
  }

  .fr-step-icon {
    display: none;
  }

  .fr-step-title {
    grid-column: 2;
    grid-row: 1;
    margin-top: 0.55rem;
  }

  .fr-step-desc {
    grid-column: 2;
    grid-row: 2;
    margin-top: 0.3rem;
  }
}

/* ── Partner Stories Swiper ────────────────── */
.fr-testi-swiper {
  padding-bottom: 3rem !important;
}

.fr-testi-swiper .swiper-slide {
  height: auto;
}

.fr-testi-swiper .fr-testi-card {
  height: 100%;
}

.fr-testi-pagination {
  bottom: 0 !important;
}

.fr-testi-pagination .swiper-pagination-bullet {
  background: rgba(200, 135, 74, .35);
  opacity: 1;
  transition: background .3s ease, width .3s ease, border-radius .3s ease;
}

.fr-testi-pagination .swiper-pagination-bullet-active {
  background: #c8874a;
  width: 1.5rem;
  border-radius: 9999px;
}


/* ══════════════════════════════════════════════
   MENU PAGE  (mn- namespace)
══════════════════════════════════════════════ */

/* ── Hero ─────────────────────────────────── */
/* ── Menu hero: ensure full-bleed inside Elementor widget containers ── */
.elementor-widget-container .mn-hero,
.elementor-widget-container .about-hero-split {
  margin-left: calc(-1 * var(--e-column-margin-left, 0px));
  margin-right: calc(-1 * var(--e-column-margin-right, 0px));
}

.mn-hero {
  padding-top: 80px;
}

.mn-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: .22;
}

.mn-hero-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(5, 42, 66, .78) 0%, rgba(5, 42, 66, .97) 100%);
}

.mn-hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 135, 74, .1) 0%, transparent 70%);
  pointer-events: none;
}

.mn-hero-watermark {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: clamp(8rem, 22vw, 20rem);
  line-height: 1;
  letter-spacing: -.02em;
  color: rgba(245, 240, 232, .035);
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
}

.mn-hero-heading {
  font-size: clamp(2.4rem, 6vw, 4rem);
}

.mn-hero-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 5rem;
  background: linear-gradient(to bottom, transparent, #052a42);
  pointer-events: none;
}

/* ── Category labels ───────────────────────── */
.mn-cat-label {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: #c8874a;
}

.mn-cat-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  color: #052a42;
  line-height: 1.1;
}

.mn-cat-title--light {
  color: #f5f0e8;
}

.mn-cat-desc {
  font-size: .875rem;
  line-height: 1.75;
  color: #6b5f50;
  max-width: 30rem;
  margin-top: .75rem;
}

/* ── Tab bar ───────────────────────────────── */
/* Tab bar: sticky via CSS (fallback) + JS-driven fixed class for Elementor pages */
#menu-tab-bar {
  position: sticky;
  top: 80px;
  z-index: 40;
  background: #052a42;
  border-bottom: 1px solid rgba(245, 240, 232, .08);
  width: 100%;
}

/* JS sets this class when position:sticky is blocked by an Elementor overflow container */
#menu-tab-bar.tab-bar--fixed {
  position: fixed !important;
  top: 80px !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 400 !important;
  width: 100% !important;
}

/* Placeholder keeps page height correct when bar becomes fixed */
#menu-tab-bar-placeholder {
  height: 0;
  pointer-events: none;
}

.mn-tab-scroll {
  overflow-x: auto;
  scrollbar-width: none;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 0;
}

.mn-tab-scroll::-webkit-scrollbar {
  display: none;
}

#menu-tab-bar .tab-btn {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, .45);
  padding: 9px 18px;
  border-radius: 9999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: color .2s, background .2s, border-color .2s;
  white-space: nowrap;
  background: transparent;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

#menu-tab-bar .tab-btn:hover {
  color: rgba(245, 240, 232, .8);
  background: rgba(245, 240, 232, .06);
}

#menu-tab-bar .tab-btn.tab-active {
  color: #c8874a;
  background: rgba(200, 135, 74, .1);
  border-color: rgba(200, 135, 74, .35);
}

#menu-tab-bar .tab-btn i {
  font-size: .75rem;
}

/* ── Combo Swiper ──────────────────────────── */
/* Wrapper clips horizontal bleed without creating a new scroll container */
.mn-combo-swiper-outer {
  overflow-x: clip; /* clips slides that bleed past viewport; does not affect hover shadows */
  padding-bottom: 16px; /* space for card hover shadow */
  margin-bottom: -16px;
}

.mn-combo-swiper {
  overflow: visible !important;
}

.mn-combo-swiper .swiper-slide {
  height: auto;
}

/* ── Combo cards ───────────────────────────── */
.mn-combo-card {
  background: #052a42;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(200, 135, 74, .14);
  transition: transform .3s ease, box-shadow .3s ease;
  height: 100%;
}

.mn-combo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(0, 0, 0, .4);
}

.mn-combo-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  flex-shrink: 0;
  background: rgba(200, 135, 74, .06); /* visible placeholder when no image */
}

.mn-combo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .55s ease;
}

.mn-combo-card:hover .mn-combo-img {
  transform: scale(1.07);
}

.mn-combo-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 30%, rgba(5, 42, 66, .78) 100%);
  pointer-events: none;
}

.mn-combo-body {
  padding: 18px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  position: relative;
}

.mn-combo-body::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(200, 135, 74, .08) 0%, transparent 60%);
  pointer-events: none;
}

.mn-combo-badge {
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #c8874a;
  background: rgba(200, 135, 74, .1);
  border: 1px solid rgba(200, 135, 74, .28);
  border-radius: 9999px;
  padding: 3px 10px;
  display: inline-block;
  width: fit-content;
}

.mn-combo-name {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #f5f0e8;
  line-height: 1.25;
}

.mn-combo-includes {
  font-family: 'Inter', sans-serif;
  font-size: .78rem;
  color: rgba(245, 240, 232, .52);
  line-height: 1.65;
  flex: 1;
}

.mn-combo-price {
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #c8874a;
  padding-top: 6px;
}

.mn-combo-price small {
  font-size: .72rem;
  font-weight: 400;
  color: rgba(245, 240, 232, .38);
  margin-left: 3px;
}

/* ── Section banner ────────────────────────── */
.mn-section-banner {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  height: 240px;
  margin-bottom: 2.5rem;
}

.mn-section-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mn-section-banner-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(5, 42, 66, .92) 0%, rgba(5, 42, 66, .6) 55%, rgba(5, 42, 66, .2) 100%);
}

.mn-section-banner-body {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 36px;
}

.mn-section-banner-tag {
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: #c8874a;
  margin-bottom: 6px;
}

.mn-section-banner-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #f5f0e8;
  line-height: 1.1;
}

.mn-section-banner-desc {
  font-family: 'Inter', sans-serif;
  font-size: .82rem;
  color: rgba(245, 240, 232, .55);
  margin-top: 8px;
  max-width: 420px;
  line-height: 1.6;
}

/* ── Sub-section blocks ────────────────────── */
.mn-sub-block {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(5, 42, 66, .06);
  display: flex;
  flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease;
}

.mn-sub-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 44px rgba(5, 42, 66, .1);
}

.mn-sub-img-wrap {
  overflow: hidden;
  aspect-ratio: 16 / 9;
  flex-shrink: 0;
  position: relative;
}

.mn-sub-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .55s ease;
}

.mn-sub-block:hover .mn-sub-img {
  transform: scale(1.06);
}

.mn-sub-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(5, 42, 66, .15) 100%);
  pointer-events: none;
}

.mn-sub-content {
  padding: 0 20px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.mn-sub-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0 12px;
  border-bottom: 1px solid rgba(5, 42, 66, .07);
  margin-bottom: 2px;
}

.mn-sub-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(200, 135, 74, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c8874a;
  font-size: .85rem;
  flex-shrink: 0;
}

.mn-sub-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #052a42;
}

.mn-sub-label {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #6b5f50;
}

/* Wide image for spanning blocks */
.mn-sub-block.mn-wide .mn-sub-img-wrap {
  aspect-ratio: 21 / 9;
}

/* ── Menu item rows ────────────────────────── */
.mn-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(5, 42, 66, .06);
}

.mn-item:last-child {
  border-bottom: none;
}

.mn-item-name {
  font-family: 'Poppins', sans-serif;
  font-size: .875rem;
  font-weight: 500;
  color: #052a42;
  line-height: 1.3;
}

.mn-item-desc {
  font-family: 'Inter', sans-serif;
  font-size: .72rem;
  color: #6b5f50;
  margin-top: 3px;
  line-height: 1.5;
}

.mn-item-price {
  font-family: 'Inter', sans-serif;
  font-size: .82rem;
  font-weight: 700;
  color: #c8874a;
  white-space: nowrap;
  flex-shrink: 0;
  background: rgba(200, 135, 74, .09);
  border-radius: 6px;
  padding: 3px 8px;
  border: 1px solid rgba(200, 135, 74, .18);
}

.mn-addon-note {
  font-family: 'Inter', sans-serif;
  font-size: .72rem;
  color: #6b5f50;
  background: rgba(5, 42, 66, .04);
  border-radius: 6px;
  padding: 8px 12px;
  margin-top: 10px;
}

/* Item badges */
.mn-badge {
  font-family: 'Inter', sans-serif;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: 4px;
  padding: 1px 5px;
  vertical-align: middle;
  margin-left: 5px;
}

.mn-badge--hot {
  color: #ef4444;
  background: rgba(239, 68, 68, .08);
  border: 1px solid rgba(239, 68, 68, .22);
}

.mn-badge--new {
  color: #16a34a;
  background: rgba(22, 163, 74, .08);
  border: 1px solid rgba(22, 163, 74, .22);
}

/* ── CTA glow ───────────────────────────────── */
.mn-cta-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(200, 135, 74, .08) 0%, transparent 60%);
  pointer-events: none;
}

/* ══════════════════════════════════════════════
   Franchise V2 — Outlet Directory cards
   Generated by JS in sutocafe.js into #outlet-list
══════════════════════════════════════════════ */
.outlet-row {
  background: #fff;
  padding: 11px 13px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.outlet-row-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.outlet-city {
  font-family: 'Poppins', sans-serif;
  font-size: .78rem;
  font-weight: 600;
  color: #052a42;
  line-height: 1.2;
}

.outlet-area {
  font-family: 'Inter', sans-serif;
  font-size: .68rem;
  color: rgba(107, 95, 80, .7);
  margin-top: 1px;
}

.outlet-state {
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  color: rgba(5, 42, 66, .35);
  letter-spacing: .1em;
  text-transform: uppercase;
}

.outlet-model-badge {
  font-family: 'Inter', sans-serif;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 2px 7px;
  white-space: nowrap;
  flex-shrink: 0;
}

.outlet-model-badge--cafe {
  background: rgba(200, 135, 74, .12);
  color: #a0622e;
  border: 1px solid rgba(200, 135, 74, .28);
}

.outlet-model-badge--kiosk {
  background: rgba(5, 42, 66, .07);
  color: rgba(5, 42, 66, .55);
  border: 1px solid rgba(5, 42, 66, .14);
}

.outlet-model-badge--prime {
  background: rgba(5, 42, 66, .92);
  color: #f5f0e8;
  border: 1px solid rgba(5, 42, 66, .8);
}

.outlet-highlight {
  background: rgba(200, 135, 74, .22);
  color: inherit;
  border-radius: 2px;
  padding: 0 1px;
}

/* ── Franchise V2 header mobile menu (fr2-header widget) */
#fr2-header #mobile-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s cubic-bezier(.16, 1, .32, 1);
}

#fr2-header #mobile-menu.open {
  max-height: 480px;
}
}