/* =========================================================
   SUAT USTA — Antep Sofrası, İzmir Bayraklı
   Design system v2 — ember & charcoal, butcher-ticket craft
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;0,9..144,900;1,9..144,400;1,9..144,500;1,9..144,600;1,9..144,700&family=Archivo:wght@400;500;600;700;800;900&family=Caveat:wght@600;700&display=swap');

:root{
  /* --- color tokens (all derived from the Suat Usta mark: red pepper / green stem / black ring) --- */
  --charcoal:      #140F0C;
  --charcoal-2:    #0D0A08;
  --board:         #0B0908;
  --ember:         #A6231B;
  --ember-bright:  #D8432F;
  --ember-deep:    #6E140F;
  --pepper-green:  #4F6B39;
  --pepper-green-d:#33461F;
  --bone:          #F6F1E6;
  --bone-2:        #ECE4D2;
  --chalk:         #F1ECDD;
  --ink:           #1E1912;
  --smoke:         #6E6255;
  --smoke-light:   #BBAF9B;
  --line:          rgba(30,25,18,0.13);
  --line-dark:     rgba(241,236,221,0.14);

  /* --- type --- */
  --f-display: 'Fraunces', 'Iowan Old Style', serif;
  --f-script:  'Caveat', cursive;
  --f-body:    'Archivo', -apple-system, BlinkMacSystemFont, sans-serif;

  /* --- layout --- */
  --maxw: 1220px;
  --pad: clamp(20px, 5vw, 64px);
  --nav-h: 84px;
  --ease: cubic-bezier(.16,.8,.2,1);
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; scroll-padding-top: var(--nav-h); }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *,*::before,*::after{ animation-duration:0.01ms !important; animation-iteration-count:1 !important; transition-duration:0.01ms !important; scroll-behavior:auto !important; }
}

body{
  margin:0;
  background:var(--bone);
  color:var(--ink);
  font-family:var(--f-body);
  font-size:16px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  overflow-x:clip;
}

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
button{ font-family:inherit; cursor:pointer; }
h1,h2,h3,h4{ margin:0; font-family:var(--f-display); font-weight:600; letter-spacing:-0.01em; }

.container{ max-width:var(--maxw); margin:0 auto; padding-left:var(--pad); padding-right:var(--pad); }

::selection{ background:var(--ember); color:var(--chalk); }

:focus-visible{
  outline:2px solid var(--ember-bright);
  outline-offset:3px;
}

/* -----------------------------------------------------------
   Eyebrow / labels
----------------------------------------------------------- */
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-family:var(--f-body);
  font-weight:800;
  font-size:12px;
  letter-spacing:0.18em;
  text-transform:uppercase;
  color:var(--ember);
}
.eyebrow::before{
  content:"";
  width:18px; height:10px;
  background:url('../img/pepper-mark.svg') center/contain no-repeat;
  flex:none;
}
.on-dark .eyebrow{ color:var(--ember-bright); }

/* -----------------------------------------------------------
   Buttons
----------------------------------------------------------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:16px 32px;
  border-radius:2px;
  font-family:var(--f-body);
  font-weight:700;
  font-size:14.5px;
  letter-spacing:0.02em;
  border:1.5px solid transparent;
  transition:transform .4s var(--ease), background-color .25s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease;
  white-space:nowrap;
  will-change:transform;
}
.btn-primary{
  background:var(--ember);
  color:var(--chalk);
  box-shadow:0 1px 0 rgba(0,0,0,0.2), 0 14px 28px -14px rgba(166,35,27,0.7);
}
.btn-primary:hover{ background:var(--ember-bright); }
.btn-ghost{
  background:transparent;
  color:var(--chalk);
  border-color:rgba(241,236,221,0.35);
}
.btn-ghost:hover{ border-color:var(--chalk); background:rgba(241,236,221,0.08); }
.btn-dark{ background:var(--charcoal); color:var(--chalk); }
.btn-dark:hover{ background:var(--ember); }
.btn-outline-ink{ background:transparent; color:var(--ink); border-color:var(--line); }
.btn-outline-ink:hover{ border-color:var(--ink); background:rgba(30,25,18,0.04); }
.btn-block{ width:100%; }
.btn-lg{ padding:19px 40px; font-size:15.5px; }

/* Magnetic wrapper — JS adds transform via inline style on .magnetic */
.magnetic{ display:inline-flex; }

/* =========================================================
   NAV
   ========================================================= */
