:root {
  /* Sicak tonlar: ekmek / ızgara hissi, gastronomi icin soguk maviye gore daha uyumlu */
  --bg: #141110;
  --bg-elevated: #1c1815;
  --surface: #262019;
  --text: #f4ebe3;
  --text-muted: #a89888;
  --accent: #d4a574;
  --accent-hover: #e8c48e;
  --accent-hot: #c45c3e;
  --accent-soft: rgba(212, 165, 116, 0.18);
  --wa: #25d366;
  --wa-hover: #1ebe57;
  --ring: rgba(212, 165, 116, 0.5);
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  --font-sans: "DM Sans", system-ui, sans-serif;
  --font-display: "Fraunces", Georgia, serif;
  --max: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  background-image:
    radial-gradient(ellipse 110% 70% at 50% -15%, rgba(212, 165, 116, 0.14), transparent),
    radial-gradient(ellipse 50% 45% at 100% 100%, rgba(196, 92, 62, 0.07), transparent);
  min-height: 100vh;
}

#main {
  padding-bottom: 5.5rem;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--accent-hover);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  position: fixed;
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  padding: 0.75rem 1rem;
  background: var(--surface);
  color: var(--text);
  z-index: 9999;
  border-radius: 8px;
  outline: 2px solid var(--ring);
}

.wrap {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.narrow {
  max-width: 720px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(20, 17, 16, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  padding: 0.85rem 0;
  flex-wrap: wrap;
}

.btn-header {
  margin-left: auto;
  white-space: nowrap;
  order: 2;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.brand > div:last-of-type {
  min-width: 0;
}

.brand-mark {
  width: 56px;
  height: 34px;
  flex-shrink: 0;
  border-radius: 10px;
  object-fit: contain;
  display: block;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.45);
  background: #1e1814;
}

.brand-eyebrow {
  margin: 0;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.brand-name {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
  color: inherit;
  text-decoration: none;
  order: 1;
}

.brand-link:hover .brand-name {
  color: var(--accent);
}

.nav-main {
  display: flex;
  align-items: center;
  gap: 0.25rem 0.65rem;
  flex-wrap: wrap;
  justify-content: center;
  order: 3;
  flex-basis: 100%;
  width: 100%;
  padding-top: 0.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-main a {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  padding: 0.35rem 0.45rem;
  border-radius: 8px;
  white-space: nowrap;
  transition: color 0.15s ease, background 0.15s ease;
}

.nav-main a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

@media (min-width: 880px) {
  .header-inner {
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  .brand-link {
    order: 0;
  }

  .btn-header {
    margin-left: 0;
    order: 0;
  }

  .nav-main {
    order: 0;
    flex-basis: auto;
    width: auto;
    flex: 1;
    max-width: 26rem;
    padding-top: 0;
    border-top: none;
  }

  .nav-main a {
    font-size: 0.85rem;
    padding: 0.35rem 0.5rem;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.15rem;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn:focus-visible {
  outline: 2px solid var(--ring);
  outline-offset: 3px;
}

.btn-wa {
  background: var(--wa);
  color: #062d14;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
}

.btn-wa:hover {
  background: var(--wa-hover);
  color: #041a0c;
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.4);
}

.btn-lg {
  padding: 0.9rem 1.5rem;
  font-size: 1rem;
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: none;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-1px);
}

.btn-accent {
  background: linear-gradient(135deg, rgba(212, 165, 116, 0.28), rgba(212, 165, 116, 0.08));
  color: #f0e6c8;
  border: 1px solid rgba(212, 165, 116, 0.45);
  box-shadow: 0 4px 24px rgba(212, 165, 116, 0.12);
}

.btn-accent:hover {
  background: linear-gradient(135deg, rgba(212, 165, 116, 0.4), rgba(212, 165, 116, 0.12));
  color: #fff;
  transform: translateY(-1px);
}

.wa-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  background: currentColor;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23000'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.435 9.884-9.881 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z'/%3E%3C/svg%3E") center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23000'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.435 9.884-9.881 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z'/%3E%3C/svg%3E") center / contain no-repeat;
}

/* Hero */
.hero {
  padding: clamp(2rem, 5vw, 4rem) 0 clamp(3rem, 6vw, 5rem);
}

.hero--promo .hero-copy h1 {
  font-size: clamp(2.35rem, 6vw, 3.25rem);
  letter-spacing: -0.04em;
}

.hero-badge {
  display: inline-block;
  margin: 0 0 0.75rem;
  padding: 0.35rem 0.85rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid rgba(212, 165, 116, 0.4);
  border-radius: 999px;
}

.hero-tagline {
  margin: 0 0 1rem;
  font-size: 1.15rem;
  line-height: 1.5;
  color: var(--text);
  font-weight: 500;
  max-width: 36rem;
}

.hero-tagline strong {
  color: var(--accent);
  font-weight: 700;
}

.section-kicker {
  margin: 0 0 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.intro-strip {
  padding: clamp(2.25rem, 4vw, 3.5rem) 0;
  background: linear-gradient(180deg, rgba(212, 165, 116, 0.1), transparent);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.intro-inner {
  max-width: 46rem;
}

.intro-inner h2 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3vw, 1.9rem);
  font-weight: 700;
}

.intro-lead {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--text-muted);
}

.intro-lead strong {
  color: var(--text);
}

.feature-section {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.feature-section > .wrap > h2 {
  margin: 0 0 2rem;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3vw, 1.95rem);
  font-weight: 700;
  max-width: 20ch;
}

.feature-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 960px) {
  .feature-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.feature-card {
  margin: 0;
  padding: 1.35rem 1.25rem;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.feature-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 700;
}

.feature-card p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.feature-card p strong {
  color: var(--text);
}

.feature-icon {
  display: block;
  margin-bottom: 0.65rem;
  font-size: 1.1rem;
  color: var(--accent);
  opacity: 0.9;
}

.menu-section {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  background: var(--bg-elevated);
  border-block: 1px solid rgba(255, 255, 255, 0.05);
}

.menu-section h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3vw, 1.95rem);
  font-weight: 700;
}

