/* ==========================================================================
   İbrahim Sınacıoğlu Photography — Ana stil dosyası
   Düzen: Puçi Wedding Story'nin sade editoryal yapısı örnek alındı.
   Renk / font değişiklikleri için :root bloğunu düzenlemen yeterli.
   ========================================================================== */

:root {
  /* --- Editoryal Siyah-Krem paleti (kahve/bronz aksan = logo) --- */
  --bordo:         #5e3d1c;   /* koyu kahve — buton, alıntı zemini, çerçeve */
  --bordo-deep:    #402813;
  --cream:         #f7f3ec;   /* koyu zemin üstündeki açık metin */

  --bg:            #f5f2ec;   /* sıcak kırık beyaz zemin */
  --bg-alt:        #efeae1;
  --surface:       #e8e2d6;
  --text:          #1b1a17;   /* neredeyse siyah metin */
  --text-muted:    #857c70;   /* sıcak gri */
  --line:          #ddd5c9;
  --accent:        #7a4f24;   /* bronz aksan */
  --accent-soft:   #9c7a4f;

  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-body:    "Jost", "Helvetica Neue", Arial, sans-serif;

  --maxw: 1240px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 128px;
}

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

::selection { background: var(--bordo); color: var(--cream); }

/* ---------- Tipografi ---------- */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: 0.01em;
}

/* Puçi'deki gibi ince, çok harf aralıklı, küçük büyük-harf etiketler */
.eyebrow {
  font-size: 0.66rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.lead { color: var(--text-muted); font-size: 1.05rem; }

/* ---------- Layout ---------- */
.wrap    { max-width: var(--maxw); margin: 0 auto; padding: 0 2rem; }
.wrap-sm { max-width: 780px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 7rem 0; }
.center  { text-align: center; }

.rule { width: 60px; height: 1px; background: var(--accent); margin: 0 0 2rem; }
.center .rule { margin-inline: auto; }

/* ==========================================================================
   Header — Puçi düzeni: solda link · ortada logo · sağda link
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  /* Mobil menü perdesinin (110) ÜSTÜNDE kalmalı, yoksa
     menü açıkken burger'a tıklanamaz ve menü kapanmaz. */
  z-index: 120;
  background: var(--bg);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s var(--ease), padding 0.4s var(--ease);
  padding: 2rem 0 1.6rem;
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  padding: 1.1rem 0;
}

/* Header, sayfa gövdesinden daha geniş: linkler ekranın kenarlarına yaklaşsın.
   Çok geniş ekranlarda dağılmaması için 1720px'de duruyor. */
.header-inner {
  max-width: 1720px;
  margin: 0 auto;
  padding: 0 3.5rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 4rem;
}

.nav-side { display: flex; align-items: center; gap: 2.4rem; }
.nav-side.left  { justify-content: flex-end; }   /* linkler logoya yaslı */
.nav-side.right { justify-content: flex-start; }

.nav-link {
  font-size: 0.82rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text);
  position: relative;
  padding: 0.4rem 0;
  white-space: nowrap;
  transition: color 0.3s var(--ease);
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 0.35s var(--ease);
}
.nav-link:hover { color: var(--accent); }
.nav-link:hover::after,
.nav-link[aria-current="page"]::after { width: 100%; }

/* Ortadaki logo */
.brand { display: block; line-height: 0; }
.brand img {
  height: 62px;
  width: auto;
  transition: height 0.4s var(--ease);
}
.site-header.scrolled .brand img { height: 44px; }

.socials { display: flex; align-items: center; gap: 1.1rem; }
.socials a {
  color: var(--text-muted);
  transition: color 0.3s var(--ease), transform 0.3s var(--ease);
  display: flex;
}
.socials a:hover { color: var(--accent); transform: translateY(-2px); }
.socials svg { width: 21px; height: 21px; fill: currentColor; }

