/* =============================================
   FEDERICO — Premium Design System v2
   High-end specialty coffee brand
   ============================================= */

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

/* --- Design Tokens --- */
:root {
  /* Warm editorial palette */
  --black: #0E0D0B;
  --charcoal: #1C1A17;
  --dark: #28251F;
  --dark-2: #3A3630;
  --gray-800: #4A4640;
  --gray-700: #6A6560;
  --gray-600: #8A8580;
  --gray-500: #A8A39D;
  --gray-400: #C3BDB8;
  --gray-300: #D8D2CC;
  --gray-200: #E6E0DA;
  --gray-100: #F2EDE8;
  --cream: #F7F3EE;
  --warm: #FAF7F4;
  --white: #FFFFFF;

  --accent: #F26522;
  --accent-light: #F5843E;
  --accent-dark: #D9551A;
  --accent-glow: rgba(242, 101, 34, 0.10);

  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.75rem;
  --text-3xl: 2.5rem;
  --text-4xl: 3.5rem;
  --text-5xl: 4.5rem;
  --text-6xl: 6rem;
  --text-hero: clamp(3.2rem, 8vw, 7.5rem);

  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4.5rem;
  --space-4xl: 5rem;
  --space-5xl: 6.5rem;
  --space-6xl: 8rem;

  --max-w: 1240px;
  --max-w-narrow: 720px;
  --max-w-wide: 1440px;
  --header-h: 72px;
  --radius: 0px;
  --radius-lg: 2px;
  --radius-xl: 4px;

  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --duration: 0.6s;
  --duration-fast: 0.3s;

  --shadow-sm: 0 2px 12px rgba(0,0,0,0.05);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.07);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.10);
  --shadow-xl: 0 32px 80px rgba(0,0,0,0.14);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
  scrollbar-width: thin;
  scrollbar-color: var(--gray-400) transparent;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 400;
  line-height: 1.7;
  color: var(--charcoal);
  background-color: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* --- Site frame — no boxing, full-width editorial --- */
.site-frame {
  max-width: 100%;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: all var(--duration-fast) var(--ease); }
ul, ol { list-style: none; }
button, input, select, textarea { font-family: inherit; font-size: inherit; border: none; outline: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

::selection {
  background: var(--accent);
  color: var(--white);
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--gray-300); border-radius: 3px; }

/* --- Utilities --- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}
.container--narrow { max-width: var(--max-w-narrow); }
.container--wide { max-width: var(--max-w-wide); }
.text-center { text-align: center; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* --- Section System --- */
.section {
  padding: var(--space-5xl) 0;
  position: relative;
}
.section--sm { padding: var(--space-3xl) 0; }
.section--cream { background-color: var(--cream); }
.section--store-dark {
  background-color: var(--charcoal);
  color: var(--white);
}
.section--warm { background-color: var(--warm); }
.section--dark {
  background-color: var(--gray-100);
  color: var(--charcoal);
  margin: 0 var(--space-md);
  border-radius: var(--radius-xl);
}
.section--black {
  background-color: var(--cream);
  color: var(--charcoal);
  margin: 0 var(--space-md);
  border-radius: var(--radius-xl);
}

.section__eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--accent);
  margin-bottom: var(--space-lg);
  display: block;
}

.section__title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  margin-bottom: var(--space-md);
  color: var(--charcoal);
}
.section--dark .section__title,
.section--black .section__title { color: var(--charcoal); }

.section__subtitle {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: 300;
  color: var(--gray-600);
  max-width: 560px;
  line-height: 1.8;
}
.section--dark .section__subtitle { color: var(--gray-600); }
.text-center .section__subtitle { margin: 0 auto; }

.section__divider {
  width: 60px;
  height: 1px;
  background: var(--accent);
  margin: var(--space-lg) 0;
}
.text-center .section__divider { margin: var(--space-lg) auto; }

/* =============================================
   HEADER — Editorial full-strip (transparent → white)
   ============================================= */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 1000;
  background: transparent;
  transition: background 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: rgba(255,255,255,0.1);
  transition: background 0.45s var(--ease);
}
.header.scrolled,
.header.header--light {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--gray-200);
}
.header.scrolled::after,
.header.header--light::after {
  background: transparent;
}
.header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  height: 100%;
  max-width: var(--max-w-wide);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 3.5vw, 2.75rem);
  gap: clamp(1.25rem, 3vw, 2.5rem);
}

/* --- Logo --- */
.header__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  z-index: 2;
}
.header__logo-img {
  height: 42px;
  width: auto;
  object-fit: contain;
  transition: opacity 0.3s var(--ease), filter 0.45s var(--ease);
}
.header__logo:hover .header__logo-img { opacity: 0.75; }

/* --- Center Nav --- */
.header__nav {
  justify-self: center;
}
.header__nav-inner {
  display: contents;
}
.header__nav-top { display: none; }
.header__nav-bottom { display: none; }

.header__nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.8rem, 1.8vw, 1.4rem);
}

.header__nav-links a {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  padding: 0.4em 0;
  position: relative;
  transition: color 0.35s var(--ease);
  white-space: nowrap;
}
.header.scrolled .header__nav-links a,
.header.header--light .header__nav-links a {
  color: var(--gray-600);
}
.header__nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.35s var(--ease);
}
.header__nav-links a:hover {
  color: rgba(255,255,255,1);
}
.header.scrolled .header__nav-links a:hover,
.header.header--light .header__nav-links a:hover {
  color: var(--charcoal);
}
.header__nav-links a:hover::after { width: 100%; }
.header__nav-links a.active {
  color: rgba(255,255,255,1);
  font-weight: 600;
}
.header.scrolled .header__nav-links a.active,
.header.header--light .header__nav-links a.active {
  color: var(--charcoal);
}
.header__nav-links a.active::after { width: 100%; }

/* --- Right Actions --- */
.header__right {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  flex-shrink: 0;
  z-index: 2;
}

.header__lang {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.55);
  transition: color 0.35s var(--ease);
}
.header.scrolled .header__lang,
.header.header--light .header__lang {
  color: var(--gray-500);
}
.header__lang:hover { color: rgba(255,255,255,0.9); }
.header.scrolled .header__lang:hover,
.header.header--light .header__lang:hover { color: var(--accent); }

