/* =============================================================
   Mahsen Gaziantep Baklava — gaziantep-baklava.de
   Tadı Damakta
   ============================================================= */

/* ---------- 1. Tokens ---------- */
:root {
  --ink:        #070605;
  --ink-2:      #0c0a08;
  --panel:      #12100c;
  --panel-2:    #191510;
  --line:       rgba(212, 175, 55, .18);
  --line-soft:  rgba(246, 239, 226, .08);

  --gold:       #d4af37;
  --gold-lite:  #f3e2a9;
  --gold-deep:  #a8801f;
  --gold-grad:  linear-gradient(100deg, #a8801f 0%, #d4af37 22%, #f7ecc4 46%, #d4af37 66%, #9c7418 100%);

  --cream:      #f6efe2;
  --cream-dim:  rgba(246, 239, 226, .62);
  --cream-mut:  rgba(246, 239, 226, .42);

  --red:        #8e1616;
  --red-lite:   #c62626;
  --pistachio:  #86ab52;

  --font-display: "Cinzel", "Cormorant Garamond", Georgia, serif;
  --font-serif:   "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-ui:      "Jost", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-script:  "Kaushan Script", "Cormorant Garamond", cursive;

  --nav-h: 92px;
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --ease-io:  cubic-bezier(.65, 0, .35, 1);

  --radius: 18px;
  --shadow-lg: 0 32px 80px -28px rgba(0, 0, 0, .9);
  --shadow-gold: 0 22px 60px -26px rgba(212, 175, 55, .55);
}

/* ---------- 2. Base ---------- */
* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-ui);
  font-size: 1rem;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body.is-loading { overflow: hidden; height: 100vh; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .35s var(--ease-out); }
button { font-family: inherit; }

::selection { background: var(--gold); color: #120e05; }

/* Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #0a0806; }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--gold-deep), var(--gold));
  border-radius: 20px;
  border: 2px solid #0a0806;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; left: 12px; top: -80px; z-index: 3000;
  background: var(--gold); color: #120e05; padding: 10px 18px;
  border-radius: 8px; font-weight: 600; transition: top .3s;
}
.skip-link:focus { top: 12px; }

/* ---------- 3. Typography ---------- */
h1, h2, h3, h4, .display {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: .02em;
  line-height: 1.12;
  margin: 0;
}

.kicker {
  font-family: var(--font-ui);
  font-size: .72rem;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: .9rem;
}
.kicker::before, .kicker::after {
  content: "";
  width: 34px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.kicker::after { background: linear-gradient(90deg, var(--gold), transparent); }
.kicker.kicker--start::before { display: none; }

.script {
  font-family: var(--font-script);
  font-weight: 400;
  letter-spacing: .005em;
}

.gold-text {
  background: var(--gold-grad);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.gold-text.shimmer { animation: shimmer 7s linear infinite; }
/* Zeichen mit eigener Transform brechen background-clip:text der Eltern —
   daher bekommt jedes Zeichen seinen eigenen Goldverlauf (wie im Logo). */
.gold-text .char {
  background: var(--gold-grad);
  background-size: 260% 100%;
  background-position: 55% 0;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.gold-text.shimmer .char { animation: shimmer 7s linear infinite; }
@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -60% 0; }
}

.section-title {
  font-size: clamp(2.1rem, 5.4vw, 4rem);
  text-transform: uppercase;
}
.section-lead {
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 1.7vw, 1.32rem);
  color: var(--cream-dim);
  line-height: 1.75;
  max-width: 62ch;
}

.rule-diamond {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; margin: 1.1rem 0 1.6rem;
}
.rule-diamond span {
  height: 1px; width: min(90px, 16vw);
  background: linear-gradient(90deg, transparent, var(--gold));
}
.rule-diamond span:last-child { background: linear-gradient(90deg, var(--gold), transparent); }
.rule-diamond i {
  width: 9px; height: 9px;
  background: var(--gold);
  transform: rotate(45deg);
  box-shadow: 0 0 14px rgba(212, 175, 55, .8);
}

/* ---------- 4. Decorative layers ---------- */
.pattern-layer {
  position: absolute; inset: 0;
  background-image: url("../img/pattern.svg");
  background-size: 260px;
  opacity: .5;
  pointer-events: none;
  z-index: 0;
}
.grain {
  position: fixed; inset: 0; z-index: 2500;
  pointer-events: none; opacity: .035; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}
.glow {
  position: absolute; border-radius: 50%;
  filter: blur(90px); pointer-events: none; z-index: 0;
}
.glow--gold { background: radial-gradient(circle, rgba(212,175,55,.20), transparent 70%); }
.glow--red  { background: radial-gradient(circle, rgba(142,22,22,.30), transparent 70%); }

section, .site-footer { position: relative; overflow-x: clip; }
@supports not (overflow-x: clip) {
  section, .site-footer { overflow-x: hidden; }
}
.sec-pad   { padding: clamp(88px, 11vw, 168px) 0; }
.sec-pad-s { padding: clamp(64px, 7vw, 108px) 0; }

.bg-ink   { background: var(--ink); }
.bg-ink-2 { background: var(--ink-2); }
.bg-panel { background: linear-gradient(180deg, var(--ink), var(--panel) 50%, var(--ink)); }

.edge-top::before, .edge-bot::after {
  content: ""; position: absolute; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}
.edge-top::before { top: 0; }
.edge-bot::after  { bottom: 0; }

/* ---------- 5. Preloader ---------- */
#preloader {
  position: fixed; inset: 0; z-index: 4000;
  background: var(--ink);
  display: grid; place-items: center;
}
#preloader .pl-inner {
  display: grid; place-items: center; gap: 34px;
  text-align: center; position: relative; z-index: 2;
  padding: 0 24px;
}
/* Logo + Goldschimmer, der einmal darüberzieht */
.pl-logo-wrap {
  position: relative;
  width: clamp(210px, 30vw, 330px);
  line-height: 0;
}
.pl-logo {
  width: 100%; height: auto;
  opacity: 0;
  filter: drop-shadow(0 0 46px rgba(212, 175, 55, .34));
}
.pl-sheen {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(104deg,
    transparent 34%,
    rgba(255, 255, 255, .12) 44%,
    rgba(255, 252, 236, .85) 50%,
    rgba(255, 255, 255, .12) 56%,
    transparent 66%);
  transform: translateX(-140%);
  opacity: 0;
  /* Schimmer nur auf den Buchstaben, nicht auf dem leeren Kasten */
  -webkit-mask-image: url("../img/brand/logo-full.webp");
          mask-image: url("../img/brand/logo-full.webp");
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}
.pl-bar {
  width: min(240px, 56vw); height: 2px;
  background: rgba(246, 239, 226, .12);
  position: relative; overflow: hidden; border-radius: 2px;
}
.pl-bar i {
  position: absolute; inset: 0 100% 0 0;
  background: var(--gold-grad);
}
.pl-pct {
  font-size: .72rem; letter-spacing: .3em; color: var(--cream-mut);
  font-variant-numeric: tabular-nums; margin-top: -18px;
}
.pl-curtain {
  position: fixed; left: 0; width: 100%; height: 50.5vh;
  background: var(--ink); z-index: 3999;
}
.pl-curtain.top { top: 0; }
.pl-curtain.bot { bottom: 0; }

