/* ==============================================
   FLAVOURS CAFÉ — Futuristic Luxury Stylesheet
   Golden glow · Glass · Modern geometry
   ============================================== */

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

:root {
  --bg: #fafafa;
  --bg2: #f3f3f3;
  --bg3: #e8e8e8;
  --white: #ffffff;
  --ink: #0a0a0a;
  --ink2: #1a1a1a;
  --muted: #6b6b6b;
  --amber: #e6b800;
  --amber-dk: #cca300;
  --amber-lt: #ffcc00;
  --amber-bg: #fffae6;
  --glass: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.3);
  --glow: rgba(255, 204, 0, 0.15);
  --glow-strong: rgba(255, 204, 0, 0.3);
  --border: rgba(0, 0, 0, 0.08);
  --border2: rgba(0, 0, 0, 0.04);
  --font-display: "Playfair Display", serif;
  --font-heading: "Bebas Neue", sans-serif;
  --font-body: "Inter", sans-serif;
  --max: 1200px;
  --radius: 12px;
  --radius-lg: 20px;
  --t: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 18px;
}
body {
  background: var(--bg);
  color: var(--ink2);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.75;
  padding-top: calc(80px + env(safe-area-inset-top, 0px));
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}
body::before {
  content: "";
  position: fixed;
  top: -50%;
  right: -30%;
  width: 80vw;
  height: 80vw;
  background: radial-gradient(circle, var(--glow) 0%, transparent 60%);
  pointer-events: none;
  z-index: -1;
}
body::after {
  content: "";
  position: fixed;
  bottom: -40%;
  left: -20%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(
    circle,
    rgba(255, 204, 0, 0.06) 0%,
    transparent 55%
  );
  pointer-events: none;
  z-index: -1;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
  transition: var(--t);
}
::selection {
  background: var(--amber-lt);
  color: var(--ink);
}
::-webkit-scrollbar {
  width: 4px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: var(--amber-lt);
  border-radius: 10px;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
}
.section {
  padding: 110px 0;
  position: relative;
}
.section--alt {
  background: var(--bg2);
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--amber-dk);
  margin-bottom: 20px;
}
.tag::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1.5px;
  background: linear-gradient(90deg, var(--amber-lt), transparent);
}
.tag::after {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1.5px;
  background: linear-gradient(270deg, var(--amber-lt), transparent);
}
.section-h {
  font-family: var(--font-display);
  font-size: clamp(42px, 4.5vw, 64px);
  font-weight: 700;
  line-height: 1.08;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.section-h em {
  font-style: italic;
  color: var(--amber-lt);
  text-shadow: 0 0 40px var(--glow);
}
.section-sub {
  color: var(--muted);
  font-size: 17px;
  margin-top: 16px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.85;
}
.section-header {
  text-align: center;
  margin-bottom: 68px;
}
.body-p {
  color: var(--ink2);
  font-size: 17px;
  line-height: 1.9;
  margin-bottom: 18px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 34px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1.5px solid var(--ink);
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  transition: var(--t);
  border-radius: 50px;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--ink);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: -1;
  border-radius: 50px;
}
.btn:hover {
  color: var(--white);
  transform: translateY(-2px);
}
.btn:hover::after {
  transform: translateY(0);
}
.btn--solid {
  background: var(--amber-lt);
  color: var(--ink);
  border-color: var(--amber-lt);
  box-shadow:
    0 4px 20px var(--glow-strong),
    0 0 0 0 var(--glow);
  font-weight: 600;
}
.btn--solid::after {
  background: var(--amber-dk);
}
.btn--solid:hover {
  color: var(--ink);
  border-color: var(--amber-dk);
  box-shadow:
    0 8px 32px var(--glow-strong),
    0 0 60px var(--glow);
  transform: translateY(-2px);
}
.btn--white {
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
}
.btn--white::after {
  background: rgba(255, 255, 255, 0.15);
}
.btn--white:hover {
  border-color: var(--white);
  color: var(--white);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
}
.btn--white-solid {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}
.btn--white-solid::after {
  background: var(--amber-lt);
}
.btn--white-solid:hover {
  color: var(--ink);
  border-color: var(--amber-lt);
  box-shadow: 0 8px 32px var(--glow-strong);
}