.menu-intro {
  margin-bottom: 2rem;
}

.menu-pillars {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .menu-pillars {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.menu-pillar {
  margin: 0;
  padding: 1.35rem 1.25rem;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.menu-pillar h3 {
  margin: 0 0 0.65rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--accent);
}

.menu-pillar p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.menu-pillar p strong {
  color: var(--text);
}

.variety-section {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.variety-section h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3vw, 1.9rem);
  font-weight: 700;
}

.variety-cols {
  display: grid;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

@media (min-width: 560px) {
  .variety-cols {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.variety-col {
  padding: 1.25rem 1.35rem;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.variety-col h3 {
  margin: 0 0 0.85rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}

.variety-col ul {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.local-section--cta {
  background: linear-gradient(180deg, transparent, rgba(37, 211, 102, 0.06));
}

.local-cta-row {
  margin-top: 1.5rem !important;
  margin-bottom: 0 !important;
}

.local-section a[href*="maps.google"] {
  display: inline-block;
  margin-top: 0.35rem;
}

.hero-grid {
  display: grid;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}

.hero-grid > * {
  min-width: 0;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr min(38vw, 440px);
  }
}

.hero-copy h1 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 2.85rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.lead {
  margin: 0 0 1.75rem;
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: min(100%, 40rem);
}

.lead strong {
  color: var(--text);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.address-block {
  margin: 0;
  padding: 1rem 1.25rem;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-style: normal;
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 100%;
}

.address-block .label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 0.35rem;
}

.hero-visual {
  margin: 0 auto;
  width: 100%;
  max-width: min(100%, 420px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.08);
  aspect-ratio: 4 / 5;
  background: #121820;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Gallery */
.gallery-section {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  background: var(--bg-elevated);
  border-block: 1px solid rgba(255, 255, 255, 0.05);
}

.gallery-section h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
}

.section-intro {
  margin: 0 0 2rem;
  color: var(--text-muted);
  max-width: 62ch;
}

.gallery {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 960px) {
  .gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.gallery-card {
  margin: 0;
  min-width: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
}

.gallery-frame {
  position: relative;
  aspect-ratio: 4 / 3;
  width: 100%;
  overflow: hidden;
  background: #121820;
}

.gallery-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.gallery-card--toast .gallery-frame img {
  object-position: center 42%;
}

.gallery figcaption {
  padding: 0.65rem 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  flex-shrink: 0;
}

/* Makale */
.article-section {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  background: var(--bg);
  border-block: 1px solid rgba(255, 255, 255, 0.05);
}

.article-inner {
  max-width: 46rem;
}

.article-header h2 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.article-meta {
  margin: 0 0 2rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.article-meta time {
  color: var(--text-muted);
}

.article-body p {
  margin: 0 0 1.35rem;
  color: var(--text-muted);
  font-size: 1.03rem;
  line-height: 1.82;
  text-wrap: pretty;
}

.article-body p:last-child {
  margin-bottom: 0;
}

.article-body strong {
  color: var(--text);
  font-weight: 600;
}

/* Yerel bilgi */
.local-section {
  padding: clamp(2.5rem, 5vw, 4rem) 0 6rem;
}

.local-section h2 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.local-section p {
  margin: 0 0 1rem;
  color: var(--text-muted);
}

.local-section p:last-child {
  margin-bottom: 0;
}

.local-section strong {
  color: var(--text);
  font-weight: 600;
}

/* Floating WhatsApp */
.sticky-wa {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 100;
}

.btn-fab {
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.45);
}

.fab-text {
  font-size: 0.95rem;
}

@media (max-width: 480px) {
  .fab-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .btn-fab {
    width: 56px;
    height: 56px;
    padding: 0;
    border-radius: 50%;
  }
}

/* Footer */
.site-footer {
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: var(--bg-elevated);
}

.footer-inner {
  text-align: center;
}

.footer-inner p {
  margin: 0 0 0.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-inner a {
  color: var(--accent);
}

.fine-print {
  margin-top: 1rem !important;
  font-size: 0.8rem !important;
  opacity: 0.75;
}