/* ---------- 6. Cursor ---------- */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0; z-index: 3500;
  pointer-events: none; border-radius: 50%;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
}
.cursor-dot  { width: 6px; height: 6px; background: var(--gold-lite); }
.cursor-ring {
  width: 38px; height: 38px;
  border: 1px solid rgba(212, 175, 55, .8);
  transition: width .3s var(--ease-out), height .3s var(--ease-out),
              background-color .3s, border-color .3s;
}
body.cursor-hover .cursor-ring {
  width: 66px; height: 66px;
  background: rgba(212, 175, 55, .14);
  border-color: rgba(243, 226, 169, .9);
}
@media (hover: none), (max-width: 991.98px) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* ---------- 7. Navbar ---------- */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1200;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: height .45s var(--ease-out), background-color .45s, backdrop-filter .45s, border-color .45s;
  border-bottom: 1px solid transparent;
}
.site-nav.scrolled {
  height: 72px;
  background: rgba(7, 6, 5, .82);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom-color: var(--line);
}
.site-nav.hide { transform: translateY(-110%); transition: transform .5s var(--ease-out); }

.brand { display: flex; align-items: center; gap: 12px; min-width: 0; flex: 0 0 auto; }
.brand-txt { min-width: 0; }
.brand-txt b, .brand-txt small { white-space: nowrap; }
.brand img {
  width: 42px; height: 42px; object-fit: contain;
  transition: transform .5s var(--ease-out);
}
.brand:hover img { transform: rotate(45deg) scale(1.06); }
.brand-txt { display: grid; line-height: 1; }
@media (min-width: 992px) and (max-width: 1279.98px) {
  .nav-links { gap: 12px; }
  .nav-links a { font-size: .68rem; letter-spacing: .09em; }
  .brand-txt b { font-size: .92rem; letter-spacing: .07em; }
  .brand img { width: 38px; height: 38px; }
}

.nav-cta { display: none !important; }
@media (min-width: 1440px) { .nav-cta { display: inline-flex !important; } }

.brand-txt b {
  font-family: var(--font-display);
  font-size: 1.05rem; letter-spacing: .12em; font-weight: 600;
  text-transform: uppercase;
}
.brand-txt small {
  font-family: var(--font-script);
  font-size: .82rem; color: var(--gold); letter-spacing: .02em;
  margin-top: 3px;
}

.nav-links {
  display: flex; align-items: center; justify-content: flex-end;
  gap: clamp(10px, 1.4vw, 26px);
  flex: 1 1 auto; min-width: 0;
}
.nav-links a {
  position: relative;
  font-size: .76rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--cream-dim); font-weight: 500; padding: 6px 0;
  white-space: nowrap;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: var(--gold-grad);
  transform: scaleX(0); transform-origin: right;
  transition: transform .45s var(--ease-out);
}
.nav-links a:hover, .nav-links a.active { color: var(--cream); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); transform-origin: left; }

.lang-switch {
  display: inline-flex; align-items: center;
  border: 1px solid var(--line); border-radius: 999px;
  padding: 3px; background: rgba(255, 255, 255, .03);
}
.lang-switch button {
  border: 0; background: transparent; color: var(--cream-mut);
  font-size: .68rem; font-weight: 600; letter-spacing: .14em;
  padding: 5px 12px; border-radius: 999px; cursor: pointer;
  transition: all .35s var(--ease-out);
}
.lang-switch button.active {
  background: var(--gold-grad); color: #120e05;
  box-shadow: 0 4px 16px -6px rgba(212, 175, 55, .8);
}

.nav-toggle {
  width: 46px; height: 46px; border: 1px solid var(--line);
  border-radius: 50%; background: rgba(255, 255, 255, .03);
  display: none; place-items: center; cursor: pointer; color: var(--gold);
}
.nav-toggle i { font-size: 1.15rem; }

/* Mobile drawer */
.drawer {
  position: fixed; inset: 0; z-index: 1400;
  background: rgba(7, 6, 5, .97);
  backdrop-filter: blur(14px);
  display: grid; place-items: center;
  clip-path: circle(0% at calc(100% - 46px) 46px);
  transition: clip-path .8s var(--ease-io);
  overflow-y: auto;
}
.drawer.open { clip-path: circle(150% at calc(100% - 46px) 46px); }
.drawer-inner { text-align: center; padding: 90px 24px 50px; width: 100%; }
.drawer a.d-link {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 6vw, 2.4rem);
  letter-spacing: .1em; text-transform: uppercase;
  padding: 9px 0; opacity: 0; transform: translateY(26px);
}
.drawer.open a.d-link { animation: dIn .6s var(--ease-out) forwards; }
@keyframes dIn { to { opacity: 1; transform: none; } }
.drawer-close {
  position: absolute; top: 26px; right: 22px;
  width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid var(--line); background: transparent;
  color: var(--gold); font-size: 1.3rem; cursor: pointer;
}
.drawer-foot { margin-top: 34px; display: grid; gap: 12px; justify-items: center; }

/* ---------- 8. Buttons ---------- */
.btn-gold, .btn-ghost {
  position: relative; display: inline-flex; align-items: center; gap: .65rem;
  padding: 15px 34px; border-radius: 999px;
  font-family: var(--font-ui); font-size: .78rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  border: 1px solid transparent; cursor: pointer;
  overflow: hidden; isolation: isolate;
  transition: color .4s var(--ease-out), transform .4s var(--ease-out), box-shadow .4s;
}
.btn-gold { background: var(--gold-grad); color: #120e05; box-shadow: var(--shadow-gold); }
.btn-gold::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: var(--cream);
  transform: translateY(101%); transition: transform .5s var(--ease-out);
}
.btn-gold:hover { color: #120e05; transform: translateY(-3px); }
.btn-gold:hover::before { transform: translateY(0); }

.btn-ghost { border-color: var(--line); color: var(--cream); background: transparent; }
.btn-ghost::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: var(--gold-grad);
  transform: scaleX(0); transform-origin: left;
  transition: transform .5s var(--ease-out);
}
.btn-ghost:hover { color: #120e05; border-color: transparent; transform: translateY(-3px); }
.btn-ghost:hover::before { transform: scaleX(1); }

.btn-sm { padding: 11px 24px; font-size: .7rem; }

/* ---------- 9. Hero ---------- */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  padding: calc(var(--nav-h) + 40px) 0 120px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: -8%;
  background-size: cover; background-position: center;
  will-change: transform;
  animation: kenburns 26s ease-in-out infinite alternate;
}
@keyframes kenburns {
  0%   { transform: scale(1.06) translate3d(0, 0, 0); }
  100% { transform: scale(1.18) translate3d(-1.6%, -1.6%, 0); }
}
.hero-veil {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 22% 46%, rgba(7,6,5,.34) 0%, rgba(7,6,5,.86) 52%, rgba(7,6,5,.98) 100%),
    linear-gradient(180deg, rgba(7,6,5,.94) 0%, rgba(7,6,5,.34) 34%, rgba(7,6,5,.96) 100%);
}
.hero-silk {
  position: absolute; right: -6%; top: 0; height: 100%; width: 58%;
  background: radial-gradient(closest-side, rgba(142,22,22,.42), transparent 72%);
  filter: blur(50px); pointer-events: none;
}
.hero-inner { position: relative; z-index: 3; }

