/* ============================================================
   VELORA WEDDING — Etimesgut / Ankara
   Elit, koyu zemin + altın vurgulu tasarım sistemi
   ============================================================ */

:root {
  --ink: #14110d;
  --ink-2: #1c1712;
  --ink-3: #241e17;
  --cream: #f6f1e7;
  --cream-2: #efe7d8;
  --gold: #c1a05e;
  --gold-light: #e0c491;
  --gold-dim: #8f7440;
  --text-dark: #2a251e;
  --text-soft: #6f665a;
  --text-on-dark: #e9e2d3;
  --text-on-dark-soft: #b3a893;
  --line-on-dark: rgba(193, 160, 94, 0.28);
  --line-on-light: rgba(42, 37, 30, 0.14);
  --radius: 2px;
  --shadow: 0 24px 60px rgba(10, 8, 5, 0.35);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: "Jost", "Segoe UI", sans-serif;
  font-weight: 300;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  line-height: 1.15;
  color: inherit;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.container-narrow { width: min(880px, 92%); margin: 0 auto; }

/* ---------- Tipografik yardımcılar ---------- */

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
}

.kicker::before,
.kicker.kicker-center::after {
  content: "";
  width: 42px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

.kicker-center { justify-content: center; }

.section-title {
  font-size: clamp(34px, 4.6vw, 54px);
  margin: 18px 0 22px;
  letter-spacing: 0.01em;
}

.section-title em {
  font-style: italic;
  color: var(--gold-dim);
}

.on-dark .section-title em { color: var(--gold-light); }

.lead {
  font-size: 19px;
  color: var(--text-soft);
  max-width: 62ch;
}

.on-dark .lead { color: var(--text-on-dark-soft); }

.center { text-align: center; }
.center .lead { margin-left: auto; margin-right: auto; }

.diamond-sep {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 26px auto;
  color: var(--gold);
}

.diamond-sep::before,
.diamond-sep::after {
  content: "";
  width: 70px;
  height: 1px;
  background: currentColor;
  opacity: 0.45;
}

/* ---------- Butonlar ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 34px;
  font-family: "Jost", sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.35s var(--ease);
  white-space: nowrap;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  color: #17130c;
  border-color: transparent;
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(193, 160, 94, 0.28);
}

.btn-ghost { color: var(--gold-light); background: transparent; }
.btn-ghost:hover { background: rgba(193, 160, 94, 0.12); transform: translateY(-2px); }

.btn-dark-ghost { color: var(--text-dark); border-color: rgba(42, 37, 30, 0.4); }
.btn-dark-ghost:hover { border-color: var(--gold-dim); color: var(--gold-dim); transform: translateY(-2px); }

/* ---------- Header ---------- */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 22px 0;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}

.site-header.scrolled {
  padding: 12px 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}

/* Arka plan pseudo-elemanda: header'a doğrudan backdrop-filter vermek,
   fixed konumlu mobil menüyü header kutusuna hapsediyor. */
.site-header.scrolled::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(18, 14, 10, 0.94);
  backdrop-filter: blur(10px);
  z-index: -1;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 34px;
}

.brand { display: flex; align-items: center; gap: 14px; margin-right: auto; }

/* Marka logosu — işletmenin logosuna sadık: fırça el yazısı "Velora"
   + üstte küçük "Wedding", metalik altın degrade ve ince koyu kontur */
/* Marka logosu — işletmenin gerçek altın logosu (şeffaf PNG) */
.brand-logo {
  display: block;
  height: 48px;
  width: auto;
  filter: drop-shadow(0 2px 5px rgba(20, 13, 3, 0.45));
}

.footer-brand .brand-logo { height: 62px; }

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
  color: var(--gold-light);
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-weight: 600;
}

.brand-mark span { transform: rotate(-45deg); }

.brand-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
  letter-spacing: 0.32em;
  color: var(--cream);
  line-height: 1;
}

.brand-text small {
  display: block;
  font-family: "Jost", sans-serif;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.5em;
  color: var(--gold);
  margin-top: 6px;
}

.main-nav { display: flex; gap: 30px; }

.main-nav a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-on-dark);
  padding: 6px 0;
  position: relative;
  transition: color 0.3s;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}

.main-nav a:hover, .main-nav a.active { color: var(--gold-light); }
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); }

