/* ============================================
   Şile Hanımeli Antik Cafe
   Refined · Blue & White · Premium Typography
   ============================================ */

:root {
  --bg: #ffffff;
  --bg-soft: #f6f9fc;
  --bg-blue: #e9f1f7;
  --bg-deep: #0a2540;

  --ink: #0a2540;
  --ink-soft: #3c4858;
  --muted: #788896;
  --muted-soft: #9aabb8;

  --line: #e6ecf2;
  --line-soft: #eef2f6;

  --blue: #1a6fa8;
  --blue-deep: #0a2540;
  --blue-bright: #2e88c4;
  --blue-pale: #d6e6f2;
  --accent: #5fa8d3;

  --shadow-xs: 0 1px 2px rgba(10, 37, 64, 0.04);
  --shadow-sm: 0 4px 16px rgba(10, 37, 64, 0.06);
  --shadow-md: 0 12px 36px rgba(10, 37, 64, 0.10);
  --shadow-lg: 0 28px 70px rgba(10, 37, 64, 0.18);
  --shadow-xl: 0 50px 120px rgba(10, 37, 64, 0.25);

  --radius-xs: 8px;
  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 32px;
  --radius-pill: 980px;

  --container: 1200px;
  --container-narrow: 920px;

  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
*::selection { background: var(--blue-pale); color: var(--blue-deep); }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  letter-spacing: -0.011em;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: inherit;
  color: var(--ink);
  letter-spacing: -0.025em;
  line-height: 1.08;
  font-weight: 300;
}

h1 {
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 200;
  letter-spacing: -0.045em;
}
h2 {
  font-size: clamp(2.2rem, 4.6vw, 3.8rem);
  font-weight: 300;
  letter-spacing: -0.032em;
}
h3 {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: -0.018em;
}

p {
  color: var(--ink-soft);
  font-weight: 400;
}

a {
  color: var(--blue);
  text-decoration: none;
  transition: color .25s var(--ease-soft);
}
a:hover { color: var(--blue-deep); }

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}
.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 28px;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: saturate(180%) blur(24px);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
  border-bottom: 1px solid rgba(230, 236, 242, 0.5);
  transition: all .3s var(--ease-soft);
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 32px;
  min-height: 68px;
  max-width: var(--container);
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
}
.brand-text {
  font-size: 1.08rem;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.brand-text small {
  display: block;
  font-size: 0.66rem;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.18em;
  margin-top: 3px;
}

.nav-links {
  display: flex;
  gap: 38px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  color: var(--ink-soft);
  font-weight: 400;
  font-size: 0.92rem;
  letter-spacing: -0.005em;
  position: relative;
}
.nav-links a:not(.cta)::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 50%;
  width: 0; height: 1px;
  background: var(--blue);
  transition: all .3s var(--ease-soft);
  transform: translateX(-50%);
}
.nav-links a:not(.cta):hover {
  color: var(--ink);
}
.nav-links a:not(.cta):hover::after { width: 100%; }
.nav-links a.cta {
  background: var(--blue-deep);
  color: #fff;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 500;
  transition: all .3s var(--ease-soft);
}
.nav-links a.cta:hover {
  background: var(--blue);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--ink);
}
.nav-toggle svg { width: 24px; height: 24px; }

