/* ===================================================================
   Squid Boy 花枝の燒 — Brand Stylesheet
   Theme: Night Market / Pasar Malam Vibes
   Dark atmospheric backgrounds, warm neon glow, street-food energy
   =================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,600;0,700;0,800;0,900;1,700;1,900&family=Inter:wght@400;500;600;700;800&display=swap');

/* Self-hosted display face for the hero wordmark */
@font-face {
  font-family: 'Cooper Black';
  src: url('fonts/CooperBlack-Std.otf') format('opentype');
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}

/* ===== Design Tokens ===== */
:root {
  /* Squidboy brand: hot pink + sky blue, with cream & gold accents */
  --primary: #F5369C;          /* hot pink */
  --primary-dark: #D81B82;
  --primary-light: rgba(245, 54, 156, 0.12);

  --secondary: #E8B23C;        /* gold accent */
  --secondary-dark: #C8942A;
  --secondary-soft: rgba(232, 178, 60, 0.18);

  --accent: #16A6E6;           /* sky blue */
  --accent-dark: #0E86C0;
  --accent-soft: rgba(22, 166, 230, 0.12);

  /* gold-foil gradient for tasteful accents */
  --gold-foil: linear-gradient(180deg, #F6E7B4 0%, #E3C56E 36%, #C49A3C 64%, #9C7626 100%);
  --gold-soft: rgba(176, 136, 58, 0.16);

  /* Ink on cream */
  --ink: #16284F;              /* navy */
  --ink-soft: #233561;
  --slate: #5b6472;
  --text: #16284F;
  --text-light: #5b6472;
  --muted: #97a0ad;
  --line: rgba(22, 40, 79, 0.10);
  --bg: #FFF7EC;               /* soft cream page */
  --surface: #FFFFFF;          /* white cards */
  --surface-2: #FFF0F7;        /* pink tint */
  --surface-3: #EAF7FE;        /* sky tint */
  --footer-bg: #16284F;        /* navy */
  --footer-text: #c9d3e6;
  --teal: #2a9d8f;

  /* Map region colors */
  --region-johor: #f5836a;
  --region-northern: #2a9d8f;
  --region-central: #8338ec;

  /* Soft shadows + brand glows */
  --shadow-sm: 0 1px 3px rgba(22, 40, 79, 0.10), 0 1px 2px rgba(22, 40, 79, 0.06);
  --shadow-md: 0 6px 18px rgba(22, 40, 79, 0.10), 0 2px 6px rgba(22, 40, 79, 0.06);
  --shadow-lg: 0 16px 40px rgba(22, 40, 79, 0.14), 0 4px 12px rgba(22, 40, 79, 0.08);
  --shadow-xl: 0 28px 60px rgba(22, 40, 79, 0.18), 0 8px 20px rgba(22, 40, 79, 0.10);
  --glow-red: 0 8px 22px rgba(245, 54, 156, 0.35);
  --glow-yellow: 0 8px 22px rgba(232, 178, 60, 0.42);
  --glow-warm: 0 8px 30px rgba(245, 54, 156, 0.12);
  --ring-primary: 0 0 0 3px rgba(245, 54, 156, 0.45);

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --container: 1200px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  color-scheme: light;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background-color: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }

/* ===== Layout ===== */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }

.section-title {
  font-family: 'Cooper Black', 'Cooper Std', 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--text);
  text-align: center;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.section-title .accent {
  color: var(--primary);
}

.section-subtitle {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
  color: var(--text-light);
  font-size: 1.05rem;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  padding: 0.4rem 1rem;
  background: var(--primary-light);
  border: 1px solid rgba(245, 54, 156, 0.2);
  border-radius: 999px;
  margin-bottom: 1rem;
}

.center { text-align: center; }

/* ===== Navigation ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s var(--ease);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-inner {
  max-width: 100%;
  margin: 0 auto;
  padding: 0.75rem clamp(1.5rem, 3vw, 2.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.nav-brand { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
.nav-brand img { height: 64px; width: auto; transition: transform 0.3s var(--ease); }
.nav-brand:hover img { transform: scale(1.04); }

.nav-links { display: flex; align-items: center; gap: 0.5rem; list-style: none; }

.nav-links a {
  display: inline-block;
  padding: 0.7rem 1.1rem;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #2E1B26;
  text-decoration: none;
  transition: color 0.2s ease;
  position: relative;
}
  color: var(--text-light);
  font-weight: 600;
  font-size: 0.98rem;
  border-radius: 10px;
  transition: color 0.2s var(--ease), background-color 0.2s var(--ease), text-shadow 0.2s var(--ease);
}

.nav-links a {
  color: var(--text);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
  background-color: var(--primary-light);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.6rem;
  border-radius: 10px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--primary);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background-color 0.2s var(--ease);
  text-decoration: none;
}

.btn:focus-visible { outline: none; box-shadow: var(--ring-primary); }

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 8px 20px rgba(245, 54, 156, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(245, 54, 156, 0.45);
}

.btn-outline {
  background: #fff;
  color: var(--accent-dark);
  border: 2px solid var(--accent);
}

.btn-outline:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(22, 166, 230, 0.35);
}

.btn-dark {
  background: var(--ink);
  color: #fff;
  border: 1px solid var(--ink);
}

.btn-dark:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--glow-red);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--ink);
  isolation: isolate;
}

.hero-slides { position: absolute; inset: 0; z-index: 0; }

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s var(--ease);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.08);
}

.hero-slide.active {
  opacity: 1;
  animation: kenBurns 8s var(--ease) forwards;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(245, 54, 156, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(255, 214, 0, 0.08) 0%, transparent 50%),
    linear-gradient(180deg, rgba(13, 13, 13, 0.35) 0%, rgba(13, 13, 13, 0.6) 50%, rgba(13, 13, 13, 0.92) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 6rem 1.5rem 8rem;
  color: white;
  max-width: 900px;
  animation: fadeUp 1s var(--ease) 0.3s both;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(245, 54, 156, 0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(245, 54, 156, 0.5);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
  text-shadow: 0 0 12px rgba(255, 214, 0, 0.4);
  box-shadow: 0 0 20px rgba(245, 54, 156, 0.15);
}

.hero-badge::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 12px var(--primary), 0 0 24px rgba(245, 54, 156, 0.4);
  animation: neonPulse 2s ease-in-out infinite;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: 1;
  margin-bottom: 1.25rem;
  letter-spacing: -0.025em;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.5), 0 0 40px rgba(245, 54, 156, 0.15);
}

.hero h1 .accent {
  background: linear-gradient(135deg, var(--secondary) 0%, #ff8f00 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
  filter: drop-shadow(0 0 16px rgba(255, 214, 0, 0.4));
}

.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  max-width: 620px;
  margin: 0 auto 2rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.6;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.hero-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Hero marquee — glowing ticker strip */
.hero-marquee {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  background: rgba(13, 13, 13, 0.85);
  backdrop-filter: blur(10px);
  border-top: 2px solid var(--primary);
  padding: 0.85rem 0;
  overflow: hidden;
  color: var(--secondary);
  font-size: 0.92rem;
  font-weight: 600;
  text-shadow: 0 0 10px rgba(255, 214, 0, 0.3);
  box-shadow: 0 -8px 24px rgba(245, 54, 156, 0.08);
}

.hero-marquee-track {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
  padding-left: 100%;
}

.hero-marquee-item { display: inline-flex; align-items: center; gap: 0.6rem; }
.hero-marquee-item .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 8px var(--primary);
}

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.hero-indicators {
  position: absolute;
  bottom: 4.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 0.5rem;
}

.hero-indicator {
  width: 32px;
  height: 3px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  padding: 8px 0;
  background-clip: content-box;
  transition: background-color 0.3s var(--ease), width 0.3s var(--ease);
}

.hero-indicator.active {
  background: var(--primary);
  width: 56px;
  box-shadow: 0 0 10px rgba(245, 54, 156, 0.5);
}

/* ===== Stats strip — neon counters ===== */
.stats-strip {
  background: var(--surface);
  color: white;
  padding: 2.25rem 0;
  border-top: 3px solid var(--primary);
  border-bottom: 1px solid var(--line);
  position: relative;
  box-shadow: 0 0 40px rgba(245, 54, 156, 0.06);
}

.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }

.stat-value {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--secondary);
  line-height: 1;
  text-shadow: 0 0 16px rgba(255, 214, 0, 0.4);
}

.stat-label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 0.5rem;
}

/* ===== Intro ===== */
.intro {
  background: linear-gradient(180deg, var(--bg) 0%, var(--surface) 100%);
  position: relative;
}

/* Subtle warm ambient glow behind intro */
.intro::before {
  content: "";
  position: absolute;
  top: 20%;
  left: -10%;
  width: 50%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(245, 54, 156, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.intro-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #fff;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.intro-text h2 .accent {
  color: var(--secondary);
  font-style: italic;
  text-shadow: 0 0 20px rgba(255, 214, 0, 0.35);
}

.intro-text p {
  color: var(--text-light);
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
  line-height: 1.75;
}

.intro-visual {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl), 0 0 40px rgba(245, 54, 156, 0.12);
  border: 2px solid rgba(245, 54, 156, 0.3);
}

.intro-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}

.intro-visual:hover img { transform: scale(1.05); }

/* ===== Feature Cards — dark glass ===== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.feature-card {
  background: var(--surface-2);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  text-align: center;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}

/* Warm ambient glow on hover */
.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(245, 54, 156, 0.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}

.feature-card:hover::before { opacity: 1; }

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(245, 54, 156, 0.3);
}

.feature-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 54, 156, 0.12);
  color: var(--primary);
  border-radius: 50%;
  font-size: 1.5rem;
  border: 1px solid rgba(245, 54, 156, 0.2);
  position: relative;
  z-index: 1;
}

.feature-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  color: #fff;
  margin-bottom: 0.6rem;
  position: relative;
  z-index: 1;
}

.feature-card p { color: var(--text-light); font-size: 0.96rem; line-height: 1.6; position: relative; z-index: 1; }

/* ===== Menu preview cards (home page) ===== */
.menu-preview {
  background: var(--surface);
  position: relative;
}

.menu-preview::before {
  content: "";
  position: absolute;
  top: 0; right: -10%;
  width: 50%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(255, 214, 0, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.menu-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto 2.5rem;
}

.menu-preview-card {
  background: var(--surface-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  cursor: pointer;
}

.menu-preview-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(245, 54, 156, 0.25);
}

.menu-preview-img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--surface-3);
}

.menu-preview-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.menu-preview-card:hover .menu-preview-img img { transform: scale(1.08); }

.menu-preview-tag {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  background: var(--primary);
  color: white;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 0 12px rgba(245, 54, 156, 0.4);
}

.menu-preview-card .content { padding: 1.25rem 1.5rem 1.75rem; flex: 1; }

.menu-preview-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 0.4rem;
}

.menu-preview-card p { color: var(--text-light); font-size: 0.92rem; line-height: 1.55; }

/* ===== Menu page ===== */
.menu-page {
  padding: 3rem 0 5rem;
  background: var(--bg);
}

.menu-tabs {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin: 0 auto 3rem;
  flex-wrap: wrap;
  padding: 0.4rem;
  background: var(--surface-2);
  border-radius: 999px;
  box-shadow: var(--shadow-md);
  max-width: max-content;
  border: 1px solid var(--line);
}

.menu-tab {
  padding: 0.7rem 1.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-light);
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.25s var(--ease);
}

.menu-tab:hover { color: #fff; }

.menu-tab.active {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  box-shadow: 0 4px 16px rgba(245, 54, 156, 0.45), 0 0 12px rgba(245, 54, 156, 0.2);
}

.menu-category { margin-bottom: 4rem; scroll-margin-top: 120px; }

.menu-category-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.menu-category-header::before,
.menu-category-header::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245, 54, 156, 0.4), transparent);
}

.menu-category-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: #fff;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.menu-card {
  background: var(--surface-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
  display: flex;
  flex-direction: column;
}

.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg), 0 0 24px rgba(255, 214, 0, 0.08);
  border-color: rgba(255, 214, 0, 0.3);
}

.menu-card .image-container {
  position: relative;
  aspect-ratio: 1;
  background: var(--surface-3);
  overflow: hidden;
  cursor: zoom-in;
}

.menu-card .image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.menu-card:hover .image-container img { transform: scale(1.07); }

.menu-card .content { padding: 1.25rem 1.25rem 1.5rem; text-align: center; }

.menu-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: #2E1B26;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.4rem;
  letter-spacing: -0.01em;
}

.menu-card p { color: #5B4452; font-size: 0.95rem; line-height: 1.6; }

/* Image lightbox */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.94);
  backdrop-filter: blur(12px);
  align-items: center;
  justify-content: center;
  padding: 2rem;
  animation: fadeUp 0.3s var(--ease);
}

.modal.open { display: flex; }

.modal-content {
  max-width: min(90vw, 800px);
  max-height: 85vh;
  border-radius: var(--radius);
  box-shadow: var(--shadow-xl), 0 0 60px rgba(245, 54, 156, 0.1);
  object-fit: contain;
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s var(--ease);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-close:hover { background: rgba(245, 54, 156, 0.4); }

/* ===== Locations page ===== */
.locations-hero {
  background: radial-gradient(120% 130% at 50% 0%, #FF5BB0 0%, var(--primary) 55%, var(--primary-dark) 100%);
  color: white;
  padding: 4rem 0 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.locations-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.16) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.10) 0%, transparent 50%);
}

.locations-hero h1 {
  font-family: 'Cooper Black', 'Cooper Std', 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
  letter-spacing: -0.01em;
}

.locations-hero h1 .accent {
  background: linear-gradient(135deg, var(--secondary) 0%, #ff8f00 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 12px rgba(255, 214, 0, 0.35));
}

.locations-hero p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.locations-stats {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-top: 2rem;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}

.locations-stat { text-align: center; }

.locations-stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1;
  text-shadow: 0 0 16px rgba(255, 214, 0, 0.4);
}

.locations-stat-label {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.3rem;
}

.map-section {
  padding: 3rem 0;
  background: var(--bg);
}

.map-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 1.5rem;
  align-items: start;
}

#map {
  width: 100%;
  height: 620px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(245, 54, 156, 0.2);
  background: var(--surface-2);
  transition: box-shadow 0.3s var(--ease);
}
/* warm night-market glow only when the map is in dark mode */
#map.map-dark { box-shadow: var(--shadow-lg), 0 0 30px rgba(245, 54, 156, 0.18); }

/* Light/dark map toggle button (Leaflet control) */
.map-theme-toggle {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  cursor: pointer;
  font-size: 1rem;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.2);
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.4);
  transition: background-color 0.2s var(--ease), color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.map-theme-toggle:hover {
  background: var(--secondary);
  color: var(--ink);
}
.map-theme-toggle:focus-visible { outline: none; box-shadow: var(--ring-primary); }
/* once dark, the button itself adopts the dark surface */
#map.map-dark .map-theme-toggle {
  background: var(--surface-2);
  color: var(--secondary);
  border-color: rgba(255, 214, 0, 0.4);
}
#map.map-dark .map-theme-toggle:hover { background: var(--secondary); color: var(--ink); }

.map-sidebar {
  background: var(--surface-2);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  max-height: 620px;
  border: 1px solid var(--line);
}

.map-search { position: relative; padding: 1rem; border-bottom: 1px solid var(--line); }

.map-search input {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 2.6rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.95rem;
  font-family: inherit;
  background: var(--surface-3);
  color: var(--text);
  transition: all 0.2s var(--ease);
  -webkit-appearance: none;
  appearance: none;
}

.map-search input::placeholder { color: var(--muted); }

.map-search input:focus {
  outline: none;
  background: var(--surface);
  border-color: var(--primary);
  box-shadow: var(--ring-primary);
}

.map-search::before {
  content: "\f002";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 2rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  pointer-events: none;
  font-size: 0.95rem;
}

.region-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--line);
}

.region-chip {
  padding: 0.4rem 0.85rem;
  background: var(--surface-3);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-light);
  cursor: pointer;
  transition: all 0.2s var(--ease);
  border: 1px solid transparent;
}

.region-chip:hover { color: #fff; background: rgba(245, 54, 156, 0.15); border-color: rgba(245, 54, 156, 0.2); }

.region-chip.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  box-shadow: 0 0 12px rgba(245, 54, 156, 0.3);
}

.outlet-list {
  flex: 1;
  overflow-y: auto;
  padding: 0.5rem;
  scrollbar-width: thin;
  scrollbar-color: var(--muted) transparent;
}

.outlet-list::-webkit-scrollbar { width: 8px; }
.outlet-list::-webkit-scrollbar-track { background: transparent; }
.outlet-list::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, 0.1); border-radius: 4px; }
.outlet-list::-webkit-scrollbar-thumb:hover { background: rgba(255, 255, 255, 0.2); }

.outlet-item {
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background-color 0.18s var(--ease);
  border-left: 3px solid transparent;
}

.outlet-item:hover { background: rgba(245, 54, 156, 0.08); border-left-color: var(--primary); }

.outlet-item.active { background: rgba(245, 54, 156, 0.12); border-left-color: var(--primary); }

.outlet-item .outlet-name {
  font-weight: 700;
  color: var(--text);
  font-size: 0.98rem;
  margin-bottom: 0.2rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.outlet-item .outlet-meta { font-size: 0.82rem; color: var(--text-light); }

.outlet-badge {
  display: inline-block;
  padding: 0.12rem 0.5rem;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.outlet-badge.new { background: var(--primary); color: white; box-shadow: 0 0 8px rgba(245, 54, 156, 0.4); }

.outlet-empty {
  padding: 2rem 1rem;
  text-align: center;
  color: var(--text-light);
  font-size: 0.95rem;
}

/* Leaflet popup customization — dark style */
.leaflet-popup-content-wrapper {
  border-radius: var(--radius) !important;
  box-shadow: var(--shadow-lg) !important;
  padding: 0 !important;
  background: var(--surface-2) !important;
  border: 1px solid rgba(245, 54, 156, 0.2) !important;
}

.leaflet-popup-tip { background: var(--surface-2) !important; }

.leaflet-popup-content {
  margin: 0 !important;
  padding: 1rem 1.1rem !important;
  font-family: 'Inter', sans-serif !important;
  min-width: 220px;
  color: var(--text) !important;
}

.popup-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: #fff;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.popup-addr {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.popup-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.85rem;
  background: var(--primary);
  color: white !important;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none !important;
  transition: background-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
  box-shadow: 0 0 10px rgba(245, 54, 156, 0.3);
}

.popup-link:hover { background: var(--primary-dark); box-shadow: var(--glow-red); }

/* Custom Leaflet marker — mascot pin tinted by region */
.sb-marker { background: transparent !important; border: none !important; }

.sb-marker-pin {
  position: relative;
  width: 46px;
  height: 46px;
  display: block;
  background: transparent;
  border: none;
  border-radius: 0;
  transform: none;
  box-shadow: none;
  transition: transform 0.2s var(--ease);
}
.sb-marker-pin::before {
  /* circular badge background */
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #fff;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.32), 0 0 0 1px rgba(0, 0, 0, 0.06);
  z-index: 0;
}
.sb-marker-pin::after {
  /* tinted mascot silhouette overlay */
  content: "";
  position: absolute;
  inset: 3px;
  background: var(--primary);
  -webkit-mask: url("mascot.png?v=2") center/88% auto no-repeat;
  mask: url("mascot.png?v=2") center/88% auto no-repeat;
  z-index: 1;
}

.sb-marker-pin.region-Klang-Valley::after { background: var(--primary); }
.sb-marker-pin.region-Johor::after        { background: var(--region-johor); }
.sb-marker-pin.region-Northern::after     { background: var(--region-northern); }
.sb-marker-pin.region-Central::after      { background: var(--region-central); }

.sb-marker-pin.new::before {
  animation: neonPulse 1.6s ease-in-out infinite;
  box-shadow: 0 0 0 6px rgba(245, 54, 156, 0.28), 0 6px 14px rgba(0, 0, 0, 0.32), 0 0 16px rgba(245, 54, 156, 0.3);
}

.sb-marker:hover .sb-marker-pin { transform: scale(1.18); }

/* ===== Contact page ===== */
.contact-hero {
  background: radial-gradient(120% 130% at 50% 0%, #FF5BB0 0%, var(--primary) 55%, var(--primary-dark) 100%);
  color: white;
  padding: 4rem 0 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.16) 0%, transparent 50%),
    radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.10) 0%, transparent 50%);
}

.contact-hero h1 {
  font-family: 'Cooper Black', 'Cooper Std', 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}

.contact-hero h1 .accent {
  background: linear-gradient(135deg, var(--secondary) 0%, #ff8f00 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 12px rgba(255, 214, 0, 0.35));
}

.contact-hero p {
  color: rgba(255, 255, 255, 0.75);
  max-width: 540px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-card {
  background: var(--surface-2);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
  display: flex;
  flex-direction: column;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(245, 54, 156, 0.25);
}

.contact-card-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(245, 54, 156, 0.1);
  color: var(--primary);
  font-size: 1.5rem;
  border: 1px solid rgba(245, 54, 156, 0.15);
}

.contact-card-icon.fb { background: rgba(24, 119, 242, 0.1); color: #4d9af5; border-color: rgba(24, 119, 242, 0.15); }
.contact-card-icon.ig { background: rgba(214, 36, 159, 0.1); color: #e84dba; border-color: rgba(214, 36, 159, 0.15); }
.contact-card-icon.wa { background: rgba(37, 211, 102, 0.1); color: #3ddc84; border-color: rgba(37, 211, 102, 0.15); }

.contact-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 0.4rem;
}

.contact-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  flex: 1;
}

.contact-card .btn { width: 100%; padding: 0.75rem 1rem; font-size: 0.92rem; }

/* ===== Process Steps — "How We Do It" ===== */
.process {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.process::before {
  content: "";
  position: absolute;
  top: 10%;
  right: -15%;
  width: 40%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(255, 214, 0, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  counter-reset: step;
}

.process-step {
  position: relative;
  background: var(--surface-2);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.5rem 2rem;
  text-align: center;
  border: 1px solid var(--line);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
  overflow: hidden;
}

.process-step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}

.process-step:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(245, 54, 156, 0.3); }
.process-step:hover::before { opacity: 1; }

.process-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 900;
  color: rgba(245, 54, 156, 0.1);
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.04em;
}

.process-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 214, 0, 0.08);
  color: var(--secondary);
  border-radius: 50%;
  font-size: 1.35rem;
  border: 1px solid rgba(255, 214, 0, 0.15);
}

.process-step h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.process-step p {
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ===== Signature Showcase ===== */
.signature-showcase {
  background: var(--surface);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.signature-showcase::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245, 54, 156, 0.3), transparent);
}

.signature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.signature-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-xl), 0 0 60px rgba(245, 54, 156, 0.1);
  border: 2px solid rgba(245, 54, 156, 0.2);
}

.signature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}

.signature-image:hover img { transform: scale(1.05); }

.signature-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  background: rgba(245, 54, 156, 0.9);
  backdrop-filter: blur(8px);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: 0 0 16px rgba(245, 54, 156, 0.4);
}

.signature-text h2 { margin-bottom: 1rem; }

.signature-text p {
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.signature-text .btn { margin-top: 0.5rem; }

/* ===== Social Proof strip ===== */
.social-proof {
  background: var(--surface-2);
  padding: 3.5rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.social-proof-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

.social-proof-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  color: #fff;
  line-height: 1.4;
  letter-spacing: -0.01em;
}

.social-proof-links {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.25rem;
  background: var(--surface-3);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  font-weight: 600;
  font-size: 0.92rem;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
}

.social-link i { font-size: 1.1rem; }

.social-link.fb:hover { background: rgba(24, 119, 242, 0.15); border-color: rgba(24, 119, 242, 0.3); color: #4d9af5; }
.social-link.ig:hover { background: rgba(214, 36, 159, 0.15); border-color: rgba(214, 36, 159, 0.3); color: #e84dba; }
.social-link.fp:hover { background: rgba(245, 54, 156, 0.12); border-color: rgba(245, 54, 156, 0.3); color: var(--primary); }

/* CTA banner buttons row */
.cta-banner-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== CTA banner (home) — fiery glow ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, #d84315 100%);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 50%, rgba(255, 214, 0, 0.25) 0%, transparent 55%),
    radial-gradient(circle at 20% 50%, rgba(0, 0, 0, 0.2) 0%, transparent 55%);
}

.cta-banner-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  color: white;
  max-width: 640px;
  margin: 0 auto;
}

.cta-banner-inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.cta-banner-inner h2 .accent {
  background: linear-gradient(135deg, var(--secondary) 0%, #fff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
}

.cta-banner-inner p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  margin-bottom: 1.75rem;
}

/* ===== Footer — deep dark ===== */
footer.site-footer {
  margin-top: auto;
  background: linear-gradient(180deg, var(--ink) 0%, var(--footer-bg) 100%);
  color: var(--footer-text);
  padding: 3.5rem 0 1.5rem;
  position: relative;
}

footer.site-footer::before {
  content: "";
  display: block;
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--primary));
  box-shadow: 0 0 16px rgba(245, 54, 156, 0.3), 0 0 32px rgba(255, 214, 0, 0.15);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-brand img { height: 64px; margin-bottom: 1rem; }

.footer-brand p {
  color: var(--footer-text);
  font-size: 0.92rem;
  max-width: 320px;
  line-height: 1.7;
  opacity: 0.8;
}

.footer-col h4 {
  font-family: 'Playfair Display', serif;
  color: var(--secondary);
  margin-bottom: 1rem;
  font-size: 1.05rem;
  text-shadow: 0 0 12px rgba(255, 214, 0, 0.25);
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }

.footer-col a {
  color: var(--footer-text);
  font-size: 0.93rem;
  transition: color 0.2s var(--ease), text-shadow 0.2s var(--ease);
  opacity: 0.75;
}

.footer-col a:hover { color: var(--primary); opacity: 1; text-shadow: 0 0 8px rgba(245, 54, 156, 0.3); }

.footer-social { display: flex; gap: 0.75rem; margin-top: 0.5rem; }

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 214, 0, 0.08);
  color: var(--secondary);
  font-size: 1.05rem;
  border: 1px solid rgba(255, 214, 0, 0.12);
  transition: all 0.2s var(--ease);
}

.footer-social a:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
  border-color: var(--primary);
  box-shadow: 0 0 16px rgba(245, 54, 156, 0.4);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .map-layout { grid-template-columns: 1fr; }
  #map { height: 480px; }
  .map-sidebar { max-height: none; }
  .outlet-list { max-height: 360px; }
  .intro-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .signature-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .signature-text h2 { text-align: center !important; }
  .signature-text { text-align: center; }
  .menu-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .social-proof-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 880px) {
  .nav-toggle { display: flex; }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface);
    flex-direction: column;
    gap: 0;
    padding: 0;
    border-top: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s var(--ease), padding 0.35s var(--ease);
  }

  .nav-links.open { max-height: 100vh; padding: 0.75rem; }

  .nav-links li { width: 100%; }
  .nav-links a { display: block; width: 100%; padding: 0.85rem 1rem; }

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

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }

  .locations-stats { gap: 1.75rem; }
}

/* Tablets / large phones */
@media (max-width: 680px) {
  .container { padding: 0 1.15rem; }
  .section { padding: 3.75rem 0; }
  #map { height: 420px; }

  .menu-category-header { gap: 0.75rem; }
  .menu-category-header h2 { white-space: normal; }

  .contact-grid { gap: 1.15rem; }
  .feature-grid { gap: 1.15rem; }
}

@media (max-width: 560px) {
  .nav-brand img { height: 46px; }
  .section { padding: 3.25rem 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.1rem 1rem; }
  .stats-strip { padding: 1.75rem 0; }
  .menu-grid { grid-template-columns: 1fr; }
  .menu-preview-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .social-proof-links { flex-direction: column; width: 100%; }
  .social-link { justify-content: center; }
  .cta-banner-buttons { flex-direction: column; align-items: stretch; }
  .cta-banner-buttons .btn { width: 100%; }

  .hero { min-height: 86vh; }
  .hero-content { padding: 4.5rem 1.25rem 7rem; }
  .hero-badge { font-size: 0.74rem; padding: 0.35rem 0.8rem; }
  .hero-indicators { bottom: 4rem; }

  .hero-ctas { flex-direction: column; align-items: stretch; gap: 0.75rem; }
  .hero-ctas .btn { width: 100%; }

  .locations-hero, .contact-hero { padding: 3rem 0 2.5rem; }
  .locations-stats { gap: 1.25rem; }
  .map-section { padding: 2rem 0; }

  .footer-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .footer-brand { text-align: left; }

  .menu-tabs {
    border-radius: var(--radius);
    padding: 0.35rem;
    max-width: 100%;
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
  }
  .menu-tab { padding: 0.6rem 1.1rem; font-size: 0.88rem; }
}

/* Small phones */
@media (max-width: 400px) {
  .container { padding: 0 1rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 1rem 0.75rem; }
  .stat-value { font-size: 1.8rem; }
  .hero h1 { font-size: clamp(2.4rem, 11vw, 3rem); }
  .hero-marquee { font-size: 0.82rem; }
  .btn { padding: 0.8rem 1.3rem; font-size: 0.92rem; }
}

/* ===== Animation utilities ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes neonPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 12px var(--primary), 0 0 24px rgba(245, 54, 156, 0.4); }
  50%      { opacity: 0.7; box-shadow: 0 0 6px var(--primary), 0 0 12px rgba(245, 54, 156, 0.2); }
}

@keyframes floatSubtle {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

@keyframes kenBurns {
  from { transform: scale(1.08); }
  to   { transform: scale(1); }
}

.reveal {
  opacity: 0;
  transform: translateY(38px) scale(0.97);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.visible { opacity: 1; transform: translateY(0) scale(1); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ===================================================================
   NIGHT MARKET (PASAR MALAM) COMPONENTS — immersive home page
   Lanterns · neon signs · string lights · stall awnings · carousel
   =================================================================== */

