/* ═══════════════════════════════════════════════════════════════
   Örnek Kafe — style.css
   Kimlik: modern specialty coffee — bold tipografi, bol boşluk,
   hardal grafik bloklar, konturlu kartlar, sert ofset gölgeler.
   Palet: espresso #241A12 · hardal #E3A82B · krem #FAF6EE · ten #E9D9BF
   Tipografi: Bricolage Grotesque (başlık) + Inter (metin), latin-ext
   Mobil öncelikli: temel stiller dar ekran için, genişletmeler @media ile.
   ═══════════════════════════════════════════════════════════════ */

:root {
  /* Renk */
  --kahve: #241A12;
  --kahve-deep: #17100B;
  --hardal: #E3A82B;
  --hardal-deep: #B5820F;
  --krem: #FAF6EE;
  --krem-dim: #F1E9DA;
  --ten: #E9D9BF;
  --ink: #33291F;
  --ink-soft: #6E6153;
  --line: rgba(36, 26, 18, 0.16);
  --line-soft: rgba(36, 26, 18, 0.09);

  /* Tipografi */
  --font-head: "Bricolage Grotesque", "Segoe UI", Arial, sans-serif;
  --font-body: "Inter", "Segoe UI", Tahoma, sans-serif;

  /* Biçim */
  --radius: 16px;
  --radius-sm: 10px;
  --border-w: 1.5px;
  --shadow-hard: 6px 6px 0 var(--hardal);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 68px;

  /* Boşluk ölçeği */
  --section-pad: clamp(4.5rem, 6vw + 2rem, 7.5rem);
}

/* ── Taban ─────────────────────────────────────────────────── */

*,
*::before,
*::after { box-sizing: border-box; }

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

@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

body {
  margin: 0;
  background: var(--krem);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.68;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--font-head);
  color: var(--kahve);
  line-height: 1.08;
  margin: 0 0 0.55em;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

p { margin: 0 0 1em; }

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

a { color: var(--hardal-deep); }

::selection {
  background: var(--hardal);
  color: var(--kahve);
}

:focus-visible {
  outline: 3px solid var(--hardal-deep);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  width: min(100% - 3rem, 1120px);
  margin-inline: auto;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 100;
  background: var(--kahve);
  color: var(--krem);
  padding: 0.6rem 1.1rem;
  border-radius: 0 0 10px 10px;
  text-decoration: none;
  font-weight: 600;
}

.skip-link:focus {
  top: 0;
}

/* Yer tutucu görseller: fotoğraf eklenince arka plan görünmez olur */
.ph {
  background-color: var(--ten);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cg fill='none' stroke='%23241A12' stroke-opacity='.3' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 26h30v10a15 15 0 0 1-30 0z'/%3E%3Cpath d='M44 29h4a6 6 0 0 1 0 12h-5'/%3E%3Cpath d='M12 54h34'/%3E%3Cpath d='M24 18c-2-3 2-5 0-8M34 18c-2-3 2-5 0-8'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto 42%;
}