/* ══════════════════════════════════════
   NAVBAR
   ══════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding-top: env(safe-area-inset-top, 0);
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--t);
}
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.85);
  border-bottom-color: var(--border);
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.04);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0px max(28px, env(safe-area-inset-right, 28px)) 0px
    max(28px, env(safe-area-inset-left, 28px));
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 3px;
  flex-shrink: 0;
  text-decoration: none;
}
.nav-logo img {
  height: 120px;
  width: auto;
  display: block;
}

.nav-logo span {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.01em;
  line-height: 1;
}
.nav-logo em {
  color: var(--amber-lt);
  font-style: normal;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 24px;
  align-items: center;
}
.nav-links a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  transition: var(--t);
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--amber-lt);
  box-shadow: 0 0 8px var(--glow);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  transform: translateX(-50%);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--ink);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}
.nav-order {
  padding: 10px 24px;
  font-size: 10px;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: all 0.3s ease;
  transform-origin: center;
}
.nav-toggle.active {
  z-index: 101;
}
.nav-toggle.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: env(safe-area-inset-top, 0) env(safe-area-inset-right, 0)
    env(safe-area-inset-bottom, 0) env(safe-area-inset-left, 0);
}
.nav-mobile.open {
  display: flex;
  animation: fadeSlideDown 0.4s ease;
}
.nav-mobile a {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink);
  transition: var(--t);
}
.nav-mobile a:hover {
  color: var(--amber-lt);
  letter-spacing: 0.04em;
}
.nav-close {
  position: absolute;
  top: 22px;
  right: 22px;
  background: none;
  border: none;
  color: var(--ink);
  font-size: 30px;
  cursor: pointer;
  transition: var(--t);
}
.nav-close:hover {
  transform: rotate(90deg);
  color: var(--amber-lt);
}
@keyframes fadeSlideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ══════════════════════════════════════
   HERO WITH CAROUSEL
   ══════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-blob1,
.hero-blob2 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}
.hero-blob1 {
  top: -120px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(255, 204, 0, 0.1) 0%,
    transparent 60%
  );
  animation: float 8s ease-in-out infinite;
}
.hero-blob2 {
  bottom: -80px;
  left: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(255, 204, 0, 0.06) 0%,
    transparent 55%
  );
  animation: float 10s ease-in-out infinite reverse;
}

.hero-carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hc-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hc-slide.hc-active {
  opacity: 1;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 14, 10, 0.65) 0%,
    rgba(15, 14, 10, 0.75) 100%
  );
  z-index: 1;
}

.hero-center {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding-top: 80px;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  justify-content: center;
}
.eyebrow-line {
  width: 36px;
  height: 1.5px;
  background: var(--amber-lt);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 104px);
  font-weight: 700;
  line-height: 0.96;
  color: var(--ink);
  margin-bottom: 28px;
  letter-spacing: -0.03em;
}
.hero-title em {
  font-style: italic;
  color: var(--amber-lt);
  text-shadow: 0 0 60px var(--glow-strong);
}
.hero-title--light {
  color: var(--white);
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.3);
}
.hero-sub {
  font-size: 18px;
  color: var(--ink2);
  max-width: 500px;
  line-height: 1.85;
  margin-bottom: 44px;
}
.hero-sub--light {
  color: rgba(255, 255, 255, 0.65);
  margin-left: auto;
  margin-right: auto;
}

/* Hero staggered entrance */
.hero-word {
  display: inline-block;
}
.hero-anim {
  opacity: 0;
  transform: translateY(30px);
  animation: heroEntrance 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-anim-1 {
  animation-delay: 0.3s;
}
.hero-anim-2 {
  animation-delay: 0.5s;
}
.hero-anim-3 {
  animation-delay: 0.7s;
}
.hero-anim-4 {
  animation-delay: 0.9s;
}
.hero-anim-5 {
  animation-delay: 1.1s;
}
.hero-anim-6 {
  animation-delay: 1.3s;
}
.hero-anim-7 {
  animation-delay: 1.5s;
}
@keyframes heroEntrance {
  from {
    opacity: 0;
    transform: translateY(30px);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}

.hc-dots {
  display: flex;
  gap: 10px;
  justify-content: center;
}
.hc-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  cursor: pointer;
  transition: var(--t);
  padding: 0;
}
.hc-dot--active,
.hc-dot:hover {
  background: var(--amber-lt);
  border-color: var(--amber-lt);
}

/* ── MARQUEE ── */
.marquee-wrap {
  border-top: 1px solid rgba(255, 204, 0, 0.2);
  border-bottom: 1px solid rgba(255, 204, 0, 0.2);
  background: linear-gradient(
    90deg,
    var(--amber-lt),
    var(--amber),
    var(--amber-lt)
  );
  overflow: hidden;
  padding: 16px 0;
  position: relative;
}
.marquee-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.1),
    transparent 20%,
    transparent 80%,
    rgba(255, 255, 255, 0.1)
  );
  pointer-events: none;
}
.marquee-track {
  display: flex;
  gap: 48px;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.m-item {
  font-family: var(--font-heading);
  font-size: 17px;
  letter-spacing: 0.16em;
  color: rgba(10, 10, 10, 0.55);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 48px;
}
.m-item::after {
  content: "◆";
  color: rgba(255, 255, 255, 0.6);
  font-size: 7px;
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ══════════════════════════════════════
   STATS BAR (animated counters)
   ══════════════════════════════════════ */
.stats-bar {
  background: var(--ink);
  padding: 52px 0;
  position: relative;
  overflow: hidden;
}
.stats-bar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--amber-lt), transparent);
}
.stats-bar::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 204, 0, 0.3),
    transparent
  );
}
.stats-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat-block {
  text-align: center;
  padding: 12px 40px;
  border-radius: var(--radius);
  transition: var(--t);
  cursor: default;
}
.stat-block:hover {
  background: rgba(255, 255, 255, 0.04);
}
.stat-block:hover .stat-number {
  text-shadow:
    0 0 40px var(--glow-strong),
    0 0 80px var(--glow);
}
.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(36px, 4vw, 52px);
  color: var(--amber-lt);
  line-height: 1;
  text-shadow: 0 0 30px var(--glow-strong);
}
.stat-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(250, 248, 243, 0.5);
  margin-top: 6px;
  font-weight: 500;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(250, 248, 243, 0.12);
}

/* ══════════════════════════════════════
   PAGE HEADER (sub-pages)
   ══════════════════════════════════════ */
