/* ═══════════════════════════════════════════
   RESET & TOKENS
═══════════════════════════════════════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --dark:       #3B2A26;
  --gold:       #C69C6D;
  --gold-light: #D4AF7A;
  --gold-dim:   rgba(198,156,109,0.18);
  --gold-border:rgba(198,156,109,0.3);
  --terra:      #A44A3F;
  --cream:      #F5E9DC;
  --cream-dark: #EDD9C0;
  --white:      #FFFFFF;
  --mid:        #5C3D2E;
  --muted:      #8B6B55;
  --serif:      'Playfair Display', serif;
  --sans:       'Inter', sans-serif;

  /* Moroccan tile SVG pattern */
  --tile-pattern: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cg fill='none' stroke='rgba(198,156,109,0.08)' stroke-width='0.8'%3E%3Crect x='8' y='8' width='44' height='44' transform='rotate(45 30 30)'/%3E%3Crect x='16' y='16' width='28' height='28'/%3E%3Ccircle cx='30' cy='30' r='4' stroke-width='0.5'/%3E%3C/g%3E%3C/svg%3E");
}

html { scroll-behavior: smooth; }
body { background: var(--cream); color: var(--dark); font-family: var(--sans); font-weight: 300; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

h1,h2,h3,h4 { font-family: var(--serif); font-weight: 400; line-height: 1.1; }
h1 { font-size: clamp(3rem, 8vw, 6.5rem); color: #fff; }
h2 { font-size: clamp(2rem, 4vw, 3rem); color: var(--dark); margin-bottom: 1rem; }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); color: var(--dark); }
h4 { font-size: 1rem; color: var(--gold); font-family: var(--sans); font-weight: 600; letter-spacing: 0.04em; margin-bottom: 0.4rem; }
p { line-height: 1.85; color: var(--mid); font-size: 0.9rem; }
em { font-style: italic; color: var(--gold); }

.section-tag {
  display: inline-block; font-size: 0.6rem; letter-spacing: 0.35em;
  text-transform: uppercase; color: var(--terra);
  border-bottom: 1px solid var(--terra); padding-bottom: 3px; margin-bottom: 1rem;
}
.section-tag.center { display: block; text-align: center; }
.section-tag.light { color: var(--gold); border-color: var(--gold); }
h2.center, h3.center { text-align: center; }
.center-p { text-align: center; max-width: 560px; margin: 0 auto 3rem; color: var(--muted); }

/* ── Buttons ── */
.btn-hero-primary {
  display: inline-block; padding: 1rem 2.8rem;
  background: var(--gold); color: var(--dark);
  font-family: var(--sans); font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  transition: background 0.3s, color 0.3s, box-shadow 0.3s;
}
.btn-hero-primary:hover { background: var(--gold-light); box-shadow: 0 0 28px rgba(198,156,109,0.55); }

.btn-hero-outline {
  display: inline-block; padding: 1rem 2.8rem;
  border: 1px solid rgba(255,255,255,0.55); color: #fff;
  font-family: var(--sans); font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
}
.btn-hero-outline:hover { border-color: var(--gold); color: var(--gold); box-shadow: 0 0 20px rgba(198,156,109,0.25); }

.btn-order {
  display: inline-block; padding: 0.6rem 1.4rem;
  border: 1px solid var(--gold); color: var(--gold);
  font-family: var(--sans); font-size: 0.65rem; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase;
  transition: background 0.3s, color 0.3s;
}
.btn-order:hover { background: var(--gold); color: var(--dark); }
.btn-order.full { width: 100%; text-align: center; }

.btn-concept {
  display: inline-block; padding: 0.85rem 2rem;
  border: 1px solid rgba(255,255,255,0.7); color: #fff;
  font-family: var(--sans); font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
  transition: background 0.3s, color 0.3s;
}
.btn-concept:hover { background: #fff; color: var(--dark); }

.btn-franchise-hero {
  display: inline-block; padding: 1.1rem 3rem;
  background: var(--gold); color: var(--dark);
  font-family: var(--sans); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  transition: background 0.3s, box-shadow 0.3s;
}
.btn-franchise-hero:hover { background: var(--gold-light); box-shadow: 0 0 32px rgba(198,156,109,0.5); }

.btn-submit {
  padding: 1rem 2.8rem; background: var(--dark); color: #fff;
  border: none; font-family: var(--sans); font-size: 0.7rem;
  font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  cursor: pointer; transition: background 0.3s;
  align-self: flex-start;
}
.btn-submit:hover { background: var(--terra); }

/* ── Reveal ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.75s ease, transform 0.75s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Float CTA ── */
.float-cta {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 500;
  background: var(--terra); color: #fff;
  padding: 0.85rem 1.8rem; font-family: var(--sans);
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  box-shadow: 0 8px 32px rgba(164,74,63,0.45);
  transform: translateY(80px); opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease, background 0.3s;
}
.float-cta.show { transform: translateY(0); opacity: 1; }
.float-cta:hover { background: var(--dark); }

/* ═══════════════════════════════════════════
   NAV
═══════════════════════════════════════════ */
body { padding-left: 0; }

.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 300;
  display: flex; align-items: center; gap: 3rem;
  padding: 1.2rem 3rem;
  transition: background 0.4s, padding 0.4s, backdrop-filter 0.4s;
}
.nav.scrolled {
  background: rgba(245,233,220,0.96); padding: 0.7rem 3rem;
  box-shadow: 0 1px 0 var(--gold-border); backdrop-filter: blur(12px);
}
.nav-logo { flex-shrink: 0; }
.nav-logo img { height: 100px; width: auto; filter: brightness(0) invert(1); transition: filter 0.4s, height 0.4s; }
.nav.scrolled .nav-logo img { height: 50px; filter: none; }

.nav-links { list-style: none; display: flex; gap: 2rem; flex: 1; }
.nav-links a {
  font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.8); transition: color 0.3s;
}
.nav.scrolled .nav-links a { color: var(--mid); }
.nav-links a:hover { color: var(--gold) !important; }

.nav-right { display: flex; align-items: center; gap: 1.2rem; margin-left: auto; }
.nav-franchise-btn {
  font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 0.55rem 1.4rem; border: 1px solid rgba(255,255,255,0.5); color: #fff;
  transition: border-color 0.3s, color 0.3s, background 0.3s; white-space: nowrap;
}
.nav.scrolled .nav-franchise-btn { border-color: var(--terra); color: var(--terra); }
.nav-franchise-btn:hover { background: var(--terra); border-color: var(--terra); color: #fff !important; }

.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 4px;
}
.nav-toggle span { display: block; width: 24px; height: 1px; background: #fff; transition: all 0.3s; }
.nav.scrolled .nav-toggle span { background: var(--dark); }
.nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-bar { display: none; }

/* ── Mobile Drawer ── */
.nav-overlay {
  position: fixed; inset: 0; z-index: 490;
  background: rgba(26,12,4,0.6); backdrop-filter: blur(4px);
  opacity: 0; pointer-events: none; transition: opacity 0.4s ease;
}
.nav-overlay.open { opacity: 1; pointer-events: auto; }

.nav-drawer {
  position: fixed; top: 0; left: 0; bottom: 0; z-index: 500;
  width: 300px; max-width: 85vw; background: var(--dark);
  display: flex; flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-right: 1px solid var(--gold-border);
}
.nav-drawer.open { transform: translateX(0); }

.drawer-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem 1.8rem; border-bottom: 1px solid rgba(198,156,109,0.15);
}
.drawer-logo { height: 40px; width: auto; }
.drawer-close {
  background: none; border: none; cursor: pointer;
  width: 32px; height: 32px; position: relative; flex-shrink: 0;
}
.drawer-close span {
  position: absolute; top: 50%; left: 50%;
  display: block; width: 18px; height: 1px; background: rgba(255,255,255,0.6);
  transition: background 0.3s;
}
.drawer-close span:first-child { transform: translate(-50%, -50%) rotate(45deg); }
.drawer-close span:last-child  { transform: translate(-50%, -50%) rotate(-45deg); }
.drawer-close:hover span { background: var(--gold); }