.icon {
  width: 1.25em;
  height: 1.25em;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon[fill="currentColor"] {
  fill: currentColor;
  stroke: none;
}

/* ── Butonlar ──────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.01em;
  padding: 0.85rem 1.8rem;
  border: var(--border-w) solid var(--kahve);
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  transition:
    background-color 0.22s var(--ease),
    color 0.22s var(--ease),
    box-shadow 0.22s var(--ease),
    transform 0.22s var(--ease);
}

.btn:active {
  transform: translateY(1px);
}

.btn--cta {
  background: var(--kahve);
  color: var(--krem);
}

.btn--cta:hover {
  background: var(--hardal);
  color: var(--kahve);
}

@media (prefers-reduced-motion: no-preference) {
  .btn--cta:hover { transform: translate(-2px, -2px); box-shadow: 4px 4px 0 var(--kahve); }
  .btn--cta:active { transform: translateY(1px); box-shadow: none; }
}

.btn--ghost {
  background: transparent;
  color: var(--kahve);
}

.btn--ghost:hover {
  background: var(--kahve);
  color: var(--krem);
}

.btn--sm {
  padding: 0.55rem 1.3rem;
  font-size: 0.95rem;
}

.btn--lg {
  padding: 1.05rem 2.3rem;
  font-size: 1.1rem;
}

/* ── Üst menü ──────────────────────────────────────────────── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 246, 238, 0.92);
  -webkit-backdrop-filter: blur(12px) saturate(1.4);
  backdrop-filter: blur(12px) saturate(1.4);
  border-bottom: var(--border-w) solid transparent;
  transition: border-color 0.3s var(--ease);
}

.site-header.is-scrolled {
  border-bottom-color: var(--kahve);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: var(--kahve);
  margin-right: auto;
}

.brand__mark {
  width: 28px;
  height: 28px;
}

.brand__name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.brand__name span {
  font-weight: 500;
  color: var(--hardal-deep);
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.site-nav a:not(.btn) {
  position: relative;
  display: block;
  padding: 0.9rem 0.25rem;
  color: var(--kahve);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s var(--ease);
}

.site-nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0.25rem;
  right: 0.25rem;
  bottom: 0.55rem;
  height: 3px;
  background: var(--hardal);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.28s var(--ease-out);
}

.site-nav a:not(.btn):hover::after,
.site-nav a:not(.btn).is-active::after {
  transform: scaleX(1);
}

/* Mobil: menü panel olarak açılır */
.site-nav {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--krem);
  border-bottom: var(--border-w) solid var(--kahve);
  padding: 0.5rem 1.5rem 1.5rem;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.24s var(--ease), transform 0.24s var(--ease), visibility 0.24s;
}

.site-header.nav-open .site-nav {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.site-nav__cta {
  margin-top: 0.9rem;
}

.header-cta {
  display: none;
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
}

.nav-toggle__bar {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: var(--kahve);
  transition: transform 0.24s var(--ease), opacity 0.24s var(--ease);
}

.site-header.nav-open .nav-toggle__bar:nth-child(2) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.nav-open .nav-toggle__bar:nth-child(3) {
  opacity: 0;
}

.site-header.nav-open .nav-toggle__bar:nth-child(4) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (min-width: 800px) {
  .site-nav {
    position: static;
    visibility: visible;
    opacity: 1;
    transform: none;
    background: transparent;
    border: 0;
    padding: 0;
  }

  .site-nav ul {
    flex-direction: row;
    align-items: center;
    gap: 1.6rem;
  }

  .site-nav a:not(.btn) {
    padding: 0.45rem 0;
    font-size: 0.98rem;
  }

  .site-nav a:not(.btn)::after {
    left: 0;
    right: 0;
    bottom: 0.1rem;
  }

  .site-nav__cta {
    display: none;
  }

  .header-cta {
    display: inline-flex;
  }

  .nav-toggle {
    display: none;
  }
}

/* ── Hero ──────────────────────────────────────────────────── */

.hero {
  padding: clamp(3rem, 6vw, 5.5rem) 0 clamp(3.5rem, 7vw, 6rem);
  overflow: hidden; /* ofset blok taşmasın */
}

.hero__inner {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--ink-soft);
  margin-bottom: 1.4rem;
}

.hero__kicker::before {
  content: "";
  width: 2.25rem;
  height: 3px;
  background: var(--hardal);
}

.hero h1 {
  font-size: clamp(3rem, 11vw, 5.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.15em;
}

.hero__hl {
  color: var(--hardal-deep);
}

.hero__tagline {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(1.25rem, 4.2vw, 1.6rem);
  color: var(--kahve);
  margin-bottom: 0.8em;
}

.hero__sub {
  color: var(--ink-soft);
  max-width: 34rem;
  margin-bottom: 2.2em;
  font-size: clamp(1rem, 3.4vw, 1.125rem);
  line-height: 1.7;
  text-wrap: pretty;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.4rem;
}

.hero__scroll {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--kahve);
  font-weight: 700;
  font-size: 0.98rem;
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 2px solid var(--hardal);
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.hero__scroll .icon {
  width: 1em;
  height: 1em;
}

@media (prefers-reduced-motion: no-preference) {
  .hero__scroll .icon {
    animation: scroll-nudge 2.4s ease-in-out infinite;
  }

  @keyframes scroll-nudge {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(3px); }
  }
}

.hero__scroll:hover {
  color: var(--hardal-deep);
}