.hero-title {
  font-size: clamp(2.4rem, 7.3vw, 6.4rem);
  text-transform: uppercase;
  line-height: .98;
  letter-spacing: .01em;
  margin: 18px 0 4px;
}
.hero-title .line { display: block; overflow: hidden; padding-bottom: .04em; }
.hero-title .line > span { display: inline-block; white-space: nowrap; }
.hero-title .char { display: inline-block; will-change: transform; }
.hero-slogan {
  font-family: var(--font-script);
  font-size: clamp(1.7rem, 4.6vw, 3.3rem);
  color: var(--gold-lite);
  margin: 6px 0 22px;
  text-shadow: 0 8px 40px rgba(212, 175, 55, .35);
}
.hero-desc {
  font-family: var(--font-serif);
  font-size: clamp(1.02rem, 1.55vw, 1.28rem);
  color: var(--cream-dim);
  max-width: 46ch; line-height: 1.8;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }

.hero-floats { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.hero-floats img {
  position: absolute;
  filter: drop-shadow(0 40px 60px rgba(0, 0, 0, .85));
  will-change: transform;
}
.f-sarma { right: 2%;  top: 46%; width: min(46vw, 620px); }
.f-cay   { right: 31%; top: 13%; width: min(11vw, 118px); opacity: .95; }
.f-lokum { right: 8%;  top: 20%; width: min(20vw, 250px); }

.hero-badges {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 34px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 999px;
  border: 1px solid var(--line); background: rgba(255, 255, 255, .035);
  font-size: .68rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--cream-dim);
}
.hero-badge i { color: var(--gold); font-size: .85rem; }

.scroll-cue {
  position: absolute; left: 50%; bottom: 26px; z-index: 4;
  transform: translateX(-50%);
  display: grid; justify-items: center; gap: 10px;
  font-size: .62rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--cream-mut);
}
.scroll-cue .track {
  width: 1px; height: 54px; background: rgba(246, 239, 226, .16);
  position: relative; overflow: hidden;
}
.scroll-cue .track i {
  position: absolute; top: -54px; left: 0; width: 1px; height: 54px;
  background: linear-gradient(180deg, transparent, var(--gold));
  animation: cue 2.2s var(--ease-io) infinite;
}
@keyframes cue { to { top: 54px; } }

/* Sparks */
.sparks { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.spark {
  position: absolute; width: 3px; height: 3px; border-radius: 50%;
  background: var(--gold-lite); opacity: 0;
  box-shadow: 0 0 10px 1px rgba(212, 175, 55, .8);
  animation: float-up linear infinite;
}
@keyframes float-up {
  0%   { transform: translateY(0) scale(.5); opacity: 0; }
  12%  { opacity: .85; }
  85%  { opacity: .5; }
  100% { transform: translateY(-105vh) scale(1.1); opacity: 0; }
}

/* ---------- 10. Marquee ---------- */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(212,175,55,.06), rgba(142,22,22,.08), rgba(212,175,55,.06));
  overflow: hidden; padding: 20px 0;
}
.marquee-track { display: flex; width: max-content; animation: marq 42s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.1vw, 1.5rem);
  letter-spacing: .22em; text-transform: uppercase;
  padding: 0 30px; display: inline-flex; align-items: center; gap: 30px;
  color: var(--cream-dim); white-space: nowrap;
}
.marquee-track span i {
  width: 7px; height: 7px; background: var(--gold);
  transform: rotate(45deg); display: inline-block;
}
@keyframes marq { to { transform: translateX(-50%); } }

/* ---------- 11. About ---------- */
.about-grid { display: grid; gap: clamp(38px, 5vw, 78px); align-items: center; }
@media (min-width: 992px) { .about-grid { grid-template-columns: 1.05fr 1fr; } }

.about-media { position: relative; }
.about-media .frame {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow-lg);
}
.about-media .frame img { width: 100%; aspect-ratio: 4/5; object-fit: cover; will-change: transform; }
.about-media .frame--sm {
  position: absolute; right: -6%; bottom: -8%;
  width: 52%; border-width: 4px; border-style: solid;
  border-color: var(--ink);
  border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-lg);
}
.about-media .frame--sm img { aspect-ratio: 1/1; }
.about-badge {
  position: absolute; left: -4%; top: 7%;
  background: var(--gold-grad); color: #120e05;
  border-radius: 50%; width: clamp(96px, 12vw, 130px); aspect-ratio: 1;
  display: grid; place-items: center; text-align: center;
  font-family: var(--font-display); line-height: 1.1;
  box-shadow: var(--shadow-gold);
}
.about-badge b { font-size: clamp(1.5rem, 2.6vw, 2.1rem); display: block; }
.about-badge small { font-size: .56rem; letter-spacing: .18em; text-transform: uppercase; }

.stat-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 14px; margin-top: 40px;
  border-top: 1px solid var(--line); padding-top: 30px;
}
.stat b {
  display: block; font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.4vw, 2.7rem);
  background: var(--gold-grad); -webkit-background-clip: text; background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
}
.stat span {
  font-size: .66rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--cream-mut);
}

/* ---------- 12. Signature cards ---------- */
.sig-grid { display: grid; gap: 26px; }
@media (min-width: 768px) { .sig-grid { grid-template-columns: repeat(3, 1fr); } }

.sig-card {
  position: relative; border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(165deg, var(--panel-2), var(--ink));
  padding: 34px 28px 30px; overflow: hidden;
  transition: transform .6s var(--ease-out), border-color .5s, box-shadow .6s;
}
.sig-card::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(120% 80% at 50% 0%, rgba(212,175,55,.16), transparent 62%);
  opacity: 0; transition: opacity .6s;
}
.sig-card:hover {
  transform: translateY(-10px);
  border-color: rgba(212, 175, 55, .48);
  box-shadow: var(--shadow-lg);
}
.sig-card:hover::after { opacity: 1; }
.sig-card figure {
  margin: 0 0 22px; position: relative; z-index: 2;
  aspect-ratio: 4/3; display: grid; place-items: center;
}
.sig-card figure img {
  max-height: 100%; width: auto; object-fit: contain;
  filter: drop-shadow(0 26px 34px rgba(0, 0, 0, .8));
  transition: transform .7s var(--ease-out);
}
.sig-card:hover figure img { transform: scale(1.08) rotate(-2deg); }
.sig-card h3 { font-size: 1.4rem; position: relative; z-index: 2; }
.sig-card p {
  font-family: var(--font-serif); font-size: 1.03rem;
  color: var(--cream-dim); margin: 10px 0 0; position: relative; z-index: 2;
}
.sig-no {
  position: absolute; right: 18px; top: 8px;
  font-family: var(--font-display); font-size: 4.6rem;
  color: rgba(246, 239, 226, .05); line-height: 1; z-index: 1;
}

