/*
Theme Name: Restaurantheme
Theme URI: https://emircandumoglu.com/restaurantheme
Author: Emircan Dumoğlu
Author URI: https://emircandumoglu.com
Description: One-page restaurant WordPress theme.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: restaurantheme
Tags: one-page, restaurant, responsive, clean, minimal
*/
/* =========================
   RESET
   ========================= */
html, body { max-width: 100%; overflow-x: hidden; overscroll-behavior: none; }
*, *::before, *::after { box-sizing: border-box; }

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite,
code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt,
var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table,
caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary,
time, mark, audio, video{
  margin: 0; padding: 0; border: 0; font-size: 100%; font: inherit; vertical-align: baseline;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section{ display: block; }
body { line-height: 1; }
ol, ul { list-style: none; }

blockquote, q { quotes: none; }
blockquote::before, blockquote::after, q::before, q::after { content: ""; content: none; }

table { border-collapse: collapse; border-spacing: 0; }

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* =========================
   ROOT / VARIABLES
   ========================= */
:root{
  --container: 1100px;

  --font-head: "Playfair Display", serif;
  --font-title: var(--font-head);
  --font-body: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --font-hero: "Cinzel", serif;

  --text: #fff;
  --text-dark: #111;
  --cream: #fbf8f1;
  --white: #fff;
  --gold: #d6b36a;
  --border: rgba(255,255,255,.35);
}

/* =========================
   BASE / GLOBAL
   ========================= */
body{
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.container{
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

/* =========================
   HEADER
   ========================= */
.site-header{
  position: fixed;
  left: 0; top: 0;
  width: 100%;
  overflow: visible;
  z-index: 1000;
  background: transparent;
  padding: 18px 0;
  transition: background .25s ease, box-shadow .25s ease, padding .25s ease;
}
.site-header::after{
  content:"";
  position:absolute;
  left:0; right:0; bottom:0;
  height:1px;
  background: rgba(0,0,0,.12);
  opacity: .6;
}

.header-indicator{
  position:absolute;
  left:0; bottom:0;
  height:2px;
  width:10px;
  background: var(--gold);
  border-radius: 2px;
  transition: left .28s ease, width .28s ease, opacity .2s ease;
  opacity: 0;
  pointer-events: none;
}

.site-header.is-scrolled{
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0,0,0,.10);
  padding: 10px 0;
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.brand{
  display:inline-flex;
  align-items:center;
  gap:12px;
}

.brand-logo img{
  max-height: 38px;
  width:auto;
  transition: max-height .25s ease;
}

.site-header.is-scrolled .brand-logo img{ max-height: 28px; }

.brand-name{
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--text);
  font-size: 20px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  transition: font-size .25s ease, letter-spacing .25s ease, color .25s ease;
}
.site-header.is-scrolled .brand-name{
  color: var(--text-dark);
  font-size: 16px;
  letter-spacing: 1px;
}

/* NAV (Desktop) */
.main-nav{
  display:flex;
  align-items:center;
  gap:18px;
  position:relative;
}

.nav-link{
  position: relative;
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--text);
  font-size: 11px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding: 10px 6px;
  transition: color .25s ease, padding .25s ease, opacity .18s ease;
}
.site-header.is-scrolled .nav-link{
  color: var(--text-dark);
  padding: 8px 6px;
}
.site-header.is-scrolled .nav-link:hover{ opacity: .85; }
.nav-link.is-active{ opacity: 1; }

/* =========================
   HERO
   ========================= */
.hero{
  min-height: 100vh;
  display:grid;
  align-items:center;
  position:relative;
  background-size:cover;
  background-position:center;
  padding-top: 100px; /* fixed header offset */
}
.hero-overlay{
  position:absolute;
  inset:0;
  background: radial-gradient(circle at 30% 30%, rgba(0,0,0,.35), rgba(0,0,0,.75));
}
.hero-content{
  position:relative;
  text-align:center;
  color: var(--text);
  padding: 80px 0;
}
.hero-title{
  font-family: var(--font-hero);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.2;
  font-size: clamp(54px, 6vw, 88px);
  text-shadow: 0 18px 60px rgba(0,0,0,.35);
}
.hero-subtitle{
  font-family: var(--font-body);
  font-weight: 400;
  text-transform: uppercase;
  margin: 0 auto 28px;
  max-width: 720px;
  font-size: 12px;
  letter-spacing: 1.2px;
  opacity: .92;
}
.hero-actions{
  display:inline-flex;
  gap:14px;
  flex-wrap:wrap;
  justify-content:center;
}

/* BUTTONS (tek yerde) */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:44px;
  padding:0 22px;
  border-radius:999px;
  font-family: var(--font-body);
  font-weight:500;
  text-transform:uppercase;
  font-size:12px;
  letter-spacing:.6px;
  transition: transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s ease, background .15s ease, color .15s ease, border-color .15s ease, opacity .2s ease;
  will-change: transform;
}
.btn:hover{ transform: translateY(-2px); }
.btn:active{ transform: translateY(0); }

