/* =========================================================
   Şairler Kahvesi — Stil sayfası
   Vanilla CSS · mobile-first · prefers-reduced-motion uyumlu
   ========================================================= */

/* ---------- TOKENS ---------- */
:root {
  /* Renkler — koyu espresso × krem × bakır × altın */
  --c-ink:       #2a1810;
  --c-ink-2:     #3d2817;
  --c-ink-3:     #4a3326;
  --c-cream:     #f5efe6;
  --c-cream-2:   #ede4d3;
  --c-paper:     #faf6ef;
  --c-copper:    #c9785e;
  --c-copper-d:  #a85d44;
  --c-gold:      #c9a876;
  --c-gold-d:    #a8884f;
  --c-muted:     #8a7563;
  --c-line:      rgba(42,24,16,0.12);

  /* Tipografi */
  --f-serif: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  --f-sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Sistem */
  --container: 1240px;
  --r-sm: 6px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 36px;
  --shadow-sm: 0 4px 12px rgba(42,24,16,.08);
  --shadow-md: 0 18px 48px -16px rgba(42,24,16,.22);
  --shadow-lg: 0 40px 90px -30px rgba(42,24,16,.40);
  --t-fast: 200ms cubic-bezier(.4,0,.2,1);
  --t-med:  420ms cubic-bezier(.4,0,.2,1);
  --t-slow: 800ms cubic-bezier(.22,1,.36,1);
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  font-family: var(--f-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--c-ink);
  background: var(--c-paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
body.no-scroll, body.menu-open { overflow: hidden; }

img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--t-fast); }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
ul, ol { padding-left: 1.1em; }
h1, h2, h3, h4 { margin: 0; font-family: var(--f-serif); font-weight: 600; line-height: 1.1; letter-spacing: -0.01em; color: var(--c-ink); }
p { margin: 0 0 1em; }

/* ---------- SHARED ---------- */
.section__eyebrow {
  display: inline-flex; align-items: center; gap: .6em;
  margin: 0 0 1em;
  font-size: .78rem; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--c-copper-d);
}
.section__eyebrow::before {
  content: ""; width: 28px; height: 1px; background: var(--c-copper);
}
.section__eyebrow--light { color: var(--c-gold); }
.section__eyebrow--light::before { background: var(--c-gold); }

.section__title {
  font-size: clamp(1.85rem, 1.2rem + 2.4vw, 3.4rem);
  letter-spacing: -.02em;
  max-width: 22ch;
}
.section__title em {
  font-style: italic;
  color: var(--c-copper-d);
  font-weight: 500;
}
.section__title--light { color: var(--c-cream); }
.section__title--light em { color: var(--c-gold); }
.section__sub { color: var(--c-muted); margin-top: .6em; max-width: 50ch; }

