/* ============================================
   LEONI CAFE - PREMIUM CINEMATIC DESIGN
   Version: 2.0 - Dark, Elegant, Animated
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --espresso: #2C1B12;
  --bordeaux: #6B1A3A;
  --forest: #1A3A2C;
  --cream: #F2EDE8;
  --dark: #0F0F0F;
  --gold: #C9A962;
  --gold-light: #E8D5A3;
  --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.1);
  --shadow-lg: 0 20px 50px rgba(0,0,0,0.15);
  /* Backward compatibility */
  --rich-black: var(--espresso);
  --text-muted: rgba(44,27,18,0.6);
  --pure-white: #fff;
  --warm-white: #faf9f7;
  --gold-dark: #B8963E;
  --font-display: var(--font-serif);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  background: var(--dark);
  color: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; height: auto; }
a { text-decoration: none; color: inherit; transition: color 0.3s ease; }
ul { list-style: none; }

/* Typography */
h1, h2, h3, h4, .font-serif {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; width: 100%; z-index: 1000;
  background: transparent;
  border-bottom: 1px solid rgba(242, 237, 232, 0.08);
  height: 80px;
  transition: all 0.4s ease;
}
.site-header.scrolled {
  background: rgba(15, 15, 15, 0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(201, 169, 98, 0.15);
  height: 64px;
}
.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav-logo-img {
  width: 40px; height: 40px;
}
.nav-logo-img { width: 40px; height: 40px; }
.nav-logo-text-wrap {
  display: block;
  line-height: 1.1;
}
.nav-logo-text {
  display: block;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  color: var(--gold);
  white-space: nowrap;
}
.nav-logo-sub {
  display: block;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  color: rgba(201,169,98,0.6);
  text-transform: uppercase;
  margin-top: 2px;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-link {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 400;
  color: rgba(242, 237, 232, 0.85);
  transition: color 0.3s ease;
  position: relative;
  padding: 0.5rem 0;
}
.nav-link:hover,
.nav-link.active {
  color: var(--gold);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
}
.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.6rem 1.5rem;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.4s ease;
}
.nav-cta:hover {
  background: var(--gold);
  color: var(--dark);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}
.hamburger-line {
  width: 28px;
  height: 2px;
  background: var(--cream);
  transition: all 0.3s ease;
  border-radius: 2px;
}
.hamburger.active .hamburger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active .hamburger-line:nth-child(2) { opacity: 0; }
.hamburger.active .hamburger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  top: 0; right: 0;
  width: 100%; height: 100vh;
  background: rgba(15, 15, 15, 0.98);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  padding: 6rem 1.5rem 2rem;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 999;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu .nav-link {
  font-size: 1.15rem;
  color: var(--cream);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(242, 237, 232, 0.1);
  width: 100%;
  max-width: 320px;
  text-align: center;
  flex-shrink: 0;
}
.mobile-menu .btn {
  margin-top: 1.5rem;
  width: 100%;
  max-width: 320px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .desktop-nav { display: none; }
  .hamburger { display: flex; }
  .header-inner { padding: 0 1.25rem; }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--espresso);
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1511920170033-f8396924c348?w=1920&q=80') center/cover no-repeat;
  opacity: 0.12;
  filter: grayscale(100%) sepia(40%) contrast(120%);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(44,27,18,0.2) 0%, rgba(44,27,18,0.5) 40%, rgba(15,15,15,1) 100%);
}
.hero-content {
  position: relative; z-index: 10;
  text-align: center; max-width: 900px; padding: 2rem;
  animation: fadeInUp 1.2s var(--transition) both;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  font-family: var(--font-serif);
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 500;
  color: var(--cream);
  line-height: 1.05;
  margin-bottom: 1.5rem;
}
.hero-title .gold-text { color: var(--gold); }
.hero-desc {
  font-size: 1.05rem;
  color: rgba(242,237,232,0.65);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
  font-weight: 300;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.scroll-indicator {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(242,237,232,0.4);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.scroll-indicator svg {
  width: 24px; height: 24px;
  stroke: var(--gold);
}

/* Hero Premium Variant */
.hero-new {
  position: relative;
  height: 100vh;
  min-height: 800px;
  background: var(--espresso);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg-image {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1511920170033-f8396924c348?w=1920&q=80') center/cover no-repeat;
  opacity: 0.12;
  filter: grayscale(100%) sepia(40%) contrast(120%);
}
.hero-overlay-new {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(44,27,18,0.2) 0%, rgba(44,27,18,0.5) 40%, rgba(15,15,15,1) 100%);
}
.hero-diagonal {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(135deg, transparent 48%, rgba(201,169,98,0.03) 49%, rgba(201,169,98,0.03) 51%, transparent 52%);
  pointer-events: none;
}
.hero-content-new {
  position: relative; z-index: 10;
  text-align: center; max-width: 900px; padding: 2rem;
  animation: fadeInUp 1.2s var(--transition) both;
}
.hero-number {
  font-family: var(--font-serif);
  font-size: 0.85rem; color: var(--cream);
  letter-spacing: 0.2em; text-transform: uppercase;
  margin-bottom: 1.5rem; display: block;
}
.hero-title-new {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 6vw, 6rem);
  font-weight: 500;
  color: var(--gold);
  line-height: 1.0;
  margin-bottom: 1rem;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .hero-title-new { white-space: normal; }
}
.hero-carpe-diem {
  display: block;
  font-family: var(--font-serif);
  font-size: 0.22em;
  font-weight: 300;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-top: 0.5rem;
  opacity: 0.9;
}
.hero-desc-new {
  font-size: 1.35rem; color: var(--cream);
  max-width: 560px; margin: 0 auto 2.5rem;
  line-height: 1.7; font-weight: 300;
}
.hero-buttons-new {
  display: flex; gap: 1.25rem; justify-content: center; flex-wrap: wrap;
}

/* Coffee Pour Animation Container */
.coffee-pour-container {
  position: absolute; right: 8%; bottom: 12%;
  width: 320px; height: 320px; z-index: 5;
  opacity: 0.7;
}
@media (max-width: 1024px) { .coffee-pour-container { width: 240px; height: 240px; right: 5%; } }
@media (max-width: 768px) { .coffee-pour-container { display: none; } }

/* ============================================
   KAHVEDEN PİZZAYA SCROLL ANİMASYONU
   ============================================ */
.brew-to-pizza {
  position: relative;
  height: 300vh;
  background: var(--dark);
}
.brew-pizza-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.brew-pizza-bg {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 40%, rgba(201,169,98,0.08), transparent 60%), var(--dark);
}
.brew-pizza-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.45) 100%);
  pointer-events: none;
  z-index: 2;
}

