/* ==========================================================================
   Sınacıoğlu Films — 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 {
  /* --- Marka renkleri (logodan pipetlendi) --- */
  --bordo:         #74070d;   /* logo rengi */
  --bordo-deep:    #4d040a;
  --cream:         #f7e9df;   /* logo zemini */

  --bg:            #f7efe7;   /* krem zemin */
  --bg-alt:        #f1e6db;
  --surface:       #ebdccf;
  --text:          #3d1114;
  --text-muted:    #8a6a63;
  --line:          #ddc9b9;
  --accent:        #74070d;
  --accent-soft:   #a8323c;

  --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-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
}

.nav-side { display: flex; align-items: center; gap: 2rem; }
.nav-side.right { justify-content: flex-end; }

.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.8rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--cream);
  margin-left: 0.45em;
}
.hero-motto {
  margin-top: 2.2rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--cream);
  opacity: 0.9;
}

.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ı
   ========================================================================== */
.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; max-width: 720px; margin: 0 auto; }
.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; }
.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;
}

/* ==========================================================================
   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; }

/* ==========================================================================
   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: 980px) {
  .story, .about-split { grid-template-columns: 1fr; gap: 2.5rem; }
  .story.flip .story-text { order: 0; }
  .section { padding: 4.5rem 0; }
  .hero { min-height: calc(100svh - 90px); }
  .hero-tagline { letter-spacing: 0.28em; font-size: 0.7rem; }
}

@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; }
}