.btn-primary{
  background: linear-gradient(180deg, #f5e7c2, #d7b46a);
  color: #1a1a1a;
  box-shadow: 0 12px 30px rgba(0,0,0,.25);
}
.btn-primary:hover{ box-shadow: 0 18px 40px rgba(0,0,0,.30); }

.btn-ghost{
  background: rgba(0,0,0,.20);
  color:#fff;
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover{ background: rgba(255,255,255,.10); }

/* =========================
   ABOUT
   ========================= */
.about{
  background: var(--cream);
  min-height: 100vh;
  display:grid;
  align-items:center;
  padding: 110px 0;
}
.about-grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:56px;
  align-items:center;
}
.about-media{
  position:relative;
  min-height:440px;
  width:100%;
  max-width:620px;
}
.about-photo{
  position:absolute;
  overflow:hidden;
  width:100%;
  height:100%;
  box-shadow: 0 30px 80px rgba(0,0,0,.18), 0 10px 30px rgba(0,0,0,.12);
}
.about-photo img{ width:100%; height:100%; object-fit:cover; }
.about-photo--back{
  left:0; top:0;
  width:78%; height:86%;
  border-radius:14px;
  opacity:.98;
}
.about-photo--front{
  right:0; bottom:0;
  width:68%; height:72%;
  border-radius:18px;
}
.about-content{ width:100%; }

.section-label{
  font-family: var(--font-body);
  font-size:11px;
  letter-spacing:2px;
  text-transform:uppercase;
  opacity:.8;
  margin-bottom:10px;
}
.section-title{
  font-family: var(--font-head);
  font-weight:600;
  font-size: clamp(28px, 3vw, 40px);
  line-height:1.1;
  color:#1a1a1a;
}
.section-line{
  display:inline-block;
  width:68px;
  height:2px;
  background: var(--gold);
  margin: 14px 0 18px;
}
.about-text{
  font-family: var(--font-body);
  color: rgba(0,0,0,.72);
  font-size:14px;
  line-height:1.8;
  max-width:44ch;
  overflow-wrap:anywhere;
  word-break:normal;
}

/* =========================
   SERVICES
   ========================= */
.services{ background:#fff; padding:110px 0; }
.services-wrap{ text-align:center; }
.services-head{ margin-bottom:44px; }

.services-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:22px;
  align-items:stretch;
}

.service-card{
  background: var(--cream);
  border-radius:16px;
  padding:34px 22px;
  box-shadow: 0 22px 60px rgba(0,0,0,.08), 0 8px 22px rgba(0,0,0,.06);
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease;
  will-change: transform;
}
.service-card:hover{ transform: translateY(-6px); }

.service-title{
  font-family: var(--font-body);
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:2px;
  font-size:12px;
  color: rgba(0,0,0,.78);
}

.service-desc{
  margin-top:10px;
  font-family: var(--font-body);
  font-size:13px;
  line-height:1.6;
  color: rgba(0,0,0,.62);
  max-width:28ch;
  margin-left:auto;
  margin-right:auto;

  display:-webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow:hidden;
}

/* =========================
   GALLERY (Masonry)
   ========================= */
.gallery{ background:#fff; padding:110px 0; }
.gallery-wrap{ text-align:center; }
.gallery-head{ margin-bottom:44px; }

.masonry{
  column-count:3;
  column-gap:22px;
  text-align:left;
}
.masonry-item{
  display:block;
  break-inside:avoid;
  margin: 0 0 22px;
  border-radius:10px;
  overflow:hidden;
  box-shadow: 0 18px 50px rgba(0,0,0,.10), 0 6px 18px rgba(0,0,0,.08);
  transform: translateZ(0);
}
.masonry-item img{
  width:100%;
  height:auto;
  transition: transform .6s cubic-bezier(.2,.8,.2,1), filter .35s ease;
}
.masonry-item:hover img{ transform: scale(1.03); filter: saturate(1.05); }

/* =========================
   MENU (Tabbed)
   ========================= */
.menu-section{ padding:110px 0; background: var(--cream); }
.menu-head{ text-align:center; margin-bottom:28px; }

.menu-tabs{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:46px;
  margin: 22px 0 34px;
  padding-bottom:14px;
  border-bottom: 1px solid rgba(0,0,0,.08);
}

.menu-tab{
  background:transparent;
  border:none;
  padding:10px 2px;
  font-family: var(--font-body);
  font-size:16px;
  color: rgba(0,0,0,.62);
  cursor:pointer;
  position:relative;
  letter-spacing:.5px;
}
.menu-tab.is-active{ color: rgba(0,0,0,.88); }
.menu-tab.is-active::after{
  content:"";
  position:absolute;
  left:0; right:0;
  bottom:-15px;
  margin:0 auto;
  width:70px;
  height:2px;
  background: var(--gold);
  border-radius:2px;
}

.menu-body{
  display:grid;
  grid-template-columns: 1.35fr .9fr;
  gap:34px;
  align-items:start;
  margin-top:12px;
}

.menu-panels{ width:100%; }

.menu-panel{ display:none; opacity:0; transform: translateY(10px); }
.menu-panel.is-active{ display:block; }
.menu-panel.is-active.is-anim-in{
  opacity:1;
  transform: translateY(0);
  transition: opacity .45s ease, transform .55s cubic-bezier(.2,.8,.2,1);
}

.menu-list{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px 56px;
  padding-top:8px;
}

.menu-item-title{
  font-family: var(--font-title);
  font-weight:600;
  font-size:24px;
  margin:0 0 8px;
  color: rgba(0,0,0,.92);
}
.menu-item-desc{
  font-family: var(--font-body);
  font-size:14px;
  line-height:1.7;
  color: rgba(0,0,0,.68);
  margin:0;
  max-width:44ch;
}

.menu-chef-card{
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(0,0,0,.08);
  border-radius:18px;
  padding:28px 26px;
  box-shadow: 0 12px 40px rgba(0,0,0,.06);
}
.menu-chef-icon{ font-size:22px; text-align:center; opacity:.8; margin-bottom:10px; }
.menu-chef-title{ font-family: var(--font-title); font-size:28px; text-align:center; margin:0; }
.menu-chef-line{
  display:block;
  width:92px;
  height:1px;
  background: rgba(0,0,0,.12);
  margin: 16px auto 18px;
}
.menu-chef-item + .menu-chef-item{ margin-top:18px; }
.menu-chef-item-title{ font-family: var(--font-title); font-size:20px; margin:0 0 6px; color: rgba(0,0,0,.9); }
.menu-chef-item-desc{ font-family: var(--font-body); font-size:13px; line-height:1.65; margin:0; color: rgba(0,0,0,.68); }
.menu-chef-note{ margin:20px 0 0; text-align:center; font-family: var(--font-body); font-style: italic; color: rgba(0,0,0,.55); font-size:13px; }
.menu-cta{ margin-top:34px; text-align:center; }

/* =========================
   CONTACT
   ========================= */
.contact-section{ padding:110px 0; background: var(--cream); }
.contact-head{ text-align:center; margin-bottom:34px; }

.contact-sub{
  max-width:70ch;
  margin:16px auto 0;
  color: rgba(0,0,0,.65);
  line-height:1.8;
  font-size:15px;
}

.contact-grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:30px;
  align-items:stretch;
}

.contact-map{
  border-radius:18px;
  overflow:hidden;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 12px 40px rgba(0,0,0,.06);
  min-height:420px;
  background: rgba(255,255,255,.55);
}
.contact-map iframe{ display:block; width:100%; height:100%; }

.contact-map-placeholder{
  height:100%;
  display:grid;
  place-items:center;
  padding:24px;
  color: rgba(0,0,0,.6);
  text-align:center;
}

.contact-card{
  border-radius:18px;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 12px 40px rgba(0,0,0,.06);
}
.contact-card-inner{ padding:28px 26px; }

.contact-card-title{
  font-family: var(--font-title);
  font-size:28px;
  margin:0 0 14px;
  color: rgba(0,0,0,.92);
}

.contact-address{ margin:0 0 10px; color: rgba(0,0,0,.70); line-height:1.7; font-size:14px; }
.contact-wa{ margin:0 0 18px; color: rgba(0,0,0,.65); font-size:13px; }
.contact-wa-number{ color: rgba(0,0,0,.85); font-weight:600; }

.contact-label{
  display:block;
  font-size:12px;
  letter-spacing:.6px;
  color: rgba(0,0,0,.65);
  margin:10px 0 6px;
}

.contact-input, .contact-textarea{
  width:100%;
  border-radius:12px;
  margin-top:7px;
  border: 1px solid rgba(0,0,0,.12);
  background: rgba(255,255,255,.75);
  padding:12px;
  font-size:14px;
  color: rgba(0,0,0,.85);
  outline:none;
}
.contact-textarea{ resize: vertical; min-height:120px; }

.contact-form{ display:flex; flex-direction:column; }

/* contact-send tek yerde */
.contact-send{
  width:auto;
  padding:12px 28px;
  border-radius:999px;
  display:inline-flex;
  justify-content:center;
  align-items:center;
  margin-top:14px;
  align-self:flex-end;
  margin-left:auto;
}

.contact-note{
  margin:12px 0 0;
  font-size:12px;
  color: rgba(0,0,0,.55);
  text-align:center;
}

/* =========================
   FOOTER
   ========================= */
.site-footer-bottom{
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 24px;
  display:flex;
  justify-content:space-between;
  gap:16px;
  color: rgba(0,0,0,.6);
  font-size:13px;
}
.site-footer-bottom a{
  color: rgba(0,0,0,.85);
  border-bottom: 1px solid rgba(0,0,0,.25);
}
.site-footer-bottom a:hover{ border-bottom-color: rgba(0,0,0,.65); }
.site-footer-bottom p:last-child{ margin-right:10px; }

/* =========================
   404 (tek tanım)
   ========================= */
.page404{
  min-height: 100vh;
  display:grid;
  place-items:center;
  background: var(--cream);
  padding: 90px 0;
}
.page404-inner{ text-align:center; }

.page404-code{
  font-family: var(--font-title);
  font-weight:800;
  font-size: clamp(110px, 12vw, 210px);
  line-height: .92;
  letter-spacing: 2px;
  -webkit-text-stroke: 2px rgba(0,0,0,.85);
  text-stroke: 2px rgba(0,0,0,.85);
  color: rgba(212, 170, 90, .55);
  margin: 0 auto 4px;
}
.page404-text{
  font-family: var(--font-title);
  font-weight:600;
  font-size: clamp(18px, 2.2vw, 28px);
  color: rgba(0,0,0,.86);
  margin: 0 auto 26px;
  line-height:1.3;
  max-width: 32ch;
  text-align:center;
}
.page404-btn{
  display:inline-flex;
  padding:12px 28px;
  border-radius:999px;
}

/* =========================
   REVEAL / INTRO ANIMS
   ========================= */
.reveal{
  opacity:0;
  transform: translateY(18px);
  transition: opacity .65s ease, transform .75s cubic-bezier(.2,.8,.2,1);
  will-change: opacity, transform;
}
.reveal.is-in{ opacity:1; transform: translateY(0); }
.reveal--soft{ transform: translateY(12px); }
.reveal--scale{ transform: translateY(14px) scale(.985); }
.reveal--scale.is-in{ transform: translateY(0) scale(1); }
.reveal--line{ transform: scaleX(.75); transform-origin:center; opacity:0; }
.reveal--line.is-in{ opacity:1; transform: scaleX(1); }

body:not(.is-loaded) .hero-title,
body:not(.is-loaded) .hero-subtitle,
body:not(.is-loaded) .hero-actions{
  opacity:0;
  transform: translateY(18px);
}

body.is-loaded .hero-title{
  opacity:1;
  transform: translateY(0);
  transition: opacity 1.1s ease, transform 1.25s cubic-bezier(.2,.8,.2,1);
  transition-delay:.10s;
}
body.is-loaded .hero-subtitle{
  opacity:1;
  transform: translateY(0);
  transition: opacity 1.0s ease, transform 1.15s cubic-bezier(.2,.8,.2,1);
  transition-delay:.35s;
}
body.is-loaded .hero-actions{
  opacity:1;
  transform: translateY(0);
  transition: opacity 1.0s ease, transform 1.15s cubic-bezier(.2,.8,.2,1);
  transition-delay:.60s;
}
body.is-loaded .hero-actions .btn{
  opacity:0;
  transform: translateY(10px);
}
body.is-loaded .hero-actions .btn:nth-child(1){
  opacity:1; transform: translateY(0);
  transition: opacity .9s ease, transform 1.0s cubic-bezier(.2,.8,.2,1);
  transition-delay:.68s;
}
body.is-loaded .hero-actions .btn:nth-child(2){
  opacity:1; transform: translateY(0);
  transition: opacity .9s ease, transform 1.0s cubic-bezier(.2,.8,.2,1);
  transition-delay:.80s;
}

/* Header intro */
body:not(.is-loaded) .site-header .brand,
body:not(.is-loaded) .site-header .main-nav,
body:not(.is-loaded) .site-header .header-indicator{
  opacity:0;
  transform: translateY(-10px);
}
.site-header .brand,
.site-header .main-nav,
.site-header .nav-toggle{
  opacity:1;
  transform:none;
}
body.is-loaded .site-header .brand{
  opacity:1;
  transform: translateY(0);
  transition: opacity .85s ease, transform 1.0s cubic-bezier(.2,.8,.2,1);
  transition-delay:.05s;
}
body.is-loaded .site-header .main-nav{
  opacity:1;
  transform: translateY(0);
  transition: opacity .85s ease, transform 1.0s cubic-bezier(.2,.8,.2,1);
  transition-delay:.14s;
}
body.is-loaded .site-header .main-nav .nav-link{
  opacity:0;
  transform: translateY(-6px);
}
body.is-loaded .site-header .main-nav .nav-link:nth-child(1){ opacity:1; transform: translateY(0); transition: opacity .7s ease, transform .9s cubic-bezier(.2,.8,.2,1); transition-delay:.20s; }
body.is-loaded .site-header .main-nav .nav-link:nth-child(2){ opacity:1; transform: translateY(0); transition: opacity .7s ease, transform .9s cubic-bezier(.2,.8,.2,1); transition-delay:.26s; }
body.is-loaded .site-header .main-nav .nav-link:nth-child(3){ opacity:1; transform: translateY(0); transition: opacity .7s ease, transform .9s cubic-bezier(.2,.8,.2,1); transition-delay:.32s; }
body.is-loaded .site-header .main-nav .nav-link:nth-child(4){ opacity:1; transform: translateY(0); transition: opacity .7s ease, transform .9s cubic-bezier(.2,.8,.2,1); transition-delay:.38s; }
body.is-loaded .site-header .main-nav .nav-link:nth-child(5){ opacity:1; transform: translateY(0); transition: opacity .7s ease, transform .9s cubic-bezier(.2,.8,.2,1); transition-delay:.44s; }

body.is-loaded .site-header .header-indicator{
  opacity:1;
  transform: translateY(0);
  transition: opacity .7s ease, transform .9s cubic-bezier(.2,.8,.2,1);
  transition-delay:.50s;
}

/* =========================
   LIGHTBOX
   ========================= */
.lightbox{
  position:fixed;
  inset:0;
  background: rgba(0,0,0,.85);
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:9999;
  opacity:0;
  pointer-events:none;
  transition: opacity .35s ease;
}
.lightbox.is-open{ opacity:1; pointer-events:auto; }

.lightbox-img{
  max-width:92vw;
  max-height:88vh;
  transform: scale(.96);
  opacity:0;
  transition: transform .45s cubic-bezier(.2,.8,.2,1), opacity .35s ease;
  box-shadow: 0 30px 80px rgba(0,0,0,.45);
}
.lightbox.is-open .lightbox-img{ transform: scale(1); opacity:1; }

.lightbox-close{
  position:absolute;
  top:22px;
  right:24px;
  font-size:28px;
  color:#fff;
  cursor:pointer;
  opacity:.8;
  transition: opacity .2s ease;
}
.lightbox-close:hover{ opacity:1; }

body.no-scroll{ overflow:hidden; }

/* =========================
   MOBILE NAV
   ========================= */
.nav-toggle{
  display:none;
  width:42px; height:42px;
  border:0;
  background:transparent;
  border-radius:999px;
  cursor:pointer;
  align-items:center;
  justify-content:center;
}
.nav-toggle-lines{
  position:relative;
  width:22px; height:2px;
  background: var(--text);
  display:block;
  border-radius:2px;
  transition: transform .25s ease, background .25s ease;
}
.nav-toggle-lines::before,
.nav-toggle-lines::after{
  content:"";
  position:absolute;
  left:0;
  width:22px; height:2px;
  background: var(--text);
  border-radius:2px;
  transition: transform .25s ease, top .25s ease, background .25s ease, opacity .2s ease;
}
.nav-toggle-lines::before{ top:-7px; }
.nav-toggle-lines::after{ top: 7px; }

.site-header.is-scrolled .nav-toggle-lines,
.site-header.is-scrolled .nav-toggle-lines::before,
.site-header.is-scrolled .nav-toggle-lines::after{
  background: var(--text-dark);
}

.mobile-nav{
  position:fixed;
  inset:0;
  width:100vw;
  height:100dvh;
  background: rgba(0,0,0,.86);
  backdrop-filter: blur(10px);
  z-index: 100000;
  opacity:0;
  pointer-events:none;
  overflow:hidden;
  transform: scale(.985);
  transition: opacity .28s ease, transform .35s cubic-bezier(.2,.8,.2,1);
}
.mobile-nav.is-open{
  opacity:1;
  pointer-events:auto;
  transform: scale(1);
}
.mobile-nav-close{
  position:absolute;
  top:18px;
  right:18px;
  width:46px;
  height:46px;
  border:0;
  background: rgba(255,255,255,.08);
  color:#fff;
  border-radius:999px;
  cursor:pointer;
  font-size:26px;
  line-height:1;
  z-index:100001;
}
.mobile-nav-inner{
  height:100%;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:18px;
  padding: 92px 24px 40px;
  text-align:center;
  opacity:0;
  transform: translateY(10px);
  transition: opacity .35s ease, transform .45s cubic-bezier(.2,.8,.2,1);
}
.mobile-nav.is-open .mobile-nav-inner{ opacity:1; transform: translateY(0); }

.mobile-nav-link{
  color:#fff;
  font-family: var(--font-head);
  letter-spacing:1.4px;
  text-transform:uppercase;
  font-size: clamp(20px, 5.5vw, 30px);
  opacity:0;
  transform: translateY(8px);
}
.mobile-nav.is-open .mobile-nav-link{
  opacity:1;
  transform: translateY(0);
  transition: opacity .35s ease, transform .5s cubic-bezier(.2,.8,.2,1);
}

/* Body lock */
body.nav-open{
  position:fixed;
  width:100%;
  overflow:hidden;
}

/* =========================
   REDUCED MOTION
   ========================= */
@media (prefers-reduced-motion: reduce){
  .menu-panel,
  .menu-panel.is-active.is-anim-in,
  .reveal,
  .btn, .service-card, .masonry-item img,
  .lightbox, .lightbox-img{
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }

  body:not(.is-loaded) .hero-title,
  body:not(.is-loaded) .hero-subtitle,
  body:not(.is-loaded) .hero-actions,
  body.is-loaded .hero-actions .btn,
  body:not(.is-loaded) .site-header .brand,
  body:not(.is-loaded) .site-header .main-nav,
  body:not(.is-loaded) .site-header .header-indicator,
  body.is-loaded .site-header .main-nav .nav-link{
    opacity: 1 !important;
    transform: none !important;
  }
}

/* =========================
   RESPONSIVE (tek yerde)
   ========================= */
@media (max-width: 768px){
  .site-header{ padding:10px 0; }

  .main-nav{ display:none; }
  .header-indicator{ display:none; }
  .nav-toggle{ display:flex; }

  .container{
    max-width:100%;
    padding-left:16px;
    padding-right:16px;
  }

  .hero{
    min-height: 100vh;
    padding-top: 92px;
    padding-bottom: 36px;
  }
  .hero-title{ font-size: clamp(32px, 8vw, 44px); line-height:1.15; }
  .hero-subtitle{
    font-size:15px;
    max-width: 28ch;
    margin-left:auto;
    margin-right:auto;
  }
  .hero-actions{ flex-direction:column; gap:12px; }
  .hero-actions .btn{ width:100%; text-align:center; }

  section{ padding:72px 0; }

  .about-grid{ grid-template-columns:1fr; gap:32px; }
  .services-grid{ grid-template-columns:1fr; }
  .service-card{ padding:22px 18px; }
  .section-title{ font-size: clamp(26px, 7vw, 34px); }

  .masonry{ column-count:2; column-gap:12px; }

  /* MENU: mobilde tek kolon (menu-body üzerinden) */
  .menu-body{ grid-template-columns:1fr; }
  .menu-chef-card{ order:2; margin-top:18px; }
  .menu-panels, .menu-panel{ order:1; }

  /* Tab bar gizle, dropdown göster (HTML'de varsa) */
  .menu-tabs{ display:none !important; }
  .menu-tabs-select{
    display:block;
    margin: 10px auto 18px;
    max-width: 520px;
    padding: 0 16px;
  }
  .menu-tabs-select select{
    width:100%;
    height:48px;
    border-radius:14px;
    border: 1px solid rgba(0,0,0,.12);
    background: rgba(255,255,255,.75);
    backdrop-filter: blur(6px);
    font-family: var(--font-body);
    letter-spacing:.3px;
    padding:0 14px;
    outline:none;
  }

  /* CONTACT: mobilde alt alta */
  .contact-grid{ grid-template-columns:1fr; gap:18px; }
  .contact-form{ order:1; }
  .contact-map{ order:2; }

  .menu-chef-card, .contact-map, .contact-form{
    max-width:100%;
    overflow:hidden;
  }
}

@media (max-width: 480px){
  .masonry{ column-count:1; }
}