/* Telefon butonu: logodaki parlak altın hissini veren degrade kapsül */
.header-cta {
  padding: 11px 26px;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: #251b0c;
  background: linear-gradient(165deg, #f6e3b0 0%, #e0c491 30%, #c1a05e 60%, #ab8a4a 85%, #d3b273 100%);
  border: 1px solid rgba(255, 243, 205, 0.55);
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.header-cta:hover {
  background: linear-gradient(165deg, #fbeec4 0%, #e8cf9e 30%, #cbaa66 60%, #b6934f 85%, #ddbc7e 100%);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line-on-dark);
  border-radius: var(--radius);
  width: 46px;
  height: 42px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.nav-toggle span {
  width: 20px;
  height: 1px;
  background: var(--gold-light);
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--cream);
  background:
    linear-gradient(180deg, rgba(16, 12, 8, 0.72), rgba(16, 12, 8, 0.55) 45%, rgba(16, 12, 8, 0.9)),
    var(--hero-image, none),
    radial-gradient(120% 90% at 50% 10%, #3a2f21 0%, #191410 55%, #100d09 100%);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  padding: 140px 0 100px;
}

.hero-inner { position: relative; z-index: 2; width: min(920px, 92%); }

.hero-eyebrow {
  font-size: 13px;
  letter-spacing: 0.55em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 30px;
}

.hero h1 {
  font-size: clamp(56px, 10vw, 128px);
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1;
}

.hero h1 .thin { font-style: italic; font-weight: 400; color: var(--gold-light); }

.hero h1.hero-logo {
  margin: 0;
  line-height: 0;
}

.hero h1.hero-logo img {
  display: inline-block;
  height: clamp(96px, 16vw, 200px);
  width: auto;
  filter: drop-shadow(0 10px 34px rgba(0, 0, 0, 0.55));
}

.hero-sub {
  margin: 30px auto 14px;
  font-size: clamp(17px, 2vw, 21px);
  color: var(--text-on-dark-soft);
  max-width: 56ch;
}

.hero-actions {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 44px;
}

/* Sayfa içi hero (alt sayfalar) */

.page-hero {
  position: relative;
  padding: 190px 0 90px;
  text-align: center;
  color: var(--cream);
  background:
    linear-gradient(180deg, rgba(16, 12, 8, 0.78), rgba(16, 12, 8, 0.86)),
    var(--hero-image, none),
    radial-gradient(120% 100% at 50% 0%, #35291b 0%, #16110c 60%);
  background-size: cover;
  background-position: center 40%;
}

.page-hero h1 { font-size: clamp(42px, 6vw, 72px); letter-spacing: 0.04em; margin-top: 16px; }

.breadcrumb {
  margin-top: 18px;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-on-dark-soft);
}

.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb .sep { margin: 0 10px; color: var(--gold); }

/* ---------- Bölümler ---------- */

section { padding: 100px 0; }

.on-dark {
  background: linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 100%);
  color: var(--text-on-dark);
}

.section-cream { background: var(--cream); }
.section-cream-2 { background: var(--cream-2); }

/* İstatistik şeridi */

.stats-band { background: var(--ink); color: var(--text-on-dark); padding: 70px 0; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat + .stat { border-left: 1px solid var(--line-on-dark); }

.stat-num {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(44px, 5vw, 64px);
  color: var(--gold-light);
  line-height: 1;
}

.stat-num sup { font-size: 0.5em; color: var(--gold); }

.stat-label {
  margin-top: 12px;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-on-dark-soft);
}

/* İki kolonlu tanıtım */

.split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}

.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }

.photo-frame { position: relative; }

.photo-frame::before {
  content: "";
  position: absolute;
  inset: -18px 18px 18px -18px;
  border: 1px solid var(--gold);
  opacity: 0.5;
  z-index: 0;
  pointer-events: none;
}

.ph {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    radial-gradient(120% 120% at 20% 0%, #3d3122 0%, #221b13 55%, #171209 100%);
  box-shadow: var(--shadow);
  z-index: 1;
}

.ph::after {
  content: "V";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 120px;
  color: rgba(193, 160, 94, 0.16);
  pointer-events: none;
  z-index: 0;
}

.ph img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.ph:hover img { transform: scale(1.05); }

.ph-tall { aspect-ratio: 4 / 5; }
.ph-wide { aspect-ratio: 16 / 10; }
.ph-square { aspect-ratio: 1; }

/* Özellik kartları */

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 60px;
}

.feature-card {
  padding: 44px 30px;
  border: 1px solid var(--line-on-dark);
  border-radius: var(--radius);
  text-align: center;
  background: rgba(255, 255, 255, 0.015);
  transition: transform 0.4s var(--ease), border-color 0.4s, background 0.4s;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  background: rgba(193, 160, 94, 0.06);
}

.feature-icon {
  width: 62px;
  height: 62px;
  margin: 0 auto 24px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-light);
}

