/* ═══════════════════════════════════════════════
   ZIRVE SOĞUK BAKLAVA — MASTER STYLESHEET
   ═══════════════════════════════════════════════ */

:root {
  --green:       #084E46;
  --green-dark:  #052e28;
  --green-light: #0a6b5e;
  --gold:        #D4AF37;
  --gold-light:  #e8c84a;
  --gold-dark:   #a8881e;
  --cream:       #FAFAFA;
  --white:       #ffffff;
  --text-dark:   #1a1a1a;
  --text-muted:  #666666;
  --font-serif:  'Playfair Display', Georgia, serif;
  --font-sans:   'Poppins', system-ui, sans-serif;
  --transition:  0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background: var(--green-dark);
  color: var(--white);
  overflow-x: hidden;
  cursor: default;
}

img { display: block; max-width: 100%; }

a { text-decoration: none; color: inherit; }

em { font-family: var(--font-serif); font-style: italic; color: var(--gold); }

.gold-text { color: var(--gold); }

/* ── CUSTOM SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--green-dark); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ═══════════════════════ PRELOADER ═══════════════════════ */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--green-dark);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-inner {
  text-align: center;
}

.preloader-logo {
  height: 60px;
  margin: 0 auto 2rem;
  animation: pulse 2s infinite ease-in-out;
}

.preloader-bar {
  width: 200px;
  height: 2px;
  background: rgba(212, 175, 55, 0.2);
  margin: 0 auto 1.5rem;
  position: relative;
  overflow: hidden;
}

.preloader-fill {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 0%;
  background: var(--gold);
  transition: width 0.3s ease;
}

.preloader-text {
  font-family: var(--font-serif);
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.05); opacity: 1; }
}

/* ═══════════════════════ TOP BAR & HEADER ═══════════════════════ */
#header-wrapper {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: transform var(--transition);
}

.top-bar {
  background: var(--green-dark);
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  padding: 0.5rem 2rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  display: flex;
  justify-content: center;
}

.top-bar-inner {
  max-width: 1400px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.top-info {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.top-info .divider {
  color: rgba(255,255,255,0.2);
}

.mobile-info {
  display: none;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  text-align: center;
  width: 100%;
}
.mobile-info p {
  font-size: 0.8rem;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

#main-header {
  position: relative; /* It's inside fixed wrapper now */
  padding: 0 2rem;
  background: rgba(8, 78, 70, 0.5); /* More transparent start */
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  transition: background var(--transition), padding var(--transition);
}

#main-header.scrolled {
  background: rgba(5, 46, 40, 0.97);
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link img {
  height: 48px;
  width: auto;
  filter: brightness(1.1);
  transition: transform var(--transition);
}
.logo-link:hover img { transform: scale(1.05); }

.header-nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.85);
  position: relative;
  transition: color var(--transition);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--gold); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.gold-glow-btn {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.7rem 1.8rem;
  background: var(--gold);
  color: var(--green-dark);
  border-radius: 50px;
  border: 1px solid transparent;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.gold-glow-btn::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.4) 0%, transparent 50%);
  z-index: -1;
  opacity: 0;
  transition: opacity var(--transition);
}

.gold-glow-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.6), 0 0 40px rgba(212, 175, 55, 0.2);
}

.gold-glow-btn:hover::before { opacity: 1; }

.gold-glow-btn.large {
  font-size: 1rem;
  padding: 1rem 3rem;
}

.outline-gold-btn {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0.8rem 2rem;
  border: 2px solid var(--gold);
  color: var(--gold);
  border-radius: 50px;
  transition: all var(--transition);
}

.outline-gold-btn:hover {
  background: var(--gold);
  color: var(--green-dark);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.3);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* ═══════════════════════ HERO SECTION ═══════════════════════ */
#hero-section {
  position: relative;
  height: 600vh; /* Increased to allow more scrolling phases */
  background: var(--green-dark);
}

#hero-pin-wrapper {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 60%, #0a6b5e 0%, #052e28 60%, #021a17 100%);
}

/* ── FROSTED GLASS LAYER ── */
#frosted-glass-layer {
  position: absolute;
  inset: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* initial mask to cover everything, will be expanded to clear the view */
  clip-path: circle(150% at 50% 50%); 
}

.frosted-glow {
  position: absolute;
  width: 40vw;
  height: 40vw;
  background: radial-gradient(circle, rgba(212,175,55,0.4) 0%, rgba(212,175,55,0) 70%);
  filter: blur(40px);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

#frosted-logo {
  position: relative;
  width: 250px;
  max-width: 50vw;
  filter: drop-shadow(0 0 15px rgba(255,255,255,0.3));
  margin-bottom: 2rem;
}

.frosted-text {
  position: relative;
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  animation: pulse 3s infinite;
}