.hero__facts {
  list-style: none;
  margin: 2.4rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.hero__facts li {
  display: inline-flex;
  align-items: center;
  border: var(--border-w) solid var(--line);
  border-radius: 999px;
  padding: 0.4rem 0.95rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* Sağda görsel + arkasında hardal ofset blok */
.hero__media {
  position: relative;
  margin-right: 16px; /* ofset blok için pay */
  margin-bottom: 16px;
}

.hero__media::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: translate(16px, 16px);
  background: var(--hardal);
  border-radius: var(--radius);
}

.hero__media img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  border: var(--border-w) solid var(--kahve);
}

/* Hero giriş animasyonu */
@media (prefers-reduced-motion: no-preference) {
  .hero__text > *,
  .hero__media {
    animation: hero-rise 0.8s var(--ease-out) both;
  }

  .hero h1          { animation-delay: 0.06s; }
  .hero__tagline    { animation-delay: 0.12s; }
  .hero__sub        { animation-delay: 0.18s; }
  .hero__actions    { animation-delay: 0.26s; }
  .hero__facts      { animation-delay: 0.34s; }
  .hero__media      { animation-delay: 0.2s; }

  @keyframes hero-rise {
    from {
      opacity: 0;
      transform: translateY(18px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

@media (min-width: 900px) {
  .hero__inner {
    grid-template-columns: 1.15fr 1fr;
    gap: 4rem;
  }

  .hero__media img {
    aspect-ratio: 4 / 5;
  }
}

/* ── Kayan bant (marquee) ──────────────────────────────────── */

.marquee {
  background: var(--hardal);
  color: var(--kahve);
  border-block: var(--border-w) solid var(--kahve);
  overflow: hidden;
  padding: 0.7rem 0;
}

.marquee__track {
  display: flex;
  width: max-content;
}

.marquee__group {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  white-space: nowrap;
}

@media (prefers-reduced-motion: no-preference) {
  .marquee__track {
    animation: marquee 36s linear infinite;
  }

  @keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }
}

/* ── Bölümler ──────────────────────────────────────────────── */

.section {
  padding: var(--section-pad) 0;
}

section[id] {
  scroll-margin-top: calc(var(--header-h) + 12px);
}

.section--tinted {
  background: var(--krem-dim);
}

.section-head {
  max-width: 46rem;
  margin-bottom: clamp(2.5rem, 4vw, 3.5rem);
}

.eyebrow {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--hardal-deep);
  margin-bottom: 0.9rem;
  font-variant-numeric: tabular-nums;
}

.section-head h2 {
  font-size: clamp(2.2rem, 6vw, 3.4rem);
  margin-bottom: 0.35em;
}

.section-intro {
  color: var(--ink-soft);
  font-size: 1.06rem;
  margin: 0;
  text-wrap: pretty;
}

/* ── Hakkımızda ────────────────────────────────────────────── */

.about {
  display: grid;
  gap: 3rem;
}

.about__text > p:first-child {
  font-size: 1.08rem;
  text-wrap: pretty;
}

.about__facts {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
}

.about__facts li {
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
  padding: 0.55rem 0;
  color: var(--ink);
  font-weight: 600;
  border-bottom: var(--border-w) solid var(--line-soft);
}

.about__facts li:first-child {
  border-top: var(--border-w) solid var(--line-soft);
}

.about__facts li::before {
  content: "";
  width: 0.8em;
  height: 0.8em;
  flex-shrink: 0;
  transform: translateY(0.05em);
  background: var(--hardal);
  border-radius: 2px;
}

/* Görsel + arkasında hardal ofset blok (hero ile ortak imza) */
.about__media {
  position: relative;
  margin-right: 16px;
  margin-bottom: 16px;
}

.about__media::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: translate(16px, 16px);
  background: var(--hardal);
  border-radius: var(--radius);
}

.about__media img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  border: var(--border-w) solid var(--kahve);
}

@media (min-width: 900px) {
  .about {
    grid-template-columns: 1.1fr 1fr;
    gap: 4.5rem;
    align-items: center;
  }
}

/* ── Öne çıkan ürün kartları ───────────────────────────────── */

.cards {
  display: grid;
  gap: 1.5rem;
}