.feature-icon svg { width: 26px; height: 26px; }

.feature-card h3 { font-size: 24px; margin-bottom: 12px; color: var(--cream); }
.feature-card p { font-size: 15px; color: var(--text-on-dark-soft); }

/* Light zeminde kart */

.section-cream .feature-card, .section-cream-2 .feature-card { border-color: var(--line-on-light); }
.section-cream .feature-card h3, .section-cream-2 .feature-card h3 { color: var(--text-dark); }
.section-cream .feature-card p, .section-cream-2 .feature-card p { color: var(--text-soft); }

/* Hizmet kartları */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
}

.service-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink-3);
  border: 1px solid var(--line-on-dark);
  transition: transform 0.4s var(--ease), border-color 0.4s;
  display: flex;
  flex-direction: column;
}

.service-card:hover { transform: translateY(-6px); border-color: var(--gold); }

.service-card .ph { aspect-ratio: 16 / 10; border-radius: 0; box-shadow: none; }

.service-body { padding: 30px 28px 34px; flex: 1; display: flex; flex-direction: column; }

.service-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 15px;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 10px;
}

.service-body h3 { font-size: 27px; color: var(--cream); margin-bottom: 12px; }
.service-body p { font-size: 15px; color: var(--text-on-dark-soft); flex: 1; }

.service-link {
  margin-top: 22px;
  font-size: 12px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.service-link:hover { color: var(--gold); }

/* Detaylı hizmet satırları (hizmetler.html) */

.service-row {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(36px, 5vw, 70px);
  align-items: center;
  padding: 70px 0;
  border-bottom: 1px solid var(--line-on-light);
}

.service-row:last-child { border-bottom: none; }
.service-row.reverse { direction: rtl; }
.service-row.reverse > * { direction: ltr; }

.service-row h2 { font-size: clamp(30px, 3.6vw, 44px); margin: 14px 0 18px; }

.service-row ul { margin-top: 20px; display: grid; gap: 10px; }

.service-row ul li {
  position: relative;
  padding-left: 26px;
  font-size: 16px;
  color: var(--text-soft);
}

.service-row ul li::before {
  content: "◆";
  position: absolute;
  left: 0;
  top: 1px;
  font-size: 9px;
  color: var(--gold);
}

/* Paket kartları */

.packages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px;
  margin-top: 60px;
  align-items: stretch;
}

.package-card {
  position: relative;
  border: 1px solid var(--line-on-dark);
  border-radius: var(--radius);
  padding: 54px 44px;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease), border-color 0.4s;
}

.package-card:hover { transform: translateY(-6px); border-color: var(--gold); }

.package-card.featured {
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(193, 160, 94, 0.08), rgba(193, 160, 94, 0.02));
}

.package-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  color: #17130c;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 7px 20px;
  border-radius: var(--radius);
  white-space: nowrap;
}

.package-card h3 {
  font-size: 32px;
  color: var(--cream);
  text-align: center;
}

.package-cap {
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin: 10px 0 30px;
}

.price-rows { border-top: 1px solid var(--line-on-dark); }

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-on-dark);
}

.price-row .day { font-size: 15px; color: var(--text-on-dark-soft); letter-spacing: 0.06em; }

.price-row .price {
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  color: var(--gold-light);
  white-space: nowrap;
}

.price-row .price small { font-size: 15px; font-family: "Jost", sans-serif; color: var(--text-on-dark-soft); }

.package-includes { margin: 28px 0 34px; display: grid; gap: 11px; flex: 1; }

.package-includes li {
  position: relative;
  padding-left: 28px;
  font-size: 15px;
  color: var(--text-on-dark-soft);
}

.package-includes li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 12px;
  top: 2px;
}

.package-card .btn { width: 100%; }

/* Kampanya kartları */

.campaign-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 50px;
}