.header__divider {
  width: 1px;
  height: 16px;
  background: rgba(255,255,255,0.18);
  transition: background 0.35s var(--ease);
}
.header.scrolled .header__divider,
.header.header--light .header__divider {
  background: var(--gray-300);
}

.header__cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  background: transparent;
  padding: 0.6em 1.3em;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.28);
  transition: all 0.35s var(--ease);
}
.header.scrolled .header__cta,
.header.header--light .header__cta {
  color: var(--charcoal);
  border-color: var(--gray-300);
}
.header__cta svg { transition: transform 0.3s var(--ease); }
.header__cta:hover {
  color: var(--white);
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.5);
}
.header.scrolled .header__cta:hover,
.header.header--light .header__cta:hover {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
  box-shadow: 0 4px 16px rgba(242,101,34,0.25);
}
.header__cta:hover svg { transform: translateX(3px); }

/* --- Hamburger --- */
.header__burger {
  display: none;
  background: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: relative;
  z-index: 20;
  align-items: center;
  justify-content: center;
}

.header__burger-lines {
  position: relative;
  width: 20px;
  height: 12px;
}
.header__burger-lines span {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: rgba(255,255,255,0.9);
  transition: all 0.3s var(--ease-out), background 0.35s var(--ease);
}
.header.scrolled .header__burger-lines span,
.header.header--light .header__burger-lines span {
  background: var(--charcoal);
}
.header__burger-lines span:first-child { top: 0; }
.header__burger-lines span:last-child { bottom: 0; width: 14px; }

.header__burger.active .header__burger-lines span:first-child {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 20px;
}
.header__burger.active .header__burger-lines span:last-child {
  bottom: auto;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  width: 20px;
}

/* =============================================
   MOBILE MENU — Premium overlay
   ============================================= */
@media (max-width: 1100px) {
  .header {
    background: transparent;
  }
  .header.scrolled,
  .header.header--light {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
  }
  .header__inner {
    padding: 0 var(--space-md);
  }
  .header__nav {
    position: fixed;
    inset: 0;
    z-index: 15;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s var(--ease), visibility 0s 0.5s;
    justify-self: stretch;
  }
  .header__nav.open {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s var(--ease), visibility 0s 0s;
  }

  .header__nav-inner {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    background: var(--white);
    overflow-y: auto;
  }

  /* Top bar in mobile overlay */
  .header__nav-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem var(--space-2xl) var(--space-lg);
    border-bottom: 1px solid var(--gray-200);
    flex-shrink: 0;
  }
  .header__nav-brand { display: none; }
  .header__nav-brand-img {
    height: 36px;
    width: auto;
    object-fit: contain;
  }
  .header__nav-close {
    background: none;
    color: var(--gray-500);
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--gray-200);
    transition: all 0.3s;
  }
  .header__nav-close:hover {
    color: var(--charcoal);
    border-color: var(--charcoal);
  }

  /* Nav links */
  .header__nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: var(--space-2xl) var(--space-2xl);
    flex: 1;
  }
  .header__nav-links a::after {
    display: none;
  }
  .header__nav-links a {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 5vw, 2.2rem);
    font-weight: 400;
    letter-spacing: 0.02em;
    color: var(--gray-600);
    padding: 0.4em 0;
    opacity: 0;
    transform: translateY(8px);
    transition: color 0.3s, opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
  }
  .header__nav.open .header__nav-links a {
    opacity: 1;
    transform: translateY(0);
  }
  .header__nav.open .header__nav-links a:nth-child(1) { transition-delay: 0.05s; }
  .header__nav.open .header__nav-links a:nth-child(2) { transition-delay: 0.09s; }
  .header__nav.open .header__nav-links a:nth-child(3) { transition-delay: 0.13s; }
  .header__nav.open .header__nav-links a:nth-child(4) { transition-delay: 0.17s; }
  .header__nav.open .header__nav-links a:nth-child(5) { transition-delay: 0.21s; }
  .header__nav.open .header__nav-links a:nth-child(6) { transition-delay: 0.25s; }
  .header__nav.open .header__nav-links a:nth-child(7) { transition-delay: 0.29s; }
  .header__nav.open .header__nav-links a:nth-child(8) { transition-delay: 0.33s; }

  .header__nav-links a:hover { color: var(--charcoal); }
  .header__nav-links a.active {
    color: var(--accent);
    font-weight: 500;
  }

  /* Bottom */
  .header__nav-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-lg) var(--space-2xl) var(--space-2xl);
    border-top: 1px solid var(--gray-200);
    flex-shrink: 0;
    opacity: 0;
    transition: opacity 0.5s var(--ease-out) 0.4s;
  }
  .header__nav.open .header__nav-bottom { opacity: 1; }

  .header__nav-lang {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    
    color: var(--gray-500);
    transition: color 0.3s;
  }
  .header__nav-lang:hover { color: var(--charcoal); }

  .header__nav-cta {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    
    color: var(--accent);
    transition: color 0.3s;
  }
  .header__nav-cta:hover { color: var(--accent-light); }

  .header__burger { display: flex; }
  .header__cta { display: none; }
  .header__divider { display: none; }
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 1em 2.4em;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  
  border: 1px solid transparent;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.4s var(--ease);
  white-space: nowrap;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.btn svg { transition: transform 0.3s var(--ease); }
.btn:hover svg { transform: translateX(3px); }

.btn--pill { border-radius: 100px; }

.btn--primary {
  background: var(--charcoal);
  color: var(--white);
  border-color: var(--charcoal);
}
.btn--primary:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.btn--outline {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--gray-300);
}
.btn--outline:hover {
  background: var(--charcoal);
  color: var(--white);
  border-color: var(--charcoal);
  transform: translateY(-2px);
}

.btn--accent {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn--accent:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(242,101,34,0.35);
}

.btn--white {
  background: var(--white);
  color: var(--charcoal);
  border-color: var(--white);
}
.btn--white:hover {
  background: var(--cream);
  border-color: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255,255,255,0.2);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}
/* Koyu arka plan üzerinde outline buton */
.btn--outline.btn--light {
  background: transparent;
  color: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.3);
}
.btn--outline.btn--light:hover {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-2px);
}
.btn--ghost:hover {
  background: var(--white);
  color: var(--charcoal);
  border-color: var(--white);
}