/* Text Layers */
.brew-pizza-text-coffee,
.brew-pizza-text-pizza {
  position: absolute;
  max-width: 420px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  z-index: 10;
  pointer-events: none;
  padding: 0 1rem;
}
.brew-pizza-text-coffee { left: 5%; top: 50%; transform: translateY(-50%) translateY(24px); }
.brew-pizza-text-pizza { right: 5%; top: 50%; transform: translateY(-50%) translateY(24px); text-align: right; }

.brew-pizza-text-coffee.is-active,
.brew-pizza-text-pizza.is-active {
  opacity: 1;
  transform: translateY(-50%) translateY(0);
}

/* Visual Center Stage - Video & Image */
.brew-pizza-visual {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: min(60vh, 520px);
  height: min(60vh, 520px);
  z-index: 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.brew-video-coffee,
.brew-image-pizza {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
  transform: scale(1.05);
}
.brew-video-coffee.is-visible,
.brew-image-pizza.is-visible {
  opacity: 1;
  transform: scale(1);
}

/* İlerleme çubuğu */
.brew-pizza-progress {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  width: 200px; height: 4px;
  background: rgba(255,255,255,0.12);
  border-radius: 4px;
  overflow: hidden;
  z-index: 6;
}
.brew-pizza-progress-bar {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 4px;
  transition: width 0.1s linear;
}

@media (max-width: 768px) {
  .brew-to-pizza { height: auto; }
  .brew-pizza-sticky {
    position: relative;
    height: auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 6rem 1.25rem 4rem;
    gap: 2rem;
  }
  .brew-pizza-text-coffee,
  .brew-pizza-text-pizza {
    position: relative;
    left: auto; right: auto; top: auto;
    max-width: 100%;
    margin: 0;
    text-align: center !important;
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .brew-pizza-text-coffee.is-active,
  .brew-pizza-text-pizza.is-active { transform: translateY(0); }
  .brew-pizza-visual {
    position: relative;
    top: auto; left: auto;
    transform: none;
    width: 100%;
    max-width: 360px;
    height: auto;
    aspect-ratio: 1/1;
    margin: 0 auto;
  }
  .brew-pizza-progress {
    position: relative;
    bottom: auto; left: auto;
    transform: none;
    margin: 1rem auto 0;
  }
  .brew-pizza-bg,
  .brew-pizza-overlay { display: none; }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-transform: none;
}
.btn-primary {
  background: var(--gold);
  color: var(--dark);
  border: 1px solid var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201,169,98,0.2);
}
.btn-secondary {
  background: var(--cream);
  color: var(--espresso);
  border: 1px solid var(--cream);
}
.btn-secondary:hover {
  background: #fff;
  transform: translateY(-2px);
}
.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--dark);
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--dark);
  color: var(--cream);
  border: 1px solid var(--dark);
}
.btn-dark:hover {
  background: #1a1a1a;
  transform: translateY(-2px);
}
.btn-lg { padding: 1rem 2.5rem; font-size: 0.95rem; }
.btn-sm { padding: 0.6rem 1.25rem; font-size: 0.8rem; }