.section__head { max-width: var(--container); margin: 0 auto 3rem; padding: 0 clamp(20px, 4vw, 48px); text-align: left; }
.section__head--center { text-align: center; }
.section__head--center .section__eyebrow { justify-content: center; }
.section__head--center .section__title,
.section__head--center .section__sub { margin-left: auto; margin-right: auto; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .95em 1.7em;
  font-size: .94rem; font-weight: 500; letter-spacing: .02em;
  border-radius: 999px;
  transition: transform var(--t-fast), background var(--t-fast), color var(--t-fast), box-shadow var(--t-fast);
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn--solid { background: var(--c-ink); color: var(--c-cream); }
.btn--solid:hover { background: var(--c-copper-d); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--ghost { background: transparent; color: var(--c-cream); border-color: rgba(245,239,230,.5); }
.btn--ghost:hover { background: var(--c-cream); color: var(--c-ink); }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity var(--t-slow), transform var(--t-slow); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: grid; grid-template-columns: auto 1fr auto auto; align-items: center;
  gap: 1.5rem;
  padding: 1.1rem clamp(20px, 4vw, 48px);
  transition: background var(--t-med), backdrop-filter var(--t-med), box-shadow var(--t-med), padding var(--t-med);
}
.nav.is-scrolled {
  background: rgba(250,246,239,.86);
  backdrop-filter: saturate(140%) blur(16px);
  -webkit-backdrop-filter: saturate(140%) blur(16px);
  box-shadow: 0 1px 0 var(--c-line), 0 12px 32px -24px rgba(42,24,16,.3);
  padding-top: .75rem; padding-bottom: .75rem;
}
.nav__brand { display: flex; align-items: center; gap: .75rem; }
.nav__logo {
  width: 44px; height: 44px; border-radius: 50%;
  object-fit: cover; box-shadow: 0 0 0 2px var(--c-paper), 0 0 0 3px var(--c-copper);
  transition: transform var(--t-fast);
}
.nav__brand:hover .nav__logo { transform: rotate(-6deg); }
.nav__name { display: flex; flex-direction: column; line-height: 1; font-family: var(--f-serif); }
.nav__name-top { font-size: .82rem; font-style: italic; color: var(--c-copper-d); letter-spacing: .04em; }
.nav__name-bot { font-size: 1.15rem; font-weight: 700; letter-spacing: -.01em; }

.nav__menu { display: flex; gap: 1.6rem; justify-content: center; }
.nav__menu a {
  position: relative; font-size: .9rem; font-weight: 500;
  color: var(--c-ink-2); padding: .4em 0;
}
.nav__menu a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--c-copper);
  transform: scaleX(0); transform-origin: right;
  transition: transform var(--t-med);
}
.nav__menu a:hover { color: var(--c-ink); }
.nav__menu a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav__cta {
  display: flex; flex-direction: column; align-items: flex-end; line-height: 1.1;
  padding: .55rem 1.05rem;
  border-radius: 999px;
  background: var(--c-ink);
  color: var(--c-cream);
  transition: background var(--t-fast), transform var(--t-fast);
}
.nav__cta:hover { background: var(--c-copper-d); transform: translateY(-2px); }
.nav__cta > span:first-child { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; opacity: .8; }
.nav__cta-phone { font-size: .92rem; font-weight: 600; font-variant-numeric: tabular-nums; }

.nav__burger { display: none; width: 42px; height: 42px; flex-direction: column; justify-content: center; align-items: center; gap: 5px; }
.nav__burger span { display: block; width: 22px; height: 2px; background: var(--c-ink); border-radius: 2px; transition: transform var(--t-fast), opacity var(--t-fast); }

/* Mobil */
@media (max-width: 960px) {
  .nav { grid-template-columns: auto 1fr auto; }
  .nav__cta { display: none; }
  .nav__burger { display: inline-flex; }
  .nav__menu {
    position: fixed; inset: 76px 0 0 0;
    flex-direction: column; gap: 0;
    background: var(--c-paper);
    padding: 2rem clamp(20px, 4vw, 48px);
    transform: translateY(-110%);
    transition: transform var(--t-med);
    box-shadow: var(--shadow-lg);
    overflow-y: auto;
  }
  .nav__menu a {
    font-family: var(--f-serif); font-size: 1.8rem; font-weight: 600;
    padding: .9rem 0; border-bottom: 1px solid var(--c-line);
  }
  body.menu-open .nav__menu { transform: none; }
  body.menu-open .nav__burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  body.menu-open .nav__burger span:nth-child(2) { opacity: 0; }
  body.menu-open .nav__burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid; place-items: center;
  color: var(--c-cream);
  overflow: hidden;
}
.hero__media {
  position: absolute; inset: 0; z-index: 0;
}
.hero__video {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(.9) contrast(1.05);
  transform: scale(1.04);
  animation: heroBreath 14s ease-in-out infinite alternate;
}
@keyframes heroBreath {
  to { transform: scale(1.1); }
}
.hero__veil {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(0,0,0,0) 0%, rgba(20,10,5,.55) 70%, rgba(20,10,5,.85) 100%),
    linear-gradient(180deg, rgba(20,10,5,.45) 0%, rgba(20,10,5,.15) 35%, rgba(20,10,5,.65) 90%);
}