.btn--glass {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border-color: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
}
.btn--glass:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.3);
  transform: translateY(-2px);
}

.btn--lg { padding: 1.15em 2.8em; font-size: 0.78rem; }
.btn--sm { padding: 0.6em 1.5em; font-size: 0.68rem; }
.btn--full { width: 100%; }

.btn--link {
  background: none;
  border: none;
  padding: 0;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--accent);
  
  font-size: 0.75rem;
}
.btn--link::after {
  content: ' →';
  transition: transform var(--duration-fast);
  display: inline-block;
}
.btn--link:hover::after { transform: translateX(4px); }
.btn--link:hover { color: var(--accent-dark); }

.section--dark .btn--outline {
  color: var(--charcoal);
  border-color: var(--gray-300);
}
.section--dark .btn--outline:hover {
  background: var(--charcoal);
  color: var(--white);
  border-color: var(--charcoal);
}

/* =============================================
   HERO — Cinematic full-bleed
   ============================================= */
/* İç sayfa hero'ları daha kısa */
.hero--page {
  min-height: 72vh !important;
}
.hero--page .hero__content {
  padding-bottom: var(--space-4xl);
}
@media (max-width: 768px) {
  .hero--page { min-height: 60vh !important; }
}

.hero {
  position: relative;
  min-height: 96vh;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  overflow: hidden;
  background: var(--black);
}
.hero__bg {
  position: absolute;
  inset: -20px;
  background-size: cover;
  background-position: center;
  opacity: 0.60;
  animation: heroZoom 22s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.06); }
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    170deg,
    rgba(6,5,4,0.18) 0%,
    rgba(6,5,4,0.38) 45%,
    rgba(6,5,4,0.88) 100%
  );
}
.hero__grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 3;
  text-align: left;
  width: 100%;
  max-width: var(--max-w-wide);
  margin: 0 auto;
  padding: calc(var(--header-h) + var(--space-3xl)) clamp(1.25rem, 3.5vw, 2.75rem) var(--space-5xl);
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: var(--space-2xl);
  padding: 0;
  border: none;
  border-radius: 0;
}
.hero__badge::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--accent);
}
.hero__badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse {
  0%,100% { opacity: 0.5; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.2); }
}
.hero__title {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 300;
  color: var(--white);
  line-height: 0.95;
  margin-bottom: var(--space-xl);
  letter-spacing: -0.04em;
}
.hero__title em {
  font-style: italic;
  color: var(--accent-light);
}
.hero__subtitle {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 300;
  color: rgba(255,255,255,0.48);
  max-width: 400px;
  margin: 0 0 var(--space-3xl) 0;
  line-height: 2;
  letter-spacing: 0.01em;
}
.hero__actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: var(--space-2xl);
  left: var(--space-2xl);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero__scroll span {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  
  color: rgba(255,255,255,0.3);
  writing-mode: vertical-lr;
}
.hero__scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollLine 2.5s ease-in-out infinite;
}
@keyframes scrollLine {
  0%,100% { opacity: 0.3; transform: scaleY(0.4); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}

/* Counter stats */
.hero__counter {
  position: absolute;
  bottom: var(--space-2xl);
  right: var(--space-2xl);
  z-index: 3;
  display: flex;
  gap: var(--space-2xl);
}
.hero__counter-item {
  text-align: center;
}
.hero__counter-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
}
.hero__counter-item span {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  
  color: rgba(255,255,255,0.3);
}

@media (max-width: 768px) {
  .hero__counter { display: none; }
  .hero__scroll { display: none; }
}

/* =============================================
   IMAGE SYSTEM
   ============================================= */
.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.img-frame {
  overflow: hidden;
  position: relative;
}
.img-frame img {
  transition: transform var(--duration) var(--ease);
}
.img-frame:hover img {
  transform: scale(1.04);
}

/* =============================================
   CARDS
   ============================================= */
.card-grid {
  display: grid;
  gap: var(--space-xl);
}
.card-grid--2 { grid-template-columns: repeat(2, 1fr); }
.card-grid--3 { grid-template-columns: repeat(3, 1fr); }
.card-grid--4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 768px) {
  .card-grid--2, .card-grid--3, .card-grid--4 { grid-template-columns: 1fr; }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .card-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .card-grid--4 { grid-template-columns: repeat(2, 1fr); }
}

.card {
  background: var(--white);
  border-radius: 0;
  overflow: hidden;
  transition: transform 0.5s var(--ease);
  border: 1px solid var(--gray-200);
}
.card:hover {
  transform: translateY(-4px);
}

.card__image {
  aspect-ratio: 3/2;
  overflow: hidden;
}
.card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration) var(--ease);
}
.card:hover .card__image img { transform: scale(1.06); }

.card__body { padding: var(--space-xl) var(--space-xl) var(--space-2xl); }
.card__eyebrow {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.15em;
  
  color: var(--accent);
  margin-bottom: var(--space-sm);
}
.card__title {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-sm);
}
.card__text {
  font-size: var(--text-sm);
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

/* =============================================
   BADGE
   ============================================= */
.badge {
  display: inline-block;
  padding: 0.3em 0.9em;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  
  letter-spacing: 0.08em;
  border-radius: 2px;
}
.badge--active { background: var(--charcoal); color: var(--white); }
.badge--soon { background: var(--accent); color: white; }
.badge--featured { background: var(--charcoal); color: white; }
.badge--new { background: var(--accent-glow); color: var(--accent-dark); }

/* =============================================
   BRANCH CARDS
   ============================================= */
.branch-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
  border: 1px solid rgba(0,0,0,0.06);
}
.branch-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.branch-card.featured { border-color: var(--accent); border-width: 2px; position: relative; }
.branch-card.featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  z-index: 1;
}
.branch-card__image {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.branch-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration) var(--ease);
}
.branch-card:hover .branch-card__image img { transform: scale(1.06); }

.branch-card__body {
  padding: var(--space-xl);
  flex: 1;
  display: flex;
  flex-direction: column;
}
.branch-card__header {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
  flex-wrap: wrap;
}
.branch-card__name {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 500;
}
.branch-card__address {
  font-size: var(--text-sm);
  color: var(--gray-500);
  margin-bottom: var(--space-sm);
}
.branch-card__hours {
  font-size: var(--text-xs);
  color: var(--gray-400);
  margin-bottom: var(--space-lg);
}
.branch-card__footer { margin-top: auto; }