@media (max-width: 880px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 22px 28px;
    border-bottom: 1px solid var(--line);
    transform: translateY(calc(-100% - 80px));
    transition: transform .4s var(--ease-soft), visibility .4s;
    box-shadow: 0 20px 50px rgba(10, 37, 64, 0.06);
    visibility: hidden;
    max-height: calc(100vh - 64px);
    overflow-y: auto;
  }
  .nav-links.open {
    transform: translateY(0);
    visibility: visible;
  }
  .nav-links li { width: 100%; border-bottom: 1px solid var(--line-soft); }
  .nav-links li:last-child { border-bottom: none; padding-top: 8px; }
  .nav-links a { display: block; padding: 16px 4px; font-size: 1.05rem; color: var(--ink); }
  .nav-links a.cta { text-align: center; margin-top: 4px; padding: 14px 22px; }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
  padding: 120px 28px 100px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  transform: scale(1.08);
  animation: slowZoom 32s ease-out forwards;
}
@keyframes slowZoom {
  to { transform: scale(1); }
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,37,64,0.15) 0%, rgba(10,37,64,0.4) 50%, rgba(10,37,64,0.7) 100%);
  z-index: 1;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 880px;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  margin-bottom: 32px;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-pill);
}
.hero h1 {
  color: #fff;
  margin-bottom: 28px;
  font-weight: 200;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.3);
}
.hero p {
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  max-width: 580px;
  margin: 0 auto 48px;
  font-weight: 300;
  line-height: 1.6;
}
.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: var(--radius-pill);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: -0.005em;
  border: none;
  cursor: pointer;
  transition: all .3s var(--ease-soft);
  text-decoration: none;
  font-family: inherit;
}
.btn svg { transition: transform .3s var(--ease-soft); }
.btn:hover svg { transform: translateX(4px); }

.btn-primary {
  background: #fff;
  color: var(--blue-deep);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}
.btn-primary:hover {
  background: rgba(255, 255, 255, 0.96);
  color: var(--blue-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}
.btn-blue {
  background: var(--blue-deep);
  color: #fff;
}
.btn-blue:hover {
  background: var(--blue);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.scroll-cue {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.7);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  animation: bob 2.4s ease-in-out infinite;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.scroll-cue::before {
  content: '';
  width: 1px;
  height: 30px;
  background: linear-gradient(180deg, transparent 0%, rgba(255,255,255,0.6) 100%);
}
@keyframes bob {
  0%, 100% { transform: translate(-50%, 0); opacity: 0.7; }
  50% { transform: translate(-50%, 8px); opacity: 1; }
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: 160px 0;
}
.section-blue { background: var(--bg-blue); }
.section-soft { background: var(--bg-soft); }
.section-deep { background: var(--bg-deep); color: #fff; }

@media (max-width: 720px) { .section { padding: 90px 0; } }

.section-tag {
  display: inline-block;
  font-size: 0.74rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 22px;
  position: relative;
  padding-left: 32px;
}
.section-tag::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 22px;
  height: 1px;
  background: var(--blue);
}

.section-head {
  max-width: 760px;
  margin: 0 auto 90px;
  text-align: center;
}
.section-head .section-tag {
  padding-left: 0;
}
.section-head .section-tag::before { display: none; }
.section-head h2 { margin-bottom: 22px; }
.section-head .lead {
  font-size: 1.18rem;
  color: var(--ink-soft);
  font-weight: 300;
  line-height: 1.55;
  letter-spacing: -0.005em;
}

/* ============================================
   STORY (split image + text)
   ============================================ */
.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 110px;
  align-items: center;
}
.story-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}
.story-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10,37,64,0.15) 100%);
  z-index: 1;
  pointer-events: none;
}
.story-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.4s var(--ease);
}
.story:hover .story-image img { transform: scale(1.06); }

.story-text { padding: 24px 0; }
.story-text h2 { margin-bottom: 28px; }
.story-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 18px;
  font-weight: 300;
  color: var(--ink-soft);
}
.story-text p:last-child { margin-bottom: 0; }
.story-text p strong { color: var(--ink); font-weight: 500; }

.story-reverse .story-image { order: 2; }

@media (max-width: 880px) {
  .story { grid-template-columns: 1fr; gap: 56px; }
  .story-reverse .story-image { order: 0; }
  .story-image { aspect-ratio: 4/3; }
}

/* ============================================
   FEATURE BLEED
   ============================================ */