/* ---------- 13. Menu ---------- */
.filter-bar {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
  margin: 0 0 46px;
}
.filter-btn {
  border: 1px solid var(--line); background: rgba(255, 255, 255, .025);
  color: var(--cream-dim); border-radius: 999px;
  padding: 11px 24px; cursor: pointer;
  font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 600;
  transition: all .45s var(--ease-out);
}
.filter-btn:hover { color: var(--cream); border-color: rgba(212, 175, 55, .5); }
.filter-btn.active {
  background: var(--gold-grad); color: #120e05; border-color: transparent;
  box-shadow: 0 10px 30px -12px rgba(212, 175, 55, .8);
}

.menu-grid {
  display: grid; gap: 24px;
  grid-template-columns: repeat(auto-fill, minmax(265px, 1fr));
}
.m-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line-soft);
  background: linear-gradient(180deg, #100e0b, #080705);
  display: flex; flex-direction: column;
  transform-style: preserve-3d;
  transition: border-color .5s, box-shadow .6s, transform .5s var(--ease-out);
}
.m-card:hover {
  border-color: rgba(212, 175, 55, .45);
  box-shadow: 0 30px 70px -34px rgba(0, 0, 0, .95), 0 0 0 1px rgba(212, 175, 55, .1);
}
.m-thumb {
  position: relative; aspect-ratio: 5/4; overflow: hidden; background: #000;
}
.m-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.1s var(--ease-out), filter .6s;
}
.m-card:hover .m-thumb img { transform: scale(1.09); filter: saturate(1.1); }
.m-thumb::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(6,5,4,.92) 100%);
}
.m-tag {
  position: absolute; left: 12px; top: 12px; z-index: 2;
  font-size: .58rem; letter-spacing: .18em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 999px;
  background: rgba(7, 6, 5, .72); border: 1px solid var(--line);
  color: var(--gold-lite); backdrop-filter: blur(6px);
}
.m-fav {
  position: absolute; right: 12px; top: 12px; z-index: 2;
  width: 30px; height: 30px; display: grid; place-items: center;
  border-radius: 50%; background: var(--gold-grad); color: #120e05;
  font-size: .72rem; box-shadow: 0 6px 18px -6px rgba(212, 175, 55, .9);
}
.m-body { padding: 18px 20px 22px; display: flex; flex-direction: column; flex: 1; }
.m-name {
  font-family: var(--font-display); font-size: 1.12rem;
  letter-spacing: .04em; margin: 0 0 4px;
}
.m-sub {
  font-family: var(--font-serif); font-size: .95rem;
  color: var(--cream-mut); margin: 0 0 14px; line-height: 1.5;
}
.m-prices {
  margin-top: auto; display: flex; flex-wrap: wrap; gap: 8px;
  padding-top: 14px; border-top: 1px dashed rgba(212, 175, 55, .22);
}
.price-chip {
  display: inline-flex; align-items: baseline; gap: 6px;
  border-radius: 8px; padding: 6px 11px;
  background: rgba(212, 175, 55, .09);
  border: 1px solid rgba(212, 175, 55, .2);
}
.price-chip em {
  font-style: normal; font-size: .58rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--cream-mut);
}
.price-chip b {
  font-family: var(--font-display); font-size: .98rem;
  color: var(--gold-lite); font-weight: 600;
}
.m-aller {
  margin-top: 12px; font-size: .62rem; letter-spacing: .1em;
  color: rgba(246, 239, 226, .34); text-transform: uppercase; line-height: 1.6;
}
.m-aller i { color: var(--gold); font-style: normal; }

.menu-note {
  margin-top: 42px; padding: 22px 26px;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: rgba(212, 175, 55, .04);
  display: flex; gap: 16px; align-items: flex-start;
  font-size: .88rem; color: var(--cream-dim);
}
.menu-note i { color: var(--gold); font-size: 1.2rem; line-height: 1.4; }

/* ---------- 14. Process ---------- */
.proc-grid { display: grid; gap: 26px; }
@media (min-width: 576px) { .proc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .proc-grid { grid-template-columns: repeat(4, 1fr); } }
.proc {
  position: relative; padding: 34px 24px 30px;
  border: 1px solid var(--line-soft); border-radius: var(--radius);
  background: rgba(255, 255, 255, .015);
  transition: background .5s, border-color .5s, transform .5s var(--ease-out);
}
.proc:hover { background: rgba(212, 175, 55, .05); border-color: var(--line); transform: translateY(-6px); }
.proc .ico {
  width: 58px; height: 58px; display: grid; place-items: center;
  border-radius: 50%; margin-bottom: 18px;
  border: 1px solid var(--line); color: var(--gold); font-size: 1.4rem;
  background: rgba(212, 175, 55, .07);
}
.proc h4 { font-size: 1.1rem; margin-bottom: 8px; }
.proc p { font-family: var(--font-serif); color: var(--cream-dim); margin: 0; font-size: 1rem; }
.proc .step {
  position: absolute; right: 20px; top: 16px;
  font-family: var(--font-display); font-size: .8rem;
  letter-spacing: .2em; color: rgba(246, 239, 226, .2);
}

/* ---------- 15. Gallery ---------- */
.gal-grid {
  display: grid; gap: 14px;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 150px;
}
@media (min-width: 768px) {
  .gal-grid { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 175px; }
}
.gal-item {
  position: relative; overflow: hidden; border-radius: 14px;
  border: 1px solid var(--line-soft); cursor: pointer;
}
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease-out); }
.gal-item::after {
  content: "\F4CB"; font-family: "bootstrap-icons";
  position: absolute; inset: 0; display: grid; place-items: center;
  background: rgba(7, 6, 5, .58); color: var(--gold-lite); font-size: 1.5rem;
  opacity: 0; transition: opacity .45s;
}
.gal-item:hover img { transform: scale(1.1); }
.gal-item:hover::after { opacity: 1; }
.gal-item.tall { grid-row: span 2; }
.gal-item.wide { grid-column: span 2; }

.lightbox {
  position: fixed; inset: 0; z-index: 2600;
  background: rgba(4, 3, 2, .96);
  display: grid; place-items: center; padding: 5vw;
  opacity: 0; visibility: hidden; transition: opacity .45s, visibility .45s;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: 100%; max-height: 86vh; border-radius: 12px;
  border: 1px solid var(--line); box-shadow: var(--shadow-lg);
  transform: scale(.94); transition: transform .5s var(--ease-out);
}
.lightbox.open img { transform: scale(1); }
.lb-btn {
  position: absolute; background: rgba(255, 255, 255, .05);
  border: 1px solid var(--line); color: var(--gold);
  width: 50px; height: 50px; border-radius: 50%; cursor: pointer;
  display: grid; place-items: center; font-size: 1.2rem;
  transition: background .3s;
}
.lb-btn:hover { background: rgba(212, 175, 55, .2); }
.lb-close { top: 22px; right: 22px; }
.lb-prev  { left: 18px;  top: 50%; transform: translateY(-50%); }
.lb-next  { right: 18px; top: 50%; transform: translateY(-50%); }