/* Premium Buttons */
.btn-premium {
  display: inline-flex; align-items: center; gap: 0.75rem;
  padding: 1rem 2.5rem;
  font-family: var(--font-sans); font-size: 0.8rem;
  font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; border: 1px solid var(--gold);
  color: var(--gold); background: transparent;
  cursor: pointer; transition: all 0.4s ease;
}
.btn-premium:hover {
  background: var(--gold); color: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201,169,98,0.2);
}
.btn-solid-gold {
  background: var(--gold); color: var(--dark); border-color: var(--gold);
}
.btn-solid-gold:hover {
  background: var(--gold-light); border-color: var(--gold-light);
}
.btn-cream {
  border-color: var(--cream); color: var(--cream);
}
.btn-cream:hover {
  background: var(--cream); color: var(--dark);
}

/* ============================================
   SECTIONS & CONTAINERS
   ============================================ */
.section {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}
.section-cream { background: var(--cream); color: var(--espresso); }
.section-white { background: #fff; color: var(--espresso); }
.section-dark { background: var(--dark); }
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.container-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}
.section-heading {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 500;
  margin-bottom: 1rem;
  color: var(--espresso);
  line-height: 1.1;
}
.section-dark .section-heading,
.section-dark .section-heading span { color: var(--cream); }
.section-heading span { color: var(--gold); }
.section-subtitle {
  display: block;
  font-family: var(--font-serif);
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.body-text {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(44,27,18,0.7);
  max-width: 600px;
}
.section-dark .body-text { color: rgba(242,237,232,0.65); }
.gold-text { color: var(--gold); }

/* Premium Sections */
.section-premium {
  position: relative; padding: 7rem 0;
  overflow: hidden;
}
.section-bordeaux { background: var(--bordeaux); }
.section-forest { background: var(--forest); }
.section-espresso { background: var(--espresso); }
.container-premium {
  max-width: 1400px; margin: 0 auto; padding: 0 2rem;
}
@media (max-width: 768px) { .container-premium { padding: 0 1.25rem; } }
.section-number {
  font-family: var(--font-serif); font-size: 0.85rem;
  color: var(--gold); letter-spacing: 0.2em;
  text-transform: uppercase; margin-bottom: 1rem;
  display: block; font-weight: 400;
}
.section-title-premium {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 500; margin-bottom: 1.25rem;
  line-height: 1.05;
}
.section-title-light { color: var(--cream); }
.section-title-dark { color: var(--espresso); }
.section-line-gold {
  width: 50px; height: 1px; background: var(--gold);
  margin: 1.5rem 0;
}
.section-text {
  font-size: 0.95rem; line-height: 1.8;
  max-width: 45ch; font-weight: 300;
}
.section-text-light { color: rgba(242,237,232,0.65); }
.section-text-dark { color: rgba(44,27,18,0.7); }

/* ============================================
   GRID LAYOUTS
   ============================================ */
.grid-featured {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 5rem; align-items: center;
}
@media (max-width: 768px) { .grid-featured { grid-template-columns: 1fr; gap: 2rem; } }
.grid-featured-reverse { grid-template-columns: 1.2fr 1fr; }
@media (max-width: 768px) { .grid-featured-reverse { grid-template-columns: 1fr; } }
.grid-3 {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 768px) { .grid-3 { grid-template-columns: 1fr; } }
.grid-4 {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (max-width: 768px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .grid-4 { grid-template-columns: 1fr; } }
.grid-gallery {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1rem; max-width: 1200px; margin: 0 auto;
}
.grid-gallery .item-1 { grid-row: span 2; }
@media (max-width: 768px) { .grid-gallery { grid-template-columns: 1fr; grid-template-rows: auto; } .grid-gallery .item-1 { grid-row: span 1; } }

/* ============================================
   IMAGE TREATMENTS
   ============================================ */
.img-rounded {
  border-radius: 200px 200px 0 0;
  overflow: hidden;
}
.img-rounded-reverse {
  border-radius: 0 0 200px 200px;
  overflow: hidden;
}
.img-circle {
  border-radius: 50%; overflow: hidden; aspect-ratio: 1;
}
.img-treatment {
  position: relative; overflow: hidden;
  transition: transform 0.6s ease;
}
.img-treatment img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s ease, filter 0.5s ease;
  filter: saturate(0.9) contrast(1.05);
}
.img-treatment:hover img {
  transform: scale(1.05);
  filter: saturate(1) contrast(1.1);
}
.img-treatment::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,15,15,0.4) 0%, transparent 50%);
  pointer-events: none;
}

