/* =========================================================
   BISTRO CICHY KĄCIK — Premium Styles
   ========================================================= */

/* ---- TOKENS ---- */
:root {
  /* Color Palette */
  --burgundy:       #7B1D1D;
  --burgundy-dark:  #5a1010;
  --burgundy-light: #9b2c2c;
  --cream:          #FAF4E8;
  --cream-dark:     #F0E6CE;
  --wood:           #6F4E37;
  --wood-light:     #8B6347;
  --wood-dark:      #4A3324;
  --gold:           #C9A84C;
  --gold-light:     #E8C76E;
  --charcoal:       #1A1008;
  --text-body:      #3D2B1F;
  --text-muted:     #7A6050;
  --surface:        #ffffff;
  --surface-warm:   #FDF8F0;
  --border:         rgba(111, 78, 55, 0.15);

  /* Typography */
  --font-heading: 'Lora', Georgia, serif;
  --font-body:    'Nunito', system-ui, sans-serif;

  /* Spacing */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  2rem;
  --space-lg:  4rem;
  --space-xl:  6rem;

  /* Borders */
  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  40px;

  /* Shadows */
  --shadow-sm:  0 2px 12px rgba(123, 29, 29, 0.06);
  --shadow-md:  0 8px 32px rgba(123, 29, 29, 0.10);
  --shadow-lg:  0 20px 60px rgba(123, 29, 29, 0.15);
  --shadow-xl:  0 32px 80px rgba(26, 16, 8, 0.20);

  /* Transitions */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in:  cubic-bezier(0.64, 0, 0.78, 0);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: var(--cream);
  color: var(--text-body);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

address {
  font-style: normal;
}

/* ---- CONTAINERS ---- */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
}

em {
  font-style: italic;
  color: var(--burgundy);
}

.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.3);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--wood-dark);
  margin-bottom: 1rem;
  font-weight: 600;
}

.section-title.text-left {
  text-align: left;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

/* ---- ANIMATIONS ---- */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--burgundy);
  color: #fff;
  box-shadow: 0 4px 20px rgba(123, 29, 29, 0.4);
}

.btn-primary:hover {
  background: var(--burgundy-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(123, 29, 29, 0.5);
}

.btn-primary svg {
  transition: transform 0.3s;
}

.btn-primary:hover svg {
  transform: translateX(4px);
}

.btn-outline-hero {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  border: 2px solid rgba(255, 255, 255, 0.6);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(4px);
  transition: all 0.3s var(--ease-out);
}

.btn-outline-hero:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #fff;
  transform: translateY(-2px);
}

.btn-nav {
  display: inline-block;
  background: var(--burgundy);
  color: #fff !important;
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.3s var(--ease-out);
  white-space: nowrap;
}

.btn-nav:hover {
  background: var(--burgundy-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(123, 29, 29, 0.4);
}

/* =========================================================
   NAVBAR
   ========================================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: all 0.4s var(--ease-out);
}

.navbar.scrolled {
  background: rgba(250, 244, 232, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  box-shadow: var(--shadow-sm);
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--cream);
  transition: color 0.4s;
  flex-shrink: 0;
}

.navbar.scrolled .logo {
  color: var(--wood-dark);
}

.logo-icon {
  font-size: 1.6rem;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

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

.navbar.scrolled .logo-text em {
  color: var(--burgundy);
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  display: inline-block;
  font-weight: 600;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all 0.25s;
  white-space: nowrap;
}

.nav-link:hover {
  color: #fff;
  background: rgba(255,255,255,0.1);
}

.navbar.scrolled .nav-link {
  color: var(--text-body);
}

.navbar.scrolled .nav-link:hover {
  color: var(--burgundy);
  background: rgba(123, 29, 29, 0.06);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.3s;
}

.navbar.scrolled .hamburger {
  background: rgba(123, 29, 29, 0.08);
  border-color: var(--border);
}

.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s var(--ease-out);
  transform-origin: center;
}

.navbar.scrolled .hamburger span {
  background: var(--wood-dark);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  transition: transform 8s ease-out;
}

.hero.loaded .hero-img {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    160deg,
    rgba(26, 16, 8, 0.72) 0%,
    rgba(90, 16, 16, 0.55) 45%,
    rgba(26, 16, 8, 0.80) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 2rem 0;
}

.hero-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.4);
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.hero-content h1 {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  margin-bottom: 1.5rem;
  line-height: 1.1;
  color: #fff;
  font-weight: 700;
  text-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

.hero-content h1 em {
  color: var(--gold-light);
  display: block;
}

.hero-sub {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: rgba(255,255,255,0.82);
  max-width: 580px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 4px;
}

.stat span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.65);
  font-weight: 600;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scroll-arrow {
  width: 22px;
  height: 22px;
  border-right: 2px solid rgba(255,255,255,0.4);
  border-bottom: 2px solid rgba(255,255,255,0.4);
  transform: rotate(45deg);
  animation: scrollBounce 2s ease-in-out infinite;
}

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

/* =========================================================
   DZISIAJ W MENU
   ========================================================= */
.dzisiaj-section {
  padding: 5rem 0;
  background: var(--cream-dark);
  position: relative;
}

.dzisiaj-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--burgundy), var(--gold), var(--burgundy));
}