.feature-bleed {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
}
.feature-bleed-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  z-index: 0;
  transform: scale(1.05);
  transition: transform 2s var(--ease);
}
.feature-bleed:hover .feature-bleed-bg { transform: scale(1); }
.feature-bleed::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(10,37,64,0.85) 100%);
  z-index: 1;
}
.feature-bleed-inner {
  position: relative;
  z-index: 2;
  padding: 100px 28px;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
}
.feature-bleed h2 {
  color: #fff;
  max-width: 720px;
  margin-bottom: 22px;
  font-weight: 200;
  text-shadow: 0 2px 30px rgba(0,0,0,0.3);
}
.feature-bleed p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 560px;
  font-size: 1.15rem;
  font-weight: 300;
  line-height: 1.6;
}

/* ============================================
   SERVICES
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.service {
  background: var(--bg);
  padding: 64px 52px;
  transition: all .4s var(--ease-soft);
  position: relative;
}
.service:hover {
  background: var(--bg-soft);
}
.service-num {
  font-size: 0.74rem;
  letter-spacing: 0.32em;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 22px;
  display: block;
  text-transform: uppercase;
}
.service h3 {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 14px;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.service p {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.65;
  font-weight: 300;
}
@media (max-width: 720px) {
  .services-grid { grid-template-columns: 1fr; }
  .service { padding: 44px 32px; }
}

/* ============================================
   GALLERY
   ============================================ */
.gallery-stack {
  display: grid;
  gap: 90px;
}
.gallery-stack figure { margin: 0; }
.gallery-stack img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.gallery-stack figure:hover img { transform: scale(1.02); }
.gallery-stack figcaption {
  text-align: center;
  margin-top: 22px;
  font-size: 0.92rem;
  color: var(--muted);
  font-weight: 400;
  letter-spacing: 0.04em;
}

.gallery-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.gallery-pair img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
@media (max-width: 720px) {
  .gallery-pair { grid-template-columns: 1fr; }
  .gallery-stack { gap: 50px; }
}

/* ============================================
   MENU CTA
   ============================================ */
.menu-cta {
  background:
    linear-gradient(135deg, var(--bg-deep) 0%, var(--blue) 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 110px 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.menu-cta::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(95, 168, 211, 0.18) 0%, transparent 70%);
  top: -50%; right: -20%;
}
.menu-cta::after {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  bottom: -30%; left: -10%;
}
.menu-cta-inner { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }
.menu-cta h2 { color: #fff; margin-bottom: 22px; font-weight: 200; }
.menu-cta p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.15rem;
  margin-bottom: 44px;
  font-weight: 300;
  line-height: 1.6;
}
.menu-cta .btn-primary { background: #fff; color: var(--blue-deep); }
@media (max-width: 720px) { .menu-cta { padding: 70px 32px; } }

/* ============================================
   CONTACT
   ============================================ */
.contact {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 70px;
  align-items: stretch;
}
.contact-info {
  background: #fff;
  padding: 48px 44px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}
.contact-info .item {
  padding: 24px 0;
  border-bottom: 1px solid var(--line-soft);
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 20px;
  align-items: flex-start;
}
.contact-info .item:first-child { padding-top: 0; }
.contact-info .item:last-child { border-bottom: none; padding-bottom: 0; }
.contact-info .item-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--bg-blue);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}
.contact-info .item-icon svg { width: 18px; height: 18px; }
.contact-info h3 {
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin: 0 0 6px 0;
}
.contact-info .value {
  font-size: 1.05rem;
  color: var(--ink);
  font-weight: 400;
  line-height: 1.55;
}
.contact-info .value a { color: var(--ink); }
.contact-info .value a:hover { color: var(--blue); }

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 480px;
  box-shadow: var(--shadow-md);
}
.contact-map iframe { width: 100%; height: 100%; border: 0; display: block; min-height: 480px; }

@media (max-width: 880px) {
  .contact { grid-template-columns: 1fr; gap: 36px; }
  .contact-map { min-height: 380px; }
  .contact-map iframe { min-height: 380px; }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--bg-deep);
  color: rgba(255, 255, 255, 0.65);
  padding: 80px 0 36px;
}
.footer .brand-text { color: #fff; }
.footer .brand-text small { color: rgba(255, 255, 255, 0.55); }

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-top h4 {
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.footer-top p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  margin-top: 18px;
  font-weight: 300;
  max-width: 360px;
  line-height: 1.7;
}
.footer-top ul { list-style: none; }
.footer-top ul li { margin-bottom: 12px; }
.footer-top ul a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  font-weight: 300;
  transition: color .2s;
}
.footer-top ul a:hover { color: #fff; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
  padding-top: 36px;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.5);
}
.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  transition: all .3s var(--ease-soft);
}
.footer-socials a:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
  transform: translateY(-2px);
}
.footer-socials svg { width: 16px; height: 16px; }