/* ============================================
   CARDS & COMPONENTS
   ============================================ */
.product-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.product-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.product-card:hover .product-img {
  transform: scale(1.05);
}
.product-body {
  padding: 1.5rem;
}
.product-category {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.product-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--espresso);
}
.product-desc {
  font-size: 0.9rem;
  color: rgba(44,27,18,0.65);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.product-price {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--gold);
}
.product-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--espresso);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.product-btn:hover {
  background: var(--gold);
  color: var(--dark);
}
.product-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 2;
}
.badge-new { background: #059669; color: #fff; }
.badge-popular { background: var(--gold); color: var(--dark); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.premium-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all 0.4s ease;
}
.premium-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.glass-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(242, 237, 232, 0.06);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
}
.glass-card:hover {
  border-color: rgba(201, 169, 98, 0.2);
  background: rgba(255, 255, 255, 0.05);
}

.card-premium {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(242,237,232,0.06);
  padding: 2.5rem; transition: all 0.5s ease;
  position: relative; overflow: hidden;
}
.card-premium::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 100%; height: 2px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s ease;
}
.card-premium:hover::before { transform: scaleX(1); }
.card-premium:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(201,169,98,0.2);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.card-event {
  position: relative; overflow: hidden;
  border-radius: 4px;
}
.card-event img {
  width: 100%; height: 280px; object-fit: cover;
  transition: transform 0.6s ease;
}
.card-event:hover img { transform: scale(1.08); }
.card-event-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,15,15,0.85) 0%, rgba(15,15,15,0.2) 60%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.5rem;
}
.card-event-date {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--gold); color: var(--dark);
  padding: 0.5rem 1rem; font-size: 0.75rem;
  font-weight: 600; letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 1rem;
}
.gallery-masonry .gallery-item:nth-child(2) { grid-row: span 2; }
.gallery-masonry .gallery-item:nth-child(5) { grid-row: span 2; }
@media (max-width: 768px) {
  .gallery-masonry { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .gallery-masonry .gallery-item:nth-child(2),
  .gallery-masonry .gallery-item:nth-child(5) { grid-row: span 1; }
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img {
  transform: scale(1.08);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 15, 15, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: var(--radius-md);
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-overlay span {
  color: var(--cream);
  font-family: var(--font-serif);
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  transform: translateY(10px);
  transition: transform 0.4s ease;
}
.gallery-item:hover .gallery-overlay span {
  transform: translateY(0);
}

/* ============================================
   ACCORDION
   ============================================ */
.accordion-item {
  border-bottom: 1px solid rgba(44, 27, 18, 0.1);
  overflow: hidden;
}
.section-dark .accordion-item,
.section-espresso .accordion-item,
.section-bordeaux .accordion-item,
.section-forest .accordion-item {
  border-bottom: 1px solid rgba(242, 237, 232, 0.1);
}
.accordion-header {
  padding: 1.5rem 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  font-size: 1.05rem;
  transition: color 0.3s ease;
  color: var(--espresso);
}
.section-dark .accordion-header,
.section-espresso .accordion-header,
.section-bordeaux .accordion-header,
.section-forest .accordion-header { color: var(--cream); }
.accordion-header .icon {
  transition: transform 0.4s ease;
  flex-shrink: 0;
}
.accordion-item.active .accordion-header .icon {
  transform: rotate(180deg);
}
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.5s ease;
  padding: 0;
}
.accordion-item.active .accordion-body {
  max-height: 500px;
  padding-bottom: 1.5rem;
}
.accordion-body p {
  line-height: 1.7;
  color: rgba(44, 27, 18, 0.7);
}
.section-dark .accordion-body p,
.section-espresso .accordion-body p,
.section-bordeaux .accordion-body p,
.section-forest .accordion-body p { color: rgba(242, 237, 232, 0.65); }

/* ============================================
   FORM ELEMENTS
   ============================================ */
.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--rich-black);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.form-input {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(44, 27, 18, 0.15);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  background: #fff;
  color: var(--espresso);
  transition: all 0.3s ease;
  outline: none;
}
.section-dark .form-input,
.section-espresso .form-input,
.section-bordeaux .form-input,
.section-forest .form-input {
  background: rgba(255,255,255,0.05);
  border-color: rgba(242,237,232,0.1);
  color: var(--cream);
}
.form-input::placeholder { color: rgba(44,27,18,0.4); }
.section-dark .form-input::placeholder { color: rgba(242,237,232,0.4); }
.form-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,169,98,0.1);
}