.dzisiaj-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  position: relative;
}

.dzisiaj-tag {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 2;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.3);
  padding: 6px 14px;
  border-radius: 100px;
}

.dzisiaj-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 440px;
}

.dzisiaj-main {
  padding: 4rem 3rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
}

.dzisiaj-main h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--wood-dark);
  line-height: 1.15;
}

.dzisiaj-main p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 420px;
  line-height: 1.8;
}

.dzisiaj-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.price-amount {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--burgundy);
}

.price-note {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.dzisiaj-image {
  position: relative;
  overflow: hidden;
}

.dzisiaj-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.dzisiaj-card:hover .dzisiaj-image img {
  transform: scale(1.04);
}

.dzisiaj-img-badge {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: var(--burgundy);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 16px rgba(123, 29, 29, 0.4);
}

/* =========================================================
   MENU SECTION
   ========================================================= */
.menu-section {
  padding: var(--space-xl) 0;
  background: var(--surface-warm);
  position: relative;
}

/* Tabs */
.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  background: var(--cream-dark);
  border-radius: var(--radius-md);
  padding: 0.5rem;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.tab-btn {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-muted);
  background: transparent;
  border: none;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  white-space: nowrap;
}

.tab-btn:hover {
  color: var(--burgundy);
  background: rgba(123, 29, 29, 0.06);
}

.tab-btn.active {
  background: var(--surface);
  color: var(--burgundy);
  box-shadow: var(--shadow-sm);
}

/* Panels */
.menu-panel {
  display: none;
}

.menu-panel.active {
  display: block;
}

/* Menu Grid */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.25rem;
}

.menu-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all 0.35s var(--ease-out);
  display: flex;
  gap: 0;
}

.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(123, 29, 29, 0.15);
}

.menu-card-icon {
  width: 64px;
  min-width: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  background: var(--cream-dark);
  border-right: 1px solid var(--border);
}

.menu-card-body {
  padding: 1.25rem 1.25rem 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.menu-item-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.menu-item-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--wood-dark);
  margin-bottom: 4px;
  font-weight: 600;
}

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

.menu-item-price {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--burgundy);
  white-space: nowrap;
  flex-shrink: 0;
}

.menu-item-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  margin-top: 4px;
}

.menu-item-badge.bestseller {
  background: rgba(123, 29, 29, 0.1);
  color: var(--burgundy);
}

.menu-item-badge.new {
  background: rgba(46, 125, 50, 0.1);
  color: #2e7d32;
}

.menu-item-badge.seasonal {
  background: rgba(201, 168, 76, 0.15);
  color: #8a6a00;
}

.menu-footer {
  text-align: center;
  margin-top: 3rem;
  padding: 1.75rem 2rem;
  background: var(--cream-dark);
  border-radius: var(--radius-md);
  color: var(--text-muted);
  font-size: 0.95rem;
  border: 1px dashed rgba(111, 78, 55, 0.25);
}

/* =========================================================
   ABOUT / NASZA KUCHNIA
   ========================================================= */
