/* ===== MK Burger — premium static experience ===== */
:root {
  --bg: #0a0a0a;
  --bg-warm: #141414;
  --surface: #1a1a1a;
  --ink: #ffffff;
  --ink-muted: #a0a0a0;
  --accent: #ffb800;
  --accent-hover: #ff9900;
  --accent-soft: rgba(255, 184, 0, 0.15);
  --gold: #ffb800;
  --gold-soft: rgba(255, 184, 0, 0.2);
  --white: #ffffff;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.15);
  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;
  --ease: cubic-bezier(0.33, 1, 0.68, 1);
  --header-h: 80px;
  --container: min(1200px, 92vw);
  --radius: 20px;
  --radius-sm: 12px;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-hover: 0 16px 48px rgba(255, 184, 0, 0.15);
  --ease-out-expo: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background:
    radial-gradient(120% 80% at 50% -10%, rgba(255, 184, 0, 0.08) 0%, transparent 55%),
    var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

a:hover {
  color: var(--accent-hover);
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 9999;
  padding: 0.6rem 1rem;
  background: var(--ink);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 1rem;
}

/* ----- Floating actions ----- */
.float-actions {
  position: fixed;
  bottom: 1.5rem;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 1.25rem;
  pointer-events: none;
  z-index: 999;
}

@keyframes floatPulse {

  0%,
  100% {
    transform: translateY(0);
    box-shadow: var(--shadow);
  }

  50% {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  }
}

.float-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: #000;
  background: var(--accent);
  border-radius: 999px;
  pointer-events: auto;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 32px rgba(255, 184, 0, 0.3);
  animation: floatPulse 3s ease-in-out infinite;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.float-btn:hover {
  animation: none;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 40px rgba(255, 184, 0, 0.5);
  background: var(--white);
  color: #000;
}

.float-btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.float-whatsapp {
  background: #25d366;
}

.float-zomato {
  background: #e23744;
  animation-delay: 0.6s;
}

@media (max-width: 480px) {
  .float-btn span {
    display: none;
  }

  .float-btn {
    padding: 0.75rem;
  }

  .float-btn svg {
    width: 22px;
    height: 22px;
  }
}

h1,
h2,
h3 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ----- Header ----- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: transform 0.4s var(--ease-out-expo), box-shadow 0.3s var(--ease), border-color 0.3s;
}

.header.scrolled {
  border-color: var(--border);
  box-shadow: var(--shadow);
}

.header.hidden {
  transform: translateY(-100%);
}

/* Transparent header over cinematic hero */
.header--hero {
  background: transparent !important;
  border-bottom-color: transparent !important;
  box-shadow: none !important;
}

.header--hero .logo-img {
  filter: drop-shadow(0 2px 14px rgba(0, 0, 0, 0.45));
}

.header--hero .nav-menu a {
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.3);
}

.header--hero .nav-menu a:hover {
  color: var(--white);
}

.header--hero .hamburger,
.header--hero .hamburger::before,
.header--hero .hamburger::after {
  background: var(--white);
}

.header--hero .btn-nav-order {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--white);
}