/* =============================================
   PRODUCT SHOWCASE
   ============================================= */
.product-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .product-showcase { grid-template-columns: 1fr; }
}
.product-showcase--reverse { direction: rtl; }
.product-showcase--reverse > * { direction: ltr; }

.product-showcase__image {
  overflow: hidden;
  position: relative;
}
.product-showcase__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.product-showcase:hover .product-showcase__image img { transform: scale(1.04); }

.product-showcase__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-3xl);
}
@media (max-width: 768px) {
  .product-showcase__content { padding: var(--space-2xl); }
}
.product-showcase__content .section__eyebrow { margin-bottom: var(--space-md); }
.product-showcase__content h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  margin-bottom: var(--space-lg);
}
.product-showcase__content p {
  font-size: var(--text-base);
  color: var(--gray-600);
  line-height: 1.9;
  margin-bottom: var(--space-2xl);
  max-width: 420px;
}

/* =============================================
   MENU
   ============================================= */
.menu-category { margin-bottom: var(--space-4xl); }
.menu-category__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--gray-200);
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: var(--space-lg) 0;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  transition: background var(--duration-fast);
}
.menu-item:hover { background: var(--warm); margin: 0 calc(-1 * var(--space-md)); padding-left: var(--space-md); padding-right: var(--space-md); }
.menu-item__info { flex: 1; }
.menu-item__name {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
}
.menu-item__desc {
  font-size: var(--text-sm);
  color: var(--gray-500);
  margin-top: 4px;
  line-height: 1.6;
}
.menu-item__price {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 500;
  color: var(--accent);
  white-space: nowrap;
  margin-left: var(--space-xl);
}

/* =============================================
   BLOG
   ============================================= */
.blog-card__date {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.08em;
  
  margin-bottom: var(--space-sm);
}

.blog-post {
  max-width: var(--max-w-narrow);
  margin: 0 auto;
  padding-top: calc(var(--header-h) + var(--space-4xl));
}
.blog-post h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: var(--space-lg);
}
.blog-post__meta {
  font-size: var(--text-sm);
  color: var(--gray-400);
  margin-bottom: var(--space-3xl);
  padding-bottom: var(--space-2xl);
  border-bottom: 1px solid var(--gray-100);
}
.blog-post__body {
  font-size: 1.05rem;
  line-height: 2;
}
.blog-post__body p { margin-bottom: var(--space-xl); }
.blog-post__body strong { font-weight: 600; }
.blog-post__body a { color: var(--accent); border-bottom: 1px solid var(--accent-light); }

/* =============================================
   FORMS
   ============================================= */
.form-group { margin-bottom: var(--space-lg); }
.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-500);
  margin-bottom: var(--space-sm);
  letter-spacing: 0.08em;
}
.form-group label .required { color: var(--accent); font-weight: 700; }

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="number"],
.form-group input[type="url"],
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.9em 1.1em;
  font-size: var(--text-base);
  color: var(--charcoal);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  transition: all var(--duration-fast) var(--ease);
  appearance: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-300);
}
.form-group input.error,
.form-group textarea.error,
.form-group select.error { border-color: #c0392b; }

.form-group textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='1.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1em center;
  background-size: 1em;
  padding-right: 2.8em;
  cursor: pointer;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

.radio-group {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-xs);
}
.radio-label {
  display: flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.65em 1.2em;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  cursor: pointer;
  font-size: var(--text-sm);
  color: var(--gray-600);
  transition: all var(--duration-fast) var(--ease);
}
.radio-label:hover { border-color: var(--accent); color: var(--charcoal); }
.radio-label input[type="radio"] {
  accent-color: var(--accent);
  width: 16px;
  height: 16px;
  margin: 0;
}
.radio-label input[type="radio"]:checked + span,
.radio-label:has(input:checked) {
  border-color: var(--accent);
  color: var(--charcoal);
  font-weight: 500;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.6em;
  font-size: var(--text-sm);
  color: var(--gray-500);
  line-height: 1.6;
  cursor: pointer;
}
.checkbox-label input[type="checkbox"] {
  margin-top: 0.3em;
  accent-color: var(--accent);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.checkbox-label a { color: var(--accent); font-weight: 500; }
.checkbox-label a:hover { text-decoration: underline; }

.form-error {
  font-size: var(--text-xs);
  color: #c0392b;
  margin-top: var(--space-xs);
}

/* =============================================
   ALERTS
   ============================================= */
.alert {
  padding: var(--space-lg) var(--space-xl);
  border-radius: var(--radius);
  font-size: var(--text-sm);
  margin-bottom: var(--space-xl);
}
.alert--success { background: rgba(242,101,34,0.06); color: var(--charcoal); border-left: 3px solid var(--accent); }
.alert--error { background: #fdf0ee; color: #c0392b; border-left: 3px solid #c0392b; }

/* =============================================
   PAGE HEADER
   ============================================= */
.page-header {
  padding: calc(var(--header-h) + var(--space-5xl)) 0 var(--space-4xl);
  background: var(--white);
  color: var(--charcoal);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--gray-200);
}
.page-header .eyebrow { margin-bottom: var(--space-xl); }
.page-header .accent-line { margin-bottom: var(--space-xl); }
.page-header__title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  font-weight: 300;
  color: var(--charcoal);
  letter-spacing: -0.04em;
  line-height: 0.92;
  margin-bottom: var(--space-xl);
  position: relative;
}
.page-header__subtitle {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  color: var(--gray-600);
  position: relative;
  max-width: 500px;
  line-height: 1.9;
}

/* =============================================
   CTA BANNER
   ============================================= */
.cta-banner {
  text-align: center;
  padding: var(--space-4xl) var(--space-xl);
}
.cta-banner__title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: var(--space-lg);
}
.cta-banner__text {
  font-size: var(--text-lg);
  font-weight: 300;
  margin-bottom: var(--space-2xl);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}
.section--dark .cta-banner__text { color: var(--gray-400); }

/* =============================================
   EXPERIENCE / SPLIT BLOCKS
   ============================================= */