.page-header {
  padding: 180px 0 100px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.page-header--sm {
  padding: 160px 0 80px;
}
.ph-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.5) 0%,
    rgba(10, 10, 10, 0.8) 100%
  );
}
.ph-overlay::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(180deg, transparent, var(--bg));
}
.ph-title {
  font-family: var(--font-display);
  font-size: clamp(44px, 5.5vw, 76px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.06;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.ph-title em {
  font-style: italic;
  color: var(--amber-lt);
  text-shadow: 0 0 40px var(--glow-strong);
}
.ph-sub {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.55);
  max-width: 520px;
  line-height: 1.8;
}

/* ── ABOUT ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-imgs {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.about-img-a {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 0.8;
  margin-top: 40px;
}
.about-img-b {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 0.8;
}
.about-img-a img,
.about-img-b img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.about-img-a:hover img,
.about-img-b:hover img {
  transform: scale(1.06);
}
.about-img-a {
  border-radius: var(--radius-lg);
}
.about-img-b {
  border-radius: var(--radius-lg);
}
.about-badge {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--amber-lt), var(--amber));
  border-radius: 14px;
  padding: 18px 24px;
  text-align: center;
  box-shadow:
    0 8px 32px var(--glow-strong),
    0 0 40px var(--glow);
  z-index: 2;
}
.ab-year {
  font-family: var(--font-heading);
  font-size: 32px;
  color: var(--white);
  line-height: 1;
}
.ab-text {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 3px;
}
.pull-quote {
  border-left: 3px solid var(--amber-lt);
  padding: 16px 0 16px 24px;
  margin: 28px 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 19px;
  color: var(--ink2);
  line-height: 1.65;
  background: linear-gradient(90deg, var(--amber-bg), transparent);
  border-radius: 0 var(--radius) var(--radius) 0;
  position: relative;
}
.pull-quote::before {
  content: '"';
  position: absolute;
  top: -8px;
  left: 10px;
  font-size: 60px;
  color: var(--amber-lt);
  opacity: 0.2;
  font-family: var(--font-display);
  line-height: 1;
}
.about-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ══════════════════════════════════════
   GALLERY
   ══════════════════════════════════════ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 12px;
}
.gal-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gal-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 50%,
    rgba(10, 10, 10, 0.4) 100%
  );
  z-index: 1;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.gal-item::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-lg);
  border: 2px solid transparent;
  z-index: 2;
  transition: border-color 0.5s ease;
  pointer-events: none;
}
.gal-item:hover::before {
  opacity: 1;
}
.gal-item:hover::after {
  border-color: rgba(255, 204, 0, 0.3);
}
.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.gal-item:hover img {
  transform: scale(1.1);
}
.gal-item--wide {
  grid-column: span 2;
}

/* ══════════════════════════════════════
   FOUNDERS / TEAM — FUTURISTIC
   ══════════════════════════════════════ */

/* ── Warm café glow on founder photo ── */
.founder-section {
  position: relative;
}
.fc-photo::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 204, 0, 0.2) 0%,
    transparent 70%
  );
  z-index: -1;
  animation: warmGlow 3s ease-in-out infinite;
}
@keyframes warmGlow {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

/* ── Subtle hover lift on cards ── */
.founder-card:hover {
  border-color: rgba(255, 204, 0, 0.2);
}
.team-card:hover {
  border-color: rgba(255, 204, 0, 0.2);
}

/* ── Stats number warm glow ── */
.fs-num {
  transition: text-shadow 0.3s ease;
}
.founder-stats:hover .fs-num {
  text-shadow:
    0 0 30px var(--glow),
    0 0 50px rgba(255, 204, 0, 0.1);
}

/* ── FOUNDER CARD ── */
.founder-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 56px;
  align-items: start;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 48px;
  margin-bottom: 56px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(10px);
}
.founder-card:hover {
  box-shadow:
    0 16px 56px rgba(0, 0, 0, 0.07),
    0 0 48px var(--glow);
}
.founder-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--amber-lt), transparent);
}
.fc-photo {
  position: relative;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  overflow: visible;
  background: var(--ink);
  box-shadow: 0 8px 32px rgba(28, 26, 21, 0.15);
  flex-shrink: 0;
  border: 4px solid var(--amber-lt);
}
.fc-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.6s ease;
  border-radius: 50%;
}
.founder-card:hover .fc-photo img {
  transform: scale(1.03);
}
.fc-badge {
  position: absolute;
  bottom: -4px;
  left: 60%;
  transform: translateX(-50%);
  background: var(--amber-lt);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 14px;
  letter-spacing: 0.1em;
  padding: 7px 18px;
  border-radius: 20px;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(232, 160, 69, 0.4);
}
.fc-name {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 6px;
}
.fc-role {
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber-dk);
  font-weight: 500;
}
.fc-divider {
  width: 48px;
  height: 2.5px;
  background: linear-gradient(90deg, var(--amber-lt), transparent);
  margin: 24px 0;
}
.fc-bio {
  font-size: 15px;
  color: var(--ink2);
  line-height: 1.9;
  margin-bottom: 14px;
}
.fc-quote {
  margin-top: 24px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  color: var(--amber-dk);
  line-height: 1.55;
  position: relative;
  padding: 20px 24px;
  border-left: 3px solid var(--amber-lt);
  background: var(--amber-bg);
  border-radius: 0 10px 10px 0;
}
.fc-quote-mark {
  font-size: 56px;
  color: var(--amber-lt);
  opacity: 0.35;
  position: absolute;
  top: -12px;
  left: 8px;
  line-height: 1;
}

/* ── FOUNDER STATS ── */
.founder-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  background: linear-gradient(135deg, rgba(255, 204, 0, 0.08), var(--glass));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  margin-bottom: 64px;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
}
.founder-stats::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--amber-lt), transparent);
}
.fs-item {
  text-align: center;
  padding: 0 40px;
}
.fs-num {
  font-family: var(--font-heading);
  font-size: clamp(32px, 3.5vw, 46px);
  color: var(--amber-lt);
  line-height: 1;
  text-shadow: 0 0 24px var(--glow);
}
.fs-label {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
  font-weight: 500;
}
.fs-divider {
  width: 1px;
  height: 44px;
  background: var(--border);
}