/* Mobil menü butonu */
.burger {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  width: 30px; height: 22px;
  position: relative;
  z-index: 130;
}
/* Görünmez, geniş dokunma alanı — parmakla ıskalamayı önler */
.burger::before {
  content: "";
  position: absolute;
  inset: -14px;
}
.burger span {
  position: absolute;
  left: 0;
  width: 100%; height: 1px;
  background: var(--text);
  transition: transform 0.4s var(--ease), opacity 0.3s var(--ease);
}
.burger span:nth-child(1) { top: 1px; }
.burger span:nth-child(2) { top: 9px; }
.burger span:nth-child(3) { top: 17px; }
.burger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
  z-index: 110;   /* header (120) bunun üstünde kalmalı */
}
.mobile-nav.open { opacity: 1; pointer-events: auto; }
.mobile-nav ul { display: flex; flex-direction: column; gap: 2.2rem; text-align: center; }
.mobile-nav a {
  font-size: 1rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text);
}
.mobile-nav a:active { color: var(--accent); }

/* Menü içindeki sosyal ikonlar ve iletişim */
.mobile-nav .socials { display: flex; gap: 2rem; }
.mobile-nav .socials svg { width: 24px; height: 24px; }
.mobile-nav .m-contact {
  text-align: center;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: none;
  color: var(--text-muted);
  line-height: 2;
}
.mobile-nav .m-contact a { font-size: 0.85rem; letter-spacing: 0.04em; text-transform: none; }

/* ==========================================================================
   Sayfa başlığı
   ========================================================================== */
.page-head { padding: 5rem 0 3.5rem; text-align: center; }
.page-head h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  margin-bottom: 1rem;
}
.page-head p {
  color: var(--text-muted);
  font-style: italic;
  font-family: var(--font-display);
  font-size: 1.15rem;
}

/* ==========================================================================
   HERO — ana sayfa açılışı
   ========================================================================== */
.hero {
  min-height: calc(100vh - 128px);
  min-height: calc(100svh - 128px);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  overflow: hidden;
  /* Alt boşluk: scroll göstergesi içeriğe binmesin */
  padding: 4rem 0 8rem;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img,
.hero-media video {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  animation: kenburns 18s ease-out forwards;
}
@keyframes kenburns { to { transform: scale(1); } }

/* Nötr karartma — fotoğrafın kendi rengi bozulmasın diye bordo tonu YOK.
   Sadece krem logonun okunması için gerektiği kadar karartıyoruz.
   Daha açık istersen 0.42/0.70 değerlerini düşür. */
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(0,0,0,0.42) 0%, rgba(0,0,0,0.70) 100%),
    linear-gradient(to bottom, rgba(0,0,0,0.35) 0%, transparent 40%, rgba(0,0,0,0.62) 100%);
}

.hero-content { position: relative; z-index: 2; padding: 0 1.5rem; }
.hero-content h1 { margin-bottom: 2rem; }
.hero-content h1 img {
  width: min(620px, 82vw);
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 6px 40px rgba(0, 0, 0, 0.5));
}

.hero-tagline {
  font-size: 0.98rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--cream);
  margin-left: 0.42em;
}

.scroll-cue {
  position: absolute;
  left: 50%; bottom: 2.2rem;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}
.scroll-cue::after {
  content: "";
  width: 1px; height: 46px;
  background: linear-gradient(to bottom, var(--cream), transparent);
  animation: cue 2.2s ease-in-out infinite;
}
@keyframes cue {
  0%, 100% { opacity: 0.25; transform: scaleY(0.5); transform-origin: top; }
  50%      { opacity: 1;    transform: scaleY(1);   transform-origin: top; }
}

/* Alçak pencerelerde (yarım ekran tarayıcı, yatay telefon) yer yok — gizle */
@media (max-height: 700px) {
  .scroll-cue { display: none; }
  .hero { padding-bottom: 4rem; }
}

/* ==========================================================================
   Hizmetler
   ========================================================================== */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.service {
  background: var(--bg);
  padding: 3rem 2.2rem;
  transition: background 0.45s var(--ease);
}
.service:hover { background: var(--bg-alt); }
.service .num {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--accent);
  letter-spacing: 0.2em;
  display: block;
  margin-bottom: 1.2rem;
}
.service h3 { font-size: 1.6rem; margin-bottom: 0.8rem; }
.service p  { color: var(--text-muted); font-size: 0.93rem; }

/* Bölüm başlığı */
.section-head { margin-bottom: 4rem; }
.section-head h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); margin-bottom: 1.2rem; }
.section-head p  { color: var(--text-muted); max-width: 620px; }
.section-head.center p { margin-inline: auto; }