/* ---------- 16. Locations ---------- */
.loc-grid { display: grid; gap: 26px; }
@media (min-width: 768px) { .loc-grid { grid-template-columns: repeat(2, 1fr); } }
.loc-card {
  position: relative; overflow: hidden; border-radius: var(--radius);
  border: 1px solid var(--line); min-height: 380px;
  display: flex; align-items: flex-end;
}
.loc-card img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transition: transform 1.2s var(--ease-out); z-index: 0;
}
.loc-card::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(7,6,5,.24) 0%, rgba(7,6,5,.88) 62%, rgba(7,6,5,.97) 100%);
}
.loc-card:hover img { transform: scale(1.07); }
.loc-body { position: relative; z-index: 2; padding: 32px 30px; width: 100%; }
.loc-type {
  display: inline-block; font-size: .6rem; letter-spacing: .24em;
  text-transform: uppercase; color: #120e05; background: var(--gold-grad);
  padding: 5px 13px; border-radius: 999px; margin-bottom: 14px; font-weight: 700;
}
.loc-body h3 { font-size: 1.5rem; margin-bottom: 10px; }
.loc-line {
  display: flex; gap: 11px; align-items: flex-start;
  color: var(--cream-dim); font-size: .95rem; margin-bottom: 7px;
}
.loc-line i { color: var(--gold); margin-top: 4px; }

/* ---------- 17. CTA band ---------- */
.cta-band { position: relative; overflow: hidden; }
.cta-band .bgimg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  will-change: transform;
}
.cta-band .veil {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(7,6,5,.96) 0%, rgba(7,6,5,.8) 48%, rgba(142,22,22,.5) 100%);
}
.cta-band .inner { position: relative; z-index: 2; }

/* ---------- 18. Contact ---------- */
.contact-grid { display: grid; gap: 34px; }
@media (min-width: 992px) { .contact-grid { grid-template-columns: 1fr 1.12fr; } }
.info-item {
  display: flex; gap: 16px; padding: 18px 0;
  border-bottom: 1px solid var(--line-soft);
}
.info-item .ico {
  flex: 0 0 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center; color: var(--gold);
  border: 1px solid var(--line); background: rgba(212, 175, 55, .07);
}
.info-item h5 {
  font-family: var(--font-ui); font-size: .66rem; letter-spacing: .22em;
  text-transform: uppercase; color: var(--cream-mut); margin: 0 0 4px;
}
.info-item p { margin: 0; font-size: 1.02rem; }
.info-item a:hover { color: var(--gold); }

.form-card {
  border: 1px solid var(--line); border-radius: var(--radius);
  background: linear-gradient(165deg, var(--panel-2), var(--ink));
  padding: clamp(26px, 3.4vw, 42px);
}
.field { position: relative; margin-bottom: 20px; }
.field label {
  display: block; font-size: .64rem; letter-spacing: .2em;
  text-transform: uppercase; color: var(--cream-mut); margin-bottom: 8px;
}
.field input, .field select, .field textarea {
  width: 100%; background: rgba(255, 255, 255, .03);
  border: 1px solid var(--line-soft); border-radius: 12px;
  color: var(--cream); padding: 14px 16px; font-size: .96rem;
  font-family: var(--font-ui);
  transition: border-color .4s, background .4s, box-shadow .4s;
}
.field select option { background: var(--panel); color: var(--cream); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: rgba(212, 175, 55, .55);
  background: rgba(212, 175, 55, .05);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, .08);
}
.field textarea { min-height: 128px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: rgba(246, 239, 226, .28); }

.map-wrap {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); filter: grayscale(1) contrast(1.1) brightness(.72);
  transition: filter .6s;
}
.map-wrap:hover { filter: grayscale(.15) contrast(1) brightness(.95); }
.map-wrap iframe { width: 100%; height: 380px; border: 0; display: block; }