/* ── TEAM SECTION INTRO ── */
.team-section-intro {
  text-align: center;
  margin-bottom: 48px;
}
.team-section-intro .tag {
  margin-bottom: 12px;
}
.team-section-intro .section-h {
  margin-bottom: 12px;
}

/* ── TEAM GRID ── */
.team-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.team-card {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 0;
  align-items: center;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: visible;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.03);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  backdrop-filter: blur(10px);
  padding: 32px;
}
.team-card--reverse {
  grid-template-columns: 1fr 260px;
}
.team-card--reverse .tc-photo {
  order: 2;
}
.team-card--reverse .tc-info {
  order: 1;
}
.team-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--amber-lt), transparent);
  z-index: 1;
  opacity: 0;
  transition: var(--t);
}
.team-card:hover {
  box-shadow:
    0 16px 56px rgba(0, 0, 0, 0.07),
    0 0 40px var(--glow);
  transform: translateY(-6px);
}
.team-card:hover::before {
  opacity: 1;
}
.tc-photo {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--bg2);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 4px solid var(--amber-lt);
  margin: auto;
}
.tc-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.6s ease;
}
.team-card:hover .tc-photo img {
  transform: scale(1.05);
}
.tc-info {
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.tc-name {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 6px;
}
.tc-role {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber-dk);
  font-weight: 500;
}
.tc-divider {
  width: 36px;
  height: 2.5px;
  background: linear-gradient(90deg, var(--amber-lt), transparent);
  margin: 18px 0;
}
.tc-bio {
  font-size: 15px;
  color: var(--ink2);
  line-height: 1.85;
  margin-bottom: 12px;
}
.tc-principle {
  margin-top: 18px;
  padding: 18px 20px;
  background: var(--amber-bg);
  border-radius: 10px;
  font-size: 15px;
  color: var(--ink2);
  font-style: italic;
  line-height: 1.7;
  border-left: 3px solid var(--amber-lt);
}
.tp-label {
  display: block;
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber-dk);
  font-weight: 600;
  margin-bottom: 6px;
}

/* ── MENU CARDS ── */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.menu-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.03);
  position: relative;
  backdrop-filter: blur(10px);
}
.menu-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--amber-lt), transparent);
  transform: scaleX(0);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
}
.menu-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.08),
    0 0 40px var(--glow);
  border-color: rgba(255, 204, 0, 0.2);
}
.menu-card:hover::before {
  transform: scaleX(1);
}
.menu-card-img {
  aspect-ratio: 1.15;
  overflow: hidden;
  position: relative;
}
.menu-card-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 60%,
    rgba(15, 14, 10, 0.08) 100%
  );
  pointer-events: none;
}
.menu-card-img--icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--amber-lt), var(--amber));
}
.mc-big-icon {
  font-size: 72px;
  line-height: 1;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
}
.menu-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.menu-card:hover .menu-card-img img {
  transform: scale(1.08);
}
.menu-card-body {
  padding: 20px 22px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.mc-icon {
  font-size: 24px;
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--amber-bg);
  border-radius: 14px;
  transition: var(--t);
  border: 1px solid rgba(255, 204, 0, 0.15);
}
.menu-card:hover .mc-icon {
  background: var(--amber-lt);
  transform: scale(1.08);
  box-shadow: 0 4px 16px var(--glow-strong);
}
.mc-name {
  font-family: var(--font-heading);
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--ink);
  line-height: 1;
}
.mc-sub {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
  font-weight: 400;
  line-height: 1.5;
}

.menu-format-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}
.mf-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 36px 22px 32px;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}
.mf-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 50% 0%,
    var(--glow) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.mf-card:hover {
  border-color: rgba(255, 204, 0, 0.3);
  transform: translateY(-6px);
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.06),
    0 0 40px var(--glow);
}
.mf-card:hover::before {
  opacity: 1;
}
.mf-card--accent {
  background: linear-gradient(135deg, var(--amber-lt), var(--amber));
  border-color: transparent;
  box-shadow: 0 8px 32px var(--glow-strong);
}
.mf-card--accent:hover {
  box-shadow:
    0 16px 48px var(--glow-strong),
    0 0 60px var(--glow);
  transform: translateY(-6px);
}
.mf-card--accent::before {
  display: none;
}
.mf-card--accent .mf-name {
  color: var(--white);
}
.mf-card--accent .mf-desc {
  color: rgba(255, 255, 255, 0.85);
}
.mf-card--active {
  background: linear-gradient(135deg, var(--amber-lt), var(--amber));
  border-color: transparent;
  box-shadow: 0 8px 32px var(--glow-strong);
  transform: translateY(-6px);
}
.mf-card--active::before {
  display: none;
}
.mf-card--active .mf-name {
  color: var(--white);
}
.mf-card--active .mf-desc {
  color: rgba(255, 255, 255, 0.85);
}
.mf-icon {
  font-size: 34px;
  margin-bottom: 16px;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.mf-card:hover .mf-icon {
  transform: scale(1.2) translateY(-4px);
}
.mf-name {
  font-family: var(--font-heading);
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--ink);
  margin-bottom: 8px;
}
.mf-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
}
.menu-delivery {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}
.menu-delivery::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, var(--glow) 0%, transparent 65%);
  pointer-events: none;
}