.exp-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}
.exp-block--reverse { direction: rtl; }
.exp-block--reverse > * { direction: ltr; }
@media (max-width: 768px) {
  .exp-block { grid-template-columns: 1fr; gap: var(--space-2xl); }
  .exp-block--reverse { direction: ltr; }
}
.exp-block__image {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.exp-block__image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--duration) var(--ease);
}
.exp-block:hover .exp-block__image img { transform: scale(1.03); }

.exp-block__content h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: var(--space-lg);
}
.exp-block__content p {
  font-size: var(--text-base);
  color: var(--gray-600);
  line-height: 1.9;
  margin-bottom: var(--space-md);
}

/* =============================================
   BRANCH SHOW (detail page)
   ============================================= */
.page-header--image {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: flex-end;
  padding: var(--space-4xl) 0 var(--space-2xl);
  background-size: cover;
  background-position: center;
}
.page-header--image__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
}
.page-header--image .page-header__title {
  margin-bottom: var(--space-sm);
}

.branch-back-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: rgba(255,255,255,0.7);
  font-size: var(--text-sm);
  margin-bottom: var(--space-lg);
  transition: color 0.3s var(--ease);
}
.branch-back-link:hover { color: var(--white); }

.branch-hero-badges {
  display: flex;
  gap: 8px;
  margin-top: var(--space-sm);
}

.branch-show {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: var(--space-3xl);
  align-items: start;
}
.branch-show__info-card {
  background: var(--white);
  border-radius: 0;
  border: 1px solid var(--gray-200);
  padding: var(--space-2xl);
  position: sticky;
  top: calc(var(--header-h) + var(--space-lg));
}
.branch-show__info-item {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--gray-100);
}
.branch-show__info-item:last-child { border-bottom: none; }
.branch-show__info-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  border-radius: var(--radius);
  color: var(--accent);
}
.branch-show__info-item strong {
  display: block;
  font-size: var(--text-xs);
  color: var(--gray-500);
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 2px;
}
.branch-show__info-item p {
  font-size: var(--text-sm);
  color: var(--charcoal);
  line-height: 1.5;
}
.branch-show__info-item a {
  color: var(--accent);
}
.branch-show__info-item a:hover {
  color: var(--accent-dark);
}

.branch-show__desc {
  margin-bottom: var(--space-2xl);
}
.branch-show__desc h2 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  margin-bottom: var(--space-md);
  color: var(--charcoal);
}
.branch-show__desc p {
  font-size: var(--text-base);
  color: var(--gray-600);
  line-height: 1.9;
}

.branch-show__map {
  border-radius: 0;
  overflow: hidden;
  border: 1px solid var(--gray-200);
  margin-top: var(--space-2xl);
}
.branch-show__map iframe {
  width: 100%;
  height: 400px;
  display: block;
  border: none;
}

@media (max-width: 800px) {
  .branch-show { grid-template-columns: 1fr; }
  .branch-show__info-card { position: static; }
}

/* =============================================
   CONTACT
   ============================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--space-3xl);
}
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info__item { margin-bottom: var(--space-2xl); }
.contact-info__item strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--gray-500);
  margin-bottom: var(--space-xs);
}
.contact-info__item a,
.contact-info__item p {
  font-size: var(--text-base);
  color: var(--charcoal);
  line-height: 1.6;
}
.contact-info__item a:hover { color: var(--accent); }

/* =============================================
   LEGAL CONTENT
   ============================================= */
.legal-content { max-width: var(--max-w-narrow); margin: 0 auto; }
.legal-content h2 { font-size: var(--text-2xl); margin: var(--space-3xl) 0 var(--space-lg); }
.legal-content h3 { font-size: var(--text-xl); margin: var(--space-2xl) 0 var(--space-md); }
.legal-content p { margin-bottom: var(--space-lg); color: var(--gray-700); line-height: 1.9; }
.legal-content ul { padding-left: var(--space-lg); margin-bottom: var(--space-lg); }
.legal-content ul li { margin-bottom: var(--space-sm); color: var(--gray-700); list-style: disc; }

/* =============================================
   FOOTER — Premium
   ============================================= */
.footer {
  background: var(--black);
  color: var(--gray-400);
  padding: 0 0 var(--space-2xl);
  overflow: hidden;
}
.footer__wordmark {
  font-family: var(--font-display);
  font-size: clamp(5rem, 18vw, 18rem);
  font-weight: 300;
  letter-spacing: -0.05em;
  line-height: 0.85;
  color: rgba(255,255,255,0.04);
  padding: var(--space-4xl) 0 0;
  pointer-events: none;
  user-select: none;
  overflow: hidden;
  white-space: nowrap;
}
.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2xl);
  padding-bottom: var(--space-2xl);
  padding-top: var(--space-2xl);
}
.footer__tagline {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 300;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.06em;
  margin: 0;
}
.footer__logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
}
.footer__hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  
  color: var(--accent);
  padding: 0.8em 2em;
  border: 1px solid rgba(242,101,34,0.3);
  border-radius: 100px;
  transition: all 0.4s var(--ease);
  white-space: nowrap;
  flex-shrink: 0;
}
.footer__hero-cta svg { transition: transform 0.3s var(--ease); }
.footer__hero-cta:hover {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.footer__hero-cta:hover svg { transform: translateX(3px); }

.footer__divider {
  height: 1px;
  background: rgba(255,255,255,0.06);
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-3xl);
  padding: var(--space-3xl) 0;
}
@media (max-width: 768px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--space-2xl); }
  .footer__hero { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) { .footer__grid { grid-template-columns: 1fr; } }

.footer__heading {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  
  letter-spacing: 0.15em;
  color: var(--gray-500);
  margin-bottom: var(--space-lg);
}

.footer__links a {
  display: block;
  font-size: var(--text-sm);
  color: var(--gray-500);
  padding: 5px 0;
  transition: color 0.3s, transform 0.3s;
}
.footer__links a:hover { color: var(--white); transform: translateX(4px); }

.footer__bottom {
  padding-top: var(--space-xl);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--text-xs);
  color: var(--gray-600);
  flex-wrap: wrap;
  gap: var(--space-md);
  letter-spacing: 0.04em;
}
.footer__bottom-links {
  display: flex;
  gap: var(--space-xl);
}
.footer__bottom a:hover { color: var(--accent); }