.campaign-card {
  display: flex;
  gap: 26px;
  align-items: center;
  border: 1px dashed var(--gold-dim);
  border-radius: var(--radius);
  padding: 34px 32px;
  background: rgba(193, 160, 94, 0.05);
}

.campaign-percent {
  font-family: "Cormorant Garamond", serif;
  font-size: 58px;
  color: var(--gold-light);
  line-height: 1;
  white-space: nowrap;
}

.campaign-card h4 { font-size: 22px; color: var(--cream); margin-bottom: 6px; }
.campaign-card p { font-size: 14px; color: var(--text-on-dark-soft); }

.note-box {
  margin-top: 46px;
  padding: 26px 30px;
  border-left: 2px solid var(--gold);
  background: rgba(193, 160, 94, 0.06);
  font-size: 15px;
  color: var(--text-on-dark-soft);
}

/* Yorumlar */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 56px;
}

.testimonial {
  padding: 46px 40px;
  border: 1px solid var(--line-on-light);
  border-radius: var(--radius);
  background: #fffdf8;
  position: relative;
}

.testimonial::before {
  content: "“";
  position: absolute;
  top: 8px;
  left: 26px;
  font-family: "Cormorant Garamond", serif;
  font-size: 110px;
  line-height: 1;
  color: rgba(193, 160, 94, 0.3);
}

.testimonial p { font-size: 17px; font-style: italic; color: var(--text-soft); position: relative; }

.testimonial-meta { margin-top: 26px; display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; }

.testimonial-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 21px;
  color: var(--text-dark);
}

.testimonial-date { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-dim); }

.stars { color: var(--gold); letter-spacing: 4px; font-size: 15px; }

.rating-banner {
  margin-top: 50px;
  text-align: center;
  font-size: 14px;
  letter-spacing: 0.14em;
  color: var(--text-soft);
}

.rating-banner strong { font-family: "Cormorant Garamond", serif; font-size: 30px; color: var(--gold-dim); letter-spacing: 0; }

/* Galeri */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 60px;
}

.gallery-item { position: relative; }

.gallery-item .ph { aspect-ratio: 4 / 3; }
.gallery-item.tall .ph { aspect-ratio: 3 / 4; }

.gallery-caption {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 40px 22px 18px;
  background: linear-gradient(transparent, rgba(12, 9, 6, 0.85));
  color: var(--cream);
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

.gallery-item:hover .gallery-caption { opacity: 1; }

/* Zaman çizelgesi / süreç */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  margin-top: 60px;
  counter-reset: step;
}

.step {
  padding: 36px 28px;
  border-top: 1px solid var(--gold-dim);
  counter-increment: step;
}

.step::before {
  content: "0" counter(step);
  font-family: "Cormorant Garamond", serif;
  font-size: 46px;
  color: rgba(193, 160, 94, 0.55);
  display: block;
  margin-bottom: 14px;
  line-height: 1;
}

.step h4 { font-size: 22px; margin-bottom: 10px; }
.step p { font-size: 14.5px; color: var(--text-soft); }

.on-dark .step h4 { color: var(--cream); }
.on-dark .step p { color: var(--text-on-dark-soft); }

/* Bilgi listesi (hakkımızda) */

.info-list { display: grid; gap: 0; margin-top: 30px; }

.info-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-on-light);
  font-size: 16px;
}

.info-row dt { font-weight: 500; letter-spacing: 0.06em; color: var(--text-dark); }
.info-row dd { color: var(--text-soft); }

/* CTA bandı */

.cta-band {
  position: relative;
  text-align: center;
  padding: 110px 0;
  color: var(--cream);
  background:
    linear-gradient(180deg, rgba(16, 12, 8, 0.82), rgba(16, 12, 8, 0.82)),
    var(--hero-image, none),
    radial-gradient(100% 140% at 50% 0%, #3a2d1d 0%, #14100b 70%);
  background-size: cover;
  background-position: center;
}

.cta-band h2 { font-size: clamp(34px, 5vw, 58px); margin-bottom: 18px; }
.cta-band p { color: var(--text-on-dark-soft); max-width: 58ch; margin: 0 auto 40px; }

/* ---------- İletişim ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(36px, 5vw, 70px);
  align-items: start;
}

.contact-card {
  display: flex;
  gap: 20px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line-on-light);
}

.contact-card:first-child { padding-top: 0; }

.contact-icon {
  flex: none;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-dim);
}

.contact-icon svg { width: 22px; height: 22px; }

.contact-card h4 { font-size: 21px; margin-bottom: 6px; }
.contact-card p, .contact-card a { font-size: 16px; color: var(--text-soft); }
.contact-card a:hover { color: var(--gold-dim); }

.map-frame {
  position: relative;
  border: 1px solid var(--line-on-light);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-frame iframe { display: block; width: 100%; height: 480px; border: 0; filter: saturate(0.85); }

.map-actions { display: flex; gap: 14px; margin-top: 22px; flex-wrap: wrap; }

/* WhatsApp yüzen buton */

.wa-float {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 90;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #1fae54;
  color: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  transition: transform 0.3s var(--ease);
}

.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 28px; height: 28px; }