/* Page-wide dark alley backdrop with warm light pools */
body.nm {
  background-color: #ffe1f0;
  background-image: none;
}

/* night-market dark decorations retired in the bright rebrand */
.nm-lanterns, .nm-embers { display: none !important; }
/* seigaiha wave texture retired — too traditional-Japanese for the brand */
.wave-pattern::after { display: none !important; }

/* ---------- Top brand ticker bar ---------- */
.nm-ticker {
  position: relative;
  z-index: 1001;
  background: var(--primary);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  overflow: hidden;
  padding: 0.45rem 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
}

.nm-ticker-track {
  display: flex;
  gap: 2.5rem;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  padding-left: 100%;
}

.nm-ticker-track span { display: inline-flex; align-items: center; gap: 0.5rem; }
.nm-ticker-track i { color: var(--secondary); }

/* ---------- Hanging paper lanterns ---------- */
.nm-lanterns {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0;
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  z-index: 4;
  pointer-events: none;
  padding: 0 4%;
}

.lantern {
  position: relative;
  transform-origin: top center;
  animation: lanternSway 4.5s ease-in-out infinite;
}
/* the lantern parts are spans — must be blocks for width/height to apply */
.lantern > span { display: block; }
.lantern::before {
  /* hanging string up to the top */
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, rgba(255, 214, 120, 0.5));
}
.lantern-cap, .lantern-base {
  width: 22px;
  height: 6px;
  margin: 0 auto;
  background: #b8860b;
  border-radius: 2px;
}
.lantern-body {
  width: 44px;
  height: 56px;
  border-radius: 50% / 45%;
  background:
    radial-gradient(circle at 35% 30%, #ff7a5c 0%, #e53935 45%, #b3121f 100%);
  box-shadow:
    0 0 22px rgba(245, 54, 156, 0.55),
    0 0 50px rgba(245, 54, 156, 0.25),
    inset 0 -10px 18px rgba(120, 0, 0, 0.45),
    inset 0 8px 14px rgba(255, 200, 150, 0.35);
  position: relative;
  animation: lanternGlow 3s ease-in-out infinite;
}
.lantern-body::before, .lantern-body::after {
  /* vertical ribs */
  content: "";
  position: absolute;
  top: 6%;
  bottom: 6%;
  width: 1px;
  background: rgba(120, 0, 0, 0.35);
}
.lantern-body::before { left: 35%; }
.lantern-body::after  { right: 35%; }
.lantern-tassel {
  width: 3px;
  height: 16px;
  margin: 2px auto 0;
  background: linear-gradient(to bottom, #f9a825, transparent);
  border-radius: 0 0 2px 2px;
}
/* gold lantern variant */
.lantern.gold .lantern-body {
  background: radial-gradient(circle at 35% 30%, #ffe082 0%, #ffc107 45%, #f57f17 100%);
  box-shadow:
    0 0 22px rgba(255, 193, 7, 0.55),
    0 0 50px rgba(255, 193, 7, 0.22),
    inset 0 -10px 18px rgba(150, 90, 0, 0.4),
    inset 0 8px 14px rgba(255, 240, 200, 0.45);
}
.lantern:nth-child(odd)  { animation-delay: -1.2s; }
.lantern:nth-child(3n)   { animation-delay: -2.4s; }
/* standalone scale property — composes with the sway animation's transform */
.lantern.small { scale: 0.72; }

/* corner variant for sub-page heroes — lanterns only at the outer edges
   so they never overlap the centred page title */
.nm-lanterns.corners { justify-content: space-between; padding: 0 3%; }
.nm-lanterns.corners .lantern { scale: 0.8; }
@media (max-width: 880px) {
  .nm-lanterns.corners { display: none; }
}

@keyframes lanternSway {
  0%, 100% { transform: rotate(-4deg); }
  50%      { transform: rotate(4deg); }
}
@keyframes lanternGlow {
  0%, 100% { filter: brightness(1); }
  50%      { filter: brightness(1.18); }
}

/* ---------- Dividers retired — solid colour blocks separate sections ---------- */
.string-lights { display: none; }
.string-lights::before { content: none; }

/* ---------- Brand wordmark text (was neon) ---------- */
.neon {
  color: #fff;
  text-shadow: 0 4px 0 rgba(22, 40, 79, 0.18), 0 1px 2px rgba(22, 40, 79, 0.35);
}
.neon-yellow {
  color: var(--secondary);
  text-shadow: 0 3px 0 rgba(22, 40, 79, 0.12);
}
@keyframes neonFlicker {
  0%, 19%, 21%, 23%, 80%, 100% { opacity: 1; }
  20%, 22%, 82%, 84% { opacity: 0.78; }
}

/* ---------- Night-market hero ---------- */
.nm-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  gap: clamp(1rem, 4vw, 3rem);
  overflow: hidden;
  isolation: isolate;
  padding: 6rem clamp(1.5rem, 6vw, 5.5rem) 5rem;
}
.nm-hero::after { content: none; }

/* curved yin-yang pink/blue divide (animated by script.js) */
.nm-hero-split {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}

/* typing cursor for the hero title */
.type-cursor {
  display: inline-block;
  color: #fff;
  font-weight: 400;
  margin-left: 0.06em;
  animation: caretBlink 0.8s steps(1) infinite;
}
@keyframes caretBlink { 0%, 50% { opacity: 1; } 51%, 100% { opacity: 0; } }

/* left text panel (pink side) */
.nm-hero-inner {
  position: relative;
  z-index: 1;
  flex: 1 1 54%;
  max-width: 620px;
  text-align: left;
  animation: fadeUp 1s var(--ease) 0.2s both;
}

/* right mascot panel (blue side) */
.nm-hero-figure {
  position: relative;
  z-index: 1;
  flex: 1 1 42%;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* soft spotlight glow behind the mascot */
.nm-hero-figure::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 47%;
  width: 86%;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.16) 42%, transparent 66%);
  z-index: -1;
  pointer-events: none;
  animation: haloPulse 5s ease-in-out infinite;
}
@keyframes haloPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1);    opacity: 0.85; }
  50%      { transform: translate(-50%, -50%) scale(1.08); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) { .nm-hero-figure::before { animation: none; } }
.nm-hero-mascot {
  width: clamp(230px, 30vw, 400px);
  height: auto;
  filter: drop-shadow(0 22px 32px rgba(22, 40, 79, 0.42));
  animation: floatMascot 4.5s ease-in-out infinite;
}
@keyframes floatMascot {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50%      { transform: translateY(-16px) rotate(2deg); }
}
@media (prefers-reduced-motion: reduce) {
  .nm-hero-mascot { animation: none; transform: rotate(-2deg); }
}

/* stack on mobile: pink top / blue bottom, centered */
@media (max-width: 880px) {
  .nm-hero {
    flex-direction: column;
    text-align: center;
    padding-top: 4.5rem;
    gap: 1.5rem;
    background: linear-gradient(180deg, var(--primary) 0 60%, var(--accent) 60% 100%);
  }
  .nm-hero-split { display: none; }
  .nm-hero-inner { flex: none; max-width: 100%; text-align: center; }
  .nm-hero-figure { flex: none; }
  .nm-hero-mascot { width: clamp(180px, 52vw, 250px); }
  .nm-hero-inner .nm-kicker { margin-left: auto; margin-right: auto; }
  .nm-hero-sub { margin-left: auto; margin-right: auto; }
  .nm-hero-ctas { justify-content: center; }
}

/* Mascot peeking into the final CTA band */
.nm-cta-mascot {
  position: absolute;
  left: clamp(0.5rem, 4vw, 4rem);
  bottom: 0;
  width: clamp(120px, 13vw, 180px);
  height: auto;
  z-index: 1;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.25));
  transform: rotate(-6deg);
}
@media (max-width: 880px) { .nm-cta-mascot { display: none; } }

.nm-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.5rem;
  padding: 0.4rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
}
.nm-kicker i { color: var(--secondary); }

.nm-hero h1 {
  font-family: 'Cooper Black', 'Cooper Std', 'CooperBlack', 'Cooper BT', 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(3rem, 9vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
.nm-hero .jp {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: clamp(0.82rem, 1.5vw, 1rem);
  letter-spacing: 0.25em;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0.75rem;
}
.nm-fresh {
  display: block;
  font-family: 'Cooper Black', 'Cooper Std', 'Playfair Display', serif;
  font-size: clamp(1.5rem, 4vw, 2.6rem);
  color: var(--secondary);
  letter-spacing: 0.01em;
  margin-bottom: 0.75rem;
  text-shadow: 0 3px 0 rgba(22, 40, 79, 0.18), 0 1px 2px rgba(22, 40, 79, 0.3);
}
.nm-hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  max-width: 540px;
  margin: 1.5rem 0 2.25rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.65;
}
.nm-hero-sub strong { color: var(--secondary); }
.nm-hero-ctas { display: flex; gap: 1rem; justify-content: flex-start; flex-wrap: wrap; }

/* hero buttons pop on the pink panel */
.nm-hero .btn-primary { background: #fff; color: var(--primary); box-shadow: var(--shadow-md); }
.nm-hero .btn-primary:hover { background: #fff; box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.nm-hero .btn-outline { background: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.85); }
.nm-hero .btn-outline:hover { background: #fff; color: var(--primary); border-color: #fff; }

.nm-scroll-hint {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.4rem;
  animation: floatSubtle 2s ease-in-out infinite;
}

/* ---------- Night-market stats (glowing lanterns) ---------- */
.nm-stats {
  position: relative;
  padding: 3rem 0;
  background: transparent;
  border: 0;
}
.nm-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.nm-stat {
  text-align: center;
  padding: 1.5rem 1rem;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.nm-stat:hover {
  transform: translateY(-5px);
  box-shadow: var(--glow-red);
  border-color: rgba(245, 54, 156, 0.35);
}
.nm-stat-value {
  font-family: 'Cooper Black', 'Cooper Std', 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4.5vw, 3rem);
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}
.nm-stat-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 0.6rem;
}

/* ---------- Section shell ---------- */
.nm-section { padding: 5rem 0; position: relative; }
.nm-head { text-align: center; max-width: 680px; margin: 0 auto 3rem; }
.nm-head .nm-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.85rem;
  padding: 0.35rem 1rem;
  background: var(--primary-light);
  border: 1px solid rgba(245, 54, 156, 0.25);
  border-radius: 999px;
}
.nm-head h2 {
  font-family: 'Cooper Black', 'Cooper Std', 'Playfair Display', serif;
  font-size: clamp(1.9rem, 4.5vw, 2.9rem);
  color: var(--text);
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.nm-head p { margin-top: 0.85rem; color: var(--text-light); font-size: 1.05rem; }

/* ---------- Outlet storefront CAROUSEL ---------- */
.nm-carousel {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
}
.nm-carousel-viewport {
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 3px solid #fff;
  box-shadow: var(--shadow-xl), 0 0 0 2px rgba(245, 54, 156, 0.25);
  background: #000;
}
.nm-carousel-track {
  display: flex;
  transition: transform 0.6s var(--ease);
  will-change: transform;
}
.nm-slide {
  position: relative;
  min-width: 100%;
  aspect-ratio: 16 / 10;
  background: #000;
}
.nm-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.nm-slide-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 3rem 1.75rem 1.5rem;
  background: linear-gradient(180deg, transparent, rgba(8, 7, 11, 0.9));
  text-align: left;
}
.nm-slide-caption .tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: var(--primary);
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  margin-bottom: 0.6rem;
  box-shadow: 0 0 12px rgba(245, 54, 156, 0.5);
}
.nm-slide-caption h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  color: #fff;
  margin-bottom: 0.2rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}
.nm-slide-caption p { color: rgba(255, 255, 255, 0.8); font-size: 0.92rem; }

.nm-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #fff;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
  color: var(--primary);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: all 0.2s var(--ease);
}
.nm-arrow:hover { background: var(--primary); color: #fff; border-color: var(--primary); box-shadow: var(--glow-red); }
.nm-arrow.prev { left: -22px; }
.nm-arrow.next { right: -22px; }

.nm-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.nm-dot {
  width: 32px;
  height: 4px;
  padding: 0;
  border-radius: 4px;
  background: rgba(22, 40, 79, 0.18);
  cursor: pointer;
  transition: all 0.3s var(--ease);
}
.nm-dot.active { background: var(--primary); width: 52px; }

/* ---------- Stall-awning menu cards ---------- */
.nm-stall-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.nm-stall {
  background: var(--surface-2);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  border-top: 0;
  cursor: pointer;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
  display: flex;
  flex-direction: column;
}
.nm-stall { box-shadow: var(--shadow-sm); }
.nm-stall:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(245, 54, 156, 0.3); }
.nm-awning {
  height: 20px;
  background: repeating-linear-gradient(90deg,
    var(--primary) 0, var(--primary) 18px,
    #fff3e0 18px, #fff3e0 36px);
  position: relative;
}
.nm-awning::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -9px;
  height: 9px;
  background: radial-gradient(circle at 9px 0, var(--primary) 0 9px, transparent 10px) repeat-x;
  background-size: 36px 9px;
}
.nm-awning::before {
  content: "";
  position: absolute;
  left: 18px; right: 0; bottom: -9px;
  height: 9px;
  background: radial-gradient(circle at 9px 0, #fff3e0 0 9px, transparent 10px) repeat-x;
  background-size: 36px 9px;
}
.nm-stall-img { position: relative; aspect-ratio: 1; overflow: hidden; background: var(--surface-3); }
.nm-stall-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.nm-stall:hover .nm-stall-img img { transform: scale(1.08); }
.nm-stall .body { padding: 1.1rem 1.25rem 1.5rem; text-align: center; }
.nm-stall h3 { font-family: 'Cooper Black', 'Cooper Std', 'Playfair Display', serif; font-size: 1.12rem; color: var(--text); margin-bottom: 0.35rem; }
.nm-stall p { color: var(--text-light); font-size: 0.88rem; line-height: 1.5; }

/* ---------- Signature feature (big squid) ---------- */
.nm-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.nm-feature-img {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 4px solid #fff;
  box-shadow: var(--shadow-xl), 0 0 0 2px rgba(22, 166, 230, 0.25);
}
.nm-feature-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.nm-feature-img:hover img { transform: scale(1.05); }
.nm-feature-tag {
  position: absolute;
  top: 1.2rem; left: 1.2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--primary);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(245, 54, 156, 0.4);
}
.nm-feature-text h2 {
  font-family: 'Cooper Black', 'Cooper Std', 'Playfair Display', serif;
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  color: var(--text);
  margin-bottom: 1rem;
  line-height: 1.1;
}
.nm-feature-text h2 .accent { color: var(--primary); }
.nm-feature-text p { color: var(--text-light); font-size: 1.05rem; line-height: 1.75; margin-bottom: 1.25rem; }

/* ---------- Lantern feature cards (why us) ---------- */
.nm-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.nm-why-card {
  text-align: center;
  padding: 2.25rem 1.5rem 2rem;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.nm-why-card::before {
  content: "";
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(22, 166, 230, 0.14) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.nm-why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(22, 166, 230, 0.35); }
.nm-why-card:hover::before { opacity: 1; }
.nm-why-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.5rem;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid rgba(22, 166, 230, 0.25);
  position: relative;
  z-index: 1;
}
.nm-why-card h3 { font-family: 'Cooper Black', 'Cooper Std', 'Playfair Display', serif; font-size: 1.25rem; color: var(--text); margin-bottom: 0.5rem; position: relative; z-index: 1; }
.nm-why-card p { color: var(--text-light); font-size: 0.92rem; line-height: 1.6; position: relative; z-index: 1; }

