/* ============ MARRY ME EVENTS — v2 ============ */
:root {
  --ivory: #fbf9f4;
  --cream: #f4eee4;
  --blush: #d9a7a0;
  --blush-soft: #ecd3cf;
  --sage: #7c8b6f;
  --sage-deep: #4f5d43;
  --gold: #a9885a;
  --gold-soft: rgba(169, 136, 90, 0.35);
  --ink: #262019;
  --muted: #746b60;
  --serif: 'Cormorant Garamond', serif;
  --sans: 'Jost', sans-serif;
  --script: 'Great Vibes', cursive;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-lg: 0 30px 70px rgba(38, 32, 25, 0.14);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.75;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--blush-soft); }
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: 1.15; letter-spacing: 0.01em; }
h1 { font-size: clamp(2.6rem, 5.5vw, 4.4rem); }
h2 { font-size: clamp(2rem, 3.6vw, 2.9rem); }
h3 { font-size: 1.4rem; }

.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  font-weight: 400;
}
.section { padding: 110px 0; }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 64px; }
.section-sub { margin-top: 16px; color: var(--muted); font-size: 0.95rem; }
.section-sub a { color: var(--gold); border-bottom: 1px solid var(--gold-soft); transition: border-color .3s; }
.section-sub a:hover { border-color: var(--gold); }

/* Zarif ayraç */
.ornament {
  width: 72px; height: 1px;
  background: var(--gold);
  margin: 26px 0 30px;
  position: relative;
}
.ornament::after {
  content: '◆';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 7px;
  color: var(--gold);
  background: inherit;
  padding: 0 10px;
  background: transparent;
}
.ornament.center { margin-left: auto; margin-right: auto; }
.ornament.light { background: rgba(251,249,244,.4); }
.ornament.light::after { color: var(--blush-soft); }