/* ---------- Footer ---------- */

.site-footer {
  background: #0f0c08;
  color: var(--text-on-dark-soft);
  padding: 80px 0 0;
  font-size: 15px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 44px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(193, 160, 94, 0.15);
}

.footer-brand .brand-text { font-size: 30px; }
.footer-brand p { margin-top: 20px; max-width: 34ch; font-size: 14.5px; }

.footer-col h4 {
  font-size: 14px;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}

.footer-col ul { display: grid; gap: 12px; }
.footer-col a:hover { color: var(--gold-light); }

.footer-col .addr { display: grid; gap: 12px; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 26px 0;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: rgba(178, 168, 147, 0.7);
}

/* ---------- Animasyonlar ---------- */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.reveal.visible { opacity: 1; transform: none; }

.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */

/* 7 menü başlığı dar ekranlarda taşmasın */
@media (max-width: 1180px) {
  .header-inner { gap: 22px; }
  .main-nav { gap: 20px; }
  .main-nav a { font-size: 12px; letter-spacing: 0.12em; }
  .header-cta { padding: 10px 18px; font-size: 12.5px; letter-spacing: 0.08em; }
  .brand-logo { height: 42px; }
}

@media (max-width: 980px) {
  .header-cta { display: none; }
}

@media (max-width: 1020px) {
  .features-grid, .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 44px 20px; }
  .stat:nth-child(3) { border-left: none; }
}

@media (max-width: 860px) {
  section { padding: 72px 0; }

  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(340px, 84vw);
    background: rgba(15, 12, 8, 0.98);
    flex-direction: column;
    gap: 8px;
    padding: 120px 40px 40px;
    transform: translateX(100%);
    transition: transform 0.45s var(--ease);
    box-shadow: -30px 0 80px rgba(0, 0, 0, 0.5);
  }

  .main-nav.open { transform: translateX(0); }
  .main-nav a { font-size: 15px; padding: 12px 0; border-bottom: 1px solid rgba(193, 160, 94, 0.12); }

  .nav-toggle { display: flex; z-index: 110; }
  .header-cta { display: none; }

  .split, .split.reverse, .service-row, .service-row.reverse, .contact-grid { grid-template-columns: 1fr; }
  .packages-grid, .campaign-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .info-row { grid-template-columns: 1fr; gap: 4px; }
  .photo-frame::before { inset: -12px 12px 12px -12px; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .features-grid, .steps-grid, .services-grid, .stats-grid { grid-template-columns: 1fr; }
  .stat + .stat { border-left: none; border-top: 1px solid var(--line-on-dark); padding-top: 30px; }
  .footer-grid { grid-template-columns: 1fr; }
  .brand-text { font-size: 21px; }
  .hero-actions .btn { width: 100%; }
}

/* ============================================================
   ÇİFTLERİMİZ — çift panelleri + tam ekran galeri
   ============================================================ */

.couples-list { margin-top: 70px; }

.couple-panel {
  display: grid;
  grid-template-columns: 1.18fr 1fr;
  gap: clamp(38px, 5.5vw, 78px);
  align-items: center;
  padding: 76px 0;
  border-bottom: 1px solid var(--line-on-light);
}

.couple-panel { scroll-margin-top: 110px; }
.couple-panel:first-child { padding-top: 0; }
.couple-panel:last-child { border-bottom: none; padding-bottom: 0; }
.couple-panel.reverse { direction: rtl; }
.couple-panel.reverse > * { direction: ltr; }

/* --- Kapak: tıklayınca galeri açılır --- */