.hero__inner {
  position: relative; z-index: 1;
  max-width: 900px; padding: 0 clamp(20px, 5vw, 48px);
  text-align: center;
}
.hero__eyebrow {
  display: inline-block; margin: 0 0 1.4rem;
  font-size: .78rem; letter-spacing: .32em; text-transform: uppercase;
  color: var(--c-gold);
}
.hero__title {
  font-family: var(--f-serif);
  font-size: clamp(3.2rem, 6vw + 1rem, 8rem);
  font-weight: 600; line-height: .95; letter-spacing: -.03em;
  margin: 0 0 1.5rem;
  text-shadow: 0 4px 30px rgba(0,0,0,.45);
}
.hero__title span { display: block; }
.hero__title em {
  display: block; font-style: italic; font-weight: 400;
  color: var(--c-gold);
  margin-top: -.1em;
}
.hero__quote {
  font-family: var(--f-serif); font-style: italic;
  font-size: clamp(1.05rem, .6rem + 1.1vw, 1.45rem);
  line-height: 1.45;
  color: var(--c-cream-2);
  max-width: 36ch; margin: 0 auto 2.4rem;
  opacity: .95;
}
.hero__cta { display: flex; gap: .9rem; justify-content: center; flex-wrap: wrap; }
.hero__scroll {
  position: absolute; left: 50%; bottom: 2.2rem; transform: translateX(-50%);
  width: 30px; height: 48px;
  border: 1.5px solid rgba(245,239,230,.55); border-radius: 999px;
  display: grid; place-items: center;
  opacity: .8;
  transition: opacity var(--t-fast), transform var(--t-fast);
}
.hero__scroll:hover { opacity: 1; transform: translateX(-50%) translateY(4px); }
.hero__scroll span {
  width: 4px; height: 8px; border-radius: 2px; background: var(--c-cream);
  animation: heroScroll 1.8s ease-in-out infinite;
}
@keyframes heroScroll {
  0%, 100% { transform: translateY(-6px); opacity: 0; }
  50% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(6px); opacity: 0; }
}

/* =========================================================
   STRIP (ticker)
   ========================================================= */
.strip {
  background: var(--c-ink);
  color: var(--c-gold);
  overflow: hidden;
  border-block: 1px solid rgba(201,168,118,.18);
  padding: 1.1rem 0;
}
.strip__track {
  display: flex; gap: 2.6rem;
  white-space: nowrap;
  font-family: var(--f-serif); font-style: italic;
  font-size: clamp(1rem, .8rem + .4vw, 1.3rem);
  animation: stripMove 48s linear infinite;
}
.strip__track span:nth-child(even) { color: var(--c-copper); }
@keyframes stripMove {
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .strip__track { animation: none; }
}

/* =========================================================
   HAKKINDA
   ========================================================= */
.about {
  padding: clamp(5rem, 9vw, 9rem) clamp(20px, 4vw, 48px);
  max-width: var(--container); margin: 0 auto;
}
.about__grid {
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 5vw, 5rem); align-items: center;
}
.about__lede { font-size: 1.06rem; line-height: 1.7; color: var(--c-ink-3); max-width: 50ch; }
.about__stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem; margin-top: 2.4rem; padding-top: 2rem;
  border-top: 1px solid var(--c-line);
}
.about__stats > div { display: flex; flex-direction: column; gap: .25rem; }
.about__stats strong {
  font-family: var(--f-serif); font-size: clamp(1.8rem, 1rem + 1.6vw, 2.6rem); font-weight: 600;
  color: var(--c-ink); line-height: 1;
}
.about__stats span { font-size: .82rem; color: var(--c-muted); letter-spacing: .02em; }