.header--hero .btn-nav-order:hover {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem;
  height: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.logo {
  order: 1;
}

.nav-cta {
  order: 3;
}

.nav-toggle {
  order: 4;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}

.logo picture {
  display: block;
}

.logo-img {
  height: clamp(40px, 5.2vw, 54px);
  width: auto;
  max-width: min(210px, 46vw);
  object-fit: contain;
  display: block;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

.hamburger {
  position: relative;
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 1px;
  transition: background 0.2s;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 1px;
  transition: transform 0.25s var(--ease);
}

.hamburger::before {
  top: -7px;
}

.hamburger::after {
  top: 7px;
}

.nav-toggle[aria-expanded="true"] .hamburger {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .hamburger::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .hamburger::after {
  top: 0;
  transform: rotate(-45deg);
}

.nav-menu {
  order: 2;
  flex: 1;
  display: flex;
  list-style: none;
  gap: clamp(0.75rem, 2vw, 1.5rem);
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-menu a {
  color: var(--ink-muted);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}

.nav-menu a:hover {
  color: var(--accent);
}

.nav-cta {
  flex-shrink: 0;
}

.btn-nav-order {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 1.1rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 999px;
  transition: background 0.2s var(--ease), color 0.2s, border-color 0.2s, transform 0.2s;
}

.btn-nav-order:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: var(--white);
  transform: translateY(-1px);
}

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

  .nav-cta {
    margin-left: auto;
  }

  .nav-menu {
    flex: none;
    order: 5;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1002;
    width: 280px;
    height: 100vh;
    background: var(--surface);
    flex-direction: column;
    padding: 5rem 1.5rem 2rem;
    gap: 0;
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.08);
    transform: translateX(100%);
    transition: transform 0.3s var(--ease);
  }

  .nav-menu.active {
    transform: translateX(0);
  }

  .nav-menu li {
    border-bottom: 1px solid var(--border);
  }

  .nav-menu a {
    display: block;
    padding: 1rem 0;
    color: var(--ink);
  }
}

@media (max-width: 1024px) {
  .nav-menu {
    gap: 0.65rem 1rem;
  }
}

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s, border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.btn-primary {
  background: var(--accent);
  color: #000;
  border-color: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 184, 0, 0.25);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.btn-outline:hover {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.btn-small {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn-full {
  width: 100%;
}

.btn-whatsapp {
  background: #25d366;
  color: var(--white);
  border-color: #25d366;
}

.btn-whatsapp:hover {
  background: #1da851;
  border-color: #1da851;
  color: var(--white);
  transform: translateY(-1px);
}

/* ----- Cinematic hero: rotating imagery + film treatment ----- */
.hero-cinematic {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-h) + 2rem) 0 5rem;
  overflow: hidden;
}

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

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: heroSlideCrossfade 32s ease-in-out infinite;
  transform: scale(1.12);
}

.hero-slide:nth-child(1) {
  animation-delay: 0s;
}

.hero-slide:nth-child(2) {
  animation-delay: 8s;
}

.hero-slide:nth-child(3) {
  animation-delay: 16s;
}

.hero-slide:nth-child(4) {
  animation-delay: 24s;
}

@keyframes heroSlideCrossfade {
  0% {
    opacity: 0;
    transform: scale(1.14);
  }

  6% {
    opacity: 1;
    transform: scale(1.08);
  }

  22% {
    opacity: 1;
    transform: scale(1.02);
  }

  28% {
    opacity: 0;
    transform: scale(1);
  }

  100% {
    opacity: 0;
    transform: scale(1.12);
  }
}

.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(ellipse 85% 70% at 50% 45%, transparent 0%, rgba(0, 0, 0, 0.5) 100%);
}

.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.07;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grainShift 0.4s steps(4) infinite;
}

@keyframes grainShift {

  0%,
  100% {
    transform: translate(0, 0);
  }

  25% {
    transform: translate(-1%, 1%);
  }

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

  75% {
    transform: translate(-0.5%, -0.5%);
  }
}

.hero-shine {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(125deg, transparent 40%, rgba(255, 255, 255, 0.06) 48%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.06) 52%, transparent 60%);
  background-size: 200% 200%;
  animation: heroShine 8s ease-in-out infinite;
}

@keyframes heroShine {

  0%,
  100% {
    background-position: 0% 50%;
    opacity: 0.6;
  }

  50% {
    background-position: 100% 50%;
    opacity: 1;
  }
}

.hero-overlay-tint {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.95) 100%);
}

.hero-content {
  position: relative;
  z-index: 4;
  max-width: 920px;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
}

@keyframes heroEntrance {
  from {
    opacity: 0;
    transform: translateY(40px);
    filter: blur(12px);
  }

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

.hero-content>.hero-eyebrow,
.hero-content>.hero-kicker,
.hero-content>.hero-display,
.hero-content>.hero-lede,
.hero-content>.hero-pills,
.hero-content>.hero-pithi,
.hero-content>.hero-cta {
  opacity: 0;
  animation: heroEntrance 1.05s var(--ease-out-expo) forwards;
}

.hero-content>.hero-eyebrow {
  animation-delay: 0.15s;
}

.hero-content>.hero-kicker {
  animation-delay: 0.28s;
}

.hero-content>.hero-display {
  animation-delay: 0.4s;
}

.hero-content>.hero-lede {
  animation-delay: 0.55s;
}

.hero-content>.hero-pills {
  animation-delay: 0.68s;
}

.hero-content>.hero-pithi {
  animation-delay: 0.82s;
}

.hero-content>.hero-cta {
  animation-delay: 0.95s;
}

@keyframes heroPillIn {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.96);
  }

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