.about-section {
  padding: var(--space-xl) 0;
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-img-wrapper {
  position: relative;
}

.about-img-wrapper img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4/5;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.about-img-wrapper:hover img {
  transform: scale(1.02);
}

.about-img-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 1rem 1.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--wood-dark);
  font-weight: 600;
  max-width: 240px;
}

.about-img-badge span {
  font-size: 2rem;
}

.about-lead {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--wood-dark);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.about-text-col > p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.about-features {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: all 0.3s var(--ease-out);
}

.about-feature:hover {
  border-color: rgba(123, 29, 29, 0.2);
  box-shadow: var(--shadow-sm);
}

.feature-icon {
  font-size: 1.6rem;
  width: 44px;
  text-align: center;
  flex-shrink: 0;
}

.about-feature strong {
  display: block;
  font-size: 0.95rem;
  color: var(--wood-dark);
  margin-bottom: 2px;
}

.about-feature span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonials-section {
  padding: var(--space-xl) 0;
  background: linear-gradient(160deg, var(--wood-dark) 0%, var(--burgundy-dark) 100%);
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '"';
  position: absolute;
  top: -2rem;
  left: -1rem;
  font-family: var(--font-heading);
  font-size: 30rem;
  color: rgba(255,255,255,0.02);
  line-height: 1;
  pointer-events: none;
}

.testimonials-section .section-tag {
  color: var(--gold-light);
  background: rgba(201, 168, 76, 0.1);
  border-color: rgba(201, 168, 76, 0.25);
}

.testimonials-section .section-title {
  color: #fff;
}

.testimonials-section .section-title em {
  color: var(--gold-light);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  backdrop-filter: blur(10px);
  transition: all 0.35s var(--ease-out);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.testimonial-card:hover {
  background: rgba(255,255,255,0.09);
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.3);
}

.testimonial-stars {
  color: var(--gold-light);
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.testimonial-card blockquote {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
  font-style: italic;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--burgundy), var(--gold));
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 0.95rem;
  color: #fff;
}

.testimonial-author span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
}

/* =========================================================
   DELIVERY SECTION
   ========================================================= */
.delivery-section {
  padding: var(--space-xl) 0;
  background: var(--surface-warm);
}

.delivery-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.delivery-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  transition: all 0.35s var(--ease-out);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.delivery-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--burgundy), var(--burgundy-dark));
  opacity: 0;
  transition: opacity 0.35s;
}

.delivery-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--burgundy);
}

.delivery-card:hover::before {
  opacity: 1;
}

.delivery-card > * {
  position: relative;
  z-index: 1;
}

.delivery-card-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.delivery-card-logo span {
  font-size: 2.5rem;
  line-height: 1;
}

.delivery-card-logo strong {
  font-size: 1.1rem;
  color: var(--wood-dark);
  transition: color 0.35s;
}

.delivery-card:hover .delivery-card-logo strong {
  color: #fff;
}

.delivery-card > p {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
  transition: color 0.35s;
}

.delivery-card:hover > p {
  color: rgba(255,255,255,0.8);
}

.delivery-arrow {
  font-size: 1.2rem;
  color: var(--burgundy);
  transition: all 0.35s;
}

.delivery-card:hover .delivery-arrow {
  color: #fff;
  transform: translateX(4px);
}

.delivery-card-phone {
  border: 2px solid var(--burgundy);
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--charcoal);
}

.footer-top {
  padding: 5rem 0 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--cream);
  margin-bottom: 1rem;
}

.footer-logo span:first-child {
  font-size: 1.8rem;
}

.footer-logo em {
  color: var(--gold-light);
}

.footer-tagline {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  color: rgba(255,255,255,0.6);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  transition: all 0.3s;
}

.social-link:hover {
  background: var(--burgundy);
  border-color: var(--burgundy);
  color: #fff;
}

.footer-col h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--cream);
  font-weight: 600;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-col address p {
  color: rgba(255,255,255,0.65);
  font-size: 0.92rem;
  margin-bottom: 0.25rem;
}

.footer-link {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: var(--gold-light);
  transition: color 0.25s;
}

.footer-link:hover {
  color: var(--gold);
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 0.88rem;
  gap: 0.5rem;
}

.hours-list li span {
  color: rgba(255,255,255,0.55);
}