.drawer-links { display: flex; flex-direction: column; padding: 2rem 0; flex: 1; }
.drawer-link {
  font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(255,255,255,0.6); padding: 1rem 1.8rem;
  border-left: 2px solid transparent;
  transition: color 0.3s, border-color 0.3s, background 0.3s;
}
.drawer-link:hover { color: var(--gold); border-left-color: var(--gold); background: rgba(198,156,109,0.06); }
.drawer-cta {
  margin: 0 1.8rem 1.5rem; display: block; text-align: center;
  padding: 0.9rem; background: var(--terra); color: #fff;
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  transition: background 0.3s;
}
.drawer-cta:hover { background: var(--gold); color: var(--dark); }
.drawer-footer {
  padding: 1.2rem 1.8rem; border-top: 1px solid rgba(198,156,109,0.12);
  display: flex; flex-direction: column; gap: 0.3rem;
}
.drawer-footer span { font-size: 0.7rem; color: rgba(255,255,255,0.25); }

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
  position: relative; height: 100vh; min-height: 680px;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.hero-video-wrap {
  position: absolute; inset: 0; z-index: 0;
  background: url('F-1.jpg') center/cover no-repeat;
}
.hero-video-wrap video {
  position: absolute; inset: 0; z-index: 1;
  width: 100%; height: 100%; object-fit: cover;
}
.hero-video-wrap video.hidden { display: none; }
.hero-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(160deg, rgba(59,42,38,0.72) 0%, rgba(59,42,38,0.35) 50%, rgba(59,42,38,0.82) 100%);
}
.hero-bottom-fade {
  position: absolute; bottom: 0; left: 0; right: 0; height: 180px; z-index: 3;
  background: linear-gradient(to bottom, transparent, var(--cream));
}
.hero-content {
  position: relative; z-index: 5; text-align: center; padding: 0 1.5rem;
  animation: heroFadeIn 1.2s ease forwards;
}
@keyframes heroFadeIn { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }
.hero-eyebrow {
  font-size: 0.62rem; letter-spacing: 0.42em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.8rem; display: block;
}
.hero-content h1 em { color: var(--gold); font-style: italic; }
.hero-sub { font-size: 1rem; color: rgba(255,255,255,0.72); margin-top: 1.2rem; max-width: 520px; margin-left: auto; margin-right: auto; }
.hero-cta { display: flex; gap: 1.2rem; justify-content: center; margin-top: 2.8rem; flex-wrap: wrap; }

/* Steam particles */
.steam-wrap { position: absolute; bottom: 30%; left: 50%; transform: translateX(-50%); z-index: 4; pointer-events: none; }
.steam {
  position: absolute; width: 3px; border-radius: 50%;
  background: rgba(255,255,255,0.12);
  animation: steamRise 4s ease-in-out infinite;
}
.s1 { height: 60px; left: -20px; animation-delay: 0s; }
.s2 { height: 80px; left: 0; animation-delay: 1.3s; }
.s3 { height: 50px; left: 20px; animation-delay: 2.6s; }
@keyframes steamRise {
  0% { opacity: 0; transform: translateY(0) scaleX(1); }
  30% { opacity: 0.6; }
  100% { opacity: 0; transform: translateY(-80px) scaleX(2.5); }
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute; bottom: 4rem; left: 50%; transform: translateX(-50%);
  z-index: 5; display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.scroll-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.scroll-line-anim {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:1;transform:scaleY(1)} 50%{opacity:0.3;transform:scaleY(0.6)} }

/* ═══════════════════════════════════════════
   STORY — Sticky Split-Screen Journey
═══════════════════════════════════════════ */
.story {
  position: relative;
  /* scroll-track height = 4 × 100vh */
}
.story-sticky {
  position: sticky; top: 0; height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  overflow: hidden; z-index: 1;
}
.story-scroll-track {
  height: 400vh; /* drives the sticky */
  position: relative; z-index: 0;
  margin-top: -100vh; /* overlap with sticky */
  pointer-events: none;
}

/* ── Visual side ── */
.story-visual {
  position: relative; background: #1A0800; overflow: hidden;
}
.sv-scene {
  position: absolute; inset: 0;
  display: flex; align-items: flex-end; justify-content: flex-start;
  opacity: 0; transition: opacity 0.7s ease;
}
.sv-scene.active { opacity: 1; }

/* Görsel */
.sv-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.75) sepia(15%) saturate(1.1);
  transition: transform 0.8s ease;
}
.sv-scene.active .sv-img { transform: scale(1.03); }

/* Görsel yoksa placeholder */
.sv-img-placeholder {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 60%, #3B1A08 0%, #1A0800 100%);
}

/* Step label */
.sv-step-label {
  position: absolute; bottom: 2.5rem; right: 2.5rem; z-index: 3;
  font-family: var(--serif); font-size: 0.7rem; color: rgba(198,156,109,0.5);
  letter-spacing: 0.2em;
}

/* ── Text panel ── */
.story-text-panel {
  background: var(--cream); display: flex; flex-direction: column;
  justify-content: center; padding: 5rem 4rem;
  position: relative; overflow: hidden;
}
.story-text-panel::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: var(--tile-pattern); background-size: 60px 60px; opacity: 0.5;
}
.stp-track { position: relative; z-index: 1; flex: 1; display: flex; align-items: center; }
.stp-item {
  position: absolute; width: 100%;
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: none;
}
.stp-item.active {
  opacity: 1; transform: translateY(0);
  position: relative; pointer-events: auto;
}
.stp-tag {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 1.5rem;
}
.stp-line { width: 40px; height: 1px; background: var(--terra); flex-shrink: 0; }
.stp-tag span:last-child {
  font-size: 0.6rem; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--terra); font-weight: 600;
}
.stp-item h2 {
  font-size: clamp(2.5rem, 4vw, 3.8rem); color: var(--dark);
  margin-bottom: 1.2rem; line-height: 1;
}
.stp-item p { font-size: 1rem; color: var(--mid); line-height: 1.8; margin-bottom: 2rem; }
.stp-facts { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.stp-facts li {
  display: flex; align-items: center; gap: 0.8rem;
  font-size: 0.82rem; color: var(--muted);
}
.fact-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0;
}

/* Step dots nav */
.stp-dots {
  position: relative; z-index: 1; display: flex; gap: 0.8rem;
  margin-top: 3rem;
}
.stp-dot {
  width: 28px; height: 3px; border: none; cursor: pointer;
  background: rgba(59,42,38,0.15); transition: background 0.3s, width 0.3s;
}
.stp-dot.active { background: var(--terra); width: 48px; }

/* Progress bar */
.story-progress-bar {
  position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 400;
  background: rgba(198,156,109,0.15);
}
.story-progress-fill { height: 100%; background: var(--gold); width: 0%; transition: width 0.1s linear; }

