:root {
  --font: "Inter", system-ui, sans-serif;
  --accent: #c8f031;
  --accent-ink: #11170a;
  --radius: 20px;
  --header-h: 76px;
  --shadow: 0 24px 60px rgba(0, 0, 0, .45);
}

html[data-theme="dark"] {
  --bg: #050505;
  --bg-2: #0c0c0c;
  --surface: #111111;
  --line: rgba(255, 255, 255, .08);
  --text: #f4f4f2;
  --muted: #9a9a92;
  --invert: #050505;
}

html[data-theme="light"] {
  --bg: #f4f4f1;
  --bg-2: #ffffff;
  --surface: #ffffff;
  --line: rgba(17, 17, 17, .1);
  --text: #111111;
  --muted: #5c5c56;
  --invert: #ffffff;
  --accent: #6ea800;
  --accent-ink: #11170a;
  --shadow: 0 16px 40px rgba(17, 17, 17, .08);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 17px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3 {
  font-family: var(--font);
  line-height: 1.12;
  letter-spacing: -.03em;
  margin: 0 0 .45em;
  font-weight: 800;
}
h1 { font-size: clamp(2.4rem, 6vw, 4.4rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: 1.2rem; letter-spacing: -.02em; }
p { margin: 0 0 1rem; }
.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.narrow { width: min(720px, calc(100% - 40px)); }
.muted { color: var(--muted); }
.lead { font-size: 1.08rem; color: var(--muted); max-width: 34rem; }
.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .72rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: .85rem;
}
.skip-link { position: absolute; left: -999px; }
.skip-link:focus { left: 12px; top: 12px; background: var(--accent); color: var(--accent-ink); padding: .5rem 1rem; z-index: 40; }
.icon { display: inline-flex; width: 1.15em; height: 1.15em; vertical-align: -0.2em; }
.icon svg { width: 100%; height: 100%; }
.kicker { color: var(--muted); font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; margin: 0 0 .35rem; }
.prose { color: var(--muted); max-width: 40rem; }
.prose p { margin-bottom: 1rem; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  min-height: 48px;
  padding: 0 1.2rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  font-weight: 700;
  transition: .2s transform, .2s background, .2s border-color;
}
.btn:hover { transform: translateY(-1px); }
.btn-accent { background: var(--accent); color: var(--accent-ink); border-color: transparent; }
.btn-ghost { background: var(--surface); }
.btn-whatsapp { background: #25d366; color: #06210f; border-color: transparent; }
.btn-lg { min-height: 54px; padding-inline: 1.45rem; }
.btn-on-photo { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.24); }

.topbar {
  background: #000;
  color: #cfcfc8;
  font-size: .82rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
html[data-theme="light"] .topbar { background: #111; color: #ddd; }
.topbar-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  min-height: 38px;
}
.topbar p { margin: 0; display: flex; gap: 1.1rem; flex-wrap: wrap; }
.topbar a { color: #fff; }

.site-header {
  position: sticky; top: 0; z-index: 30;
  backdrop-filter: blur(18px);
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; gap: 1.2rem;
  min-height: var(--header-h);
}
.brand { display: flex; align-items: center; gap: .55rem; }
.brand-mark-img { width: 34px; height: auto; }
.brand-wordmark { height: 32px; width: auto; }
html[data-theme="light"] .brand-wordmark,
html[data-theme="light"] .footer-logo { filter: brightness(0); }

.nav-desk { display: flex; align-items: center; gap: 1.35rem; margin-left: 1.4rem; align-self: stretch; }
.nav-desk > a, .nav-drop > a { font-weight: 600; font-size: .94rem; color: var(--muted); }
.nav-desk > a:hover, .nav-drop > a:hover { color: var(--text); }
/* Açılır menü: tetikleyici başlık yüksekliği kadar uzar, böylece fare aşağı inerken hover kopmaz. */
.nav-drop { position: relative; display: flex; align-items: center; align-self: stretch; }
.nav-drop-panel {
  display: grid; gap: .2rem;
  position: absolute; top: 100%; left: -1rem;
  min-width: 290px; padding: .6rem;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 18px; box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity .16s ease, transform .16s ease, visibility .16s;
}
/* Panel ile başlık arasındaki görsel boşluğu kaplayan görünmez köprü. */
.nav-drop-panel::before {
  content: ""; position: absolute; left: 0; right: 0; top: -12px; height: 12px;
}
.nav-drop:hover .nav-drop-panel,
.nav-drop:focus-within .nav-drop-panel,
.nav-drop.is-open .nav-drop-panel {
  opacity: 1; visibility: visible; transform: none;
}
.nav-group-label {
  margin: .55rem .7rem .15rem;
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}
.nav-drop-panel a { display: flex; align-items: center; gap: .7rem; padding: .7rem; border-radius: 12px; }
.nav-drop-panel a:hover { background: var(--bg-2); }
.nav-drop-panel small, .nav-drop-panel em { display: block; font-style: normal; color: var(--muted); font-size: .75rem; }
.dot { width: 10px; height: 10px; border-radius: 99px; background: var(--c, var(--accent)); }

.header-actions { margin-left: auto; display: flex; align-items: center; gap: .55rem; }
.theme-switch {
  display: flex; padding: 4px; border: 1px solid var(--line);
  border-radius: 999px; background: var(--surface);
}
.theme-switch button {
  width: 34px; height: 34px; border: 0; border-radius: 99px;
  background: transparent; color: var(--muted); cursor: pointer;
}
html[data-theme-mode="system"] .theme-switch [data-theme-set="system"],
html[data-theme-mode="dark"] .theme-switch [data-theme-set="dark"],
html[data-theme-mode="light"] .theme-switch [data-theme-set="light"] {
  background: var(--accent); color: var(--accent-ink);
}
.nav-toggle { display: none; border: 0; background: none; color: inherit; }
.nav-mobile { display: none; padding: .4rem 1rem 1rem; border-top: 1px solid var(--line); }
.nav-mobile:not([hidden]) { display: grid; }
.nav-mobile a { padding: .75rem 0; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; }

.hero-split { padding: 72px 0 28px; }
.hero-split-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 960px) {
  .hero-split-grid { grid-template-columns: 1.05fr .95fr; }
}
.hero-copy h1 { margin-bottom: .7rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .7rem; margin: 1.5rem 0 0; }
.hero-photo {
  margin: 0;
  border-radius: 28px;
  overflow: hidden;
  min-height: 420px;
  background: #111;
}
.hero-photo img { width: 100%; height: 480px; object-fit: cover; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  margin-top: 3rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
}
@media (min-width: 800px) { .hero-stats { grid-template-columns: repeat(4, 1fr); } }
.hero-stats strong { display: block; font-size: 1.55rem; font-weight: 800; }
.hero-stats span { color: var(--muted); font-size: .88rem; }

.section { padding: 88px 0; }
.section-tight { padding: 56px 0; }
.section-alt { background: var(--bg-2); }
/* İki açık renkli bölüm yan yana gelirse tek bir blok gibi görünmesin. */
.section-alt + .section-alt { border-top: 1px solid var(--line); }
/* Sayfa başlığının hemen altındaki bölüm: başlıkla arasında kocaman boşluk kalmasın. */
.section-after-hero { padding-top: 28px; }
.section-head { max-width: 40rem; margin-bottom: 2.4rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.tight { margin-bottom: 1.4rem; }

.about-grid, .cta-grid, .split, .hours-wrap {
  display: grid; gap: 2.4rem;
}
@media (min-width: 900px) {
  .about-grid, .cta-grid, .split, .hours-wrap { grid-template-columns: 1fr 1fr; align-items: center; }
}
.about-photo { margin: 0; border-radius: 24px; overflow: hidden; min-height: 420px; }
.about-photo img { width: 100%; height: 520px; object-fit: cover; }

.branch-grid {
  display: grid;
  gap: 18px;
  max-width: 1100px;
  margin-inline: auto;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.branch-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  min-height: 100%;
}
.branch-card img { width: 100%; height: 210px; object-fit: cover; }
.branch-body { padding: 1.15rem 1.2rem 1.3rem; display: flex; flex-direction: column; flex: 1; }
/* Kartlardaki üst etiket iki satıra çıkabiliyor; yer ayırıp başlıkların aynı hizada kalmasını sağlıyoruz. */
.branch-body .kicker { min-height: 2.2em; }
.branch-body h3 { margin: 0 0 .25rem; }
.branch-tag { color: var(--text); font-weight: 700; margin: 0 0 .45rem !important; }
.branch-body p { margin: 0; color: var(--muted); font-size: .95rem; }
.branch-body em { margin-top: auto; padding-top: .9rem; font-style: normal; font-weight: 700; color: var(--accent); }
.branch-card:hover { border-color: var(--accent); }

.why-grid {
  display: grid;
  gap: 16px;
}
@media (min-width: 800px) { .why-grid { grid-template-columns: 1fr 1fr; } }
.why-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.4rem 1.5rem;
}
.why-card .icon { width: 28px; height: 28px; color: var(--accent); margin-bottom: .7rem; }
.why-card p { margin: 0; color: var(--muted); }

.gallery-grid {
  display: grid;
  gap: 14px;
}
@media (min-width: 800px) { .gallery-grid { grid-template-columns: 1fr 1fr; } }
.gallery-grid img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 22px;
}

.package-grid, .review-grid, .service-grid, .venue-grid, .location-grid {
  display: grid; gap: 1rem;
}
@media (min-width: 800px) {
  .review-grid, .service-grid { grid-template-columns: repeat(3, 1fr); }
  .package-grid { grid-template-columns: repeat(4, 1fr); }
}
.package-card, .review-card, .service-card, .hero-card, .info-sheet, .venue-card, .location-card, .auth-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem;
}
.package-card { display: flex; flex-direction: column; gap: .4rem; }
.package-card.is-popular { border-color: var(--accent); transform: translateY(-6px); }
.package-card .badge {
  align-self: start; background: color-mix(in srgb, var(--accent) 18%, transparent); color: var(--accent);
  border-radius: 99px; padding: .2rem .7rem; font-size: .75rem; font-weight: 700;
}
.price { display: flex; align-items: baseline; gap: .4rem; flex-wrap: wrap; }
.price strong { font-size: 1.7rem; }
.price s { color: var(--muted); }
.price-sub, .save, .pricing-note, .form-note { color: var(--muted); font-size: .88rem; }
.save { color: var(--accent); font-weight: 700; }
.package-card ul { list-style: none; padding: 0; margin: .6rem 0 1rem; flex: 1; }
.package-card li { display: flex; gap: .45rem; margin-bottom: .4rem; font-size: .92rem; }
.package-card li.is-out { color: var(--muted); text-decoration: line-through; }
.hidden-price { font-size: 1.15rem; }