/* ---------- Neon "OPEN" CTA ---------- */
.nm-cta {
  position: relative;
  padding: 5rem 0;
  text-align: center;
  overflow: hidden;
  background: var(--accent);
}
.nm-cta-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.nm-open-sign {
  display: inline-block;
  font-family: 'Cooper Black', 'Cooper Std', 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(2.4rem, 6vw, 4rem);
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.nm-cta h2 { font-family: 'Cooper Black', 'Cooper Std', 'Playfair Display', serif; font-size: clamp(1.6rem, 3.5vw, 2.2rem); color: #fff; margin-bottom: 0.75rem; }
.nm-cta p { color: rgba(255, 255, 255, 0.92); font-size: 1.05rem; margin-bottom: 1.75rem; }
.nm-cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---------- Night-market responsive ---------- */
@media (max-width: 1024px) {
  .nm-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .nm-stall-grid { grid-template-columns: repeat(2, 1fr); }
  .nm-why-grid { grid-template-columns: repeat(2, 1fr); }
  .nm-feature-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .nm-feature-text { text-align: center; }
  .nm-lanterns { padding: 0 2%; }
  .lantern.small { display: none; }
}
@media (max-width: 680px) {
  .nm-section { padding: 3.75rem 0; }
  .nm-arrow.prev { left: 8px; }
  .nm-arrow.next { right: 8px; }
  .nm-arrow { width: 42px; height: 42px; }
}
@media (max-width: 560px) {
  .nm-hero { min-height: 90vh; padding: 5rem 1.25rem 4rem; }
  .nm-stats-grid { gap: 0.85rem; }
  .nm-stat { padding: 1.1rem 0.75rem; }
  .nm-stall-grid { grid-template-columns: 1fr; }
  .nm-why-grid { grid-template-columns: 1fr; }
  .nm-hero-ctas { flex-direction: column; align-items: stretch; }
  .nm-hero-ctas .btn { width: 100%; }
  .nm-cta-buttons { flex-direction: column; align-items: stretch; }
  .nm-cta-buttons .btn { width: 100%; }
  .lantern { scale: 0.8; }
  .lantern.small { display: none; }
}

/* ---------- Back-to-top button ---------- */
.back-to-top {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 1200;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  font-size: 1rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5), 0 0 18px rgba(245, 54, 156, 0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5), var(--glow-red); }
.back-to-top:focus-visible { outline: none; box-shadow: var(--ring-primary); }

/* ---------- Neon scroll progress bar ---------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  z-index: 2000;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  box-shadow: 0 0 10px rgba(255, 214, 0, 0.5);
  pointer-events: none;
}

/* ---------- Rising embers in the hero ---------- */
.nm-embers {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
}
.nm-embers span {
  position: absolute;
  bottom: -10px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: radial-gradient(circle, #ffd54f 0%, #ff8f00 60%, transparent 100%);
  opacity: 0;
  animation: emberRise 9s linear infinite;
}
.nm-embers span:nth-child(1)  { left: 8%;  animation-delay: 0s;    scale: 0.7; }
.nm-embers span:nth-child(2)  { left: 18%; animation-delay: 2.2s;  scale: 1.1; }
.nm-embers span:nth-child(3)  { left: 28%; animation-delay: 4.8s;  scale: 0.6; }
.nm-embers span:nth-child(4)  { left: 38%; animation-delay: 1.4s;  scale: 0.9; }
.nm-embers span:nth-child(5)  { left: 50%; animation-delay: 6.1s;  scale: 0.75; }
.nm-embers span:nth-child(6)  { left: 60%; animation-delay: 3.3s;  scale: 1.2; }
.nm-embers span:nth-child(7)  { left: 70%; animation-delay: 7.4s;  scale: 0.65; }
.nm-embers span:nth-child(8)  { left: 79%; animation-delay: 0.9s;  scale: 1.0; }
.nm-embers span:nth-child(9)  { left: 88%; animation-delay: 5.2s;  scale: 0.8; }
.nm-embers span:nth-child(10) { left: 95%; animation-delay: 8.0s;  scale: 0.6; }
@keyframes emberRise {
  0%   { transform: translateY(0) translateX(0);      opacity: 0; }
  8%   { opacity: 0.9; }
  50%  { transform: translateY(-46vh) translateX(14px); opacity: 0.55; }
  100% { transform: translateY(-92vh) translateX(-10px); opacity: 0; }
}

/* ---------- Hero entrance — staggered rise ---------- */
/* scoped so content is never hidden when animations are off */
@media (prefers-reduced-motion: no-preference) {
  .nm-hero-inner > * { animation: heroIn 0.7s var(--ease) both; }
  .nm-hero-inner > :nth-child(1) { animation-delay: 0.05s; }
  .nm-hero-inner > :nth-child(2) { animation-delay: 0.18s; }
  .nm-hero-inner > :nth-child(3) { animation-delay: 0.30s; }
  .nm-hero-inner > :nth-child(4) { animation-delay: 0.42s; }
  .nm-hero-inner > :nth-child(5) { animation-delay: 0.54s; }
}
@keyframes heroIn {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---------- Image blur-up: shimmer until loaded ---------- */
.img-loading {
  opacity: 0;
}
.img-loaded {
  opacity: 1;
  transition: opacity 0.5s var(--ease);
}
.nm-stall-img, .menu-card .image-container, .nm-slide, .nm-feature-img, .signature-image {
  position: relative;
}
.nm-stall-img::before, .menu-card .image-container::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, var(--surface-2) 30%, var(--surface-3) 50%, var(--surface-2) 70%);
  background-size: 200% 100%;
}
/* shimmer only while the photo is still loading */
.nm-stall-img:has(> .img-loading)::before,
.menu-card .image-container:has(> .img-loading)::before {
  animation: shimmer 1.4s linear infinite;
}
.nm-stall-img img, .menu-card .image-container img { position: relative; z-index: 1; }
@keyframes shimmer {
  from { background-position: 200% 0; }
  to   { background-position: -200% 0; }
}

/* ---------- Staggered grid reveals ---------- */
.nm-stall-grid  .reveal:nth-child(2), .nm-why-grid .reveal:nth-child(2), .contact-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.nm-stall-grid  .reveal:nth-child(3), .nm-why-grid .reveal:nth-child(3), .contact-grid .reveal:nth-child(3) { transition-delay: 0.2s; }
.nm-stall-grid  .reveal:nth-child(4), .nm-why-grid .reveal:nth-child(4), .contact-grid .reveal:nth-child(4) { transition-delay: 0.3s; }
.nm-stats-grid  .reveal:nth-child(2) { transition-delay: 0.08s; }
.nm-stats-grid  .reveal:nth-child(3) { transition-delay: 0.16s; }
.nm-stats-grid  .reveal:nth-child(4) { transition-delay: 0.24s; }

/* ---------- Ticker pauses on hover ---------- */
.nm-ticker:hover .nm-ticker-track { animation-play-state: paused; }

/* ===== Design pass: night-market unification details ===== */

/* Transparent logo: subtle depth on the light navbar */
.nav-brand img {
  filter: drop-shadow(0 1px 2px rgba(22, 40, 79, 0.18));
}

/* Blue stall-awning variant */
.nm-awning.gold {
  background: repeating-linear-gradient(90deg,
    var(--secondary-dark) 0, var(--secondary-dark) 18px,
    #fff8e1 18px, #fff8e1 36px);
}
.nm-awning.gold::after {
  background: radial-gradient(circle at 9px 0, var(--secondary-dark) 0 9px, transparent 10px) repeat-x;
  background-size: 36px 9px;
}
.nm-awning.gold::before {
  background: radial-gradient(circle at 9px 0, #fff8e1 0 9px, transparent 10px) repeat-x;
  background-size: 36px 9px;
}

/* Menu cards wear stall awnings; scallops sit above the photo */
.menu-card .nm-awning { z-index: 2; }

/* Soft tinted shadow on contact platform icons */
.contact-card-icon {
  box-shadow: 0 6px 16px rgba(245, 54, 156, 0.14);
}
.contact-card-icon.fb { box-shadow: 0 6px 16px rgba(24, 119, 242, 0.18); }
.contact-card-icon.ig { box-shadow: 0 6px 16px rgba(214, 36, 159, 0.18); }

/* Region-coloured dots in the outlet list (matches map pins) */
.outlet-dot {
  flex-shrink: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--primary);
}
.outlet-dot.region-Klang-Valley { background: var(--primary);         color: var(--primary); }
.outlet-dot.region-Johor        { background: var(--region-johor);    color: var(--region-johor); }
.outlet-dot.region-Northern     { background: var(--region-northern); color: var(--region-northern); }
.outlet-dot.region-Central      { background: var(--region-central);  color: var(--region-central); }

/* =================================================================
   BRIGHT REBRAND — final fixes & wave/fan motifs
   ================================================================= */

/* Headings that now sit on light surfaces -> navy ink */
.menu-category-header h2,
.menu-card h3,
.popup-title,
.contact-card h3,
.nm-feature-text h2,
.section-title { color: var(--text); }

.menu-tab:hover { color: var(--primary); }
.menu-category-header h2 { text-shadow: none; }

/* Menu category divider lines -> brand pink, softer on white */
.menu-category-header::before,
.menu-category-header::after { background: linear-gradient(90deg, transparent, rgba(245, 54, 156, 0.4), transparent); }

/* CTA buttons pop on the pink->blue gradient band */
.nm-cta .btn-primary { background: #fff; color: var(--primary); box-shadow: var(--shadow-md); }
.nm-cta .btn-primary:hover { background: #fff; box-shadow: var(--shadow-lg); }
.nm-cta .btn-outline { background: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.8); }
.nm-cta .btn-outline:hover { background: #fff; color: var(--primary); border-color: #fff; }

/* Logo glow tuned for the light navbar */
.nav-brand img { filter: drop-shadow(0 1px 2px rgba(22, 40, 79, 0.18)); }

/* ---------- Seigaiha wave / fan pattern ---------- */
/* overlapping concentric arcs = the Japanese wave (seigaiha) */
.wave-pattern {
  position: relative;
  isolation: isolate;
}
.wave-pattern::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  --sg: rgba(22, 166, 230, 0.14);
  background-image:
    radial-gradient(circle at 50% 100%,
      transparent 24%, var(--sg) 25%, var(--sg) 27%, transparent 28%,
      transparent 49%, var(--sg) 50%, var(--sg) 52%, transparent 53%,
      transparent 74%, var(--sg) 75%, var(--sg) 77%, transparent 78%),
    radial-gradient(circle at 50% 100%,
      transparent 24%, var(--sg) 25%, var(--sg) 27%, transparent 28%,
      transparent 49%, var(--sg) 50%, var(--sg) 52%, transparent 53%,
      transparent 74%, var(--sg) 75%, var(--sg) 77%, transparent 78%);
  background-size: 60px 30px;
  background-position: 0 0, 30px 15px;
}

/* =================================================================
   SOLID COLOUR BLOCKS — bold banner-style sections
   ================================================================= */
.sec-pink { background: var(--primary); }
.sec-blue { background: var(--accent); }

/* white text on the solid blocks (cards keep their own dark text) */
.sec-pink .nm-head h2,  .sec-blue .nm-head h2,
.sec-pink .nm-feature-text h2, .sec-blue .nm-feature-text h2 { color: #fff; }
.sec-pink .nm-head p,   .sec-blue .nm-head p,
.sec-pink .nm-feature-text p,  .sec-blue .nm-feature-text p { color: rgba(255, 255, 255, 0.92); }

/* eyebrow / tag pills become translucent white */
.sec-pink .nm-eyebrow, .sec-blue .nm-eyebrow {
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.55);
}

/* heading accent word -> gold (pink-on-pink / blue-on-blue would vanish) */
.sec-pink .nm-head h2 span, .sec-blue .nm-head h2 span,
.sec-pink .nm-feature-text h2 .accent, .sec-blue .nm-feature-text h2 .accent { color: var(--secondary) !important; }

/* image frames sit cleaner on the solid colour */
.sec-pink .nm-carousel-viewport, .sec-blue .nm-carousel-viewport,
.sec-pink .nm-feature-img, .sec-blue .nm-feature-img { border-color: #fff; box-shadow: var(--shadow-xl); }

/* buttons must pop on the solid blocks (a pink button on pink vanishes) */
.sec-pink .btn-primary, .sec-blue .btn-primary { background: #fff; color: var(--primary); box-shadow: var(--shadow-md); }
.sec-pink .btn-primary:hover, .sec-blue .btn-primary:hover { background: #fff; box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.sec-pink .btn-outline, .sec-blue .btn-outline { background: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.85); }
.sec-pink .btn-outline:hover, .sec-blue .btn-outline:hover { background: #fff; color: var(--primary); border-color: #fff; }

/* =================================================================
   EXTRA ANIMATIONS — snappy & energetic
   ================================================================= */

/* Punchy card hover: lift + slight scale */
.nm-stat, .nm-stall, .nm-why-card, .menu-card, .contact-card {
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease), border-color 0.28s var(--ease);
}
.nm-stat:hover, .nm-why-card:hover, .contact-card:hover,
.nm-stall:hover, .menu-card:hover {
  transform: translateY(-8px) scale(1.025);
}

/* Shine sweep across buttons on hover */
.btn { position: relative; overflow: hidden; }
.btn > * { position: relative; z-index: 1; }
.btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -130%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s var(--ease);
  pointer-events: none;
}
.btn:hover::after { left: 150%; }

/* Mascot wiggles when you hover it */
.nm-hero-mascot, .nm-cta-mascot { pointer-events: auto; }
.nm-hero-mascot:hover { animation: mascotWiggle 0.6s ease-in-out; }
.nm-cta-mascot:hover { animation: mascotWiggle 0.6s ease-in-out; }
@keyframes mascotWiggle {
  0%, 100% { transform: rotate(-3deg); }
  25%      { transform: rotate(4deg) translateY(-8px); }
  50%      { transform: rotate(-6deg); }
  75%      { transform: rotate(3deg) translateY(-4px); }
}

/* Carousel slides gently zoom */
.nm-slide img { transition: transform 6s ease-out; }
.nm-carousel:hover .nm-slide img { transform: scale(1.06); }

/* Region map pins give a little bounce in (handled by existing pin pulse) */

@media (prefers-reduced-motion: no-preference) {
  /* Gentle "OPEN" sign glow pulse */
  .nm-open-sign { animation: openGlow 2.6s ease-in-out infinite; }
  @keyframes openGlow {
    0%, 100% { opacity: 1; filter: drop-shadow(0 2px 2px rgba(22, 40, 79, 0.18)); }
    50%      { opacity: 0.88; filter: drop-shadow(0 0 14px rgba(255, 196, 0, 0.75)); }
  }
  /* Stat numbers pop when revealed */
  .nm-stat.visible .nm-stat-value { animation: popIn 0.5s var(--ease) both; }
  @keyframes popIn {
    0%   { transform: scale(0.4); opacity: 0; }
    60%  { transform: scale(1.15); }
    100% { transform: scale(1); opacity: 1; }
  }
  /* Eyebrow pills shimmer once on reveal */
  .nm-eyebrow, .section-eyebrow { transition: transform 0.25s var(--ease); }
}

@media (prefers-reduced-motion: reduce) {
  .nm-slide img, .btn::after { transition: none; }
  .nm-open-sign { animation: none; }
}

/* ---------- Mascot on sub-page heroes ---------- */
.locations-hero, .contact-hero { position: relative; overflow: hidden; }
.hero-mascot {
  position: absolute;
  right: clamp(0.5rem, 3vw, 3rem);
  bottom: 0;
  width: clamp(110px, 12vw, 168px);
  height: auto;
  z-index: 1;
  transform: rotate(-4deg);
  filter: drop-shadow(0 10px 16px rgba(22, 40, 79, 0.3));
  pointer-events: auto;
}
.hero-mascot:hover { animation: mascotWiggle 0.6s ease-in-out; }
@media (max-width: 760px) { .hero-mascot { display: none; } }

/* ---------- Moving marquee strip (bold scrolling line) ---------- */
.marquee {
  overflow: hidden;
  background: var(--ink);
  padding: 0.85rem 0;
  border-top: 3px solid var(--secondary);
  border-bottom: 3px solid var(--secondary);
}
.marquee.pink { background: var(--primary); border-color: #fff; }
.marquee.blue { background: var(--accent); border-color: #fff; }
.marquee-track {
  display: inline-flex;
  white-space: nowrap;
  will-change: transform;
  animation: marqueeX 24s linear infinite;
}
.marquee.fast .marquee-track { animation-duration: 16s; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  font-family: 'Cooper Black', 'Cooper Std', 'Playfair Display', serif;
  font-size: clamp(1.1rem, 2.4vw, 1.7rem);
  color: #fff;
  letter-spacing: 0.02em;
  padding: 0 1.25rem;
  text-transform: uppercase;
}
.marquee-track span i { color: var(--secondary); margin: 0 0.5rem; font-size: 0.7em; vertical-align: middle; }
.marquee.pink .marquee-track span i, .marquee.blue .marquee-track span i { color: #fff; }
@keyframes marqueeX {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- Section heading underline that draws in on scroll ---------- */
.nm-head h2, .section-title { position: relative; }
.nm-head h2::after, .section-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.45rem;
  width: 84px;
  height: 5px;
  border-radius: 99px;
  background: var(--secondary);
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform 0.7s var(--ease) 0.15s;
}
.nm-head.visible h2::after, .reveal.visible .section-title::after { transform: translateX(-50%) scaleX(1); }
.sec-pink .nm-head h2::after, .sec-blue .nm-head h2::after { background: #fff; }

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
  .nm-head h2::after, .section-title::after { transition: none; transform: translateX(-50%) scaleX(1); }
}

/* =================================================================
   LAYOUT: curved wave transitions between sections + stat icons
   ================================================================= */
.wave-bottom { position: relative; }
.wave-bottom::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: clamp(38px, 5vw, 70px);
  z-index: 2;
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: 100% 100%;
  pointer-events: none;
}
.wave-bottom.w-pink::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100' preserveAspectRatio='none'%3E%3Cpath fill='%23F5369C' d='M0,0 H1440 V34 C1130,84 770,6 390,48 C180,74 72,44 0,52 Z'/%3E%3C/svg%3E");
}
.wave-bottom.w-blue::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100' preserveAspectRatio='none'%3E%3Cpath fill='%2316A6E6' d='M0,0 H1440 V40 C1150,8 760,86 360,44 C170,24 70,52 0,46 Z'/%3E%3C/svg%3E");
}

/* icon above each stat number */
.nm-stat-icon {
  display: block;
  font-size: 1.45rem;
  color: var(--primary);
  margin-bottom: 0.55rem;
  line-height: 1;
}

/* =================================================================
   LANDING HERO — clean pink + sky-blue, mascot-led (no water, no noise)
   ================================================================= */
.sb-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: clamp(560px, 86vh, 820px);
  padding: 5.5rem clamp(1.5rem, 6vw, 5rem) 5rem;
  background: var(--primary);
}

.sb-hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
}

/* ---- text column ---- */
.sb-hero-text { color: #fff; }
.sb-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--secondary);
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  margin-bottom: 1.6rem;
}
.sb-wordmark {
  font-family: 'Cooper Black', 'Cooper Std', 'CooperBlack', 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(3.6rem, 9vw, 7rem);
  line-height: 0.85;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 0;
}
.sb-wordmark span { color: #fff; }
.sb-jp {
  display: block;
  font-weight: 600;
  font-size: clamp(0.85rem, 1.4vw, 1.05rem);
  letter-spacing: 0.34em;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 1.1rem;
}
.sb-fresh {
  display: inline-block;
  font-family: 'Cooper Black', 'Cooper Std', 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  color: var(--secondary);
  margin-top: 0.5rem;
}
.sb-hero-sub {
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.94);
  max-width: 500px;
  margin: 1.3rem 0 2rem;
}
.sb-hero-sub strong { color: var(--secondary); }
.sb-hero-ctas { display: flex; gap: 0.9rem; flex-wrap: wrap; }
.sb-hero .btn-primary { background: #fff; color: var(--primary); box-shadow: var(--shadow-md); }
.sb-hero .btn-primary:hover { background: #fff; transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.sb-hero .btn-outline { background: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.7); }
.sb-hero .btn-outline:hover { background: rgba(255, 255, 255, 0.14); color: #fff; border-color: #fff; }
.sb-hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.6rem;
  list-style: none;
  margin: 2rem 0 0;
  padding: 1.4rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}
.sb-hero-trust li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
}
.sb-hero-trust i { color: var(--secondary); }

/* ---- mascot column: single clean sky-blue disc ---- */
.sb-hero-figure {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 340px;
}
.sb-hero-disc {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: min(96%, 400px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 24px 60px rgba(14, 134, 192, 0.4), inset 0 0 0 10px rgba(255, 255, 255, 0.16);
}
.sb-hero-mascot {
  position: relative;
  z-index: 1;
  width: clamp(190px, 24vw, 280px);
  height: auto;
  filter: drop-shadow(0 18px 26px rgba(22, 40, 79, 0.32));
  animation: floatMascot 4.5s ease-in-out infinite;
}

.sb-scroll-hint {
  position: absolute;
  bottom: 1.4rem; left: 50%;
  margin-left: -20px;
  z-index: 2;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  animation: floatSubtle 2s ease-in-out infinite;
}
.sb-scroll-hint:hover { background: rgba(255, 255, 255, 0.16); }

/* ---- mobile ---- */
@media (max-width: 880px) {
  .sb-hero { padding: 4.5rem 1.5rem 3.5rem; }
  .sb-hero-inner { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
  .sb-kicker, .sb-hero-sub { margin-left: auto; margin-right: auto; }
  .sb-hero-ctas, .sb-hero-trust { justify-content: center; }
  .sb-hero-trust { border-top: 0; padding-top: 0.5rem; }
  .sb-hero-figure { order: -1; min-height: 250px; }
  .sb-hero-disc { width: min(78%, 300px); }
}
@media (max-width: 480px) {
  .sb-hero-ctas { flex-direction: column; align-items: stretch; }
  .sb-hero-ctas .btn { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  .sb-hero-mascot, .sb-scroll-hint { animation: none; }
}

/* ---- section band backgrounds (clean blocks, replace wave dividers) ---- */
.sb-band { position: relative; }
.sb-band-sky   { background: var(--surface-3); }
.sb-band-white { background: #ffffff; }
.sb-band-pink  { background: var(--surface-2); }

/* =================================================================
   SQUIDBOY THEME — sky blue + pink, with cream & gold accents
   (appended last so it wins the cascade)
   ================================================================= */

/* page canvas: soft cream */
body.nm { background-color: var(--bg); background-image: none; }

/* keep buttons brand pink/blue (no global gold leaf) */
.btn-primary { background: var(--primary); color: #fff; box-shadow: var(--glow-red); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-outline { background: #fff; color: var(--accent-dark); border: 2px solid var(--accent); }
.btn-outline:hover { background: var(--accent); color: #fff; border-color: var(--accent); }

/* ---- top ticker: soft cream strip, italic pink text ---- */
.nm-ticker { background: var(--surface-2); color: var(--primary-dark); border-bottom: 1px solid rgba(245, 54, 156, 0.16); font-style: italic; font-family: 'Playfair Display', serif; letter-spacing: 0.12em; }
.nm-ticker-track span { font-weight: 500; }
.nm-ticker-track i { color: var(--secondary-dark); }

/* ---- nav: cream glass ---- */
.navbar { background-color: rgba(255, 247, 236, 0.85); border-bottom: 1px solid var(--line); }

/* =================================================================
   HERO — pink stage · sky-blue mascot disc · gold accents
   ================================================================= */
.sb-hero {
  background: radial-gradient(120% 130% at 75% 12%, #FF5BB0 0%, var(--primary) 52%, var(--primary-dark) 100%);
}
.sb-hero::before {
  content: "";
  position: absolute; inset: 0; z-index: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1.6px);
  background-size: 26px 26px;
  pointer-events: none;
}
.sb-hero-inner { position: relative; z-index: 1; }

/* kicker: gold pill */
.sb-kicker { background: var(--secondary); color: #5A3A0E; border: none; }
.sb-kicker i { color: #fff; }

/* wordmark: white "Squid" + gold-foil "Boy" (a bit of gold) */
.sb-wordmark { color: #fff; text-shadow: 0 4px 0 rgba(22, 40, 79, 0.18), 0 12px 26px rgba(22, 40, 79, 0.30); }
.sb-wordmark span {
  background: var(--gold-foil);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.sb-fresh { color: var(--secondary); text-shadow: 0 2px 10px rgba(22, 40, 79, 0.25); }
.sb-jp { color: rgba(255, 255, 255, 0.9); }

/* mascot disc: sky blue + dashed gold ring */
.sb-hero-disc {
  background: radial-gradient(circle at 38% 30%, #46C2F5 0%, var(--accent) 52%, var(--accent-dark) 100%);
  box-shadow: 0 26px 60px rgba(14, 134, 192, 0.45), inset 0 0 0 8px rgba(255, 255, 255, 0.18);
}
.sb-hero-disc::after {
  content: ""; position: absolute; inset: -14px; border-radius: 50%;
  border: 2px dashed rgba(255, 220, 130, 0.75);
}

/* ---- marquee strips: brand pink + gold border (color-matched) ---- */
.marquee { background: var(--primary); border-top: 2px solid var(--secondary); border-bottom: 2px solid var(--secondary); }
.marquee-track span { color: #fff; }
.marquee-track span i { color: var(--secondary); }

/* =================================================================
   SECTIONS — sky & pink fields on cream, gold hairline accents
   ================================================================= */
.sb-band-sky   { background: var(--surface-3); }
.sb-band-white { background: var(--surface); }
.sb-band-pink  { background: var(--surface-2); }

/* Signature squid: soft sky-blue field */
.sec-blue { background: var(--surface-3); }
.sec-blue .nm-feature-text h2 { color: var(--text); }
.sec-blue .nm-feature-text p { color: var(--text-light); }
.sec-blue .nm-eyebrow { color: var(--accent-dark); background: var(--accent-soft); border: 1px solid rgba(22, 166, 230, 0.28); }
.sec-blue .nm-head h2::after { background: var(--accent); }

/* Why-us: bold pink band, white cards */
.sec-pink { background: linear-gradient(160deg, #FF5BB0 0%, var(--primary) 55%, var(--primary-dark) 100%); }
.sec-pink .nm-head h2 { color: #fff; }
.sec-pink .nm-head p { color: rgba(255, 255, 255, 0.9); }
.sec-pink .nm-head h2 span { color: var(--secondary) !important; }
.sec-pink .nm-eyebrow { color: #fff; background: rgba(255, 255, 255, 0.18); border: 1px solid rgba(255, 255, 255, 0.45); }
.sec-pink .nm-head h2::after { background: var(--secondary); }

/* ---- stat cards: white + gold hairline, pink numerals, sky icons ---- */
.nm-stat { background: var(--surface); border: 1px solid rgba(232, 178, 60, 0.35); }
.nm-stat:hover { box-shadow: var(--glow-yellow); border-color: var(--secondary); }
.nm-stat-icon { color: var(--accent); }
.nm-stat-value { color: var(--primary); }

/* ---- stall cards: white + pink/gold awning ---- */
.nm-stall { background: var(--surface); border: 1px solid var(--line); }
.nm-stall:hover { border-color: rgba(232, 178, 60, 0.5); box-shadow: var(--shadow-lg); }
.nm-awning { background: repeating-linear-gradient(90deg, var(--primary) 0, var(--primary) 18px, var(--secondary) 18px, var(--secondary) 36px); }
.nm-awning::after { background: radial-gradient(circle at 9px 0, var(--primary) 0 9px, transparent 10px) repeat-x; background-size: 36px 9px; }
.nm-awning::before { background: radial-gradient(circle at 9px 0, var(--secondary) 0 9px, transparent 10px) repeat-x; background-size: 36px 9px; }
.nm-stall h3 { color: var(--text); }

/* ---- signature image: gold frame + gold tag ---- */
.nm-feature-img { border: 5px solid #fff; box-shadow: var(--shadow-xl), 0 0 0 2px var(--secondary); }
.nm-feature-tag { background: var(--gold-foil); color: #5A3A0E; box-shadow: 0 6px 16px rgba(176, 136, 58, 0.4); }

/* ---- why cards: white on pink, sky-blue icons ---- */
.nm-why-card { background: #fff; border: 1px solid rgba(255, 255, 255, 0.6); }
.nm-why-card:hover { box-shadow: var(--shadow-lg); }
.nm-why-card::before { background: radial-gradient(circle, var(--secondary-soft) 0%, transparent 70%); }
.nm-why-icon { color: var(--accent); background: var(--accent-soft); border: 1px solid rgba(22, 166, 230, 0.3); }
.nm-why-card h3 { color: var(--text); }

/* ---- carousel: sky-blue arrows, gold tag ---- */
.nm-carousel-viewport { box-shadow: var(--shadow-xl), 0 0 0 1px rgba(22, 166, 230, 0.25); }
.nm-arrow { color: var(--accent-dark); border-color: rgba(22, 166, 230, 0.4); }
.nm-arrow:hover { background: var(--accent); color: #fff; border-color: var(--accent); box-shadow: var(--glow-yellow); }
.nm-dot.active { background: var(--primary); }
.nm-slide-caption .tag { background: var(--gold-foil); color: #5A3A0E; }

/* =================================================================
   CTA — sky-to-pink finale with gold accents
   ================================================================= */
.nm-cta { background: linear-gradient(160deg, #46C2F5 0%, var(--accent) 28%, var(--primary) 100%); }
.nm-open-sign { color: var(--secondary); text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25); }
.nm-cta h2 { color: #fff; }
.nm-cta p { color: rgba(255, 255, 255, 0.92); }
.nm-cta .btn-primary { background: var(--secondary); color: #5A3A0E; box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2); }
.nm-cta .btn-primary:hover { background: #fff; color: var(--primary); }
.nm-cta .btn-outline { background: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.7); }
.nm-cta .btn-outline:hover { background: #fff; color: var(--primary); border-color: #fff; }

/* ---- footer: navy + gold headings ---- */
.footer-col h4 { color: var(--secondary); }
.footer-col a:hover, .footer-social a:hover { color: var(--secondary); }
.footer-social a:hover { background: var(--primary); color: #fff; }


/* =================================================================
   EDITORIAL LANDING REDESIGN — sb2-* magazine layout
   Poster hero · stat ribbon · numbered feature · mosaic · why list · CTA
   ================================================================= */

/* ---------- HERO poster ---------- */
.sb2-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(3.5rem, 7vw, 6rem) clamp(1.5rem, 4vw, 3.5rem);
  background: radial-gradient(120% 130% at 50% 0%, #FF5BB0 0%, var(--primary) 55%, var(--primary-dark) 100%);
  color: #fff;
}
.sb2-hero::before {
  content: "";
  position: absolute; inset: 0; z-index: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.14) 1px, transparent 1.6px);
  background-size: 28px 28px;
  pointer-events: none;
}
.sb2-hero-frame {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
  text-align: center;
}
.sb2-hero-corner {
  position: absolute;
  width: 18px; height: 18px;
  border: 2px solid var(--secondary);
  background: var(--primary);
  z-index: 2;
}
.sb2-hero-corner.tl { top: -10px; left: -10px; }
.sb2-hero-corner.tr { top: -10px; right: -10px; }
.sb2-hero-corner.bl { bottom: -10px; left: -10px; }
.sb2-hero-corner.br { bottom: -10px; right: -10px; }

.sb2-hero-eyebrow {
  display: inline-block;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(0.85rem, 1.3vw, 1rem);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: clamp(1.5rem, 3vw, 2.2rem);
}

.sb2-hero-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.5rem, 3vw, 2.5rem);
  min-height: clamp(260px, 32vw, 400px);
}
.sb2-hero-words {
  position: relative;
  text-align: center;
}
.sb2-word {
  font-family: 'Playfair Display', 'Cooper Black', serif;
  font-weight: 900;
  font-size: clamp(4rem, 11vw, 9rem);
  line-height: 0.84;
  letter-spacing: -0.02em;
  margin: 0;
  display: flex;
  flex-direction: column;
  text-shadow: 0 6px 0 rgba(22, 40, 79, 0.18), 0 16px 30px rgba(22, 40, 79, 0.3);
}
.sb2-word .line-1 {
  font-family: 'Cooper Black', 'Cooper Std', 'CooperBlack', serif;
  font-weight: 900;
  color: #7FD7FF;
}
.sb2-word .line-2 {
  font-style: italic;
  color: #7FD7FF;
  -webkit-text-fill-color: #7FD7FF;
  text-shadow: 0 6px 0 rgba(22, 40, 79, 0.22), 0 16px 30px rgba(22, 40, 79, 0.35);
}
.sb2-hero-jp {
  display: block;
  margin-top: 0.9rem;
  font-weight: 500;
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  letter-spacing: 0.42em;
  color: rgba(255, 255, 255, 0.9);
}

.sb2-hero-mascot-wrap {
  position: relative;
  flex: 0 0 auto;
}
.sb2-hero-mascot {
  width: clamp(160px, 22vw, 280px);
  height: auto;
  filter: drop-shadow(0 22px 30px rgba(22, 40, 79, 0.4));
  animation: floatMascot 4.5s ease-in-out infinite;
}
.sb2-hero-stamp {
  position: absolute;
  top: 6%; right: -12%;
  font-family: 'Cooper Black', 'Playfair Display', serif;
  font-size: clamp(0.95rem, 1.5vw, 1.25rem);
  color: var(--secondary);
  background: rgba(22, 40, 79, 0.85);
  padding: 0.45rem 1rem;
  transform: rotate(-12deg);
  border: 2px dashed var(--secondary);
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.sb2-hero-tagline {
  max-width: 640px;
  margin: clamp(1.8rem, 3vw, 2.5rem) auto 1.6rem;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.96);
}
.sb2-hero-ctas {
  display: flex;
  justify-content: center;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-bottom: clamp(1.8rem, 3vw, 2.4rem);
}
.sb2-hero .btn-primary { background: #fff; color: var(--primary); border: 2px solid #fff; box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18); }
.sb2-hero .btn-primary:hover { background: var(--secondary); color: #5A3A0E; border-color: var(--secondary); transform: translateY(-2px); }
.sb2-hero .btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255, 255, 255, 0.7); }
.sb2-hero .btn-outline:hover { background: rgba(255, 255, 255, 0.14); border-color: #fff; color: #fff; }

.sb2-hero-ribbon {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 1.1rem;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(0.8rem, 1.2vw, 0.95rem);
  letter-spacing: 0.08em;
  color: var(--secondary);
  border-top: 1px solid rgba(255, 230, 180, 0.32);
  padding-top: 1.3rem;
}
.sb2-hero-ribbon span:nth-child(even) { opacity: 0.55; }

/* ---------- STAT RIBBON ---------- */
.sb2-stat-ribbon {
  background: var(--bg);
  padding: clamp(2.6rem, 5vw, 4rem) clamp(1.5rem, 4vw, 3rem);
  border-bottom: 1px solid var(--line);
}
.sb2-stat-row {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  text-align: center;
}
.sb2-stat {
  padding: 0.8rem 1.2rem;
  position: relative;
}
.sb2-stat + .sb2-stat::before {
  content: "";
  position: absolute;
  left: 0; top: 18%; bottom: 18%;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--secondary), transparent);
  opacity: 0.75;
}
.sb2-stat .num {
  font-family: 'Playfair Display', 'Cooper Black', serif;
  font-weight: 900;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--primary);
}
.sb2-stat .lbl {
  margin-top: 0.55rem;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-light);
}

/* ---------- HEAD shared ---------- */
.sb2-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
}
.sb2-head-eyebrow {
  display: inline-block;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(0.85rem, 1.3vw, 1rem);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--secondary-dark);
  margin-bottom: 1rem;
}
.sb2-head h2 {
  font-family: 'Cooper Black', 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--text);
  margin: 0 0 1rem;
}
.sb2-head h2 em {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 900;
  color: var(--primary);
}
.sb2-head p {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.6;
  color: var(--text-light);
}
.sb2-head.light .sb2-head-eyebrow { color: var(--secondary); }
.sb2-head.light h2 { color: #fff; }
.sb2-head.light h2 em { color: var(--secondary); }
.sb2-head.light p { color: rgba(255, 255, 255, 0.92); }

/* ---------- SIGNATURE editorial split ---------- */
.sb2-feature {
  background: var(--surface-3);
  padding: clamp(4rem, 8vw, 6.5rem) clamp(1.5rem, 4vw, 3rem);
}
.sb2-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.sb2-feature-vol {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 900;
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  line-height: 1;
  color: var(--secondary-dark);
  display: block;
}
.sb2-feature-eyebrow {
  display: inline-block;
  margin-top: 0.45rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent-dark);
}
.sb2-feature-text h2 {
  font-family: 'Cooper Black', 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 0.98;
  margin: 1rem 0 1.3rem;
  color: var(--text);
}
.sb2-feature-text h2 em {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 900;
  color: var(--primary);
}
.sb2-feature-text p {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-light);
  margin-bottom: 0.9rem;
  max-width: 520px;
}
.sb2-feature-text .btn { margin-top: 0.8rem; }

.sb2-feature-img-wrap {
  position: relative;
  max-width: 480px;
  margin: 0 auto;
}
.sb2-feature-img-wrap::before { display: none; }
.sb2-feature-img {
  position: relative;
  z-index: 1;
  border: 8px solid #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.sb2-feature-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}
.sb2-feature-tag {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 2;
  background: var(--gold-foil);
  color: #5A3A0E;
  padding: 0.5rem 1rem;
  font-weight: 800;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(176, 136, 58, 0.4);
}
.sb2-feature-tag i { color: #5A3A0E; margin-right: 0.3rem; }

/* ---------- MENU MOSAIC ---------- */
.sb2-menu {
  background: var(--bg);
  padding: clamp(4rem, 8vw, 6.5rem) clamp(1.5rem, 4vw, 3rem);
}
.sb2-menu-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  gap: 1.3rem;
  max-width: 1180px;
  margin: 0 auto;
}
.sb2-dish {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(232, 178, 60, 0.35);
  box-shadow: var(--shadow-md);
  text-decoration: none;
  color: var(--text);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.sb2-dish:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--secondary);
}
.sb2-dish.big {
  grid-column: span 3;
  grid-row: span 1;
  flex-direction: row;
  min-height: 360px;
}
.sb2-dish.big .img {
  flex: 1.3;
  aspect-ratio: auto;
  min-height: 360px;
  height: auto;
}
.sb2-dish.big .body {
  flex: 1;
  padding: clamp(1.6rem, 3vw, 2.5rem);
  justify-content: center;
}
.sb2-dish .img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  flex-shrink: 0;
}
.sb2-dish.big .img { aspect-ratio: 16 / 10; }
.sb2-dish .img img {
  display: block;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.sb2-dish:hover .img img { transform: scale(1.05); }
.sb2-dish .body {
  flex: 1;
  padding: 1.4rem 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  position: relative;
}
.sb2-dish .body::before { display: none; }
.sb2-dish .num { display: none; }
.sb2-dish h3 {
  font-family: 'Cooper Black', 'Playfair Display', serif;
  font-size: clamp(1.15rem, 1.6vw, 1.45rem);
  margin: 0;
  color: var(--text);
}
.sb2-dish.big h3 { font-size: clamp(1.6rem, 2.4vw, 2.1rem); }
.sb2-dish p { font-size: 0.95rem; color: var(--text-light); margin: 0; line-height: 1.5; }

/* ---------- WHY editorial numbered list ---------- */
.sb2-why {
  position: relative;
  background: linear-gradient(160deg, #FF5BB0 0%, var(--primary) 55%, var(--primary-dark) 100%);
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1.5rem, 4vw, 3rem) clamp(3.5rem, 6vw, 5rem);
  color: #fff;
  overflow: hidden;
}
.sb2-why::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1.6px);
  background-size: 28px 28px;
  pointer-events: none;
}
.sb2-why > .container { position: relative; z-index: 1; }
.sb2-why-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 960px;
}
.sb2-why-list li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(1.2rem, 3vw, 2.5rem);
  align-items: center;
  padding: clamp(1.5rem, 3vw, 2.2rem) 0;
  border-bottom: 1px solid rgba(255, 230, 180, 0.32);
}
.sb2-why-list li:last-child { border-bottom: none; }
.sb2-why-list .num {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 900;
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1;
  color: var(--secondary);
  min-width: 2ch;
  text-shadow: 0 2px 0 rgba(22, 40, 79, 0.18);
}
.sb2-why-list .text h3 {
  font-family: 'Cooper Black', 'Playfair Display', serif;
  font-size: clamp(1.3rem, 2.2vw, 1.85rem);
  line-height: 1.15;
  margin: 0 0 0.4rem;
  color: #fff;
}
.sb2-why-list .text p {
  font-size: clamp(0.95rem, 1.3vw, 1.05rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
  margin: 0;
  max-width: 560px;
}
.sb2-why-list .icon {
  width: 60px; height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 220, 130, 0.45);
  color: var(--secondary);
  font-size: 1.45rem;
  flex-shrink: 0;
}

/* ---------- OUTLETS — high-class editorial carousel ---------- */
.sb2-outlets {
  background: var(--bg);
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1.5rem, 4vw, 3rem) clamp(3.5rem, 6vw, 5rem);
}
.sb2-outlets .nm-head { margin-bottom: clamp(1.8rem, 3.5vw, 2.6rem); }
.sb2-outlets .nm-carousel { max-width: 1180px; padding: 0 clamp(1rem, 3vw, 2.5rem); }
.sb2-outlets .nm-carousel-viewport {
  border-radius: 3px;
  background: #FBF3E2;
  padding: 14px;
  box-shadow: 0 36px 80px rgba(22, 40, 79, 0.2), 0 0 0 1px var(--secondary), 0 0 0 16px rgba(217, 180, 90, 0.08);
}
.sb2-outlets .nm-carousel-viewport > .nm-carousel-track { border-radius: 2px; overflow: hidden; }
.sb2-outlets .nm-slide { aspect-ratio: 21 / 10; }
.sb2-outlets .nm-slide img { object-fit: cover; }
.sb2-outlets .nm-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 38%, rgba(0, 0, 0, 0.45) 78%, rgba(0, 0, 0, 0.72) 100%);
}
.sb2-outlets .nm-slide-caption {
  z-index: 2;
  text-align: center;
  padding: clamp(1.4rem, 3vw, 2.4rem);
}
.sb2-outlets .nm-slide-caption .tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--secondary);
  border: 1px solid var(--secondary);
  box-shadow: none;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  padding: 0.32rem 0.95rem;
  margin: 0 auto 0.85rem;
  border-radius: 2px;
}
.sb2-outlets .nm-slide-caption .tag i { font-size: 0.7rem; opacity: 0.85; }
.sb2-outlets .nm-slide-caption h3 {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  line-height: 1.1;
  letter-spacing: -0.005em;
  margin: 0 0 0.45rem;
  color: #fff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55);
}
.sb2-outlets .nm-slide-caption p {
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  font-style: italic;
  max-width: 480px;
  margin: 0 auto;
}
.sb2-outlets .nm-arrow {
  width: 46px; height: 46px;
  background: rgba(251, 243, 226, 0.95);
  color: var(--text);
  border: 1px solid var(--secondary);
  box-shadow: 0 8px 20px rgba(22, 40, 79, 0.18);
  font-size: 0.95rem;
  border-radius: 50%;
}
.sb2-outlets .nm-arrow:hover { background: var(--secondary); color: #5A3A0E; border-color: var(--secondary); box-shadow: 0 10px 24px rgba(176, 136, 58, 0.35); }
.sb2-outlets .nm-arrow.prev { left: 0; }
.sb2-outlets .nm-arrow.next { right: 0; }
.sb2-outlets .nm-dots { margin-top: 1.8rem; gap: 0.45rem; }
.sb2-outlets .nm-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(22, 40, 79, 0.22);
  transition: width 0.25s ease, background 0.25s ease, border-radius 0.25s ease;
}
.sb2-outlets .nm-dot.active { background: var(--secondary); width: 28px; border-radius: 999px; }

/* ---------- CTA grand finale ---------- */
.sb2-cta {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #46C2F5 0%, var(--accent) 28%, var(--primary) 78%, var(--primary-dark) 100%);
  padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 4vw, 3rem);
  color: #fff;
}
.sb2-cta::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1.6px);
  background-size: 28px 28px;
  pointer-events: none;
}
.sb2-cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.sb2-cta-mascot {
  width: 100%;
  max-width: 320px;
  height: auto;
  filter: drop-shadow(0 22px 30px rgba(0, 0, 0, 0.35));
  animation: floatMascot 4.5s ease-in-out infinite;
  justify-self: center;
}
.sb2-cta-open {
  display: inline-block;
  font-family: 'Cooper Black', 'Playfair Display', serif;
  font-size: clamp(0.9rem, 1.4vw, 1.1rem);
  letter-spacing: 0.36em;
  color: var(--secondary);
  background: rgba(22, 40, 79, 0.45);
  padding: 0.4rem 1.1rem;
  border: 1px dashed var(--secondary);
  border-radius: 4px;
  margin-bottom: 1.3rem;
}
.sb2-cta h2 {
  font-family: 'Cooper Black', 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1;
  margin: 0 0 1rem;
  color: #fff;
}
.sb2-cta p {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.6;
  margin: 0 0 2rem;
  color: rgba(255, 255, 255, 0.94);
  max-width: 540px;
}
.sb2-cta-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.sb2-cta .btn-primary { background: var(--secondary); color: #5A3A0E; border: 2px solid var(--secondary); }
.sb2-cta .btn-primary:hover { background: #fff; color: var(--primary); border-color: #fff; }
.sb2-cta .btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255, 255, 255, 0.7); }
.sb2-cta .btn-outline:hover { background: #fff; color: var(--primary); border-color: #fff; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 960px) {
  .sb2-hero-stage { flex-direction: column; gap: 1.5rem; }
  .sb2-hero-stamp { top: 0%; right: -8%; }
  .sb2-feature-grid { grid-template-columns: 1fr; }
  .sb2-feature-img-wrap { max-width: 380px; }
  .sb2-stat-row { grid-template-columns: repeat(2, 1fr); gap: 1.6rem 0; }
  .sb2-stat + .sb2-stat::before { display: none; }
  .sb2-stat:nth-child(3)::before, .sb2-stat:nth-child(4)::before { display: none; }
  .sb2-menu-mosaic { grid-template-columns: repeat(2, 1fr); }
  .sb2-dish.big { grid-column: span 2; flex-direction: column; min-height: 0; }
  .sb2-dish.big .img { min-height: 240px; aspect-ratio: 16 / 9; }
  .sb2-cta-inner { grid-template-columns: 1fr; text-align: center; }
  .sb2-cta-mascot { max-width: 220px; }
  .sb2-cta p { margin-left: auto; margin-right: auto; }
  .sb2-cta-buttons { justify-content: center; }
}
@media (max-width: 600px) {
  .sb2-menu-mosaic { grid-template-columns: 1fr; }
  .sb2-dish.big { grid-column: auto; }
  .sb2-why-list li { grid-template-columns: auto 1fr; }
  .sb2-why-list .icon { display: none; }
  .sb2-why-list .num { font-size: 2.4rem; }
}
@media (prefers-reduced-motion: reduce) {
  .sb2-hero-mascot, .sb2-cta-mascot { animation: none; }
}


/* =================================================================
   SB3 — Warm · Youthful · Calm · Elegant Squidboy Landing
   Cream stage · soft pink · serif headlines · generous whitespace
   ================================================================= */

/* === SHARED === */
.sb3-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 0.88rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1.2rem;
}
.sb3-eyebrow::before, .sb3-eyebrow::after {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--secondary);
  opacity: 0.65;
}
.sb3-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto clamp(2.5rem, 5vw, 3.5rem);
  padding: 0 1.5rem;
}
.sb3-head h2 {
  position: relative;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(2.2rem, 4.3vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.005em;
  margin: 0 0 1rem;
  padding-bottom: 1.4rem;
  color: var(--text);
}
.sb3-head h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 1px;
  background: var(--secondary);
  opacity: 0.7;
}
.sb3-head h2 em {
  font-style: italic;
  font-weight: 700;
  color: var(--primary);
}
.sb3-head p {
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  line-height: 1.7;
  color: var(--text-light);
  max-width: 540px;
  margin: 0 auto;
}

/* gold thread divider at the top of each section — with a small diamond ornament (vintage-menu style) */
.sb3-outlets, .sb3-stats, .sb3-feature, .sb3-menu, .sb3-why, .sb3-cta { position: relative; }
.sb3-outlets::before,
.sb3-stats::before,
.sb3-feature::before,
.sb3-menu::before,
.sb3-why::before,
.sb3-cta::before {
  content: "";
  position: absolute;
  top: 1.6rem;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(160px, 22vw, 240px);
  height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 240 12'%3E%3Cline x1='0' y1='6' x2='100' y2='6' stroke='%23E8B23C' stroke-width='1' opacity='0.7'/%3E%3Cpolygon points='120,1 130,6 120,11 110,6' fill='%23E8B23C' opacity='0.95'/%3E%3Cline x1='140' y1='6' x2='240' y2='6' stroke='%23E8B23C' stroke-width='1' opacity='0.7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 1;
}

.sb3-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1.55rem;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
  cursor: pointer;
}
.sb3-btn.primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 8px 22px rgba(245, 54, 156, 0.32);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.78rem;
}
.sb3-btn.primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(245, 54, 156, 0.4);
}
.sb3-btn.ghost {
  background: transparent;
  color: #2E1B26;
  border-color: #2E1B26;
  border-width: 1.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.78rem;
}
.sb3-btn.ghost:hover {
  background: #2E1B26;
  color: #FFF8EF;
  border-color: #2E1B26;
  transform: translateY(-2px);
}
.sb3-actions {
  text-align: center;
  margin-top: clamp(2.5rem, 4vw, 3.5rem);
}