/* CTA şeridi */
.cta { background: var(--bg-alt); text-align: center; }
.cta h2 { font-size: clamp(2rem, 4.5vw, 3.4rem); margin-bottom: 1.2rem; }
.cta p  { color: var(--text-muted); max-width: 540px; margin: 0 auto 2.6rem; }

/* ==========================================================================
   GET IN TOUCH — form sayfası
   ========================================================================== */
/* Solda bilgi · sağda form */
.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact-info h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  margin-bottom: 2rem;
}
.contact-info p { color: var(--text); margin-bottom: 1.6rem; }
.contact-info .en {
  color: var(--text-muted);
  font-style: italic;
  font-size: 0.95rem;
}
.contact-lines {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  font-size: 0.95rem;
  line-height: 2.1;
  color: var(--text-muted);
}
.contact-lines a { color: var(--text); transition: color 0.3s var(--ease); }
.contact-lines a:hover { color: var(--accent); }

.form-intro { text-align: center; margin-bottom: 4rem; }
.form-intro h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  margin-bottom: 1.5rem;
}
.form-intro p { color: var(--text); font-size: 1.08rem; }

form { display: grid; gap: 2.2rem; }
.row { display: grid; grid-template-columns: 1fr 1fr; gap: 2.2rem; }
.field { display: flex; flex-direction: column; }

/* Etiketler bilerek belirgin: koyu, biraz daha büyük, daha dar aralıklı */
.field label {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bordo);
  font-weight: 400;
  margin-bottom: 0.7rem;
}
.field .req { color: var(--accent-soft); }

.field input,
.field select,
.field textarea {
  background: transparent;
  border: 0;
  border-bottom: 1.5px solid var(--text-muted);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1.08rem;
  font-weight: 400;
  padding: 0.7rem 0;
  transition: border-color 0.35s var(--ease);
  border-radius: 0;
}
.field select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%237a4f24' stroke-width='1.5' d='M1 1.5 6 6.5 11 1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.1rem center;
  background-size: 0.72rem;
  padding-right: 1.5rem;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-bottom-color: var(--bordo);
  border-bottom-width: 2px;
}
.field input::placeholder,
.field textarea::placeholder { color: #a08078; }

.form-status { font-size: 0.9rem; color: var(--accent); min-height: 1.2em; text-align: center; }
.form-actions { text-align: center; }

/* ==========================================================================
   Butonlar
   ========================================================================== */
.btn {
  display: inline-block;
  padding: 1.1rem 3.4rem;
  border: 1px solid var(--bordo);
  color: var(--bordo);
  font-size: 0.68rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  background: transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: color 0.45s var(--ease);
  font-family: var(--font-body);
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--bordo);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s var(--ease);
  z-index: -1;
}
.btn:hover { color: var(--cream); }
.btn:hover::before { transform: scaleX(1); transform-origin: left; }

/* ==========================================================================
   THE SHOWCASE — editoryal kolaj
   ========================================================================== */
.showcase-hero { margin-bottom: 6rem; }
.showcase-hero img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

/* Metin + görsel üçlüsü yan yana */
.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-bottom: 7rem;
}
.story.flip .story-text { order: 2; }

.story-text h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
}
.story-text p { color: var(--text-muted); }

/* Serpiştirilmiş üçlü — Puçi'deki gibi farklı yüksekliklerde */
.trio { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.trio img { width: 100%; object-fit: cover; aspect-ratio: 2 / 3; }
.trio img:nth-child(1) { margin-top: 2.5rem; }
.trio img:nth-child(3) { margin-top: 1.2rem; }

/* Asimetrik ikili */
.duo {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 2rem;
  align-items: end;
}
.duo img { width: 100%; object-fit: cover; }
.duo img:nth-child(1) { aspect-ratio: 1 / 1; }
.duo img:nth-child(2) { aspect-ratio: 4 / 5; }

/* El yazısı ara başlık */
.script-line {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.6rem, 3.6vw, 2.6rem);
  color: var(--accent);
  text-align: center;
  margin: 4rem 0;
  line-height: 1.4;
}

/* ==========================================================================
   Showcase — editoryal düzen (büyük başlık · video · üçlü · kolaj)
   ========================================================================== */