/* ═══════════════════════════════════════════
   CONCEPT — Fas Deneyimi Immersive
═══════════════════════════════════════════ */
.concept {
  padding: 9rem 0 0; 
  background: linear-gradient(160deg, #4A2E1A 0%, #5C3520 35%, #4A2A18 65%, #3B2010 100%);
  position: relative; overflow: hidden;
}
.concept-container { position: relative; z-index: 2; }

/* Zellige animated background — kaldırıldı */
.concept-zellige { display: none; }

/* Floating orbs */
.concept-orbs { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: 0.18;
  animation: orbFloat 12s ease-in-out infinite;
}
.orb1 { width: 400px; height: 400px; background: var(--terra); top: -100px; left: -100px; animation-delay: 0s; }
.orb2 { width: 300px; height: 300px; background: var(--gold); top: 40%; right: -80px; animation-delay: 4s; }
.orb3 { width: 350px; height: 350px; background: #8B4A20; bottom: -80px; left: 30%; animation-delay: 8s; }
@keyframes orbFloat {
  0%,100% { transform: translate(0, 0); }
  33%     { transform: translate(30px, -20px); }
  66%     { transform: translate(-20px, 30px); }
}

/* Header */
.concept-header { text-align: center; margin-bottom: 4rem; }
.concept-header h2 { color: #fff; }
.concept-lead { color: rgba(255,255,255,0.5); max-width: 480px; margin: 0 auto; font-size: 1rem; }

/* ── Feature strip ── */
.concept-strip {
  display: grid; grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start; gap: 0;
  border: 1px solid rgba(198,156,109,0.15);
  margin-bottom: 2px;
}
.cs-item {
  padding: 2.5rem 2rem; text-align: center;
  transition: background 0.3s;
}
.cs-item:hover { background: rgba(198,156,109,0.06); }
.cs-divider {
  width: 1px; background: rgba(198,156,109,0.15);
  align-self: stretch;
}
.cs-icon-ring {
  width: 60px; height: 60px; margin: 0 auto 1.2rem;
  border: 1px solid rgba(198,156,109,0.25); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.3s, background 0.3s;
}
.cs-item:hover .cs-icon-ring { border-color: var(--gold); background: rgba(198,156,109,0.08); }
.cs-icon-ring svg { width: 40px; height: 40px; }
.cs-item h4 { color: var(--gold); font-size: 0.85rem; margin-bottom: 0.5rem; }
.cs-item p { color: rgba(255,255,255,0.45); font-size: 0.78rem; line-height: 1.7; }

/* ── Immersive grid ── */
.concept-immersive {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 2px; margin-bottom: 2px;
}

/* Main panel */
.ci-main { overflow: hidden; }
.ci-main-inner {
  position: relative; height: 100%; min-height: 560px; overflow: hidden;
}
.ci-main-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s ease;
  filter: sepia(20%) saturate(1.2) brightness(0.75);
}
.ci-main:hover .ci-main-img { transform: scale(1.04); }
.ci-main-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(59,42,38,0.7) 0%, rgba(59,42,38,0.3) 60%, transparent 100%);
  display: flex; flex-direction: column;
  justify-content: flex-end; padding: 3.5rem;
  gap: 1.5rem;
}
.ci-main-tag {
  display: flex; align-items: center; gap: 1rem;
}
.ci-tag-line { width: 30px; height: 1px; background: var(--gold); }
.ci-main-tag span:last-child {
  font-size: 0.6rem; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--gold); font-weight: 600;
}
.ci-quote {
  font-family: var(--serif); font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  color: #fff; font-style: italic; line-height: 1.3;
}
/* Corner ornaments */
.ci-corner {
  position: absolute; width: 28px; height: 28px; z-index: 2;
}
.ci-tl { top: 1.5rem; left: 1.5rem; border-top: 1.5px solid var(--gold); border-left: 1.5px solid var(--gold); }
.ci-br { bottom: 1.5rem; right: 1.5rem; border-bottom: 1.5px solid var(--gold); border-right: 1.5px solid var(--gold); }