@media (max-width: 880px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 560px) {
  .footer-top { grid-template-columns: 1fr; }
}

/* ============================================
   MENU PAGE — REFINED ACCORDION
   ============================================ */
.menu-hero {
  position: relative;
  min-height: 65vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 160px 28px 100px;
  overflow: hidden;
}
.menu-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  z-index: 0;
  transform: scale(1.05);
  animation: slowZoom 32s ease-out forwards;
}
.menu-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,37,64,0.45) 0%, rgba(10,37,64,0.75) 100%);
  z-index: 1;
}
.menu-hero-inner { position: relative; z-index: 2; max-width: 760px; }
.menu-hero h1 {
  color: #fff;
  margin-bottom: 22px;
  font-weight: 200;
}
.menu-hero p {
  color: rgba(255,255,255,0.9);
  font-size: 1.15rem;
  font-weight: 300;
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.6;
}

.menu-categories {
  padding: 110px 0 160px;
  background: var(--bg);
}

.cat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 14px;
  overflow: hidden;
  transition: all .35s var(--ease-soft);
}
.cat:hover {
  border-color: var(--blue-pale);
  box-shadow: var(--shadow-sm);
}
.cat.open {
  border-color: var(--blue-pale);
  box-shadow: var(--shadow-md);
}

.cat-trigger {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 22px 28px;
  display: grid;
  grid-template-columns: 88px 1fr auto;
  gap: 28px;
  align-items: center;
  text-align: left;
  font-family: inherit;
  transition: background .3s var(--ease-soft);
}
.cat-trigger:hover { background: var(--bg-soft); }

.cat-thumb {
  width: 88px; height: 88px;
  border-radius: 18px;
  overflow: hidden;
  background: var(--bg-blue);
  position: relative;
  box-shadow: var(--shadow-xs);
}
.cat-thumb::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10,37,64,0.2) 100%);
  pointer-events: none;
}
.cat-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .9s var(--ease);
}
.cat:hover .cat-thumb img,
.cat.open .cat-thumb img { transform: scale(1.1); }

.cat-title {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 300;
  color: var(--ink);
  letter-spacing: -0.025em;
  line-height: 1.15;
}
.cat-title small {
  display: block;
  font-size: 0.74rem;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.18em;
  margin-top: 8px;
  text-transform: uppercase;
}

.cat-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  transition: all .4s var(--ease-soft);
  flex-shrink: 0;
}
.cat-icon svg {
  width: 18px; height: 18px;
  transition: transform .4s var(--ease-soft);
}
.cat.open .cat-icon {
  background: var(--blue-deep);
  border-color: var(--blue-deep);
  color: #fff;
}
.cat.open .cat-icon svg { transform: rotate(45deg); }

.cat-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .55s var(--ease-soft);
}
.cat.open .cat-body { max-height: 6000px; }
.cat-body-inner {
  padding: 0 28px 36px;
  border-top: 1px solid var(--line-soft);
  margin-top: 0;
}

/* MENU ITEMS — premium card grid */
.menu-items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(440px, 1fr));
  gap: 20px;
  margin-top: 32px;
}
.menu-item {
  display: grid;
  grid-template-columns: 150px 1fr auto;
  gap: 26px;
  align-items: center;
  padding: 20px;
  border-radius: 20px;
  background: var(--bg-soft);
  border: 1px solid transparent;
  transition: all .35s var(--ease-soft);
}
.menu-item:hover {
  background: #fff;
  border-color: var(--line);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.menu-item-img {
  width: 150px; height: 150px;
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg-blue);
  flex-shrink: 0;
  position: relative;
}
.menu-item-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.menu-item:hover .menu-item-img img { transform: scale(1.08); }