.input-premium {
  width: 100%; padding: 1rem 1.25rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(242,237,232,0.1);
  color: var(--cream); font-family: var(--font-sans);
  font-size: 0.9rem; transition: all 0.3s ease;
  outline: none;
}
.input-premium::placeholder { color: rgba(242,237,232,0.4); }
.input-premium:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.08);
  box-shadow: 0 0 0 3px rgba(201,169,98,0.1);
}

/* Contact Page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}
.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .contact-form-row { grid-template-columns: 1fr; }
  .atmosfer-grid { grid-template-columns: 1fr !important; gap: 2rem !important; }
  .atmosfer-grid > div:last-child { grid-template-columns: 1fr !important; }
  .atmosfer-grid > div:last-child img { margin-top: 0 !important; height: 220px; }
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--espresso);
  border-top: 1px solid rgba(242,237,232,0.06);
  padding: 5rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(242,237,232,0.6);
  margin: 1rem 0;
}
.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.05em;
}
.footer-logo-wrap {
  display: flex;
  flex-direction: column;
  margin-bottom: 0.5rem;
}
.footer-logo-sub {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: rgba(201,169,98,0.5);
  text-transform: uppercase;
  margin-top: 0.15rem;
}
.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(242,237,232,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(242,237,232,0.6);
  transition: all 0.3s ease;
}
.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.footer-links-wrap h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--cream);
  margin-bottom: 1.25rem;
  font-weight: 500;
}
.footer-links li {
  margin-bottom: 0.75rem;
}
.footer-links a {
  font-size: 0.9rem;
  color: rgba(242,237,232,0.6);
  transition: color 0.3s ease;
}
.footer-links a:hover {
  color: var(--gold);
}
.footer-contact p {
  font-size: 0.9rem;
  color: rgba(242,237,232,0.6);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  line-height: 1.5;
}
.footer-contact a {
  color: rgba(242,237,232,0.6);
  transition: color 0.3s ease;
}
.footer-contact a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(242,237,232,0.08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(242,237,232,0.4);
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}

/* ============================================
   WHATSAPP BUTTON
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 1000;
  background: #25D366;
  color: #fff;
  padding: 1rem 1.5rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
  font-size: 0.9rem;
  box-shadow: 0 8px 30px rgba(37,211,102,0.35);
  transition: all 0.3s ease;
  animation: goldPulse 2s infinite;
}
.whatsapp-float svg {
  width: 20px; height: 20px; fill: #fff;
}
.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(37,211,102,0.45);
}
@media (max-width: 768px) {
  .whatsapp-float { bottom: 1.5rem; right: 1.5rem; padding: 0.85rem; }
  .whatsapp-float span { display: none; }
}

/* ============================================
   SCROLL INDICATOR
   ============================================ */