/* Stacked panels */
.ci-stack { display: flex; flex-direction: column; gap: 2px; }
.ci-panel {
  flex: 1; position: relative; overflow: hidden;
  transition: transform 0.3s;
}
.ci-panel:hover { transform: translateX(-4px); }
.ci-panel-content { position: relative; z-index: 1; padding: 2.5rem 2.5rem; height: 100%; }
.ci-panel-num {
  font-family: var(--serif); font-size: 4rem; line-height: 1;
  color: rgba(198,156,109,0.1); display: block; margin-bottom: -0.5rem;
}
.ci-panel h3 { color: #fff; font-size: 1.3rem; margin-bottom: 0.6rem; }
.ci-panel p { color: rgba(255,255,255,0.5); font-size: 0.82rem; line-height: 1.7; }

.ci-panel-terra { background: linear-gradient(135deg, #5C1A0A 0%, #3B1208 100%); }
.ci-panel-dark  { background: linear-gradient(135deg, #1A0E04 0%, #2A1A0A 100%); }
.ci-panel-gold  { background: linear-gradient(135deg, #2A1A0A 0%, #3B2A1A 100%); }

/* Terracotta panel pattern */
.ci-panel-pattern {
  position: absolute; inset: 0; pointer-events: none;
  background-image: var(--tile-pattern); background-size: 40px 40px; opacity: 0.8;
}

/* Color dots */
.ci-color-dots { display: flex; gap: 0.6rem; margin-top: 1.2rem; }
.ci-color-dots span {
  width: 20px; height: 20px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  transition: transform 0.2s;
}
.ci-color-dots span:hover { transform: scale(1.3); }

/* Ritual steps */
.ci-ritual-steps {
  display: flex; align-items: center; gap: 0.6rem;
  margin-top: 1.2rem; flex-wrap: wrap;
}
.ci-ritual-steps span {
  font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.ci-arrow { color: var(--gold) !important; font-size: 0.8rem !important; }

/* Sense grid */
.ci-sense-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.5rem; margin-top: 1.2rem; }
.ci-sense {
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  padding: 0.8rem 0.3rem;
  border: 1px solid rgba(198,156,109,0.15);
  transition: background 0.3s;
}
.ci-sense:hover { background: rgba(198,156,109,0.1); }
.ci-sense svg { width: 22px; height: 22px; color: var(--gold); }
.ci-sense small { font-size: 0.55rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.4); }

/* ── Marquee ── */
.concept-marquee {
  overflow: hidden; border-top: 1px solid rgba(198,156,109,0.15);
  padding: 1.2rem 0; background: rgba(0,0,0,0.2);
}
.marquee-track {
  display: flex; gap: 2.5rem; align-items: center;
  animation: marqueeScroll 120s linear infinite;
  white-space: nowrap; width: max-content;
}
.marquee-track span {
  font-family: var(--serif); font-size: 1rem; color: rgba(198,156,109,0.5);
  font-style: italic; letter-spacing: 0.05em;
}
.mq-dot { color: var(--terra) !important; font-size: 0.5rem !important; font-style: normal !important; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════
   MENU — Luxury Showcase
═══════════════════════════════════════════ */
.menu { padding: 9rem 0; background: var(--cream); position: relative; overflow: hidden; }
.menu::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: var(--tile-pattern); background-size: 60px 60px;
}
.menu .container { position: relative; z-index: 1; }
.menu-header { margin-bottom: 3rem; }

.menu-tabs {
  display: flex; border-bottom: 1px solid var(--gold-border);
  margin-bottom: 3rem; flex-wrap: wrap; justify-content: center;
}
.tab-btn {
  background: none; border: none; color: var(--muted);
  font-family: var(--sans); font-size: 0.65rem; letter-spacing: 0.15em;
  text-transform: uppercase; padding: 0.9rem 1.6rem; cursor: pointer;
  border-bottom: 2px solid transparent; margin-bottom: -1px;
  transition: color 0.3s, border-color 0.3s;
  display: flex; align-items: center; gap: 0.5rem;
}
.tab-icon { width: 16px; height: 16px; flex-shrink: 0; }
.tab-btn.active, .tab-btn:hover { color: var(--terra); border-bottom-color: var(--terra); }

/* Showcase grid */
.menu-showcase {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5px;
  margin-bottom: 5rem;
}
.showcase-item {
  background: var(--white); position: relative; overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94), box-shadow 0.5s;
  border: 1px solid rgba(198,156,109,0.1);
}
.showcase-item:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(59,42,38,0.18); }

.showcase-item.featured { background: var(--dark); }
.showcase-item.featured .showcase-info h3 { color: #fff; }
.showcase-item.featured .showcase-info p { color: rgba(255,255,255,0.5); }
.showcase-item.featured .showcase-origin { color: var(--gold); }

.showcase-img-wrap {
  position: relative; height: 220px; overflow: hidden;
}
.showcase-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
  filter: sepia(10%) saturate(1.1);
}
.showcase-item:hover .showcase-img-wrap img { transform: scale(1.08); }

/* Smoke on featured */
.showcase-smoke { position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%); pointer-events: none; }
.sm {
  position: absolute; width: 2px; border-radius: 50%;
  background: rgba(255,255,255,0.15);
  animation: smRise 3s ease-in-out infinite;
}
.sm1 { height: 40px; left: -10px; animation-delay: 0s; }
.sm2 { height: 55px; left: 0; animation-delay: 1s; }
.sm3 { height: 35px; left: 10px; animation-delay: 2s; }
@keyframes smRise {
  0% { opacity: 0; transform: translateY(0) scaleX(1); }
  40% { opacity: 0.8; }
  100% { opacity: 0; transform: translateY(-60px) scaleX(3); }
}

.showcase-badge {
  position: absolute; top: 1rem; left: 1rem; z-index: 3;
  background: var(--gold); color: var(--dark);
  padding: 0.3rem 0.8rem; font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
}
.showcase-info { padding: 1.6rem 1.8rem 1.8rem; }
.showcase-origin {
  font-size: 0.58rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--terra); display: block; margin-bottom: 0.4rem; font-weight: 600;
}
.showcase-info h3 { font-size: 1.2rem; color: var(--dark); margin-bottom: 0.5rem; }
.showcase-info p { font-size: 0.82rem; color: var(--muted); margin-bottom: 1.2rem; }
.showcase-footer { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.showcase-price { font-family: var(--serif); font-size: 1.4rem; color: var(--gold); }

/* Paket items */
.paket-item .showcase-img-wrap { height: 160px; }

/* ── Coffee Quiz ── */
.quiz-wrap {
  background: var(--dark); padding: 4rem; max-width: 700px; margin: 0 auto;
  border: 1px solid var(--gold-border); position: relative;
}
.quiz-wrap::before {
  content: ''; position: absolute; top: 12px; left: 12px; right: 12px; bottom: 12px;
  border: 1px solid rgba(198,156,109,0.12); pointer-events: none;
}
.quiz-header { text-align: center; margin-bottom: 2.5rem; }
.quiz-header h3 { color: #fff; margin-bottom: 0.5rem; }
.quiz-header p { color: rgba(255,255,255,0.5); }
.quiz-step { display: none; text-align: center; }
.quiz-step.active { display: block; }
.quiz-q { color: rgba(255,255,255,0.85); font-size: 1rem; margin-bottom: 1.8rem; }
.quiz-options { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.quiz-opt {
  padding: 0.75rem 1.8rem; border: 1px solid var(--gold-border); background: none;
  color: rgba(255,255,255,0.7); font-family: var(--sans); font-size: 0.75rem;
  letter-spacing: 0.1em; cursor: pointer; transition: all 0.3s;
}
.quiz-opt:hover, .quiz-opt.selected { background: var(--gold); border-color: var(--gold); color: var(--dark); }
.quiz-result { text-align: center; padding: 1rem 0; }
.quiz-result-label { font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 0.8rem; }
.quiz-result h4 { font-family: var(--serif); font-size: 1.8rem; color: #fff; margin-bottom: 0.6rem; }
.quiz-result p { color: rgba(255,255,255,0.6); margin-bottom: 1.5rem; }
.quiz-restart { cursor: pointer; }

/* ═══════════════════════════════════════════
   FRANCHISE
═══════════════════════════════════════════ */
.franchise {
  padding: 9rem 0; background: var(--dark); position: relative; overflow: hidden;
}
.franchise-pattern {
  position: absolute; inset: 0; pointer-events: none;
  background-image: var(--tile-pattern); background-size: 60px 60px;
  opacity: 0.6;
}
.franchise .container { position: relative; z-index: 1; }

.franchise-hero { text-align: center; margin-bottom: 5rem; }
.franchise-hero h2 { color: #fff; font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: 1rem; }
.franchise-sub { color: rgba(255,255,255,0.6); max-width: 560px; margin: 0 auto 2.5rem; font-size: 1rem; }

/* Why grid */
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5px;
  margin-bottom: 5rem;
}
.why-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(198,156,109,0.12);
  padding: 2.5rem 2rem; transition: background 0.3s, transform 0.3s;
}
.why-card:hover { background: rgba(198,156,109,0.08); transform: translateY(-4px); }
.why-icon {
  width: 44px; height: 44px; margin-bottom: 1.2rem;
  color: var(--gold);
}
.why-icon svg { width: 100%; height: 100%; }
.why-card h4 { color: var(--gold); font-size: 0.9rem; margin-bottom: 0.5rem; }
.why-card p { color: rgba(255,255,255,0.5); font-size: 0.82rem; }

/* ROI Calculator */
.roi-calc {
  background: rgba(255,255,255,0.04); border: 1px solid var(--gold-border);
  padding: 4rem; margin-bottom: 5rem; position: relative;
}
.roi-calc::before {
  content: ''; position: absolute; top: 10px; left: 10px; right: 10px; bottom: 10px;
  border: 1px solid rgba(198,156,109,0.1); pointer-events: none;
}
.roi-header { text-align: center; margin-bottom: 3rem; }
.roi-header h3 { color: #fff; margin-bottom: 0.5rem; }
.roi-header p { color: rgba(255,255,255,0.5); }
.roi-body { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.roi-inputs { display: flex; flex-direction: column; gap: 2rem; }
.roi-field label { display: block; font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 0.8rem; }
.roi-field input[type="range"] {
  width: 100%; -webkit-appearance: none; appearance: none; height: 2px;
  background: rgba(198,156,109,0.25); outline: none; cursor: pointer;
}
.roi-field input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; width: 16px; height: 16px;
  border-radius: 50%; background: var(--gold); cursor: pointer;
}
.roi-val { display: block; font-family: var(--serif); font-size: 1.4rem; color: var(--gold); margin-top: 0.5rem; }
.roi-results { display: flex; flex-direction: column; gap: 1rem; }
.roi-result-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(198,156,109,0.15);
  padding: 1.5rem 2rem; display: flex; flex-direction: column; gap: 0.4rem;
}
.roi-result-card.highlight { border-color: var(--gold); background: rgba(198,156,109,0.08); }
.roi-result-label { font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(255,255,255,0.45); }
.roi-result-val { font-family: var(--serif); font-size: 1.8rem; color: var(--gold); }
.roi-result-card.highlight .roi-result-val { font-size: 2.2rem; }
.roi-disclaimer { text-align: center; font-size: 0.72rem; color: rgba(255,255,255,0.3); margin-top: 2rem; }

/* Timeline — Horizontal */
.franchise-timeline-wrap { margin-bottom: 5rem; }
.franchise-timeline-wrap h3 { color: #fff; margin-bottom: 0.6rem; }
.ft-subtitle { text-align: center; color: rgba(255,255,255,0.4); font-size: 0.85rem; margin-bottom: 4rem; }

.ft-horizontal {
  position: relative;
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 0;
}

/* Connecting line behind nodes */
.ft-hline {
  position: absolute; top: 28px; left: calc(100% / 12);
  right: calc(100% / 12); height: 1px;
  background: rgba(198,156,109,0.15); z-index: 0;
}
.ft-hline-fill {
  height: 100%; background: var(--gold);
  width: 0%; transition: width 1.2s ease;
}

.ft-h-step {
  display: flex; flex-direction: column; align-items: center;
  position: relative; z-index: 1; padding: 0 0.5rem;
}

/* Node */
.ft-h-node { margin-bottom: 1.5rem; }
.ft-h-ring {
  width: 56px; height: 56px; border-radius: 50%;
  border: 1px solid rgba(198,156,109,0.3);
  background: rgba(255,255,255,0.04);
  display: flex; align-items: center; justify-content: center;
  color: rgba(198,156,109,0.6);
  transition: border-color 0.4s, background 0.4s, color 0.4s, box-shadow 0.4s;
}
.ft-h-ring svg { width: 22px; height: 22px; }
.ft-h-ring.gold {
  border-color: var(--gold); background: rgba(198,156,109,0.12);
  color: var(--gold); box-shadow: 0 0 24px rgba(198,156,109,0.25);
}
.ft-h-step:hover .ft-h-ring {
  border-color: var(--gold); background: rgba(198,156,109,0.1);
  color: var(--gold); box-shadow: 0 0 20px rgba(198,156,109,0.2);
}

/* Card */
.ft-h-card {
  text-align: center; padding: 1.5rem 0.8rem;
  border: 1px solid rgba(198,156,109,0.1);
  background: rgba(255,255,255,0.03);
  width: 100%;
  transition: background 0.3s, border-color 0.3s;
}
.ft-h-step:hover .ft-h-card {
  background: rgba(198,156,109,0.06); border-color: rgba(198,156,109,0.25);
}
.ft-h-card-gold {
  border-color: rgba(198,156,109,0.35) !important;
  background: rgba(198,156,109,0.08) !important;
}
.ft-h-num {
  font-family: var(--serif); font-size: 0.65rem; color: rgba(198,156,109,0.4);
  letter-spacing: 0.2em; display: block; margin-bottom: 0.5rem;
}
.ft-h-card h4 { color: var(--gold); font-size: 0.82rem; margin-bottom: 0.4rem; }
.ft-h-card p { color: rgba(255,255,255,0.4); font-size: 0.72rem; line-height: 1.6; }

.franchise-final-cta { text-align: center; padding: 4rem 0 0; }
.franchise-final-cta h3 { color: #fff; margin-bottom: 0.8rem; }
.franchise-final-cta p { color: rgba(255,255,255,0.5); margin-bottom: 2rem; }

/* ═══════════════════════════════════════════
   BRANCHES
═══════════════════════════════════════════ */
.branches { padding: 9rem 0; background: var(--dark); position: relative; overflow: hidden; }
.branches-pattern {
  position: absolute; inset: 0; pointer-events: none;
  background-image: var(--tile-pattern); background-size: 60px 60px; opacity: 0.5;
}
.branches .container { position: relative; z-index: 1; }
.branches-header { margin-bottom: 3rem; }
.branches-header h2 { color: #fff; }
.branches .center-p { color: rgba(255,255,255,0.45); }

/* Stats */
.branches-stats {
  display: flex; align-items: center; justify-content: center;
  gap: 0; border: 1px solid rgba(198,156,109,0.2);
  margin-bottom: 3.5rem; overflow: hidden;
}
.bstat {
  flex: 1; text-align: center; padding: 2rem 1rem;
  transition: background 0.3s;
}
.bstat:hover { background: rgba(198,156,109,0.06); }
.bstat-num {
  display: block; font-family: var(--serif); font-size: 2.8rem;
  color: var(--gold); line-height: 1; margin-bottom: 0.4rem;
}
.bstat-label { font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(255,255,255,0.4); }
.bstat-div { width: 1px; background: rgba(198,156,109,0.2); align-self: stretch; }

/* Filter bar */
.branches-filter {
  display: flex; gap: 1.5rem; align-items: center;
  margin-bottom: 2.5rem; flex-wrap: wrap;
}
.bf-search {
  display: flex; align-items: center; gap: 0.7rem;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(198,156,109,0.2);
  padding: 0.55rem 1rem; flex: 0 0 260px;
  transition: border-color 0.3s;
}
.bf-search:focus-within { border-color: var(--gold); }
.bf-search svg { width: 16px; height: 16px; color: rgba(198,156,109,0.5); flex-shrink: 0; }
.bf-search input {
  background: none; border: none; outline: none;
  color: rgba(255,255,255,0.8); font-family: var(--sans); font-size: 0.82rem;
  width: 100%;
}
.bf-search input::placeholder { color: rgba(255,255,255,0.25); }
.bf-cities { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.bf-city {
  background: none; border: 1px solid rgba(198,156,109,0.2);
  color: rgba(255,255,255,0.45); font-family: var(--sans);
  font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase;
  padding: 0.45rem 1rem; cursor: pointer;
  transition: all 0.25s;
}
.bf-city:hover { border-color: var(--gold); color: var(--gold); }
.bf-city.active { background: var(--gold); border-color: var(--gold); color: var(--dark); }

/* Branch grid */
.branches-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5px;
  margin-bottom: 5rem;
}
.branch-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(198,156,109,0.1);
  padding: 1.6rem 1.5rem; position: relative; overflow: hidden;
  transition: background 0.3s, transform 0.3s, border-color 0.3s;
  cursor: default;
}
.branch-card:hover {
  background: rgba(198,156,109,0.08); border-color: rgba(198,156,109,0.3);
  transform: translateY(-3px);
}
.branch-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}
.branch-card:hover::before { transform: scaleX(1); }
.branch-city {
  font-size: 0.55rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--terra); font-weight: 600; display: block; margin-bottom: 0.5rem;
}
.branch-name {
  font-family: var(--serif); font-size: 1.05rem; color: #fff;
  margin-bottom: 0.6rem; line-height: 1.2;
}
.branch-addr {
  font-size: 0.75rem; color: rgba(255,255,255,0.35); line-height: 1.6;
}
.branch-card.no-result {
  grid-column: 1 / -1; text-align: center; padding: 4rem;
  background: none; border: 1px dashed rgba(198,156,109,0.15);
}
.branch-card.no-result p { color: rgba(255,255,255,0.3); font-size: 0.9rem; }

/* Yakında açılacak şube */
.branch-card.branch-soon {
  border-color: rgba(198,156,109,0.25);
  background: rgba(198,156,109,0.04);
  opacity: 0.75;
}
.branch-soon-badge {
  display: inline-block; font-size: 0.5rem; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--gold);
  border: 1px solid rgba(198,156,109,0.4); padding: 2px 8px;
  margin-bottom: 0.6rem;
}

/* Coming soon strip */
.branches-soon {
  border: 1px solid rgba(198,156,109,0.15); padding: 3rem;
  background: rgba(255,255,255,0.02);
}
.bs-header { margin-bottom: 1.8rem; }
.bs-header h3 { color: #fff; font-size: 1.3rem; }
.bs-list {
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.8rem;
}
.bs-item {
  font-size: 0.78rem; color: rgba(255,255,255,0.45); letter-spacing: 0.05em;
}
.bs-dot { color: rgba(198,156,109,0.3); font-size: 0.5rem; }

/* ═══════════════════════════════════════════
   EXPERIENCE
═══════════════════════════════════════════ */
.experience { background: var(--dark); }
.exp-quote {
  text-align: center; padding: 6rem 2rem;
  background: linear-gradient(135deg, var(--dark) 0%, #5C3D2E 100%);
}
.exp-quote blockquote {
  font-family: var(--serif); font-size: clamp(1.5rem, 3.5vw, 2.8rem);
  color: #fff; line-height: 1.4; font-style: italic;
}
.exp-quote blockquote em { color: var(--gold); }
/* Yeni metin tipi: exp-statement */
.exp-statement {
  font-family: var(--sans); font-size: clamp(1.1rem, 2.5vw, 1.8rem);
  color: var(--gold); line-height: 1.5; font-weight: 300;
  letter-spacing: 0.08em; text-transform: uppercase;
  max-width: 700px; margin: 0 auto;
}
.exp-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; height: 500px; gap: 1.5px; }
.exp-item { position: relative; overflow: hidden; }
.exp-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.exp-logo-img { object-fit: contain !important; background: var(--dark); padding: 3rem; }
.exp-item:hover img { transform: scale(1.06); }
.exp-overlay {
  position: absolute; inset: 0; background: rgba(59,42,38,0.5);
  display: flex; align-items: flex-end; padding: 2rem;
  opacity: 0; transition: opacity 0.4s;
}
.exp-item:hover .exp-overlay { opacity: 1; }
.exp-overlay span { font-family: var(--serif); font-size: 1.4rem; color: var(--gold); }

/* ═══════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════ */
.contact {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}

/* ── Sol panel ── */
.contact-left {
  position: relative; overflow: hidden;
  display: flex; align-items: center;
}
.contact-left-bg {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, #1A0800 0%, #3B2A26 50%, #5C2A10 100%);
}
.contact-left-bg::before {
  content: ''; position: absolute; inset: 0;
  background-image: var(--tile-pattern); background-size: 60px 60px;
  opacity: 0.6;
}
.contact-left-bg::after {
  content: ''; position: absolute;
  bottom: -120px; right: -120px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(198,156,109,0.12) 0%, transparent 70%);
}
.contact-left-content {
  position: relative; z-index: 1;
  padding: 6rem 4rem;
  display: flex; flex-direction: column; gap: 2.5rem;
}
.contact-left-content h2 { color: #fff; font-size: clamp(2.5rem, 4vw, 3.8rem); line-height: 1; }
.contact-left-content > p { color: rgba(255,255,255,0.5); font-size: 0.95rem; max-width: 320px; }

/* Info list */
.contact-info-list { display: flex; flex-direction: column; gap: 0; }
.ci-row {
  display: flex; align-items: center; gap: 1.2rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(198,156,109,0.12);
  color: inherit; text-decoration: none;
  transition: padding-left 0.3s;
}
.ci-row:first-child { border-top: 1px solid rgba(198,156,109,0.12); }
a.ci-row:hover { padding-left: 0.5rem; }
.ci-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  color: var(--gold); opacity: 0.8;
}
.ci-icon svg { width: 100%; height: 100%; }
.ci-label {
  display: block; font-size: 0.55rem; letter-spacing: 0.28em;
  text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 0.2rem;
}
.ci-value {
  display: block; font-size: 0.88rem; color: rgba(255,255,255,0.75);
}
a.ci-row:hover .ci-value { color: var(--gold); }

/* Quote */
.contact-quote {
  font-family: var(--serif); font-style: italic;
  font-size: 1.2rem; color: rgba(198,156,109,0.5);
  line-height: 1.5; border-left: 2px solid rgba(198,156,109,0.25);
  padding-left: 1.2rem; margin-top: auto;
}

/* ── Sağ panel ── */
.contact-right {
  background: var(--cream); display: flex; align-items: center;
  position: relative; overflow: hidden;
}
.contact-right::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: var(--tile-pattern); background-size: 60px 60px; opacity: 0.4;
}
.contact-form-inner {
  position: relative; z-index: 1;
  padding: 6rem 4rem; width: 100%;
}
.contact-form-top { margin-bottom: 3rem; }
.contact-form-top h3 { color: var(--dark); font-size: clamp(2rem, 3vw, 2.8rem); line-height: 1.1; }

/* Form fields */
.contact-form { display: flex; flex-direction: column; gap: 0; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.cf-field { display: flex; flex-direction: column; border: 1px solid var(--gold-border); margin: -1px 0 0 -1px; }
.cf-field label {
  font-size: 0.55rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--muted); padding: 0.9rem 1.2rem 0; font-weight: 500;
}
.cf-field input,
.cf-field select,
.cf-field textarea {
  background: transparent; border: none; outline: none;
  color: var(--dark); font-family: var(--sans); font-size: 0.9rem;
  padding: 0.3rem 1.2rem 0.9rem;
  -webkit-appearance: none; appearance: none; width: 100%;
  transition: background 0.3s;
}
.cf-field:focus-within {
  background: var(--white);
  border-color: var(--terra);
  z-index: 1; position: relative;
}
.cf-field input::placeholder,
.cf-field textarea::placeholder { color: rgba(92,61,46,0.3); }
.cf-field select option { background: var(--white); }
.cf-field textarea { resize: none; }

/* Submit */
.cf-submit {
  display: flex; align-items: center; justify-content: center; gap: 0.8rem;
  padding: 1.2rem; background: var(--dark); color: #fff;
  border: none; font-family: var(--sans); font-size: 0.7rem;
  font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  cursor: pointer; transition: background 0.3s;
  margin-top: -1px; border: 1px solid var(--dark);
}
.cf-submit svg { width: 18px; height: 18px; transition: transform 0.3s; }
.cf-submit:hover { background: var(--terra); border-color: var(--terra); }
.cf-submit:hover svg { transform: translateX(4px); }

/* ── Franchise Form ── */
.franchise-form-wrap {
  margin-top: 5rem; border: 1px solid var(--gold-border);
  background: rgba(255,255,255,0.04); position: relative; overflow: hidden;
}
.franchise-form-wrap::before {
  content: ''; position: absolute; top: 12px; left: 12px; right: 12px; bottom: 12px;
  border: 1px solid rgba(198,156,109,0.1); pointer-events: none; z-index: 0;
}
.ff-header {
  padding: 3.5rem 4rem 2rem; position: relative; z-index: 1;
  border-bottom: 1px solid rgba(198,156,109,0.15);
}
.ff-header h3 { color: #fff; margin-bottom: 0.5rem; }
.ff-header p { color: rgba(255,255,255,0.45); font-size: 0.88rem; }
.ff-form {
  padding: 3rem 4rem 3.5rem; position: relative; z-index: 1;
  display: flex; flex-direction: column; gap: 1.2rem;
}
.ff-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.ff-field { display: flex; flex-direction: column; gap: 0.5rem; }
.ff-field label {
  font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); font-weight: 500;
}
.ff-req { color: var(--terra); }
.ff-field input,
.ff-field select,
.ff-field textarea {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(198,156,109,0.2);
  color: rgba(255,255,255,0.85); font-family: var(--sans); font-size: 0.88rem;
  padding: 0.95rem 1.2rem; outline: none;
  transition: border-color 0.3s, background 0.3s;
  -webkit-appearance: none; appearance: none; width: 100%;
}
.ff-field input::placeholder,
.ff-field textarea::placeholder { color: rgba(255,255,255,0.25); }
.ff-field select option { background: var(--dark); color: rgba(255,255,255,0.85); }
.ff-field input:focus,
.ff-field select:focus,
.ff-field textarea:focus {
  border-color: var(--gold); background: rgba(198,156,109,0.06);
}
.ff-field textarea { resize: vertical; }

/* Catalog link */
.ff-catalog { margin: 0.5rem 0; }
.ff-catalog-link {
  display: inline-flex; align-items: center; gap: 0.7rem;
  font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); border-bottom: 1px solid rgba(198,156,109,0.35);
  padding-bottom: 2px; transition: color 0.3s, border-color 0.3s;
}
.ff-catalog-link svg { width: 16px; height: 16px; flex-shrink: 0; }
.ff-catalog-link:hover { color: var(--gold-light); border-color: var(--gold); }

/* Submit */
.ff-submit {
  align-self: flex-start; padding: 1rem 3rem;
  background: var(--gold); color: var(--dark);
  border: none; font-family: var(--sans); font-size: 0.72rem;
  font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  cursor: pointer; transition: background 0.3s, box-shadow 0.3s;
}
.ff-submit:hover { background: var(--gold-light); box-shadow: 0 0 28px rgba(198,156,109,0.4); }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.footer { background: var(--dark); padding: 5rem 0 2.5rem; position: relative; overflow: hidden; }
.footer-top-line { height: 3px; background: linear-gradient(90deg, var(--terra), var(--gold), var(--terra)); }
.footer-pattern {
  position: absolute; inset: 0; pointer-events: none;
  background-image: var(--tile-pattern); background-size: 60px 60px; opacity: 0.4;
}
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 1.8rem; text-align: center; position: relative; z-index: 1; }
.footer-logo { height: 52px; width: auto; }
.footer-nav { display: flex; gap: 2.2rem; flex-wrap: wrap; justify-content: center; }
.footer-nav a { font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.35); transition: color 0.3s; }
.footer-nav a:hover { color: var(--gold); }
.footer-divider { width: 60px; height: 1px; background: var(--gold-border); }
.footer-address { font-size: 0.72rem; color: rgba(255,255,255,0.3); }
.footer-tagline { font-family: var(--serif); font-style: italic; color: var(--gold); font-size: 1.1rem; }
.footer-copy { font-size: 0.65rem; color: rgba(255,255,255,0.2); }

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .menu-showcase { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .franchise-timeline { grid-template-columns: repeat(2, 1fr); }
  .ft-horizontal { grid-template-columns: repeat(3, 1fr); gap: 1.5px; }
  .ft-hline { display: none; }
  .roi-body { grid-template-columns: 1fr; gap: 2.5rem; }
  .concept-strip { grid-template-columns: 1fr auto 1fr; }
  .concept-strip .cs-item:nth-child(6),
  .concept-strip .cs-divider:nth-child(5),
  .concept-strip .cs-item:nth-child(8),
  .concept-strip .cs-divider:nth-child(7) { display: none; }
}
@media (max-width: 900px) {
  .nav { padding: 1rem 1.5rem; gap: 1rem; }
  .nav.scrolled { padding: 0.6rem 1.5rem; }
  .nav-links { display: none; }          /* hidden — drawer handles mobile nav */
  .nav-franchise-btn { display: none; }  /* hidden on mobile */
  .nav-toggle { display: flex; }
  .nav-logo img { filter: none !important; height: 44px !important; }
  /* Story: mobilde görsel gizle, scroll animasyonu korunur */
  .story-sticky { grid-template-columns: 1fr; grid-template-rows: 1fr; }
  .story-visual { display: none; }
  .story-text-panel { padding: 2.5rem 1.5rem; }
  .sv-illustration { width: 200px; height: 200px; }
  /* Konsept strip: 3 item alt alta */
  .concept-strip { grid-template-columns: 1fr; }
  .concept-strip .cs-divider { display: none; }
  .concept-immersive { grid-template-columns: 1fr; }
  .ci-main-inner { min-height: 380px; }
  .ci-stack { flex-direction: row; flex-wrap: wrap; }
  .ci-panel { min-width: calc(50% - 1px); }
  .menu-showcase { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .franchise-timeline { grid-template-columns: 1fr; }
  .branches-grid { grid-template-columns: repeat(2, 1fr); }
  .branches-stats { flex-wrap: wrap; }
  .bstat { flex: 1 1 40%; }
  .bstat-div { display: none; }
  .exp-grid { grid-template-columns: 1fr; height: auto; }
  .exp-item { height: 280px; }
  .contact { grid-template-columns: 1fr; }
  .contact-left-content { padding: 4rem 2rem; }
  .contact-form-inner { padding: 4rem 2rem; }
  .cf-row { grid-template-columns: 1fr; }
  .ff-row { grid-template-columns: 1fr; }
  .ff-form { padding: 2rem 1.5rem; }
  .ff-header { padding: 2rem 1.5rem 1.5rem; }
  .roi-calc { padding: 2.5rem 1.5rem; }
  .quiz-wrap { padding: 2.5rem 1.5rem; }
  /* bf-search mobilde normal input boyutu */
  .bf-search { flex: 0 0 auto; width: 100%; max-width: 320px; padding: 0.45rem 0.8rem; }
}
@media (max-width: 600px) {
  .concept, .menu, .franchise, .branches { padding: 5rem 0; }
  .hero-cta { flex-direction: column; align-items: center; }
  .why-grid { grid-template-columns: 1fr; }
  .menu-tabs { justify-content: center; }
  .tab-btn { padding: 0.7rem 0.8rem; font-size: 0.58rem; }
  .contact-cards { grid-template-columns: 1fr; }
  /* Story: görsel gizle, scroll animasyonu korunur */
  .story-sticky { grid-template-columns: 1fr; grid-template-rows: 1fr; }
  .story-visual { display: none; }
  .concept-strip { grid-template-columns: 1fr; }
  .ci-stack { flex-direction: column; }
  .ci-panel { min-width: 100%; }
  .ci-sense-grid { grid-template-columns: repeat(2, 1fr); }
  .branches-grid { grid-template-columns: 1fr; }
  .branches-filter { flex-direction: column; align-items: flex-start; }
  .bf-search { width: 100%; max-width: 100%; flex: none; padding: 0.45rem 0.8rem; }
  .float-cta { bottom: 1rem; right: 1rem; padding: 0.7rem 1.2rem; font-size: 0.58rem; }
}

/* ═══════════════════════════════════════════
   DETAIL PAGES — Hero, Breadcrumb, Content
═══════════════════════════════════════════ */

/* ── Page Hero (detail sayfaları için) ── */
.page-hero {
  position: relative;
  padding: 10rem 0 5rem;
  background: linear-gradient(160deg, #1A0800 0%, #3B2A26 60%, #5C2A10 100%);
  overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background-image: var(--tile-pattern); background-size: 60px 60px;
  opacity: 0.5;
}
.page-hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 120px;
  background: linear-gradient(to bottom, transparent, var(--cream));
  pointer-events: none;
}
.page-hero-inner {
  position: relative; z-index: 2;
}
.page-hero .section-tag {
  margin-bottom: 1.2rem;
}
.page-hero h1 {
  font-size: clamp(2.2rem, 6vw, 4rem);
  color: #fff; margin: 0 0 1rem;
  line-height: 1.1;
}
.page-hero-sub {
  color: rgba(255,255,255,0.5);
  max-width: 560px; margin: 0 auto;
  font-size: 0.95rem; line-height: 1.8;
}

/* ── Breadcrumb ── */
.breadcrumb {
  display: flex; align-items: center; gap: 0.6rem;
  justify-content: center;
  margin-bottom: 2rem;
  position: relative; z-index: 2;
}
.breadcrumb a {
  font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  transition: color 0.3s;
}
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb-sep {
  font-size: 0.5rem; color: rgba(198,156,109,0.35);
}
.breadcrumb-current {
  font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold);
}