.sc-split {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  align-items: end;
  margin: 5.5rem 0 2rem;
}
.sc-bigtitle {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.6rem, 8.5vw, 6.8rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.sc-bigtitle span { font-style: italic; }
.sc-para {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 460px;
  justify-self: end;
}

/* Video kutusu — 16:9, poster kare gösterir; mp4 yüklenince oynar */
.sc-video {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #120607;
  overflow: hidden;
  margin: 2rem 0 3.5rem;
}
.sc-video video { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Özel oynatıcı — native kontroller yok, her yere tıkla oynat/duraklat */
.sc-video[data-player] { cursor: pointer; }
.sc-video[data-player] video { pointer-events: none; }

.vp-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 88px; height: 88px;
  border-radius: 50%;
  border: 1px solid rgba(247, 233, 223, 0.85);
  background: rgba(24, 5, 7, 0.32);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 4;
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), background 0.4s var(--ease);
}
.vp-play svg { width: 34px; height: 34px; fill: var(--cream); margin-left: 5px; }
.vp-play:hover { background: rgba(116, 7, 13, 0.62); transform: scale(1.07); }
.sc-video.playing .vp-play { opacity: 0; transform: scale(0.7); pointer-events: none; }

/* İnce zarif ilerleme çubuğu — sadece oynarken / hover'da görünür */
.vp-progress {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 4px;
  background: rgba(247, 233, 223, 0.22);
  z-index: 5;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s var(--ease), height 0.2s var(--ease);
}
.sc-video.playing .vp-progress,
.sc-video[data-player]:hover .vp-progress { opacity: 1; }
.vp-progress:hover { height: 8px; }
.vp-progress span {
  display: block;
  height: 100%;
  width: 0;
  background: var(--cream);
  transition: width 0.1s linear;
}

/* Üçlü portre */
.sc-triptych {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin: 2rem 0 4.5rem;
}
.sc-triptych img { width: 100%; aspect-ratio: 2 / 3; object-fit: cover; background: var(--surface); }

/* Parti kolajı — ortada video, köşelerde taşan iki görsel */
.sc-collage { position: relative; margin: 3rem 0 5.5rem; padding: 2.5rem 0; }
.sc-collage .sc-video { width: min(76%, 920px); margin: 0 auto; }
.sc-collage .float {
  position: absolute;
  width: 21%;
  max-width: 250px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  z-index: 3;
  box-shadow: 0 22px 55px rgba(61, 17, 20, 0.28);
}
.sc-collage .float-l { left: 0; top: 0; }
.sc-collage .float-r { right: 0; bottom: 0; }

@media (max-width: 820px) {
  .sc-split { grid-template-columns: 1fr; gap: 1.2rem; margin: 3.5rem 0 1.5rem; }
  .sc-para { justify-self: start; }
  .sc-triptych { grid-template-columns: 1fr; gap: 0.8rem; }
  .sc-collage { padding: 0; }
  .sc-collage .sc-video { width: 100%; }
  .sc-collage .float { display: none; }
}

/* ==========================================================================
   Portfolyo kartları
   ========================================================================== */
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2.5rem; }

.card { position: relative; display: block; }
.card-media { position: relative; aspect-ratio: 4 / 5; overflow: hidden; background: var(--surface); }
.card-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease);
}
.card:hover .card-media img { transform: scale(1.06); }

.card-body { padding: 1.4rem 0 0; }
.card-body .place {
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.35rem;
}
.card-body h3 { font-size: 1.5rem; }

/* ==========================================================================
   Proje galerisi — tek çiftin arşivi (editoryal düzen)
   ========================================================================== */
.project-head {
  padding: 4rem 0 3.5rem;
  text-align: center;
}
.project-head .eyebrow { margin-bottom: 1.5rem; }

/* Dev editoryal başlık */
.project-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.8rem, 11vw, 8rem);
  line-height: 0.98;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.project-couple {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  color: var(--text);
  line-height: 1.1;
}
.project-venue {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-top: 0.4rem;
}
.project-intro {
  max-width: 620px;
  margin: 2.5rem auto 0;
}
.project-intro p {
  color: var(--text-muted);
  margin-bottom: 1.2rem;
  font-size: 1.02rem;
}

/* Masonry benzeri kolon dizilimi — dikey/yatay karışık fotoğraflar
   otomatik oturur, boşluk kalmaz. */