.about__media {
  position: relative; aspect-ratio: 4/5; min-height: 400px;
}
.about__figure { position: absolute; overflow: hidden; border-radius: var(--r-lg); box-shadow: var(--shadow-md); margin: 0; }
.about__figure img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow); }
.about__figure:hover img { transform: scale(1.04); }
.about__figure--lg { inset: 0 12% 18% 0; }
.about__figure--sm { inset: 30% 0 0 38%; aspect-ratio: 4/5; width: 58%; height: 62%; border-radius: var(--r-lg); box-shadow: var(--shadow-lg); border: 6px solid var(--c-paper); }
.about__figure--badge {
  inset: auto 6% -6% auto; width: 130px; height: 130px;
  border-radius: 50%; padding: 0;
  border: 8px solid var(--c-paper);
  box-shadow: var(--shadow-md);
  display: grid; place-items: center;
  background: var(--c-ink);
}
.about__figure--badge img { width: 60%; height: 60%; border-radius: 50%; object-fit: cover; }
.about__figure--badge figcaption {
  position: absolute; inset: auto -2rem -3.5rem auto;
  font-family: var(--f-serif); font-style: italic; font-size: .9rem;
  color: var(--c-copper-d); text-align: center;
  background: var(--c-paper); padding: .35rem .85rem; border-radius: 999px;
  box-shadow: var(--shadow-sm); white-space: nowrap;
}

@media (max-width: 820px) {
  .about__grid { grid-template-columns: 1fr; }
  .about__media { aspect-ratio: 1/1; max-width: 520px; margin: 0 auto; }
  .about__stats { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  .about__stats strong { font-size: 1.6rem; }
}

/* =========================================================
   ÖNE ÇIKANLAR
   ========================================================= */
.highlights {
  padding: clamp(4rem, 8vw, 8rem) clamp(20px, 4vw, 48px);
  background: linear-gradient(180deg, var(--c-paper) 0%, var(--c-cream) 100%);
}
.highlights__grid {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.6rem;
}
.hcard {
  background: var(--c-paper);
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-med), box-shadow var(--t-med);
  display: flex; flex-direction: column;
  border: 1px solid var(--c-line);
}
.hcard:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.hcard__img { aspect-ratio: 4/5; overflow: hidden; background: var(--c-cream-2); }
.hcard__img img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow); }
.hcard:hover .hcard__img img { transform: scale(1.06); }
.hcard__body { padding: 1.4rem 1.4rem 1.7rem; display: flex; flex-direction: column; gap: .55rem; flex: 1; }
.hcard__tag {
  align-self: flex-start;
  font-size: .7rem; letter-spacing: .18em; text-transform: uppercase;
  background: var(--c-ink); color: var(--c-cream);
  padding: .3em .8em; border-radius: 999px;
}
.hcard__tag--gold { background: var(--c-gold); color: var(--c-ink); }
.hcard h3 { font-size: 1.2rem; }
.hcard p { font-size: .92rem; color: var(--c-muted); margin: 0; line-height: 1.55; }
.hcard--accent { background: var(--c-ink); color: var(--c-cream); border-color: var(--c-ink-2); }
.hcard--accent h3 { color: var(--c-cream); }
.hcard--accent p { color: rgba(245,239,230,.75); }

@media (max-width: 1100px) { .highlights__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .highlights__grid { grid-template-columns: 1fr; } }

/* =========================================================
   LEZZETLER
   ========================================================= */