.hero-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #f0c987;
  margin-bottom: 1rem;
  padding: 0.45rem 1rem;
  border: 1px solid rgba(240, 201, 135, 0.45);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  background: rgba(0, 0, 0, 0.2);
}

.hero-kicker {
  font-family: var(--font-head);
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
  font-weight: 600;
  font-style: italic;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 0.35rem;
}

.hero-display {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  margin-bottom: 1rem;
}

.hero-display__line {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.5rem, 7vw, 4.25rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.45);
}

.hero-display__accent {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(3rem, 9vw, 5.5rem);
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, #fff8e8 0%, #f0c987 45%, #d4a24a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 6px 30px rgba(0, 0, 0, 0.4));
}

.hero-lede {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.88);
  max-width: 36rem;
  margin: 0 auto 1.25rem;
  line-height: 1.55;
}

.hero-pills {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 0.65rem;
  margin-bottom: 1rem;
}

.hero-pills li {
  opacity: 0;
  animation: heroPillIn 0.55s var(--ease-out-expo) forwards;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.9);
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  transition: border-color 0.35s, box-shadow 0.35s, transform 0.35s var(--ease-out-expo);
}

.hero-pills li:nth-child(1) {
  animation-delay: 0.72s;
}

.hero-pills li:nth-child(2) {
  animation-delay: 0.82s;
}

.hero-pills li:nth-child(3) {
  animation-delay: 0.92s;
}

.hero-pills li:nth-child(4) {
  animation-delay: 1.02s;
}

.hero-pills li:hover {
  border-color: rgba(240, 201, 135, 0.45);
  box-shadow: 0 0 24px rgba(240, 201, 135, 0.2);
  transform: translateY(-2px);
}

.hero-pithi {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 1.5rem;
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
}

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

.btn-hero-solid {
  padding: 1rem 2.5rem;
  font-size: 1.05rem;
  font-weight: 700;
  background: var(--accent);
  color: #000;
  border: none;
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 32px rgba(255, 184, 0, 0.25);
  transition: transform 0.35s var(--ease-out-expo), box-shadow 0.35s;
}

.btn-hero-solid:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 48px rgba(255, 184, 0, 0.4);
  color: #000;
}

.btn-hero-ghost {
  padding: 0.95rem 2rem;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-radius: var(--radius-sm);
  backdrop-filter: blur(8px);
  transition: background 0.3s, border-color 0.3s, transform 0.35s var(--ease-out-expo);
}

.btn-hero-ghost:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: var(--white);
  transform: translateY(-2px);
  color: var(--white);
}

.hero-scroll-cinematic {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
}

.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, rgba(240, 201, 135, 0.9), transparent);
  animation: scrollLine 2.2s ease-in-out infinite;
}

@keyframes scrollLine {

  0%,
  100% {
    transform: scaleY(1);
    opacity: 0.9;
  }

  50% {
    transform: scaleY(0.6);
    opacity: 0.4;
  }
}

@media (max-width: 900px) {
  .hero-pills li {
    font-size: 0.78rem;
    padding: 0.35rem 0.65rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide {
    animation: none;
    opacity: 0;
  }

  .hero-slide:nth-child(1) {
    opacity: 1;
    transform: scale(1.05);
  }

  .hero-grain,
  .hero-shine {
    animation: none;
  }

  .hero-content>* {
    animation: none !important;
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
  }

  .hero-pills li {
    animation: none;
  }

  .hero-scroll-line {
    animation: none;
  }
}

/* ----- Sections ----- */
.section {
  padding: 4.5rem 0;
}

.section-title {
  font-size: clamp(1.7rem, 3.5vw, 2.2rem);
  color: var(--ink);
  margin-bottom: 0.35rem;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--ink-muted);
  margin-bottom: 2rem;
  font-weight: 500;
}

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

.section-kicker {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.65rem;
}

.section-kicker--dark {
  color: var(--accent);
}

.section-kicker--gold {
  color: var(--gold);
}

.section-title--light {
  color: #faf6ef !important;
}

.section-subtitle--light {
  color: rgba(250, 246, 239, 0.72) !important;
}

/* ----- Trust strip ----- */
.trust-strip {
  position: relative;
  z-index: 2;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2rem 0;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.trust-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem 1.75rem;
}

.trust-item {
  text-align: center;
  min-width: 5rem;
}

.trust-item__value {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.1;
}

.trust-item__label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: 0.2rem;
}

.trust-item__label--long {
  text-transform: none;
  letter-spacing: 0.04em;
  font-size: 0.64rem;
  max-width: 10rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.35;
}