/* ── REVEALED SCENE ── */
#revealed-scene {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* particle & milk canvas */
#particle-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
  /* Will fade in via JS */
  opacity: 0; 
}

/* plate & baklava wrapper */
#gold-plate-wrap {
  position: absolute;
  width: min(55vw, 620px);
  height: min(55vw, 620px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  margin-top: 25vh; /* Pushed significantly further down */
}

#baklava-levitation {
  position: absolute;
  width: 75%;
  height: 75%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) translateY(30px); /* Pushed down 90px relative to before */
  z-index: 5;
}

/* Slices using the same image but clipped */
.b-slice {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* Start merged */
  transform: translateY(0);
}

/* The exact percentages depend on the image. Assuming roughly equal horizontal slices. */
#b-slice-top {
  clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%);
  z-index: 3;
}
#b-slice-mid {
  clip-path: polygon(0 34%, 100% 34%, 100% 65%, 0 65%);
  z-index: 2;
}
#b-slice-bot {
  clip-path: polygon(0 64%, 100% 64%, 100% 100%, 0 100%);
  z-index: 1;
}

/* Mist Container */
#cold-mist-container {
  position: absolute;
  bottom: 0%;
  width: 150%;
  height: 50%;
  left: -25%;
  background: radial-gradient(ellipse at 50% 100%, rgba(200,230,255,0.15) 0%, transparent 60%);
  filter: blur(20px);
  opacity: 0;
  z-index: 6;
  pointer-events: none;
}

/* hero texts */
.hero-text-block {
  position: absolute;
  z-index: 8;
  text-align: center;
  pointer-events: none;
  width: 100%;
  padding: 0 2rem;
  top: 4%; /* Moved to the very top to ensure no overlap */
  opacity: 0; /* Initially hidden, revealed via JS */
}

.hero-sub {
  font-size: clamp(0.65rem, 1.2vw, 0.85rem);
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  text-shadow: 0 4px 30px rgba(0,0,0,0.6);
}

.hero-desc {
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  color: rgba(255,255,255,0.75);
  margin-top: 1rem;
  font-weight: 300;
  letter-spacing: 0.02em;
}

/* scroll indicator */
#scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 6;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  animation: fadeInUp 1s ease 2s both;
}

.scroll-arrow {
  width: 20px; height: 20px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg);
  animation: bounceDown 1.5s ease infinite;
}

@keyframes bounceDown {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(5px); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateX(-50%) translateY(20px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ═══════════════════════ SHARED SECTION STYLES ═══════════════════════ */
.section-header {
  text-align: center;
  padding: 5rem 2rem 3rem;
}

.section-tag {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.15;
}

.section-title.dark { color: var(--green-dark); }
.section-title.light { color: var(--white); }

.section-desc {
  font-size: 1rem;
  margin-top: 1rem;
}
.section-desc.light { color: rgba(255,255,255,0.7); }

/* ═══════════════════════ GALLERY / LEZZETLER ═══════════════════════ */
#lezzetler {
  background: var(--cream);
  color: var(--text-dark);
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#gallery-track-wrapper {
  overflow: hidden;
  padding: 1rem 0 4rem;
  flex: 1;
}

#gallery-track {
  display: flex;
  gap: 2rem;
  padding: 1rem 4vw 2rem;
  width: max-content;
  will-change: transform;
}

.gallery-card {
  flex: 0 0 360px;
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  position: relative;
}

.gallery-card:hover {
  transform: translateY(-16px);
  box-shadow: 0 35px 70px rgba(8, 78, 70, 0.25);
}

.card-img-wrap {
  height: 280px;
  overflow: hidden;
  background: linear-gradient(135deg, #f0ede8, #e8e3da);
}

.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.gallery-card:hover .card-img-wrap img { transform: scale(1.08); }

.card-info {
  padding: 1.75rem;
}

.card-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: rgba(212, 175, 55, 0.12);
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 0.9rem;
}

.card-info h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--green-dark);
  margin-bottom: 0.6rem;
  line-height: 1.25;
}

.card-info p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.card-btn {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.6rem 1.4rem;
  background: var(--green);
  color: var(--white);
  border-radius: 50px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.card-btn:hover {
  background: var(--gold);
  color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212,175,55,0.4);
}

/* ═══════════════════════ HIKAYEMIZ ═══════════════════════ */
#hikayemiz {
  position: relative;
  background: var(--green);
  padding: 8rem 2rem;
  overflow: hidden;
}

.story-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(212,175,55,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(10,107,94,0.5) 0%, transparent 60%);
  pointer-events: none;
}

.story-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.story-text {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,0.82);
  line-height: 1.85;
  margin-top: 2rem;
}

.story-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(212,175,55,0.25);
}