.menu {
  background: var(--c-ink);
  color: var(--c-cream);
  position: relative;
}
.menu__hero {
  position: relative; min-height: 60vh;
  display: grid; align-items: end;
  overflow: hidden;
}
.menu__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  opacity: .55;
}
.menu__veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(42,24,16,.4), rgba(42,24,16,.92));
}
.menu__intro {
  position: relative; z-index: 1;
  padding: 5rem clamp(20px, 4vw, 48px) 3rem;
  max-width: var(--container); margin: 0 auto; width: 100%;
}
.menu__cats {
  position: relative;
  max-width: var(--container); margin: 0 auto;
  padding: 4rem clamp(20px, 4vw, 48px) 6rem;
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 3rem 4rem;
}
.mcat__title {
  font-size: 1.6rem; color: var(--c-gold);
  font-style: italic; font-weight: 500;
  padding-bottom: .8rem; margin-bottom: 1.4rem;
  border-bottom: 1px solid rgba(201,168,118,.25);
  display: flex; align-items: baseline; gap: .8rem;
}
.mcat__title::before {
  content: ""; flex: 0 0 8px; height: 8px; border-radius: 50%; background: var(--c-copper);
}
.mlist { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 1.4rem; }
.mlist li {
  display: grid; grid-template-columns: 88px 1fr; gap: 1.1rem;
  align-items: center;
}
.mlist figure {
  margin: 0; width: 88px; height: 88px;
  border-radius: var(--r-md); overflow: hidden;
  box-shadow: 0 8px 24px -10px rgba(0,0,0,.5);
  border: 1px solid rgba(201,168,118,.18);
}
.mlist figure img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow); }
.mlist li:hover figure img { transform: scale(1.08); }
.mlist h4 { font-family: var(--f-serif); font-size: 1.12rem; color: var(--c-cream); margin: 0 0 .25rem; font-weight: 500; }
.mlist p { color: rgba(245,239,230,.65); margin: 0; font-size: .88rem; line-height: 1.55; }
@media (max-width: 720px) {
  .menu__cats { grid-template-columns: 1fr; padding: 2rem clamp(20px, 4vw, 48px) 4rem; gap: 2.2rem; }
}

/* =========================================================
   GALERİ
   ========================================================= */
.gallery {
  padding: clamp(5rem, 9vw, 9rem) clamp(20px, 4vw, 48px) clamp(3rem, 6vw, 6rem);
  max-width: 1400px; margin: 0 auto;
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 1rem;
}
.g {
  position: relative; overflow: hidden; border-radius: var(--r-md);
  cursor: zoom-in;
  background: var(--c-cream-2);
  transition: transform var(--t-fast);
}
.g img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--t-slow), filter var(--t-fast);
}
.g::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,.55) 100%);
  opacity: 0; transition: opacity var(--t-fast);
}
.g:hover img { transform: scale(1.07); }
.g:hover::after { opacity: 1; }
.g--tall { grid-row: span 2; }
.g--wide { grid-column: span 2; }
@media (max-width: 900px)  { .gallery__grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 180px; } .g--wide { grid-column: span 2; } }
@media (max-width: 600px)  { .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; } .g--wide { grid-column: span 2; } .g--tall { grid-row: span 2; } }

/* =========================================================
   REELS
   ========================================================= */
.reels {
  padding: clamp(4rem, 8vw, 8rem) 0;
  background: var(--c-cream);
  overflow: hidden;
}
.reels__row { position: relative; max-width: 1400px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }
.reels__track {
  display: flex; gap: 1.2rem;
  overflow-x: auto; scroll-snap-type: x mandatory;
  padding: .6rem 0 1.5rem;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}
.reels__track::-webkit-scrollbar { height: 6px; }
.reels__track::-webkit-scrollbar-thumb { background: var(--c-line); border-radius: 999px; }
.reel {
  flex: 0 0 auto;
  width: clamp(220px, 22vw, 300px);
  aspect-ratio: 9/16;
  border-radius: var(--r-lg);
  overflow: hidden;
  scroll-snap-align: start;
  position: relative;
  margin: 0;
  box-shadow: var(--shadow-md);
  background: var(--c-ink);
  transition: transform var(--t-fast);
}
.reel:hover { transform: translateY(-4px); }
.reel video { width: 100%; height: 100%; object-fit: cover; }
.reel figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 2.4rem 1.1rem .9rem;
  font-family: var(--f-serif); font-style: italic; font-size: .92rem;
  color: var(--c-cream);
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.78));
  pointer-events: none;
}
.reels__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--c-paper); color: var(--c-ink);
  font-size: 1.5rem; font-family: var(--f-serif);
  display: grid; place-items: center;
  box-shadow: var(--shadow-md);
  z-index: 2;
  transition: opacity var(--t-fast), transform var(--t-fast), background var(--t-fast);
}
.reels__nav:hover:not(:disabled) { background: var(--c-ink); color: var(--c-cream); transform: translateY(-50%) scale(1.06); }
.reels__nav:disabled { opacity: .3; cursor: not-allowed; }
.reels__nav--prev { left: 12px; }
.reels__nav--next { right: 12px; }
@media (max-width: 720px) { .reels__nav { display: none; } }