.trust-divider {
  width: 1px;
  height: 2rem;
  background: var(--border-strong);
  opacity: 0.7;
}

@media (max-width: 600px) {
  .trust-divider {
    display: none;
  }

  .trust-strip__inner {
    gap: 1.25rem;
  }
}

/* ----- Story ----- */
.story {
  position: relative;
  background: var(--bg-warm);
  padding: 4.5rem 0;
  border-top: 1px solid var(--border);
}

.story-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1504674900247-0877df9cc836?auto=format&fit=crop&w=1400&q=30');
  background-size: cover;
  background-position: center;
  opacity: 0.06;
}

.story .section-title {
  color: var(--ink);
}

.story .section-subtitle {
  color: var(--ink-muted);
  margin-bottom: 2rem;
}

.story--editorial {
  background: linear-gradient(165deg, #16130f 0%, #0d0b09 55%, #12100e 100%);
  border-top: none;
  border-bottom: 1px solid rgba(201, 162, 39, 0.2);
}

.story--editorial .story-bg {
  opacity: 0.04;
  filter: saturate(0.6);
}

.story--editorial .section-kicker {
  color: var(--gold);
}

.story--editorial .story-card {
  background: var(--surface);
  border-color: var(--border-strong);
}

.story--editorial .story-stats {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

.story--editorial .story-stat .stat-num,
.story--editorial .story-stat .stat-suffix {
  color: #f0d78c;
}

.story--editorial .story-stat .stat-label {
  color: rgba(255, 255, 255, 0.55);
}

.story-tagline {
  margin: 2rem auto 0;
  max-width: 32rem;
  font-size: 1.02rem;
  line-height: 1.55;
  color: rgba(232, 210, 150, 0.92);
  font-weight: 500;
}

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

.story-card {
  background: var(--surface);
  padding: 2rem 2rem 2.25rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: box-shadow 0.45s var(--ease-out-expo), transform 0.45s var(--ease-out-expo), border-color 0.3s;
}

.story-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-6px) scale(1.01);
  border-color: rgba(196, 92, 38, 0.2);
}

.story-year {
  font-family: var(--font-head);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.4rem;
  display: block;
}

.story-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: var(--ink);
}

.story-card p {
  color: var(--ink-muted);
  line-height: 1.65;
  font-size: 0.95rem;
  margin: 0;
}

.story-stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.5rem;
  padding: 2rem 1.5rem;
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

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

.story-stat .stat-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  display: block;
}

.story-stat .stat-suffix {
  color: var(--accent);
}