.site-nav{
  position:fixed; top:0; left:0; right:0; z-index:100;
  height:var(--nav-h);
  display:flex; align-items:center;
  background:transparent;
  transition:background-color .4s ease, height .4s ease, box-shadow .4s ease, border-color .4s ease;
  border-bottom:1px solid transparent;
}
.site-nav.is-scrolled{
  background:rgba(13,10,8,0.92);
  backdrop-filter:blur(10px);
  height:68px;
  border-bottom-color:rgba(241,236,221,0.1);
  box-shadow:0 10px 30px -20px rgba(0,0,0,0.6);
}
.nav-inner{
  width:100%;
  display:flex; align-items:center; justify-content:space-between;
  max-width:var(--maxw); margin:0 auto; padding:0 var(--pad);
}
.nav-brand{ display:flex; align-items:center; gap:12px; }
.nav-brand img{ height:40px; width:40px; transition:height .4s ease, width .4s ease, transform .5s var(--ease); }
.nav-brand:hover img{ transform:rotate(-8deg); }
.site-nav.is-scrolled .nav-brand img{ height:34px; width:34px; }
.nav-brand-text{ font-family:var(--f-display); font-weight:600; font-size:19px; color:var(--chalk); line-height:1; }
.nav-brand-text small{
  display:block; font-family:var(--f-body); font-weight:700; font-size:9.5px;
  letter-spacing:0.14em; text-transform:uppercase; color:var(--smoke-light); margin-top:3px;
}
.nav-links{ display:flex; align-items:center; gap:34px; }
.nav-links a{
  font-size:13.5px; font-weight:600; letter-spacing:0.02em; color:var(--chalk);
  position:relative; padding:6px 0; opacity:0.8; transition:opacity .25s ease;
  text-transform:uppercase;
}
.nav-links a::after{
  content:""; position:absolute; left:0; right:100%; bottom:0; height:2px;
  background:var(--ember-bright); transition:right .35s var(--ease);
}
.nav-links a:hover{ opacity:1; }
.nav-links a:hover::after, .nav-links a.is-active::after{ right:0; }
.nav-links a.is-active{ opacity:1; }
.nav-cta{ display:flex; align-items:center; gap:14px; }
.nav-call{ display:flex; align-items:center; gap:8px; font-size:13.5px; font-weight:700; color:var(--chalk); opacity:0.9; }
.nav-call svg{ width:15px; height:15px; flex:none; }