/* ---------- Butonlar ---------- */
.btn {
  display: inline-block;
  position: relative;
  overflow: hidden;
  background: var(--sage-deep);
  color: #fff;
  padding: 15px 38px;
  border: 1px solid var(--sage-deep);
  border-radius: 0;
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 400;
  cursor: pointer;
  transition: color .45s var(--ease-out), border-color .45s var(--ease-out);
  z-index: 1;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .55s var(--ease-out);
}
.btn:hover { border-color: var(--gold); }
.btn:hover::after { transform: scaleX(1); transform-origin: left; }
.btn-outline { background: transparent; border-color: rgba(255,255,255,.85); }
.btn-outline::after { background: #fff; }
.btn-outline:hover { color: var(--ink); border-color: #fff; }
.btn-small { padding: 11px 24px; font-size: 0.68rem; }
.btn-full { width: 100%; }

/* ---------- Üst bar ---------- */
.topbar {
  background: var(--sage-deep);
  color: rgba(251,249,244,.92);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  display: flex;
  justify-content: center;
  gap: 36px;
  padding: 9px 16px;
  flex-wrap: wrap;
}
.topbar a { border-bottom: 1px solid transparent; transition: border-color .3s; }
.topbar a:hover { border-color: rgba(251,249,244,.6); }

/* ---------- Menü ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 249, 244, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(169, 136, 90, 0.14);
  transition: box-shadow .4s var(--ease-out), padding .4s var(--ease-out);
}
.nav.scrolled { box-shadow: 0 8px 32px rgba(38, 32, 25, 0.09); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
  transition: padding .4s var(--ease-out);
}
.nav.scrolled .nav-inner { padding-top: 10px; padding-bottom: 10px; }
.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo img {
  display: block;
  height: 44px;
  width: auto;
  transition: height .4s var(--ease-out);
}
.nav.scrolled .logo img { height: 36px; }
.menu { display: flex; align-items: center; gap: clamp(14px, 1.8vw, 26px); }
.menu a:not(.btn) {
  font-size: 0.74rem;
  white-space: nowrap;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  padding: 4px 0;
  color: var(--ink);
  transition: color .3s;
}
.menu a:not(.btn):hover { color: var(--gold); }
.menu a:not(.btn)::after {
  content: '';
  position: absolute;
  left: 50%; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .4s var(--ease-out), left .4s var(--ease-out);
}
.menu a:not(.btn):hover::after { width: 100%; left: 0; }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; z-index: 130; }
.hamburger span { display: block; width: 26px; height: 1.5px; background: var(--ink); margin: 7px 0; transition: .4s var(--ease-out); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 94vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: -12% 0;
  background-size: cover;
  background-position: center 26%;
  animation: heroZoom 16s var(--ease-out) forwards;
  will-change: transform;
}
@keyframes heroZoom { from { transform: scale(1.12); } to { transform: scale(1.02); } }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(38,32,25,.18) 0%, rgba(38,32,25,.52) 100%),
    linear-gradient(180deg, rgba(38,32,25,.3) 0%, rgba(38,32,25,.42) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 860px; padding: 0 24px; }
.hero-script {
  font-family: var(--script);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  color: var(--blush-soft);
  margin-bottom: 14px;
}
.hero-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-size: 0.68rem;
  letter-spacing: 0.5em;
  color: rgba(255,255,255,.75);
  margin-bottom: 22px;
}
.hero-line span { display: block; width: 54px; height: 1px; background: rgba(255,255,255,.45); }
.hero h1 { text-shadow: 0 2px 30px rgba(38,32,25,.35); }
.hero-text {
  max-width: 580px;
  margin: 26px auto 38px;
  font-size: 1.02rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,.92);
}
.hero-actions { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }

/* Hero giriş animasyonları */
.hero-anim {
  opacity: 0;
  transform: translateY(34px);
  filter: blur(6px);
  animation: heroIn 1.3s var(--ease-out) forwards;
}
.hero-anim.d1 { animation-delay: .25s; }
.hero-anim.d2 { animation-delay: .45s; }
.hero-anim.d3 { animation-delay: .7s; }
.hero-anim.d4 { animation-delay: .95s; }
@keyframes heroIn {
  to { opacity: 1; transform: none; filter: blur(0); }
}

.scroll-hint {
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  width: 25px; height: 42px;
  border: 1.5px solid rgba(255,255,255,.65);
  border-radius: 14px;
  z-index: 2;
  opacity: 0;
  animation: heroIn 1.2s var(--ease-out) 1.4s forwards;
}
.scroll-hint span {
  position: absolute;
  top: 8px; left: 50%;
  width: 3px; height: 8px;
  margin-left: -1.5px;
  background: #fff;
  border-radius: 2px;
  animation: scrollHint 2s var(--ease-out) infinite;
}
@keyframes scrollHint {
  0% { opacity: 1; transform: translateY(0); }
  70%, 100% { opacity: 0; transform: translateY(15px); }
}

/* ---------- Sayılar ---------- */
.stats { background: var(--cream); padding: 64px 0; border-bottom: 1px solid rgba(169,136,90,.1); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat { position: relative; }
.stat:not(:first-child)::before {
  content: '';
  position: absolute;
  left: -12px; top: 50%;
  transform: translateY(-50%);
  height: 56px; width: 1px;
  background: rgba(169,136,90,.25);
}
.stat strong {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 300;
  color: var(--sage-deep);
  display: block;
  line-height: 1.1;
}
.stat strong::after { content: '+'; color: var(--gold); font-size: 2rem; }
.stat span { font-size: 0.72rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--muted); }

/* ---------- Hakkımızda ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-images { position: relative; padding-bottom: 48px; }
.about-img-main {
  border-radius: 999px 999px 4px 4px;
  aspect-ratio: 3/4;
  object-fit: cover;
  width: 88%;
}
.about-img-small {
  position: absolute;
  right: 0; bottom: 0;
  width: 46%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 10px solid var(--ivory);
  box-shadow: var(--shadow-lg);
}
.about-badge {
  position: absolute;
  left: 4%; bottom: 8%;
  background: var(--sage-deep);
  color: var(--ivory);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 118px; height: 118px;
  border-radius: 50%;
  text-align: center;
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--ivory);
}
.badge-no { font-family: var(--serif); font-size: 1.9rem; line-height: 1; color: var(--blush-soft); }
.badge-text { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; margin-top: 4px; line-height: 1.5; }
.about-content h2 { margin-bottom: 4px; }
.about-content p { color: var(--muted); margin-bottom: 16px; }
.about-list { list-style: none; margin: 22px 0 34px; }
.about-list li { padding: 9px 0 9px 34px; position: relative; color: var(--ink); }
.about-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 18px; height: 1px;
  background: var(--gold);
}

/* ---------- Hizmetler ---------- */
.services { background: linear-gradient(180deg, var(--ivory) 0%, var(--cream) 100%); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.service-card {
  background: #fff;
  padding: 52px 34px 44px;
  text-align: center;
  border: 1px solid rgba(169,136,90,.14);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out), border-color .5s;
}
/* Bulanık gerçek fotoğraf katmanı — sadece his versin, okunurluğu bozmasın */
.service-card::after {
  content: '';
  position: absolute;
  inset: -14%;
  z-index: -1;
  background-image: var(--kart-foto);
  background-size: cover;
  background-position: center;
  filter: blur(16px) saturate(.75);
  opacity: .16;
  transform: scale(1.06);
  transition: opacity .6s var(--ease-out), filter .6s var(--ease-out), transform .6s var(--ease-out);
  pointer-events: none;
}
.service-card:hover::after {
  opacity: .3;
  filter: blur(11px) saturate(1);
  transform: scale(1.12);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 2px;
  background: var(--gold);
  transition: width .5s var(--ease-out);
  z-index: 2;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(169,136,90,.3);
}
.service-card:hover::before { width: 60%; }
.service-icon {
  width: 58px; height: 58px;
  margin: 0 auto 22px;
  color: var(--sage);
  transition: color .4s, transform .5s var(--ease-out);
}
.service-icon svg { width: 100%; height: 100%; }
.service-card:hover .service-icon { color: var(--gold); transform: scale(1.08); }
.service-card h3 { margin-bottom: 12px; color: var(--sage-deep); }
.service-card p { font-size: 0.93rem; color: var(--muted); }

/* ---------- Galeri ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 250px;
  gap: 14px;
}
.gallery-item { overflow: hidden; cursor: pointer; position: relative; margin: 0; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-out), filter .6s;
}
.gallery-item:hover img { transform: scale(1.06); filter: brightness(.85); }
.gallery-item::before {
  content: '+';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(.4);
  width: 46px; height: 46px;
  border: 1px solid rgba(255,255,255,.9);
  border-radius: 50%;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  z-index: 2;
  transition: opacity .45s, transform .45s var(--ease-out);
}
.gallery-item:hover::before { opacity: 1; transform: translate(-50%, -50%) scale(1); }

/* ---------- Mekânlar ---------- */
.venues { background: var(--ivory); }
.venue-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 0;
  border-top: 1px solid rgba(169,136,90,.18);
}
.venue-list li { border-bottom: 1px solid rgba(169,136,90,.18); }
.venue-list a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 22px 34px 22px 34px;
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--ink);
  transition: color .4s var(--ease-out), padding-left .4s var(--ease-out);
}
.venue-list a::before {
  content: '◆';
  position: absolute;
  left: 8px; top: 50%;
  transform: translateY(-50%);
  font-size: 6px;
  color: var(--gold);
  transition: color .4s;
}
/* Instagram story ikonu — tıklanabilir olduğunu belli eder */
.venue-list a::after {
  content: '';
  width: 13px; height: 13px;
  border: 1.5px solid currentColor;
  border-radius: 4px;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity .4s var(--ease-out), transform .4s var(--ease-out);
  flex-shrink: 0;
}
.venue-list a:hover { color: var(--gold); padding-left: 44px; }
.venue-list a:hover::after { opacity: .8; transform: translateX(0); }
.venue-list a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: -3px;
  color: var(--gold);
}
.venue-note {
  text-align: center;
  margin-top: 34px;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Logo duvarı — LOGOLAR klasörü doldurulunca yazılı listenin yerini alır */
.logo-wall {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 14px 28px;
  align-items: center;
}
.logo-wall figure {
  margin: 0;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
}
.logo-wall img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: .55;
  transition: filter .5s var(--ease-out), opacity .5s var(--ease-out), transform .5s var(--ease-out);
}
.logo-wall figure:hover img { filter: grayscale(0); opacity: 1; transform: scale(1.06); }