/* === HERO — cinematic photo masthead === */
.sb3-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(5rem, 9vw, 8rem) clamp(2rem, 5vw, 4rem) clamp(5rem, 7vw, 7rem);
  text-align: center;
  color: #FFF8EF;
}

/* full-bleed background photo with slow ken-burns zoom (ROW on 5 style) */
.sb3-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.sb3-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.1) contrast(1.05) brightness(0.95);
  transform-origin: center center;
  animation: heroKenburns 22s ease-out forwards;
}
@keyframes heroKenburns {
  from { transform: scaleY(-1) scale(1.02); }
  to   { transform: scaleY(-1) scale(1.06); }
}

/* brand-tinted overlay — richer plum, deeper bottom for legible type */
.sb3-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(70% 70% at 50% 35%, rgba(173, 24, 95, 0.3) 0%, rgba(96, 8, 50, 0.55) 55%, rgba(30, 5, 20, 0.85) 100%),
    linear-gradient(180deg, rgba(20, 4, 14, 0.55) 0%, rgba(20, 4, 14, 0.2) 35%, rgba(20, 4, 14, 0.9) 100%);
  pointer-events: none;
}

/* subtle gold double-thread frame — refined, sits inside the photo */
.sb3-hero::after {
  content: "";
  position: absolute;
  inset: clamp(1.4rem, 2.5vw, 2.2rem);
  border: 1px solid rgba(232, 178, 60, 0.55);
  box-shadow: inset 0 0 0 5px transparent, inset 0 0 0 6px rgba(232, 178, 60, 0.3);
  pointer-events: none;
  z-index: 2;
}
/* refined double gold-thread frame around the landing screen */
.sb3-hero::before {
  content: "";
  position: absolute;
  inset: clamp(1rem, 2vw, 1.8rem);
  border: 1px solid var(--secondary);
  pointer-events: none;
  z-index: 0;
}
.sb3-hero::after {
  content: "";
  position: absolute;
  inset: calc(clamp(1rem, 2vw, 1.8rem) + 5px);
  border: 1px solid rgba(232, 178, 60, 0.45);
  pointer-events: none;
  z-index: 0;
}
.sb3-hero-inner {
  position: relative;
  z-index: 3;
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 4rem) clamp(2rem, 5vw, 4rem) clamp(2rem, 4vw, 3rem);
  background: rgba(20, 4, 14, 0.18);
  border: 1px solid rgba(232, 178, 60, 0.35);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  box-shadow: inset 0 0 0 5px transparent, inset 0 0 0 6px rgba(232, 178, 60, 0.18);
  will-change: transform;
}
.sb3-hero-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: #FFE9A3;
  margin: 0 auto 1.6rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.95), 0 0 35px rgba(0, 0, 0, 0.7);
  opacity: 0;
  animation: heroFadeUp 0.9s 0.25s ease-out forwards;
}
.sb3-hero-tag::before, .sb3-hero-tag::after {
  content: "";
  width: 42px; height: 1.5px;
  background: #FFE9A3;
  opacity: 1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}
.sb3-hero-title {
  position: relative;
  font-family: 'Cooper Black', 'Cooper Std', 'CooperBlack', serif;
  font-style: normal;
  font-weight: 900;
  font-size: clamp(3.8rem, 8.4vw, 6.8rem);
  line-height: 0.95;
  letter-spacing: -0.01em;
  margin: 0 0 1rem;
  padding-bottom: 1.3rem;
  color: var(--primary);
  text-shadow:
    0 5px 0 rgba(70, 4, 36, 0.7),
    0 16px 36px rgba(0, 0, 0, 0.75),
    0 0 80px rgba(0, 0, 0, 0.55);
  opacity: 0;
  animation: heroFadeUp 1.1s 0.45s ease-out forwards;
}
.sb3-hero-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 64px;
  height: 1px;
  background: var(--secondary);
  opacity: 0.85;
}
.sb3-hero-jp {
  display: block;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.05rem;
  letter-spacing: 0.48em;
  color: rgba(255, 248, 234, 0.95);
  margin: 0 0 1.8rem;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.7);
  opacity: 0;
  animation: heroFadeUp 0.9s 0.7s ease-out forwards;
}
.sb3-hero-sub {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: #FFF8EF;
  max-width: 520px;
  margin: 0 auto 0.9rem;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.75);
  opacity: 0;
  animation: heroFadeUp 0.9s 0.9s ease-out forwards;
}
.sb3-hero-sub strong { color: var(--secondary); font-weight: 500; }
.sb3-hero-address {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 248, 234, 0.82);
  margin: 0 auto 2.4rem;
  max-width: 500px;
  line-height: 1.7;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
  opacity: 0;
  animation: heroFadeUp 0.9s 1.05s ease-out forwards;
}
.sb3-hero-ctas {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  animation: heroFadeUp 0.9s 1.2s ease-out forwards;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* hero buttons — over photo, strong contrast */
.sb3-hero .sb3-btn {
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 1.05rem 2.2rem;
  border-radius: 0;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.sb3-hero .sb3-btn.primary {
  background: var(--primary);
  color: #fff;
  border: 1px solid var(--primary);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45), 0 0 0 0 rgba(245, 54, 156, 0);
}
.sb3-hero .sb3-btn.primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.55);
}
.sb3-hero .sb3-btn.ghost {
  background: rgba(255, 248, 234, 0.06);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 248, 234, 0.85);
  color: #FFF8EF;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}
.sb3-hero .sb3-btn.ghost:hover {
  background: #FFF8EF;
  color: var(--primary-dark);
  border-color: #FFF8EF;
  transform: translateY(-2px);
}

/* scroll hint at the bottom of the hero */
.sb3-hero-scroll {
  position: absolute;
  bottom: clamp(2.5rem, 4vw, 3.5rem);
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255, 248, 234, 0.88);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
  opacity: 0;
  animation: heroFadeUp 1s 1.5s ease-out forwards;
}
.sb3-hero-scroll-line {
  width: 1px;
  height: 56px;
  background: linear-gradient(180deg, rgba(232, 178, 60, 0.95) 0%, transparent 100%);
  animation: scrollLine 2.2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); transform-origin: top; opacity: 0.9; }
  50%      { transform: scaleY(0.4); opacity: 0.35; }
}

/* navbar floats transparently over the hero, becomes solid on scroll */
.navbar { background: transparent; border-bottom: 1px solid transparent; transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease; }
.navbar.scrolled { background-color: rgba(255, 247, 236, 0.96); border-bottom: 1px solid var(--line); box-shadow: 0 2px 14px rgba(46, 27, 38, 0.06); }
.navbar:not(.scrolled) .nav-links a {
  color: #FFF8EF;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.78rem;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.8);
}
.navbar:not(.scrolled) .nav-links a.active { color: var(--secondary); }
.navbar:not(.scrolled) .nav-links a:hover { color: var(--secondary); }
.navbar:not(.scrolled) .nav-toggle span { background: #FFF8EF; box-shadow: 0 1px 4px rgba(0, 0, 0, 0.5); }
.nm-ticker + .navbar { top: 0; }
.nm-ticker ~ .sb3-hero { margin-top: 0; }

/* === STATS === */
.sb3-stats {
  background: var(--surface-2);
  padding: clamp(3rem, 5vw, 4rem) 1.5rem;
}
.sb3-stats-row {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}
.sb3-stat .n {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  line-height: 1;
  color: var(--primary);
}
.sb3-stat .l {
  margin-top: 0.45rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-light);
}
.sb3-stat::after {
  content: "";
  display: block;
  width: 26px;
  height: 1px;
  background: var(--secondary);
  opacity: 0.55;
  margin: 0.8rem auto 0;
}

/* === OUTLETS wrapper === */
.sb3-outlets {
  background: var(--bg);
  padding: clamp(3.5rem, 6vw, 5rem) 1.5rem;
}

/* === SIGNATURE === */
.sb3-feature {
  background: var(--bg);
  padding: clamp(4rem, 7vw, 6rem) 1.5rem;
}
.sb3-feature-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}
.sb3-feature-text { padding-right: 1rem; }
.sb3-feature-text h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  line-height: 1.05;
  margin: 0 0 1.3rem;
  color: var(--text);
}
.sb3-feature-text h2 em { font-style: italic; color: var(--primary); }
.sb3-feature-text p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-light);
  margin: 0 0 1rem;
  max-width: 520px;
}
.sb3-feature-text .sb3-btn { margin-top: 0.8rem; }

/* elegant drop cap on the first paragraph of the signature section */
.sb3-feature-text p:first-of-type::first-letter {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 700;
  font-size: 3.8em;
  line-height: 0.85;
  color: var(--primary);
  float: left;
  margin: 0.1em 0.16em 0 0;
  padding: 0;
}

.sb3-feature-img {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(46, 27, 38, 0.16), 0 0 0 1px var(--secondary);
}
.sb3-feature-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 5;
  transform: scaleY(-1);
}
.sb3-feature-tag {
  position: absolute;
  top: 1.2rem; left: 1.2rem;
  z-index: 2;
  background: var(--secondary);
  color: #5A3A0E;
  padding: 0.4rem 1rem;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(176, 136, 58, 0.3);
}

/* === MENU === */
.sb3-menu {
  background: var(--surface-2);
  padding: clamp(4rem, 7vw, 6rem) 1.5rem;
}
.sb3-menu-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}
.sb3-dish {
  background: #fff;
  border: 1px solid rgba(232, 178, 60, 0.35);
  border-radius: 4px;
  overflow: hidden;
  text-decoration: none;
  color: var(--text);
  box-shadow: 0 6px 20px rgba(46, 27, 38, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
}
.sb3-dish:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(46, 27, 38, 0.2);
  border-color: var(--secondary);
}
.sb3-dish .img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.sb3-dish .img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.sb3-dish:hover .img img { transform: scale(1.05); }
.sb3-dish .body { padding: 1.3rem 1.4rem 1.6rem; flex: 1; }
.sb3-dish h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #2E1B26;
  font-size: 1.25rem;
  margin: 0 0 0.45rem;
  color: var(--text);
  letter-spacing: -0.005em;
}
.sb3-dish p { font-size: 0.95rem; color: #5B4452; margin: 0; line-height: 1.6; }

/* === WHY US === */
.sb3-why {
  background: var(--bg);
  padding: clamp(4rem, 7vw, 6rem) 1.5rem;
}
.sb3-why-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}
.sb3-why-card {
  background: var(--surface);
  border: 1px solid rgba(232, 178, 60, 0.25);
  border-radius: 10px;
  padding: 2.2rem 1.6rem 2rem;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.sb3-why-card:hover {
  border-color: var(--secondary);
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(46, 27, 38, 0.08);
}
.sb3-why-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--surface-2);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 1.2rem;
}
.sb3-why-card h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.2rem;
  margin: 0 0 0.55rem;
  color: var(--text);
  line-height: 1.25;
}
.sb3-why-card p { font-size: 0.92rem; color: var(--text-light); margin: 0; line-height: 1.6; }

/* === CTA === */
.sb3-cta {
  background: linear-gradient(135deg, #FFE9F3 0%, var(--surface-2) 48%, #EAF7FE 100%);
  padding: clamp(4rem, 7vw, 6rem) 1.5rem;
}
.sb3-cta-inner {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.sb3-cta-mascot {
  width: 100%;
  max-width: 260px;
  height: auto;
  justify-self: center;
  filter: drop-shadow(0 22px 30px rgba(46, 27, 38, 0.18));
  animation: floatMascot 4.5s ease-in-out infinite;
}
.sb3-cta h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.05;
  margin: 0 0 1rem;
  color: var(--text);
}
.sb3-cta h2 em { font-style: italic; color: var(--primary); }
.sb3-cta p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-light);
  margin: 0 0 2rem;
  max-width: 480px;
}
.sb3-cta-buttons { display: flex; gap: 0.85rem; flex-wrap: wrap; }

/* === OUTLETS carousel (override sb2 styles for sb3 calm look) === */
.sb3-outlets .nm-carousel { max-width: 1180px; padding: 0 clamp(0.5rem, 2vw, 1.5rem); margin: 0 auto; }
.sb3-outlets .nm-carousel-viewport {
  position: relative;
  border-radius: 10px;
  background: #fff;
  padding: 10px;
  box-shadow: 0 24px 60px rgba(46, 27, 38, 0.14), 0 0 0 1px rgba(232, 178, 60, 0.35);
}
/* refined corner brackets on the carousel viewport (vintage frame mark) */
.sb3-outlets .nm-carousel-viewport::before,
.sb3-outlets .nm-carousel-viewport::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  pointer-events: none;
  z-index: 4;
}
.sb3-outlets .nm-carousel-viewport::before {
  top: 4px; left: 4px;
  border-top: 1px solid var(--secondary);
  border-left: 1px solid var(--secondary);
  border-top-left-radius: 4px;
}
.sb3-outlets .nm-carousel-viewport::after {
  bottom: 4px; right: 4px;
  border-bottom: 1px solid var(--secondary);
  border-right: 1px solid var(--secondary);
  border-bottom-right-radius: 4px;
}
.sb3-outlets .nm-carousel-viewport > .nm-carousel-track { border-radius: 6px; overflow: hidden; }
.sb3-outlets .nm-slide { aspect-ratio: 21 / 10; }
.sb3-outlets .nm-slide img { object-fit: cover; }
.sb3-outlets .nm-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 40%, rgba(46, 27, 38, 0.5) 88%, rgba(46, 27, 38, 0.72) 100%);
}
.sb3-outlets .nm-slide-caption {
  z-index: 2;
  text-align: left;
  padding: clamp(1.4rem, 3vw, 2rem);
}
.sb3-outlets .nm-slide-caption .tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--secondary);
  border: 1px solid var(--secondary);
  box-shadow: none;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  margin: 0 0 0.7rem;
  border-radius: 999px;
}
.sb3-outlets .nm-slide-caption h3 {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  line-height: 1.1;
  margin: 0 0 0.4rem;
  color: #fff;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.5);
}
.sb3-outlets .nm-slide-caption p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  max-width: 460px;
  margin: 0;
}
.sb3-outlets .nm-arrow {
  width: 44px; height: 44px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary);
  border: 1px solid rgba(245, 54, 156, 0.2);
  box-shadow: 0 6px 18px rgba(46, 27, 38, 0.16);
  border-radius: 50%;
}
.sb3-outlets .nm-arrow:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.sb3-outlets .nm-arrow.prev { left: 14px; }
.sb3-outlets .nm-arrow.next { right: 14px; }
.sb3-outlets .nm-dots { margin-top: 1.6rem; gap: 0.45rem; }
.sb3-outlets .nm-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(46, 27, 38, 0.2);
  transition: width 0.25s ease, background 0.25s ease, border-radius 0.25s ease;
}
.sb3-outlets .nm-dot.active { background: var(--primary); width: 28px; border-radius: 999px; }

/* === RESPONSIVE === */
@media (max-width: 960px) {
  .sb3-feature-grid { grid-template-columns: 1fr; }
  .sb3-feature-text { padding-right: 0; }
  .sb3-stats-row { grid-template-columns: repeat(2, 1fr); gap: 2rem 1rem; }
  .sb3-menu-grid { grid-template-columns: repeat(2, 1fr); }
  .sb3-why-grid { grid-template-columns: repeat(2, 1fr); }
  .sb3-cta-inner { grid-template-columns: 1fr; text-align: center; }
  .sb3-cta-mascot { max-width: 200px; }
  .sb3-cta p { margin-left: auto; margin-right: auto; }
  .sb3-cta-buttons { justify-content: center; }
}
@media (max-width: 600px) {
  .sb3-menu-grid { grid-template-columns: 1fr; }
  .sb3-why-grid { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .sb3-hero-mascot img, .sb3-cta-mascot { animation: none; }
}


/* =================================================================
   Seigaiha (青海波) — traditional Japanese fan-wave pattern
   Large, soft pink concentric fans on the cream sections
   ================================================================= */
:root {
  --wave-bg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='60' viewBox='0 0 120 60'%3E%3Cg fill='none' stroke='%23F5369C' stroke-width='1.4' stroke-opacity='0.22'%3E%3Cpath d='M0 60A60 60 0 0 1 120 60'/%3E%3Cpath d='M14 60A46 46 0 0 1 106 60'/%3E%3Cpath d='M28 60A32 32 0 0 1 92 60'/%3E%3Cpath d='M42 60A18 18 0 0 1 78 60'/%3E%3Cpath d='M56 60A4 4 0 0 1 64 60'/%3E%3Cpath d='M-60 0A60 60 0 0 1 60 0'/%3E%3Cpath d='M-46 0A46 46 0 0 1 46 0'/%3E%3Cpath d='M-32 0A32 32 0 0 1 32 0'/%3E%3Cpath d='M-18 0A18 18 0 0 1 18 0'/%3E%3Cpath d='M-4 0A4 4 0 0 1 4 0'/%3E%3Cpath d='M60 0A60 60 0 0 1 180 0'/%3E%3Cpath d='M74 0A46 46 0 0 1 166 0'/%3E%3Cpath d='M88 0A32 32 0 0 1 152 0'/%3E%3Cpath d='M102 0A18 18 0 0 1 138 0'/%3E%3Cpath d='M116 0A4 4 0 0 1 124 0'/%3E%3C/g%3E%3C/svg%3E");
}

body.nm,
.sb3-hero,
.sb3-outlets,
.sb3-feature,
.sb3-why {
  background-image: none;
}


/* === HERO watermark (ROW-on-5 style giant background mark) === */
.sb3-hero-watermark {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(28rem, 60vw, 56rem);
  line-height: 0.85;
  color: rgba(255, 220, 130, 0.18);
  text-shadow:
    0 0 60px rgba(232, 178, 60, 0.18),
    0 0 120px rgba(255, 220, 130, 0.1);
  letter-spacing: -0.05em;
  user-select: none;
  will-change: transform;
}
@media (max-width: 720px) {
  .sb3-hero-watermark { font-size: 70vw; color: rgba(255, 220, 130, 0.15); }
}

/* === SIGNATURE — full-bleed editorial split (ROW-on-5 cc_cont style) === */
.sb3-feature {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: min(820px, 90vh);
  padding: clamp(5rem, 9vw, 8rem) clamp(2rem, 5vw, 5rem);
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.sb3-feature-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  will-change: transform;
}
.sb3-feature-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.05) contrast(1.05) brightness(0.92);
  transform-origin: center center;
  will-change: transform;
}
.sb3-feature-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(100deg, rgba(20, 4, 14, 0.85) 0%, rgba(20, 4, 14, 0.55) 45%, rgba(20, 4, 14, 0.15) 75%, rgba(20, 4, 14, 0.3) 100%),
    radial-gradient(70% 70% at 20% 50%, rgba(96, 8, 50, 0.4) 0%, transparent 70%);
  pointer-events: none;
}
.sb3-feature-card {
  position: relative;
  z-index: 2;
  max-width: 540px;
  margin-left: clamp(0px, 4vw, 80px);
  padding: clamp(2rem, 4vw, 3rem);
  background: rgba(255, 247, 236, 0.04);
  border: 1px solid rgba(232, 178, 60, 0.35);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: #FFF8EF;
  text-align: left;
  will-change: transform;
}
.sb3-feature-card .sb3-eyebrow {
  margin-bottom: 1.4rem;
  color: var(--secondary);
}
.sb3-feature-card .sb3-eyebrow::before,
.sb3-feature-card .sb3-eyebrow::after {
  background: var(--secondary);
  opacity: 0.95;
}
.sb3-feature-card h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(2.4rem, 4.6vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: #FFF8EF;
  margin: 0 0 1.5rem;
  padding-bottom: 1.4rem;
  position: relative;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.7);
}
.sb3-feature-card h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 56px;
  height: 1px;
  background: var(--secondary);
  opacity: 0.8;
}
.sb3-feature-card h2 em {
  font-style: italic;
  color: var(--secondary);
  font-weight: 700;
}
.sb3-feature-card p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255, 248, 234, 0.92);
  margin: 0 0 1.2rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.55);
}
.sb3-feature-card p:last-of-type { margin-bottom: 2rem; }
.sb3-feature-card .sb3-btn.primary {
  background: var(--primary);
  color: #fff;
  border: 1px solid var(--primary);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.78rem;
  padding: 1rem 2rem;
  border-radius: 0;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.45);
}
.sb3-feature-card .sb3-btn.primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
}

/* Drop old grid-style signature pieces if they exist */
.sb3-feature-grid, .sb3-feature-img, .sb3-feature-text { display: none; }

@media (max-width: 720px) {
  .sb3-feature { min-height: auto; padding: 4rem 1.25rem; }
  .sb3-feature-card { margin: 0 auto; max-width: 100%; }
}

.sb3-eyebrow.light { color: var(--secondary); }
.sb3-eyebrow.light::before,
.sb3-eyebrow.light::after { background: var(--secondary); opacity: 0.95; }


/* =================================================================
   UNIFIED PREMIUM STYLE — sub-pages match landing page
   Cinematic photo masthead + rounded buttons + gold thread
   ================================================================= */

/* === GLOBAL BUTTON ROUNDING — applies everywhere === */
.sb3-btn, .btn, .menu-tab, .nm-arrow, .back-to-top {
  border-radius: 8px;
}
.sb3-hero .sb3-btn, .sub-hero .sb3-btn { border-radius: 8px; }
.sb3-feature-card .sb3-btn.primary { border-radius: 8px; }

/* keep contact card BTN buttons consistent */
.contact-card .btn { border-radius: 8px; }

/* === SUB-PAGE HERO — cinematic photo masthead === */
.sub-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 78vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(5rem, 8vw, 7rem) clamp(2rem, 5vw, 4rem) clamp(4rem, 6vw, 5.5rem);
  text-align: center;
  color: #FFF8EF;
}

/* full-bleed background photo with slow ken-burns */
.sub-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.sub-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.08) contrast(1.05) brightness(0.95);
  transform-origin: center center;
  animation: subHeroKenburns 22s ease-out forwards;
  will-change: transform;
}
@keyframes subHeroKenburns {
  from { transform: scale(1.02); }
  to   { transform: scale(1.08); }
}

/* brand-tinted overlay */
.sub-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(70% 70% at 50% 40%, rgba(173, 24, 95, 0.35) 0%, rgba(96, 8, 50, 0.55) 55%, rgba(30, 5, 20, 0.82) 100%),
    linear-gradient(180deg, rgba(20, 4, 14, 0.55) 0%, rgba(20, 4, 14, 0.25) 40%, rgba(20, 4, 14, 0.85) 100%);
  pointer-events: none;
}

/* refined gold double-thread frame */
.sub-hero::after {
  content: "";
  position: absolute;
  inset: clamp(1.4rem, 2.5vw, 2.2rem);
  border: 1px solid rgba(232, 178, 60, 0.55);
  box-shadow: inset 0 0 0 5px transparent, inset 0 0 0 6px rgba(232, 178, 60, 0.3);
  pointer-events: none;
  z-index: 2;
}

/* giant kanji watermark */
.sub-hero-watermark {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(22rem, 50vw, 46rem);
  line-height: 0.85;
  color: rgba(255, 220, 130, 0.18);
  text-shadow:
    0 0 60px rgba(232, 178, 60, 0.18),
    0 0 120px rgba(255, 220, 130, 0.1);
  letter-spacing: -0.05em;
  user-select: none;
  will-change: transform;
}