/* =========================================================
   CONTACT
   ========================================================= */
.contact {
  padding: clamp(5rem, 9vw, 9rem) clamp(20px, 4vw, 48px);
  max-width: var(--container); margin: 0 auto;
}
.contact__grid {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.contact__list { list-style: none; padding: 0; margin: 2.2rem 0; display: flex; flex-direction: column; gap: 1.3rem; }
.contact__list li { display: grid; grid-template-columns: 100px 1fr; gap: 1rem; padding-bottom: 1.2rem; border-bottom: 1px solid var(--c-line); }
.contact__list li:last-child { border-bottom: 0; }
.contact__lbl { font-size: .72rem; letter-spacing: .22em; text-transform: uppercase; color: var(--c-copper-d); padding-top: .35em; }
.contact__val { font-family: var(--f-serif); font-size: 1.15rem; line-height: 1.4; color: var(--c-ink); }
a.contact__val:hover { color: var(--c-copper-d); }
.contact__cta { display: flex; gap: .9rem; flex-wrap: wrap; }
.contact__cta .btn--solid { background: var(--c-ink); color: var(--c-cream); }
.contact__cta .btn--ghost { color: var(--c-ink); border-color: var(--c-ink); }
.contact__cta .btn--ghost:hover { background: var(--c-ink); color: var(--c-cream); }

.contact__map {
  border-radius: var(--r-lg); overflow: hidden;
  aspect-ratio: 4/3; box-shadow: var(--shadow-md);
  border: 1px solid var(--c-line);
}
.contact__map iframe { width: 100%; height: 100%; border: 0; display: block; filter: saturate(.85); }

@media (max-width: 880px) {
  .contact__grid { grid-template-columns: 1fr; }
  .contact__map { aspect-ratio: 16/10; }
}

/* =========================================================
   FOOTER
   ========================================================= */
.foot {
  background: var(--c-ink);
  color: rgba(245,239,230,.7);
  padding: 4rem clamp(20px, 4vw, 48px) 3rem;
}
.foot__inner {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: auto 1fr auto; gap: 1.4rem; align-items: center;
}
.foot__brand { display: flex; align-items: center; gap: .8rem; font-family: var(--f-serif); font-size: 1.2rem; color: var(--c-cream); }
.foot__brand img { width: 36px; height: 36px; border-radius: 50%; }
.foot__addr { margin: 0; font-size: .9rem; text-align: center; }
.foot__links { display: flex; gap: 1.4rem; font-size: .9rem; }
.foot__links a:hover { color: var(--c-gold); }
.foot__copy {
  grid-column: 1 / -1;
  margin-top: 2rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(245,239,230,.08);
  text-align: center; font-size: .8rem; color: rgba(245,239,230,.45);
}
@media (max-width: 720px) {
  .foot__inner { grid-template-columns: 1fr; text-align: center; justify-items: center; gap: 1rem; }
  .foot__addr { text-align: center; }
}

/* =========================================================
   LIGHTBOX
   ========================================================= */
.lightbox {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(20,10,5,.94);
  display: grid; place-items: center;
  padding: clamp(20px, 4vw, 60px);
  opacity: 0; pointer-events: none;
  transition: opacity var(--t-med);
}
.lightbox:not([hidden]) { opacity: 1; pointer-events: auto; }
.lightbox__stage { margin: 0; max-width: min(1100px, 92vw); max-height: 86vh; display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.lightbox__stage img { max-width: 100%; max-height: 80vh; border-radius: var(--r-md); box-shadow: var(--shadow-lg); }
.lightbox__stage figcaption { color: var(--c-cream); font-family: var(--f-serif); font-style: italic; font-size: 1rem; text-align: center; }
.lightbox__close, .lightbox__nav {
  position: absolute;
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(245,239,230,.1); color: var(--c-cream);
  font-size: 1.6rem; line-height: 1;
  display: grid; place-items: center;
  transition: background var(--t-fast), transform var(--t-fast);
}
.lightbox__close:hover, .lightbox__nav:hover { background: rgba(245,239,230,.22); transform: scale(1.08); }
.lightbox__close { top: 24px; right: 24px; font-size: 1.8rem; }
.lightbox__nav--prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox__nav--prev:hover { transform: translateY(-50%) scale(1.08); }
.lightbox__nav--next:hover { transform: translateY(-50%) scale(1.08); }
@media (max-width: 640px) {
  .lightbox__nav { width: 40px; height: 40px; }
  .lightbox__nav--prev { left: 12px; }
  .lightbox__nav--next { right: 12px; }
  .lightbox__close { top: 12px; right: 12px; }
}

/* =========================================================
   ŞAİR MASALARI (poets)
   ========================================================= */
.poets {
  padding: clamp(5rem, 9vw, 9rem) clamp(20px, 4vw, 48px);
  background:
    radial-gradient(ellipse at 20% 10%, rgba(201,168,118,.12), transparent 50%),
    radial-gradient(ellipse at 90% 90%, rgba(201,120,94,.10), transparent 50%),
    var(--c-paper);
  position: relative;
}
.poets::before, .poets::after {
  position: absolute;
  font-family: var(--f-serif); font-style: italic;
  font-size: clamp(8rem, 16vw, 18rem);
  color: var(--c-cream-2);
  line-height: .8; pointer-events: none;
  user-select: none;
  z-index: 0;
}
.poets::before { content: "\201C"; top: 4rem; left: 3vw; }
.poets::after { content: "\201D"; bottom: 4rem; right: 3vw; }

.poets__grid {
  position: relative; z-index: 1;
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.poem {
  margin: 0; position: relative;
  background: var(--c-paper);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--c-line);
  transition: transform var(--t-med), box-shadow var(--t-med);
  display: flex; flex-direction: column;
}
.poem:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.poem > img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  transition: transform var(--t-slow);
}
.poem:hover > img { transform: scale(1.04); }
.poem figcaption {
  padding: 1.6rem 1.6rem 1.8rem;
  display: flex; flex-direction: column; gap: .8rem;
  flex: 1;
}
.poem__tag {
  align-self: flex-start;
  font-size: .7rem; letter-spacing: .2em; text-transform: uppercase;
  padding: .3em .8em; border-radius: 999px;
  background: rgba(201,120,94,.12);
  color: var(--c-copper-d);
}
.poem blockquote {
  font-family: var(--f-serif); font-style: italic;
  font-size: 1.05rem; line-height: 1.55; color: var(--c-ink-2);
  margin: 0; quotes: none;
}
.poem cite {
  font-size: .82rem; font-style: normal; color: var(--c-muted);
  letter-spacing: .04em;
}
.poem--quote {
  background: var(--c-ink);
  color: var(--c-cream);
  justify-content: center;
  min-height: 320px;
}
.poem--quote .poem__tag { background: rgba(201,168,118,.2); color: var(--c-gold); }
.poem--quote blockquote { color: var(--c-cream); font-size: 1.18rem; }
.poem--quote cite { color: rgba(245,239,230,.6); }

@media (max-width: 980px) { .poets__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .poets__grid { grid-template-columns: 1fr; } .poets::before, .poets::after { font-size: 6rem; } }

/* ---------- PRINT ---------- */
@media print {
  .nav, .reels, .hero__scroll, .lightbox { display: none !important; }
  body { color: #000; background: #fff; }
}
