/* ============================================================
   ANEMON NIGHT CLUB — Tasarım Sistemi
   Palet: Derin kömür, fildişi, boğucu olmayan bordo vurgu
   Fontlar: Fraunces (başlık) + Inter (gövde)
   ============================================================ */

:root {
  --ink: #131110;
  --ink-2: #1b1816;
  --surface: #221e1b;
  --surface-2: #2a2521;
  --line: rgba(244, 239, 232, 0.1);
  --ivory: #f4efe8;
  --ivory-dim: #cfc6ba;
  --muted: #a89c8e;
  --accent: #96404f;
  --accent-dark: #7c3240;
  --accent-soft: rgba(150, 64, 79, 0.14);
  --green: #1e6f5c;
  --green-dark: #175a4a;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 24px 60px -24px rgba(0, 0, 0, 0.65);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Inter", "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--ivory);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

::selection { background: var(--accent); color: #fff; }

/* Kaydırma çubuğu */
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--ink-2); }
::-webkit-scrollbar-thumb { background: #3d3630; border-radius: 8px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

.container { width: min(1200px, 92%); margin-inline: auto; }

/* ---------- Sayfa geçiş perdesi ---------- */
.page-curtain {
  position: fixed; inset: 0; z-index: 2000;
  background: var(--ink-2);
  transform: scaleY(1); transform-origin: top;
  animation: curtainUp 0.9s var(--ease) 0.05s forwards;
  pointer-events: none;
  display: grid; place-items: center;
}
.page-curtain span {
  font-family: var(--font-display);
  letter-spacing: 0.35em; font-size: 0.85rem; color: var(--muted);
  animation: curtainText 0.9s ease forwards;
}
@keyframes curtainUp { to { transform: scaleY(0); } }
@keyframes curtainText { 0% { opacity: 0; } 30% { opacity: 1; } 100% { opacity: 0; } }
body.leaving .page-curtain {
  animation: none; transform: scaleY(0); transform-origin: bottom;
  transition: transform 0.45s var(--ease); pointer-events: all;
}
body.leaving .page-curtain span { display: none; }
body.leaving .page-curtain { transform: scaleY(1); }

/* ---------- Üst şerit / Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: background 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(19, 17, 16, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
  box-shadow: 0 12px 40px -20px rgba(0, 0, 0, 0.7);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; padding: 18px 0;
  transition: padding 0.35s ease;
}
.site-header.scrolled .header-inner { padding: 12px 0; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand svg { width: 40px; height: 40px; flex: none; }
.brand-logo { height: 40px; width: auto; display: block; transition: height 0.35s ease; }
.site-header.scrolled .brand-logo { height: 34px; }
footer .brand-logo { height: 34px; }
.brand-name {
  font-family: var(--font-display); font-weight: 600;
  font-size: 1.22rem; letter-spacing: 0.14em; line-height: 1.15;
}
.brand-name small {
  display: block; font-family: var(--font-body); font-weight: 500;
  font-size: 0.58rem; letter-spacing: 0.5em; color: var(--muted);
  text-transform: uppercase;
}

.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav a {
  position: relative; padding: 10px 13px;
  font-size: 0.86rem; font-weight: 500; letter-spacing: 0.04em;
  color: var(--ivory-dim); transition: color 0.3s;
}
.main-nav a::after {
  content: ""; position: absolute; left: 13px; right: 13px; bottom: 4px;
  height: 2px; background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.main-nav a:hover, .main-nav a.active { color: var(--ivory); }
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); }

.header-cta { display: flex; align-items: center; gap: 10px; }

/* Hamburger */
.nav-toggle {
  display: none; width: 46px; height: 46px; border-radius: 12px;
  border: 1px solid var(--line); position: relative; z-index: 1102;
  background: rgba(255,255,255,0.03);
}
.nav-toggle span {
  position: absolute; left: 12px; right: 12px; height: 2px;
  background: var(--ivory); border-radius: 2px;
  transition: transform 0.35s var(--ease), opacity 0.25s, top 0.35s var(--ease);
}
.nav-toggle span:nth-child(1) { top: 15px; }
.nav-toggle span:nth-child(2) { top: 22px; }
.nav-toggle span:nth-child(3) { top: 29px; }
.nav-toggle.open span:nth-child(1) { top: 22px; transform: rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { top: 22px; transform: rotate(-45deg); }

/* Mobil menü */
.mobile-menu {
  position: fixed; inset: 0; z-index: 1100;
  background: rgba(15, 13, 12, 0.97);
  backdrop-filter: blur(10px);
  display: flex; flex-direction: column; justify-content: center;
  padding: 90px 8% 40px;
  opacity: 0; visibility: hidden; transition: opacity 0.4s ease, visibility 0.4s;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu .mm-logo { height: 34px; width: auto; position: absolute; top: 24px; left: 8%; }
.mobile-menu a.mm-link {
  font-family: var(--font-display); font-size: clamp(1.6rem, 6vw, 2.3rem);
  padding: 12px 0; border-bottom: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
  color: var(--ivory);
  opacity: 0; transform: translateY(26px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), color .3s;
}
.mobile-menu a.mm-link svg { width: 22px; height: 22px; opacity: .5; }
.mobile-menu a.mm-link:hover { color: var(--accent); }
.mobile-menu.open a.mm-link { opacity: 1; transform: translateY(0); }
.mobile-menu.open a.mm-link:nth-child(1) { transition-delay: 0.08s; }
.mobile-menu.open a.mm-link:nth-child(2) { transition-delay: 0.14s; }
.mobile-menu.open a.mm-link:nth-child(3) { transition-delay: 0.20s; }
.mobile-menu.open a.mm-link:nth-child(4) { transition-delay: 0.26s; }
.mobile-menu.open a.mm-link:nth-child(5) { transition-delay: 0.32s; }
.mobile-menu.open a.mm-link:nth-child(6) { transition-delay: 0.38s; }
.mobile-menu.open a.mm-link:nth-child(7) { transition-delay: 0.44s; }
.mobile-menu.open a.mm-link:nth-child(8) { transition-delay: 0.50s; }
.mm-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }

/* ---------- Butonlar ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px; border-radius: 999px;
  font-size: 0.9rem; font-weight: 600; letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: transform 0.3s var(--ease), box-shadow 0.3s, background 0.3s, color 0.3s, border-color 0.3s;
  position: relative; overflow: hidden; white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(110deg, transparent 25%, rgba(255,255,255,0.14) 50%, transparent 75%);
  transform: translateX(-120%);
  transition: transform 0.7s var(--ease);
}
.btn:hover::before { transform: translateX(120%); }
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px) scale(0.98); }

.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 14px 34px -14px rgba(150, 64, 79, 0.65); }
.btn-primary:hover { background: var(--accent-dark); }
.btn-ghost { border: 1px solid rgba(244,239,232,0.35); color: var(--ivory); background: rgba(255,255,255,0.02); }
.btn-ghost:hover { border-color: var(--ivory); background: rgba(255,255,255,0.07); }
.btn-whatsapp { background: var(--green); color: #fff; box-shadow: 0 14px 34px -14px rgba(30, 111, 92, 0.6); }
.btn-whatsapp:hover { background: var(--green-dark); }
.btn-sm { padding: 11px 20px; font-size: 0.8rem; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  overflow: hidden; isolation: isolate;
}
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media video, .hero-media img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.06);
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(19,17,16,0.62) 0%, rgba(19,17,16,0.35) 40%, rgba(19,17,16,0.92) 100%),
    radial-gradient(75% 60% at 30% 45%, rgba(19,17,16,0.25), rgba(19,17,16,0.72));
}
.hero-content { padding: 140px 0 110px; max-width: 780px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 0.78rem; letter-spacing: 0.42em; text-transform: uppercase;
  color: var(--ivory-dim); margin-bottom: 22px;
}
.hero-eyebrow::before { content: ""; width: 44px; height: 1px; background: var(--accent); }
.hero h1 {
  font-family: var(--font-display); font-weight: 550;
  font-size: clamp(2.6rem, 6.4vw, 4.6rem);
  line-height: 1.06; letter-spacing: 0.01em;
  margin-bottom: 18px;
}
.hero h1 em { font-style: italic; color: #e8d9d0; }
.hero-sub {
  font-size: clamp(1rem, 1.6vw, 1.14rem); color: var(--ivory-dim);
  max-width: 560px; margin-bottom: 38px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-anim { opacity: 0; transform: translateY(34px); animation: heroUp 1s var(--ease) forwards; }
.hero-anim.d1 { animation-delay: 0.25s; }
.hero-anim.d2 { animation-delay: 0.45s; }
.hero-anim.d3 { animation-delay: 0.65s; }
.hero-anim.d4 { animation-delay: 0.85s; }
@keyframes heroUp { to { opacity: 1; transform: translateY(0); } }

.scroll-hint {
  position: absolute; left: 50%; bottom: 28px; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--muted); font-size: 0.68rem; letter-spacing: 0.34em; text-transform: uppercase;
}
.scroll-hint i {
  width: 1px; height: 52px; background: linear-gradient(var(--accent), transparent);
  display: block; animation: hintPulse 1.8s ease-in-out infinite;
}
@keyframes hintPulse { 0%,100% { transform: scaleY(0.4); opacity: .4; } 50% { transform: scaleY(1); opacity: 1; } }

/* Sayfa içi kahraman (alt sayfalar) */
.page-hero {
  position: relative; padding: 190px 0 90px; overflow: hidden; isolation: isolate;
}
.page-hero .ph-bg { position: absolute; inset: 0; z-index: -2; }
.page-hero .ph-bg img { width: 100%; height: 100%; object-fit: cover; animation: slowZoom 18s ease-in-out infinite alternate; }
@keyframes slowZoom { from { transform: scale(1); } to { transform: scale(1.12); } }
.page-hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(19,17,16,0.78), rgba(19,17,16,0.55) 55%, var(--ink) 100%);
}
.page-hero h1 {
  font-family: var(--font-display); font-weight: 550;
  font-size: clamp(2.2rem, 5vw, 3.6rem); line-height: 1.1; margin-bottom: 16px;
}
.page-hero p.lead { max-width: 640px; color: var(--ivory-dim); font-size: 1.05rem; }