/* inner content */
.sub-hero-inner {
  position: relative;
  z-index: 3;
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 4vw, 3rem) clamp(1.8rem, 3.5vw, 2.5rem);
  background: rgba(20, 4, 14, 0.18);
  border: 1px solid rgba(232, 178, 60, 0.35);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  box-shadow: inset 0 0 0 5px transparent, inset 0 0 0 6px rgba(232, 178, 60, 0.18);
  will-change: transform;
  border-radius: 4px;
}

/* eyebrow */
.sub-hero-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: #FFE9A3;
  margin: 0 auto 1.4rem;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.85), 0 0 30px rgba(0, 0, 0, 0.6);
  opacity: 0;
  animation: heroFadeUp 0.9s 0.25s ease-out forwards;
}
.sub-hero-tag::before, .sub-hero-tag::after {
  content: "";
  width: 42px; height: 1.5px;
  background: #FFE9A3;
  opacity: 1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}

/* title — Cooper Black brand pink */
.sub-hero-title {
  position: relative;
  font-family: 'Cooper Black', 'Cooper Std', 'CooperBlack', serif;
  font-weight: 900;
  font-size: clamp(2.8rem, 6.5vw, 5.2rem);
  line-height: 0.96;
  letter-spacing: -0.008em;
  margin: 0 0 1rem;
  padding-bottom: 1.2rem;
  color: var(--primary);
  text-shadow:
    0 5px 0 rgba(70, 4, 36, 0.7),
    0 16px 36px rgba(0, 0, 0, 0.7),
    0 0 80px rgba(0, 0, 0, 0.5);
  opacity: 0;
  animation: heroFadeUp 1.1s 0.45s ease-out forwards;
}
.sub-hero-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 64px;
  height: 1px;
  background: var(--secondary);
  opacity: 0.85;
}

/* japanese subtitle */
.sub-hero-jp {
  display: block;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.4em;
  color: rgba(255, 248, 234, 0.92);
  margin: 0 0 1.6rem;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.7);
  opacity: 0;
  animation: heroFadeUp 0.9s 0.7s ease-out forwards;
}

/* tagline */
.sub-hero-sub {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1rem, 1.45vw, 1.25rem);
  line-height: 1.6;
  letter-spacing: 0.03em;
  color: #FFF8EF;
  max-width: 540px;
  margin: 0 auto;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.7);
  opacity: 0;
  animation: heroFadeUp 0.9s 0.9s ease-out forwards;
}

/* stats row inside the locations hero */
.sub-hero-stats {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: clamp(1.5rem, 4vw, 3rem);
  margin: 2rem auto 0;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(232, 178, 60, 0.35);
  opacity: 0;
  animation: heroFadeUp 0.9s 1.1s ease-out forwards;
}
.sub-hero-stat {
  flex: 0 1 auto;
  text-align: center;
  position: relative;
}
.sub-hero-stat + .sub-hero-stat {
  padding-left: clamp(1.5rem, 4vw, 3rem);
  border-left: 1px solid rgba(232, 178, 60, 0.28);
}
.sub-hero-stat-value {
  font-family: 'Cooper Black', 'Cooper Std', serif;
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  line-height: 1;
  color: var(--secondary);
  margin-bottom: 0.4rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}
.sub-hero-stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 248, 234, 0.82);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

@media (max-width: 720px) {
  .sub-hero { min-height: 70vh; padding: 4rem 1.25rem 3.5rem; }
  .sub-hero-watermark { font-size: 70vw; color: rgba(255, 220, 130, 0.15); }
  .sub-hero-inner { padding: 1.8rem 1.5rem 1.8rem; }
  .sub-hero-stats { flex-wrap: wrap; gap: 1.5rem; }
  .sub-hero-stat + .sub-hero-stat { padding-left: 0; border-left: none; }
}

/* navbar over sub-hero — same treatment as landing */
.navbar:has(+ .sub-hero), .navbar:has(~ .sub-hero):not(.scrolled) { background: transparent; }
.sub-hero ~ .navbar.scrolled,
body:has(.sub-hero) .navbar.scrolled {
  background-color: rgba(255, 247, 236, 0.96);
}
body:has(.sub-hero) .navbar:not(.scrolled) .nav-links a {
  color: #FFF8EF;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.78rem;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.95), 0 0 30px rgba(0, 0, 0, 0.7);
}
body:has(.sub-hero) .navbar:not(.scrolled) .nav-links a.active { color: var(--secondary); }
body:has(.sub-hero) .navbar:not(.scrolled) .nav-links a:hover { color: var(--secondary); }
body:has(.sub-hero) .navbar:not(.scrolled) .nav-toggle span { background: #FFF8EF; box-shadow: 0 1px 4px rgba(0, 0, 0, 0.5); }

/* navbar default: take it out of sticky so the photo masthead is visible */
body:has(.sub-hero) .navbar { position: absolute; top: 0; left: 0; right: 0; z-index: 100; }
body:has(.sub-hero) .navbar.scrolled { position: fixed; }

/* === MENU PAGE — premium content area === */
.menu-page {
  background: var(--bg);
  padding: clamp(4rem, 7vw, 6rem) 0 clamp(4rem, 7vw, 6rem);
}
.menu-page > .container {
  max-width: 1280px;
}

/* refined gold-tab category nav */
.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin: 0 auto clamp(3rem, 6vw, 4.5rem);
  padding: 0.5rem;
  background: transparent;
  border-top: 1px solid rgba(232, 178, 60, 0.4);
  border-bottom: 1px solid rgba(232, 178, 60, 0.4);
  border-radius: 0;
  max-width: 720px;
}
.menu-tab {
  background: transparent;
  color: #2E1B26;
  border: none;
  padding: 0.85rem 1.4rem;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 6px;
  position: relative;
  transition: color 0.25s ease;
}
.menu-tab:hover { color: var(--primary); background: transparent; }
.menu-tab.active {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 8px 22px rgba(245, 54, 156, 0.3);
}

/* menu-category — refined section spacing */
.menu-category {
  margin-bottom: clamp(4rem, 8vw, 6rem);
  scroll-margin-top: 120px;
}
.menu-category-header {
  margin-bottom: clamp(2rem, 4vw, 3rem);
  text-align: center;
}
.menu-category-header::before,
.menu-category-header::after {
  display: none;
}
.menu-category-header h2 {
  position: relative;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-style: italic;
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  letter-spacing: -0.005em;
  color: #2E1B26;
  margin: 0;
  padding-bottom: 1.2rem;
  white-space: normal;
  text-shadow: none;
}
.menu-category-header h2::before {
  content: "";
  display: block;
  width: 48px;
  height: 1px;
  background: var(--secondary);
  margin: 0 auto 1.2rem;
  opacity: 0.85;
}
.menu-category-header h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 1px;
  background: var(--secondary);
  opacity: 0.85;
}

/* premium menu cards — gold-bordered, refined hover */
.menu-card {
  background: #fff;
  border: 1px solid rgba(232, 178, 60, 0.35);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(46, 27, 38, 0.08);
  display: flex;
  flex-direction: column;
  position: relative;
}
.menu-card .nm-awning { display: none; }
.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(46, 27, 38, 0.18);
  border-color: var(--secondary);
}
.menu-card .image-container {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
}
.menu-card .image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.menu-card:hover .image-container img { transform: scale(1.06); }
.menu-card .content {
  padding: 1.4rem 1.4rem 1.6rem;
  text-align: center;
}
.menu-card h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: #2E1B26;
  margin: 0 0 0.5rem;
  padding-bottom: 0.7rem;
  position: relative;
}
.menu-card h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 1px;
  background: var(--secondary);
  opacity: 0.6;
}
.menu-card p { color: #5B4452; font-size: 0.95rem; line-height: 1.6; margin: 0; }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
}

/* === CONTACT — 4-column premium grid === */
section.section:has(.contact-grid) {
  padding: clamp(4rem, 7vw, 6rem) 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 3vw, 2.5rem);
}
.contact-card {
  background: #fff;
  border: 1px solid rgba(232, 178, 60, 0.35);
  border-radius: 8px;
  padding: 2.5rem 1.6rem 2rem;
  text-align: center;
  box-shadow: 0 6px 20px rgba(46, 27, 38, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.contact-card:hover {
  transform: translateY(-6px);
  border-color: var(--secondary);
  box-shadow: 0 22px 50px rgba(46, 27, 38, 0.16);
}
.contact-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.4rem;
  background: rgba(245, 54, 156, 0.08);
  color: var(--primary);
  border: 1px solid rgba(232, 178, 60, 0.4);
}
.contact-card-icon.fb { background: rgba(24, 119, 242, 0.08); color: #1877f2; }
.contact-card-icon.ig { background: rgba(214, 36, 159, 0.08); color: #d6249f; }
.contact-card h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: #2E1B26;
  margin: 0 0 0.6rem;
  padding-bottom: 0.7rem;
  position: relative;
}
.contact-card h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 1px;
  background: var(--secondary);
  opacity: 0.6;
}
.contact-card p {
  color: #5B4452;
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0 0 1.4rem;
  flex: 1;
}
.contact-card .btn {
  width: 100%;
  padding: 0.85rem 1rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 8px;
}

/* === LOCATIONS — premium map area === */
.map-section { padding: clamp(3rem, 5vw, 4rem) 0 clamp(4rem, 7vw, 6rem); }
.map-section .container { max-width: 1280px; }
.map-layout {
  background: #fff;
  border: 1px solid rgba(232, 178, 60, 0.35);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(46, 27, 38, 0.1);
}
#map {
  border-radius: 0;
}

@media (max-width: 960px) {
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .menu-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

/* Hide stale legacy chrome on sub-pages */
body:has(.sub-hero) .string-lights,
body:has(.sub-hero) .nm-lanterns,
body:has(.sub-hero) .hero-mascot { display: none !important; }


/* =================================================================
   PREMIUM OVERHAUL — outlets carousel, stats, why-us, cta
   Cinematic full-bleed with gold thread editorial vocabulary
   ================================================================= */

/* === OUTLETS — full-bleed cinematic carousel === */
.sb3-outlets {
  padding: 0 !important;
  background: transparent;
}
.sb3-outlets::before { display: none !important; }
.sb3-carousel {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  isolation: isolate;
}
.sb3-carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
}
.sb3-carousel-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.4s ease, transform 8s ease;
  transform: scale(1.04);
  z-index: 0;
}
.sb3-carousel-slide.active {
  opacity: 1;
  transform: scale(1.08);
  z-index: 1;
}
.sb3-carousel-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(20, 4, 14, 0.85) 0%, rgba(20, 4, 14, 0.5) 35%, rgba(20, 4, 14, 0.15) 70%, rgba(20, 4, 14, 0.3) 100%),
    radial-gradient(70% 70% at 25% 50%, rgba(96, 8, 50, 0.4) 0%, transparent 70%),
    linear-gradient(180deg, rgba(20, 4, 14, 0.55) 0%, rgba(20, 4, 14, 0.2) 40%, rgba(20, 4, 14, 0.6) 100%);
}
/* gold thread frame on carousel */
.sb3-carousel::after {
  content: "";
  position: absolute;
  inset: clamp(1.4rem, 2.5vw, 2.2rem);
  border: 1px solid rgba(232, 178, 60, 0.45);
  box-shadow: inset 0 0 0 5px transparent, inset 0 0 0 6px rgba(232, 178, 60, 0.22);
  pointer-events: none;
  z-index: 3;
}
.sb3-carousel-card {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: clamp(3rem, 8vw, 8rem);
  transform: translateY(-50%);
  max-width: 540px;
  padding: clamp(2rem, 4vw, 3rem);
  background: rgba(20, 4, 14, 0.25);
  border: 1px solid rgba(232, 178, 60, 0.4);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  color: #FFF8EF;
  text-align: left;
  border-radius: 4px;
  box-shadow: inset 0 0 0 5px transparent, inset 0 0 0 6px rgba(232, 178, 60, 0.2);
  opacity: 0;
  animation: heroFadeUp 1s 0.6s ease-out forwards;
}
.sb3-carousel-card .sb3-eyebrow.light {
  margin-bottom: 1.4rem;
}
.sb3-carousel-card h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(2.2rem, 4.2vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: #FFF8EF;
  margin: 0 0 1.4rem;
  padding-bottom: 1.3rem;
  position: relative;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.7);
}
.sb3-carousel-card h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 56px;
  height: 1px;
  background: var(--secondary);
  opacity: 0.85;
}
.sb3-carousel-card h2 em {
  font-style: italic;
  color: var(--secondary);
  font-weight: 700;
}
.sb3-carousel-card p {
  font-size: 1.02rem;
  line-height: 1.7;
  color: rgba(255, 248, 234, 0.92);
  margin: 0 0 1.8rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}
.sb3-carousel-card .sb3-btn.primary {
  background: var(--primary);
  color: #fff;
  border: 1px solid var(--primary);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
}
.sb3-carousel-card .sb3-btn.primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
}

/* premium nav arrows */
.sb3-carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(232, 178, 60, 0.55);
  background: rgba(20, 4, 14, 0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: #FFF8EF;
  font-size: 0.95rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.sb3-carousel-arrow:hover {
  background: rgba(232, 178, 60, 0.95);
  color: #2E1B26;
  border-color: var(--secondary);
  transform: translateY(-50%) scale(1.06);
}
.sb3-carousel-arrow.prev { left: clamp(1.5rem, 3vw, 2.5rem); }
.sb3-carousel-arrow.next { right: clamp(1.5rem, 3vw, 2.5rem); }

/* dots */
.sb3-carousel-dots {
  position: absolute;
  bottom: clamp(2.5rem, 5vw, 4rem);
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 0.6rem;
  align-items: center;
}
.sb3-carousel-dot {
  width: 36px;
  height: 2px;
  background: rgba(255, 248, 234, 0.35);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.25s ease, width 0.3s ease;
}
.sb3-carousel-dot.active { background: var(--secondary); width: 56px; }
.sb3-carousel-dot:hover:not(.active) { background: rgba(255, 248, 234, 0.65); }

/* counter */
.sb3-carousel-counter {
  position: absolute;
  bottom: clamp(2.5rem, 5vw, 4rem);
  right: clamp(2rem, 4vw, 3.5rem);
  z-index: 5;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1rem;
  letter-spacing: 0.2em;
  color: rgba(255, 248, 234, 0.78);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}
.sb3-carousel-counter .current { color: var(--secondary); font-weight: 600; }
.sb3-carousel-counter .sep { margin: 0 0.5rem; opacity: 0.6; }
.sb3-carousel-counter .total { opacity: 0.65; }

@media (max-width: 720px) {
  .sb3-carousel { height: 90vh; }
  .sb3-carousel-card { left: 1.5rem; right: 1.5rem; max-width: none; padding: 1.6rem; }
  .sb3-carousel-arrow { width: 44px; height: 44px; }
  .sb3-carousel-dots { bottom: 1.5rem; }
  .sb3-carousel-counter { bottom: 1.5rem; right: 1.5rem; font-size: 0.85rem; }
}

/* === STATS — premium editorial === */
.sb3-stats {
  background: var(--bg);
  padding: clamp(5rem, 9vw, 8rem) clamp(2rem, 5vw, 4rem);
  position: relative;
}
.sb3-stats::before { display: none !important; }
.sb3-stats .sb3-head {
  text-align: center;
  margin-bottom: clamp(3rem, 5vw, 4rem);
}
.sb3-stats-row {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.sb3-stat {
  text-align: center;
  padding: 1rem 1.5rem;
  position: relative;
}
.sb3-stat + .sb3-stat::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 80px;
  background: rgba(232, 178, 60, 0.45);
}
.sb3-stat .n {
  font-family: 'Cooper Black', 'Cooper Std', serif;
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 1;
  color: var(--primary);
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}
.sb3-stat::after {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  background: var(--secondary);
  opacity: 0.7;
  margin: 1rem auto 0.9rem;
}
.sb3-stat .l {
  font-family: 'Inter', sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-light);
  margin: 0;
}

/* === WHY US — full-bleed editorial premium === */
.sb3-why {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(5rem, 9vw, 8rem) clamp(2rem, 5vw, 4rem);
  background: transparent;
}
.sb3-why::before { display: none !important; }
.sb3-why-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.sb3-why-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.08) contrast(1.05) brightness(0.85);
  transform: scaleY(-1);
  transform-origin: center;
  will-change: transform;
}
.sb3-why-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(70% 70% at 50% 40%, rgba(96, 8, 50, 0.55) 0%, rgba(30, 5, 20, 0.82) 70%, rgba(20, 4, 14, 0.95) 100%),
    linear-gradient(180deg, rgba(20, 4, 14, 0.7) 0%, rgba(20, 4, 14, 0.5) 50%, rgba(20, 4, 14, 0.85) 100%);
}
.sb3-why .sb3-head {
  position: relative;
  z-index: 2;
}
.sb3-why .sb3-head h2 { color: #FFF8EF; text-shadow: 0 2px 16px rgba(0,0,0,0.7); }
.sb3-why .sb3-head h2 em { color: var(--secondary); }
.sb3-why .sb3-head h2::after { background: var(--secondary); opacity: 0.85; }
.sb3-why .sb3-head p { color: rgba(255, 248, 234, 0.86); text-shadow: 0 2px 10px rgba(0,0,0,0.6); }
.sb3-why-grid {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}
.sb3-why-card {
  background: rgba(20, 4, 14, 0.35);
  border: 1px solid rgba(232, 178, 60, 0.45);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 8px;
  padding: 2.4rem 1.6rem 2.2rem;
  text-align: center;
  color: #FFF8EF;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
.sb3-why-card:hover {
  transform: translateY(-6px);
  border-color: var(--secondary);
  background: rgba(20, 4, 14, 0.5);
}
.sb3-why-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(232, 178, 60, 0.15);
  color: var(--secondary);
  border: 1px solid rgba(232, 178, 60, 0.5);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.4rem;
}
.sb3-why-card h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.18rem;
  color: #FFF8EF;
  margin: 0 0 0.8rem;
  padding-bottom: 0.8rem;
  position: relative;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}
.sb3-why-card h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 1px;
  background: var(--secondary);
  opacity: 0.75;
}
.sb3-why-card p {
  font-size: 0.94rem;
  line-height: 1.65;
  color: rgba(255, 248, 234, 0.85);
  margin: 0;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

/* === CTA — cinematic finale === */
.sb3-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: min(720px, 85vh);
  padding: clamp(5rem, 9vw, 8rem) clamp(2rem, 5vw, 4rem);
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}
.sb3-cta::before { display: none !important; }
.sb3-cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.sb3-cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.05) brightness(0.85);
  display: block;
  will-change: transform;
}
.sb3-cta-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(70% 70% at 50% 40%, rgba(173, 24, 95, 0.4) 0%, rgba(96, 8, 50, 0.6) 55%, rgba(30, 5, 20, 0.85) 100%),
    linear-gradient(180deg, rgba(20, 4, 14, 0.6) 0%, rgba(20, 4, 14, 0.35) 40%, rgba(20, 4, 14, 0.85) 100%);
}
.sb3-cta::after {
  content: "";
  position: absolute;
  inset: clamp(1.4rem, 2.5vw, 2.2rem);
  border: 1px solid rgba(232, 178, 60, 0.5);
  box-shadow: inset 0 0 0 5px transparent, inset 0 0 0 6px rgba(232, 178, 60, 0.25);
  pointer-events: none;
  z-index: 2;
}
.sb3-cta-inner {
  position: relative;
  z-index: 3;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  padding: clamp(2.5rem, 5vw, 3.5rem);
  background: rgba(20, 4, 14, 0.22);
  border: 1px solid rgba(232, 178, 60, 0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 4px;
  box-shadow: inset 0 0 0 5px transparent, inset 0 0 0 6px rgba(232, 178, 60, 0.2);
  color: #FFF8EF;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.sb3-cta-inner > .sb3-eyebrow.light { justify-self: center; margin-bottom: 1.4rem; }
.sb3-cta h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(2.4rem, 4.6vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: #FFF8EF;
  margin: 0 0 1.4rem;
  padding-bottom: 1.4rem;
  position: relative;
  text-shadow: 0 2px 14px rgba(0,0,0,0.7);
}
.sb3-cta h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 1px;
  background: var(--secondary);
  opacity: 0.85;
}
.sb3-cta h2 em { font-style: italic; color: var(--secondary); font-weight: 700; }
.sb3-cta p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 248, 234, 0.92);
  margin: 0 0 2rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.55);
}
.sb3-cta-buttons {
  display: flex;
  gap: 0.85rem;
  justify-content: center;
  flex-wrap: wrap;
}
.sb3-cta-buttons .sb3-btn.primary {
  background: var(--primary);
  color: #fff;
  border: 1px solid var(--primary);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
}
.sb3-cta-buttons .sb3-btn.primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
}
.sb3-cta-buttons .sb3-btn.ghost {
  background: rgba(255, 248, 234, 0.06);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 248, 234, 0.85);
  color: #FFF8EF;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}
.sb3-cta-buttons .sb3-btn.ghost:hover {
  background: #FFF8EF;
  color: var(--primary-dark);
  border-color: #FFF8EF;
  transform: translateY(-2px);
}

@media (max-width: 720px) {
  .sb3-stats-row { grid-template-columns: repeat(2, 1fr); gap: 2rem 0; }
  .sb3-stat:nth-child(3)::before, .sb3-stat:nth-child(odd)::before { display: none; }
  .sb3-why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .sb3-why-grid { grid-template-columns: 1fr; }
  .sb3-stats-row { grid-template-columns: 1fr; gap: 2rem; }
  .sb3-stat::before { display: none !important; }
}


/* =================================================================
   SURGICAL FIXES — m0143
   - Restore WHY US as refined CREAM editorial (not full-bleed dark)
   - Carousel: tighter height, fixed positioning, simpler animation
   - Buttons: rounded across the board, strong contrast on landing
   - Logo: slightly smaller so it sits well in the bar
   - Sub-pages: shorter hero, distinct cream/gold treatment (different from home)
   ================================================================= */

/* === WHY US — refined cream/gold === */
.sb3-why {
  position: relative !important;
  isolation: auto !important;
  overflow: visible !important;
  background: var(--bg) !important;
  padding: clamp(5rem, 9vw, 8rem) clamp(2rem, 5vw, 4rem) !important;
}
.sb3-why::before { display: none !important; }
.sb3-why-bg, .sb3-why-overlay { display: none !important; }

.sb3-why .sb3-head { position: relative; z-index: 1; margin-bottom: clamp(2.5rem, 5vw, 3.5rem); }
.sb3-why .sb3-head h2 { color: var(--text) !important; text-shadow: none !important; }
.sb3-why .sb3-head h2 em { color: var(--primary) !important; }
.sb3-why .sb3-head h2::after { background: var(--secondary); opacity: 0.7; }
.sb3-why .sb3-head p { color: var(--text-light) !important; text-shadow: none !important; }

.sb3-why-grid {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}

.sb3-why-card {
  background: #fff !important;
  border: 1px solid rgba(232, 178, 60, 0.35) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-radius: 8px !important;
  padding: 2.4rem 1.6rem 2.2rem !important;
  text-align: center;
  color: var(--text) !important;
  box-shadow: 0 6px 20px rgba(46, 27, 38, 0.06);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.sb3-why-card:hover {
  transform: translateY(-6px);
  border-color: var(--secondary) !important;
  background: #fff !important;
  box-shadow: 0 22px 50px rgba(46, 27, 38, 0.14);
}
.sb3-why-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(245, 54, 156, 0.08) !important;
  color: var(--primary) !important;
  border: 1px solid rgba(232, 178, 60, 0.4) !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 1.4rem;
}
.sb3-why-card h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.18rem;
  color: #2E1B26 !important;
  margin: 0 0 0.8rem;
  padding-bottom: 0.8rem;
  position: relative;
  text-shadow: none !important;
}
.sb3-why-card h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 1px;
  background: var(--secondary);
  opacity: 0.65;
}
.sb3-why-card p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: #5B4452 !important;
  margin: 0;
  text-shadow: none !important;
}

/* === Outlets carousel — TIGHTER, RELIABLE === */
.sb3-carousel {
  height: clamp(560px, 75vh, 760px) !important;
  min-height: 560px !important;
}
.sb3-carousel-slide {
  background-color: #1a0712;
  transform: none !important;
}
.sb3-carousel-slide.active { transform: none !important; }
.sb3-carousel::after {
  inset: clamp(1rem, 2vw, 1.6rem) !important;
}
.sb3-carousel-card {
  position: absolute;
  top: 50%;
  left: clamp(2rem, 6vw, 6rem);
  transform: translateY(-50%);
  max-width: 480px;
  padding: clamp(1.8rem, 3.5vw, 2.6rem) !important;
}
@media (max-width: 720px) {
  .sb3-carousel-card {
    left: clamp(1.5rem, 4vw, 2rem);
    right: clamp(1.5rem, 4vw, 2rem);
    max-width: none;
    top: auto;
    bottom: clamp(4.5rem, 12vw, 6rem);
    transform: none;
  }
}

/* === Landing-page HOME buttons: rounded + strong contrast === */
.sb3-hero .sb3-btn,
.sb3-feature-card .sb3-btn,
.sb3-carousel-card .sb3-btn,
.sb3-cta .sb3-btn {
  border-radius: 8px !important;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.78rem;
  padding: 1rem 2rem;
}