/* ── VALUES ── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.value-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
  backdrop-filter: blur(10px);
}
.value-card:hover {
  border-color: rgba(255, 204, 0, 0.3);
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.06),
    0 0 40px var(--glow);
  transform: translateY(-6px);
}
.vc-num {
  font-family: var(--font-heading);
  font-size: 44px;
  color: var(--bg3);
  line-height: 1;
  margin-bottom: 10px;
}
.vc-icon {
  font-size: 28px;
  margin-bottom: 14px;
}
.vc-h {
  font-family: var(--font-heading);
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--ink);
  margin-bottom: 10px;
}
.vc-p {
  font-size: 14px;
  color: var(--ink2);
  line-height: 1.85;
}
.value-card--accent {
  background: var(--amber-lt);
  border-color: transparent;
  box-shadow: 0 8px 32px rgba(232, 160, 69, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 10px;
  padding: 32px 28px;
  transition: var(--t);
}
.value-card--accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(232, 160, 69, 0.4);
}
.vc-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  color: var(--white);
  line-height: 1.55;
  margin-bottom: 16px;
}
.vc-attr {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

/* ══════════════════════════════════════
   LOCATIONS
   ══════════════════════════════════════ */
.loc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.loc-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.03);
  backdrop-filter: blur(10px);
}
.loc-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 20px 56px rgba(0, 0, 0, 0.08),
    0 0 40px var(--glow);
}
.loc-img {
  aspect-ratio: 1.6;
  overflow: hidden;
  position: relative;
}
.loc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.loc-card:hover .loc-img img {
  transform: scale(1.04);
}
.loc-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: linear-gradient(135deg, var(--amber-lt), var(--amber));
  color: var(--ink);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 6px 14px;
  border-radius: 50px;
  box-shadow: 0 4px 16px var(--glow-strong);
}
.loc-body {
  padding: 20px;
}
.loc-name {
  font-family: var(--font-heading);
  font-size: 24px;
  letter-spacing: 0.04em;
  color: var(--ink);
  margin-bottom: 6px;
}
.loc-address {
  font-size: 13px;
  color: var(--ink2);
  line-height: 1.65;
}
.loc-upcoming-inner {
  background: var(--ink);
  border-radius: 12px;
  padding: 32px 40px;
  text-align: center;
}
.loc-upcoming-list {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.loc-upcoming-item {
  color: rgba(250, 248, 243, 0.8);
  font-size: 15px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}
.lui-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber-lt);
  box-shadow: 0 0 8px rgba(240, 168, 48, 0.5);
}

.offices-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.lo-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px 32px;
  text-align: center;
}
.lo-icon {
  font-size: 28px;
  margin-bottom: 8px;
}
.lo-label {
  font-family: var(--font-heading);
  font-size: 18px;
  letter-spacing: 0.04em;
  color: var(--ink);
  margin-bottom: 6px;
}
.lo-addr {
  font-size: 13px;
  color: var(--ink2);
  line-height: 1.6;
}
.lo-phone {
  font-size: 14px;
  color: var(--amber-dk);
  font-weight: 500;
  margin-top: 8px;
}
.map-wrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(28, 26, 21, 0.08);
}

/* ── WHY US ── */
.why-section {
  padding: 96px 0;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.why-list {
  display: flex;
  flex-direction: column;
}
.why-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border2);
}
.why-item:last-child {
  border-bottom: none;
}
.wi-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--amber-bg);
  border: 1px solid rgba(232, 160, 69, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--amber-dk);
  flex-shrink: 0;
  margin-top: 2px;
}
.wi-h {
  font-weight: 500;
  font-size: 15px;
  color: var(--ink);
  margin-bottom: 3px;
}
.wi-p {
  font-size: 13px;
  color: var(--ink2);
  line-height: 1.7;
}

/* ══════════════════════════════════════
   FRANCHISE
   ══════════════════════════════════════ */