/* ---------- Breadcrumb ---------- */
.breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; font-size: 0.8rem; color: var(--muted); margin-bottom: 26px; letter-spacing: .04em; }
.breadcrumb a { color: var(--ivory-dim); transition: color .3s; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb svg { width: 12px; height: 12px; opacity: .55; }

/* ---------- Bölümler ---------- */
.section { padding: 96px 0; position: relative; }
.section-alt { background: var(--ink-2); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 0.74rem; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 16px; font-weight: 600;
}
.eyebrow::before { content: ""; width: 34px; height: 1px; background: var(--accent); }
.section-title {
  font-family: var(--font-display); font-weight: 550;
  font-size: clamp(1.9rem, 3.8vw, 2.8rem); line-height: 1.15; margin-bottom: 18px;
}
.section-lead { color: var(--muted); max-width: 640px; }
.center { text-align: center; }
.center .eyebrow { justify-content: center; }
.center .eyebrow::before { display: none; }
.center .section-lead { margin-inline: auto; }

/* ---------- Grid kartları ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 52px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; margin-top: 52px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 52px; }

.card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  background: var(--surface); border: 1px solid var(--line);
  transition: transform 0.5s var(--ease), box-shadow 0.5s, border-color 0.4s;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: rgba(150,64,79,0.45); }
.card-img { position: relative; aspect-ratio: 3 / 2; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.card:hover .card-img img { transform: scale(1.08); }
.card-img::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(19,17,16,0.55));
}
.card-body { padding: 26px 26px 30px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.card-body h3 { font-family: var(--font-display); font-size: 1.35rem; font-weight: 600; }
.card-body p { color: var(--muted); font-size: 0.94rem; flex: 1; }
.card-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent); transition: gap 0.3s var(--ease), color .3s;
}
.card-link svg { width: 16px; height: 16px; }
.card-link:hover { gap: 14px; color: #c06b7a; }

/* ---------- Özellik / sayı şeridi ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 56px; }
.stat {
  text-align: center; padding: 30px 16px; border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--line);
}
.stat b {
  display: block; font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.9rem); font-weight: 600; color: var(--ivory);
}
.stat span { font-size: 0.82rem; color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase; }

/* ---------- Yorum kayar şeridi ---------- */
.reviews-marquee { margin-top: 52px; overflow: hidden; position: relative; }
.reviews-marquee::before, .reviews-marquee::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 110px; z-index: 2; pointer-events: none;
}
.reviews-marquee::before { left: 0; background: linear-gradient(90deg, var(--ink), transparent); }
.reviews-marquee::after { right: 0; background: linear-gradient(-90deg, var(--ink), transparent); }
.section-alt .reviews-marquee::before { background: linear-gradient(90deg, var(--ink-2), transparent); }
.section-alt .reviews-marquee::after { background: linear-gradient(-90deg, var(--ink-2), transparent); }
.reviews-track { display: flex; gap: 22px; width: max-content; animation: marquee 70s linear infinite; }
.reviews-marquee:hover .reviews-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }

.review-card {
  width: 340px; flex: none; padding: 26px;
  border-radius: var(--radius-lg); background: var(--surface);
  border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 14px;
  transition: border-color .3s, transform .4s var(--ease);
}
.review-card:hover { border-color: rgba(150,64,79,0.5); transform: translateY(-4px); }
.review-head { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 46px; height: 46px; border-radius: 50%; flex: none;
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 600; font-size: 1.05rem;
  background: var(--accent-soft); color: #d99aa5; border: 1px solid rgba(150,64,79,0.35);
}
.review-name b { display: block; font-size: 0.95rem; }
.review-name span { font-size: 0.76rem; color: var(--muted); }
.stars { display: flex; gap: 3px; }
.stars svg { width: 15px; height: 15px; fill: #d9a441; }
.review-text { font-size: 0.9rem; color: var(--ivory-dim); line-height: 1.65; }

/* ---------- SSS ---------- */
.faq-list { max-width: 820px; margin: 48px auto 0; display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--surface); overflow: hidden;
  transition: border-color 0.35s;
}
.faq-item.open { border-color: rgba(150,64,79,0.5); }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 20px 24px; text-align: left;
  font-size: 1rem; font-weight: 600; color: var(--ivory);
}
.faq-q svg { width: 18px; height: 18px; flex: none; color: var(--accent); transition: transform 0.4s var(--ease); }
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.5s var(--ease); }
.faq-a p { padding: 0 24px 22px; color: var(--muted); font-size: 0.94rem; }