/* =============================================
   ANIMATIONS
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.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; }

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   MARQUEE / TICKER
   ============================================= */
.marquee {
  overflow: hidden;
  white-space: nowrap;
  padding: var(--space-xl) 0;
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.marquee__inner {
  display: inline-flex;
  animation: marquee 30s linear infinite;
}
.marquee__item {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 300;
  color: var(--gray-300);
  padding: 0 var(--space-3xl);
}
.marquee__item span { color: var(--accent); font-size: 0.6em; vertical-align: middle; }
.marquee__item em { font-style: italic; color: var(--accent); font-weight: 400; }
.marquee__item--dot { color: var(--accent); padding: 0 var(--space-lg); font-size: 1rem; opacity: 0.6; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.section--dark .marquee { border-color: rgba(255,255,255,0.06); }
.section--dark .marquee__item { color: var(--gray-700); }

/* =============================================
   FRANCHISE REASONS
   ============================================= */
.franchise-reasons {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: var(--space-4xl);
}
.franchise-reason {
  display: flex;
  align-items: flex-start;
  gap: var(--space-xl);
  padding: var(--space-2xl) 0;
  border-bottom: 1px solid var(--gray-200);
  transition: all var(--duration) var(--ease);
}
.franchise-reason:first-child { border-top: 1px solid var(--gray-200); }
.franchise-reason:hover { padding-left: var(--space-md); }
.franchise-reason__num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
  flex-shrink: 0;
  width: 3rem;
}
.franchise-reason__body { flex: 1; }
.franchise-reason__title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-xs);
  color: var(--charcoal);
}
.franchise-reason__text {
  font-size: var(--text-sm);
  color: var(--gray-500);
  line-height: 1.7;
}
@media (max-width: 640px) {
  .franchise-reason { gap: var(--space-md); padding: var(--space-xl) 0; }
  .franchise-reason__num { width: 2.5rem; font-size: 1.75rem; }
}

/* =============================================
   HONEYPOT
   ============================================= */
.ohnohoney { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* =============================================
   MISC
   ============================================= */
.text-muted { color: var(--gray-500); }
.text-accent { color: var(--accent); }
.text-sm { font-size: var(--text-sm); }
.mt-2 { margin-top: var(--space-xl); }
.mb-2 { margin-bottom: var(--space-xl); }

/* =============================================
   ENHANCED DESIGN — Visual Upgrades v3
   ============================================= */

/* Page header eyebrow — simple text */
.page-header .eyebrow,
.page-header .section__eyebrow {
  padding: 0;
  border: none;
  border-radius: 0;
}

/* Page header accent — subtle left bar */
.page-header::after { display: none; }

/* Better card hover states */
.card {
  text-decoration: none;
  display: block;
}
.card:hover .card__title { color: var(--accent-dark); }
.card__title { transition: color 0.3s; }

@keyframes featuredPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(242,101,34,0.08); }
  50% { box-shadow: 0 4px 30px rgba(242,101,34,0.25); }
}

/* Blog card date line */
.card__eyebrow::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background: var(--accent);
  margin-right: var(--space-sm);
  vertical-align: middle;
}

/* Smooth parallax on hero background */
@media (prefers-reduced-motion: no-preference) {
  .hero__bg { will-change: transform; }
}


/* Better mobile spacing */
@media (max-width: 768px) {
  .section { padding: var(--space-3xl) 0; }
  .section--lg { padding: var(--space-3xl) 0; }
  .section--dark, .section--black { margin: 0; }
  .page-header {
    padding: calc(var(--header-h) + var(--space-3xl)) 0 var(--space-2xl);
    margin: 0;
    border-radius: 0;
  }
  .hero {
    min-height: 90vh;
    margin: 0;
    border-radius: 0;
  }
  .hero__content {
    padding: calc(var(--header-h) + var(--space-2xl)) var(--space-md) var(--space-4xl);
  }
  .hero__title { font-size: clamp(2.8rem, 10vw, 5rem); }
  .hero__subtitle { max-width: 100%; }
  .cinema-panel { margin: 0; }
  .marquee { margin: 0; }
  .footer { margin: 0; }
  .exp-block { gap: var(--space-xl); }
}


/* =============================================
   NEW COMPONENTS v3
   ============================================= */

/* --- Eyebrow (universal) --- */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-block;
  margin-bottom: var(--space-xl);
}
.eyebrow--light { color: var(--accent-light); }
.eyebrow--muted { color: var(--gray-500); }

/* --- Section header --- */
.section-header { margin-bottom: var(--space-3xl); }
.section-header__sub {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--gray-600);
  max-width: 480px;
  margin: var(--space-lg) auto 0;
  line-height: 2;
}

/* --- Accent line --- */
.accent-line {
  width: 40px;
  height: 1px;
  background: var(--accent);
  margin: var(--space-xl) 0 var(--space-2xl);
}
.text-center .accent-line { margin-left: auto; margin-right: auto; }

/* --- Typography helpers --- */
.h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.03em;
}
.lead {
  font-size: 1rem;
  font-weight: 300;
  color: var(--gray-600);
  line-height: 2;
  margin-bottom: var(--space-md);
  max-width: 520px;
}
.section--lg { padding: var(--space-6xl) 0; }

/* =============================================
   SPLIT FEATURE (Intro block)
   ============================================= */
.split-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5xl);
  align-items: center;
}
@media (max-width: 900px) {
  .split-feature { grid-template-columns: 1fr; gap: var(--space-3xl); }
}
.split-feature__media {
  position: relative;
}
.split-feature__img-wrap {
  border-radius: 0;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.split-feature__img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.split-feature:hover .split-feature__img-wrap img { transform: scale(1.04); }

.split-feature__float-card {
  position: absolute;
  bottom: var(--space-xl); right: calc(-1 * var(--space-2xl));
  background: var(--white);
  color: var(--charcoal);
  padding: var(--space-lg) var(--space-xl);
  border-radius: 0;
  text-align: center;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-md);
}
.split-feature__float-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 300;
  line-height: 1;
  color: var(--accent);
}
.split-feature__float-label {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-top: 4px;
}
@media (max-width: 600px) {
  .split-feature__float-card { bottom: -12px; right: 12px; padding: var(--space-md) var(--space-lg); }
  .split-feature__float-number { font-size: 1.4rem; }
}