/* Strong primary: solid pink with white text */
.sb3-hero .sb3-btn.primary,
.sb3-feature-card .sb3-btn.primary,
.sb3-carousel-card .sb3-btn.primary,
.sb3-cta .sb3-btn.primary {
  background: var(--primary) !important;
  color: #fff !important;
  border: 1.5px solid var(--primary) !important;
  box-shadow: 0 10px 28px rgba(245, 54, 156, 0.35), 0 4px 12px rgba(0, 0, 0, 0.3) !important;
}
.sb3-hero .sb3-btn.primary:hover,
.sb3-feature-card .sb3-btn.primary:hover,
.sb3-carousel-card .sb3-btn.primary:hover,
.sb3-cta .sb3-btn.primary:hover {
  background: var(--primary-dark) !important;
  border-color: var(--primary-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(245, 54, 156, 0.5), 0 6px 16px rgba(0, 0, 0, 0.4) !important;
}

/* Strong ghost: solid cream with plum text — high contrast against photo */
.sb3-hero .sb3-btn.ghost,
.sb3-cta .sb3-btn.ghost {
  background: #FFF8EF !important;
  color: var(--primary-dark) !important;
  border: 1.5px solid #FFF8EF !important;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.3) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}
.sb3-hero .sb3-btn.ghost:hover,
.sb3-cta .sb3-btn.ghost:hover {
  background: var(--secondary) !important;
  color: #2E1B26 !important;
  border-color: var(--secondary) !important;
  transform: translateY(-2px);
}

/* Section action buttons (sb3-actions container) — match */
.sb3-actions .sb3-btn,
.sb3-menu .sb3-btn,
.sb3-feature .sb3-btn,
.sb3-stats .sb3-btn {
  border-radius: 8px !important;
}

/* === Logo: slightly tighter, sits in the bar nicely === */
.nav-brand img { height: 52px !important; }

/* === SUB-PAGE HEROES — distinct from home: shorter, cream/gold === */
.sub-hero {
  min-height: 52vh !important;
  padding: clamp(7rem, 12vw, 10rem) clamp(2rem, 5vw, 4rem) clamp(3rem, 5vw, 4rem) !important;
  background: linear-gradient(180deg, #FFF7EC 0%, #FAEFD8 100%) !important;
  color: var(--text) !important;
  text-align: center;
}
.sub-hero-bg { display: none !important; }
.sub-hero::before { display: none !important; }
.sub-hero::after {
  inset: clamp(1.2rem, 2.5vw, 2rem) !important;
  border: 1px solid rgba(184, 144, 43, 0.5) !important;
  box-shadow: inset 0 0 0 5px transparent, inset 0 0 0 6px rgba(184, 144, 43, 0.25) !important;
}
.sub-hero-watermark {
  color: rgba(184, 144, 43, 0.12) !important;
  text-shadow: none !important;
  font-size: clamp(20rem, 45vw, 38rem) !important;
}
.sub-hero-inner {
  background: transparent !important;
  border: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  max-width: 720px;
}
.sub-hero-tag {
  color: #B8902B !important;
  text-shadow: none !important;
}
.sub-hero-tag::before, .sub-hero-tag::after {
  background: #B8902B !important;
  box-shadow: none !important;
}
.sub-hero-title {
  color: var(--primary) !important;
  text-shadow: 0 2px 0 rgba(184, 144, 43, 0.15) !important;
  font-size: clamp(2.6rem, 6vw, 4.8rem) !important;
}
.sub-hero-title::after {
  background: var(--secondary-dark) !important;
  opacity: 0.85;
}
.sub-hero-jp {
  color: var(--secondary-dark) !important;
  text-shadow: none !important;
}
.sub-hero-sub {
  color: var(--text-light) !important;
  text-shadow: none !important;
}
.sub-hero-stats {
  border-top: 1px solid rgba(184, 144, 43, 0.35) !important;
}
.sub-hero-stat + .sub-hero-stat {
  border-left: 1px solid rgba(184, 144, 43, 0.3) !important;
}
.sub-hero-stat-value {
  color: var(--primary) !important;
  text-shadow: none !important;
}
.sub-hero-stat-label {
  color: var(--text-light) !important;
  text-shadow: none !important;
}

/* navbar over the cream sub-hero needs dark text */
body:has(.sub-hero) .navbar { position: absolute; top: 0; left: 0; right: 0; z-index: 100; background: transparent; }
body:has(.sub-hero) .navbar:not(.scrolled) .nav-links a {
  color: #2E1B26 !important;
  text-shadow: none !important;
}
body:has(.sub-hero) .navbar:not(.scrolled) .nav-links a.active { color: var(--primary) !important; }
body:has(.sub-hero) .navbar:not(.scrolled) .nav-toggle span { background: #2E1B26 !important; box-shadow: none !important; }


/* =================================================================
   CAROUSEL — DEFINITIVE REBUILD
   Hard reset everything: simple cross-fade, fixed card position,
   no transforms, no broken animation, predictable layout
   ================================================================= */

.sb3-outlets {
  padding: 0 !important;
  margin: 0 !important;
  background: var(--bg) !important;
  position: relative !important;
}
.sb3-outlets::before { display: none !important; }

.sb3-carousel {
  position: relative !important;
  width: 100% !important;
  height: 680px !important;
  min-height: 560px !important;
  max-height: 80vh !important;
  overflow: hidden !important;
  isolation: isolate !important;
  background: #1a0712 !important;
}

.sb3-carousel-track {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
}

.sb3-carousel-slide {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  inset: 0 !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-color: #1a0712 !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transition: opacity 1s ease, visibility 1s !important;
  transform: none !important;
  z-index: 0 !important;
}
.sb3-carousel-slide.active {
  opacity: 1 !important;
  visibility: visible !important;
  z-index: 1 !important;
  transform: none !important;
}

.sb3-carousel-overlay {
  position: absolute !important;
  inset: 0 !important;
  pointer-events: none !important;
  background:
    linear-gradient(90deg, rgba(20, 4, 14, 0.85) 0%, rgba(20, 4, 14, 0.5) 40%, rgba(20, 4, 14, 0.2) 70%, rgba(20, 4, 14, 0.4) 100%),
    linear-gradient(180deg, rgba(20, 4, 14, 0.4) 0%, transparent 30%, rgba(20, 4, 14, 0.5) 100%) !important;
  z-index: 1 !important;
}

.sb3-carousel::after {
  content: "" !important;
  position: absolute !important;
  inset: 24px !important;
  border: 1px solid rgba(232, 178, 60, 0.45) !important;
  box-shadow: inset 0 0 0 5px transparent, inset 0 0 0 6px rgba(232, 178, 60, 0.22) !important;
  pointer-events: none !important;
  z-index: 5 !important;
}

/* CARD — fixed left/center; sits ABOVE the slide image+overlay */
.sb3-carousel-card {
  position: absolute !important;
  top: 50% !important;
  left: clamp(2.5rem, 7vw, 7rem) !important;
  transform: translateY(-50%) !important;
  width: min(480px, calc(100% - clamp(5rem, 14vw, 14rem))) !important;
  max-width: 480px !important;
  padding: 2.4rem 2.2rem !important;
  background: rgba(20, 4, 14, 0.4) !important;
  border: 1px solid rgba(232, 178, 60, 0.45) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  border-radius: 4px !important;
  color: #FFF8EF !important;
  text-align: left !important;
  z-index: 4 !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transition: opacity 0.8s ease 0.3s, visibility 0.8s !important;
}
.sb3-carousel-slide.active .sb3-carousel-card {
  opacity: 1 !important;
  visibility: visible !important;
}

.sb3-carousel-card .sb3-eyebrow.light {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.8rem !important;
  font-family: 'Inter', sans-serif !important;
  font-weight: 700 !important;
  font-size: 0.75rem !important;
  letter-spacing: 0.3em !important;
  text-transform: uppercase !important;
  color: var(--secondary) !important;
  margin: 0 0 1.4rem 0 !important;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7) !important;
}
.sb3-carousel-card .sb3-eyebrow.light::before {
  content: "" !important;
  display: inline-block !important;
  width: 30px !important;
  height: 1px !important;
  background: var(--secondary) !important;
}
.sb3-carousel-card .sb3-eyebrow.light::after { display: none !important; }

.sb3-carousel-card h2 {
  font-family: 'Playfair Display', serif !important;
  font-weight: 700 !important;
  font-size: clamp(1.9rem, 3.4vw, 2.8rem) !important;
  line-height: 1.1 !important;
  letter-spacing: -0.005em !important;
  color: #FFF8EF !important;
  margin: 0 0 1.2rem 0 !important;
  padding-bottom: 1.2rem !important;
  position: relative !important;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.75) !important;
}
.sb3-carousel-card h2::after {
  content: "" !important;
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 56px !important;
  height: 1px !important;
  background: var(--secondary) !important;
  opacity: 0.85 !important;
  transform: none !important;
}
.sb3-carousel-card h2 em {
  font-style: italic !important;
  color: var(--secondary) !important;
  font-weight: 700 !important;
}
.sb3-carousel-card p {
  font-size: 0.98rem !important;
  line-height: 1.65 !important;
  color: rgba(255, 248, 234, 0.94) !important;
  margin: 0 0 1.8rem 0 !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6) !important;
}
.sb3-carousel-card .sb3-btn.primary {
  display: inline-flex !important;
  align-items: center !important;
  background: var(--primary) !important;
  color: #fff !important;
  border: 1.5px solid var(--primary) !important;
  border-radius: 8px !important;
  padding: 0.95rem 1.8rem !important;
  font-weight: 700 !important;
  font-size: 0.76rem !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  box-shadow: 0 10px 28px rgba(245, 54, 156, 0.35) !important;
}
.sb3-carousel-card .sb3-btn.primary:hover {
  background: var(--primary-dark) !important;
  border-color: var(--primary-dark) !important;
  transform: translateY(-2px) !important;
}

/* arrows */
.sb3-carousel-arrow {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  z-index: 6 !important;
  width: 52px !important;
  height: 52px !important;
  border-radius: 50% !important;
  border: 1px solid rgba(232, 178, 60, 0.55) !important;
  background: rgba(20, 4, 14, 0.55) !important;
  backdrop-filter: blur(4px) !important;
  color: #FFF8EF !important;
  font-size: 0.9rem !important;
  cursor: pointer !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: background 0.25s ease, border-color 0.25s ease !important;
}
.sb3-carousel-arrow:hover {
  background: var(--secondary) !important;
  color: #2E1B26 !important;
  border-color: var(--secondary) !important;
}
.sb3-carousel-arrow.prev { left: 1.5rem !important; right: auto !important; }
.sb3-carousel-arrow.next { right: 1.5rem !important; left: auto !important; }

/* dots */
.sb3-carousel-dots {
  position: absolute !important;
  bottom: 2.5rem !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  z-index: 6 !important;
  display: flex !important;
  gap: 0.6rem !important;
  align-items: center !important;
}
.sb3-carousel-dot {
  width: 32px !important;
  height: 2px !important;
  background: rgba(255, 248, 234, 0.4) !important;
  border: none !important;
  padding: 0 !important;
  cursor: pointer !important;
  transition: background 0.25s ease, width 0.3s ease !important;
}
.sb3-carousel-dot.active { background: var(--secondary) !important; width: 48px !important; }

/* counter */
.sb3-carousel-counter {
  position: absolute !important;
  bottom: 2.5rem !important;
  right: 2.5rem !important;
  z-index: 6 !important;
  font-family: 'Playfair Display', serif !important;
  font-style: italic !important;
  font-size: 0.95rem !important;
  letter-spacing: 0.2em !important;
  color: rgba(255, 248, 234, 0.85) !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7) !important;
}
.sb3-carousel-counter .current { color: var(--secondary) !important; font-weight: 600 !important; }

@media (max-width: 720px) {
  .sb3-carousel { height: 560px !important; max-height: 80vh !important; }
  .sb3-carousel::after { inset: 14px !important; }
  .sb3-carousel-card {
    top: auto !important;
    bottom: 5.5rem !important;
    left: 1.25rem !important;
    right: 1.25rem !important;
    width: auto !important;
    max-width: none !important;
    transform: none !important;
    padding: 1.6rem 1.4rem !important;
  }
  .sb3-carousel-card h2 { font-size: 1.55rem !important; padding-bottom: 0.9rem !important; }
  .sb3-carousel-card p { font-size: 0.92rem !important; margin-bottom: 1.2rem !important; }
  .sb3-carousel-arrow { width: 40px !important; height: 40px !important; }
  .sb3-carousel-arrow.prev { left: 1rem !important; }
  .sb3-carousel-arrow.next { right: 1rem !important; }
  .sb3-carousel-dots, .sb3-carousel-counter { bottom: 1.4rem !important; }
  .sb3-carousel-counter { right: 1.2rem !important; font-size: 0.8rem !important; }
}


/* =================================================================
   CTA — clean plum/gradient finale (no photo)
   Premium but distinct from cinematic carousel/hero
   ================================================================= */

.sb3-cta {
  position: relative !important;
  isolation: isolate !important;
  overflow: hidden !important;
  min-height: auto !important;
  padding: clamp(5rem, 9vw, 7rem) clamp(2rem, 5vw, 4rem) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background:
    radial-gradient(80% 80% at 50% 30%, rgba(173, 24, 95, 0.95) 0%, rgba(96, 8, 50, 1) 60%, rgba(46, 4, 26, 1) 100%) !important;
}
.sb3-cta::before { display: none !important; }
.sb3-cta-bg, .sb3-cta-overlay { display: none !important; }

.sb3-cta::after {
  content: "" !important;
  position: absolute !important;
  inset: clamp(1.4rem, 2.5vw, 2.2rem) !important;
  border: 1px solid rgba(232, 178, 60, 0.55) !important;
  box-shadow: inset 0 0 0 5px transparent, inset 0 0 0 6px rgba(232, 178, 60, 0.28) !important;
  pointer-events: none !important;
  z-index: 2 !important;
}

.sb3-cta-inner {
  position: relative !important;
  z-index: 3 !important;
  max-width: 680px !important;
  margin: 0 auto !important;
  text-align: center !important;
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  box-shadow: none !important;
  color: #FFF8EF !important;
  display: block !important;
}

.sb3-cta-inner > .sb3-eyebrow.light {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.9rem !important;
  font-family: 'Inter', sans-serif !important;
  font-weight: 700 !important;
  font-size: 0.8rem !important;
  letter-spacing: 0.32em !important;
  text-transform: uppercase !important;
  color: var(--secondary) !important;
  margin: 0 auto 1.6rem !important;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4) !important;
}
.sb3-cta-inner > .sb3-eyebrow.light::before,
.sb3-cta-inner > .sb3-eyebrow.light::after {
  content: "" !important;
  display: inline-block !important;
  width: 34px !important;
  height: 1px !important;
  background: var(--secondary) !important;
}

.sb3-cta h2 {
  font-family: 'Playfair Display', serif !important;
  font-weight: 700 !important;
  font-size: clamp(2.2rem, 4.2vw, 3.3rem) !important;
  line-height: 1.08 !important;
  letter-spacing: -0.008em !important;
  color: #FFF8EF !important;
  margin: 0 0 1.3rem !important;
  padding-bottom: 1.3rem !important;
  position: relative !important;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4) !important;
}
.sb3-cta h2::after {
  content: "" !important;
  position: absolute !important;
  bottom: 0 !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: 56px !important;
  height: 1px !important;
  background: var(--secondary) !important;
  opacity: 0.85 !important;
}
.sb3-cta h2 em {
  font-style: italic !important;
  color: var(--secondary) !important;
  font-weight: 700 !important;
}
.sb3-cta p {
  font-size: 1.05rem !important;
  line-height: 1.65 !important;
  color: rgba(255, 248, 234, 0.9) !important;
  margin: 0 auto 2.2rem !important;
  max-width: 540px !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3) !important;
}

.sb3-cta-buttons {
  display: flex !important;
  gap: 0.85rem !important;
  justify-content: center !important;
  flex-wrap: wrap !important;
}
.sb3-cta-buttons .sb3-btn {
  border-radius: 8px !important;
  font-weight: 700 !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
  font-size: 0.78rem !important;
  padding: 1rem 2rem !important;
}
.sb3-cta-buttons .sb3-btn.primary {
  background: var(--primary) !important;
  color: #fff !important;
  border: 1.5px solid var(--primary) !important;
  box-shadow: 0 10px 28px rgba(245, 54, 156, 0.35) !important;
}
.sb3-cta-buttons .sb3-btn.primary:hover {
  background: var(--primary-dark) !important;
  border-color: var(--primary-dark) !important;
  transform: translateY(-2px) !important;
}
.sb3-cta-buttons .sb3-btn.ghost {
  background: #FFF8EF !important;
  color: var(--primary-dark) !important;
  border: 1.5px solid #FFF8EF !important;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25) !important;
  backdrop-filter: none !important;
}
.sb3-cta-buttons .sb3-btn.ghost:hover {
  background: var(--secondary) !important;
  color: #2E1B26 !important;
  border-color: var(--secondary) !important;
  transform: translateY(-2px) !important;
}


/* =================================================================
   CAROUSEL — FINAL HARD FIX
   The slides were all stacked because old rules used opacity only;
   force display:none for inactive slides so cards can't bleed through
   ================================================================= */
.sb3-outlets { padding: 0 !important; margin: 0 !important; background: var(--bg) !important; }
.sb3-outlets::before { display: none !important; }

.sb3-carousel-slide {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
}
.sb3-carousel-slide.active {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* sub-page heroes: force the photo bg off no matter what */
.sub-hero .sub-hero-bg,
.sub-hero .sub-hero-bg img { display: none !important; visibility: hidden !important; }


/* =================================================================
   ROUND EVERYTHING + UNIFY LAST 3 SECTIONS WITH FIRST 3
   - Buttons: 12px rounded across all pages
   - Cards: 14px rounded
   - Stats/Why/CTA: refined with gold double-thread frame to match
     hero/signature/carousel premium vocabulary
   ================================================================= */

/* === GLOBAL BUTTON ROUNDING — applies everywhere === */
.sb3-btn,
.btn,
.menu-tab,
.nm-arrow,
.back-to-top,
.sb3-carousel-arrow,
.sb3-hero .sb3-btn,
.sb3-feature-card .sb3-btn,
.sb3-carousel-card .sb3-btn,
.sb3-cta .sb3-btn,
.sb3-cta-buttons .sb3-btn,
button,
.sub-hero .sb3-btn,
.contact-card .btn {
  border-radius: 12px !important;
}

/* arrows / icon-only buttons remain circular */
.sb3-carousel-arrow,
.nm-arrow,
.back-to-top { border-radius: 50% !important; }

/* === CARD/BOX ROUNDING — softer, more premium === */
.menu-card,
.contact-card,
.sb3-dish,
.sb3-why-card,
.sb3-feature-card,
.sb3-carousel-card,
.sub-hero-inner {
  border-radius: 14px !important;
}
.sb3-feature-img,
.menu-card .image-container,
.sb3-dish .img,
.map-layout {
  border-radius: 14px !important;
}
.menu-card .image-container,
.sb3-dish .img { border-radius: 14px 14px 0 0 !important; }

/* === STATS — premium with gold double-thread frame === */
.sb3-stats {
  background: var(--bg) !important;
  padding: clamp(5rem, 9vw, 7rem) clamp(2rem, 5vw, 4rem) !important;
  position: relative !important;
  isolation: isolate !important;
}
.sb3-stats::before { display: none !important; }
.sb3-stats::after {
  content: "" !important;
  position: absolute !important;
  inset: clamp(1.4rem, 2.5vw, 2.2rem) !important;
  border: 1px solid rgba(184, 144, 43, 0.45) !important;
  box-shadow: inset 0 0 0 5px transparent, inset 0 0 0 6px rgba(184, 144, 43, 0.22) !important;
  pointer-events: none !important;
  z-index: 0 !important;
  border-radius: 4px !important;
}
.sb3-stats > * { position: relative; z-index: 1; }

/* === WHY US — premium with gold double-thread frame === */
.sb3-why {
  background: var(--bg) !important;
  padding: clamp(5rem, 9vw, 7rem) clamp(2rem, 5vw, 4rem) !important;
  position: relative !important;
  isolation: isolate !important;
}
.sb3-why::before { display: none !important; }
.sb3-why::after {
  content: "" !important;
  position: absolute !important;
  inset: clamp(1.4rem, 2.5vw, 2.2rem) !important;
  border: 1px solid rgba(184, 144, 43, 0.45) !important;
  box-shadow: inset 0 0 0 5px transparent, inset 0 0 0 6px rgba(184, 144, 43, 0.22) !important;
  pointer-events: none !important;
  z-index: 0 !important;
  border-radius: 4px !important;
}
.sb3-why > * { position: relative; z-index: 1; }

/* === MENU PREVIEW — also gold-thread frame for consistency === */
.sb3-menu {
  background: var(--bg) !important;
  padding: clamp(5rem, 9vw, 7rem) clamp(2rem, 5vw, 4rem) !important;
  position: relative !important;
  isolation: isolate !important;
}
.sb3-menu::before { display: none !important; }
.sb3-menu::after {
  content: "" !important;
  position: absolute !important;
  inset: clamp(1.4rem, 2.5vw, 2.2rem) !important;
  border: 1px solid rgba(184, 144, 43, 0.45) !important;
  box-shadow: inset 0 0 0 5px transparent, inset 0 0 0 6px rgba(184, 144, 43, 0.22) !important;
  pointer-events: none !important;
  z-index: 0 !important;
  border-radius: 4px !important;
}
.sb3-menu > * { position: relative; z-index: 1; }

/* === CTA — plum gradient with gold double-thread frame === */
.sb3-cta {
  border-radius: 0 !important;
}
.sb3-cta::after {
  border-radius: 4px !important;
}

/* === Sub-page hero: hide watermark on those pages === */
.sub-hero-watermark { display: none !important; }
.sub-hero { min-height: 46vh !important; }
.sub-hero-inner { padding: clamp(1.8rem, 4vw, 2.8rem) !important; }

/* === Footer rounded social icons === */
.footer-social a { border-radius: 12px !important; }

/* round images inside menu preview */
.sb3-dish .img img,
.menu-card .image-container img { border-radius: 0 !important; }


/* =================================================================
   FINAL POLISH PASS — m0167
   1) Pill-shape ALL home buttons (high specificity wins)
   2) Stronger contrast on landing buttons
   3) Stats / Menu / Why sections — dark plum + gold thread to MATCH
      the rest of the page (hero, signature, carousel, cta) without
      any new images
   ================================================================= */

/* ===== 1+2. HOME BUTTONS: PILL + STRONG CONTRAST ===== */
html body .sb3-hero .sb3-btn,
html body .sb3-feature-card .sb3-btn,
html body .sb3-carousel-card .sb3-btn,
html body .sb3-cta .sb3-btn,
html body .sb3-cta-buttons .sb3-btn,
html body .sb3-menu-actions .sb3-btn,
html body .sb3-actions .sb3-btn {
  border-radius: 999px !important;
  padding: 1.05rem 2.2rem !important;
  font-weight: 700 !important;
  font-size: 0.78rem !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
  font-family: 'Inter', sans-serif !important;
  border-width: 1.5px !important;
  transition: background 0.28s ease, color 0.28s ease, border-color 0.28s ease, transform 0.28s ease, box-shadow 0.28s ease !important;
}

/* Primary: solid pink, white text, big drop shadow */
html body .sb3-hero .sb3-btn.primary,
html body .sb3-feature-card .sb3-btn.primary,
html body .sb3-carousel-card .sb3-btn.primary,
html body .sb3-cta .sb3-btn.primary,
html body .sb3-cta-buttons .sb3-btn.primary {
  background: #F5369C !important;
  color: #fff !important;
  border: 1.5px solid #F5369C !important;
  box-shadow:
    0 14px 36px rgba(245, 54, 156, 0.5),
    0 4px 14px rgba(0, 0, 0, 0.35) !important;
}
html body .sb3-hero .sb3-btn.primary:hover,
html body .sb3-feature-card .sb3-btn.primary:hover,
html body .sb3-carousel-card .sb3-btn.primary:hover,
html body .sb3-cta .sb3-btn.primary:hover,
html body .sb3-cta-buttons .sb3-btn.primary:hover {
  background: #FFF8EF !important;
  color: #D81B82 !important;
  border-color: #FFF8EF !important;
  transform: translateY(-2px) !important;
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.4),
    0 6px 18px rgba(245, 54, 156, 0.55) !important;
}

/* Ghost: solid cream with deep plum text — maximum contrast over photo */
html body .sb3-hero .sb3-btn.ghost,
html body .sb3-cta .sb3-btn.ghost,
html body .sb3-cta-buttons .sb3-btn.ghost {
  background: #FFF8EF !important;
  color: #2E1B26 !important;
  border: 1.5px solid #FFF8EF !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  box-shadow:
    0 14px 36px rgba(0, 0, 0, 0.45),
    0 4px 14px rgba(0, 0, 0, 0.3) !important;
}
html body .sb3-hero .sb3-btn.ghost:hover,
html body .sb3-cta .sb3-btn.ghost:hover,
html body .sb3-cta-buttons .sb3-btn.ghost:hover {
  background: #E8B23C !important;
  color: #2E1B26 !important;
  border-color: #E8B23C !important;
  transform: translateY(-2px) !important;
  box-shadow:
    0 18px 42px rgba(232, 178, 60, 0.4),
    0 6px 18px rgba(0, 0, 0, 0.3) !important;
}

/* ===== 3. STATS / WHY US / MENU PREVIEW — DARK PLUM TO MATCH ===== */
/* Same vocabulary as the CTA — plum gradient + gold double-thread frame */
html body .sb3-stats,
html body .sb3-why,
html body .sb3-menu {
  background: radial-gradient(
    80% 80% at 50% 30%,
    rgba(173, 24, 95, 0.95) 0%,
    rgba(96, 8, 50, 1) 55%,
    rgba(46, 4, 26, 1) 100%
  ) !important;
  color: #FFF8EF !important;
  padding: clamp(5rem, 9vw, 7rem) clamp(2rem, 5vw, 4rem) !important;
  position: relative !important;
  isolation: isolate !important;
  overflow: hidden !important;
}
html body .sb3-stats::before,
html body .sb3-why::before,
html body .sb3-menu::before { display: none !important; }
html body .sb3-stats::after,
html body .sb3-why::after,
html body .sb3-menu::after {
  content: "" !important;
  position: absolute !important;
  inset: clamp(1.4rem, 2.5vw, 2.2rem) !important;
  border: 1px solid rgba(232, 178, 60, 0.55) !important;
  box-shadow: inset 0 0 0 5px transparent, inset 0 0 0 6px rgba(232, 178, 60, 0.28) !important;
  pointer-events: none !important;
  z-index: 2 !important;
  border-radius: 4px !important;
}
html body .sb3-stats > *,
html body .sb3-why > *,
html body .sb3-menu > * {
  position: relative !important;
  z-index: 3 !important;
}

/* Heads inside dark sections — light type, gold em */
html body .sb3-stats .sb3-head h2,
html body .sb3-why .sb3-head h2,
html body .sb3-menu .sb3-head h2 {
  color: #FFF8EF !important;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45) !important;
}
html body .sb3-stats .sb3-head h2 em,
html body .sb3-why .sb3-head h2 em,
html body .sb3-menu .sb3-head h2 em {
  color: #E8B23C !important;
}
html body .sb3-stats .sb3-head h2::after,
html body .sb3-why .sb3-head h2::after,
html body .sb3-menu .sb3-head h2::after {
  background: #E8B23C !important;
  opacity: 0.85 !important;
}
html body .sb3-stats .sb3-head p,
html body .sb3-why .sb3-head p,
html body .sb3-menu .sb3-head p {
  color: rgba(255, 248, 234, 0.88) !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4) !important;
}
html body .sb3-stats .sb3-eyebrow,
html body .sb3-why .sb3-eyebrow,
html body .sb3-menu .sb3-eyebrow {
  color: #E8B23C !important;
}
html body .sb3-stats .sb3-eyebrow::before,
html body .sb3-stats .sb3-eyebrow::after,
html body .sb3-why .sb3-eyebrow::before,
html body .sb3-why .sb3-eyebrow::after,
html body .sb3-menu .sb3-eyebrow::before,
html body .sb3-menu .sb3-eyebrow::after {
  background: #E8B23C !important;
}

/* STATS — gold numbers on plum */
html body .sb3-stats .sb3-stat .n {
  color: #E8B23C !important;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.6) !important;
}
html body .sb3-stats .sb3-stat .l {
  color: rgba(255, 248, 234, 0.85) !important;
}
html body .sb3-stats .sb3-stat::after {
  background: rgba(232, 178, 60, 0.65) !important;
}
html body .sb3-stats .sb3-stat + .sb3-stat::before {
  background: rgba(232, 178, 60, 0.4) !important;
}

/* MENU PREVIEW — frosted gold-bordered dish cards on plum */
html body .sb3-menu .sb3-dish {
  background: rgba(20, 4, 14, 0.4) !important;
  border: 1px solid rgba(232, 178, 60, 0.45) !important;
  color: #FFF8EF !important;
  backdrop-filter: blur(4px) !important;
  -webkit-backdrop-filter: blur(4px) !important;
}
html body .sb3-menu .sb3-dish:hover {
  border-color: #E8B23C !important;
  background: rgba(20, 4, 14, 0.55) !important;
  transform: translateY(-6px) !important;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.45) !important;
}
html body .sb3-menu .sb3-dish h3 {
  color: #FFF8EF !important;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55) !important;
}
html body .sb3-menu .sb3-dish p {
  color: rgba(255, 248, 234, 0.82) !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4) !important;
}

/* WHY US — frosted gold-bordered cards on plum */
html body .sb3-why .sb3-why-card {
  background: rgba(20, 4, 14, 0.42) !important;
  border: 1px solid rgba(232, 178, 60, 0.45) !important;
  color: #FFF8EF !important;
  backdrop-filter: blur(4px) !important;
  -webkit-backdrop-filter: blur(4px) !important;
}
html body .sb3-why .sb3-why-card:hover {
  border-color: #E8B23C !important;
  background: rgba(20, 4, 14, 0.6) !important;
  transform: translateY(-6px) !important;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.45) !important;
}
html body .sb3-why .sb3-why-icon {
  background: rgba(232, 178, 60, 0.15) !important;
  color: #E8B23C !important;
  border: 1px solid rgba(232, 178, 60, 0.55) !important;
}
html body .sb3-why .sb3-why-card h3 {
  color: #FFF8EF !important;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55) !important;
}
html body .sb3-why .sb3-why-card h3::after {
  background: #E8B23C !important;
}
html body .sb3-why .sb3-why-card p {
  color: rgba(255, 248, 234, 0.82) !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4) !important;
}


/* =================================================================
   CREAM RE-THEME — m0146
   Replace the dark-plum Stats/Why/Menu with warm cream sections
   that still carry the same gold double-thread frame so they
   match the rest of the page (hero/signature/carousel/cta) without
   being too dark.
   ================================================================= */