/* ---------- Portre şeridi (katalog) ---------- */
.portrait-strip { margin-top: 56px; overflow: hidden; position: relative; padding: 6px 0; }
.portrait-strip::before, .portrait-strip::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 90px; z-index: 2; pointer-events: none;
}
.portrait-strip::before { left: 0; background: linear-gradient(90deg, var(--ink), transparent); }
.portrait-strip::after { right: 0; background: linear-gradient(-90deg, var(--ink), transparent); }
.portrait-track { display: flex; gap: 18px; width: max-content; animation: marquee 46s linear infinite; }
.portrait-strip:hover .portrait-track { animation-play-state: paused; }
.portrait-card {
  width: 168px; flex: none; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); position: relative; cursor: pointer;
  transition: transform .4s var(--ease), border-color .3s;
}
.portrait-card:hover { transform: translateY(-6px); border-color: rgba(150,64,79,0.55); }
.portrait-card img { aspect-ratio: 2 / 3; width: 100%; object-fit: cover; display: block; }

/* ---------- Galeri ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 48px; }
.gallery-item {
  position: relative; border-radius: var(--radius); overflow: hidden; cursor: zoom-in;
  border: 1px solid var(--line); aspect-ratio: 1;
}
.gallery-item.wide { grid-column: span 2; aspect-ratio: 2 / 1; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.gallery-item:hover img { transform: scale(1.09); }
.gallery-item::after {
  content: ""; position: absolute; inset: 0;
  background: rgba(19,17,16,0.0); transition: background 0.4s;
}
.gallery-item:hover::after { background: rgba(19,17,16,0.25); }

/* Vitrin şeritleri */
.showcase { display: grid; grid-template-columns: 1.35fr 1fr 1fr; gap: 16px; margin-top: 48px; }
.showcase a, .showcase figure {
  border-radius: var(--radius-lg); overflow: hidden; position: relative;
  border: 1px solid var(--line); cursor: zoom-in; display: block;
}
.showcase img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.showcase a:hover img, .showcase figure:hover img { transform: scale(1.07); }
.showcase .tall { grid-row: span 2; }
.showcase figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 40px 20px 16px;
  background: linear-gradient(transparent, rgba(15,13,12,0.85));
  font-size: 0.85rem; letter-spacing: 0.06em; color: var(--ivory-dim);
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 1500;
  background: rgba(12, 10, 9, 0.94); backdrop-filter: blur(8px);
  display: grid; place-items: center; padding: 4vmin;
  opacity: 0; visibility: hidden; transition: opacity 0.35s ease, visibility 0.35s;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: 92vw; max-height: 82vh; border-radius: var(--radius);
  box-shadow: 0 40px 120px -30px rgba(0,0,0,0.9);
  transform: scale(0.92); transition: transform 0.4s var(--ease);
}
.lightbox.open img { transform: scale(1); }
.lb-btn {
  position: absolute; width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,0.07); border: 1px solid var(--line);
  display: grid; place-items: center; transition: background .3s, transform .3s;
}
.lb-btn:hover { background: var(--accent); transform: scale(1.06); }
.lb-btn svg { width: 20px; height: 20px; }
.lb-close { top: 22px; right: 22px; }
.lb-prev { left: 18px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 18px; top: 50%; transform: translateY(-50%); }
.lb-counter {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  font-size: 0.8rem; letter-spacing: 0.2em; color: var(--muted);
}