.split-feature__content p {
  font-size: var(--text-base);
  color: var(--gray-600);
  line-height: 1.9;
  margin-bottom: var(--space-md);
}

/* =============================================
   LOCATION CARDS (uniform grid)
   ============================================= */
.loc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-3xl);
}
.loc-grid--2 {
  grid-template-columns: repeat(2, 1fr);
}
/* Ana sayfa: 5 kart — ilk 2 geniş (2+3 layout) */
.loc-grid--home {
  grid-template-columns: repeat(6, 1fr);
}
.loc-grid--home .loc-card:nth-child(1),
.loc-grid--home .loc-card:nth-child(2) {
  grid-column: span 3;
}
.loc-grid--home .loc-card:nth-child(3),
.loc-grid--home .loc-card:nth-child(4),
.loc-grid--home .loc-card:nth-child(5) {
  grid-column: span 2;
}
@media (max-width: 1024px) {
  .loc-grid { grid-template-columns: repeat(2, 1fr); }
  .loc-grid--home { grid-template-columns: repeat(2, 1fr); }
  .loc-grid--home .loc-card:nth-child(n) { grid-column: span 1; }
}
@media (max-width: 600px) {
  .loc-grid,
  .loc-grid--2,
  .loc-grid--home { grid-template-columns: 1fr; }
  .loc-grid--home .loc-card:nth-child(n) { grid-column: span 1; }
}

.loc-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 0;
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: transform 0.4s var(--ease), border-color 0.3s var(--ease);
}
.loc-card:hover {
  transform: translateY(-4px);
  border-color: var(--gray-400);
}

.loc-card__img {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--charcoal);
}
/* Görsel yokken konum placeholder */
.loc-card__img--placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(145deg, #1C1A17 0%, #2a2520 100%);
}
.loc-card__img--placeholder::before {
  content: '';
  display: block;
  width: 44px;
  height: 44px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  border: 2px solid rgba(242,101,34,0.5);
  background: rgba(242,101,34,0.1);
}
.loc-card__img--placeholder::after {
  content: var(--branch-name, 'FEDERICO');
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-top: 8px;
}
.loc-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.loc-card:hover .loc-card__img img {
  transform: scale(1.05);
}
.loc-card__badge {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  display: flex;
  gap: 6px;
}

.loc-card__body {
  padding: var(--space-lg);
  flex: 1;
  display: flex;
  flex-direction: column;
}
.loc-card__name {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: var(--space-md);
}
.loc-card__desc {
  font-size: var(--text-sm);
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: var(--space-md);
}
.loc-card__meta {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: var(--text-sm);
  color: var(--gray-600);
  line-height: 1.5;
  margin-bottom: 6px;
}
.loc-card__meta svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--accent);
  opacity: 0.7;
}
.loc-card__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--accent);
  margin-top: auto;
  padding-top: var(--space-md);
  transition: gap 0.3s var(--ease);
}
.loc-card:hover .loc-card__link { gap: 8px; }

.loc-card--lg .loc-card__name {
  font-size: var(--text-2xl);
}

/* =============================================
   CINEMA PANELS (Product showcases)
   ============================================= */
/* =============================================
   PRODUCT GRID (home page)
   ============================================= */
.prod-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-3xl);
}
.prod-card--wide {
  grid-column: span 2;
}
@media (max-width: 900px) {
  .prod-grid { grid-template-columns: repeat(2, 1fr); }
  .prod-card--wide { grid-column: span 2; }
}
@media (max-width: 600px) {
  .prod-grid { grid-template-columns: 1fr; }
  .prod-card--wide { grid-column: span 1; }
}

.prod-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 0;
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: transform 0.4s var(--ease), border-color 0.3s var(--ease);
}
.prod-card:hover {
  transform: translateY(-4px);
  border-color: var(--gray-400);
}

.prod-card__img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  position: relative;
}
.prod-card--wide .prod-card__img {
  aspect-ratio: 21 / 10;
}
.prod-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.prod-card:hover .prod-card__img img {
  transform: scale(1.06);
}

.prod-card__body {
  padding: var(--space-lg);
  flex: 1;
  display: flex;
  flex-direction: column;
}
.prod-card__tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 6px;
}
.prod-card__body h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: var(--space-sm);
}
.prod-card--wide .prod-card__body h3 {
  font-size: var(--text-2xl);
}
.prod-card__body p {
  font-size: var(--text-sm);
  color: var(--gray-600);
  line-height: 1.6;
}

.section--flush { padding: 0; margin: 0; }
.section--flush + .section--flush { border-top: 1px solid var(--gray-200); }

.cinema-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  overflow: hidden;
}
.cinema-panel--reverse { direction: rtl; }
.cinema-panel--reverse > * { direction: ltr; }

@media (max-width: 768px) {
  .cinema-panel {
    grid-template-columns: 1fr;
    min-height: auto;
    margin: var(--space-sm) var(--space-md) 0;
  }
  .cinema-panel--reverse { direction: ltr; }
}

.cinema-panel__media {
  overflow: hidden;
  position: relative;
}
.cinema-panel__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.cinema-panel:hover .cinema-panel__media img { transform: scale(1.05); }
.cinema-panel__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.12), transparent);
  pointer-events: none;
}

.cinema-panel__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-5xl) clamp(var(--space-2xl), 5vw, var(--space-5xl));
  position: relative;
}
.cinema-panel__content--dark {
  background: var(--cream);
}
.cinema-panel__content--black {
  background: var(--charcoal);
  color: var(--white);
}
.cinema-panel__content--black h2,
.cinema-panel__content--black .eyebrow { color: inherit; }
.cinema-panel__content--black p { color: rgba(255,255,255,0.55); }
.cinema-panel__content h2 { margin-bottom: var(--space-xl); }
.cinema-panel__content p {
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 2;
  margin-bottom: var(--space-lg);
  max-width: 440px;
}
.cinema-panel__content .eyebrow { margin-bottom: var(--space-lg); }

@media (max-width: 768px) {
  .cinema-panel__content { padding: var(--space-3xl) var(--space-xl); }
}