/* ── Detail body ── */
.detail-body {
  padding: 5rem 0 7rem;
  background: var(--cream);
}

/* Franchise detail-body cream override'ı iptal et */
.franchise.detail-body {
  background: var(--dark);
  padding: 4rem 0 7rem;
}

/* ── Post detail ── */
.post-detail {
  max-width: 800px; margin: 0 auto;
}
.post-detail-img {
  width: 100%; border-radius: 2px;
  margin-bottom: 2.5rem;
  filter: sepia(10%) saturate(1.1);
}
.post-detail h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--dark); margin-bottom: 1rem;
}
.post-meta {
  font-size: 0.62rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 2.5rem; display: block;
}
.post-content {
  color: var(--mid); line-height: 1.9; font-size: 0.95rem;
}
.post-content p { margin-bottom: 1.2rem; }
.post-content h2, .post-content h3 { color: var(--dark); margin: 2rem 0 0.8rem; }

/* ── Form messages ── */
.form-msg {
  padding: 1rem 1.4rem;
  margin-bottom: 1.5rem;
  font-size: 0.85rem; line-height: 1.6;
}
.form-msg-ok {
  background: rgba(198,156,109,0.12);
  border: 1px solid rgba(198,156,109,0.4);
  color: #8B6B55;
}
.form-msg-err {
  background: rgba(164,74,63,0.1);
  border: 1px solid rgba(164,74,63,0.35);
  color: var(--terra);
}