html body .sb3-stats,
html body .sb3-why,
html body .sb3-menu {
  background:
    radial-gradient(80% 100% at 50% 0%, #FFEFD0 0%, #FFF7EC 55%, #FAEFD8 100%) !important;
  color: #2E1B26 !important;
  padding: clamp(5rem, 9vw, 7rem) clamp(2rem, 5vw, 4rem) !important;
  position: relative !important;
  isolation: isolate !important;
  overflow: hidden !important;
}
html body .sb3-stats::after,
html body .sb3-why::after,
html body .sb3-menu::after {
  content: "" !important;
  position: absolute !important;
  inset: clamp(1.4rem, 2.5vw, 2.2rem) !important;
  border: 1px solid rgba(184, 144, 43, 0.5) !important;
  box-shadow: inset 0 0 0 5px transparent, inset 0 0 0 6px rgba(184, 144, 43, 0.25) !important;
  pointer-events: none !important;
  z-index: 2 !important;
  border-radius: 4px !important;
}

/* heads — dark plum on cream */
html body .sb3-stats .sb3-head h2,
html body .sb3-why .sb3-head h2,
html body .sb3-menu .sb3-head h2 {
  color: #2E1B26 !important;
  text-shadow: none !important;
}
html body .sb3-stats .sb3-head h2 em,
html body .sb3-why .sb3-head h2 em,
html body .sb3-menu .sb3-head h2 em {
  color: #F5369C !important;
}
html body .sb3-stats .sb3-head h2::after,
html body .sb3-why .sb3-head h2::after,
html body .sb3-menu .sb3-head h2::after {
  background: #B8902B !important;
  opacity: 0.85 !important;
}
html body .sb3-stats .sb3-head p,
html body .sb3-why .sb3-head p,
html body .sb3-menu .sb3-head p {
  color: #5B4452 !important;
  text-shadow: none !important;
}
html body .sb3-stats .sb3-eyebrow,
html body .sb3-why .sb3-eyebrow,
html body .sb3-menu .sb3-eyebrow {
  color: #B8902B !important;
}
html body .sb3-stats .sb3-eyebrow::before,
html body .sb3-stats .sb3-eyebrow::after,
html body .sb3-why .sb3-eyebrow::before,
html body .sb3-why .sb3-eyebrow::after,
html body .sb3-menu .sb3-eyebrow::before,
html body .sb3-menu .sb3-eyebrow::after {
  background: #B8902B !important;
}

/* STATS — pink numbers on cream, gold rules */
html body .sb3-stats .sb3-stat .n {
  color: #F5369C !important;
  text-shadow: none !important;
}
html body .sb3-stats .sb3-stat .l {
  color: #5B4452 !important;
}
html body .sb3-stats .sb3-stat::after {
  background: #B8902B !important;
  opacity: 0.7 !important;
}
html body .sb3-stats .sb3-stat + .sb3-stat::before {
  background: rgba(184, 144, 43, 0.45) !important;
}

/* MENU PREVIEW — white gold-bordered cards on cream */
html body .sb3-menu .sb3-dish {
  background: #ffffff !important;
  border: 1px solid rgba(184, 144, 43, 0.4) !important;
  color: #2E1B26 !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  box-shadow: 0 6px 20px rgba(46, 27, 38, 0.08) !important;
}
html body .sb3-menu .sb3-dish:hover {
  border-color: #E8B23C !important;
  background: #ffffff !important;
  transform: translateY(-6px) !important;
  box-shadow: 0 22px 50px rgba(46, 27, 38, 0.16) !important;
}
html body .sb3-menu .sb3-dish h3 {
  color: #2E1B26 !important;
  text-shadow: none !important;
}
html body .sb3-menu .sb3-dish p {
  color: #5B4452 !important;
  text-shadow: none !important;
}

/* WHY US — white gold-bordered cards on cream */
html body .sb3-why .sb3-why-card {
  background: #ffffff !important;
  border: 1px solid rgba(184, 144, 43, 0.4) !important;
  color: #2E1B26 !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  box-shadow: 0 6px 20px rgba(46, 27, 38, 0.08) !important;
}
html body .sb3-why .sb3-why-card:hover {
  border-color: #E8B23C !important;
  background: #ffffff !important;
  transform: translateY(-6px) !important;
  box-shadow: 0 22px 50px rgba(46, 27, 38, 0.16) !important;
}
html body .sb3-why .sb3-why-icon {
  background: rgba(245, 54, 156, 0.08) !important;
  color: #F5369C !important;
  border: 1px solid rgba(184, 144, 43, 0.5) !important;
}
html body .sb3-why .sb3-why-card h3 {
  color: #2E1B26 !important;
  text-shadow: none !important;
}
html body .sb3-why .sb3-why-card h3::after {
  background: #B8902B !important;
  opacity: 0.65 !important;
}
html body .sb3-why .sb3-why-card p {
  color: #5B4452 !important;
  text-shadow: none !important;
}


/* =================================================================
   BUTTONS — bigger pill + MORE ROUNDED via padding
   ANIMATIONS — premium polish for hero, cards, scroll reveal,
                button hover, image hover, stats count-up
   ================================================================= */

/* === Bigger, more emphatic pill buttons === */
html body .sb3-hero .sb3-btn,
html body .sb3-feature-card .sb3-btn,
html body .sb3-carousel-card .sb3-btn,
html body .sb3-cta .sb3-btn,
html body .sb3-cta-buttons .sb3-btn {
  border-radius: 999px !important;
  padding: 1.25rem 2.8rem !important;
  font-size: 0.82rem !important;
  letter-spacing: 0.28em !important;
  font-weight: 800 !important;
  min-height: 56px !important;
  position: relative !important;
  overflow: hidden !important;
  isolation: isolate !important;
}

/* sweep-shine on hover */
html body .sb3-hero .sb3-btn::before,
html body .sb3-feature-card .sb3-btn::before,
html body .sb3-carousel-card .sb3-btn::before,
html body .sb3-cta .sb3-btn::before,
html body .sb3-cta-buttons .sb3-btn::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(110deg, transparent 25%, rgba(255, 255, 255, 0.5) 50%, transparent 75%) !important;
  transform: translateX(-120%) !important;
  transition: transform 0.7s cubic-bezier(0.65, 0, 0.35, 1) !important;
  z-index: -1 !important;
  pointer-events: none !important;
}
html body .sb3-hero .sb3-btn:hover::before,
html body .sb3-feature-card .sb3-btn:hover::before,
html body .sb3-carousel-card .sb3-btn:hover::before,
html body .sb3-cta .sb3-btn:hover::before,
html body .sb3-cta-buttons .sb3-btn:hover::before {
  transform: translateX(120%) !important;
}

/* === Hero entrance — refined sequence === */
@keyframes sbFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes sbFadeDown {
  from { opacity: 0; transform: translateY(-18px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes sbZoomIn {
  from { opacity: 0; transform: scale(0.94); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes sbKenburns {
  from { transform: scale(1.04); }
  to { transform: scale(1.18); }
}

html body .sb3-hero-bg img {
  animation: sbKenburns 18s ease-out forwards !important;
  transform-origin: center center !important;
}
html body .sb3-hero-inner > .sb3-hero-tag { animation: sbFadeUp 0.9s 0.15s ease-out both !important; }
html body .sb3-hero-inner > .sb3-hero-title { animation: sbFadeUp 1.0s 0.30s ease-out both !important; }
html body .sb3-hero-inner > .sb3-hero-jp { animation: sbFadeUp 0.9s 0.50s ease-out both !important; }
html body .sb3-hero-inner > .sb3-hero-sub { animation: sbFadeUp 0.9s 0.65s ease-out both !important; }
html body .sb3-hero-inner > .sb3-hero-address { animation: sbFadeUp 0.9s 0.80s ease-out both !important; }
html body .sb3-hero-inner > .sb3-hero-ctas { animation: sbFadeUp 1.0s 0.95s ease-out both !important; }

/* scroll indicator gentle bob */
@keyframes sbBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}
html body .sb3-hero-scroll {
  animation: sbFadeUp 0.8s 1.4s ease-out both, sbBob 2.4s 2s ease-in-out infinite !important;
}

/* === Watermark drift === */
@keyframes sbDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(0, -10px) scale(1.02); }
}
html body .sb3-hero-watermark {
  animation: sbZoomIn 1.6s 0.3s ease-out both, sbDrift 10s 2s ease-in-out infinite !important;
}

/* === Reveal-on-scroll: refined === */
html body .reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
html body .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* stagger for grids */
html body .sb3-menu-grid .reveal:nth-child(1) { transition-delay: 0.05s; }
html body .sb3-menu-grid .reveal:nth-child(2) { transition-delay: 0.15s; }
html body .sb3-menu-grid .reveal:nth-child(3) { transition-delay: 0.25s; }
html body .sb3-menu-grid .reveal:nth-child(4) { transition-delay: 0.35s; }
html body .sb3-why-grid .reveal:nth-child(1) { transition-delay: 0.05s; }
html body .sb3-why-grid .reveal:nth-child(2) { transition-delay: 0.15s; }
html body .sb3-why-grid .reveal:nth-child(3) { transition-delay: 0.25s; }
html body .sb3-why-grid .reveal:nth-child(4) { transition-delay: 0.35s; }
html body .sb3-stats-row .reveal:nth-child(1) { transition-delay: 0.05s; }
html body .sb3-stats-row .reveal:nth-child(2) { transition-delay: 0.15s; }
html body .sb3-stats-row .reveal:nth-child(3) { transition-delay: 0.25s; }
html body .sb3-stats-row .reveal:nth-child(4) { transition-delay: 0.35s; }

/* === Dish/Why card hover lift + image zoom === */
html body .sb3-dish, html body .sb3-why-card, html body .menu-card, html body .contact-card {
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.4s ease !important;
}
html body .sb3-dish:hover, html body .menu-card:hover {
  transform: translateY(-8px) !important;
}
html body .sb3-dish .img img, html body .menu-card .image-container img {
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1) !important;
}
html body .sb3-dish:hover .img img,
html body .menu-card:hover .image-container img {
  transform: scale(1.08) !important;
}

/* === Hero feature image ken-burns on signature === */
html body .sb3-feature-bg img {
  transition: transform 1.2s ease !important;
}
html body .sb3-feature:hover .sb3-feature-bg img {
  transform: scale(1.05) !important;
}

/* === Carousel slide subtle ken-burns on active === */
html body .sb3-carousel-slide.active {
  animation: sbCarouselZoom 9s ease-out forwards !important;
}
@keyframes sbCarouselZoom {
  from { background-size: 110% auto; }
  to { background-size: 120% auto; }
}

/* === Eyebrow line shimmer === */
@keyframes sbLineShine {
  0%, 100% { opacity: 0.85; }
  50% { opacity: 1; }
}
html body .sb3-eyebrow::before, html body .sb3-eyebrow::after {
  animation: sbLineShine 3.5s ease-in-out infinite !important;
}

/* === Stat number gentle pulse on reveal === */
@keyframes sbNumPop {
  0% { transform: scale(0.85); opacity: 0; }
  60% { transform: scale(1.04); opacity: 1; }
  100% { transform: scale(1); }
}
html body .sb3-stat.visible .n {
  animation: sbNumPop 0.9s cubic-bezier(0.22, 1, 0.36, 1) both !important;
}

/* === Logo hover wiggle === */
@keyframes sbLogoWiggle {
  0%, 100% { transform: rotate(0); }
  25% { transform: rotate(-2deg); }
  75% { transform: rotate(2deg); }
}
html body .nav-brand img {
  transition: transform 0.3s ease !important;
}
html body .nav-brand:hover img {
  animation: sbLogoWiggle 0.5s ease !important;
}

/* === Footer social icons pop === */
html body .footer-social a {
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease !important;
}
html body .footer-social a:hover {
  transform: translateY(-4px) scale(1.08) !important;
}

/* === Carousel arrows pulse-out on click === */
html body .sb3-carousel-arrow {
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease !important;
}
html body .sb3-carousel-arrow:hover {
  transform: translateY(-50%) scale(1.1) !important;
  box-shadow: 0 6px 20px rgba(232, 178, 60, 0.6) !important;
}
html body .sb3-carousel-arrow:active {
  transform: translateY(-50%) scale(0.95) !important;
}

/* === respect reduced motion === */
@media (prefers-reduced-motion: reduce) {
  html body * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}


/* =================================================================
   VELVET (cream + gold thread) PATTERN + REFINED ANIMATIONS — m0154
   ================================================================= */

/* === Cream + gold damask "velvet" overlay === */
html body .sb3-stats,
html body .sb3-why,
html body .sb3-menu {
  background:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'><g fill='none' stroke='%23B8902B' stroke-width='.55' opacity='.22'><path d='M40 6 Q46 18 40 34 Q34 18 40 6'/><path d='M40 46 Q46 58 40 74 Q34 58 40 46'/><path d='M6 40 Q18 34 34 40 Q18 46 6 40'/><path d='M46 40 Q58 34 74 40 Q58 46 46 40'/><circle cx='40' cy='40' r='2'/><circle cx='40' cy='40' r='5.5'/><path d='M30 30 Q40 28 50 30 Q40 32 30 30'/><path d='M30 50 Q40 48 50 50 Q40 52 30 50'/><path d='M30 30 Q28 40 30 50 Q32 40 30 30'/><path d='M50 30 Q48 40 50 50 Q52 40 50 30'/></g><g fill='none' stroke='%23E8B23C' stroke-width='.3' opacity='.16'><path d='M0 0 L8 8 M80 0 L72 8 M0 80 L8 72 M80 80 L72 72'/></g></svg>"),
    radial-gradient(80% 100% at 50% 0%, #FFEFD0 0%, #FFF7EC 55%, #FAEFD8 100%) !important;
  background-repeat: repeat, no-repeat !important;
  background-size: 80px 80px, 100% 100% !important;
  background-position: 0 0, center !important;
}

/* Same gold-thread damask layered onto the CTA's plum background */
html body .sb3-cta {
  background:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'><g fill='none' stroke='%23B8902B' stroke-width='.55' opacity='.22'><path d='M40 6 Q46 18 40 34 Q34 18 40 6'/><path d='M40 46 Q46 58 40 74 Q34 58 40 46'/><path d='M6 40 Q18 34 34 40 Q18 46 6 40'/><path d='M46 40 Q58 34 74 40 Q58 46 46 40'/><circle cx='40' cy='40' r='2'/><circle cx='40' cy='40' r='5.5'/><path d='M30 30 Q40 28 50 30 Q40 32 30 30'/><path d='M30 50 Q40 48 50 50 Q40 52 30 50'/><path d='M30 30 Q28 40 30 50 Q32 40 30 30'/><path d='M50 30 Q48 40 50 50 Q52 40 50 30'/></g><g fill='none' stroke='%23E8B23C' stroke-width='.3' opacity='.16'><path d='M0 0 L8 8 M80 0 L72 8 M0 80 L8 72 M80 80 L72 72'/></g></svg>"),
    radial-gradient(80% 80% at 50% 30%, rgba(173, 24, 95, 0.95) 0%, rgba(96, 8, 50, 1) 60%, rgba(46, 4, 26, 1) 100%) !important;
  background-repeat: repeat, no-repeat !important;
  background-size: 80px 80px, 100% 100% !important;
}

/* Signature feature card also picks up a faint damask hint */
html body .sb3-feature-card {
  background-color: #FFF8EF !important;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'><g fill='none' stroke='%23B8902B' stroke-width='.55' opacity='.22'><path d='M40 6 Q46 18 40 34 Q34 18 40 6'/><path d='M40 46 Q46 58 40 74 Q34 58 40 46'/><path d='M6 40 Q18 34 34 40 Q18 46 6 40'/><path d='M46 40 Q58 34 74 40 Q58 46 46 40'/><circle cx='40' cy='40' r='2'/><circle cx='40' cy='40' r='5.5'/><path d='M30 30 Q40 28 50 30 Q40 32 30 30'/><path d='M30 50 Q40 48 50 50 Q40 52 30 50'/><path d='M30 30 Q28 40 30 50 Q32 40 30 30'/><path d='M50 30 Q48 40 50 50 Q52 40 50 30'/></g><g fill='none' stroke='%23E8B23C' stroke-width='.3' opacity='.16'><path d='M0 0 L8 8 M80 0 L72 8 M0 80 L8 72 M80 80 L72 72'/></g></svg>") !important;
  background-size: 80px 80px !important;
  background-repeat: repeat !important;
}

/* Hero glass card and carousel card pick up a soft damask too */
html body .sb3-hero-inner,
html body .sb3-carousel-card,
html body .sb3-cta-inner {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'><g fill='none' stroke='%23B8902B' stroke-width='.55' opacity='.22'><path d='M40 6 Q46 18 40 34 Q34 18 40 6'/><path d='M40 46 Q46 58 40 74 Q34 58 40 46'/><path d='M6 40 Q18 34 34 40 Q18 46 6 40'/><path d='M46 40 Q58 34 74 40 Q58 46 46 40'/><circle cx='40' cy='40' r='2'/><circle cx='40' cy='40' r='5.5'/><path d='M30 30 Q40 28 50 30 Q40 32 30 30'/><path d='M30 50 Q40 48 50 50 Q40 52 30 50'/><path d='M30 30 Q28 40 30 50 Q32 40 30 30'/><path d='M50 30 Q48 40 50 50 Q52 40 50 30'/></g><g fill='none' stroke='%23E8B23C' stroke-width='.3' opacity='.16'><path d='M0 0 L8 8 M80 0 L72 8 M0 80 L8 72 M80 80 L72 72'/></g></svg>") !important;
  background-size: 80px 80px !important;
  background-repeat: repeat !important;
  background-blend-mode: overlay !important;
}

/* === REFINED ANIMATIONS — overall easing harmony === */
:root {
  --ease-out-quint: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out-cubic: cubic-bezier(0.65, 0, 0.35, 1);
}

/* Hero title — subtle letter-spacing settle on entrance */
@keyframes sbTitleSettle {
  from {
    opacity: 0;
    transform: translateY(28px);
    letter-spacing: 0.06em;
    filter: blur(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    letter-spacing: -0.008em;
    filter: blur(0);
  }
}
html body .sb3-hero-inner > .sb3-hero-title {
  animation: sbTitleSettle 1.4s 0.30s var(--ease-out-expo) both !important;
}

/* Eyebrows fade in with widening rules */
@keyframes sbEyebrowWiden {
  from { opacity: 0; transform: scaleX(0.3); }
  to { opacity: 1; transform: scaleX(1); }
}
html body .sb3-eyebrow::before,
html body .sb3-eyebrow::after {
  transform-origin: center !important;
  animation: sbEyebrowWiden 1s 0.4s var(--ease-out-quint) both, sbLineShine 3.5s 1.5s ease-in-out infinite !important;
}

/* Section heads — soft fade-up that respects existing reveal */
html body .sb3-head h2 {
  transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo) !important;
}

/* Card grid stagger — refined */
html body .sb3-menu-grid .reveal,
html body .sb3-why-grid .reveal,
html body .sb3-stats-row .reveal,
html body .menu-grid .menu-card,
html body .contact-grid .contact-card {
  transition: opacity 1.1s var(--ease-out-expo), transform 1.1s var(--ease-out-expo), box-shadow 0.5s var(--ease-out-quint), border-color 0.4s ease !important;
}

/* Smoother carousel cross-fade (longer + soft easing) */
html body .sb3-carousel-slide {
  transition: opacity 1.4s var(--ease-in-out-cubic), visibility 1.4s !important;
}
html body .sb3-carousel-card {
  transition: opacity 1s 0.4s var(--ease-out-expo), visibility 1s 0.4s, transform 0.8s 0.4s var(--ease-out-expo) !important;
  transform: translateY(calc(-50% + 16px)) !important;
}
html body .sb3-carousel-slide.active .sb3-carousel-card {
  transform: translateY(-50%) !important;
}

/* Image hover zoom — slower, more cinematic */
html body .sb3-dish .img img,
html body .menu-card .image-container img {
  transition: transform 1.4s var(--ease-out-expo) !important;
}
html body .sb3-dish:hover .img img,
html body .menu-card:hover .image-container img {
  transform: scale(1.10) !important;
}

/* Buttons: refined hover and active states */
html body .sb3-btn {
  transition: background 0.4s var(--ease-out-quint),
              color 0.4s var(--ease-out-quint),
              border-color 0.4s var(--ease-out-quint),
              transform 0.5s var(--ease-out-expo),
              box-shadow 0.5s var(--ease-out-expo) !important;
}
html body .sb3-btn:active {
  transform: translateY(0) scale(0.97) !important;
  transition-duration: 0.12s !important;
}

/* Hero address & sub fades + slight delay tuning */
html body .sb3-hero-inner > .sb3-hero-tag    { animation: sbFadeUp 1.1s 0.10s var(--ease-out-expo) both !important; }
html body .sb3-hero-inner > .sb3-hero-jp     { animation: sbFadeUp 1.0s 0.65s var(--ease-out-expo) both !important; }
html body .sb3-hero-inner > .sb3-hero-sub    { animation: sbFadeUp 1.0s 0.85s var(--ease-out-expo) both !important; }
html body .sb3-hero-inner > .sb3-hero-address{ animation: sbFadeUp 1.0s 1.00s var(--ease-out-expo) both !important; }
html body .sb3-hero-inner > .sb3-hero-ctas   { animation: sbFadeUp 1.1s 1.20s var(--ease-out-expo) both !important; }

/* Watermark — slower, softer drift */
@keyframes sbDriftSoft {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(2%, -1.5%) scale(1.025); }
}
html body .sb3-hero-watermark {
  animation: sbZoomIn 2s 0.3s var(--ease-out-expo) both, sbDriftSoft 16s 2.5s ease-in-out infinite !important;
}

/* Ken-burns even slower on hero photo */
@keyframes sbKenburnsSlow {
  from { transform: scale(1.04); }
  to { transform: scale(1.16); }
}
html body .sb3-hero-bg img {
  animation: sbKenburnsSlow 24s var(--ease-out-expo) forwards !important;
}

/* Signature feature card — gently floats while in view */
@keyframes sbFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
html body .sb3-feature-card.visible {
  animation: sbFloat 8s 1.2s ease-in-out infinite !important;
}

/* Stats numbers — slower, deeper pop */
@keyframes sbNumRise {
  0% { opacity: 0; transform: translateY(14px) scale(0.9); }
  60% { opacity: 1; transform: translateY(-2px) scale(1.05); }
  100% { transform: translateY(0) scale(1); }
}
html body .sb3-stat.visible .n {
  animation: sbNumRise 1.1s 0.1s var(--ease-out-expo) both !important;
}

/* Stat divider lines draw in on reveal */
@keyframes sbLineDraw {
  from { transform: scaleY(0); }
  to { transform: scaleY(1); }
}
html body .sb3-stat + .sb3-stat::before {
  transform-origin: center !important;
  transition: transform 0.9s 0.4s var(--ease-out-expo) !important;
}
html body .sb3-stat.visible + .sb3-stat::before {
  animation: sbLineDraw 0.9s 0.4s var(--ease-out-expo) both !important;
}

/* Carousel arrows — circular pulse on hover */
@keyframes sbArrowPulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(232, 178, 60, 0.3); }
  50% { box-shadow: 0 6px 28px rgba(232, 178, 60, 0.6); }
}
html body .sb3-carousel-arrow:hover {
  animation: sbArrowPulse 1.6s ease-in-out infinite !important;
}

/* Section frames fade in alongside the section */
html body .sb3-stats::after,
html body .sb3-why::after,
html body .sb3-menu::after,
html body .sb3-cta::after {
  opacity: 0;
  animation: sbFrameIn 1.4s 0.4s var(--ease-out-expo) forwards !important;
}
@keyframes sbFrameIn {
  from { opacity: 0; transform: scale(0.985); }
  to { opacity: 1; transform: scale(1); }
}

/* Footer fade-in */
html body .site-footer {
  transition: opacity 0.9s var(--ease-out-expo) !important;
}

/* Smooth global scrolling */
html { scroll-behavior: smooth; }


/* === Hero squid photo: focus on the squid (lower portion of portrait shot) === */
html body .sb3-hero-bg img {
  object-fit: cover !important;
  object-position: center 72% !important;
}


/* === Hero squid photo: flip horizontally === */
html body .sb3-hero-bg img {
  transform: scaleX(-1) !important;
  transform-origin: center !important;
}
/* Keep ken-burns animation working with the flip */
@keyframes sbKenburnsFlipped {
  from { transform: scaleX(-1) scale(1.04); }
  to { transform: scaleX(-1) scale(1.16); }
}
html body .sb3-hero-bg img {
  animation: sbKenburnsFlipped 24s cubic-bezier(0.16, 1, 0.3, 1) forwards !important;
}


/* === Hero squid photo: flip vertically (was horizontal) === */
@keyframes sbKenburnsFlippedY {
  from { transform: scaleY(-1) scale(1.04); }
  to { transform: scaleY(-1) scale(1.16); }
}
html body .sb3-hero-bg img {
  transform: scaleY(-1) !important;
  animation: sbKenburnsFlippedY 24s cubic-bezier(0.16, 1, 0.3, 1) forwards !important;
  object-position: center 28% !important;
}


/* =================================================================
   HOME BUTTONS — FORCE ROUND (highest specificity, last in file)
   ================================================================= */
html body header.sb3-hero a.sb3-btn,
html body header.sb3-hero button.sb3-btn,
html body section.sb3-feature a.sb3-btn,
html body section.sb3-feature button.sb3-btn,
html body section.sb3-outlets a.sb3-btn,
html body section.sb3-outlets button.sb3-btn,
html body section.sb3-stats a.sb3-btn,
html body section.sb3-stats button.sb3-btn,
html body section.sb3-menu a.sb3-btn,
html body section.sb3-menu button.sb3-btn,
html body section.sb3-why a.sb3-btn,
html body section.sb3-why button.sb3-btn,
html body section.sb3-cta a.sb3-btn,
html body section.sb3-cta button.sb3-btn,
html body .sb3-hero .sb3-btn,
html body .sb3-feature-card .sb3-btn,
html body .sb3-carousel-card .sb3-btn,
html body .sb3-cta-buttons .sb3-btn,
html body .sb3-actions .sb3-btn,
html body a.sb3-btn,
html body button.sb3-btn,
html body .sb3-btn {
  border-radius: 999px !important;
  -webkit-border-radius: 999px !important;
  overflow: hidden !important;
}

/* And the icon spans/SVGs inside don't need their own corners */
html body .sb3-btn i,
html body .sb3-btn svg {
  border-radius: 0 !important;
}


/* === Hero squid: center the focal point (was 28% — too high) === */
html body .sb3-hero-bg img {
  object-position: center center !important;
}


/* =================================================================
   NAV LINKS — rounded pill chips with strong contrast
   Home / Menu / Locations / Contact
   ================================================================= */

/* base pill on the cream/scrolled state */
html body .navbar .nav-links {
  display: flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
}
html body .navbar .nav-links li {
  list-style: none !important;
}
html body .navbar .nav-links a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0.75rem 1.5rem !important;
  font-family: 'Inter', sans-serif !important;
  font-weight: 700 !important;
  font-size: 0.74rem !important;
  letter-spacing: 0.24em !important;
  text-transform: uppercase !important;
  border-radius: 999px !important;
  -webkit-border-radius: 999px !important;
  text-decoration: none !important;
  color: #2E1B26 !important;
  background: transparent !important;
  border: 1.5px solid rgba(46, 27, 38, 0.35) !important;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease !important;
  text-shadow: none !important;
  min-height: 40px !important;
  white-space: nowrap !important;
}

/* hover state on cream */
html body .navbar .nav-links a:hover {
  background: #2E1B26 !important;
  color: #FFF8EF !important;
  border-color: #2E1B26 !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 6px 18px rgba(46, 27, 38, 0.2) !important;
}

/* active state — filled brand pink */
html body .navbar .nav-links a.active {
  background: var(--primary) !important;
  color: #fff !important;
  border-color: var(--primary) !important;
  box-shadow: 0 6px 18px rgba(245, 54, 156, 0.4) !important;
}
html body .navbar .nav-links a.active:hover {
  background: var(--primary-dark) !important;
  border-color: var(--primary-dark) !important;
  color: #fff !important;
}

/* TRANSPARENT NAV state — over hero photo: cream pills with strong contrast */
html body .sb3-hero ~ * .navbar:not(.scrolled) .nav-links a,
html body .navbar:not(.scrolled) .nav-links a {
  color: #FFF8EF !important;
  background: rgba(20, 4, 14, 0.4) !important;
  backdrop-filter: blur(6px) !important;
  -webkit-backdrop-filter: blur(6px) !important;
  border: 1.5px solid rgba(255, 248, 234, 0.6) !important;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4) !important;
}
html body .navbar:not(.scrolled) .nav-links a:hover {
  background: #FFF8EF !important;
  color: #2E1B26 !important;
  border-color: #FFF8EF !important;
  text-shadow: none !important;
}
html body .navbar:not(.scrolled) .nav-links a.active {
  background: var(--primary) !important;
  color: #fff !important;
  border-color: var(--primary) !important;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.3) !important;
  box-shadow: 0 6px 18px rgba(245, 54, 156, 0.5) !important;
}
html body .navbar:not(.scrolled) .nav-links a.active:hover {
  background: var(--primary-dark) !important;
  border-color: var(--primary-dark) !important;
}

/* SUB-PAGE cream heroes — dark navy text pills, no glass */
html body:has(.sub-hero) .navbar:not(.scrolled) .nav-links a {
  color: #2E1B26 !important;
  background: rgba(255, 255, 255, 0.6) !important;
  border: 1.5px solid rgba(46, 27, 38, 0.35) !important;
  text-shadow: none !important;
  backdrop-filter: blur(3px) !important;
  -webkit-backdrop-filter: blur(3px) !important;
}
html body:has(.sub-hero) .navbar:not(.scrolled) .nav-links a:hover {
  background: #2E1B26 !important;
  color: #FFF8EF !important;
  border-color: #2E1B26 !important;
}
html body:has(.sub-hero) .navbar:not(.scrolled) .nav-links a.active {
  background: var(--primary) !important;
  color: #fff !important;
  border-color: var(--primary) !important;
  box-shadow: 0 6px 18px rgba(245, 54, 156, 0.4) !important;
}
html body:has(.sub-hero) .navbar:not(.scrolled) .nav-links a.active:hover {
  background: var(--primary-dark) !important;
  border-color: var(--primary-dark) !important;
}


/* === Revert signature feature card: no float, no damask overlay === */
html body .sb3-feature-card,
html body .sb3-feature-card.visible {
  animation: none !important;
  background-image: none !important;
  background-color: #FFF8EF !important;
}


/* =================================================================
   SIGNATURE FEATURE CARD — definitive restoration
   Cream card, gold double-thread frame, brand-pink em, plum body
   ================================================================= */
html body .sb3-feature .sb3-feature-card {
  position: relative !important;
  background: #FFF8EF !important;
  background-image: none !important;
  border: 1px solid rgba(184, 144, 43, 0.5) !important;
  border-radius: 6px !important;
  padding: clamp(2.4rem, 4vw, 3.4rem) clamp(2rem, 4vw, 3rem) !important;
  max-width: 540px !important;
  color: #2E1B26 !important;
  box-shadow: 0 24px 56px rgba(46, 27, 38, 0.18), inset 0 0 0 5px transparent, inset 0 0 0 6px rgba(184, 144, 43, 0.25) !important;
  animation: none !important;
  transform: none !important;
  text-align: left !important;
}

/* eyebrow */
html body .sb3-feature .sb3-feature-card .sb3-eyebrow,
html body .sb3-feature .sb3-feature-card .sb3-eyebrow.light {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.85rem !important;
  font-family: 'Inter', sans-serif !important;
  font-weight: 700 !important;
  font-size: 0.78rem !important;
  letter-spacing: 0.3em !important;
  text-transform: uppercase !important;
  color: #B8902B !important;
  margin: 0 0 1.4rem !important;
  text-shadow: none !important;
}
html body .sb3-feature .sb3-feature-card .sb3-eyebrow::before,
html body .sb3-feature .sb3-feature-card .sb3-eyebrow.light::before {
  content: "" !important;
  display: inline-block !important;
  width: 30px !important;
  height: 1px !important;
  background: #B8902B !important;
}
html body .sb3-feature .sb3-feature-card .sb3-eyebrow::after,
html body .sb3-feature .sb3-feature-card .sb3-eyebrow.light::after {
  display: none !important;
}