/* ── FRANCHISE SLIDER ── */
.fm-slider {
  position: relative;
  overflow: hidden;
  padding: 48px 0 56px;
}
.fm-slider-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  position: relative;
  min-height: 480px;
  perspective: 1200px;
}
.franchise-models {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.fm-card {
  position: absolute;
  width: 310px;
  padding: 36px 28px;
  text-align: center;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  cursor: pointer;
}
.fm-card--accent {
  border-color: rgba(255, 204, 0, 0.25);
}

/* Queue positions — 3D depth */
.fm-card[data-pos="0"] {
  transform: translateX(-380px) translateZ(-120px) scale(0.7);
  opacity: 0.2;
  z-index: 1;
  filter: blur(3px);
  pointer-events: none;
}
.fm-card[data-pos="1"] {
  transform: translateX(-200px) translateZ(-50px) scale(0.84);
  opacity: 0.55;
  z-index: 2;
  filter: blur(1px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}
.fm-card[data-pos="2"] {
  transform: translateX(0) translateZ(0) scale(1.05);
  opacity: 1;
  z-index: 4;
  filter: none;
  box-shadow:
    0 24px 72px rgba(0, 0, 0, 0.1),
    0 0 60px var(--glow),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 204, 0, 0.2);
}
.fm-card[data-pos="3"] {
  transform: translateX(200px) translateZ(-50px) scale(0.84);
  opacity: 0.55;
  z-index: 2;
  filter: blur(1px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}
.fm-card[data-pos="4"] {
  transform: translateX(380px) translateZ(-120px) scale(0.7);
  opacity: 0.2;
  z-index: 1;
  filter: blur(3px);
  pointer-events: none;
}

/* Center card enhancements */
.fm-card[data-pos="2"] .fm-type {
  font-size: 32px;
}
.fm-card[data-pos="2"] .fm-cost {
  text-shadow: 0 0 36px var(--glow-strong);
  font-size: 40px;
}
.fm-card[data-pos="2"]::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 20%;
  right: 20%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--amber-lt), transparent);
  border-radius: 2px;
}
.fm-card[data-pos="2"].fm-card--accent {
  box-shadow:
    0 24px 72px rgba(0, 0, 0, 0.1),
    0 0 80px var(--glow-strong);
  border-color: var(--amber-lt);
}
.fm-card[data-pos="2"].fm-card--accent::before {
  left: 0;
  right: 0;
  background: var(--amber-lt);
  box-shadow: 0 0 12px var(--glow-strong);
}
.fm-popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--amber-lt);
  color: var(--white);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 99px;
  white-space: nowrap;
}
.fm-type {
  font-family: var(--font-heading);
  font-size: 28px;
  letter-spacing: 0.04em;
  color: var(--ink);
  margin-bottom: 4px;
}
.fm-area {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 16px;
}
.fm-cost {
  font-family: var(--font-heading);
  font-size: 36px;
  color: var(--amber-lt);
  line-height: 1;
  margin-bottom: 4px;
  text-shadow: 0 0 20px var(--glow);
}
.fm-label {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}
.fm-details {
  text-align: left;
}
.fm-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 8px 0;
  border-bottom: 1px solid var(--border2);
  font-size: 12px;
  gap: 8px;
}
.fm-row:last-child {
  border-bottom: none;
}
.fm-row span:first-child {
  color: var(--muted);
  font-weight: 500;
  white-space: nowrap;
}
.fm-row span:last-child {
  color: var(--ink);
  text-align: right;
}

.support-h {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  color: var(--ink);
  text-align: center;
  margin-bottom: 8px;
}
.support-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.sp-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(10px);
}
.sp-card:hover {
  border-color: rgba(255, 204, 0, 0.3);
  transform: translateY(-4px);
  box-shadow:
    0 10px 32px rgba(0, 0, 0, 0.04),
    0 0 24px var(--glow);
}
.sp-icon {
  font-size: 28px;
  margin-bottom: 10px;
}
.sp-name {
  font-family: var(--font-heading);
  font-size: 16px;
  letter-spacing: 0.04em;
  color: var(--ink);
  margin-bottom: 6px;
}
.sp-desc {
  font-size: 12px;
  color: var(--ink2);
  line-height: 1.6;
}

/* ── CTA ── */
.cta-section {
  background: var(--ink);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute;
  top: -150px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(255, 204, 0, 0.08) 0%,
    transparent 55%
  );
  pointer-events: none;
  animation: float 8s ease-in-out infinite;
}
.cta-section::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(
    circle,
    rgba(255, 204, 0, 0.05) 0%,
    transparent 55%
  );
  pointer-events: none;
  animation: float 10s ease-in-out infinite reverse;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-h {
  font-family: var(--font-display);
  font-size: clamp(34px, 3.5vw, 50px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.cta-h em {
  font-style: italic;
  color: var(--amber-lt);
}
.cta-p {
  color: rgba(250, 248, 243, 0.5);
  font-size: 16px;
  max-width: 480px;
  line-height: 1.85;
}
.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 72px;
  align-items: start;
}
.c-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}
.c-icon {
  width: 38px;
  height: 38px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
  background: var(--white);
}
.c-lbl {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.c-val {
  font-size: 14px;
  color: var(--ink);
  margin-top: 2px;
}
.contact-form-wrap {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.04);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(10px);
}
.contact-form-wrap:hover {
  box-shadow:
    0 16px 56px rgba(0, 0, 0, 0.06),
    0 0 40px var(--glow);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 16px;
}
.form-group label {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 18px;
  color: var(--ink2);
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: var(--t);
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--amber-lt);
  background: var(--white);
  box-shadow:
    0 0 0 4px var(--glow),
    0 0 20px var(--glow);
}
.form-group textarea {
  resize: vertical;
  min-height: 110px;
}
.form-group select {
  appearance: none;
  cursor: pointer;
}
.form-status {
  display: none;
  padding: 11px 15px;
  border-radius: var(--radius);
  font-size: 13px;
  margin-top: 12px;
  text-align: center;
}
.form-status.success {
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.22);
  color: #15803d;
  display: block;
}
.form-status.error {
  background: rgba(239, 68, 68, 0.06);
  border: 1px solid rgba(239, 68, 68, 0.18);
  color: #dc2626;
  display: block;
}

/* ── PRIVACY ── */
.privacy-wrap {
  max-width: 760px;
}
.privacy-content h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  letter-spacing: 0.04em;
  color: var(--ink);
  margin: 28px 0 10px;
}
.privacy-content p {
  font-size: 15px;
  color: var(--ink2);
  line-height: 1.85;
  margin-bottom: 12px;
}
.privacy-content ul {
  margin: 0 0 16px 24px;
}
.privacy-content li {
  font-size: 15px;
  color: var(--ink2);
  line-height: 1.85;
}