/* =============================================
   STORE SECTION (home page)
   ============================================= */
.store-section__header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}
.store-section__header p {
  font-size: var(--text-base);
  color: var(--gray-600);
  margin-top: var(--space-sm);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.store-products {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--space-lg);
}
.store-products--4 {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1024px) { .store-products { grid-template-columns: repeat(3, 1fr); } .store-products--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .store-products, .store-products--4 { grid-template-columns: repeat(2, 1fr); } }

.store-item {
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: transform 0.4s var(--ease);
}
.store-item:hover {
  transform: translateY(-5px);
}
.store-item__img {
  aspect-ratio: 1 / 1;
  border-radius: 0;
  overflow: hidden;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  margin-bottom: var(--space-md);
}
.section--store-dark .store-item__cat { color: var(--white); }
.section--store-dark .store-item__name { color: rgba(255,255,255,0.4); }
.section--store-dark .store-badge svg { color: var(--accent-light); }
.store-item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.store-item:hover .store-item__img img {
  transform: scale(1.08);
}
.store-item__cat {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 2px;
}
.store-item__name {
  font-size: var(--text-xs);
  color: var(--gray-500);
  line-height: 1.4;
}

.store-section__footer {
  margin-top: var(--space-2xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xl);
}
.store-section__badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-lg);
}
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--text-sm);
  color: var(--gray-600);
}
.store-badge svg {
  color: var(--accent);
  flex-shrink: 0;
}

/* =============================================
   FRANCHISE STATEMENT — full-bleed dark cinematic
   ============================================= */
.franchise-stmt {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}
.franchise-stmt__media {
  position: absolute;
  inset: 0;
}
.franchise-stmt__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.35;
}
.franchise-stmt__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(6,5,4,0.85) 0%, rgba(6,5,4,0.55) 60%, rgba(6,5,4,0.3) 100%);
}
.franchise-stmt__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--space-5xl);
  align-items: center;
  padding-top: var(--space-6xl);
  padding-bottom: var(--space-6xl);
}
.franchise-stmt__label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-xl);
}
.franchise-stmt__title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 0.92;
  letter-spacing: -0.04em;
}
.franchise-stmt__title em {
  font-style: italic;
  color: var(--accent-light);
}
.franchise-stmt__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-bottom: var(--space-3xl);
  padding-bottom: var(--space-3xl);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.franchise-stmt__stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}
.franchise-stmt__stat span {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.franchise-stmt__text {
  font-size: 0.9375rem;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  line-height: 1.9;
  margin-bottom: var(--space-3xl);
  max-width: 380px;
}
@media (max-width: 900px) {
  .franchise-stmt__inner {
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
    padding-top: var(--space-5xl);
    padding-bottom: var(--space-5xl);
  }
  .franchise-stmt__stats { grid-template-columns: repeat(3, 1fr); gap: var(--space-md); }
  .franchise-stmt__text { max-width: 100%; }
}
@media (max-width: 500px) {
  .franchise-stmt__stats { grid-template-columns: 1fr 1fr; }
}

/* =============================================
   MARQUEE v3
   ============================================= */
.marquee {
  overflow: hidden;
  white-space: nowrap;
  padding: var(--space-xl) 0;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}
.marquee__track {
  display: inline-flex;
  animation: marquee 40s linear infinite;
}
.marquee__item {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.8vw, 2.4rem);
  font-weight: 300;
  font-style: italic;
  color: var(--gray-500);
  padding: 0 var(--space-3xl);
  position: relative;
}
.marquee__item em {
  font-style: normal;
  color: var(--accent);
  margin-left: 0.5em;
  font-size: 0.55em;
  font-family: var(--font-body);
  letter-spacing: 0.15em;
  font-weight: 500;
  text-transform: uppercase;
  vertical-align: middle;
}
.marquee__item::after {
  content: '—';
  position: absolute;
  right: 0;
  color: var(--gray-300);
  font-style: normal;
  font-size: 0.8em;
  top: 50%;
  transform: translateY(-50%);
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-33.333%); }
}

/* =============================================
   CARD LINK STYLE
   ============================================= */
.card__link {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--accent);
  transition: color 0.3s;
}
.card:hover .card__link { color: var(--accent-dark); }

/* =============================================
   BADGE refinements
   ============================================= */
.badge {
  padding: 0.3em 0.8em;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  border-radius: 100px;
}
.badge--active {
  background: rgba(51,51,51,0.9);
  color: var(--white);
  border: 1px solid var(--charcoal);
}
.badge--soon {
  background: rgba(242,101,34,0.15);
  color: var(--accent-light);
  border: 1px solid rgba(242,101,34,0.2);
}
.badge--featured {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.15);
}

/* =============================================
   COOKIE CONSENT BANNER
   ============================================= */
.cookie-banner {
  position: fixed;
  bottom: var(--space-lg);
  left: var(--space-lg);
  right: var(--space-lg);
  z-index: 9999;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
  pointer-events: none;
}
.cookie-banner.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.cookie-banner__inner {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: var(--space-lg) var(--space-xl);
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}
.cookie-banner__inner p {
  flex: 1;
  font-size: var(--text-sm);
  color: var(--gray-600);
  line-height: 1.6;
  margin: 0;
}
.cookie-banner__inner p a {
  color: var(--accent);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-banner__actions {
  display: flex;
  gap: var(--space-sm);
  flex-shrink: 0;
}
.cookie-banner__btn {
  padding: 0.5em 1.2em;
  border-radius: 100px;
  font-size: var(--text-sm);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  border: 1px solid transparent;
}
.cookie-banner__btn--accept {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.cookie-banner__btn--accept:hover {
  background: var(--accent-dark);
}
.cookie-banner__btn--decline {
  background: transparent;
  color: var(--gray-500);
  border-color: var(--gray-300);
}
.cookie-banner__btn--decline:hover {
  border-color: var(--gray-400);
  color: var(--charcoal);
}
@media (max-width: 600px) {
  .cookie-banner {
    left: var(--space-sm);
    right: var(--space-sm);
    bottom: var(--space-sm);
  }
  .cookie-banner__inner {
    flex-direction: column;
    text-align: center;
    padding: var(--space-lg);
    gap: var(--space-md);
  }
}