.story-stat .stat-label {
  font-size: 0.8rem;
  color: var(--ink-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 0.2rem;
}

.story-stats--quad {
  gap: 2rem 1.5rem;
}

.story-stats--quad .stat-label {
  text-transform: none;
  letter-spacing: 0.03em;
  font-size: 0.76rem;
  line-height: 1.35;
}

.story--editorial .story-stats--quad .story-stat {
  max-width: 11rem;
}

@media (max-width: 700px) {
  .story-timeline {
    grid-template-columns: 1fr;
  }

  .story-stats {
    gap: 1.5rem;
  }

  .story-stats--quad {
    gap: 1.25rem;
  }
}

/* ----- Scroll reveal & stagger ----- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease-out-expo), transform 0.75s var(--ease-out-expo);
}

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

.reveal.reveal-scale {
  transform: translateY(24px) scale(0.94);
}

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

.reveal.reveal-fade {
  transform: translateY(16px);
  filter: blur(6px);
  transition: opacity 0.65s var(--ease-out-expo), transform 0.65s var(--ease-out-expo), filter 0.65s var(--ease-out-expo);
}

.reveal.reveal-fade.visible {
  filter: blur(0);
  transform: translateY(0);
}

.stagger-parent {
  perspective: 1400px;
}

.stagger-parent>.stagger-child {
  opacity: 0;
  transform: translateY(40px) rotateX(5deg);
  transform-origin: center top;
  transition: opacity 0.75s var(--ease-out-expo), transform 0.75s var(--ease-out-expo);
}

.stagger-parent.is-visible>.stagger-child {
  opacity: 1;
  transform: translateY(0) rotateX(0deg);
}

.stagger-parent.is-visible>.stagger-child:nth-child(1) {
  transition-delay: 0.05s;
}

.stagger-parent.is-visible>.stagger-child:nth-child(2) {
  transition-delay: 0.12s;
}

.stagger-parent.is-visible>.stagger-child:nth-child(3) {
  transition-delay: 0.19s;
}

.stagger-parent.is-visible>.stagger-child:nth-child(4) {
  transition-delay: 0.26s;
}

.stagger-parent.is-visible>.stagger-child:nth-child(5) {
  transition-delay: 0.33s;
}

.stagger-parent.is-visible>.stagger-child:nth-child(6) {
  transition-delay: 0.4s;
}

.stagger-parent.is-visible>.stagger-child:nth-child(7) {
  transition-delay: 0.47s;
}

.stagger-parent.is-visible>.stagger-child:nth-child(8) {
  transition-delay: 0.54s;
}

.stagger-parent.is-visible>.stagger-child:nth-child(9) {
  transition-delay: 0.61s;
}

.stagger-parent.is-visible>.stagger-child:nth-child(10) {
  transition-delay: 0.68s;
}

.stagger-parent.is-visible>.stagger-child:nth-child(11) {
  transition-delay: 0.75s;
}

.stagger-parent.is-visible>.stagger-child:nth-child(12) {
  transition-delay: 0.82s;
}

@media (prefers-reduced-motion: reduce) {
  .stagger-parent>.stagger-child {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ----- About ----- */
.about {
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.about--showcase {
  position: relative;
  overflow: hidden;
}

.about-bg-glow {
  position: absolute;
  top: 10%;
  left: 50%;
  width: min(140vw, 900px);
  height: 70%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(184, 74, 30, 0.09) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.about--showcase .container {
  position: relative;
  z-index: 1;
}

.about-visual {
  position: relative;
}

.about-visual__ring {
  position: absolute;
  inset: -5px;
  border-radius: calc(var(--radius) + 6px);
  border: 2px solid rgba(201, 162, 39, 0.45);
  pointer-events: none;
  z-index: 1;
  animation: aboutRingPulse 5s ease-in-out infinite;
}

@keyframes aboutRingPulse {

  0%,
  100% {
    opacity: 0.45;
    transform: scale(1);
  }

  50% {
    opacity: 0.95;
    transform: scale(1.015);
  }
}

.about-visual__shine {
  position: absolute;
  inset: 0;
  border-radius: calc(var(--radius) - 2px);
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(135deg, transparent 35%, rgba(255, 255, 255, 0.2) 48%, transparent 62%);
  background-size: 220% 220%;
  animation: aboutShine 6s ease-in-out infinite;
  mix-blend-mode: soft-light;
}

.about-visual img {
  position: relative;
  z-index: 2;
}

@keyframes aboutShine {

  0%,
  100% {
    background-position: 0% 50%;
    opacity: 0.5;
  }

  50% {
    background-position: 100% 50%;
    opacity: 0.85;
  }
}

.about--showcase.about--inview .about-visual img {
  animation: aboutImageFloat 8s ease-in-out infinite;
}

@keyframes aboutImageFloat {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-12px) scale(1.02);
  }
}

.about-kicker {
  display: inline-block;
}

.about-kicker::after {
  content: '';
  display: block;
  height: 3px;
  width: 0;
  margin-top: 0.55rem;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  transition: width 0.85s var(--ease-out-expo);
}

.about-kicker.reveal.visible::after {
  width: 72px;
}

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

.about-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-image.about-frame {
  overflow: visible;
  box-shadow: none;
}

.about-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.about-frame {
  position: relative;
  border-radius: var(--radius);
  padding: 0.35rem;
  background: linear-gradient(145deg, rgba(201, 162, 39, 0.35) 0%, rgba(184, 74, 30, 0.08) 50%, rgba(201, 162, 39, 0.2) 100%);
  box-shadow: var(--shadow-hover);
  overflow: visible;
}

.about-frame img {
  border-radius: calc(var(--radius) - 4px);
}

.about-text {
  margin-bottom: 1rem;
  color: var(--ink-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.about-content .btn {
  margin-top: 0.5rem;
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-image {
    order: -1;
  }
}

/* ----- Menu ----- */
.menu {
  background: var(--bg);
  padding: 4.5rem 0;
  border-top: 1px solid var(--border);
}

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

.menu-card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: box-shadow 0.45s var(--ease-out-expo), transform 0.45s var(--ease-out-expo), border-color 0.3s;
}

.menu-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(196, 92, 38, 0.15);
}

.menu-card-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

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

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

.menu-grid--catalog .menu-card:hover .menu-card-image img {
  transform: scale(1.04);
}

.menu-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: var(--accent);
  color: var(--white);
  padding: 0.25rem 0.65rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: var(--radius-sm);
}