.scroll-indicator-new {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%); z-index: 10;
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: rgba(242,237,232,0.4); font-size: 0.7rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  animation: bounce 2s infinite;
}
.scroll-indicator-new svg {
  width: 24px; height: 24px; stroke: var(--gold);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(50px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes goldPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,169,98,0.3); }
  50% { box-shadow: 0 0 0 15px rgba(201,169,98,0); }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

.reveal {
  opacity: 0; transform: translateY(50px);
  transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-left {
  opacity: 0; transform: translateX(-40px);
  transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0; transform: translateX(40px);
  transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-scale {
  opacity: 0; transform: scale(0.9);
  transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* ============================================
    COFFEE POUR ANIMATION CSS
    ============================================ */
.coffee-cup-svg { width: 100%; height: 100%; }
.coffee-cup-svg .cup-body {
  stroke: var(--cream); stroke-width: 2; fill: none; opacity: 0.3;
}
.coffee-cup-svg .cup-handle {
  stroke: var(--cream); stroke-width: 2; fill: none; opacity: 0.3;
}
.coffee-cup-svg .cup-saucer {
  stroke: var(--cream); stroke-width: 1; fill: none; opacity: 0.2;
}
.coffee-cup-svg .coffee-liquid {
  fill: #4A2C1D; transform: translateY(100%);
  transition: transform 0.1s linear;
}
.coffee-cup-svg .coffee-stream {
  stroke: #4A2C1D; stroke-width: 5; fill: none;
  stroke-linecap: round; stroke-dasharray: 100;
  stroke-dashoffset: 100; transition: stroke-dashoffset 0.1s linear;
}
.coffee-cup-svg .steam {
  stroke: rgba(242,237,232,0.15); stroke-width: 1; fill: none;
  stroke-linecap: round; opacity: 0;
  transition: opacity 0.5s ease;
}

/* ============================================
   QR MENU PAGE STYLES
   ============================================ */
.qr-hero {
  background: linear-gradient(135deg, var(--espresso) 0%, var(--dark) 100%);
  padding: 8rem 0 4rem;
  text-align: center;
  color: white;
}
.qr-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: white;
}
.qr-hero p {
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.qr-menu-wrapper {
  padding: 3rem 0 5rem;
  background: var(--cream);
}
.qr-categories {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  justify-content: center;
  flex-wrap: wrap;
}
.qr-category-btn {
  padding: 0.6rem 1.5rem;
  border: 1px solid rgba(44,27,18,0.15);
  border-radius: 100px;
  background: white;
  color: var(--espresso);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.qr-category-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.qr-category-btn.active {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--dark);
  border-color: var(--gold);
  box-shadow: 0 4px 12px rgba(201,169,98,0.25);
}

.qr-menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}
.qr-item {
  display: flex;
  gap: 1rem;
  background: white;
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  align-items: flex-start;
}
.qr-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.qr-item-img {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-md);
  object-fit: cover;
  flex-shrink: 0;
}
.qr-item-body { flex: 1; }
.qr-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.4rem;
}
.qr-item-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--espresso);
}
.qr-item-price {
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--gold);
  font-size: 1.1rem;
  white-space: nowrap;
}
.qr-item-desc {
  font-size: 0.85rem;
  color: rgba(44,27,18,0.6);
  line-height: 1.5;
  margin-bottom: 0.75rem;
}
.qr-item-tags {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}
.qr-tag {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
}
.tag-hot { background: #FEF3C7; color: #92400E; }
.tag-new { background: #DCFCE7; color: #166534; }
.tag-vegan { background: #E0E7FF; color: #3730A3; }

@media (max-width: 768px) {
  .qr-menu-grid { grid-template-columns: 1fr; }
  .qr-item { flex-direction: column; align-items: center; text-align: center; }
  .qr-item-header { flex-direction: column; gap: 0.25rem; }
  .qr-item-img { width: 100%; height: 180px; }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .section { padding: 4rem 0; }
  .section-premium { padding: 4rem 0; }
  .hero-title { font-size: clamp(2rem, 8vw, 3.5rem); }
  .hero-title-new { font-size: clamp(1.8rem, 8vw, 3rem); white-space: normal; }
  .hero-carpe-diem { font-size: 0.3em; }
  .section-title-premium { font-size: clamp(2rem, 8vw, 3rem); }
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .btn-premium { width: 100%; justify-content: center; }
  .hero-buttons-new { flex-direction: column; align-items: stretch; }
  .container { padding: 0 1.25rem; }
  .container-narrow { padding: 0 1.25rem; }
  .products-grid { grid-template-columns: 1fr; }
  .gallery-masonry { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .gallery-masonry .gallery-item:nth-child(2),
  .gallery-masonry .gallery-item:nth-child(5) { grid-row: span 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .btn { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .hero-buttons .btn { width: 100%; }
}

/* ============================================
   BIGCHEFS TARZI — SPLIT PANELS & CIRCULAR
   ============================================ */

/* Circular Text Section */
.circular-text-section {
  position: relative;
  background: var(--bordeaux);
  padding: 6rem 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
}
.circular-text-wrapper {
  position: relative;
  width: min(80vw, 520px);
  height: min(80vw, 520px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.circular-text-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: circularSpin 24s linear infinite;
}
@keyframes circularSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.circular-text-svg text {
  fill: var(--gold);
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.circular-center-image {
  position: relative;
  z-index: 2;
  width: 55%;
  height: 55%;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  border: 3px solid var(--gold);
}
.circular-center-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.circular-center-image:hover img {
  transform: scale(1.08);
}

/* Split Panels (Kare Kare) */
.split-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 70vh;
  align-items: stretch;
}
.split-panel-image {
  position: relative;
  overflow: hidden;
  min-height: 400px;
}
.split-panel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.split-panel-image:hover img {
  transform: scale(1.05);
}
.split-panel-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 5rem;
  position: relative;
  overflow: hidden;
}
.split-panel-content .section-subtitle {
  margin-bottom: 1rem;
}
.split-panel-content .section-heading {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 1.25rem;
  line-height: 1.1;
}
.split-panel-content p {
  font-size: 1rem;
  line-height: 1.8;
  max-width: 45ch;
  margin-bottom: 2rem;
}
.split-panel-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border: 1px solid;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.4s ease;
  width: fit-content;
}
.split-panel-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* Panel Color Variants */
.split-panel-dark .split-panel-content { background: var(--espresso); color: var(--cream); }
.split-panel-dark .split-panel-content .section-heading { color: var(--cream); }
.split-panel-dark .split-panel-content p { color: rgba(242,237,232,0.7); }
.split-panel-dark .split-panel-btn { border-color: var(--gold); color: var(--gold); }
.split-panel-dark .split-panel-btn:hover { background: var(--gold); color: var(--dark); }

.split-panel-cream .split-panel-content { background: var(--cream); color: var(--espresso); }
.split-panel-cream .split-panel-content .section-heading { color: var(--espresso); }
.split-panel-cream .split-panel-content p { color: rgba(44,27,18,0.7); }
.split-panel-cream .split-panel-btn { border-color: var(--espresso); color: var(--espresso); }
.split-panel-cream .split-panel-btn:hover { background: var(--espresso); color: var(--cream); }

.split-panel-bordeaux .split-panel-content { background: var(--bordeaux); color: var(--cream); }
.split-panel-bordeaux .split-panel-content .section-heading { color: var(--cream); }
.split-panel-bordeaux .split-panel-content p { color: rgba(242,237,232,0.7); }
.split-panel-bordeaux .split-panel-btn { border-color: var(--gold); color: var(--gold); }
.split-panel-bordeaux .split-panel-btn:hover { background: var(--gold); color: var(--dark); }

.split-panel-forest .split-panel-content { background: var(--forest); color: var(--cream); }
.split-panel-forest .split-panel-content .section-heading { color: var(--cream); }
.split-panel-forest .split-panel-content p { color: rgba(242,237,232,0.7); }
.split-panel-forest .split-panel-btn { border-color: var(--gold); color: var(--gold); }
.split-panel-forest .split-panel-btn:hover { background: var(--gold); color: var(--dark); }

/* Decorative corner accent */
.split-panel-accent::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 80px; height: 80px;
  background: linear-gradient(135deg, var(--gold) 50%, transparent 50%);
  opacity: 0.15;
}
.split-panel-accent::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 120px; height: 120px;
  border-left: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  opacity: 0.12;
}

/* Parallax Quote Section */
.parallax-quote-section {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}
@supports (-webkit-touch-callout: none) {
  .parallax-quote-section { background-attachment: scroll; }
}
.parallax-quote-overlay {
  position: absolute; inset: 0;
  background: rgba(15, 15, 15, 0.55);
}
.parallax-quote-content {
  position: relative; z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 2rem 2rem 4rem;
}
.parallax-quote-text {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 500;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.parallax-quote-text span { color: var(--gold); font-style: italic; }
.parallax-quote-attribution {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: rgba(242,237,232,0.6);
  font-style: italic;
  letter-spacing: 0.08em;
  margin-bottom: 2rem;
  display: block;
}

/* 4-Image Grid Showcase */
.showcase-grid-section {
  padding: 0;
  background: var(--espresso);
  position: relative;
  overflow: hidden;
}
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.showcase-grid-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
}
.showcase-grid-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease, filter 0.4s ease;
  filter: saturate(0.85) contrast(1.05);
}
.showcase-grid-item:hover img {
  transform: scale(1.08);
  filter: saturate(1) contrast(1.1);
}
.showcase-grid-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,15,15,0.7) 0%, transparent 50%);
  display: flex; align-items: flex-end; padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.showcase-grid-item:hover .showcase-grid-overlay {
  opacity: 1;
}
.showcase-grid-overlay span {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--cream);
  font-weight: 500;
  transform: translateY(10px);
  transition: transform 0.4s ease;
}
.showcase-grid-item:hover .showcase-grid-overlay span {
  transform: translateY(0);
}

/* Responsive Split Panels */
@media (max-width: 768px) {
  .split-panel { grid-template-columns: 1fr; }
  .split-panel-image { min-height: 300px; order: -1; }
  .split-panel-content { padding: 3rem 2rem; }
  .showcase-grid { grid-template-columns: repeat(2, 1fr); }
  .showcase-grid-item:nth-child(3),
  .showcase-grid-item:nth-child(4) { display: none; }
  .circular-text-section { min-height: 60vh; padding: 4rem 0; }
  .circular-text-wrapper { width: 85vw; height: 85vw; }
  .circular-text-svg text { font-size: 22px; }
  .hakkimizda-grid { grid-template-columns: 1fr !important; gap: 2rem !important; }
}