/* ---------- Süreç ---------- */
.process {
  background:
    linear-gradient(rgba(79,93,67,.94), rgba(79,93,67,.94)),
    url('../img/surec-fon.jpg') center/cover fixed;
  color: rgba(251,249,244,.95);
}
.process .eyebrow { color: var(--blush-soft); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.process-step { text-align: center; position: relative; padding-top: 8px; }
.step-no {
  font-family: var(--serif);
  font-size: 3.2rem;
  font-weight: 300;
  font-style: italic;
  color: var(--blush-soft);
  display: block;
  margin-bottom: 12px;
  line-height: 1;
}
.process-step h3 { margin-bottom: 10px; letter-spacing: 0.04em; }
.process-step p { font-size: 0.92rem; color: rgba(251,249,244,.75); }

/* Yorumlar bölümü kaldırıldı.
   slideFade burada kalıyor: form başarı mesajı bu animasyonu kullanıyor. */
@keyframes slideFade {
  from { opacity: 0; transform: translateY(24px); filter: blur(3px); }
  to { opacity: 1; transform: none; filter: blur(0); }
}

/* ---------- İletişim ---------- */
.contact { background: var(--cream); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 4px; }
.contact-info > p { color: var(--muted); margin-bottom: 30px; }
.contact-list { list-style: none; }
.contact-list li { padding: 11px 0; display: flex; gap: 16px; align-items: baseline; letter-spacing: 0.03em; }
.contact-list span { color: var(--gold); }
.contact-list a { border-bottom: 1px solid var(--gold-soft); transition: border-color .3s; }
.contact-list a:hover { border-color: var(--gold); }
.contact-form {
  background: #fff;
  padding: 48px;
  box-shadow: var(--shadow-lg);
  border-top: 3px solid var(--gold);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 15px 18px;
  border: 1px solid rgba(116,107,96,.22);
  border-radius: 0;
  font-family: var(--sans);
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--ivory);
  transition: border-color .35s, box-shadow .35s;
}
.contact-form textarea { resize: vertical; margin-bottom: 18px; }
.contact-form :focus {
  outline: none;
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(124,139,111,.12);
}
.form-row.tek { grid-template-columns: 1fr; }