/* ── 404 Page ── */
.page-404 {
  min-height: 80vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 6rem 2rem;
  background: var(--cream); position: relative;
}
.page-404-zellige {
  position: absolute; inset: 0; pointer-events: none;
  background-image: var(--tile-pattern); background-size: 40px 40px;
  opacity: 0.4;
}
.page-404-inner { max-width: 520px; position: relative; z-index: 1; }
.page-404-num {
  font-family: var(--serif);
  font-size: clamp(6rem, 20vw, 12rem);
  line-height: 1; color: rgba(198,156,109,0.2);
  letter-spacing: -0.04em; margin-bottom: 0;
}
.page-404-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--dark); margin: 0.5rem 0 1rem;
}
.page-404-sub {
  color: var(--muted); margin-bottom: 2.5rem; line-height: 1.7;
  font-size: 0.9rem;
}
.page-404-links {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
}
.btn-404-home {
  display: inline-block; padding: 0.85rem 2rem;
  background: var(--dark); color: #fff;
  font-family: var(--sans); font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  transition: background 0.3s;
}
.btn-404-home:hover { background: var(--terra); }
.btn-404-back {
  display: inline-block; padding: 0.85rem 2rem;
  border: 1px solid var(--gold-border); color: var(--muted);
  font-family: var(--sans); font-size: 0.7rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  transition: border-color 0.3s, color 0.3s;
}
.btn-404-back:hover { border-color: var(--terra); color: var(--terra); }