.gallery {
  column-count: 3;
  column-gap: 1.2rem;
}
.gallery img {
  width: 100%;
  margin-bottom: 1.2rem;
  break-inside: avoid;
  background: var(--surface);
  display: block;
}
/* Tıklanabilir galeri fotoğrafları */
.gallery[data-lightbox] img {
  cursor: zoom-in;
  transition: opacity 0.35s var(--ease), transform 0.6s var(--ease);
}
.gallery[data-lightbox] img:hover { opacity: 0.88; }
@media (max-width: 900px) { .gallery { column-count: 2; } }
@media (max-width: 560px) { .gallery { column-count: 1; } }

.gallery-hint {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Galeri sonu — iletişime çağrı */
.gallery-foot {
  text-align: center;
  margin-top: 4rem;
  padding-top: 4rem;
  border-top: 1px solid var(--line);
}
.gallery-foot p { color: var(--text-muted); margin-bottom: 2rem; }

/* ==========================================================================
   Lightbox — tıklanınca tam ekran, ok/kaydırma ile gez
   ========================================================================== */
.lb {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(24, 5, 7, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
  touch-action: pan-y;
}
.lb.open { opacity: 1; pointer-events: auto; }

.lb-stage {
  max-width: 92vw;
  max-height: 86vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lb-stage img {
  max-width: 92vw;
  max-height: 86vh;
  width: auto;
  height: auto;
  object-fit: contain;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5);
  user-select: none;
  -webkit-user-drag: none;
}

/* Kontroller */
.lb-btn {
  position: absolute;
  background: none;
  border: 0;
  color: var(--cream);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  opacity: 0.75;
}
.lb-btn:hover { opacity: 1; }
.lb-btn svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.5; }

.lb-close { top: 1.5rem; right: 1.7rem; width: 30px; height: 30px; }
.lb-prev, .lb-next { top: 50%; transform: translateY(-50%); width: 44px; height: 44px; }
.lb-prev { left: 1.5rem; }
.lb-next { right: 1.5rem; }
.lb-prev:hover { transform: translateY(-50%) translateX(-3px); }
.lb-next:hover { transform: translateY(-50%) translateX(3px); }

.lb-count {
  position: absolute;
  bottom: 1.6rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--cream);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  opacity: 0.7;
}

@media (max-width: 640px) {
  .lb-prev, .lb-next { display: none; }   /* mobilde sadece kaydırma */
  .lb-stage img { max-width: 96vw; max-height: 82vh; }
}

/* ==========================================================================
   Alıntı şeridi — tam bordo, markanın nefes aldığı yer
   ========================================================================== */
.quote {
  background: var(--bordo);
  text-align: center;
  padding: 7rem 0;
}
.quote blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.5rem, 3.2vw, 2.4rem);
  line-height: 1.45;
  max-width: 850px;
  margin: 0 auto 2rem;
  color: var(--cream);
}
.quote cite {
  font-style: normal;
  font-size: 0.66rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.75;
}

/* ==========================================================================
   About
   ========================================================================== */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-split img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; }
.about-text p { margin-bottom: 1.4rem; color: var(--text-muted); }
.about-text p:first-of-type { color: var(--text); font-size: 1.1rem; }

.lang-en { margin-top: 3.5rem; padding-top: 3rem; border-top: 1px solid var(--line); }
.lang-en p { font-style: italic; font-size: 0.94rem; }

.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 3rem; text-align: center; }
.stat .n { font-family: var(--font-display); font-size: 3.2rem; color: var(--accent); line-height: 1; }
.stat .l {
  font-size: 0.62rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.9rem;
}

/* ==========================================================================
   Footer — Puçi düzeni: e-posta · logo · telefon, ortalı
   ========================================================================== */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 5rem 0 3rem;
  text-align: center;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3rem;
}
.footer-grid a { color: var(--text-muted); transition: color 0.3s var(--ease); font-size: 0.9rem; }
.footer-grid a:hover { color: var(--accent); }
.footer-logo img { height: 66px; width: auto; margin: 0 auto; }

.footer-socials { display: flex; justify-content: center; gap: 1.4rem; margin-bottom: 2.5rem; }
.footer-socials a { color: var(--text-muted); transition: color 0.3s var(--ease), transform 0.3s var(--ease); display: flex; }
.footer-socials a:hover { color: var(--accent); transform: translateY(-2px); }
.footer-socials svg { width: 19px; height: 19px; fill: currentColor; }