/* ---------- İki sütun içerik ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split-img { position: relative; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); }
.split-img img { transition: transform .8s var(--ease); width: 100%; }
.split-img:hover img { transform: scale(1.05); }
.split-img::before {
  content: ""; position: absolute; inset: 14px; border: 1px solid rgba(244,239,232,0.16);
  border-radius: calc(var(--radius-lg) - 8px); z-index: 1; pointer-events: none;
}
.check-list { display: flex; flex-direction: column; gap: 14px; margin-top: 26px; }
.check-list li { display: flex; gap: 12px; color: var(--ivory-dim); font-size: 0.96rem; }
.check-list svg { width: 20px; height: 20px; flex: none; color: var(--accent); margin-top: 3px; }

/* ---------- CTA bandı ---------- */
.cta-band {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  padding: clamp(40px, 6vw, 70px) clamp(24px, 5vw, 60px);
  background: linear-gradient(120deg, #241d1c, #301f22 55%, #241d1c);
  border: 1px solid rgba(150,64,79,0.35);
  text-align: center;
}
.cta-band h2 { font-family: var(--font-display); font-size: clamp(1.7rem, 3.4vw, 2.5rem); font-weight: 550; margin-bottom: 14px; }
.cta-band p { color: var(--ivory-dim); max-width: 560px; margin: 0 auto 30px; }
.cta-band .hero-cta { justify-content: center; }

/* ---------- Kokteyl kartları ---------- */
.cocktail-card { text-align: center; padding-bottom: 24px; }
.cocktail-card .card-img { aspect-ratio: 1; }
.cocktail-card h3 { font-size: 1.15rem; }
.cocktail-card p { font-size: 0.87rem; }
.tag {
  display: inline-block; padding: 4px 12px; border-radius: 999px;
  font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase;
  background: var(--accent-soft); color: #d99aa5; border: 1px solid rgba(150,64,79,0.3);
}

/* ---------- Blog ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 52px; }
.blog-card .card-img { aspect-ratio: 16 / 10; }
.blog-meta { display: flex; gap: 14px; align-items: center; font-size: 0.74rem; color: var(--muted); letter-spacing: 0.06em; text-transform: uppercase; }
.blog-meta svg { width: 14px; height: 14px; flex: none; }

.article { max-width: 780px; margin-inline: auto; }
.article h2 {
  font-family: var(--font-display); font-weight: 550; font-size: clamp(1.5rem, 2.8vw, 2rem);
  margin: 48px 0 16px; line-height: 1.25;
}
.article h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; margin: 36px 0 12px; }
.article p { color: var(--ivory-dim); margin-bottom: 18px; }
.article p a, .article li a {
  color: #d99aa5; text-decoration: underline; text-decoration-color: rgba(150,64,79,0.55);
  text-underline-offset: 3px; transition: color .3s, text-decoration-color .3s;
}
.article p a:hover, .article li a:hover { color: #eab6c0; text-decoration-color: #eab6c0; }
.article ul.bullets { margin: 0 0 22px 4px; display: flex; flex-direction: column; gap: 10px; }
.article ul.bullets li { padding-left: 24px; position: relative; color: var(--ivory-dim); }
.article ul.bullets li::before {
  content: ""; position: absolute; left: 0; top: 10px; width: 9px; height: 9px;
  border-radius: 50%; background: var(--accent);
}
.article-hero { border-radius: var(--radius-lg); overflow: hidden; margin: 40px 0; border: 1px solid var(--line); }
.article-nav {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  margin-top: 60px; padding-top: 30px; border-top: 1px solid var(--line);
}
.article-nav a { display: inline-flex; align-items: center; gap: 8px; color: var(--accent); font-weight: 600; font-size: 0.9rem; }
.article-nav a svg { width: 16px; height: 16px; }
.article-nav a:hover { color: #c06b7a; }

/* ---------- İletişim ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 40px; margin-top: 52px; align-items: stretch; }
.contact-cards { display: flex; flex-direction: column; gap: 16px; }
.contact-card {
  display: flex; align-items: center; gap: 18px; padding: 22px 24px;
  border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line);
  transition: border-color .3s, transform .4s var(--ease);
}
.contact-card:hover { border-color: rgba(150,64,79,0.5); transform: translateX(6px); }
.contact-icon {
  width: 52px; height: 52px; flex: none; border-radius: 14px;
  display: grid; place-items: center;
  background: var(--accent-soft); border: 1px solid rgba(150,64,79,0.35); color: #d99aa5;
}
.contact-icon svg { width: 24px; height: 24px; }
.contact-card b { display: block; font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-bottom: 2px; }
.contact-card span, .contact-card a.val { font-size: 1.02rem; font-weight: 600; }
.contact-card a.val:hover { color: var(--accent); }
.map-wrap {
  border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line);
  min-height: 380px; position: relative;
}
.map-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: grayscale(0.4) contrast(1.05); }

/* ---------- Footer ---------- */
.site-footer { background: #0e0c0b; border-top: 1px solid var(--line); padding: 70px 0 0; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; }
.footer-grid h4 {
  font-size: 0.8rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--ivory); margin-bottom: 20px;
}
.footer-grid p, .footer-grid a { color: var(--muted); font-size: 0.92rem; }
.footer-grid ul { display: flex; flex-direction: column; gap: 11px; }
.footer-grid a { transition: color 0.3s, padding-left 0.3s; display: inline-flex; align-items: center; gap: 8px; }
.footer-grid a:hover { color: var(--accent); padding-left: 4px; }
.footer-brand p { margin-top: 16px; max-width: 300px; }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; }
.footer-contact svg { width: 16px; height: 16px; flex: none; margin-top: 4px; color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--line); padding: 22px 0;
  display: flex; justify-content: space-between; align-items: center; gap: 14px; flex-wrap: wrap;
  font-size: 0.8rem; color: var(--muted);
}
.footer-bottom a { color: var(--ivory-dim); }
.footer-bottom a:hover { color: var(--accent); }