.hours-list li strong {
  color: var(--cream);
  font-weight: 600;
}

.hours-list li.closed strong {
  color: rgba(255,255,255,0.35);
}

.footer-contact-link {
  display: block;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 0.75rem;
  transition: color 0.25s;
}

.footer-contact-link:hover {
  color: var(--gold-light);
}

.footer-delivery-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.delivery-badge {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold-light);
  border: 1px solid rgba(201, 168, 76, 0.3);
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(201, 168, 76, 0.08);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1.5rem 0;
  display: flex;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
}

.footer-credit-link {
  color: var(--gold-light);
  transition: color 0.25s;
}

.footer-credit-link:hover {
  color: var(--gold);
}

/* =========================================================
   FLOATING CALL BUTTON
   ========================================================= */
.floating-call {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.floating-call-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--burgundy), var(--burgundy-dark));
  color: #fff;
  padding: 14px 22px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 8px 28px rgba(123, 29, 29, 0.5);
  transition: all 0.35s var(--ease-out);
  position: relative;
  z-index: 1;
}

.floating-call:hover .floating-call-inner {
  background: linear-gradient(135deg, var(--burgundy-dark), #400000);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(123, 29, 29, 0.6);
}

.floating-icon {
  font-size: 1.2rem;
  animation: phoneRing 3s ease-in-out infinite;
}

@keyframes phoneRing {
  0%, 90%, 100% { transform: rotate(0deg); }
  92%  { transform: rotate(-15deg); }
  94%  { transform: rotate(15deg); }
  96%  { transform: rotate(-10deg); }
  98%  { transform: rotate(10deg); }
}

.floating-pulse {
  position: absolute;
  inset: 0;
  border-radius: 100px;
  background: var(--burgundy);
  animation: pulseRing 2.5s ease-out infinite;
  opacity: 0;
}

@keyframes pulseRing {
  0%   { transform: scale(1);   opacity: 0.5; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .delivery-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-img-badge {
    right: 1rem;
    bottom: 1rem;
  }

  .dzisiaj-content {
    grid-template-columns: 1fr;
  }

  .dzisiaj-image {
    height: 280px;
    order: -1;
  }

  .dzisiaj-main {
    padding: 2.5rem 2rem 2rem;
  }

  .dzisiaj-tag {
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
  }
}

@media (max-width: 768px) {
  /* Nav mobile */
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 16, 8, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    transform: translateY(-100%);
    transition: transform 0.5s var(--ease-out);
    z-index: 990;
  }

  .nav-links.open {
    transform: translateY(0);
  }

  .nav-link {
    font-size: 1.4rem;
    color: rgba(255,255,255,0.8) !important;
    padding: 14px 24px;
  }

  .nav-link:hover {
    color: var(--gold-light) !important;
    background: transparent;
  }

  .btn-nav {
    margin-top: 1rem;
    font-size: 1rem;
    padding: 14px 36px;
  }

  /* Hero */
  .hero-stats {
    gap: 1.25rem;
  }

  .stat-divider {
    display: none;
  }

  /* Menu tabs */
  .menu-tabs {
    gap: 0.25rem;
    padding: 0.35rem;
  }

  .tab-btn {
    font-size: 0.82rem;
    padding: 8px 14px;
  }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
  }

  /* Delivery */
  .delivery-cards {
    grid-template-columns: 1fr 1fr;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom .container {
    flex-direction: column;
    text-align: center;
  }

  /* Floating button */
  .floating-label {
    display: none;
  }

  .floating-call-inner {
    padding: 16px;
    border-radius: 50%;
  }

  .floating-icon {
    font-size: 1.4rem;
  }
}

@media (max-width: 560px) {
  .delivery-cards {
    grid-template-columns: 1fr;
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-primary,
  .btn-outline-hero {
    justify-content: center;
  }

  .dzisiaj-section {
    padding: 3rem 0;
  }

  .dzisiaj-tag {
    font-size: 0.65rem;
    padding: 5px 10px;
  }

  .menu-tabs {
    width: 100%;
    justify-content: stretch;
  }

  .tab-btn {
    flex: 1;
    text-align: center;
  }
}

/* =========================================================
   UTILITY
   ========================================================= */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}