/* ── FOOD EMOJI STRIP ── */
.food-strip {
  overflow: hidden;
  padding: 14px 0;
  background: var(--ink);
  position: relative;
}
.food-strip::before,
.food-strip::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.food-strip::before {
  left: 0;
  background: linear-gradient(90deg, var(--ink), transparent);
}
.food-strip::after {
  right: 0;
  background: linear-gradient(270deg, var(--ink), transparent);
}
.food-strip-track {
  display: flex;
  gap: 40px;
  animation: foodScroll 20s linear infinite;
  width: max-content;
}
.fs-emoji {
  font-size: 28px;
  opacity: 0.7;
  transition: all 0.3s ease;
  cursor: default;
  filter: grayscale(0.3);
}
.fs-emoji:hover {
  opacity: 1;
  transform: scale(1.4) translateY(-4px);
  filter: grayscale(0);
}
@keyframes foodScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ── SPOTLIGHT ── */
.menu-spotlight {
  padding: 100px 0;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.menu-spotlight::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(255, 204, 0, 0.08) 0%,
    transparent 55%
  );
  animation: float 8s ease-in-out infinite;
  pointer-events: none;
}
.spotlight-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}
.spotlight-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--glow) 0%, transparent 60%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: pulse-glow 4s ease-in-out infinite;
}
.spotlight-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.spotlight-title em {
  font-style: italic;
  color: var(--amber-lt);
  text-shadow: 0 0 40px var(--glow-strong);
}
.spotlight-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.85;
  margin-bottom: 32px;
  max-width: 420px;
}
.spotlight-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1;
  box-shadow:
    0 24px 72px rgba(0, 0, 0, 0.3),
    0 0 60px var(--glow);
}
.spotlight-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s cubic-bezier(0.16, 1, 0.3, 1);
}
.spotlight-img:hover img {
  transform: scale(1.08);
}
.spotlight-img::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: var(--radius-lg);
  border: 2px solid rgba(255, 204, 0, 0.2);
  z-index: 1;
  pointer-events: none;
  animation: borderGlow 3s ease-in-out infinite;
}

/* ── MENU PILLS ── */
.menu-pills {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 44px;
  flex-wrap: wrap;
}
.menu-pill {
  padding: 10px 28px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  background: var(--glass);
  backdrop-filter: blur(8px);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  transition: var(--t);
}
.menu-pill:hover {
  border-color: rgba(255, 204, 0, 0.3);
  color: var(--ink);
}
.menu-pill--active {
  background: var(--amber-lt);
  border-color: var(--amber-lt);
  color: var(--ink);
  box-shadow: 0 4px 20px var(--glow-strong);
}

/* ── MENU CARD FILTER ANIMATION ── */
.menu-card.mc-hidden {
  opacity: 0;
  transform: scale(0.85);
  pointer-events: none;
  position: absolute;
}
.menu-card.mc-show {
  animation: mcPopIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes mcPopIn {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(16px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* ── DELIVERY PULSE ── */
.delivery-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--glow) 0%, transparent 60%);
  transform: translate(-50%, -50%);
  animation: pulse-glow 3s ease-in-out infinite;
  pointer-events: none;
}
.menu-delivery {
  position: relative;
  overflow: hidden;
}

/* ── FOOTER ── */
footer {
  background: var(--ink);
  padding: 80px 0 36px;
  position: relative;
  overflow: hidden;
}
footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--amber-lt), transparent);
}
footer::after {
  content: "";
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(
    ellipse,
    rgba(255, 204, 0, 0.04) 0%,
    transparent 60%
  );
  pointer-events: none;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--bg);
  margin-bottom: 14px;
  letter-spacing: 0.01em;
}
.footer-logo span {
  color: var(--amber-lt);
}
.footer-tag {
  color: rgba(250, 248, 243, 0.45);
  font-size: 13px;
  line-height: 1.85;
  margin-bottom: 22px;
  font-style: italic;
}
.footer-socials {
  display: flex;
  gap: 10px;
}
.soc-btn {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(250, 248, 243, 0.15);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(250, 248, 243, 0.45);
  font-size: 12px;
  transition: var(--t);
}
.soc-btn:hover {
  border-color: var(--amber-lt);
  color: var(--amber-lt);
}
.foot-col-title {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber-lt);
  margin-bottom: 18px;
}
.foot-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.foot-links li a {
  font-size: 13px;
  color: rgba(250, 248, 243, 0.45);
  transition: var(--t);
}
.foot-links li a:hover {
  color: var(--bg);
}
.foot-info {
  font-size: 13px;
  color: rgba(250, 248, 243, 0.45);
  line-height: 1.85;
}
.footer-bottom {
  border-top: 1px solid rgba(250, 248, 243, 0.08);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.foot-copy {
  font-size: 12px;
  color: rgba(250, 248, 243, 0.3);
}

/* ── ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition:
    opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition:
    opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition:
    opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}
.reveal-delay-1 {
  transition-delay: 0.12s;
}
.reveal-delay-2 {
  transition-delay: 0.24s;
}
.reveal-delay-3 {
  transition-delay: 0.36s;
}
.reveal-delay-4 {
  transition-delay: 0.48s;
}
.reveal-delay-5 {
  transition-delay: 0.6s;
}

/* ── DECORATIVE LINE ── */
.section-line {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--amber-lt), transparent);
  margin: 0 auto 20px;
}

/* ── IMAGE SHINE EFFECT ── */
.shine-hover {
  position: relative;
  overflow: hidden;
}
.shine-hover::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 40%,
    rgba(255, 255, 255, 0.2) 50%,
    transparent 60%
  );
  transform: translateX(-100%);
  transition: none;
  pointer-events: none;
}
.shine-hover:hover::after {
  transform: translateX(100%);
  transition: transform 0.8s ease;
}

/* ── FLOAT ANIMATION ── */
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.float-anim {
  animation: float 5s ease-in-out infinite;
}