/* ---------- 19. Footer ---------- */
.site-footer {
  position: relative; border-top: 1px solid var(--line);
  background: linear-gradient(180deg, var(--ink-2), #050403);
  padding: clamp(56px, 7vw, 90px) 0 0;
}
.foot-logo { width: 190px; margin-bottom: 20px; }
.foot-h {
  font-family: var(--font-ui); font-size: .68rem; letter-spacing: .24em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 18px;
}
.foot-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.foot-list a { color: var(--cream-dim); font-size: .93rem; }
.foot-list a:hover { color: var(--gold); padding-left: 6px; }
.social { display: flex; gap: 11px; margin-top: 20px; }
.social a {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid var(--line); display: grid; place-items: center;
  color: var(--cream-dim); transition: all .4s var(--ease-out);
}
.social a:hover {
  background: var(--gold-grad); color: #120e05;
  border-color: transparent; transform: translateY(-4px);
}
.foot-bot {
  margin-top: 52px; border-top: 1px solid var(--line-soft);
  padding: 22px 0 26px; font-size: .8rem; color: var(--cream-mut);
}
.foot-bot a:hover { color: var(--gold); }
.foot-by { display: inline-flex; align-items: center; gap: .4rem; white-space: nowrap; }
.foot-by a {
  color: var(--cream-dim);
  border-bottom: 1px solid rgba(212, 175, 55, .3);
  padding-bottom: 1px;
  transition: color .35s var(--ease-out), border-color .35s var(--ease-out);
}
.foot-by a:hover { color: var(--gold); border-bottom-color: var(--gold); }
.foot-sep { color: rgba(246, 239, 226, .22); margin: 0 .35rem; }

/* ---------- 20. Floating actions ---------- */
.fab-stack {
  position: fixed; right: 18px; bottom: 18px; z-index: 1300;
  display: grid; gap: 11px;
}
.fab {
  width: 52px; height: 52px; border-radius: 50%;
  display: grid; place-items: center; font-size: 1.25rem;
  border: 1px solid var(--line); background: rgba(7, 6, 5, .84);
  backdrop-filter: blur(10px); color: var(--gold); cursor: pointer;
  box-shadow: 0 14px 34px -14px rgba(0, 0, 0, .95);
  transition: transform .4s var(--ease-out), background .4s, color .4s;
}
.fab:hover { transform: translateY(-4px) scale(1.06); background: var(--gold-grad); color: #120e05; }
.fab--call { background: var(--gold-grad); color: #120e05; border-color: transparent; }
.fab--top { opacity: 0; pointer-events: none; transition: opacity .4s, transform .4s; }
.fab--top.show { opacity: 1; pointer-events: auto; }

/* ---------- 21. Reveal utilities ---------- */
.rv { opacity: 0; transform: translateY(38px); }
.rv-x { opacity: 0; transform: translateX(-42px); }
.rv-s { opacity: 0; transform: scale(.94); }
.no-anim .rv, .no-anim .rv-x, .no-anim .rv-s { opacity: 1; transform: none; }

/* ---------- 22. Responsive ---------- */
@media (max-width: 1199.98px) {
  .f-sarma { width: min(52vw, 460px); right: -2%; }
  .f-lokum { width: min(22vw, 190px); }
  .f-cay   { display: none; }
}
@media (max-width: 991.98px) {
  :root { --nav-h: 76px; }
  .nav-links { display: none; }
  .nav-toggle { display: grid; }
  .hero { min-height: auto; padding: calc(var(--nav-h) + 56px) 0 90px; }
  .hero-floats { opacity: .3; }
  .scroll-cue { display: none; }
  .f-sarma { top: auto; bottom: -4%; right: -12%; width: 78vw; }
  .f-lokum { display: none; }
  .about-media .frame--sm { right: 0; bottom: -6%; width: 46%; }
  .about-badge { left: 0; }
}
@media (max-width: 575.98px) {
  /* Kopfzeile kompakt halten */
  .brand img { width: 34px; height: 34px; }
  .brand { gap: 9px; }
  .brand-txt b { font-size: .8rem; letter-spacing: .05em; }
  .brand-txt small { font-size: .7rem; margin-top: 2px; }
  .lang-switch button { padding: 4px 9px; font-size: .62rem; }
  .nav-toggle { width: 42px; height: 42px; }
  .site-nav .container { gap: 8px !important; }
  .brand-txt { max-width: 54vw; }
  .brand-txt b, .brand-txt small { overflow: hidden; text-overflow: ellipsis; }

  .hero-badge { font-size: .58rem; padding: 7px 12px; letter-spacing: .12em; }
  .hero-badges { gap: 8px; margin-top: 26px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn-gold, .hero-cta .btn-ghost { justify-content: center; }
  .stat-row { grid-template-columns: 1fr; text-align: center; gap: 22px; }
  .menu-grid { grid-template-columns: 1fr; }
  .gal-grid { grid-auto-rows: 130px; }
  .marquee-track span { font-size: .95rem; padding: 0 18px; gap: 18px; }
  .fab-stack { right: 12px; bottom: 12px; }
  .fab { width: 48px; height: 48px; }
}

/* ---------- 23. Motion preferences ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .rv, .rv-x, .rv-s { opacity: 1 !important; transform: none !important; }
  .hero-bg { animation: none; transform: scale(1.06); }
}

/* ---------- 24. Print ---------- */
@media print {
  .site-nav, .fab-stack, #preloader, .grain, .cursor-dot, .cursor-ring,
  .scroll-cue, .marquee, .hero-floats { display: none !important; }
  body { background: #fff; color: #000; }
  .m-card { break-inside: avoid; border: 1px solid #ccc; }
}

/* ---------- 25. FAQ (Akkordeon) ---------- */
.faq-list { max-width: 900px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item {
  border: 1px solid var(--line-soft); border-radius: 14px;
  background: linear-gradient(150deg, rgba(255, 255, 255, .028), rgba(255, 255, 255, .008));
  overflow: hidden;
  transition: border-color .4s, background .4s;
}
.faq-item[open] { border-color: rgba(212, 175, 55, .42); background: rgba(212, 175, 55, .045); }
.faq-item summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 20px 22px;
  font-family: var(--font-display); font-size: 1.03rem; font-weight: 600;
  letter-spacing: .02em; line-height: 1.4;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary i {
  flex: 0 0 auto; color: var(--gold); font-size: 1rem;
  transition: transform .45s var(--ease-out);
}
.faq-item[open] summary i { transform: rotate(135deg); }
@media (hover: hover) { .faq-item summary:hover { color: var(--gold-lite); } }
.faq-a { padding: 0 22px 22px; }
.faq-a p {
  margin: 0; font-family: var(--font-serif);
  font-size: 1.06rem; color: var(--cream-dim); line-height: 1.75;
}
.faq-item[open] .faq-a { animation: faqIn .45s var(--ease-out); }
@keyframes faqIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }

/* Screenreader-only */
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

/* ---------- 26. Datenschutz-Hinweis (kein Consent-Gate) ----------
   Diese Website benötigt nach § 25 Abs. 2 Nr. 2 TDDDG keine Einwilligung:
   keine Tracking-Cookies, keine externen Ressourcen beim Seitenaufruf,
   Karten nur auf Klick. Der Hinweis informiert, er fragt nichts ab. */
.privacy-note {
  position: fixed; z-index: 1500;
  left: 18px; bottom: 18px;
  width: min(410px, calc(100vw - 36px));
  background: linear-gradient(160deg, #16120c, #090705);
  border: 1px solid rgba(212, 175, 55, .4);
  border-radius: var(--radius);
  box-shadow: 0 30px 70px -26px rgba(0, 0, 0, .95);
  padding: 20px 22px 18px;
  transform: translateY(calc(100% + 34px));
  opacity: 0;
  transition: transform .7s var(--ease-out), opacity .5s var(--ease-out);
}
.privacy-note.show { transform: translateY(0); opacity: 1; }
.privacy-note h4 {
  font-family: var(--font-display); font-size: 1rem;
  letter-spacing: .04em; margin: 0 0 8px;
  display: flex; align-items: center; gap: 9px;
}
.privacy-note h4 i { color: var(--gold); font-size: 1.05rem; }
.privacy-note p {
  margin: 0 0 15px; font-size: .84rem; line-height: 1.62;
  color: var(--cream-dim);
}
.privacy-note p b { color: var(--cream); font-weight: 600; }
.privacy-note .pv-row { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.privacy-note .pv-row a {
  font-size: .68rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--cream-mut); border-bottom: 1px solid rgba(212, 175, 55, .3);
  padding-bottom: 2px;
}
.privacy-note .pv-row a:hover { color: var(--gold); border-bottom-color: var(--gold); }

@media (max-width: 575.98px) {
  .privacy-note {
    left: 10px; right: 10px; bottom: 10px; width: auto;
    padding: 17px 18px 15px;
  }
  .privacy-note p { font-size: .8rem; }
}

/* =============================================================
   27. LIGHT MODE
   Marka aynı kalır: siyah/altın yerine parşömen/koyu-altın.
   Tüm bileşenler token üzerinden döner; sabit renk kullanan
   yerler aşağıda tek tek düzeltilir.
   ============================================================= */
:root[data-theme="light"] {
  --ink:        #faf7f0;
  --ink-2:      #f4eee2;
  --panel:      #fffdf8;
  --panel-2:    #fbf5e9;
  --line:       rgba(150, 116, 40, .30);
  --line-soft:  rgba(52, 38, 20, .13);

  --gold:       #a97e1c;
  --gold-lite:  #8a6412;
  --gold-deep:  #6b4c0c;
  --gold-grad:  linear-gradient(100deg, #6b4c0c 0%, #a97e1c 22%, #c9a03c 46%, #a97e1c 66%, #684a0b 100%);

  --cream:      #23180d;
  --cream-dim:  rgba(35, 24, 13, .74);
  --cream-mut:  rgba(35, 24, 13, .52);

  --red:        #8e1616;
  --pistachio:  #5e7f34;

  --shadow-lg:   0 26px 60px -30px rgba(70, 50, 18, .40);
  --shadow-gold: 0 18px 44px -22px rgba(169, 126, 28, .45);

  --on-gold:    #fffdf6;   /* altın zemin üzerindeki yazı */
}
:root { --on-gold: #120e05; }

/* --- temel --- */
:root[data-theme="light"] ::selection { background: var(--gold); color: #fff; }
:root[data-theme="light"] ::-webkit-scrollbar-track { background: #efe7d6; }
:root[data-theme="light"] ::-webkit-scrollbar-thumb { border-color: #efe7d6; }
:root[data-theme="light"] .grain { opacity: .05; mix-blend-mode: multiply; }
:root[data-theme="light"] .glow--gold { background: radial-gradient(circle, rgba(169,126,28,.16), transparent 70%); }
:root[data-theme="light"] .glow--red  { background: radial-gradient(circle, rgba(142,22,22,.13), transparent 70%); }
:root[data-theme="light"] .pattern-layer { opacity: .55; }
:root[data-theme="light"] .bg-panel {
  background: linear-gradient(180deg, var(--ink), var(--panel-2) 50%, var(--ink));
}

/* --- altın butonlar: açık temada yazı beyaz olmalı --- */
:root[data-theme="light"] .btn-gold { color: var(--on-gold); }
:root[data-theme="light"] .btn-gold::before { background: #2b1e0d; }
:root[data-theme="light"] .btn-gold:hover { color: #fdf8ec; }
:root[data-theme="light"] .btn-ghost:hover { color: var(--on-gold); }
:root[data-theme="light"] .lang-switch button.active,
:root[data-theme="light"] .filter-btn.active,
:root[data-theme="light"] .loc-type,
:root[data-theme="light"] .m-fav,
:root[data-theme="light"] .about-badge,
:root[data-theme="light"] .social a:hover,
:root[data-theme="light"] .fab--call,
:root[data-theme="light"] .fab:hover,
:root[data-theme="light"] .skip-link,
:root[data-theme="light"] .mbar a.primary { color: var(--on-gold); }
:root[data-theme="light"] .mbar a.primary i { color: var(--on-gold); }
:root[data-theme="light"] .todo { color: var(--on-gold); }

/* --- preloader --- */
:root[data-theme="light"] #preloader,
:root[data-theme="light"] .pl-curtain { background: var(--ink); }
:root[data-theme="light"] .pl-bar { background: rgba(35, 24, 13, .14); }
:root[data-theme="light"] .pl-logo { filter: drop-shadow(0 0 40px rgba(169, 126, 28, .28)); }
:root[data-theme="light"] .pl-sheen {
  background: linear-gradient(104deg, transparent 34%, rgba(255,255,255,.10) 44%,
              rgba(255, 252, 236, .60) 50%, rgba(255,255,255,.10) 56%, transparent 66%);
}

/* --- cursor --- */
:root[data-theme="light"] .cursor-dot,
:root[data-theme="light"] .cursor-ring { mix-blend-mode: normal; }
:root[data-theme="light"] .cursor-dot { background: var(--gold-deep); }
:root[data-theme="light"] .cursor-ring { border-color: rgba(169, 126, 28, .75); }
:root[data-theme="light"] body.cursor-hover .cursor-ring { background: rgba(169,126,28,.12); }

/* --- navigasyon / drawer --- */
:root[data-theme="light"] .site-nav.scrolled {
  background: rgba(250, 247, 240, .88);
  box-shadow: 0 8px 30px -22px rgba(70, 50, 18, .55);
}
:root[data-theme="light"] .drawer { background: rgba(250, 247, 240, .975); }

/* --- hero: fotoğrafın üstüne açık perde --- */
:root[data-theme="light"] .hero-veil {
  background:
    radial-gradient(120% 90% at 22% 46%, rgba(250,247,240,.80) 0%, rgba(250,247,240,.93) 50%, rgba(250,247,240,.985) 100%),
    linear-gradient(180deg, rgba(250,247,240,.97) 0%, rgba(250,247,240,.86) 34%, rgba(250,247,240,.99) 100%);
}
:root[data-theme="light"] .hero-bg { filter: saturate(.85) contrast(.9); }
:root[data-theme="light"] .hero-silk {
  background: radial-gradient(closest-side, rgba(142,22,22,.14), transparent 72%);
}
:root[data-theme="light"] .hero-slogan { text-shadow: 0 6px 26px rgba(169,126,28,.22); }
:root[data-theme="light"] .spark {
  background: var(--gold); box-shadow: 0 0 10px 1px rgba(169,126,28,.55);
}
:root[data-theme="light"] .hero-badge { background: rgba(255, 253, 248, .72); }
:root[data-theme="light"] .scroll-cue .track { background: rgba(35,24,13,.16); }

/* --- marquee --- */
:root[data-theme="light"] .marquee {
  background: linear-gradient(90deg, rgba(169,126,28,.07), rgba(142,22,22,.06), rgba(169,126,28,.07));
}

/* --- kartlar --- */
:root[data-theme="light"] .sig-card {
  background: linear-gradient(165deg, #fffdf8, #f5eee0);
  box-shadow: 0 14px 34px -26px rgba(70, 50, 18, .5);
}
:root[data-theme="light"] .sig-card::after {
  background: radial-gradient(120% 80% at 50% 0%, rgba(169,126,28,.13), transparent 62%);
}
:root[data-theme="light"] .sig-no { color: rgba(35, 24, 13, .07); }
:root[data-theme="light"] .sig-card figure img { filter: drop-shadow(0 18px 26px rgba(70,50,18,.28)); }

:root[data-theme="light"] .m-card {
  background: linear-gradient(180deg, #fffdf8, #f7f1e4);
  box-shadow: 0 10px 26px -22px rgba(70, 50, 18, .45);
}
:root[data-theme="light"] .m-card:hover {
  box-shadow: 0 24px 46px -28px rgba(70, 50, 18, .55), 0 0 0 1px rgba(169,126,28,.18);
}
:root[data-theme="light"] .m-thumb { background: #f3ece0; }
:root[data-theme="light"] .m-thumb::after {
  background: linear-gradient(180deg, transparent 46%, rgba(255, 253, 248, .92) 100%);
}
:root[data-theme="light"] .m-tag {
  background: rgba(255, 253, 248, .86); color: var(--gold-deep);
}
:root[data-theme="light"] .m-aller { color: rgba(35, 24, 13, .45); }
:root[data-theme="light"] .price-chip { background: rgba(169, 126, 28, .10); }
:root[data-theme="light"] .price-chip b { color: var(--gold-deep); }
:root[data-theme="light"] .menu-note { background: rgba(169, 126, 28, .07); }

:root[data-theme="light"] .proc { background: rgba(255, 253, 248, .7); }
:root[data-theme="light"] .proc:hover { background: rgba(169, 126, 28, .07); }
:root[data-theme="light"] .proc .step { color: rgba(35, 24, 13, .22); }
:root[data-theme="light"] .proc .ico { background: rgba(169, 126, 28, .09); }

/* --- galeri / lightbox --- */
:root[data-theme="light"] .gal-item::after { background: rgba(250, 247, 240, .72); color: var(--gold-deep); }
:root[data-theme="light"] .lightbox { background: rgba(244, 238, 226, .96); }
:root[data-theme="light"] .lb-btn { background: rgba(255,253,248,.8); }
:root[data-theme="light"] .lb-btn:hover { background: rgba(169,126,28,.18); }

/* --- şubeler / CTA --- */
:root[data-theme="light"] .loc-card::after {
  background: linear-gradient(180deg, rgba(250,247,240,.30) 0%, rgba(250,247,240,.90) 58%, rgba(250,247,240,.98) 100%);
}
:root[data-theme="light"] .cta-band .veil {
  background: linear-gradient(90deg, rgba(250,247,240,.97) 0%, rgba(250,247,240,.88) 48%, rgba(198,160,150,.55) 100%);
}
:root[data-theme="light"] .cta-band .bgimg { filter: saturate(.85) contrast(.92); }

/* --- form --- */
:root[data-theme="light"] .form-card { background: linear-gradient(165deg, #fffdf8, #f6efe1); }
:root[data-theme="light"] .field input,
:root[data-theme="light"] .field select,
:root[data-theme="light"] .field textarea { background: rgba(255, 255, 255, .85); }
:root[data-theme="light"] .field input:focus,
:root[data-theme="light"] .field select:focus,
:root[data-theme="light"] .field textarea:focus { background: #fff; }
:root[data-theme="light"] .field input::placeholder,
:root[data-theme="light"] .field textarea::placeholder { color: rgba(35, 24, 13, .35); }
:root[data-theme="light"] .field select option { background: #fff; color: var(--cream); }
:root[data-theme="light"] .info-item .ico { background: rgba(169, 126, 28, .09); }
:root[data-theme="light"] .map-wrap { filter: grayscale(.35) contrast(1) brightness(1); }

/* --- SSS --- */
:root[data-theme="light"] .faq-item { background: linear-gradient(150deg, #fffdf8, #f7f1e4); }
:root[data-theme="light"] .faq-item[open] { background: rgba(169, 126, 28, .07); }

/* --- footer / yüzen düğmeler / hinweis --- */
:root[data-theme="light"] .site-footer { background: linear-gradient(180deg, var(--ink-2), #efe7d7); }
:root[data-theme="light"] .fab { background: rgba(255, 253, 248, .92); }
:root[data-theme="light"] .fab--call { background: var(--gold-grad); }
:root[data-theme="light"] .fab:hover { background: var(--gold-grad); }
:root[data-theme="light"] .privacy-note {
  background: linear-gradient(160deg, #fffdf8, #f4ecdc);
  box-shadow: 0 26px 56px -28px rgba(70, 50, 18, .5);
}
:root[data-theme="light"] .privacy-note p b { color: var(--gold-deep); }

/* =============================================================
   28. Logo — tema ile değişen görsel (arka plan olarak, tek indirme)
   ============================================================= */
.brand-mark, .foot-logo, .pl-logo {
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.brand-mark {
  width: 42px; height: 42px; flex: 0 0 auto; display: block;
  background-image: url("../img/brand/mark.png");
  transition: transform .5s var(--ease-out);
}
.brand:hover .brand-mark { transform: rotate(45deg) scale(1.06); }
.foot-logo {
  width: 190px; aspect-ratio: 1846 / 1740; display: block; margin-bottom: 20px;
  background-image: url("../img/brand/logo.webp");
}
.pl-logo {
  width: 100%; aspect-ratio: 1846 / 1740; display: block;
  background-image: url("../img/brand/logo-full.webp");
  opacity: 0;
  filter: drop-shadow(0 0 46px rgba(212, 175, 55, .34));
}
:root[data-theme="light"] .brand-mark { background-image: url("../img/brand/mark-dark.png"); }
:root[data-theme="light"] .foot-logo  { background-image: url("../img/brand/logo-dark.webp"); }
:root[data-theme="light"] .pl-logo    { background-image: url("../img/brand/logo-full-dark.webp"); }
.pl-sheen {
  -webkit-mask-image: url("../img/brand/logo-full.webp");
          mask-image: url("../img/brand/logo-full.webp");
}
:root[data-theme="light"] .pl-sheen {
  -webkit-mask-image: url("../img/brand/logo-full-dark.webp");
          mask-image: url("../img/brand/logo-full-dark.webp");
}
@media (max-width: 575.98px) { .brand-mark { width: 34px; height: 34px; } }

/* =============================================================
   29. Tema düğmesi
   ============================================================= */
.theme-toggle {
  width: 42px; height: 42px; flex: 0 0 auto;
  border: 1px solid var(--line); border-radius: 50%;
  background: rgba(255, 255, 255, .04);
  color: var(--gold); cursor: pointer;
  display: grid; place-items: center; position: relative;
  transition: background .4s var(--ease-out), border-color .4s, transform .4s var(--ease-out);
}
.theme-toggle:hover { background: rgba(212, 175, 55, .14); transform: rotate(-18deg); }
:root[data-theme="light"] .theme-toggle { background: rgba(169, 126, 28, .08); }
.theme-toggle i { font-size: 1.05rem; line-height: 1; transition: opacity .35s, transform .45s var(--ease-out); }
.theme-toggle .bi-sun-fill { position: absolute; opacity: 0; transform: rotate(-90deg) scale(.5); }
:root[data-theme="light"] .theme-toggle .bi-moon-stars-fill { opacity: 0; transform: rotate(90deg) scale(.5); }
:root[data-theme="light"] .theme-toggle .bi-sun-fill { opacity: 1; transform: none; }
@media (max-width: 575.98px) { .theme-toggle { width: 38px; height: 38px; } }

/* Tema geçişinde renklerin yumuşak dönmesi */
:root.theme-anim body,
:root.theme-anim body * {
  transition: background-color .45s ease, color .45s ease,
              border-color .45s ease, fill .45s ease !important;
}

/* ---------- 30. İletişim formu: onay kutusu + bot tuzağı ---------- */
.hp {
  position: absolute !important; left: -9999px;
  width: 1px; height: 1px; overflow: hidden;
}
.consent {
  display: flex; align-items: flex-start; gap: 11px;
  margin: 4px 0 20px; cursor: pointer;
  font-size: .84rem; line-height: 1.6; color: var(--cream-dim);
}
.consent input {
  appearance: none; -webkit-appearance: none;
  flex: 0 0 auto; width: 20px; height: 20px; margin-top: 2px;
  border: 1px solid var(--line); border-radius: 6px;
  background: rgba(255, 255, 255, .04);
  cursor: pointer; position: relative;
  transition: background .3s var(--ease-out), border-color .3s;
}
.consent input:checked {
  background: var(--gold-grad); border-color: transparent;
}
.consent input:checked::after {
  content: "\F26E"; font-family: "bootstrap-icons";
  position: absolute; inset: 0; display: grid; place-items: center;
  color: var(--on-gold); font-size: .8rem;
}
.consent input:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.consent a { color: var(--gold); border-bottom: 1px solid rgba(212, 175, 55, .4); }
.consent a:hover { color: var(--gold-lite); }
.consent.err input { border-color: #e08a8a; background: rgba(224, 138, 138, .1); }
:root[data-theme="light"] .consent input { background: rgba(255, 255, 255, .8); }

#formMsg { transition: color .3s; }
#cfSubmit[disabled] { opacity: .6; pointer-events: none; }

/* ---------- 31. Harita onay kutusu ---------- */
.map-ph {
  height: 380px; display: grid; place-items: center;
  text-align: center; padding: 26px;
  background: linear-gradient(160deg, #151107, #0a0806);
}
:root[data-theme="light"] .map-ph {
  background: linear-gradient(160deg, #fffdf8, #f0e8d8);
}

/* Tek şube: kart tam genişlikte yayılmasın, ortada dursun */
.loc-grid--single { max-width: 640px; margin-inline: auto; }
@media (min-width: 768px) { .loc-grid--single { grid-template-columns: 1fr; } }