.nav-toggle{
  display:none; width:44px; height:44px; border:1px solid rgba(241,236,221,0.25);
  background:transparent; border-radius:2px; position:relative; flex:none;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after{
  content:""; position:absolute; left:12px; right:12px; height:2px; background:var(--chalk);
  transition:transform .3s ease, opacity .3s ease;
}
.nav-toggle span{ top:50%; transform:translateY(-1px); }
.nav-toggle span::before{ top:-8px; }
.nav-toggle span::after{ top:8px; }
.nav-toggle.is-open span{ background:transparent; }
.nav-toggle.is-open span::before{ transform:translateY(8px) rotate(45deg); }
.nav-toggle.is-open span::after{ transform:translateY(-8px) rotate(-45deg); }

.mobile-menu{
  position:fixed; inset:0; top:0; z-index:99;
  background:var(--board);
  transform:translateY(-12px);
  opacity:0; visibility:hidden; pointer-events:none;
  transition:opacity .35s ease, transform .35s ease, visibility .35s;
  padding:110px var(--pad) 40px;
  display:flex; flex-direction:column; gap:2px;
  overflow-y:auto;
}
.mobile-menu.is-open{ opacity:1; transform:translateY(0); visibility:visible; pointer-events:auto; }
.mobile-menu a{
  font-family:var(--f-display); font-size:clamp(28px,8vw,34px); font-weight:500;
  color:var(--chalk); padding:15px 0; border-bottom:1px solid rgba(241,236,221,0.1);
}
.mobile-menu .btn{ margin-top:26px; }
.mobile-contact{ margin-top:auto; padding-top:26px; color:var(--smoke-light); font-size:14px; line-height:2; }
.mobile-contact a{ color:var(--chalk); font-weight:700; }

@media (max-width:900px){
  .nav-links, .nav-cta .nav-call, .nav-cta .btn{ display:none; }
  .nav-toggle{ display:block; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero{
  position:relative;
  min-height:100svh;
  display:flex; align-items:center;
  background:
    radial-gradient(ellipse 1000px 560px at 82% 12%, rgba(166,35,27,0.3), transparent 60%),
    radial-gradient(ellipse 700px 500px at 6% 96%, rgba(79,107,57,0.16), transparent 55%),
    linear-gradient(180deg, var(--charcoal-2) 0%, var(--charcoal) 55%, var(--board) 100%);
  overflow:hidden;
  padding-top:var(--nav-h);
}
.hero::before{
  content:"";
  position:absolute; inset:0;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.045'/%3E%3C/svg%3E");
  mix-blend-mode:overlay; pointer-events:none;
}
.hero-glow{
  position:absolute; width:520px; height:520px; border-radius:50%;
  background:radial-gradient(circle, rgba(216,67,47,0.16), transparent 70%);
  top:-120px; right:-80px; pointer-events:none; filter:blur(10px);
  transition:transform .4s ease-out;
}
.embers{ position:absolute; inset:0; pointer-events:none; overflow:hidden; }
.ember-dot{
  position:absolute; bottom:-10px; width:4px; height:4px; border-radius:50%;
  background:var(--ember-bright); box-shadow:0 0 8px 2px rgba(216,67,47,0.8);
  animation:rise linear infinite; opacity:0;
}
@keyframes rise{
  0%{ transform:translateY(0) translateX(0); opacity:0; }
  8%{ opacity:0.9; } 85%{ opacity:0.5; }
  100%{ transform:translateY(-92vh) translateX(var(--drift,20px)); opacity:0; }
}

.hero-flame{
  position:absolute; right:-6%; top:8%; width:min(48vw, 640px); opacity:0.5;
  pointer-events:none; mix-blend-mode:screen;
}
.hero-flame path{ animation:flicker 5s ease-in-out infinite; transform-origin:50% 100%; }
.hero-flame path:nth-child(2){ animation-delay:.6s; animation-duration:6.2s; }
.hero-flame path:nth-child(3){ animation-delay:1.2s; animation-duration:4.6s; }
@keyframes flicker{
  0%,100%{ transform:scaleY(1) scaleX(1) skewX(0deg); }
  30%{ transform:scaleY(1.04) scaleX(0.98) skewX(-1deg); }
  60%{ transform:scaleY(0.97) scaleX(1.02) skewX(1deg); }
}

.hero-inner{
  position:relative; z-index:2;
  width:100%; max-width:var(--maxw); margin:0 auto;
  padding:0 var(--pad);
  display:grid; grid-template-columns:1.15fr 0.66fr; gap:56px; align-items:center;
  padding-top:44px; padding-bottom:76px;
}

.seal{
  position:relative;
  width:132px; height:132px;
  margin-bottom:36px;
}
.seal-ring{
  position:absolute; inset:0; animation:seal-spin 26s linear infinite;
}
.seal-ring text{
  font-family:var(--f-body); font-weight:800; font-size:8.6px; letter-spacing:0.28em;
  fill:var(--smoke-light); text-transform:uppercase;
}
.seal-core{
  position:absolute; inset:18px; background:var(--bone); border-radius:50%;
  display:flex; align-items:center; justify-content:center; padding:12px;
  box-shadow:0 20px 44px -18px rgba(0,0,0,0.6);
}
.seal-core img{ width:100%; }
@keyframes seal-spin{ from{ transform:rotate(0deg); } to{ transform:rotate(360deg); } }
@media (prefers-reduced-motion: reduce){ .seal-ring{ animation:none; } }

.hero-kicker{
  font-family:var(--f-body); font-weight:800; font-size:12.5px; letter-spacing:0.2em;
  text-transform:uppercase; color:var(--smoke-light);
  display:flex; align-items:center; gap:10px; margin-bottom:22px;
}
.hero-kicker .dot{ width:6px; height:6px; border-radius:50%; background:var(--ember-bright); box-shadow:0 0 10px 2px rgba(216,67,47,.8); }

.hero h1{
  color:var(--chalk);
  font-size:clamp(44px, 6vw, 80px);
  line-height:1.0;
  font-weight:600;
  max-width:15ch;
}
.hero h1 .accent{
  font-style:italic; font-weight:500; color:var(--ember-bright);
}
.hero-lede{ margin-top:26px; color:var(--smoke-light); font-size:18px; max-width:46ch; line-height:1.7; }
.hero-actions{ display:flex; flex-wrap:wrap; gap:16px; margin-top:38px; }

.hero-stats{ display:flex; flex-direction:column; gap:0; border-left:1px solid rgba(241,236,221,0.14); padding-left:40px; }
.hero-stat{ padding:18px 0; border-bottom:1px solid rgba(241,236,221,0.1); }
.hero-stat:first-child{ padding-top:0; }
.hero-stat:last-child{ border-bottom:none; }
.hero-stat .num{ font-family:var(--f-display); font-size:38px; color:var(--chalk); font-weight:600; display:flex; align-items:baseline; gap:4px; }
.hero-stat .num span{ font-size:19px; color:var(--ember-bright); font-weight:600; }
.hero-stat .label{ font-size:12.5px; color:var(--smoke-light); letter-spacing:0.03em; margin-top:4px; }

.scroll-cue{
  position:absolute; left:50%; bottom:26px; transform:translateX(-50%);
  display:flex; flex-direction:column; align-items:center; gap:8px;
  color:var(--smoke-light); font-size:10.5px; letter-spacing:0.2em; text-transform:uppercase;
  z-index:2; opacity:0.7;
}
.scroll-cue .line{ width:1px; height:28px; background:linear-gradient(180deg, var(--smoke-light), transparent); animation:cue 2.2s ease-in-out infinite; }
@keyframes cue{ 0%{ transform:scaleY(0.3); transform-origin:top; } 50%{ transform:scaleY(1); transform-origin:top; } 100%{ transform:scaleY(0.3); transform-origin:bottom; } }

@media (max-width:900px){
  .hero-inner{ grid-template-columns:1fr; padding-top:28px; padding-bottom:56px; }
  .hero-stats{ border-left:none; border-top:1px solid rgba(241,236,221,0.14); padding-left:0; padding-top:24px; flex-direction:row; flex-wrap:wrap; gap:26px; }
  .hero-stat{ border-bottom:none; padding:0; flex:1 1 40%; }
  .hero-flame{ opacity:0.28; width:80vw; top:2%; }
  .scroll-cue{ display:none; }
}

/* -----------------------------------------------------------
   Ticker strip (chalkboard scroller) — masked edges
----------------------------------------------------------- */
.ticker{
  position:relative; z-index:2;
  background:var(--board);
  border-top:1px solid rgba(241,236,221,0.1);
  border-bottom:1px solid rgba(241,236,221,0.1);
  overflow:hidden; padding:16px 0;
  -webkit-mask-image:linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image:linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.ticker-track{ display:flex; width:max-content; gap:0; animation:ticker 36s linear infinite; }
.ticker:hover .ticker-track{ animation-play-state:paused; }
.ticker-item{
  display:flex; align-items:center; gap:14px; padding:0 34px;
  font-family:var(--f-body); font-weight:700; font-size:13px; letter-spacing:0.07em; text-transform:uppercase;
  color:var(--smoke-light); white-space:nowrap;
}
.ticker-item::before{ content:""; width:14px; height:8px; background:url('../img/pepper-mark.svg') center/contain no-repeat; opacity:.8; }
@keyframes ticker{ from{ transform:translateX(0); } to{ transform:translateX(-50%); } }

/* =========================================================
   SECTION BASICS
   ========================================================= */
section{ position:relative; }
.section{ padding:130px 0; }
.section-tight{ padding:90px 0; }
.on-dark{ background:var(--charcoal); color:var(--chalk); }
.on-board{ background:var(--board); color:var(--chalk); }

.section-head{ max-width:640px; margin-bottom:56px; }
.section-head h2{ font-size:clamp(32px,4vw,50px); line-height:1.08; margin-top:14px; }
.section-head h2 em{ font-style:italic; color:var(--ember); font-weight:500; }
.on-dark .section-head h2 em, .on-board .section-head h2 em{ color:var(--ember-bright); }
.section-head p{ margin-top:18px; font-size:16.5px; color:var(--smoke); max-width:52ch; }
.on-dark .section-head p, .on-board .section-head p{ color:var(--smoke-light); }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }

.reveal{ opacity:1; transform:none; transition:opacity .8s var(--ease), transform .8s var(--ease); }
html.js-reveal .reveal:not(.is-visible){ opacity:0; transform:translateY(28px); }
.reveal.is-visible{ opacity:1; transform:translateY(0); }
.reveal-delay-1{ transition-delay:.08s; } .reveal-delay-2{ transition-delay:.16s; }
.reveal-delay-3{ transition-delay:.24s; } .reveal-delay-4{ transition-delay:.32s; }

/* =========================================================
   USTA / ABOUT
   ========================================================= */
.usta{ background:var(--bone); }
.usta-grid{ display:grid; grid-template-columns:0.85fr 1.15fr; gap:64px; align-items:center; }
.usta-photo{ position:relative; border-radius:2px; overflow:hidden; aspect-ratio:4/5; box-shadow:0 40px 70px -40px rgba(20,17,14,0.45); }
.usta-photo img{ width:100%; height:100%; object-fit:cover; }
.usta-photo-tag{
  position:absolute; left:18px; bottom:18px; background:var(--bone); padding:10px 16px;
  font-family:var(--f-script); font-size:24px; color:var(--ember); transform:rotate(-2deg);
  box-shadow:0 12px 24px -10px rgba(0,0,0,.4);
}
.usta-copy p{ font-size:17px; color:var(--ink); margin:0 0 18px; max-width:54ch; }
.usta-copy p:last-of-type{ margin-bottom:0; }
.usta-quote{
  margin-top:30px; padding-left:22px; border-left:3px solid var(--ember);
  font-family:var(--f-display); font-style:italic; font-weight:500; font-size:22px; color:var(--ink); max-width:44ch;
}
.usta-quote cite{ display:block; font-style:normal; font-family:var(--f-body); font-weight:700; font-size:12px; letter-spacing:0.1em; text-transform:uppercase; color:var(--smoke); margin-top:12px; }

.badge-row{ display:flex; flex-wrap:wrap; gap:12px; margin-top:34px; }
.badge{
  display:inline-flex; align-items:center; gap:8px; padding:9px 16px; border:1px solid var(--line); border-radius:999px;
  font-size:12px; font-weight:700; letter-spacing:0.03em; color:var(--smoke); text-transform:uppercase;
}
.badge svg{ width:13px; height:13px; color:var(--ember); flex:none; }

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

/* =========================================================
   SIGNATURE DISHES — perforated butcher tickets
   ========================================================= */
.dishes{ background:var(--charcoal); }
.dish-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:26px; }
.dish-card{
  position:relative; background:var(--bone); padding:34px 26px 26px; border-radius:2px;
  transform:rotate(var(--tilt,0deg)); transition:transform .12s ease, box-shadow .4s ease;
  box-shadow:0 20px 40px -24px rgba(0,0,0,0.5);
  will-change:transform;
}
.dish-card::before{
  /* perforation row */
  content:""; position:absolute; top:0; left:0; right:0; height:14px;
  background-image:radial-gradient(circle at 50% 0, var(--charcoal) 5px, transparent 5.5px);
  background-size:22px 14px; background-repeat:repeat-x; background-position:8px 0;
}
.dish-card:nth-child(1){ --tilt:-1.4deg; } .dish-card:nth-child(2){ --tilt:0.9deg; }
.dish-card:nth-child(3){ --tilt:-0.7deg; } .dish-card:nth-child(4){ --tilt:1.3deg; }
.dish-card:hover{ box-shadow:0 30px 50px -20px rgba(0,0,0,0.55); }
.dish-stamp{
  position:absolute; top:20px; right:16px; width:40px; height:40px; border-radius:50%;
  background:var(--ember); display:flex; align-items:center; justify-content:center;
  transform:rotate(12deg); box-shadow:0 6px 14px -4px rgba(166,35,27,0.6);
}
.dish-stamp img{ width:56%; filter:brightness(0) invert(1); }
.dish-num{ font-family:var(--f-body); font-weight:800; font-size:11px; letter-spacing:0.14em; color:var(--smoke); text-transform:uppercase; }
.dish-card h3{ font-size:23px; margin-top:12px; color:var(--ink); font-weight:600; }
.dish-card p{ font-size:14px; color:var(--smoke); margin-top:10px; line-height:1.6; min-height:64px; }
.dish-foot{ display:flex; align-items:center; justify-content:space-between; margin-top:22px; padding-top:16px; border-top:1px dashed var(--line); }
.dish-price{ font-family:var(--f-display); font-size:21px; font-weight:600; color:var(--ember); }
.dish-price small{ font-family:var(--f-body); font-size:11px; color:var(--smoke); font-weight:700; }

@media (max-width:1080px){ .dish-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:560px){ .dish-grid{ grid-template-columns:1fr; } .dish-card{ transform:none !important; } }

/* =========================================================
   CHALKBOARD MENU PREVIEW
   ========================================================= */
.menu-preview{ background:var(--bone); }
.board{
  background:radial-gradient(ellipse at 20% 0%, rgba(255,255,255,0.03), transparent 40%), var(--board);
  border:14px solid #5b4530;
  border-image:linear-gradient(155deg,#7a5c3e,#4a3624) 1;
  border-radius:4px; padding:clamp(28px,4vw,56px); position:relative;
  box-shadow:0 40px 80px -40px rgba(0,0,0,0.6), inset 0 0 90px rgba(0,0,0,0.5);
}
.board::before{
  content:""; position:absolute; inset:14px;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  mix-blend-mode:overlay; pointer-events:none;
}
.board-head{ display:flex; align-items:flex-end; justify-content:space-between; flex-wrap:wrap; gap:18px; margin-bottom:30px; position:relative; z-index:1; }
.board-title{ font-family:var(--f-script); color:var(--chalk); font-size:clamp(30px,4vw,44px); }
.board-sub{ color:var(--smoke-light); font-size:13px; letter-spacing:0.03em; margin-top:4px; }

.tab-row{ display:flex; flex-wrap:wrap; gap:10px; position:relative; z-index:1; }
.tab-btn{
  background:transparent; border:1px solid rgba(241,236,221,0.25); color:var(--smoke-light);
  padding:9px 18px; border-radius:999px; font-family:var(--f-body); font-weight:700; font-size:12px;
  letter-spacing:0.05em; text-transform:uppercase; transition:all .25s ease;
}
.tab-btn:hover{ border-color:var(--chalk); color:var(--chalk); }
.tab-btn.is-active{ background:var(--ember); border-color:var(--ember); color:var(--chalk); }

.menu-list{ position:relative; z-index:1; margin-top:30px; display:none; }
.menu-list.is-active{ display:block; animation:chalk-in .5s ease both; }
@keyframes chalk-in{ from{ opacity:0; filter:blur(3px); transform:translateY(6px);} to{ opacity:1; filter:blur(0); transform:translateY(0);} }
.menu-row{ display:flex; align-items:baseline; gap:14px; padding:15px 0; border-bottom:1px dashed rgba(241,236,221,0.16); font-family:var(--f-script); color:var(--chalk); }
.menu-row:last-child{ border-bottom:none; }
.menu-row .name{ font-size:25px; white-space:nowrap; }
.menu-row .desc{ font-family:var(--f-body); font-size:12.5px; color:var(--smoke-light); font-weight:600; margin-left:4px; }
.menu-row .fill{ flex:1; border-bottom:2px dotted rgba(241,236,221,0.22); transform:translateY(-6px); }
.menu-row .price{ font-family:var(--f-body); font-weight:700; font-size:16.5px; color:var(--ember-bright); white-space:nowrap; }
.menu-row .price small{ font-size:11px; color:var(--smoke-light); font-weight:600; margin-left:2px; }

.board-note{ position:relative; z-index:1; margin-top:30px; padding-top:22px; border-top:1px solid rgba(241,236,221,0.12); display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:16px; }
.board-note p{ color:var(--smoke-light); font-size:13.5px; max-width:48ch; margin:0; }
.board-note strong{ color:var(--chalk); }

@media (max-width:640px){
  .menu-row{ flex-wrap:wrap; }
  .menu-row .fill{ display:none; }
  .menu-row .name{ font-size:22px; }
}

/* =========================================================
   INSTAGRAM / REELS — horizontal scroll-snap carousel
   ========================================================= */
.social{ background:var(--charcoal); }
.social-head{ display:flex; align-items:flex-end; justify-content:space-between; flex-wrap:wrap; gap:24px; margin-bottom:44px; }
.social-follow{ display:flex; align-items:center; gap:14px; padding:10px 10px 10px 14px; border:1px solid rgba(241,236,221,0.16); border-radius:999px; }
.social-follow img{ width:34px; height:34px; border-radius:50%; }
.social-follow .n{ font-family:var(--f-display); font-weight:600; color:var(--chalk); font-size:15px; }
.social-follow .l{ font-size:10.5px; color:var(--smoke-light); text-transform:uppercase; letter-spacing:0.05em; }

.reel-scroller{
  display:grid; grid-auto-flow:column; grid-auto-columns:minmax(190px, 1fr);
  gap:16px; overflow-x:auto; scroll-snap-type:x proximity; padding-bottom:6px;
  scrollbar-width:none;
}
.reel-scroller::-webkit-scrollbar{ display:none; }
.reel-card{
  position:relative; aspect-ratio:9/16; border-radius:3px; overflow:hidden; scroll-snap-align:start;
  background:linear-gradient(155deg,#2a2521,#141210); border:1px solid rgba(241,236,221,0.08);
  display:block;
}
.reel-card img{
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover;
  transition:transform .5s var(--ease);
}
.reel-card:hover img{ transform:scale(1.05); }
.reel-caption{
  position:absolute; left:0; right:0; bottom:0; padding:14px 12px 12px; z-index:1;
  background:linear-gradient(0deg, rgba(9,8,7,0.94), transparent 90%);
  font-size:11.5px; font-weight:700; color:var(--chalk); line-height:1.35;
}
.reel-play{
  position:absolute; top:12px; right:12px; width:30px; height:30px; border-radius:50%;
  background:rgba(11,9,8,0.55); backdrop-filter:blur(4px); display:flex; align-items:center; justify-content:center;
  border:1px solid rgba(241,236,221,0.25); transition:transform .3s var(--ease);
}
.reel-card:hover .reel-play{ transform:scale(1.12); }
.reel-play svg{ width:11px; height:11px; fill:var(--chalk); margin-left:1px; }
.social-cta{ margin-top:40px; display:flex; align-items:center; gap:20px; flex-wrap:wrap; }
.social-cta p{ color:var(--smoke-light); font-size:14px; margin:0; }

/* =========================================================
   TESTIMONIAL STRIP
   ========================================================= */
.quote-strip{ background:var(--board); padding:90px 0; text-align:center; }
.quote-strip blockquote{
  font-family:var(--f-display); font-style:italic; font-weight:500; font-size:clamp(24px,3.6vw,38px);
  color:var(--chalk); max-width:820px; margin:0 auto; line-height:1.35;
}
.quote-strip cite{ display:block; margin-top:24px; font-style:normal; font-family:var(--f-body); font-size:12px; font-weight:700; letter-spacing:0.1em; text-transform:uppercase; color:var(--smoke-light); }

/* =========================================================
   LOCATION / CONTACT TEASER (home)
   ========================================================= */
.location{ background:var(--bone); }
.loc-grid{ display:grid; grid-template-columns:1fr 1fr; gap:0; border-radius:4px; overflow:hidden; box-shadow:0 40px 80px -50px rgba(20,17,14,0.5); }
.loc-map{ position:relative; min-height:460px; background:#e9e3d5; }
.loc-map iframe{ position:absolute; inset:0; width:100%; height:100%; border:0; filter:grayscale(0.25) contrast(1.05); }
.loc-info{ background:var(--charcoal); color:var(--chalk); padding:clamp(32px,4vw,56px); }
.loc-info h3{ font-size:28px; margin-bottom:26px; }
.loc-item{ display:flex; gap:16px; padding:18px 0; border-top:1px solid rgba(241,236,221,0.1); }
.loc-item:first-of-type{ border-top:none; }
.loc-item svg{ width:18px; height:18px; flex:none; margin-top:2px; color:var(--ember-bright); }
.loc-item .lbl{ font-size:11px; font-weight:700; letter-spacing:0.08em; text-transform:uppercase; color:var(--smoke-light); margin-bottom:5px; }
.loc-item .val{ font-size:15.5px; font-weight:600; line-height:1.5; }
.loc-item a.val:hover{ color:var(--ember-bright); }
.loc-actions{ display:flex; gap:14px; margin-top:30px; flex-wrap:wrap; }
.loc-callout{ margin-top:30px; padding:16px 18px; border-left:3px solid var(--ember); background:rgba(166,35,27,0.1); font-family:var(--f-script); font-size:21px; color:var(--chalk); }

@media (max-width:900px){ .loc-grid{ grid-template-columns:1fr; } .loc-map{ min-height:320px; } }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer{ background:var(--board); color:var(--smoke-light); padding:70px 0 30px; }
.foot-grid{ display:grid; grid-template-columns:1.3fr 1fr 1fr 1fr; gap:40px; padding-bottom:50px; border-bottom:1px solid rgba(241,236,221,0.08); }
.foot-brand{ display:flex; align-items:center; gap:12px; margin-bottom:16px; }
.foot-brand img{ height:36px; }
.foot-brand span{ font-family:var(--f-display); font-size:18px; color:var(--chalk); font-weight:600; }
.foot-col h4{ font-size:11.5px; letter-spacing:0.1em; text-transform:uppercase; color:var(--chalk); margin-bottom:16px; font-family:var(--f-body); font-weight:800; }
.foot-col p, .foot-col a{ font-size:14px; line-height:2; color:var(--smoke-light); display:block; }
.foot-col a:hover{ color:var(--chalk); }
.foot-bottom{ display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:14px; padding-top:26px; font-size:12.5px; }
.foot-social{ display:flex; gap:12px; }
.foot-social a{ width:36px; height:36px; border-radius:50%; border:1px solid rgba(241,236,221,0.16); display:flex; align-items:center; justify-content:center; transition:border-color .25s ease, background-color .25s ease; }
.foot-social a:hover{ border-color:var(--ember-bright); background:rgba(166,35,27,0.12); }
.foot-social svg{ width:15px; height:15px; }

@media (max-width:900px){ .foot-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:560px){ .foot-grid{ grid-template-columns:1fr; } .foot-bottom{ flex-direction:column; align-items:flex-start; } }

/* -----------------------------------------------------------
   WhatsApp float
----------------------------------------------------------- */
.wa-float{
  position:fixed; right:22px; bottom:22px; z-index:80; width:56px; height:56px; border-radius:50%;
  background:#25D366; display:flex; align-items:center; justify-content:center;
  box-shadow:0 14px 30px -10px rgba(0,0,0,0.5); transition:transform .3s var(--ease);
}
.wa-float:hover{ transform:scale(1.08); }
.wa-float svg{ width:26px; height:26px; fill:#fff; }

/* -----------------------------------------------------------
   Page header (used on menu.html / iletisim.html)
----------------------------------------------------------- */
.page-header{
  padding:calc(var(--nav-h) + 76px) 0 66px;
  background:
    radial-gradient(ellipse 700px 400px at 90% 0%, rgba(166,35,27,0.22), transparent 60%),
    linear-gradient(180deg, var(--charcoal-2), var(--charcoal));
  color:var(--chalk); text-align:center; overflow:hidden; position:relative;
}
.page-header .eyebrow{ justify-content:center; }
.page-header h1{ font-size:clamp(38px,5.5vw,60px); margin-top:16px; }
.page-header p{ margin-top:16px; color:var(--smoke-light); max-width:52ch; margin-left:auto; margin-right:auto; }

.full-menu{ background:var(--bone); padding:90px 0 120px; }
.fm-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:56px 64px; }
.fm-cat h3{ font-family:var(--f-script); color:var(--ember); font-size:33px; margin-bottom:6px; }
.fm-cat > p{ color:var(--smoke); font-size:13px; margin:0 0 20px; }
.fm-row{ display:flex; align-items:baseline; gap:10px; padding:13px 0; border-bottom:1px dashed var(--line); }
.fm-row .name{ font-weight:700; font-size:15.5px; color:var(--ink); white-space:nowrap; }
.fm-row .desc{ font-size:12px; color:var(--smoke); margin-left:2px; }
.fm-row .fill{ flex:1; border-bottom:1px dotted var(--line); transform:translateY(-5px); }
.fm-row .price{ font-weight:800; font-size:15px; color:var(--ember); white-space:nowrap; }

@media (max-width:900px){ .fm-grid{ grid-template-columns:1fr; gap:44px; } }
@media (max-width:560px){ .fm-row .fill{ display:none; } }

.print-note{ text-align:center; margin-top:56px; color:var(--smoke); font-size:13px; }

/* =========================================================
   CONTACT PAGE
   ========================================================= */
.contact-grid{ display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:start; }
.contact-cards{ display:grid; gap:16px; }
.contact-card{
  display:flex; gap:18px; align-items:flex-start; padding:26px 24px; background:var(--charcoal);
  color:var(--chalk); border-radius:3px; transition:transform .35s var(--ease), background-color .3s ease;
}
.contact-card:hover{ transform:translateY(-4px); background:var(--charcoal-2); }
.contact-card .ic{
  width:44px; height:44px; border-radius:50%; background:var(--ember); flex:none;
  display:flex; align-items:center; justify-content:center;
}
.contact-card .ic svg{ width:19px; height:19px; color:var(--chalk); }
.contact-card h4{ font-family:var(--f-display); font-size:19px; font-weight:600; margin-bottom:6px; }
.contact-card p{ font-size:14px; color:var(--smoke-light); margin:0; line-height:1.7; }
.contact-card a.link{ font-size:13px; font-weight:700; color:var(--ember-bright); margin-top:8px; display:inline-block; }

.quick-msgs{ margin-top:30px; }
.quick-msgs h4{ font-family:var(--f-body); font-size:12px; font-weight:800; letter-spacing:0.1em; text-transform:uppercase; color:var(--smoke); margin-bottom:14px; }
.quick-msg-list{ display:flex; flex-direction:column; gap:10px; }
.quick-msg{
  display:flex; align-items:center; justify-content:space-between; gap:14px;
  padding:16px 20px; background:var(--bone-2); border-radius:3px; border:1px solid var(--line);
  transition:border-color .25s ease, transform .3s var(--ease), background-color .25s ease;
}
.quick-msg:hover{ border-color:var(--ember); transform:translateX(4px); background:#fff; }
.quick-msg span.t{ font-weight:700; font-size:14.5px; color:var(--ink); }
.quick-msg span.s{ display:block; font-size:12.5px; color:var(--smoke); margin-top:2px; font-weight:500; }
.quick-msg svg{ width:18px; height:18px; color:#25D366; flex:none; }

.contact-map{ position:relative; border-radius:4px; overflow:hidden; min-height:520px; box-shadow:0 40px 80px -50px rgba(20,17,14,0.5); }
.contact-map iframe{ position:absolute; inset:0; width:100%; height:100%; border:0; filter:grayscale(0.2) contrast(1.05); }

@media (max-width:980px){ .contact-grid{ grid-template-columns:1fr; gap:48px; } .contact-map{ min-height:360px; } }

/* FAQ accordion */
.faq{ margin-top:64px; max-width:820px; }
.faq-item{ border-bottom:1px solid var(--line); }
.faq-q{
  width:100%; display:flex; align-items:center; justify-content:space-between; gap:20px;
  padding:24px 4px; background:none; border:none; text-align:left;
  font-family:var(--f-display); font-size:19px; font-weight:600; color:var(--ink);
}
.faq-q .plus{ position:relative; width:20px; height:20px; flex:none; }
.faq-q .plus::before, .faq-q .plus::after{ content:""; position:absolute; background:var(--ember); border-radius:2px; transition:transform .35s var(--ease); }
.faq-q .plus::before{ left:0; top:9px; width:20px; height:2px; }
.faq-q .plus::after{ left:9px; top:0; width:2px; height:20px; }
.faq-item.is-open .plus::after{ transform:rotate(90deg); opacity:0; }
.faq-a{ max-height:0; overflow:hidden; transition:max-height .4s var(--ease); }
.faq-item.is-open .faq-a{ max-height:600px; }
.faq-a p{ padding:0 4px 24px; font-size:15px; color:var(--smoke); max-width:64ch; line-height:1.7; }

/* Simple info strip used on contact page (hours / address quick facts) */
.fact-strip{ display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:var(--line); border:1px solid var(--line); margin-top:56px; border-radius:3px; overflow:hidden; }
.fact{ background:var(--bone); padding:26px 24px; }
.fact .lbl{ font-size:11px; font-weight:800; letter-spacing:0.1em; text-transform:uppercase; color:var(--smoke); margin-bottom:8px; }
.fact .val{ font-family:var(--f-display); font-size:19px; font-weight:600; color:var(--ink); }
@media (max-width:700px){ .fact-strip{ grid-template-columns:1fr; } }