.review-card blockquote { margin: .6rem 0 1rem; }
.stars { color: #e3b341; display: flex; gap: 2px; }
.review-card figcaption { color: var(--muted); font-size: .9rem; }

.cta-finale {
  padding: 96px 0;
  text-align: center;
  background:
    radial-gradient(60% 80% at 50% 120%, color-mix(in srgb, var(--accent) 18%, transparent), transparent 55%),
    var(--bg);
}
.cta-finale p { color: var(--muted); max-width: 34rem; margin-inline: auto; }
.cta-finale .hero-cta { justify-content: center; }

.cta-band { background:
  radial-gradient(60% 80% at 0% 100%, color-mix(in srgb, var(--accent) 14%, transparent), transparent 50%),
  var(--bg); }

.page-hero { padding: 64px 0 16px; }
.page-hero.slim { padding: 40px 0 8px; }

.photo-hero {
  position: relative;
  min-height: min(58vh, 540px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
}
.photo-hero.loc { min-height: min(52vh, 480px); }
.photo-hero-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 70%;
}
.photo-hero-shade {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(5,5,5,.88) 0%, rgba(5,5,5,.25) 55%, rgba(5,5,5,.15) 100%);
}
.photo-hero-copy { position: relative; z-index: 1; padding: 40px 0 48px; }
.eyebrow.on-photo { color: var(--accent); }