.menu-card-body {
  padding: 1.2rem 1.35rem;
}

.menu-card-body h3 {
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
  color: var(--ink);
}

.menu-desc {
  font-size: 0.875rem;
  color: var(--ink-muted);
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.menu-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.menu-price {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--accent);
}

.menu-note {
  margin-top: 1.75rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--ink-muted);
}

@media (max-width: 900px) {
  .menu-grid:not(.menu-grid--catalog) {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .menu-grid:not(.menu-grid--catalog) {
    grid-template-columns: 1fr;
  }
}

/* Menu catalog: rounded cards, dashed price rule, featured banner row */
.menu--catalog {
  background: #000000;
  border-top: 1px solid var(--border);
}

.menu-grid--catalog {
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.menu-grid--catalog .menu-card {
  display: flex;
  flex-direction: column;
  border-radius: 22px;
  border: 1px solid rgba(23, 20, 18, 0.06);
  background: var(--surface);
  box-shadow: 0 10px 36px rgba(23, 20, 18, 0.07);
  overflow: hidden;
  transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s var(--ease-out-expo);
}

.menu-grid--catalog .menu-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 56px rgba(23, 20, 18, 0.12);
  border-color: rgba(184, 74, 30, 0.12);
}

.menu-grid--catalog .menu-card-image {
  aspect-ratio: 5 / 4;
  position: relative;
}

.menu-grid--catalog .menu-card-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--gold) 100%);
  pointer-events: none;
}

.menu-grid--catalog .menu-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1.2rem 1.35rem 1.4rem;
}

.menu-grid--catalog .menu-card-body h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.menu-grid--catalog .menu-footer {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px dashed rgba(23, 20, 18, 0.14);
}

.menu-grid--catalog .menu-price {
  font-size: 1.28rem;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}

.menu-price--zomato {
  font-size: 0.78rem !important;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-muted) !important;
}

.menu-grid--catalog .menu-card .btn {
  border-radius: 999px;
  padding: 0.45rem 1.05rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.menu-grid--catalog .menu-card .btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  transform: translateY(-1px);
}

.menu-grid--catalog .menu-badge {
  top: 0.85rem;
  right: 0.85rem;
  border-radius: 999px;
  padding: 0.3rem 0.75rem;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.95);
  color: var(--accent);
  border: 1px solid rgba(184, 74, 30, 0.2);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.menu-grid--catalog .menu-card--featured {
  grid-column: 1 / -1;
  flex-direction: row;
  align-items: stretch;
  min-height: 0;
  border-radius: 24px;
  border: 1px solid rgba(201, 162, 39, 0.35);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.5) inset,
    0 20px 60px rgba(23, 20, 18, 0.12);
}

.menu-grid--catalog .menu-card--featured .menu-card-image {
  width: min(46%, 440px);
  flex-shrink: 0;
  aspect-ratio: auto;
  min-height: 220px;
}

.menu-grid--catalog .menu-card--featured .menu-card-image img {
  height: 100%;
  min-height: 240px;
  object-fit: cover;
}

.menu-grid--catalog .menu-card--featured .menu-card-body {
  justify-content: center;
  padding: 1.75rem 2rem 1.75rem 1.25rem;
}

.menu-grid--catalog .menu-card--featured .menu-card-body h3 {
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
}

.menu-note--catalog {
  margin-top: 2rem;
  padding: 1rem 1.25rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  font-size: 0.88rem;
  color: var(--ink-muted);
}

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