/* Bot tuzağı: ekran dışında ama ekran okuyucu/bot için "gerçek" bir alan.
   display:none kullanmıyoruz; gelişmiş botlar onu tanıyor. */
.hp {
  position: absolute;
  left: -9999px;
  width: 1px; height: 1px;
  overflow: hidden;
}
.form-error {
  display: none;
  margin-top: 18px;
  color: #b3453a;
  text-align: center;
  font-weight: 400;
  letter-spacing: 0.03em;
}
.form-error.visible { display: block; }
.contact-form button[disabled] { opacity: .55; cursor: progress; }

.form-success {
  display: none;
  margin-top: 18px;
  color: var(--sage-deep);
  text-align: center;
  font-weight: 400;
  letter-spacing: 0.03em;
}
.form-success.visible { display: block; animation: slideFade .6s var(--ease-out); }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: rgba(251,249,244,.75); padding: 64px 0 0; }
.footer-logo { display: block; width: 158px; height: auto; }
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 44px;
}
.footer-inner p { margin-top: 14px; font-size: 0.9rem; }
.footer-links { display: flex; flex-direction: column; gap: 12px; font-size: 0.9rem; letter-spacing: 0.08em; }
.footer-links a, .footer-social a { transition: color .3s; }
.footer-links a:hover, .footer-social a:hover { color: var(--blush); }
.footer-copy {
  text-align: center;
  padding: 22px;
  border-top: 1px solid rgba(251,249,244,.1);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
}