.card {
  display: flex;
  flex-direction: column;
  background: var(--krem);
  border: var(--border-w) solid var(--kahve);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
}

.card:hover {
  box-shadow: var(--shadow-hard);
}

@media (prefers-reduced-motion: no-preference) {
  .card:hover { transform: translate(-3px, -3px); }
}

.card__media {
  position: relative;
  overflow: hidden;
  border-bottom: var(--border-w) solid var(--kahve);
}

.card__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}

@media (prefers-reduced-motion: no-preference) {
  .card:hover .card__img { transform: scale(1.045); }
}

.card__badge {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  background: var(--hardal);
  color: var(--kahve);
  font-family: var(--font-head);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.32rem 0.7rem;
  border-radius: 6px;
  border: var(--border-w) solid var(--kahve);
}

.card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.25rem 1.35rem 1.35rem;
}

.card__body h3 {
  font-size: 1.25rem;
  margin-bottom: 0.45em;
}

.card__desc {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.1rem;
}

.card__price {
  margin: auto 0 0;
  padding-top: 0.9rem;
  border-top: var(--border-w) solid var(--line-soft);
}

.card__price strong {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--kahve);
  letter-spacing: -0.01em;
}

@media (min-width: 700px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .cards {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ── Menü ──────────────────────────────────────────────────── */

.menu-groups {
  display: grid;
  gap: 2.75rem;
}

.menu-group__title {
  display: inline-block;
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 1rem;
  padding-bottom: 0.35rem;
  box-shadow: inset 0 -0.55em 0 -0.15em rgba(227, 168, 43, 0.55); /* hardal vurgu şeridi */
}

.menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-item {
  padding: 0.7rem 0;
  border-bottom: var(--border-w) solid var(--line-soft);
}

.menu-item:last-child {
  border-bottom: 0;
}

.menu-item__row {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
}

.menu-item__name {
  font-weight: 600;
  color: var(--ink);
}

.menu-item__name small {
  font-weight: 500;
  color: var(--ink-soft);
  font-size: 0.85em;
}

.menu-item__dots {
  flex: 1;
  border-bottom: 2px dotted var(--line);
  transform: translateY(-0.25em);
  min-width: 1.5rem;
}

.menu-item__price {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--kahve);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.menu-item__desc {
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0.25rem 0 0;
  max-width: 34rem;
}

.menu-note {
  margin-top: 2.5rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

@media (min-width: 900px) {
  .menu-groups {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 4.5rem;
  }
}

/* ── Galeri ────────────────────────────────────────────────── */

.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.gallery__item {
  position: relative;
  padding: 0;
  border: var(--border-w) solid var(--kahve);
  background: none;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: zoom-in;
  display: block;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}

.gallery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(227, 168, 43, 0.28);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
  pointer-events: none;
}

.gallery__item:hover::after,
.gallery__item:focus-visible::after {
  opacity: 1;
}

@media (prefers-reduced-motion: no-preference) {
  .gallery__item:hover img,
  .gallery__item:focus-visible img { transform: scale(1.05); }
}

/* Öne çıkan kareler: editoryal ritim */
.gallery__item:first-child {
  grid-column: span 2;
}

.gallery__item:first-child img {
  aspect-ratio: 2 / 1;
}

@media (min-width: 700px) {
  .gallery {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }

  .gallery__item:first-child {
    grid-column: span 2;
    grid-row: span 2;
  }

  .gallery__item:first-child img {
    aspect-ratio: 1;
  }

  .gallery__item:last-child {
    grid-column: span 2;
  }

  .gallery__item:last-child img {
    aspect-ratio: 2 / 1;
  }
}

/* ── Lightbox ──────────────────────────────────────────────── */

.lightbox {
  border: 0;
  padding: 0;
  background: transparent;
  max-width: min(92vw, 940px);
  overflow: visible;
}

.lightbox::backdrop {
  background: rgba(23, 16, 11, 0.9);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.lightbox__img {
  width: 100%;
  max-height: 76vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.lightbox__caption {
  color: var(--krem);
  text-align: center;
  font-size: 0.95rem;
  margin: 0.85rem 0 0;
}

.lightbox__counter {
  color: rgba(250, 246, 238, 0.6);
  text-align: center;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  margin: 0.3rem 0 0;
  font-variant-numeric: tabular-nums;
}

.lightbox__close,
.lightbox__nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: var(--border-w) solid var(--kahve);
  border-radius: 50%;
  background: var(--krem);
  color: var(--kahve);
  cursor: pointer;
  transition: background-color 0.2s var(--ease), transform 0.2s var(--ease);
}

.lightbox__close:hover,
.lightbox__nav:hover {
  background: var(--hardal);
}

.lightbox__close {
  position: absolute;
  top: -0.5rem;
  right: -0.25rem;
  z-index: 2;
  font-size: 1.5rem;
  line-height: 1;
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.lightbox__nav svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lightbox__nav--prev { left: 0.5rem; }
.lightbox__nav--next { right: 0.5rem; }

@media (min-width: 1100px) {
  .lightbox__nav--prev { left: -60px; }
  .lightbox__nav--next { right: -60px; }
  .lightbox__close { right: -0.5rem; }
}

/* ── Çalışma saatleri ──────────────────────────────────────── */

.hours {
  max-width: 640px;
}

.hours-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 3px solid var(--kahve);
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.95rem 0;
  border-bottom: var(--border-w) solid var(--line);
}

.hours-list__day {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--kahve);
}

.hours-list__time {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--hardal-deep);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.hours-note {
  margin: 1.25rem 0 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ── Konum & iletişim ──────────────────────────────────────── */

.location {
  display: grid;
  gap: 2.5rem;
}

.location__text > p:first-child {
  font-size: 1.08rem;
  text-wrap: pretty;
}

.contact-list {
  list-style: none;
  margin: 1.75rem 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-list a {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--kahve);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

.contact-list a:hover {
  color: var(--hardal-deep);
}

.contact-list .icon {
  color: var(--hardal-deep);
}

.location__address {
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin: 0;
}

.location__map {
  border-radius: var(--radius);
  overflow: hidden;
  border: var(--border-w) solid var(--kahve);
  aspect-ratio: 4 / 3;
}

.location__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (min-width: 900px) {
  .location {
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
    align-items: center;
  }
}

/* ── Alt bilgi ─────────────────────────────────────────────── */

.site-footer {
  background: var(--kahve);
  color: rgba(250, 246, 238, 0.82);
  padding: 3.5rem 0 2.5rem;
  border-top: var(--border-w) solid var(--kahve-deep);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
  text-align: center;
}

.footer-wordmark {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(2.4rem, 8vw, 4rem);
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--krem);
  margin: 0;
}

.footer-wordmark span {
  color: var(--hardal);
}

.footer-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem 1.75rem;
}

.footer-nav a {
  color: rgba(250, 246, 238, 0.82);
  text-decoration: none;
  font-size: 0.97rem;
  transition: color 0.2s var(--ease);
}

.footer-nav a:hover {
  color: var(--hardal);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-instagram {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--krem);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

.footer-instagram:hover {
  color: var(--hardal);
}

.footer-instagram .icon {
  color: var(--hardal);
}

.footer-copy {
  font-size: 0.88rem;
  color: rgba(250, 246, 238, 0.5);
  margin: 0.4rem 0 0;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(250, 246, 238, 0.14);
  width: 100%;
}

/* ── Sabit WhatsApp düğmesi ────────────────────────────────── */

.wa-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--kahve);
  color: var(--krem);
  border: var(--border-w) solid var(--kahve);
  box-shadow: 4px 4px 0 var(--hardal);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.9);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s, background-color 0.2s var(--ease), color 0.2s var(--ease);
}

.wa-float.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.wa-float:hover {
  background: var(--hardal);
  color: var(--kahve);
}

.wa-float .icon {
  width: 28px;
  height: 28px;
}

/* ── Kaydırmada belirme (yalnızca JS varsa) ────────────────── */

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

.js .cards .card.reveal:nth-child(2) { transition-delay: 0.1s; }
.js .cards .card.reveal:nth-child(3) { transition-delay: 0.2s; }
.js .cards .card.reveal:nth-child(4) { transition-delay: 0.3s; }
.js .menu-groups .menu-group.reveal:nth-child(2n) { transition-delay: 0.08s; }

@media (prefers-reduced-motion: reduce) {
  .js .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