/* ── PULSE GLOW ── */
@keyframes pulse-glow {
  0%,
  100% {
    box-shadow: 0 0 0 0 var(--glow-strong);
  }
  50% {
    box-shadow: 0 0 24px 6px var(--glow);
  }
}
.pulse-glow {
  animation: pulse-glow 3s ease-in-out infinite;
}

/* ── GRADIENT BORDER ANIMATION ── */
@keyframes borderGlow {
  0%,
  100% {
    border-color: rgba(255, 204, 0, 0.15);
  }
  50% {
    border-color: rgba(255, 204, 0, 0.35);
  }
}

/* ── AMBIENT ORB ── */
.ambient-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(60px);
  opacity: 0.5;
}
.ambient-orb--gold {
  background: var(--glow);
}
.ambient-orb--soft {
  background: rgba(255, 204, 0, 0.06);
}

.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--amber-lt), var(--amber));
  color: var(--ink);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 50;
  box-shadow:
    0 4px 20px var(--glow-strong),
    0 0 40px var(--glow);
  transform: translateY(16px);
}
.scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.scroll-top:hover {
  transform: translateY(-3px);
  box-shadow:
    0 8px 32px var(--glow-strong),
    0 0 60px var(--glow);
}

/* ══════════════════════════════════════
   RESPONSIVE — TABLET
   ══════════════════════════════════════ */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-imgs {
    order: -1;
  }
  .spotlight-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .spotlight-desc {
    margin-left: auto;
    margin-right: auto;
  }
  .spotlight-img {
    max-width: 400px;
    margin: 0 auto;
  }
  .founder-card {
    grid-template-columns: 260px 1fr;
    gap: 32px;
    padding: 28px;
  }
  .team-grid {
    grid-template-columns: 1fr 1fr;
  }
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .menu-format-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .loc-grid {
    grid-template-columns: 1fr 1fr;
  }
  .franchise-models {
    grid-template-columns: repeat(2, 1fr);
  }
  .support-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .why-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 180px;
  }
  .stats-grid {
    gap: 0;
  }
  .stat-block {
    padding: 0 24px;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — MOBILE
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  .section {
    padding: 64px 0;
  }
  .nav-links,
  .nav-order {
    display: none;
  }
  .nav-logo img {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  .nav-mobile-logo {
    margin-top: 16px;
    text-align: center;
  }
  .nav-mobile-logo img {
    height: 160px;
    width: auto;
  }
  .hero-title {
    font-size: clamp(44px, 10vw, 72px);
  }
  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }
  .stats-grid {
    flex-direction: column;
    gap: 24px;
  }
  .stat-divider {
    width: 48px;
    height: 1px;
  }
  .stat-block {
    padding: 0;
  }
  .founder-card {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .fc-photo {
    width: 200px;
    height: 200px;
  }
  .team-card,
  .team-card--reverse {
    grid-template-columns: 1fr;
  }
  .team-card--reverse .tc-photo {
    order: 0;
  }
  .team-card--reverse .tc-info {
    order: 0;
  }
  .tc-photo {
    max-height: 280px;
  }
  .founder-stats {
    flex-wrap: wrap;
    gap: 20px;
    padding: 28px 24px;
  }
  .fs-divider {
    display: none;
  }
  .menu-grid {
    grid-template-columns: 1fr;
  }
  .menu-format-grid {
    grid-template-columns: 1fr 1fr;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .loc-grid {
    grid-template-columns: 1fr;
  }
  .franchise-models {
    grid-template-columns: 1fr;
  }
  .fm-card {
    width: 250px;
    padding: 28px 20px;
  }
  .fm-card[data-pos="0"] {
    transform: translateX(-220px) scale(0.65);
    opacity: 0.15;
  }
  .fm-card[data-pos="1"] {
    transform: translateX(-120px) scale(0.8);
    opacity: 0.45;
  }
  .fm-card[data-pos="2"] {
    transform: translateX(0) scale(1.02);
    opacity: 1;
  }
  .fm-card[data-pos="3"] {
    transform: translateX(120px) scale(0.8);
    opacity: 0.45;
  }
  .fm-card[data-pos="4"] {
    transform: translateX(220px) scale(0.65);
    opacity: 0.15;
  }
  .fm-card[data-pos="2"] .fm-type {
    font-size: 28px;
  }
  .fm-card[data-pos="2"] .fm-cost {
    font-size: 34px;
  }
  .support-grid {
    grid-template-columns: 1fr 1fr;
  }
  .cta-inner {
    flex-direction: column;
    text-align: center;
  }
  .cta-actions {
    justify-content: center;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .loc-upcoming-list {
    gap: 16px;
    flex-direction: column;
    align-items: center;
  }
  .offices-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 150px;
  }
  .gal-item--wide {
    grid-column: span 2;
  }
  .page-header {
    padding: 130px 0 60px;
  }
  .ph-title {
    font-size: clamp(32px, 8vw, 52px);
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — SMALL MOBILE
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  .hero-title {
    font-size: 44px;
  }
  .contact-form-wrap {
    padding: 20px;
  }
  .about-badge {
    position: static;
    transform: none;
    margin-top: 16px;
    display: inline-block;
  }
  .founder-card {
    padding: 20px;
  }
  .support-grid {
    grid-template-columns: 1fr;
  }
  .menu-format-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }
  .gal-item--wide {
    grid-column: span 1;
  }
  .nav-mobile a {
    font-size: 32px;
  }
}

/* Dark mode disabled — luxury white theme */