.stat-item { text-align: center; }

.stat-number {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 0.5rem;
}

/* ═══════════════════════ ŞUBELER ═══════════════════════ */
#subeler {
  background: linear-gradient(180deg, var(--green-dark) 0%, var(--green) 100%);
  padding: 6rem 2rem 5rem;
  position: relative;
  overflow: hidden;
}

#subeler::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--gold));
}

.branches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 3rem auto;
  padding: 0 1rem;
}

.branch-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(212,175,55,0.15);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.branch-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.branch-card:hover {
  background: rgba(212, 175, 55, 0.08);
  border-color: rgba(212,175,55,0.45);
  transform: translateY(-6px);
}
.branch-card:hover::before { opacity: 1; }

.branch-icon { font-size: 1.8rem; margin-bottom: 0.8rem; }

.branch-card h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.branch-card p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1rem;
}

.branch-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  background: rgba(212,175,55,0.15);
  color: var(--gold);
}

.branch-tag:empty { display: none; }

.branches-cta {
  text-align: center;
  margin-top: 3rem;
}

.branches-cta p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.gold-call-btn {
  display: inline-block;
  font-size: 1rem;
  font-weight: 600;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--green-dark);
  border-radius: 50px;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 8px 30px rgba(212,175,55,0.3);
}
.gold-call-btn:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 16px 50px rgba(212,175,55,0.5);
}

/* ═══════════════════════ ULTIMATE FOOTER ═══════════════════════ */
#main-footer {
  background: var(--green-dark);
  border-top: 1px solid rgba(212,175,55,0.15);
  padding: 5rem 2rem 2rem;
  position: relative;
}

#main-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.3;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  max-width: 1400px;
  margin: 0 auto;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
  height: 60px;
  width: auto;
  margin-bottom: 1.5rem;
}

.footer-slogan {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--white);
  font-weight: 700;
}

.footer-tagline {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-top: 0.3rem;
}

.footer-links h4,
.footer-contact h4,
.footer-social h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }

.footer-contact p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 0.5rem;
}

.social-icons {
  display: flex;
  gap: 0.8rem;
}

.social-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(212,175,55,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: background var(--transition), border-color var(--transition), color var(--transition), transform var(--transition);
}

.social-icon svg { width: 16px; height: 16px; }

.social-icon:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--green-dark);
  transform: translateY(-3px);
}

.footer-bottom {
  max-width: 1200px;
  margin: 2rem auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

/* ═══════════════════════ ANIMATIONS & UTILITIES ═══════════════════════ */

/* Reveal on scroll utility */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Gold shimmer effect */
@keyframes goldShimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.shimmer-text {
  background: linear-gradient(90deg, var(--gold-dark) 0%, var(--gold-light) 50%, var(--gold-dark) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: goldShimmer 3s linear infinite;
}

/* ═══════════════════════ RESPONSIVE ═══════════════════════ */
@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .top-bar { display: none; }
  #header-wrapper { top: 0; }

  .header-nav { display: none; }
  .hamburger { display: flex; }

  .header-nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px; left: 0; right: 0;
    height: calc(100vh - 72px);
    background: rgba(5,46,40,0.98);
    padding: 2rem;
    gap: 1.5rem;
    align-items: center;
    border-bottom: 1px solid rgba(212,175,55,0.2);
    z-index: 999;
    overflow-y: auto;
  }

  .header-nav.open .mobile-info {
    display: block;
  }

  .hero-title { font-size: clamp(2.2rem, 10vw, 3.5rem); }

  #gold-plate-wrap {
    width: min(85vw, 350px);
    height: min(85vw, 350px);
  }

  #hero-text-1, #hero-text-2, #hero-text-3 { 
    padding: 0 1.5rem;
  }

  .story-stats {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  /* ── GOZ ALICI KOLEKSİYONUMUZ MOBİL ── */
  #categories-showcase {
    min-height: auto !important;
    overflow: visible !important;
  }
  #gallery-track-wrapper {
    overflow-x: auto !important;
    overflow-y: visible !important;
    padding-bottom: 1.5rem;
    padding-top: 0.5rem;
    -webkit-overflow-scrolling: touch;
    flex: unset !important;
    display: block !important;
    width: 100%;
    align-items: unset !important;
  }
  #gallery-track {
    width: max-content !important;
    min-width: 100%;
    padding: 1rem 1.5rem 1rem !important;
    display: flex !important;
    flex-direction: row !important;
    gap: 1.5rem;
    will-change: auto !important;
    transform: none !important;
  }
  .gallery-card { 
    flex: 0 0 280px !important; 
    margin: 0;
  }
  .card-img-wrap { height: 200px; }

  /* ── LEZZETİN ANATOMİSİ MOBİL ── */
  .anatomy-section { 
    padding: 3rem 1rem 4rem !important; 
    overflow: visible !important;
  }
  .anatomy-container {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    min-height: auto !important;
    padding: 0 !important;
    margin-top: 1.5rem !important;
    position: static !important;
    width: 100% !important;
  }
  .anatomy-center-img {
    position: static !important;
    width: 240px !important;
    height: 240px !important;
    margin: 0 auto 2rem !important;
    z-index: auto !important;
  }
  .anatomy-details {
    position: static !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 1.5rem !important;
    pointer-events: auto !important;
    inset: auto !important;
    width: 100% !important;
  }
  .detail-item {
    position: static !important;
    width: 100% !important;
    text-align: center !important;
    padding: 1.5rem !important;
    background: rgba(8, 78, 70, 0.04) !important;
    border: 1px solid rgba(212,175,55,0.15) !important;
    border-radius: 12px !important;
  }
  .detail-item h3 { font-size: 1.1rem !important; margin-bottom: 0.5rem; }
  .detail-item p { font-size: 0.85rem; color: var(--text-muted); }
  .detail-line { display: none !important; }

  .hype-content h2 { font-size: 1.8rem; }
  
  .book-container { height: 40vh !important; }
}