.couple-cover {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.couple-cover::before {
  content: "";
  position: absolute;
  inset: -16px 16px 16px -16px;
  border: 1px solid var(--gold);
  opacity: 0.42;
  pointer-events: none;
  z-index: 0;
  transition: inset 0.7s var(--ease), opacity 0.7s var(--ease);
}

.couple-panel.reverse .couple-cover::before { inset: -16px -16px 16px 16px; }

.couple-cover:hover::before,
.couple-cover:focus-visible::before { inset: -22px 22px 22px -22px; opacity: 0.85; }

.couple-panel.reverse .couple-cover:hover::before,
.couple-panel.reverse .couple-cover:focus-visible::before { inset: -22px -22px 22px 22px; opacity: 0.85; }

.couple-cover .ph { display: block; aspect-ratio: 3 / 2; }
.couple-cover:hover .ph img,
.couple-cover:focus-visible .ph img { transform: scale(1.06); }
.couple-cover:focus { outline: none; }
.couple-cover:focus-visible .ph { box-shadow: var(--shadow), 0 0 0 2px var(--gold-light); }

.cover-veil {
  position: absolute;
  z-index: 3;
  inset: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(12, 9, 6, 0) 30%, rgba(12, 9, 6, 0.7) 100%);
  opacity: 0;
  transition: opacity 0.55s var(--ease);
}

.couple-cover:hover .cover-veil,
.couple-cover:focus-visible .cover-veil { opacity: 1; }

.cover-veil span {
  padding: 13px 30px;
  border: 1px solid var(--gold-light);
  border-radius: 999px;
  background: rgba(12, 9, 6, 0.42);
  backdrop-filter: blur(6px);
  color: var(--cream);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  transform: translateY(14px);
  transition: transform 0.55s var(--ease);
}

.couple-cover:hover .cover-veil span,
.couple-cover:focus-visible .cover-veil span { transform: none; }

.cover-count {
  position: absolute;
  z-index: 4;
  top: 18px;
  right: 18px;
  padding: 7px 15px;
  border: 1px solid rgba(224, 196, 145, 0.5);
  background: rgba(12, 9, 6, 0.5);
  backdrop-filter: blur(6px);
  color: var(--gold-light);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

/* --- Panel metni --- */

.couple-script {
  font-family: "Yellowtail", "Cormorant Garamond", cursive;
  font-weight: 400;
  font-size: clamp(44px, 5.2vw, 68px);
  line-height: 1.08;
  color: var(--gold-dim);
  margin: 16px 0 4px;
}

.couple-note {
  font-size: 17px;
  color: var(--text-soft);
  max-width: 46ch;
  margin-top: 18px;
}

.couple-facts {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 18px;
  margin-top: 14px;
  font-size: 12px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.couple-facts .dot { color: var(--gold); font-size: 8px; }

.couple-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.couple-thumb {
  position: relative;
  width: 78px;
  aspect-ratio: 1;
  padding: 0;
  border: 0;
  overflow: hidden;
  cursor: pointer;
  background: #221b13;
}

.couple-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  transform: scale(1.01);
  transition: opacity 0.45s var(--ease), transform 0.7s var(--ease);
}

.couple-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--gold);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}

.couple-thumb:hover img,
.couple-thumb:focus-visible img { opacity: 1; transform: scale(1.09); }
.couple-thumb:hover::after,
.couple-thumb:focus-visible::after { opacity: 1; }
.couple-thumb:focus { outline: none; }

.couple-panel .btn { margin-top: 32px; }

/* --- Tam ekran galeri --- */

.lb {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  background: rgba(9, 7, 4, 0.97);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s var(--ease), visibility 0s linear 0.5s;
}

.lb.open {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s var(--ease), visibility 0s;
}

body.lb-lock { overflow: hidden; }

.lb-head {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px clamp(18px, 4vw, 44px);
  border-bottom: 1px solid rgba(193, 160, 94, 0.16);
}

.lb-title {
  font-family: "Yellowtail", "Cormorant Garamond", cursive;
  font-size: clamp(26px, 3.4vw, 38px);
  line-height: 1.1;
  color: var(--gold-light);
  margin-right: auto;
}

.lb-counter {
  font-size: 12px;
  letter-spacing: 0.28em;
  color: var(--text-on-dark-soft);
  font-variant-numeric: tabular-nums;
}