@media (max-width: 900px) {
  .menu-grid--catalog .menu-card--featured {
    flex-direction: column;
  }

  .menu-grid--catalog .menu-card--featured .menu-card-image {
    width: 100%;
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .menu-grid--catalog .menu-card--featured .menu-card-image img {
    min-height: 0;
    height: auto;
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 640px) {
  .menu-grid--catalog {
    grid-template-columns: 1fr;
  }
}

.menu-card--featured {
  grid-column: span 2;
  grid-row: span 1;
}

.menu-card--featured .menu-card-image {
  aspect-ratio: 21 / 9;
}

@media (max-width: 900px) {
  .menu-card--featured {
    grid-column: span 1;
  }

  .menu-card--featured .menu-card-image {
    aspect-ratio: 4/3;
  }
}

/* ----- Franchise teaser ----- */
.franchise-teaser {
  padding: 4rem 1.5rem;
  background:
    radial-gradient(ellipse 80% 120% at 80% 20%, rgba(201, 162, 39, 0.12) 0%, transparent 50%),
    linear-gradient(165deg, #1a140f 0%, #0f0d0b 100%);
  border-top: 1px solid rgba(201, 162, 39, 0.2);
  border-bottom: 1px solid rgba(201, 162, 39, 0.15);
}

.franchise-teaser__grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2rem;
  max-width: var(--container);
  margin: 0 auto;
}

.franchise-teaser__title {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3.5vw, 2.1rem);
  font-weight: 600;
  color: #faf6ef;
  margin: 0.6rem 0 0.75rem;
  line-height: 1.2;
}

.franchise-teaser__text {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 36rem;
  margin: 0;
}

.franchise-teaser__actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  flex-shrink: 0;
}

.btn-franchise {
  background: var(--gold);
  color: #1a140f;
  border-color: var(--gold);
  font-weight: 700;
  padding: 0.85rem 1.5rem;
  white-space: nowrap;
}

.btn-franchise:hover {
  background: #e0c04a;
  border-color: #e0c04a;
  color: #1a140f;
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(201, 162, 39, 0.35);
}

.btn-franchise-outline {
  background: transparent;
  color: rgba(255, 255, 255, 0.92);
  border: 2px solid rgba(255, 255, 255, 0.35);
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  text-align: center;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.btn-franchise-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
}

@media (max-width: 800px) {
  .franchise-teaser__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .franchise-teaser__actions {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* ----- Gallery ----- */
.gallery {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 4.5rem 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin: 0;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-item figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.75rem 1rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.25s, transform 0.25s;
}

.gallery-item:hover figcaption {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .gallery-grid:not(.gallery-grid--bento) {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Editorial gallery: dark stage + bento layout */
.gallery--editorial {
  background: #000000;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.gallery--editorial .section-kicker {
  color: var(--gold);
}

.gallery--editorial .section-title {
  color: #faf6ef;
}

.gallery--editorial .section-subtitle {
  color: rgba(250, 246, 239, 0.55);
}

.gallery-grid--bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: minmax(200px, 28vw) minmax(200px, 28vw) minmax(160px, 22vw);
  gap: 0.65rem;
  max-width: 1080px;
  margin: 0 auto;
}

.gallery-grid--bento .gallery-item {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
  margin: 0;
  min-height: 0;
  height: 100%;
  display: block;
}

.gallery-grid--bento .gallery-item:nth-child(1) {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
}

.gallery-grid--bento .gallery-item:nth-child(2) {
  grid-column: 3;
  grid-row: 1;
}

.gallery-grid--bento .gallery-item:nth-child(3) {
  grid-column: 4;
  grid-row: 1;
}

.gallery-grid--bento .gallery-item:nth-child(4) {
  grid-column: 3;
  grid-row: 2;
}

.gallery-grid--bento .gallery-item:nth-child(5) {
  grid-column: 4;
  grid-row: 2;
}

.gallery-grid--bento .gallery-item:nth-child(6) {
  grid-column: 1 / -1;
  grid-row: 3;
}

.gallery-grid--bento .gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 140px;
  aspect-ratio: unset;
  object-fit: cover;
  transition: transform 0.55s var(--ease-out-expo), filter 0.35s;
}

.gallery-grid--bento .gallery-item:hover img {
  transform: scale(1.05);
  filter: brightness(1.05);
}

.gallery-grid--bento .gallery-item figcaption {
  opacity: 1;
  transform: translateY(0);
  padding: 0.65rem 0.9rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.2) 30%, rgba(0, 0, 0, 0.88) 100%);
}

@media (max-width: 900px) {
  .gallery-grid--bento {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: none;
    grid-auto-rows: minmax(160px, 40vw);
  }

  .gallery-grid--bento .gallery-item:nth-child(1) {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 220px;
  }

  .gallery-grid--bento .gallery-item:nth-child(2),
  .gallery-grid--bento .gallery-item:nth-child(3),
  .gallery-grid--bento .gallery-item:nth-child(4),
  .gallery-grid--bento .gallery-item:nth-child(5) {
    grid-column: auto;
    grid-row: auto;
  }

  .gallery-grid--bento .gallery-item:nth-child(6) {
    grid-column: 1 / -1;
  }
}