.footer-nav { display: flex; justify-content: center; gap: 2.5rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.footer-nav a {
  font-size: 0.64rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.3s var(--ease);
}
.footer-nav a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 2rem;
  font-size: 0.74rem;
  color: var(--text-muted);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

/* WhatsApp yüzen buton */
.wa-float {
  position: fixed;
  right: 1.6rem; bottom: 1.6rem;
  z-index: 90;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 26px rgba(61, 17, 20, 0.28);
  transition: transform 0.3s var(--ease);
}
.wa-float:hover { transform: scale(1.09); }
.wa-float svg { width: 26px; height: 26px; fill: #fff; }

/* ==========================================================================
   Scroll reveal
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1100px) {
  .header-inner { padding: 0 2rem; }
  .nav-side { gap: 2rem; }
}

@media (max-width: 980px) {
  .story, .about-split, .contact-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-info { text-align: center; }
  .contact-lines { margin-top: 1.5rem; padding-top: 1.5rem; }
  .story.flip .story-text { order: 0; }
  .section { padding: 4.5rem 0; }
  .hero { min-height: calc(100svh - 90px); }
  .hero-tagline { letter-spacing: 0.3em; font-size: 0.85rem; }
}

@media (max-width: 760px) {
  /* Yerleşim: [boş] · logo ortada · burger sağda
     Sütunlar açıkça atanıyor — yoksa gizlenen .nav-side'lar
     yüzünden logo sola, burger ortaya kayıyor. */
  .header-inner {
    grid-template-columns: 1fr auto 1fr;
    gap: 1rem;
  }
  .nav-side { display: none; }

  .brand { grid-column: 2; justify-self: center; }
  .brand img { height: 54px; }
  .site-header.scrolled .brand img { height: 42px; }

  .burger {
    display: block;
    grid-column: 3;
    justify-self: end;
  }

  .row { grid-template-columns: 1fr; gap: 1.6rem; }
  .trio { gap: 0.6rem; }
  .trio img:nth-child(1), .trio img:nth-child(3) { margin-top: 0; }
  .duo { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-logo img { height: 54px; }
  .footer-bottom { justify-content: center; text-align: center; }

  .wrap, .wrap-sm, .header-inner { padding-inline: 1.5rem; }
}

/* ==========================================================================
   JOURNAL (BLOG)
   ========================================================================== */

/* --- Liste: öne çıkan yazı --- */
.post-feature {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 6rem;
  padding-bottom: 6rem;
  border-bottom: 1px solid var(--line);
}
.post-feature .post-media { overflow: hidden; }
.post-feature .post-media img { aspect-ratio: 4 / 3; }
.post-feature h2 {
  font-size: clamp(1.8rem, 3.6vw, 2.9rem);
  line-height: 1.15;
  margin: 0.7rem 0 1.2rem;
  color: var(--text);
  transition: color 0.35s var(--ease);
}
.post-feature:hover h2 { color: var(--accent); }

.post-more {
  display: inline-block;
  margin-top: 1.6rem;
  font-family: var(--font-body);
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.4rem;
  transition: border-color 0.35s var(--ease);
}
.post-feature:hover .post-more { border-color: var(--accent); }

/* --- Liste: kart ızgarası --- */
.post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3.5rem 2.6rem;
}
.post-card .post-media { overflow: hidden; }
.post-card .post-media img { aspect-ratio: 3 / 2; }
.post-card h3 {
  font-size: 1.35rem;
  line-height: 1.25;
  margin: 0.6rem 0 0.8rem;
  color: var(--text);
  transition: color 0.35s var(--ease);
}
.post-card:hover h3 { color: var(--accent); }

/* Kartların ortak parçaları */
.post-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.9s var(--ease);
}
.post-feature:hover .post-media img,
.post-card:hover .post-media img { transform: scale(1.04); }

.post-cat {
  font-family: var(--font-body);
  font-size: 0.66rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
}
.post-ozet {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}
.post-meta {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0.75;
}

/* --- Tek yazı sayfası --- */
.post-head {
  padding: 11rem 0 2.5rem;
  text-align: center;
}
.post-head h1 {
  font-size: clamp(2rem, 4.6vw, 3.6rem);
  line-height: 1.12;
  margin: 1.1rem 0 1.4rem;
}
.post-head .post-meta { margin-top: 0.4rem; }