/* ── Branches section on detail page ── */
.branches.detail-body {
  background: var(--dark);
  padding: 4rem 0 7rem;
}

/* ── Franchise section on detail page (padding override yukarıda) ── */
.franchise-timeline-wrap.detail-mt {
  margin-top: 4rem;
}

@media (max-width: 900px) {
  .page-hero { padding: 8rem 0 4rem; }
  .page-hero h1 { font-size: clamp(1.8rem, 5vw, 3rem); }
  .ft-horizontal { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .page-hero { padding: 7rem 0 3rem; }
  .breadcrumb { flex-wrap: wrap; }
  .ft-horizontal { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════
   MENU PAGE — /menu
═══════════════════════════════════════════ */
.menu-page-body {
  background: var(--dark);
  padding: 3rem 0 7rem;
}

/* Tab bar */
.menu-page-tabs {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(198,156,109,0.15);
}
.mpt-btn {
  background: none;
  border: 1px solid rgba(198,156,109,0.2);
  color: rgba(255,255,255,0.45);
  font-family: var(--sans); font-size: 0.6rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  padding: 0.5rem 1.1rem; cursor: pointer;
  transition: all 0.25s;
}
.mpt-btn:hover { border-color: var(--gold); color: var(--gold); }
.mpt-btn.active { background: var(--gold); border-color: var(--gold); color: var(--dark); }

/* Static sections */
.menu-page-sections { display: flex; flex-direction: column; gap: 3rem; }
.mps-section { transition: opacity 0.3s; }
.mps-section.hidden { display: none; }
.mps-title {
  font-family: var(--serif); font-size: 1.1rem;
  color: var(--gold); margin-bottom: 1.2rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(198,156,109,0.2);
  letter-spacing: 0.05em;
}
.mps-list {
  list-style: none;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.4rem 1.5rem;
}
.mps-list li {
  font-size: 0.82rem; color: rgba(255,255,255,0.6);
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(198,156,109,0.06);
  transition: color 0.2s;
}
.mps-list li:hover { color: var(--gold); }

/* DB grid */
.menu-page-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5px;
}
.mpg-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(198,156,109,0.1);
  transition: background 0.3s, transform 0.3s;
}
.mpg-item:hover { background: rgba(198,156,109,0.08); transform: translateY(-3px); }
.mpg-item.hidden { display: none; }
.mpg-img { height: 160px; overflow: hidden; }
.mpg-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.mpg-item:hover .mpg-img img { transform: scale(1.06); }
.mpg-info { padding: 1.2rem 1.2rem 1.4rem; }
.mpg-info h4 { color: rgba(255,255,255,0.85); font-size: 0.88rem; margin-bottom: 0.3rem; }
.mpg-info p { color: rgba(255,255,255,0.4); font-size: 0.75rem; line-height: 1.6; }

@media (max-width: 900px) {
  .mps-list { grid-template-columns: repeat(2, 1fr); }
  .menu-page-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .mps-list { grid-template-columns: 1fr; }
  .menu-page-grid { grid-template-columns: 1fr; }
  .menu-page-tabs { gap: 0.4rem; }
  .mpt-btn { font-size: 0.55rem; padding: 0.45rem 0.8rem; }
}