/* ---------- WhatsApp butonu ---------- */
.wa-btn {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 150;
  display: flex;
  align-items: center;
  gap: 0;
  height: 56px;
  padding: 0 16px;
  background: #25D366;
  color: #fff;
  border-radius: 28px;
  box-shadow: 0 10px 30px rgba(37, 211, 102, .35);
  overflow: hidden;
  transition: gap .45s var(--ease-out), padding .45s var(--ease-out),
              box-shadow .45s var(--ease-out), transform .45s var(--ease-out);
}
.wa-btn svg { width: 26px; height: 26px; fill: currentColor; flex-shrink: 0; }
.wa-etiket {
  max-width: 0;
  opacity: 0;
  white-space: nowrap;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  transition: max-width .45s var(--ease-out), opacity .35s var(--ease-out);
}
.wa-btn:hover {
  gap: 10px;
  padding-right: 22px;
  transform: translateY(-2px);
  box-shadow: 0 14px 38px rgba(37, 211, 102, .45);
}
.wa-btn:hover .wa-etiket { max-width: 220px; opacity: 1; }
.wa-btn:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
@media (max-width: 940px) {
  .wa-btn { right: 16px; bottom: 16px; height: 52px; padding: 0 13px; }
  .wa-btn svg { width: 24px; height: 24px; }
}
@media (prefers-reduced-motion: reduce) {
  .wa-btn, .wa-etiket { transition: none; }
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(24,20,16,.95);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 40px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s, visibility .4s;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: 88vw; max-height: 76vh;
  transform: scale(.94);
  transition: transform .5s var(--ease-out);
  box-shadow: 0 40px 100px rgba(0,0,0,.5);
}
.lightbox.open img { transform: scale(1); }
.lightbox button {
  position: absolute;
  background: none; border: none;
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
  opacity: .7;
  transition: opacity .3s, transform .3s;
  padding: 12px;
}
.lightbox button:hover { opacity: 1; transform: scale(1.1); }
.lightbox-close { top: 20px; right: 28px; }
.lightbox-prev { left: 20px; top: 50%; transform: translateY(-50%); font-size: 2.6rem; }
.lightbox-next { right: 20px; top: 50%; transform: translateY(-50%); font-size: 2.6rem; }
.lightbox-prev:hover, .lightbox-next:hover { transform: translateY(-50%) scale(1.15); }

/* ---------- Reveal animasyonları ---------- */
.reveal {
  opacity: 0;
  transform: translateY(44px);
  filter: blur(5px);
  transition:
    opacity 1s var(--ease-out),
    transform 1s var(--ease-out),
    filter 1s var(--ease-out);
  will-change: opacity, transform;
}
.reveal.visible { opacity: 1; transform: none; filter: blur(0); }

/* Kademeli (stagger) gecikmeler */
.stagger > .reveal:nth-child(1) { transition-delay: 0s; }
.stagger > .reveal:nth-child(2) { transition-delay: .12s; }
.stagger > .reveal:nth-child(3) { transition-delay: .24s; }
.stagger > .reveal:nth-child(4) { transition-delay: .36s; }
.stagger > .reveal:nth-child(5) { transition-delay: .48s; }
.stagger > .reveal:nth-child(6) { transition-delay: .6s; }
.stagger > .reveal:nth-child(7) { transition-delay: .3s; }
.stagger > .reveal:nth-child(8) { transition-delay: .38s; }
.stagger > .reveal:nth-child(9) { transition-delay: .46s; }
.stagger > .reveal:nth-child(10) { transition-delay: .54s; }
.stagger > .reveal:nth-child(11) { transition-delay: .62s; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .hero-anim, .scroll-hint { animation: none !important; transition: none !important; opacity: 1 !important; transform: none !important; filter: none !important; }
}

/* ---------- Mobil ---------- */
@media (max-width: 1040px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 210px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 56px; }
  .footer-inner { grid-template-columns: 1fr; }
  .process { background-attachment: scroll; }
}
@media (max-width: 940px) {
  .logo img { height: 38px; }
  .footer-logo { width: 134px; }
  .section { padding: 72px 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 36px 16px; }
  .stat:nth-child(3)::before { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 32px 24px; }
  .topbar { gap: 14px; font-size: 0.68rem; }
  .hamburger { display: block; }
  .menu {
    position: fixed;
    top: 0; right: 0;
    width: min(80vw, 330px);
    height: 100vh;
    background: var(--ivory);
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    box-shadow: -20px 0 60px rgba(38,32,25,.18);
    /* Yüzdeli konum yerine transform: her görüntü alanında güvenilir biçimde ekran dışında durur */
    transform: translateX(100%);
    visibility: hidden;
    transition: transform .5s var(--ease-out), visibility .5s;
    z-index: 120;
  }
  .menu.open { transform: translateX(0); visibility: visible; }
  .hamburger.open span:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }
}