.post-cover { margin-bottom: 1rem; }
.post-cover img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.post-content h2 {
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
  margin: 3rem 0 1rem;
  color: var(--text);
}
.post-content h2:first-child { margin-top: 0; }
.post-content p {
  color: var(--text-muted);
  line-height: 1.95;
  margin-bottom: 1.35rem;
}
.post-content p:first-child {
  font-size: 1.1rem;
  color: var(--text);
}
.post-content em { font-family: var(--font-display); font-size: 1.1em; }
.post-content strong { color: var(--text); font-weight: 400; }
.post-content ul { list-style: none; margin: 0 0 1.6rem; padding: 0; }
.post-content li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.8rem;
  color: var(--text-muted);
  line-height: 1.8;
}
.post-content li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85em;
  width: 8px;
  height: 1px;
  background: var(--accent);
}

.post-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin: 4.5rem 0 0;
}
.post-strip img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  display: block;
}

.post-related {
  text-align: center;
  margin-top: 4.5rem;
  padding-top: 3.5rem;
  border-top: 1px solid var(--line);
}
.post-related p {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.6rem;
}

@media (max-width: 900px) {
  .post-feature {
    grid-template-columns: 1fr;
    gap: 1.8rem;
    margin-bottom: 4rem;
    padding-bottom: 4rem;
  }
  .post-feature .post-media img { aspect-ratio: 3 / 2; }
}
@media (max-width: 640px) {
  .post-head { padding-top: 8.5rem; }
  .post-cover img { aspect-ratio: 4 / 3; }
  .post-strip { grid-template-columns: 1fr; gap: 0.9rem; }
  .post-grid { gap: 3rem 1.8rem; }
}

/* Telefon alanı: ülke kodu seçimi + numara */
.tel-group {
  display: grid;
  grid-template-columns: minmax(6.2rem, auto) 1fr;
  gap: 0.9rem;
  align-items: end;
}
.tel-group select { min-width: 0; }
.tel-group input { letter-spacing: 0.04em; }

@media (max-width: 420px) {
  .tel-group { grid-template-columns: 1fr; gap: 0.7rem; }
}

/* ==========================================================================
   FOOTER — sosyal medya butonları
   ========================================================================== */
.footer-social-cta {
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--line);
}
.footer-social-cta .eyebrow { margin-bottom: 1.6rem; }

.social-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.95rem 1.6rem;
  border: 1px solid var(--line);
  color: var(--text);
  text-align: left;
  transition: border-color 0.35s var(--ease), background 0.35s var(--ease),
              transform 0.35s var(--ease), color 0.35s var(--ease);
}
.social-btn svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
  flex-shrink: 0;
  color: var(--accent);
  transition: color 0.35s var(--ease);
}
.social-btn span {
  display: flex;
  flex-direction: column;
  line-height: 1.35;
  font-size: 0.86rem;
  color: var(--text-muted);
  white-space: nowrap;
}
.social-btn strong {
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text);
  transition: color 0.35s var(--ease);
}
.social-btn:hover {
  border-color: var(--accent);
  background: var(--accent);
  transform: translateY(-2px);
}
.social-btn:hover svg,
.social-btn:hover strong,
.social-btn:hover span { color: var(--cream); }

@media (max-width: 560px) {
  .social-buttons { flex-direction: column; }
  .social-btn { justify-content: center; }
}

/* ==========================================================================
   Mekan Listesi — venue kartları
   ========================================================================== */
.venue-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.venue-card {
  display: flex;
  flex-direction: column;
  padding: 2.4rem 2rem;
  min-height: 200px;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  color: var(--text);
  transition: transform 0.4s var(--ease), border-color 0.3s var(--ease);
}
a.venue-card:hover { transform: translateY(-4px); border-color: var(--accent); }
.venue-no {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--accent);
  margin-bottom: 1.1rem;
}
.venue-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.75rem;
  line-height: 1.1;
}
.venue-city {
  margin-top: 0.5rem;
  font-size: 0.76rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.venue-link {
  margin-top: auto;
  padding-top: 1.6rem;
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}
@media (max-width: 820px) { .venue-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .venue-grid { grid-template-columns: 1fr; } }
