/* ===================================================================
   MUMS MUMS RESTAURANG — Bright, warm, photo-forward redesign
   Palette: warm cream · tomato red · basil green · honey gold
   =================================================================== */

:root {
  /* Surfaces */
  --cream:     #fbf5ea;
  --cream-2:   #fffdf8;
  --paper:     #ffffff;
  --sand:      #f3e9d7;
  --warm-line: #e7dcc6;

  /* Ink */
  --ink:       #2a2017;
  --ink-soft:  #6f6353;
  --ink-faint: #9b8f7c;

  /* Accents */
  --tomato:    #d8442b;
  --tomato-d:  #b83520;
  --basil:     #5c7a35;
  --basil-d:   #46602a;
  --honey:     #e3a23a;
  --honey-d:   #c8842a;

  /* Footer dark anchor */
  --footer:    #241a12;
  --footer-2:  #2e2218;

  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans:  "Manrope", -apple-system, "Segoe UI", system-ui, sans-serif;

  --maxw: 1280px;
  --ease: cubic-bezier(.22, .61, .36, 1);
  --shadow: 0 24px 60px -34px rgba(70, 50, 25, .45);
  --shadow-sm: 0 14px 34px -22px rgba(70, 50, 25, .4);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.7;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(20px, 5vw, 52px); }
section { position: relative; }

/* ---------- Type ---------- */
h1, h2, h3 { font-family: var(--serif); font-weight: 550; line-height: 1.04; letter-spacing: -.01em; }
.h-display { font-size: clamp(2.9rem, 7.2vw, 5.6rem); font-weight: 500; }
.h-section { font-size: clamp(2.1rem, 4.6vw, 3.5rem); }
.lead { font-size: clamp(1.06rem, 1.5vw, 1.2rem); color: var(--ink-soft); }
.accent { color: var(--tomato); }
.accent-green { color: var(--basil); }
.script { font-style: italic; font-weight: 500; }

.eyebrow {
  font-family: var(--sans);
  font-size: .76rem; font-weight: 800; letter-spacing: .22em;
  text-transform: uppercase; color: var(--tomato);
  display: inline-flex; align-items: center; gap: .7em;
}
.eyebrow::before { content: "🍅"; font-size: .9em; filter: saturate(1.1); }
.eyebrow.plain::before { content: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .6em;
  font-family: var(--sans); font-size: .82rem; font-weight: 800;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 1em 1.9em; border-radius: 999px; cursor: pointer;
  border: 2px solid transparent;
  transition: transform .35s var(--ease), background .35s, color .3s, box-shadow .35s, border-color .35s;
}
.btn svg { width: 16px; height: 16px; }
.btn-primary { background: var(--tomato); color: #fff; box-shadow: 0 14px 30px -12px rgba(216, 68, 43, .6); }
.btn-primary:hover { background: var(--tomato-d); transform: translateY(-3px); box-shadow: 0 20px 40px -12px rgba(216, 68, 43, .7); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--cream); transform: translateY(-3px); }
.btn-cream { background: var(--cream-2); color: var(--ink); }
.btn-cream:hover { background: #fff; transform: translateY(-3px); }

/* ===================================================================
   HEADER
   =================================================================== */
.site-header { position: fixed; inset: 0 0 auto 0; z-index: 100; }

/* Top utility bar */
.topbar { background: var(--tomato); color: #fff; overflow: hidden; transition: max-height .4s var(--ease), opacity .35s, padding .4s var(--ease); max-height: 48px; }
.topbar-in { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 9px 0; font-size: .78rem; font-weight: 600; letter-spacing: .02em; }
.topbar-in .tb-item { display: inline-flex; align-items: center; gap: 7px; white-space: nowrap; }
.topbar-in .tb-item svg { width: 14px; height: 14px; opacity: .9; }
.topbar-in .tb-right { display: flex; align-items: center; gap: 20px; }
.topbar-in .tb-social { display: flex; gap: 12px; }
.topbar-in .tb-social a { display: inline-flex; opacity: .9; transition: opacity .3s, transform .3s; }
.topbar-in .tb-social a:hover { opacity: 1; transform: translateY(-2px); }
.topbar-in .tb-social svg { width: 16px; height: 16px; }
.site-header.scrolled .topbar { max-height: 0; opacity: 0; padding: 0; }

/* Main nav bar */
.navbar { background: rgba(251, 245, 234, .82); backdrop-filter: blur(12px) saturate(130%); -webkit-backdrop-filter: blur(12px) saturate(130%); border-bottom: 1px solid var(--warm-line); transition: padding .4s var(--ease), background .4s, box-shadow .4s; padding: 14px 0; }
.site-header.scrolled .navbar { padding: 9px 0; background: rgba(251, 245, 234, .95); box-shadow: 0 10px 30px -24px rgba(70,50,25,.55); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 46px; height: 46px; border-radius: 50%; border: 2px solid var(--paper); box-shadow: var(--shadow-sm); }
.brand-name { font-family: var(--serif); font-size: 1.55rem; font-weight: 600; line-height: 1; color: var(--ink); }
.brand-name small { display: block; font-family: var(--sans); font-size: .56rem; letter-spacing: .34em; text-transform: uppercase; color: var(--tomato); font-weight: 800; margin-top: 4px; }

.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a { font-size: .82rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-soft); position: relative; padding: 6px 0; transition: color .3s; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 2px; background: var(--tomato); transition: width .35s var(--ease); }
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: 16px; }
.nav-cta .phone { font-size: .85rem; font-weight: 800; color: var(--ink); display: inline-flex; align-items: center; gap: 8px; }
.nav-cta .phone svg { width: 15px; height: 15px; color: var(--tomato); }

.burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.burger span { width: 24px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: .3s var(--ease); }
.burger.open span:nth-child(1){ transform: translateY(7.5px) rotate(45deg); }
.burger.open span:nth-child(2){ opacity: 0; }
.burger.open span:nth-child(3){ transform: translateY(-7.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 99; background: rgba(251, 245, 234, .98);
  backdrop-filter: blur(8px); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  opacity: 0; pointer-events: none; transform: translateY(-12px);
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.mobile-menu.open { opacity: 1; pointer-events: auto; transform: translateY(0); }
.mobile-menu a { font-family: var(--serif); font-size: 2rem; color: var(--ink); padding: 10px; }
.mobile-menu a:hover { color: var(--tomato); }
.mobile-menu .btn { margin-top: 18px; }

/* ===================================================================
   HERO — bright with photo collage
   =================================================================== */
.hero { padding: 150px 0 80px; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(60% 50% at 88% 18%, rgba(227, 162, 58, .18), transparent 60%),
    radial-gradient(50% 60% at 6% 88%, rgba(92, 122, 53, .12), transparent 60%),
    var(--cream);
}
.hero-grid { display: grid; grid-template-columns: 1.02fr 1.08fr; gap: clamp(30px, 5vw, 64px); align-items: center; }
.hero-copy .eyebrow { margin-bottom: 22px; }
.hero h1 { margin-bottom: 22px; color: var(--ink); }
.hero h1 .script { display: block; color: var(--tomato); }
.hero .lead { max-width: 44ch; margin-bottom: 34px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-rate { display: flex; align-items: center; gap: 14px; margin-top: 34px; }
.hero-rate .stars { color: var(--honey); font-size: 1.1rem; letter-spacing: 2px; }
.hero-rate .txt { font-size: .9rem; color: var(--ink-soft); }
.hero-rate .txt b { color: var(--ink); }

/* Collage */
.hero-collage { position: relative; display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; gap: 16px; }
.hero-collage .ph { border-radius: 20px; overflow: hidden; box-shadow: var(--shadow); border: 5px solid var(--paper); }
.hero-collage .ph img { width: 100%; height: 100%; object-fit: cover; }
.hero-collage .big { grid-row: span 2; aspect-ratio: 3/4.2; }
.hero-collage .small { aspect-ratio: 4/3; }
.hero-collage .small.s2 { aspect-ratio: 4/3.4; }
.hero-sticker {
  position: absolute; left: -26px; bottom: 30px; z-index: 3;
  width: 116px; height: 116px; border-radius: 50%; background: var(--tomato); color: #fff;
  display: grid; place-items: center; text-align: center; transform: rotate(-9deg);
  box-shadow: 0 20px 40px -16px rgba(216,68,43,.6); font-family: var(--serif);
}
.hero-sticker b { font-size: 1.7rem; display: block; line-height: 1; }
.hero-sticker span { font-size: .56rem; letter-spacing: .16em; text-transform: uppercase; font-family: var(--sans); font-weight: 800; margin-top: 3px; }

/* ---------- Marquee ---------- */
.marquee { background: var(--tomato); color: #fff; overflow: hidden; padding: 14px 0; }
.marquee-track { display: flex; width: max-content; animation: slide 30s linear infinite; }
.marquee-track span { font-family: var(--serif); font-style: italic; font-size: 1.4rem; padding: 0 26px; display: inline-flex; align-items: center; gap: 26px; white-space: nowrap; }
.marquee-track span::after { content: "•"; font-size: 1rem; opacity: .7; }
@keyframes slide { to { transform: translateX(-50%); } }

/* ===================================================================
   PHOTO BAND (full-width strip)
   =================================================================== */
.photo-band { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; padding: 8px 0; background: var(--sand); }
.photo-band a { display: block; overflow: hidden; aspect-ratio: 1/1; position: relative; }
.photo-band img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.photo-band a:hover img { transform: scale(1.08); }

/* ===================================================================
   SECTIONS
   =================================================================== */
.section-pad { padding: clamp(72px, 10vw, 130px) 0; }
.section-head { max-width: 680px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head .eyebrow { margin-bottom: 18px; }
.section-head h2 { margin-bottom: 18px; color: var(--ink); }

/* Features */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature {
  background: var(--paper); border: 1px solid var(--warm-line); border-radius: 22px; padding: 38px 32px;
  box-shadow: var(--shadow-sm); transition: transform .5s var(--ease), box-shadow .5s;
}
.feature:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.feature .ic { width: 60px; height: 60px; border-radius: 16px; display: grid; place-items: center; font-size: 1.8rem; margin-bottom: 22px; background: var(--cream); border: 1px solid var(--warm-line); }
.feature h3 { font-size: 1.5rem; margin-bottom: 12px; color: var(--ink); }
.feature p { color: var(--ink-soft); font-size: .98rem; }

/* Split with overlapping photos */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 84px); align-items: center; }
.split.rev .split-media { order: 2; }
.split-media { position: relative; }
.split-media .frame { border-radius: 24px; overflow: hidden; aspect-ratio: 5/6; box-shadow: var(--shadow); border: 6px solid var(--paper); }
.split-media .frame img { width: 100%; height: 100%; object-fit: cover; }
.split-media .frame-2 {
  position: absolute; right: -28px; bottom: -34px; width: 46%; aspect-ratio: 1/1;
  border-radius: 18px; overflow: hidden; border: 6px solid var(--paper); box-shadow: var(--shadow);
}
.split-media .frame-2 img { width: 100%; height: 100%; object-fit: cover; }
.split.rev .split-media .frame-2 { right: auto; left: -28px; }
.split-media .badge {
  position: absolute; left: -22px; top: -22px; z-index: 3;
  width: 116px; height: 116px; border-radius: 50%; background: var(--basil); color: #fff;
  display: grid; place-items: center; text-align: center; transform: rotate(-8deg);
  box-shadow: 0 18px 36px -16px rgba(92,122,53,.6); font-family: var(--serif);
}
.split-media .badge b { font-size: 1.9rem; display: block; line-height: 1; }
.split-media .badge span { font-size: .58rem; letter-spacing: .16em; text-transform: uppercase; font-family: var(--sans); font-weight: 800; margin-top: 3px; }
.split-copy h2 { margin-bottom: 20px; color: var(--ink); }
.split-copy p { color: var(--ink-soft); margin-bottom: 16px; }
.split-list { display: grid; gap: 13px; margin: 26px 0 32px; }
.split-list li { display: flex; gap: 13px; align-items: flex-start; font-size: .98rem; }
.split-list .tick { flex: none; width: 24px; height: 24px; border-radius: 50%; background: var(--basil); color: #fff; display: grid; place-items: center; margin-top: 2px; }
.split-list .tick svg { width: 13px; height: 13px; }

/* ===================================================================
   MENU PREVIEW cards
   =================================================================== */
.menu-preview-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.dish-card { background: var(--paper); border: 1px solid var(--warm-line); border-radius: 22px; overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .5s var(--ease), box-shadow .5s; }
.dish-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.dish-card .ph { aspect-ratio: 4/3; overflow: hidden; position: relative; }
.dish-card .ph img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.dish-card:hover .ph img { transform: scale(1.07); }
.dish-card .ph .tag { position: absolute; left: 14px; top: 14px; background: var(--tomato); color: #fff; font-size: .68rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; padding: 6px 13px; border-radius: 999px; }
.dish-card .body { padding: 24px 26px 28px; }
.dish-card .body h3 { font-size: 1.45rem; margin-bottom: 8px; color: var(--ink); }
.dish-card .body p { font-size: .92rem; color: var(--ink-soft); }

/* ===================================================================
   TIDY GALLERIES (uniform, distributed)
   =================================================================== */
/* Atmosphere — portrait tiles with captions */
.atmo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.atmo-grid a { display: block; position: relative; aspect-ratio: 4/5; border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-sm); }
.atmo-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.atmo-grid a:hover img { transform: scale(1.06); }
.atmo-grid a::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(36,26,18,.62), transparent 52%); }
.atmo-grid a span { position: absolute; left: 18px; bottom: 16px; z-index: 2; color: #fff; font-family: var(--serif); font-size: 1.25rem; font-weight: 600; }
.atmo-grid a span::before { content: ""; display: inline-block; width: 18px; height: 2px; background: var(--honey); vertical-align: middle; margin-right: 9px; }

/* Food — uniform square tiles */
.food-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.food-grid a { display: block; position: relative; aspect-ratio: 1/1; border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-sm); background: var(--paper); }
.food-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.food-grid a:hover img { transform: scale(1.06); }

/* ===================================================================
   MENU PAGE (full)
   =================================================================== */
.menu-tabs { display: flex; flex-wrap: wrap; gap: 16px 24px; justify-content: center; margin-bottom: 56px; }
.menu-tab { display: flex; flex-direction: column; align-items: center; gap: 11px; width: 100px; padding: 6px 2px; background: none; border: 0; cursor: pointer; }
.menu-tab .pic {
  width: 80px; height: 80px; border-radius: 50%; overflow: hidden;
  border: 3px solid var(--warm-line); background-color: var(--sand);
  background-size: cover; background-position: center;
  display: grid; place-items: center; box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), border-color .3s, box-shadow .3s;
}
.menu-tab .pic .em { font-size: 2rem; line-height: 1; }
.menu-tab .lbl { font-family: var(--serif); font-weight: 600; font-size: 1.02rem; line-height: 1.15; color: var(--ink-soft); transition: color .3s; }
.menu-tab:hover .pic { transform: translateY(-4px); border-color: var(--tomato); }
.menu-tab:hover .lbl { color: var(--ink); }
.menu-tab.active .pic { border-color: var(--tomato); box-shadow: 0 0 0 4px rgba(216,68,43,.16), var(--shadow-sm); }
.menu-tab.active .lbl { color: var(--tomato); }
/* emoji medallions (no photo) */
.menu-tab .pic.em-burger { background-image: linear-gradient(135deg, #d8442b, #a8281a); }
.menu-tab .pic.em-kebab  { background-image: linear-gradient(135deg, #c08a3e, #875722); }
.menu-tab .pic.em-vegan  { background-image: linear-gradient(135deg, #6d8d3f, #455e2a); }
.menu-tab .pic.em-sides  { background-image: linear-gradient(135deg, #e3a23a, #bd7c22); }
.menu-tab .pic.em-all    { background-image: linear-gradient(135deg, #2a2017, #4a3a28); }

.menu-block { margin-bottom: 60px; scroll-margin-top: 120px; }
.menu-block-head { display: flex; align-items: baseline; gap: 18px; margin-bottom: 26px; }
.menu-block-head h2 { font-size: clamp(1.8rem, 3.4vw, 2.5rem); white-space: nowrap; color: var(--ink); }
.menu-block-head .rule { flex: 1; height: 2px; background: repeating-linear-gradient(90deg, var(--warm-line) 0 8px, transparent 8px 14px); }
.menu-block-head .price-note { font-family: var(--serif); font-size: 1.5rem; color: var(--tomato); font-style: italic; white-space: nowrap; }

.menu-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 4px 50px; }
.menu-item { display: grid; grid-template-columns: 1fr auto; gap: 4px 16px; align-items: baseline; padding: 15px 0; border-bottom: 1px dashed var(--warm-line); }
.menu-item .mi-name { font-family: var(--serif); font-size: 1.22rem; font-weight: 600; color: var(--ink); }
.menu-item .mi-price { font-family: var(--serif); font-size: 1.18rem; font-weight: 600; color: var(--tomato); white-space: nowrap; }
.menu-item .mi-desc { grid-column: 1 / -1; font-size: .88rem; color: var(--ink-faint); line-height: 1.5; }
.menu-note { text-align: center; color: var(--ink-soft); font-size: .9rem; margin-top: 8px; }

/* ===================================================================
   REVIEWS (Google)
   =================================================================== */
.reviews-summary { display: inline-flex; align-items: center; gap: 14px; background: var(--paper); border: 1px solid var(--warm-line); border-radius: 999px; padding: 10px 22px; box-shadow: var(--shadow-sm); margin-top: 6px; }
.reviews-summary .g { width: 26px; height: 26px; }
.reviews-summary .stars { color: var(--honey); letter-spacing: 2px; font-size: 1.05rem; }
.reviews-summary .txt { font-size: .9rem; color: var(--ink-soft); }
.reviews-summary .txt b { color: var(--ink); font-weight: 700; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 52px; }
.review-card { background: var(--paper); border: 1px solid var(--warm-line); border-radius: 20px; padding: 30px 28px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 16px; transition: transform .5s var(--ease), box-shadow .5s; }
.review-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.review-card .top { display: flex; align-items: center; justify-content: space-between; }
.review-card .stars { color: var(--honey); letter-spacing: 1px; font-size: 1.05rem; }
.review-card .top .g { width: 22px; height: 22px; opacity: .9; }
.review-card .quote { font-family: var(--serif); font-size: 1.12rem; line-height: 1.5; color: var(--ink); }
.review-card .who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.review-card .avatar { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; font-family: var(--serif); font-weight: 600; color: #fff; font-size: 1.1rem; }
.review-card .who .name { font-weight: 700; font-size: .94rem; color: var(--ink); }
.review-card .who .src { font-size: .78rem; color: var(--ink-faint); }

/* Lunch banner */
.lunch-banner { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(24px, 4vw, 48px); align-items: center; margin-bottom: 60px; background: var(--paper); border: 1px solid var(--warm-line); border-radius: 26px; overflow: hidden; box-shadow: var(--shadow); }
.lunch-media { align-self: stretch; min-height: 260px; position: relative; }
.lunch-media img { width: 100%; height: 100%; object-fit: cover; }
.lunch-media::after { content: "Vardagar"; position: absolute; left: 16px; top: 16px; background: var(--basil); color: #fff; font-size: .68rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; padding: 6px 13px; border-radius: 999px; }
.lunch-copy { padding: clamp(28px, 4vw, 46px) clamp(28px, 4vw, 46px) clamp(28px, 4vw, 46px) 0; }
.lunch-copy .eyebrow { margin-bottom: 12px; }
.lunch-copy h2 { font-size: clamp(2.4rem, 5vw, 3.4rem); margin-bottom: 4px; color: var(--ink); }
.lunch-when { font-family: var(--serif); font-style: italic; font-size: 1.3rem; color: var(--tomato); margin-bottom: 14px; }
.lunch-copy > p { color: var(--ink-soft); margin-bottom: 18px; max-width: 52ch; }
.lunch-incl { display: flex; flex-wrap: wrap; gap: 10px 26px; }
.lunch-incl li { display: flex; gap: 10px; align-items: center; font-size: .92rem; color: var(--ink); }
.lunch-incl .tick { flex: none; width: 22px; height: 22px; border-radius: 50%; background: var(--basil); color: #fff; display: grid; place-items: center; }
.lunch-incl .tick svg { width: 12px; height: 12px; }

/* ===================================================================
   CATEGORY BANNERS (menu headers with photo + serif name)
   =================================================================== */
.cat-banner {
  position: relative; display: flex; align-items: flex-end; min-height: 132px;
  border-radius: 18px; overflow: hidden; margin-bottom: 26px;
  box-shadow: var(--shadow-sm); background-color: var(--sand);
  background-size: cover; background-position: center 40%;
}
.cat-banner::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(26,18,10,.86) 0%, rgba(26,18,10,.3) 56%, rgba(26,18,10,.08) 100%); }
.cat-banner .cat-in { position: relative; z-index: 2; display: flex; align-items: baseline; gap: 14px; width: 100%; padding: 20px 26px; }
.cat-banner .cat-in h2 { color: #fff; font-size: clamp(1.7rem, 3.2vw, 2.5rem); text-shadow: 0 2px 16px rgba(0,0,0,.45); }
.cat-banner .cat-emoji { align-self: center; font-size: 1.8rem; filter: drop-shadow(0 2px 6px rgba(0,0,0,.4)); }
.cat-banner .price-note { margin-left: auto; font-family: var(--serif); font-style: italic; font-weight: 600; font-size: 1.4rem; color: var(--honey); white-space: nowrap; }
/* fallback gradients (no photo) */
.cat-banner.no-img::after { background: linear-gradient(0deg, rgba(0,0,0,.22), rgba(255,255,255,.06)); }
.cat-banner.g-burger { background-image: linear-gradient(120deg, #d8442b, #a8281a); }
.cat-banner.g-kebab  { background-image: linear-gradient(120deg, #c08a3e, #875722); }
.cat-banner.g-vegan  { background-image: linear-gradient(120deg, #6d8d3f, #455e2a); }
.cat-banner.g-sides  { background-image: linear-gradient(120deg, #e3a23a, #bd7c22); }

/* ===================================================================
   CTA — full-bleed photo
   =================================================================== */
.cta-photo { position: relative; padding: clamp(80px, 12vw, 150px) 0; overflow: hidden; }
.cta-photo::before { content: ""; position: absolute; inset: 0; z-index: -2; background: url("../assets/images/WhatsApp-Gorsel-2025-08-19-saat-13.37.23_98565464.webp") center/cover no-repeat; transform: scale(1.05); }
.cta-photo::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(120deg, rgba(36,26,18,.9), rgba(36,26,18,.6)); }
.cta-photo .inner { max-width: 620px; }
.cta-photo .eyebrow { color: var(--honey); margin-bottom: 18px; }
.cta-photo .eyebrow::before { content: "🍅"; }
.cta-photo h2 { color: #fff; margin-bottom: 18px; }
.cta-photo p { color: rgba(255,255,255,.82); margin-bottom: 32px; max-width: 50ch; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ===================================================================
   FOOTER — warm dark anchor
   =================================================================== */
.site-footer { background: var(--footer); color: #cbbda6; padding: 78px 0 34px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 48px; padding-bottom: 52px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-brand .brand-name { color: #fff; }
.footer-brand .brand img { border-color: var(--footer-2); }
.footer-brand p { color: #a99c86; font-size: .92rem; max-width: 34ch; margin-top: 18px; }
.footer-col h4 { font-family: var(--sans); font-size: .76rem; letter-spacing: .18em; text-transform: uppercase; color: var(--honey); margin-bottom: 18px; font-weight: 800; }
.footer-col ul { display: grid; gap: 11px; }
.footer-col a, .footer-col li { color: #cbbda6; font-size: .94rem; transition: color .3s; }
.footer-col a:hover { color: #fff; }
.footer-col .row { display: flex; gap: 10px; align-items: flex-start; }
.footer-col .row svg { width: 16px; height: 16px; color: var(--honey); flex: none; margin-top: 3px; }
.socials { display: flex; gap: 12px; margin-top: 20px; }
.socials a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,.16); display: grid; place-items: center; color: #cbbda6; transition: all .35s var(--ease); }
.socials a:hover { background: var(--tomato); color: #fff; border-color: var(--tomato); transform: translateY(-3px); }
.socials a svg { width: 18px; height: 18px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding-top: 26px; flex-wrap: wrap; }
.footer-bottom p { color: #8d8070; font-size: .82rem; }

/* ===================================================================
   PAGE HERO (inner)
   =================================================================== */
.page-hero { padding: 175px 0 64px; text-align: center; position: relative; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(70% 80% at 50% 0%, rgba(227,162,58,.16), transparent 62%), var(--cream); }
.page-hero .eyebrow { margin-bottom: 20px; }
.page-hero h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); margin-bottom: 16px; color: var(--ink); }
.page-hero p { color: var(--ink-soft); max-width: 56ch; margin: 0 auto; }
.breadcrumb { margin-top: 24px; font-size: .8rem; letter-spacing: .06em; color: var(--ink-faint); text-transform: uppercase; }
.breadcrumb a:hover { color: var(--tomato); }

/* ===================================================================
   CONTACT
   =================================================================== */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(30px, 5vw, 64px); align-items: start; }
.info-card { background: var(--paper); border: 1px solid var(--warm-line); border-radius: 20px; padding: 26px 28px; margin-bottom: 16px; display: flex; gap: 18px; align-items: flex-start; box-shadow: var(--shadow-sm); transition: transform .4s var(--ease); }
.info-card:hover { transform: translateY(-4px); }
.info-card .ic { width: 50px; height: 50px; flex: none; border-radius: 14px; background: var(--cream); border: 1px solid var(--warm-line); color: var(--tomato); display: grid; place-items: center; }
.info-card .ic svg { width: 22px; height: 22px; }
.info-card h4 { font-family: var(--sans); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 6px; font-weight: 800; }
.info-card p, .info-card a { font-family: var(--serif); font-size: 1.3rem; color: var(--ink); }
.info-card a:hover { color: var(--tomato); }
.info-card .sub { font-family: var(--sans); font-size: .9rem; color: var(--ink-soft); }
.hours-table { width: 100%; }
.hours-table .row { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px dashed var(--warm-line); font-size: .96rem; }
.hours-table .row span:first-child { color: var(--ink-soft); }
.hours-table .row span:last-child { color: var(--tomato); font-weight: 600; font-family: var(--serif); font-size: 1.1rem; }

.form-card { background: var(--paper); border: 1px solid var(--warm-line); border-radius: 24px; padding: clamp(28px, 4vw, 44px); box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: .74rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 8px; font-weight: 700; }
.field input, .field select, .field textarea { width: 100%; background: var(--cream); border: 1px solid var(--warm-line); border-radius: 12px; padding: 14px 16px; color: var(--ink); font-family: var(--sans); font-size: .95rem; transition: border-color .3s, box-shadow .3s; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--tomato); box-shadow: 0 0 0 3px rgba(216,68,43,.12); background: #fff; }
.field textarea { resize: vertical; min-height: 130px; }
.form-card .btn { width: 100%; justify-content: center; margin-top: 6px; }
.form-note { font-size: .82rem; color: var(--ink-faint); text-align: center; margin-top: 14px; }
.map-wrap { border-radius: 20px; overflow: hidden; border: 6px solid var(--paper); box-shadow: var(--shadow); margin-top: 16px; }
.map-wrap iframe { width: 100%; height: 320px; border: 0; display: block; }

/* ===================================================================
   REVEAL
   =================================================================== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .85s var(--ease), transform .85s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } .marquee-track { animation: none; } html { scroll-behavior: auto; } }

/* ===================================================================
   RESPONSIVE
   =================================================================== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero-collage { max-width: 540px; }
  .features { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .menu-preview-grid { grid-template-columns: repeat(2, 1fr); }
  .photo-band { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 860px) {
  .nav-links, .nav-cta .phone { display: none; }
  .burger { display: flex; }
  .split { grid-template-columns: 1fr; }
  .split.rev .split-media { order: 0; }
  .split-media { max-width: 480px; margin: 0 auto 40px; }
  .split-media .frame-2 { width: 40%; }
  .contact-grid { grid-template-columns: 1fr; }
  .menu-list { grid-template-columns: 1fr; }
  .atmo-grid, .food-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .menu-preview-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .photo-band { grid-template-columns: repeat(2, 1fr); }
  .lunch-banner { grid-template-columns: 1fr; }
  .lunch-copy { padding: 0 24px 28px; }
  .hero-sticker { left: 8px; width: 96px; height: 96px; }
}