.info-bar { background: var(--bg-2); border-bottom: 1px solid var(--line); }
.info-bar-grid {
  display: flex; flex-wrap: wrap; gap: .4rem 1.4rem;
  padding: 14px 0; color: var(--muted); font-size: .95rem;
}

.mosaic {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media (min-width: 800px) { .mosaic { grid-template-columns: repeat(4, 1fr); } }
.mosaic img { width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: 14px; }
.mosaic img:nth-child(3n) { aspect-ratio: 1; }

.stat-row { border-block: 1px solid var(--line); background: var(--bg-2); }
.stat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; padding: 28px 0; }
@media (min-width: 800px) { .stat-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-grid strong { display: block; font-size: 2rem; }
.stat-grid span { color: var(--muted); }

.service-card .icon { width: 28px; height: 28px; color: var(--accent); }
.service-grid.compact { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 800px) { .service-grid.compact { grid-template-columns: repeat(3, 1fr); } }

.hours-list { list-style: none; padding: 0; margin: 0; }
.hours-list li { display: flex; justify-content: space-between; padding: .75rem 0; border-bottom: 1px solid var(--line); }
.info-sheet p { display: flex; gap: .55rem; margin-bottom: .7rem; }

.lead-form, .auth-card form { display: grid; gap: 1rem; }
.form-grid { display: grid; gap: .9rem; }
@media (min-width: 700px) { .form-grid { grid-template-columns: 1fr 1fr; } }
.form-grid .full, .settings-form .full { grid-column: 1 / -1; }
label span { display: block; font-size: .85rem; font-weight: 700; margin-bottom: .35rem; }
input, select, textarea {
  width: 100%; padding: .85rem 1rem;
  border-radius: 14px; border: 1px solid var(--line);
  background: var(--bg-2);
}
input:focus, select:focus, textarea:focus { outline: 2px solid var(--accent); border-color: transparent; }
label em { color: #e85d4c; font-size: .8rem; }
.check { display: flex; gap: .6rem; align-items: flex-start; }
.check input { width: auto; margin-top: .2rem; }

.menu-section { margin-bottom: 2rem; }
.menu-section ul { list-style: none; padding: 0; }
.menu-section li {
  display: flex; justify-content: space-between; gap: 1rem;
  padding: 1rem 0; border-bottom: 1px solid var(--line);
}
.menu-section em { font-style: normal; font-weight: 800; color: var(--accent); }
.legal-body { color: var(--muted); max-width: 70ch; }
.legal-body h2 { margin-top: 1.6rem; }

.site-footer { padding: 72px 0 110px; border-top: 1px solid var(--line); }
.footer-grid { display: grid; gap: 2rem; }
@media (min-width: 800px) { .footer-grid { grid-template-columns: 1.4fr .7fr .7fr .8fr; } }
.footer-logo { height: 40px; width: auto; }
.footer-label { font-size: .75rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.site-footer a, .linkish { display: block; padding: .25rem 0; color: var(--muted); background: none; border: 0; cursor: pointer; text-align: left; }
.site-footer a:hover, .linkish:hover { color: var(--text); }
.footer-contacts a { display: flex; gap: .5rem; align-items: center; color: var(--text); }
.footer-bar { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-top: 2.4rem; color: var(--muted); font-size: .85rem; }

.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 25;
  display: none; gap: .6rem; padding: .7rem 1rem;
  background: color-mix(in srgb, var(--bg) 90%, transparent);
  border-top: 1px solid var(--line);
}
.sticky-cta .btn { flex: 1; }
body:has(.consent-bar) { padding-bottom: 140px; }
.consent-bar {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 40;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 20px; box-shadow: var(--shadow); padding: 1rem;
}
.consent-inner { display: flex; gap: 1rem; align-items: center; justify-content: space-between; flex-wrap: wrap; }
.consent-actions { display: flex; gap: .5rem; }

.flash { padding: .8rem 1rem; border-radius: 12px; }
.flash.error { background: rgba(232, 93, 76, .12); color: #e85d4c; }
.flash.success { background: rgba(200, 240, 49, .14); color: var(--accent); }

.auth-body { min-height: 100vh; display: grid; place-items: center; padding: 24px; }
.auth-card { width: min(420px, 100%); }
.auth-card h1 { margin: 1rem 0; }

.place-grid { display: grid; gap: 12px; }
@media (min-width: 700px) { .place-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .place-grid { grid-template-columns: repeat(3, 1fr); } }
.place-card {
  position: relative; display: block;
  min-height: 280px; border-radius: 16px; overflow: hidden;
}
.place-card img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.place-meta {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1.1rem 1.15rem;
  background: linear-gradient(to top, rgba(0,0,0,.75), transparent);
  color: #fff;
}
.place-meta span { display: block; font-weight: 700; font-size: 1.2rem; }

.chip-row { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.2rem; }
.chip {
  padding: .45rem .9rem; border-radius: 99px;
  border: 1px solid var(--line); background: var(--surface);
}
.chip.is-active { background: var(--accent); color: var(--accent-ink); border-color: transparent; }

.card-slider {
  position: relative;
  overflow: hidden;
  background: #050505;
  padding: 8px 0 20px;
  min-height: calc(100svh - 128px);
}
.card-slider-stage {
  position: relative;
  height: calc(100svh - 168px);
  min-height: 580px;
  max-height: 900px;
  margin: 0 auto;
  width: min(1680px, 100%);
}
a.card-slide { color: inherit; text-decoration: none; display: block; cursor: pointer; }
.card-slide {
  position: absolute;
  left: 50%;
  top: 50%;
  width: clamp(340px, 30vw, 520px);
  height: 96%;
  margin: 0;
  border-radius: 28px;
  overflow: hidden;
  background: #0a0a0a;
  border: 1px solid rgba(255,255,255,.1);
  transform: translate(-50%, -50%) scale(.5);
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 28px 70px rgba(0,0,0,.45);
  transition: transform .7s cubic-bezier(.2,.7,.2,1), opacity .55s ease, box-shadow .55s ease, border-color .35s ease, filter .55s ease;
}
.card-slide img,
.card-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.card-slide.is-left {
  transform: translate(-50%, -50%) translateX(calc(-100% - 20px)) scale(.94);
  opacity: .7;
  filter: saturate(.92) brightness(.78);
  pointer-events: auto;
  z-index: 2;
}
.card-slide.is-center {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  pointer-events: auto;
  z-index: 4;
  border-color: rgba(255,255,255,.2);
  box-shadow: 0 40px 90px rgba(0,0,0,.55);
}
.card-slide.is-right {
  transform: translate(-50%, -50%) translateX(calc(100% + 20px)) scale(.94);
  opacity: .7;
  filter: saturate(.92) brightness(.78);
  pointer-events: auto;
  z-index: 2;
}
.card-slide.is-wait {
  transform: translate(-50%, -50%) scale(.42);
  opacity: 0;
  z-index: 1;
}
.card-slide.is-center:hover {
  border-color: rgba(255,255,255,.32);
  box-shadow: 0 46px 100px rgba(0,0,0,.62);
}
.cms-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 48px; height: 48px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 50%;
  background: rgba(8,8,8,.4);
  color: rgba(255,255,255,.82);
  font-size: 1.4rem;
  cursor: pointer;
  opacity: .55;
  transition: opacity .25s ease, background .2s ease, color .2s ease;
}
.card-slider:hover .cms-slider-btn { opacity: 1; }
.cms-slider-btn:hover { background: rgba(8,8,8,.72); color: #fff; }
.cms-slider-btn.prev { left: 18px; }
.cms-slider-btn.next { right: 18px; }
.cms-slider-dots {
  position: absolute;
  left: 0; right: 0; bottom: 10px;
  z-index: 5;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.cms-slider-dots button {
  width: 8px; height: 8px; padding: 0;
  border: 0; border-radius: 50%;
  background: rgba(255,255,255,.32);
  cursor: pointer;
}
.cms-slider-dots button.is-active { background: var(--accent); }

.loc-tag {
  font-size: clamp(1.15rem, 2.4vw, 1.6rem);
  font-weight: 700;
  letter-spacing: -.02em;
  margin: 0;
  color: var(--text);
}
.loc-prose { max-width: none; font-size: 1.05rem; }

/* ---- Şube sayfası ---- */
/* Başlık bandı: büyük fotoğraf yerine sade tipografi + şubenin kendi renginden hafif bir ışık. */
.venue-head {
  position: relative;
  padding: 26px 0 64px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(64% 100% at 6% 0%, color-mix(in srgb, var(--c, var(--accent)) 14%, transparent), transparent 68%),
    var(--bg);
}
.crumbs {
  display: flex; gap: .45rem; align-items: center;
  margin: 0 0 2.2rem;
  font-size: .82rem; color: var(--muted);
}
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--text); }

.venue-head-grid { display: grid; gap: 2.6rem; align-items: start; }
@media (min-width: 1000px) {
  .venue-head-grid { grid-template-columns: 1.2fr .8fr; gap: 3.4rem; }
}
.venue-badge {
  display: inline-flex; align-items: center; gap: .55rem;
  margin: 0;
  padding: .36rem .8rem .36rem .7rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .74rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted);
}
.venue-badge .dot { background: var(--c, var(--accent)); flex: none; }
.venue-badge em { font-style: normal; color: var(--accent); }
.venue-head h1 {
  margin: 1.1rem 0 .6rem;
  font-size: clamp(2.7rem, 6.4vw, 4.6rem);
  line-height: 1;
  letter-spacing: -.03em;
}
.venue-tagline {
  margin: 0 0 1.1rem;
  max-width: 30rem;
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -.02em;
  color: var(--text);
}
.venue-lead {
  margin: 0;
  max-width: 38rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--muted);
}
/* Adres / saat / telefon: tek çerçeve içinde bölmeli şerit. */
.venue-facts {
  display: grid;
  margin: 2rem 0 1.8rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}