.menu-item-text { min-width: 0; }
.menu-item h4 {
  font-size: 1.18rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -0.018em;
  line-height: 1.3;
}
.menu-item h4 .en {
  display: block;
  font-weight: 400;
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 4px;
  letter-spacing: 0.04em;
}
.menu-item .desc {
  font-size: 0.94rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.55;
}
.menu-item .price {
  font-size: 1.28rem;
  font-weight: 500;
  color: var(--blue-deep);
  letter-spacing: -0.015em;
  white-space: nowrap;
  align-self: center;
  padding-right: 8px;
  position: relative;
}

@media (max-width: 720px) {
  .cat-trigger {
    grid-template-columns: 60px 1fr auto;
    gap: 18px;
    padding: 18px 18px;
  }
  .cat-thumb { width: 60px; height: 60px; border-radius: 14px; }
  .cat-title { font-size: 1.25rem; }
  .cat-title small { font-size: 0.66rem; margin-top: 5px; }
  .cat-icon { width: 36px; height: 36px; }
  .cat-icon svg { width: 14px; height: 14px; }
  .cat-body-inner { padding: 0 18px 28px; }
  .menu-items { grid-template-columns: 1fr; gap: 14px; }
  .menu-item {
    grid-template-columns: 110px 1fr auto;
    gap: 16px;
    padding: 14px;
  }
  .menu-item-img { width: 110px; height: 110px; border-radius: 14px; }
  .menu-item h4 { font-size: 1.05rem; margin-bottom: 6px; }
  .menu-item h4 .en { font-size: 0.76rem; }
  .menu-item .desc { font-size: 0.86rem; }
  .menu-item .price { font-size: 1.12rem; }
}

/* ============================================
   QR PAGE
   ============================================ */
.qr-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 130px 28px 60px;
  background: var(--bg-soft);
}
.qr-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 70px 52px;
  text-align: center;
  max-width: 500px;
  width: 100%;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
}
.qr-card h1 {
  font-size: 1.7rem;
  margin-bottom: 8px;
  font-weight: 400;
  letter-spacing: -0.02em;
}
.qr-card .sub {
  font-size: 0.74rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 40px;
}
#qrcode {
  display: inline-block;
  padding: 20px;
  background: #fff;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  margin-bottom: 32px;
}
#qrcode img, #qrcode canvas { display: block; margin: 0 auto; }
.qr-card .scan-text {
  font-size: 1.25rem;
  color: var(--ink);
  margin-bottom: 4px;
  font-weight: 400;
}
.qr-card .scan-text-en {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 26px;
  font-weight: 300;
}
.qr-card .qr-url {
  font-size: 0.78rem;
  color: var(--muted);
  word-break: break-all;
  margin-bottom: 24px;
}
.qr-actions {
  display: flex; gap: 8px; justify-content: center; flex-wrap: wrap;
}
.qr-actions button {
  background: var(--bg-soft);
  color: var(--ink);
  border: 1px solid var(--line);
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  font-weight: 500;
  cursor: pointer;
  font-size: 0.86rem;
  transition: all .2s;
  font-family: inherit;
}
.qr-actions button:hover {
  background: var(--blue-deep);
  color: #fff;
  border-color: var(--blue-deep);
}

@media print {
  body { background: #fff; }
  .navbar, .qr-actions, .no-print { display: none !important; }
  .qr-page { padding: 0; min-height: auto; }
  .qr-card { box-shadow: none; border: 2px solid var(--ink); page-break-inside: avoid; }
}

/* ============================================
   REVEAL
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s var(--ease-soft), transform 1s var(--ease-soft);
}
.reveal.in { opacity: 1; transform: translateY(0); }

.reveal-delay-1.in { transition-delay: .1s; }
.reveal-delay-2.in { transition-delay: .2s; }
.reveal-delay-3.in { transition-delay: .3s; }

/* UTIL */
.text-center { text-align: center; }