@media (max-width: 480px) {
  .branches-grid { grid-template-columns: 1fr; }
  .gallery-card { flex: 0 0 260px; }
  .c-title { font-size: 2.5rem; }
}

/* ═══════════════════════ LEZZETİN ANATOMİSİ ═══════════════════════ */
.anatomy-section {
  position: relative;
  background: var(--white);
  color: var(--text-dark);
  padding: 6rem 2rem 8rem;
  overflow: hidden;
}

.anatomy-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(8, 78, 70, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.anatomy-container {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 4rem auto 0;
  position: relative;
  min-height: 500px;
}

.anatomy-center-img {
  position: relative;
  z-index: 5;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.anatomy-glow {
  position: absolute;
  inset: -10%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 60%);
  border-radius: 50%;
  animation: pulse 4s infinite;
}

.floating-baklava {
  position: relative;
  width: 120%;
  max-width: none;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,0.15));
}

.anatomy-details {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.detail-item {
  position: absolute;
  width: 280px;
}

.detail-item h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.detail-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

#detail-1 { top: 10%; left: 0; }
#detail-2 { top: 40%; right: 0; text-align: right; }
#detail-3 { bottom: 10%; left: 10%; }

.detail-line {
  position: absolute;
  background: var(--gold);
}
.left-line { height: 2px; width: 60px; right: -70px; top: 15px; }
.right-line { height: 2px; width: 60px; left: -70px; top: 15px; }

/* ═══════════════════════ NEW GALLERY OVERLAY ═══════════════════════ */
#categories-showcase {
  background: var(--cream);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

#gallery-track-wrapper {
  flex: 1;
  display: flex;
  align-items: center;
  position: relative;
}

#gallery-track {
  display: flex;
  gap: 2rem;
  padding: 0 4rem;
}

.card-overlay {
  padding: 2rem;
  text-align: center;
}
.card-overlay h3 {
  font-family: var(--font-serif);
  color: var(--green-dark);
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
.card-overlay p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.gold-link {
  font-weight: 600;
  color: var(--gold-dark);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.gold-link:hover { color: var(--green); }

.gallery-card:hover .vitrin-img {
  transform: scale(1.05);
}

/* ═══════════════════════ BRANCHES SUMMARY ═══════════════════════ */
.dark-section {
  background: var(--green-dark);
  padding: 6rem 2rem;
  text-align: center;
}

.branches-condensed-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  max-width: 900px;
  margin: 3rem auto;
}

.branch-mini-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(212,175,55,0.2);
  padding: 1.5rem 2.5rem;
  border-radius: 12px;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--white);
  transition: all var(--transition);
}
.branch-mini-card span {
  font-size: 0.8rem;
  color: var(--gold);
  font-family: var(--font-sans);
  display: block;
}
.branch-mini-card:hover {
  background: rgba(212,175,55,0.1);
  transform: translateY(-5px);
  border-color: var(--gold);
}

/* ═══════════════════════ FRANCHISE HYPE ═══════════════════════ */
#franchise-hype {
  position: relative;
  padding: 8rem 2rem;
  text-align: center;
  overflow: hidden;
}

.parallax-bg {
  position: absolute;
  inset: -10%;
  background: url('../images/baklava_gold_plate.png') center/cover no-repeat; /* Placeholder */
  filter: brightness(0.2) grayscale(0.5);
  z-index: 1;
}

.hype-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.hype-content h2 {
  font-family: var(--font-serif);
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.hype-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  margin-bottom: 2.5rem;
}