.venue-facts > div { padding: .95rem 1.1rem; border-top: 1px solid var(--line); }
.venue-facts > div:first-child { border-top: 0; }
@media (min-width: 660px) {
  .venue-facts { grid-template-columns: repeat(3, 1fr); }
  .venue-facts > div { border-top: 0; border-left: 1px solid var(--line); }
  .venue-facts > div:first-child { border-left: 0; }
}
.venue-facts span {
  display: block; margin-bottom: .3rem;
  font-size: .68rem; letter-spacing: .13em; text-transform: uppercase;
  color: var(--muted);
}
.venue-facts strong { font-size: .95rem; font-weight: 600; line-height: 1.45; }
.venue-cta { display: flex; flex-wrap: wrap; gap: .7rem; }

.venue-form {
  padding: 1.7rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}
.venue-form h2 { margin: .5rem 0 .4rem; font-size: 1.7rem; letter-spacing: -.02em; }
.venue-form > .muted { margin-bottom: 1.2rem; font-size: .92rem; }
@media (min-width: 1000px) {
  .venue-form { position: sticky; top: 96px; }
}

/* Galeri: bütün kareler aynı orana kırpılır, böylece ızgara dağılmaz. */
.venue-shots {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 760px) { .venue-shots { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1100px) { .venue-shots { grid-template-columns: repeat(4, 1fr); } }
.venue-shots figure { margin: 0; }
.venue-shots img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 16px;
  background: var(--bg-2);
}