/* heading */
html body .sb3-feature .sb3-feature-card h2 {
  font-family: 'Playfair Display', serif !important;
  font-weight: 700 !important;
  font-size: clamp(2rem, 3.5vw, 2.8rem) !important;
  line-height: 1.08 !important;
  letter-spacing: -0.008em !important;
  color: #2E1B26 !important;
  margin: 0 0 1.4rem !important;
  padding-bottom: 1.2rem !important;
  position: relative !important;
  text-shadow: none !important;
}
html body .sb3-feature .sb3-feature-card h2::after {
  content: "" !important;
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 56px !important;
  height: 1px !important;
  background: #B8902B !important;
  opacity: 0.85 !important;
}
html body .sb3-feature .sb3-feature-card h2 em {
  font-style: italic !important;
  font-weight: 700 !important;
  color: #F5369C !important;
}

/* body paragraphs */
html body .sb3-feature .sb3-feature-card p {
  font-family: 'Playfair Display', serif !important;
  font-style: italic !important;
  font-weight: 400 !important;
  font-size: 1.05rem !important;
  line-height: 1.7 !important;
  color: #5B4452 !important;
  margin: 0 0 1.1rem !important;
  text-shadow: none !important;
}
html body .sb3-feature .sb3-feature-card p:last-of-type {
  margin-bottom: 1.8rem !important;
}

/* button — solid pink pill */
html body .sb3-feature .sb3-feature-card .sb3-btn.primary {
  background: #F5369C !important;
  color: #fff !important;
  border: 1.5px solid #F5369C !important;
  border-radius: 999px !important;
  padding: 1rem 2rem !important;
  font-weight: 700 !important;
  font-size: 0.78rem !important;
  letter-spacing: 0.24em !important;
  text-transform: uppercase !important;
  box-shadow: 0 10px 24px rgba(245, 54, 156, 0.3) !important;
  text-decoration: none !important;
}
html body .sb3-feature .sb3-feature-card .sb3-btn.primary:hover {
  background: #AD185F !important;
  border-color: #AD185F !important;
  transform: translateY(-2px) !important;
}


/* =================================================================
   SIGNATURE FEATURE CARD — match the carousel: frosted dark glass
   ================================================================= */
html body .sb3-feature .sb3-feature-card {
  background: rgba(20, 4, 14, 0.4) !important;
  background-image: none !important;
  border: 1px solid rgba(232, 178, 60, 0.45) !important;
  border-radius: 4px !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  padding: clamp(2.4rem, 4vw, 3rem) clamp(2rem, 4vw, 2.6rem) !important;
  max-width: 480px !important;
  color: #FFF8EF !important;
  text-align: left !important;
  box-shadow: inset 0 0 0 5px transparent, inset 0 0 0 6px rgba(232, 178, 60, 0.2), 0 16px 40px rgba(0, 0, 0, 0.5) !important;
  animation: none !important;
}

/* eyebrow — gold on dark */
html body .sb3-feature .sb3-feature-card .sb3-eyebrow,
html body .sb3-feature .sb3-feature-card .sb3-eyebrow.light {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.8rem !important;
  font-family: 'Inter', sans-serif !important;
  font-weight: 700 !important;
  font-size: 0.75rem !important;
  letter-spacing: 0.3em !important;
  text-transform: uppercase !important;
  color: #E8B23C !important;
  margin: 0 0 1.4rem !important;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7) !important;
}
html body .sb3-feature .sb3-feature-card .sb3-eyebrow::before,
html body .sb3-feature .sb3-feature-card .sb3-eyebrow.light::before {
  content: "" !important;
  display: inline-block !important;
  width: 30px !important;
  height: 1px !important;
  background: #E8B23C !important;
}
html body .sb3-feature .sb3-feature-card .sb3-eyebrow::after,
html body .sb3-feature .sb3-feature-card .sb3-eyebrow.light::after {
  display: none !important;
}

/* heading — cream with gold em */
html body .sb3-feature .sb3-feature-card h2 {
  font-family: 'Playfair Display', serif !important;
  font-weight: 700 !important;
  font-size: clamp(1.9rem, 3.4vw, 2.8rem) !important;
  line-height: 1.1 !important;
  letter-spacing: -0.005em !important;
  color: #FFF8EF !important;
  margin: 0 0 1.2rem !important;
  padding-bottom: 1.2rem !important;
  position: relative !important;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.75) !important;
}
html body .sb3-feature .sb3-feature-card h2::after {
  content: "" !important;
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 56px !important;
  height: 1px !important;
  background: #E8B23C !important;
  opacity: 0.85 !important;
}
html body .sb3-feature .sb3-feature-card h2 em {
  font-style: italic !important;
  font-weight: 700 !important;
  color: #E8B23C !important;
}

/* body paragraphs — soft cream */
html body .sb3-feature .sb3-feature-card p {
  font-family: 'Playfair Display', serif !important;
  font-style: normal !important;
  font-weight: 400 !important;
  font-size: 1rem !important;
  line-height: 1.65 !important;
  color: rgba(255, 248, 234, 0.94) !important;
  margin: 0 0 1rem !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6) !important;
}
html body .sb3-feature .sb3-feature-card p:last-of-type {
  margin-bottom: 1.8rem !important;
}

/* button — solid pink pill */
html body .sb3-feature .sb3-feature-card .sb3-btn.primary {
  background: #F5369C !important;
  color: #fff !important;
  border: 1.5px solid #F5369C !important;
  border-radius: 999px !important;
  padding: 1rem 2rem !important;
  font-weight: 700 !important;
  font-size: 0.78rem !important;
  letter-spacing: 0.24em !important;
  text-transform: uppercase !important;
  box-shadow: 0 10px 28px rgba(245, 54, 156, 0.4) !important;
  text-decoration: none !important;
}
html body .sb3-feature .sb3-feature-card .sb3-btn.primary:hover {
  background: #AD185F !important;
  border-color: #AD185F !important;
  transform: translateY(-2px) !important;
}


/* === Signature feature photo: brighter === */
html body .sb3-feature-bg img {
  filter: saturate(1.1) contrast(1.05) brightness(1.08) !important;
}
html body .sb3-feature-overlay {
  background:
    linear-gradient(100deg, rgba(20, 4, 14, 0.65) 0%, rgba(20, 4, 14, 0.35) 45%, rgba(20, 4, 14, 0.05) 75%, rgba(20, 4, 14, 0.2) 100%),
    radial-gradient(70% 70% at 20% 50%, rgba(96, 8, 50, 0.25) 0%, transparent 70%) !important;
}


/* === Signature feature card: pin to the RIGHT (carousel uses left) === */
html body .sb3-feature {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
}
html body .sb3-feature .sb3-feature-card {
  margin-left: auto !important;
  margin-right: clamp(2rem, 6vw, 6rem) !important;
}
/* Mirror the overlay so the dark side is on the right where the card sits */
html body .sb3-feature-overlay {
  background:
    linear-gradient(260deg, rgba(20, 4, 14, 0.65) 0%, rgba(20, 4, 14, 0.35) 45%, rgba(20, 4, 14, 0.05) 75%, rgba(20, 4, 14, 0.2) 100%),
    radial-gradient(70% 70% at 80% 50%, rgba(96, 8, 50, 0.25) 0%, transparent 70%) !important;
}
@media (max-width: 720px) {
  html body .sb3-feature .sb3-feature-card {
    margin-right: 1.25rem !important;
    margin-left: 1.25rem !important;
  }
}


/* === Signature feature image: push chicken to the LEFT so card on right doesn't cover it === */
html body .sb3-feature-bg img {
  object-position: 25% center !important;
  filter: saturate(1.12) contrast(1.05) brightness(1.18) !important;
}
/* Soften overlay further on the left side where the chicken sits */
html body .sb3-feature-overlay {
  background:
    linear-gradient(260deg, rgba(20, 4, 14, 0.7) 0%, rgba(20, 4, 14, 0.35) 40%, rgba(20, 4, 14, 0.02) 75%, rgba(20, 4, 14, 0) 100%) !important;
}


/* === Signature image: push chicken further LEFT, clear of the right-side card === */
html body .sb3-feature-bg img {
  object-position: 12% 60% !important;
}


/* === Signature image: portrait in landscape — scale + shift so chicken sits LEFT === */
html body .sb3-feature-bg { overflow: hidden !important; }
html body .sb3-feature-bg img {
  width: 145% !important;
  max-width: none !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center 52% !important;
  transform: translateX(-30%) !important;
  animation: none !important;
}


/* === Remove damask "velvet" pattern from the cream sections + cards === */
html body .sb3-stats,
html body .sb3-why,
html body .sb3-menu {
  background:
    radial-gradient(80% 100% at 50% 0%, #FFEFD0 0%, #FFF7EC 55%, #FAEFD8 100%) !important;
  background-repeat: no-repeat !important;
  background-size: 100% 100% !important;
}
html body .sb3-cta {
  background:
    radial-gradient(80% 80% at 50% 30%, rgba(173, 24, 95, 0.95) 0%, rgba(96, 8, 50, 1) 60%, rgba(46, 4, 26, 1) 100%) !important;
  background-repeat: no-repeat !important;
}
html body .sb3-hero-inner,
html body .sb3-carousel-card,
html body .sb3-cta-inner,
html body .sb3-feature-card {
  background-image: none !important;
}
/* restore the carousel/cta/hero card frosted fills (no pattern) */
html body .sb3-carousel-card { background: rgba(20, 4, 14, 0.4) !important; }
html body .sb3-cta-inner { background: rgba(20, 4, 14, 0.22) !important; }
html body .sb3-feature .sb3-feature-card { background: rgba(20, 4, 14, 0.4) !important; }


/* =================================================================
   SECTION HEAD WATERMARKS — giant faint word behind the heading
   ================================================================= */
html body .sb3-head {
  position: relative !important;
}
html body .sb3-head-watermark {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -58%) !important;
  z-index: 0 !important;
  font-family: 'Cooper Black', 'Cooper Std', serif !important;
  font-weight: 900 !important;
  font-size: clamp(5rem, 13vw, 11rem) !important;
  line-height: 0.9 !important;
  letter-spacing: 0.02em !important;
  white-space: nowrap !important;
  color: transparent !important;
  -webkit-text-stroke: 1.5px rgba(184, 144, 43, 0.16) !important;
  text-stroke: 1.5px rgba(184, 144, 43, 0.16) !important;
  pointer-events: none !important;
  user-select: none !important;
  text-transform: uppercase !important;
}
/* keep eyebrow + heading above the watermark */
html body .sb3-head .sb3-eyebrow,
html body .sb3-head h2 {
  position: relative !important;
  z-index: 1 !important;
}
@media (max-width: 720px) {
  html body .sb3-head-watermark {
    font-size: clamp(4rem, 22vw, 7rem) !important;
  }
}


/* =================================================================
   SQUID LINE-ART behind the stats + creamier palette — m0191
   ================================================================= */

/* hide old text watermarks if any remain */
html body .sb3-head-watermark { display: none !important; }

/* squid art */
html body .sb3-stats { position: relative !important; overflow: hidden !important; }
html body .sb3-squid-art {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -48%) rotate(-8deg) !important;
  height: 118% !important;
  width: auto !important;
  color: #B8902B !important;
  opacity: 0.10 !important;
  z-index: 0 !important;
  pointer-events: none !important;
}
html body .sb3-stats .sb3-head,
html body .sb3-stats .sb3-stats-row {
  position: relative !important;
  z-index: 1 !important;
}

/* gentle float on the squid */
@keyframes sbSquidFloat {
  0%, 100% { transform: translate(-50%, -48%) rotate(-8deg); }
  50% { transform: translate(-50%, -52%) rotate(-6deg); }
}
html body .sb3-squid-art {
  animation: sbSquidFloat 12s ease-in-out infinite !important;
}

/* === CREAMIER palette === */
:root {
  --bg: #FAF1DD !important;
}
html body { background: #FAF1DD !important; }

/* warm the cream sections */
html body .sb3-stats,
html body .sb3-why,
html body .sb3-menu {
  background:
    radial-gradient(85% 100% at 50% 0%, #FBEBCB 0%, #FAF1DD 55%, #F4E7C5 100%) !important;
  background-repeat: no-repeat !important;
  background-size: 100% 100% !important;
}

/* warm the signature + hero cream surfaces too */
html body .sb3-feature { background: #FAF1DD !important; }


/* =================================================================
   PER-STAT LINE-ART ICONS behind each number — m0195
   ================================================================= */
html body .sb3-squid-art { display: none !important; }  /* remove old big squid */

html body .sb3-stat {
  position: relative !important;
  overflow: visible !important;
}
html body .sb3-stat-art {
  position: absolute !important;
  top: 42% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  height: 128px !important;
  width: 128px !important;
  color: #B8902B !important;
  opacity: 0.13 !important;
  z-index: 0 !important;
  pointer-events: none !important;
}
/* squid icon is taller — size it by height, keep aspect */
html body .sb3-stat:first-child .sb3-stat-art {
  height: 150px !important;
  width: auto !important;
  top: 40% !important;
}
html body .sb3-stat .n,
html body .sb3-stat .l {
  position: relative !important;
  z-index: 1 !important;
}

/* gentle individual float */
@keyframes sbStatArtFloat {
  0%, 100% { transform: translate(-50%, -50%) rotate(-4deg); }
  50% { transform: translate(-50%, -54%) rotate(-2deg); }
}
html body .sb3-stat-art {
  animation: sbStatArtFloat 11s ease-in-out infinite !important;
}
html body .sb3-stat:nth-child(2) .sb3-stat-art { animation-delay: -2s !important; }
html body .sb3-stat:nth-child(3) .sb3-stat-art { animation-delay: -4s !important; }
html body .sb3-stat:nth-child(4) .sb3-stat-art { animation-delay: -6s !important; }


/* =================================================================
   No icons, NO gradients — flat cream everywhere — m0197
   ================================================================= */
html body .sb3-stat-art,
html body .sb3-squid-art { display: none !important; }

/* flat cream sections (no radial gradient) */
html body .sb3-stats,
html body .sb3-why,
html body .sb3-menu,
html body .sb3-feature {
  background: #FAF1DD !important;
  background-image: none !important;
}

/* flat plum CTA (no radial gradient) */
html body .sb3-cta {
  background: #5A0832 !important;
  background-image: none !important;
}

/* page background flat cream */
html body { background: #FAF1DD !important; background-image: none !important; }


/* =================================================================
   FIX: Leaflet map covering the navbar/header — m0200
   Contain leaflet's internal z-index stack + raise navbar above it
   ================================================================= */
html body .map-layout,
html body #map {
  position: relative !important;
  isolation: isolate !important;
  z-index: 0 !important;
}
/* leaflet controls/panes must not exceed the map's own context */
html body #map .leaflet-pane,
html body #map .leaflet-top,
html body #map .leaflet-bottom,
html body #map .leaflet-control {
  z-index: 1 !important;
}
/* navbar always above the map */
html body .navbar { z-index: 1200 !important; }
html body .navbar.scrolled { z-index: 1200 !important; }


/* =================================================================
   m0202 — reverse chicken hover (zoom OUT on hover) +
            improved "Now Open" carousel animation
   ================================================================= */

/* Chicken: default zoomed-in, hover zooms OUT (vice versa) */
html body .sb3-feature .sb3-feature-bg img {
  transform: translateX(-30%) scale(1.07) !important;
  transition: transform 1.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
html body .sb3-feature:hover .sb3-feature-bg img {
  transform: translateX(-26%) scale(1) !important;
}

/* === Carousel: stronger ken-burns on the active photo === */
@keyframes sbCarKenburns {
  0%   { background-size: 116% auto; background-position: 48% center; }
  100% { background-size: 128% auto; background-position: 52% center; }
}
html body .sb3-carousel-slide.active {
  animation: sbCarKenburns 7.5s ease-out forwards !important;
}

/* === Carousel card: staggered cinematic entrance per slide === */
@keyframes sbCarItemIn {
  from { opacity: 0; transform: translateY(26px); filter: blur(4px); }
  to   { opacity: 1; transform: translateY(0); filter: blur(0); }
}
@keyframes sbCarRuleIn {
  from { opacity: 0; transform: scaleX(0.2); }
  to   { opacity: 1; transform: scaleX(1); }
}

/* card frame eases in */
html body .sb3-carousel-slide.active .sb3-carousel-card {
  animation: sbCarItemIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) both !important;
  opacity: 1 !important;
  visibility: visible !important;
}
/* children cascade */
html body .sb3-carousel-slide.active .sb3-carousel-card .sb3-eyebrow {
  animation: sbCarItemIn 0.7s 0.25s cubic-bezier(0.16, 1, 0.3, 1) both !important;
}
html body .sb3-carousel-slide.active .sb3-carousel-card h2 {
  animation: sbCarItemIn 0.8s 0.40s cubic-bezier(0.16, 1, 0.3, 1) both !important;
}
html body .sb3-carousel-slide.active .sb3-carousel-card h2::after {
  transform-origin: left center !important;
  animation: sbCarRuleIn 0.7s 0.7s cubic-bezier(0.16, 1, 0.3, 1) both !important;
}
html body .sb3-carousel-slide.active .sb3-carousel-card p {
  animation: sbCarItemIn 0.8s 0.55s cubic-bezier(0.16, 1, 0.3, 1) both !important;
}
html body .sb3-carousel-slide.active .sb3-carousel-card .sb3-btn {
  animation: sbCarItemIn 0.8s 0.72s cubic-bezier(0.16, 1, 0.3, 1) both !important;
}

/* dots: active dot gets a soft pulse */
@keyframes sbDotPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(232, 178, 60, 0.0); }
  50% { box-shadow: 0 0 10px 1px rgba(232, 178, 60, 0.5); }
}
html body .sb3-carousel-dot.active {
  animation: sbDotPulse 2.6s ease-in-out infinite !important;
}


/* =================================================================
   m0204 — TRUE cross-fade between carousel images
   (was display:none which killed the dissolve)
   ================================================================= */
html body .sb3-carousel-track {
  position: relative !important;
}
html body .sb3-carousel-slide {
  display: block !important;
  opacity: 0 !important;
  visibility: visible !important;
  pointer-events: none !important;
  z-index: 0 !important;
  transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
}
html body .sb3-carousel-slide.active {
  opacity: 1 !important;
  pointer-events: auto !important;
  z-index: 2 !important;
}
/* the slide leaving stays mid-stack so it fades UNDER the incoming one */
html body .sb3-carousel-slide.leaving {
  z-index: 1 !important;
}
/* card visibility now follows the parent slide's opacity */
html body .sb3-carousel-card {
  opacity: 1 !important;
  visibility: visible !important;
}


/* =================================================================
   m0235 — NEW BRAND LOCKUP: mascot + "Squid Boy" wordmark (live text)
   ================================================================= */
html body .nav-brand {
  display: flex !important;
  align-items: center !important;
  gap: 0.6rem !important;
  flex-shrink: 0 !important;
  text-decoration: none !important;
}
html body .nav-brand .nav-brand-mascot {
  height: 50px !important;
  width: auto !important;
  filter: drop-shadow(0 2px 5px rgba(0,0,0,0.22)) !important;
  transition: transform 0.3s ease !important;
}
html body .nav-brand:hover .nav-brand-mascot {
  transform: scale(1.06) rotate(-3deg) !important;
}
html body .nav-brand-text {
  font-family: 'Cooper Black', 'Cooper Std', serif !important;
  font-weight: 900 !important;
  font-size: 1.55rem !important;
  letter-spacing: 0.01em !important;
  line-height: 1 !important;
  color: #2E1B26 !important;
  white-space: nowrap !important;
  transition: color 0.3s ease !important;
}

/* state: over the dark hero (transparent nav) → cream wordmark */
html body .navbar:not(.scrolled) .nav-brand-text {
  color: #FFF8EF !important;
  text-shadow: 0 2px 14px rgba(0,0,0,0.6) !important;
}
/* state: scrolled (cream nav) → brand pink wordmark */
html body .navbar.scrolled .nav-brand-text {
  color: #F5369C !important;
  text-shadow: none !important;
}
/* state: cream sub-page hero (transparent nav over cream) → brand pink */
html body:has(.sub-hero) .navbar:not(.scrolled) .nav-brand-text {
  color: #F5369C !important;
  text-shadow: none !important;
}

/* === Footer brand lockup === */
html body .footer-brand-lockup {
  display: flex !important;
  align-items: center !important;
  gap: 0.7rem !important;
  margin-bottom: 1rem !important;
}
html body .footer-brand-lockup img {
  height: 58px !important;
  width: auto !important;
  margin: 0 !important;
}
html body .footer-brand-lockup span {
  font-family: 'Cooper Black', 'Cooper Std', serif !important;
  font-weight: 900 !important;
  font-size: 1.7rem !important;
  color: #FFF8EF !important;
  line-height: 1 !important;
}

@media (max-width: 560px) {
  html body .nav-brand .nav-brand-mascot { height: 42px !important; }
  html body .nav-brand-text { font-size: 1.3rem !important; }
}


/* =================================================================
   m0253 — FRANCHISE / BUSINESS OPPORTUNITIES section (index)
   ================================================================= */
.sb3-franchise {
  background: #FAF1DD;
  padding: clamp(4.5rem, 8vw, 7.5rem) clamp(1.2rem, 5vw, 4rem);
}
.sb3-fr-frame {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(2.6rem, 5vw, 4.2rem) clamp(1.4rem, 4vw, 3.6rem);
  border: 1px solid rgba(184, 144, 43, 0.55);
  border-radius: 4px;
  background: #FFF8EF;
}
.sb3-fr-frame::after {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(184, 144, 43, 0.28);
  border-radius: 2px;
  pointer-events: none;
}
.sb3-franchise .sb3-head { margin-bottom: clamp(2rem, 4vw, 3rem); }
.sb3-fr-price {
  font-family: 'Cooper Black', 'Cooper Std', serif;
  font-weight: 900;
  color: #F5369C;
  font-size: 1.35em;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.sb3-fr-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(0.9rem, 2vw, 1.4rem);
  margin-bottom: clamp(1.8rem, 3.5vw, 2.6rem);
}
.sb3-fr-card {
  background: #FAF1DD;
  border: 1px solid rgba(184, 144, 43, 0.35);
  border-radius: 16px;
  padding: 1.6rem 1.3rem 1.5rem;
  text-align: center;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}
.sb3-fr-card:hover {
  transform: translateY(-6px);
  border-color: rgba(184, 144, 43, 0.7);
  box-shadow: 0 18px 40px rgba(46, 27, 38, 0.1);
}
.sb3-fr-icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: #5A0832;
  border: 1px solid rgba(232, 178, 60, 0.7);
  color: #E8B23C;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sb3-fr-card h3 {
  font-family: 'Cooper Black', 'Cooper Std', serif;
  font-weight: 900;
  font-size: 1.06rem;
  color: #2E1B26;
  margin-bottom: 0.5rem;
  line-height: 1.25;
}
.sb3-fr-card p {
  font-size: 0.86rem;
  line-height: 1.55;
  color: rgba(46, 27, 38, 0.68);
  margin: 0;
}
.sb3-fr-formats {
  display: flex;
  justify-content: center;
  gap: clamp(1rem, 3vw, 2rem);
  flex-wrap: wrap;
  margin-bottom: clamp(1.8rem, 3.5vw, 2.4rem);
}
.sb3-fr-format {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  padding: 0.95rem 1.8rem;
  border: 1px solid rgba(90, 8, 50, 0.25);
  border-radius: 999px;
  background: transparent;
}
.sb3-fr-format span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #5A0832;
}
.sb3-fr-format strong {
  font-family: 'Cooper Black', 'Cooper Std', serif;
  font-weight: 900;
  font-size: 1.15rem;
  color: #2E1B26;
}
.sb3-fr-format strong small {
  font-family: inherit;
  font-size: 0.72em;
  color: rgba(46, 27, 38, 0.55);
}
.sb3-franchise .sb3-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.sb3-fr-note {
  width: 100%;
  text-align: center;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: rgba(46, 27, 38, 0.6);
  margin-top: 0.9rem;
}
.sb3-fr-note a {
  color: #5A0832;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.sb3-fr-note a:hover { color: #F5369C; }
@media (max-width: 980px) {
  .sb3-fr-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .sb3-fr-grid { grid-template-columns: 1fr; }
  .sb3-fr-format { width: 100%; justify-content: center; }
}


/* m0255 — franchise register block: clickable QR + copy */
.sb3-fr-register {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.6rem, 4vw, 3.2rem);
  flex-wrap: wrap;
  padding-top: 0.4rem;
}
.sb3-fr-qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  padding: 1.1rem 1.1rem 1rem;
  background: #FFFFFF;
  border: 1px solid rgba(184, 144, 43, 0.55);
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(46, 27, 38, 0.08);
  text-decoration: none;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}
.sb3-fr-qr:hover {
  transform: translateY(-6px);
  border-color: #F5369C;
  box-shadow: 0 22px 48px rgba(46, 27, 38, 0.14);
}
.sb3-fr-qr img {
  width: clamp(150px, 18vw, 196px);
  height: auto;
  display: block;
  border-radius: 8px;
}
.sb3-fr-qr span {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #5A0832;
}
.sb3-fr-register-copy { max-width: 460px; }
.sb3-fr-register-copy h3 {
  font-family: 'Cooper Black', 'Cooper Std', serif;
  font-weight: 900;
  font-size: clamp(1.3rem, 2.2vw, 1.65rem);
  color: #2E1B26;
  margin-bottom: 0.55rem;
}
.sb3-fr-register-copy > p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(46, 27, 38, 0.7);
  margin: 0 0 1.2rem;
}
.sb3-fr-register-copy .sb3-fr-formats {
  justify-content: flex-start;
  margin-bottom: 1.4rem;
  gap: 0.8rem;
}
.sb3-fr-register-copy .sb3-fr-format { padding: 0.7rem 1.3rem; }
.sb3-fr-ctas {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  flex-wrap: wrap;
}
.sb3-fr-ctas .sb3-fr-note { width: auto; margin: 0; text-align: left; }
@media (max-width: 640px) {
  .sb3-fr-register { text-align: center; }
  .sb3-fr-register-copy .sb3-fr-formats { justify-content: center; }
  .sb3-fr-ctas { justify-content: center; }
}


/* m0257 — franchise uploaded poster */
.sb3-franchise { background:#FAF1DD; padding:clamp(3rem,6vw,5.5rem) clamp(1.2rem,5vw,4rem); }
.sb3-fr-poster { display:block; max-width:680px; margin:0 auto; border-radius:14px; overflow:hidden; box-shadow:0 22px 60px rgba(46,27,38,.18); transition:transform .45s cubic-bezier(.22,1,.36,1), box-shadow .45s ease; }
.sb3-fr-poster:hover { transform:translateY(-6px); box-shadow:0 30px 72px rgba(46,27,38,.26); }
.sb3-fr-poster img { display:block; width:100%; height:auto; }


/* m0259 — franchise poster carousel slide */
html body .sb3-carousel-slide--poster { background-size:cover !important; background-position:center !important; animation:none !important; }
html body .sb3-carousel-slide--poster .sb3-carousel-overlay { background:linear-gradient(to top, rgba(20,4,12,.55) 0%, rgba(20,4,12,.05) 34%, rgba(20,4,12,0) 60%) !important; }
.sb3-carousel-poster-cta { position:absolute; left:0; right:0; bottom:clamp(2.4rem,5vw,4.2rem); display:flex; justify-content:center; z-index:3; padding:0 1.2rem; }
html body .sb3-carousel-slide.active .sb3-carousel-poster-cta .sb3-btn { animation:sbCarItemIn .8s .3s cubic-bezier(.16,1,.3,1) both !important; }
@media (max-width:720px){ .sb3-carousel-poster-cta{ bottom:1.6rem; } .sb3-carousel-poster-cta .sb3-btn{ font-size:.9rem; } }


/* m0261 — invisible clickable hotspot over "JOIN US NOW" (poster slide only) */
.sb3-carousel-slide--poster .sb3-carousel-poster-hit {
  position:absolute; z-index:4;
  left:3%; top:24%; width:33%; height:56%;
  display:block; cursor:pointer;
  background:transparent; border-radius:14px;
}


/* m0263 — visible affordance for the JOIN US NOW hotspot */
.sb3-carousel-slide--poster .sb3-carousel-poster-hit {
  animation: sbHotPulse 2.4s ease-in-out infinite;
  border:2px solid rgba(255,255,255,0);
  transition: border-color .3s ease, background .3s ease;
}
.sb3-carousel-slide--poster .sb3-carousel-poster-hit:hover {
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.55);
  animation:none;
}
@keyframes sbHotPulse {
  0%,100% { box-shadow:0 0 0 0 rgba(245,54,156,.0); }
  50%     { box-shadow:0 0 0 6px rgba(245,54,156,.28); }
}
.sb3-poster-hint {
  position:absolute; left:50%; bottom:-14px; transform:translateX(-50%);
  display:inline-flex; align-items:center; gap:.45rem; white-space:nowrap;
  background:#F5369C; color:#fff;
  font-family:'Inter',sans-serif; font-weight:800; font-size:.72rem;
  letter-spacing:.12em; text-transform:uppercase;
  padding:.5rem .95rem; border-radius:999px;
  box-shadow:0 8px 22px rgba(46,4,26,.4);
  animation: sbHintBob 2.4s ease-in-out infinite;
}
@keyframes sbHintBob { 0%,100%{ transform:translateX(-50%) translateY(0);} 50%{ transform:translateX(-50%) translateY(-5px);} }
@media (max-width:720px){ .sb3-poster-hint{ font-size:.62rem; bottom:-10px; } }