@media (max-width: 520px) {
  .gallery-grid--bento {
    grid-template-columns: 1fr;
    grid-auto-rows: minmax(200px, 55vw);
  }

  .gallery-grid--bento .gallery-item:nth-child(1) {
    min-height: 240px;
  }
}

/* ----- Contact ----- */
.contact {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 4.5rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-info>p {
  margin-bottom: 1.25rem;
  color: var(--ink-muted);
  font-size: 0.98rem;
}

.branches {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.5rem 0;
}

.branch-card {
  padding: 1.25rem 1.4rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.branch-card h3 {
  font-size: 1rem;
  margin-bottom: 0.6rem;
  color: var(--ink);
}

.branch-card .contact-details {
  margin: 0 0 0.5rem 0;
  font-style: normal;
}

.branch-card .contact-details p {
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
  color: var(--ink);
}

.branch-link {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  margin-top: 0.35rem;
}

.branch-link:hover {
  text-decoration: underline;
}

.contact-extra {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--ink-muted);
}

.contact-extra a {
  color: var(--accent);
}

.map-section {
  margin-top: 1.75rem;
}

.map-heading {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--ink);
}

.map-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.map-wrap {
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.map-label {
  padding: 0.6rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  margin: 0;
  border-bottom: 1px solid var(--border);
}

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

.map-wrap .branch-link {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  border-top: 1px solid var(--border);
}

.contact-details {
  font-style: normal;
}

.contact-details p {
  margin-bottom: 0.75rem;
  color: var(--ink);
}

.contact-details a {
  color: var(--accent);
}

.contact-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.25rem;
}

@media (max-width: 600px) {
  .branches {
    grid-template-columns: 1fr;
  }

  .map-grid {
    grid-template-columns: 1fr;
  }

  .map-iframe {
    height: 180px;
  }
}

.contact-form-wrapper {
  padding: 2rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.contact-form-wrapper h3 {
  margin-bottom: 0.2rem;
  font-size: 1.2rem;
  color: var(--ink);
}

.contact-form-wrapper>p {
  color: var(--ink-muted);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}

.inquiry-form label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
  color: var(--ink);
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  padding: 0.7rem 1rem;
  margin-bottom: 0.85rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  background: #ffffff;
  color: #000000;
  border: 1px solid #ccc;
  transition: all 0.2s;
}

.inquiry-form select {
  background: #ffffff;
  color: #000000;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1.2em;
  padding-right: 3rem;
}

.inquiry-form select option {
  background: #ffffff;
  color: #000000;
}

.inquiry-form input::placeholder,
.inquiry-form textarea::placeholder {
  color: rgba(0, 0, 0, 0.4);
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.inquiry-form textarea {
  resize: vertical;
  min-height: 100px;
}

.form-status {
  margin-top: 0.6rem;
  font-size: 0.875rem;
  min-height: 1.4em;
}

.form-status.success {
  color: #0d8050;
}

.form-status.error {
  color: #b91c1c;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* ----- Footer ----- */
.footer {
  background: #000000;
  color: #ffffff;
  padding: 3.5rem 0 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 1.5rem;
  align-items: start;
}

.footer-logo {
  height: 46px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
  margin-bottom: 0.5rem;
  opacity: 0.95;
}

.footer-brand p {
  margin-top: 0.35rem;
  font-size: 0.85rem;
  opacity: 0.75;
  max-width: 16rem;
}

.footer-heading {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 0.85rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-col a {
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 500;
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-copy {
  color: #ffffff;
  opacity: 0.8;
  font-size: 0.8rem;
  text-align: center;
}

@media (max-width: 700px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* ----- Promise Section ----- */
.promise {
  background: #000000;
  padding: 5rem 0;
  border-top: 1px solid var(--border);
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.promise-card {
  padding: 2.5rem 2rem;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  text-align: center;
  transition: all 0.4s var(--ease-out-expo);
}

.promise-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent-soft);
  box-shadow: var(--shadow-hover);
}

.promise-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  display: block;
}

.promise-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.promise-card p {
  font-size: 0.95rem;
  color: var(--ink-muted);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .promise-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  /* Existing reduced motion styles */
  .reveal, .reveal.reveal-scale, .reveal.reveal-fade {
    opacity: 1; transform: none; filter: none;
  }
  .stagger-parent > .stagger-child {
    opacity: 1; transform: none;
  }
}