/* ---------- Yüzen butonlar ---------- */
.float-wa {
  position: fixed; right: 22px; bottom: 22px; z-index: 900;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--green); display: grid; place-items: center;
  box-shadow: 0 16px 40px -12px rgba(30,111,92,0.7);
  transition: transform 0.3s var(--ease), background .3s;
  animation: waPulse 2.6s ease-in-out infinite;
}
.float-wa:hover { transform: scale(1.1) translateY(-3px); background: var(--green-dark); }
.float-wa svg { width: 28px; height: 28px; fill: #fff; }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 16px 40px -12px rgba(30,111,92,0.7), 0 0 0 0 rgba(30,111,92,0.45); }
  50% { box-shadow: 0 16px 40px -12px rgba(30,111,92,0.7), 0 0 0 14px rgba(30,111,92,0); }
}
.to-top {
  position: fixed; right: 26px; bottom: 94px; z-index: 900;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--surface-2); border: 1px solid var(--line);
  display: grid; place-items: center;
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: all 0.4s var(--ease);
}
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--accent); }
.to-top svg { width: 18px; height: 18px; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-l { opacity: 0; transform: translateX(-46px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal-r { opacity: 0; transform: translateX(46px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal-l.in, .reveal-r.in { opacity: 1; transform: translateX(0); }
.reveal[data-delay="1"] { transition-delay: 0.12s; }
.reveal[data-delay="2"] { transition-delay: 0.24s; }
.reveal[data-delay="3"] { transition-delay: 0.36s; }

/* ---------- Yardımcılar ---------- */
.mt-cta { margin-top: 44px; }
.flex-cta { display: flex; flex-wrap: wrap; gap: 14px; }
.divider-wave { height: 1px; background: linear-gradient(90deg, transparent, rgba(150,64,79,0.5), transparent); border: 0; margin: 0; }

/* ---------- Duyarlılık ---------- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 880px) {
  .main-nav, .header-cta .btn { display: none; }
  .nav-toggle { display: block; }
  .brand-logo { height: 32px; }
  .site-header.scrolled .brand-logo { height: 28px; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .contact-grid { grid-template-columns: 1fr; }
  .showcase { grid-template-columns: 1fr 1fr; }
  .showcase .tall { grid-row: span 1; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 72px 0; }
  .page-hero { padding: 160px 0 70px; }
}
@media (max-width: 560px) {
  .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .review-card { width: 280px; }
  .hero-cta .btn, .cta-band .btn, .flex-cta .btn { width: 100%; justify-content: center; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .gallery-item.wide { grid-column: span 2; }
  .stats { grid-template-columns: 1fr 1fr; gap: 12px; }
  .footer-bottom { justify-content: center; text-align: center; }
  .portrait-card { width: 138px; }
}

/* ---------- Hareket azaltma ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001s !important; transition-duration: 0.001s !important; }
  html { scroll-behavior: auto; }
  .reviews-track, .portrait-track { animation: none; }
}