/* ---- CasFit Store ---- */
.store-filters {
  position: sticky;
  top: var(--header-h);
  z-index: 5;
  padding: .9rem 0;
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.store-filters .container { display: flex; gap: .55rem; overflow-x: auto; scrollbar-width: none; }
.store-filters .container::-webkit-scrollbar { display: none; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  flex: none;
  padding: .45rem .9rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--muted);
}
.chip:hover { color: var(--text); border-color: var(--text); }
.chip.is-active { background: var(--accent); border-color: var(--accent); color: var(--accent-ink); }
.chip small { font-size: .72rem; opacity: .7; }

.product-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
}
.product-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  transition: border-color .18s ease, transform .18s ease;
}
.product-card:hover { border-color: var(--accent); transform: translateY(-3px); }
.product-shot {
  position: relative;
  margin: 0;
  background: var(--bg-2);
}
.product-shot img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
/* Fotoğrafı henüz yüklenmemiş ürünlerde kartın oranı bozulmasın. */
.product-noimg {
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 1 / 1;
  font-size: .8rem;
  color: var(--muted);
  background: var(--bg-2);
}
.product-badge {
  position: absolute;
  top: .7rem;
  left: .7rem;
  padding: .28rem .6rem;
  background: var(--accent);
  color: var(--accent-ink);
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 700;
}
.product-badge.is-out { background: #b02a2a; color: #fff; left: auto; right: .7rem; }
.product-body { display: flex; flex-direction: column; gap: .35rem; padding: 1rem 1.1rem 1.2rem; flex: 1; }
.product-brand {
  margin: 0;
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}
.product-body h3 { margin: 0; font-size: 1.02rem; line-height: 1.3; }
.product-desc {
  margin: 0;
  font-size: .87rem;
  line-height: 1.5;
  color: var(--muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-price { display: flex; align-items: baseline; gap: .5rem; margin: .5rem 0 0; }
.product-price strong { font-size: 1.12rem; }
.product-price s { font-size: .85rem; color: var(--muted); }

.product-detail { display: grid; gap: 2.4rem; align-items: start; }
@media (min-width: 900px) {
  .product-detail { grid-template-columns: 1fr 1fr; gap: 3rem; }
}
.product-main { margin: 0; border-radius: 22px; overflow: hidden; background: var(--bg-2); }
.product-main img { display: block; width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.product-thumbs { display: flex; gap: .6rem; margin-top: .7rem; flex-wrap: wrap; }
.product-thumb {
  width: 72px;
  height: 72px;
  padding: 0;
  border: 2px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: none;
  cursor: pointer;
}
.product-thumb.is-active { border-color: var(--accent); }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.product-info h1 { margin: 1rem 0 .6rem; font-size: clamp(2rem, 4vw, 2.8rem); line-height: 1.08; letter-spacing: -.02em; }
.product-price-row { display: flex; align-items: center; gap: .7rem; flex-wrap: wrap; margin: 1.4rem 0; }
.product-price-row strong { font-size: 2rem; letter-spacing: -.02em; }
.product-price-row s { color: var(--muted); }
.product-price-row .product-badge { position: static; }
.product-facts {
  display: grid;
  gap: 0;
  margin: 0 0 1.6rem;
  padding: 0;
  list-style: none;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}
.product-facts li { display: flex; justify-content: space-between; gap: 1rem; padding: .8rem 1.1rem; border-top: 1px solid var(--line); }
.product-facts li:first-child { border-top: 0; }
.product-facts span { color: var(--muted); font-size: .88rem; }
.product-order { display: flex; gap: .8rem; align-items: flex-end; flex-wrap: wrap; }
.product-order label { display: grid; gap: .35rem; }
.product-order label span { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.product-order input {
  width: 92px;
  padding: .8rem .9rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--text);
  font: inherit;
}
.product-out { color: var(--muted); margin: 0 0 1rem; }

.venue-story { display: grid; gap: 1.8rem; }
@media (min-width: 900px) { .venue-story { grid-template-columns: .68fr 1.32fr; } }
.venue-prose { max-width: none; font-size: 1.05rem; line-height: 1.75; }
.venue-visit { display: grid; gap: 2rem; }
@media (min-width: 900px) { .venue-visit { grid-template-columns: .9fr 1.1fr; align-items: start; } }
.yt-grid.is-after { margin-top: 1.4rem; }
.hero-split.is-follow { padding: 56px 0 20px; text-align: center; }
.hero-copy.is-center { max-width: 46rem; margin-inline: auto; }
.hero-copy.is-center .lead { margin-inline: auto; }
.hero-copy.is-center .hero-cta { justify-content: center; }
.apply-hero { padding-bottom: 8px; }
.apply-hero .loc-tag { color: var(--text); margin-bottom: 1rem; }
.apply-card { max-width: 640px; margin-inline: auto; }

.branch-top { padding: 36px 0 48px; }
.branch-split { display: grid; gap: 28px; }
@media (min-width: 980px) {
  .branch-split { grid-template-columns: 1.35fr .72fr; align-items: start; }
}
.branch-carousel {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 26px;
  overflow: hidden;
  background: #111;
  margin: 1.1rem 0 1.2rem;
}
.branch-carousel.is-wide { aspect-ratio: 16 / 9; }
.branch-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity .55s ease, transform .7s ease;
}
.branch-slide.is-active { opacity: 1; transform: scale(1); }
.branch-slide img,
.branch-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.branch-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin-top: 1rem;
}
.branch-signup {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 1.4rem 1.35rem 1.5rem;
}
@media (min-width: 980px) {
  .branch-signup { position: sticky; top: 96px; }
}
.quick-lead { display: grid; gap: .85rem; }
.hp {
  position: absolute !important;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  opacity: 0;
  pointer-events: none;
}
.branch-map {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 320px;
}
.branch-map iframe { width: 100%; height: 380px; border: 0; display: block; }
.yt-grid { display: grid; gap: 16px; }
@media (min-width: 800px) { .yt-grid { grid-template-columns: 1fr 1fr; } }
.yt-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;
  background: #111;
}
.yt-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

.cms-gallery {
  display: grid;
  gap: 12px;
}
.cms-gallery.layout-grid {
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}
/* Film şeridi: ham kaydırma çubuğu yerine yumuşak, parmakla kaydırılabilir bir şerit. */
.cms-gallery.layout-film {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 0;
  /* Sağ kenarda devam ettiğini belli eden yumuşak solma. */
  mask-image: linear-gradient(to right, #000 0, #000 88%, transparent 100%);
}
.cms-gallery.layout-film::-webkit-scrollbar { display: none; }
.cms-gallery.layout-film img,
.cms-gallery.layout-film video {
  flex: 0 0 clamp(240px, 30vw, 340px);
  height: auto;
  aspect-ratio: 4 / 3;
  scroll-snap-align: start;
}
.cms-gallery.layout-mosaic {
  grid-template-columns: repeat(4, 1fr);
}
.cms-gallery.layout-mosaic img:nth-child(1),
.cms-gallery.layout-mosaic video:nth-child(1) { grid-column: span 2; height: 360px; }
.cms-gallery img,
.cms-gallery video {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 18px;
  display: block;
  background: #111;
}
.page-body { color: var(--muted); }
.page-body .cms-gallery-wrap,
.page-body .cms-slider { margin: 1.4rem 0; }
.page-body .cms-gallery-wrap { padding: 0; background: transparent; }

@media (max-width: 1180px) and (min-width: 861px) {
  .card-slide { width: clamp(280px, 34vw, 400px); }
  .card-slide.is-left { transform: translate(-50%, -50%) translateX(calc(-92% - 10px)) scale(.9); }
  .card-slide.is-right { transform: translate(-50%, -50%) translateX(calc(92% + 10px)) scale(.9); }
}
@media (max-width: 860px) {
  .nav-desk, .hide-sm { display: none; }
  .card-slider { min-height: auto; padding: 6px 0 18px; }
  .card-slider-stage { height: min(78svh, 680px); min-height: 520px; }
  .card-slide.is-left, .card-slide.is-right { opacity: 0; pointer-events: none; transform: translate(-50%, -50%) scale(.86); }
  .card-slide.is-center { width: min(92vw, 420px); height: 100%; }
  .cms-gallery.layout-mosaic { grid-template-columns: 1fr 1fr; }
  .nav-toggle { display: grid; }
  .package-grid { grid-template-columns: 1fr; }
  .package-card.is-popular { transform: none; }
  .sticky-cta { display: flex; }
  .site-footer { padding-bottom: 130px; }
  .header-actions .btn-accent { display: none; }
  .hero-photo, .hero-photo img, .about-photo, .about-photo img { min-height: 280px; height: 300px; }
  .gallery-grid img { height: 220px; }
  .topbar-inner { flex-direction: column; align-items: flex-start; padding: 8px 0; }
}