.lb-close {
  flex: none;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-on-dark);
  border-radius: 50%;
  background: transparent;
  color: var(--gold-light);
  cursor: pointer;
  transition: background 0.35s var(--ease), transform 0.35s var(--ease), border-color 0.35s;
}

.lb-close:hover { background: rgba(193, 160, 94, 0.14); border-color: var(--gold); transform: rotate(90deg); }
.lb-close svg { width: 17px; height: 17px; }

.lb-stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: minmax(0, 1fr);
  min-height: 0;
  padding: clamp(16px, 3vw, 34px) clamp(16px, 8vw, 96px);
  touch-action: pan-y;
}

/* Kare, sahne alanını asla taşmasın: çerçeve kesin ölçü alır,
   fotoğraflar üst üste konumlanıp contain ile ortalanır. */
.lb-frame {
  position: relative;
  min-width: 0;
  min-height: 0;
}

.lb-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.6s var(--ease), transform 1s var(--ease);
}

.lb-img.is-active { opacity: 1; transform: none; }

.lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-on-dark);
  border-radius: 50%;
  background: rgba(12, 9, 6, 0.5);
  backdrop-filter: blur(6px);
  color: var(--gold-light);
  cursor: pointer;
  transition: background 0.35s var(--ease), border-color 0.35s;
}

.lb-nav:hover { background: rgba(193, 160, 94, 0.18); border-color: var(--gold); }
.lb-nav svg { width: 15px; height: 15px; }
.lb-prev { left: clamp(10px, 2.4vw, 30px); }
.lb-next { right: clamp(10px, 2.4vw, 30px); }

.lb-foot {
  padding: 18px clamp(18px, 4vw, 44px) 26px;
  border-top: 1px solid rgba(193, 160, 94, 0.16);
  text-align: center;
}

.lb-caption {
  min-height: 22px;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-on-dark-soft);
  transition: opacity 0.4s var(--ease);
}

.lb-caption.fading { opacity: 0; }

.lb-strip {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 2px;
}

.lb-strip::-webkit-scrollbar { display: none; }

.lb-strip button {
  position: relative;
  flex: none;
  width: 74px;
  aspect-ratio: 3 / 2;
  padding: 0;
  border: 0;
  overflow: hidden;
  cursor: pointer;
  background: #1b1610;
}

.lb-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  transition: opacity 0.4s var(--ease);
}

.lb-strip button:hover img { opacity: 0.8; }
.lb-strip button[aria-current="true"] img { opacity: 1; }

.lb-strip button::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--gold-light);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}

.lb-strip button[aria-current="true"]::after { opacity: 1; }

/* --- Ana sayfa şeridi --- */

.couples-teaser {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 54px;
}

.couples-teaser .ph { aspect-ratio: 3 / 2; }

@media (prefers-reduced-motion: reduce) {
  .couple-cover::before,
  .couple-cover .ph img,
  .cover-veil,
  .cover-veil span,
  .couple-thumb img,
  .lb,
  .lb-img,
  .lb-close,
  .lb-caption { transition: none; }
  .lb-close:hover { transform: none; }
}

@media (max-width: 1020px) {
  .couple-panel { grid-template-columns: 1fr; gap: 34px; padding: 56px 0; }
  .couple-panel.reverse { direction: ltr; }
  .couple-cover::before,
  .couple-panel.reverse .couple-cover::before { inset: -12px 12px 12px -12px; }
  .couple-cover:hover::before,
  .couple-cover:focus-visible::before,
  .couple-panel.reverse .couple-cover:hover::before,
  .couple-panel.reverse .couple-cover:focus-visible::before { inset: -16px 16px 16px -16px; }
  .couples-teaser { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 700px) {
  /* Telefonda yatay kare zaten alçak kalıyor; kenar boşluğunu kısıp
     fotoğrafı olabildiğince büyütüyoruz. Oklar kenarlara biniyor,
     kaydırma da çalışıyor. */
  .lb-stage { padding: 14px 10px; }
  .lb-prev { left: 8px; }
  .lb-next { right: 8px; }
}

@media (max-width: 560px) {
  .couple-thumb { width: 64px; }
  .lb-head { padding: 14px 16px; gap: 12px; }
  .lb-title { font-size: 26px; }
  .lb-nav { width: 42px; height: 42px; }
  .lb-strip button { width: 58px; }
  .lb-foot { padding: 14px 16px 20px; }
  .couples-teaser { grid-template-columns: 1fr; }
}
