/* ============================================
   AMICAKE — Styles
   Paleta inspirowana logo: głęboka czerwień + żółty akcent
   ============================================ */

:root {
  /* Bordowy (burgundy) — zamiast jasnego czerwonego */
  --red-900: #2e0612;
  --red-800: #4a0f1f;
  --red-700: #6d1a2e;
  --red-600: #82253c;
  --red-500: #9c3450;
  /* Złoty — ciepły, eleganckl gold zamiast cytrynowo-żółtego */
  --gold:    #c9a961;
  --gold-2:  #b08e3f;
  /* Beżowy — jasny, ciepły */
  --cream:   #f5ecd7;
  --cream-2: #ece0c2;
  --ink:     #2a0a0f;
  --ink-2:   #4a1822;
  --muted:   #8a7361;
  --white:   #fffaf0;

  --shadow-sm: 0 4px 14px rgba(46, 6, 18, 0.08);
  --shadow-md: 0 14px 40px rgba(46, 6, 18, 0.18);
  --shadow-lg: 0 24px 60px rgba(0,0,0,0.35);

  --radius: 14px;
  --radius-lg: 22px;

  --container: 1200px;

  --serif: 'Playfair Display', Georgia, serif;
  --sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--gold-2); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   NAV
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(90, 14, 14, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background .3s ease, padding .3s ease;
  border-bottom: 1px solid rgba(244, 196, 48, 0.15);
}
.nav.is-scrolled { background: rgba(90, 14, 14, 0.98); }

.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav__brand { display: block; }
.nav__logo { height: 46px; width: auto; }

.nav__links {
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav__links a {
  color: var(--cream);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.3px;
  position: relative;
  padding: 6px 0;
}
.nav__links a::after {
  content: '';
  position: absolute;
  left: 50%; bottom: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: all .3s ease;
  transform: translateX(-50%);
}
.nav__links a:hover { color: var(--gold); }
.nav__links a:hover::after { width: 100%; }
.nav__links a.active { color: var(--gold); }
.nav__links a.active::after { width: 100%; }

.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.nav__toggle span {
  display: block;
  width: 26px; height: 2px;
  background: var(--cream);
  transition: all .3s ease;
}

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

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(244, 196, 48, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 80%, rgba(193, 36, 36, 0.4) 0%, transparent 60%),
    linear-gradient(135deg, var(--red-900) 0%, var(--red-700) 50%, var(--red-800) 100%);
  z-index: -1;
}

.hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 50%, rgba(244, 196, 48, 0.06) 0%, transparent 8%),
    radial-gradient(circle at 85% 30%, rgba(244, 196, 48, 0.05) 0%, transparent 6%),
    radial-gradient(circle at 50% 90%, rgba(255, 255, 255, 0.04) 0%, transparent 12%);
}

.hero__content {
  text-align: center;
  padding: 120px 24px 80px;
  max-width: 900px;
  animation: fadeUp 1s ease both;
}

.hero__logo {
  height: 260px;
  width: auto;
  margin: 0 auto 30px;
  animation: fadeUp 1s ease both;
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.35));
}

.hero__motto {
  font-family: var(--serif);
  color: var(--cream);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1.05;
  font-weight: 700;
  margin-bottom: 22px;
  letter-spacing: -0.5px;
}
.hero__motto span { display: block; }
.hero__motto em {
  display: block;
  font-style: italic;
  color: var(--gold);
  font-weight: 800;
}

.hero__sub {
  color: rgba(250, 246, 238, 0.85);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  max-width: 620px;
  margin: 0 auto 36px;
  font-weight: 300;
}

.hero__cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px; height: 46px;
  border: 2px solid rgba(250, 246, 238, 0.4);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 8px;
}
.hero__scroll span {
  width: 4px; height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollDot 1.6s infinite;
}

@keyframes scrollDot {
  0%   { transform: translateY(0);   opacity: 1; }
  100% { transform: translateY(20px); opacity: 0; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================
   FLOATING ELEMENTS w HERO
   ============================================ */
.hero__floats {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.float {
  position: absolute;
  opacity: 0;
  width: 40px;
  height: 40px;
  font-size: 0;            /* ukrywa ewentualną zawartość tekstową (np. emoji fallback) */
  background-image: url('muffin.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,0.4));
  animation: floatUp 16s linear infinite;
  user-select: none;
}
.float--1 { left: 6%;  width: 54px; height: 54px; animation-delay: 0s;  animation-duration: 18s; }
.float--2 { left: 18%; width: 38px; height: 38px; animation-delay: 3s;  animation-duration: 21s; }
.float--3 { left: 30%; width: 46px; height: 46px; animation-delay: 6s;  animation-duration: 19s; }
.float--4 { left: 44%; width: 34px; height: 34px; animation-delay: 1s;  animation-duration: 22s; }
.float--5 { left: 58%; width: 58px; height: 58px; animation-delay: 8s;  animation-duration: 17s; }
.float--6 { left: 72%; width: 42px; height: 42px; animation-delay: 4s;  animation-duration: 20s; }
.float--7 { left: 84%; width: 50px; height: 50px; animation-delay: 10s; animation-duration: 23s; }
.float--8 { left: 93%; width: 36px; height: 36px; animation-delay: 5s;  animation-duration: 18s; }

@keyframes floatUp {
  0%   { transform: translateY(110vh) rotate(-6deg); opacity: 0; }
  10%  { opacity: 0.85; }
  50%  { transform: translateY(50vh) rotate(8deg); }
  90%  { opacity: 0.85; }
  100% { transform: translateY(-15vh) rotate(-6deg); opacity: 0; }
}

/* ============================================
   VALUES (sekcja wartości)
   ============================================ */
.values {
  background: var(--cream);
  padding: 80px 0;
  position: relative;
  z-index: 2;
  margin-top: -1px;
}
.values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}
.value {
  background: linear-gradient(180deg, #ffffff 0%, var(--cream-2) 100%);
  border-radius: var(--radius-lg);
  padding: 38px 30px;
  text-align: center;
  border: 2px solid transparent;
  transition: all .4s cubic-bezier(.2,.8,.2,1);
  position: relative;
  overflow: hidden;
}
.value::before {
  content: '';
  position: absolute;
  top: -2px; left: -2px; right: -2px; bottom: -2px;
  background: linear-gradient(135deg, var(--gold), var(--red-600), var(--gold));
  background-size: 300% 300%;
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0;
  transition: opacity .4s ease;
  animation: shine 4s linear infinite;
}
@keyframes shine {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.value:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(90, 14, 14, 0.18);
  border-color: var(--gold);
}
.value:hover::before { opacity: 1; }
.value:hover .value__icon {
  transform: scale(1.1) rotate(-5deg);
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: var(--red-900);
}

.value--highlight {
  background: linear-gradient(180deg, #fff 0%, #fdf3d4 100%);
  border-color: var(--gold);
  box-shadow: 0 18px 44px rgba(244, 196, 48, 0.2);
}
.value--highlight .value__icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: var(--red-900);
  animation: eggPulse 2.6s ease-in-out infinite;
}
@keyframes eggPulse {
  0%, 100% { transform: scale(1);    box-shadow: 0 0 0 0 rgba(244, 196, 48, 0.6); }
  50%      { transform: scale(1.04); box-shadow: 0 0 0 18px rgba(244, 196, 48, 0); }
}

.value__icon {
  width: 88px; height: 88px;
  margin: 0 auto 22px;
  background: linear-gradient(135deg, var(--red-700), var(--red-900));
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .4s cubic-bezier(.2,.8,.2,1);
  box-shadow: 0 12px 28px rgba(193, 36, 36, 0.25);
}
.value__icon svg {
  width: 44px;
  height: 44px;
}
.value h3 {
  font-family: var(--sans);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--red-800);
  margin-bottom: 0;
  letter-spacing: -0.2px;
  font-feature-settings: "zero" 1, "tnum" 1;
  font-variant-numeric: slashed-zero tabular-nums;
}
.value p {
  color: var(--ink-2);
  font-size: 0.96rem;
  line-height: 1.6;
}

/* ============================================
   PARTNERZY
   ============================================ */
.partners {
  background: var(--cream);
  padding: 100px 0;
  position: relative;
}
.partners__intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px;
  color: var(--ink-2);
  font-size: 1.05rem;
  line-height: 1.7;
}
.partners__group {
  margin-bottom: 50px;
}
.partners__group:last-of-type { margin-bottom: 0; }
.partners__sub {
  text-align: center;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--red-700);
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 28px;
  position: relative;
}
.partners__sub::before,
.partners__sub::after {
  content: '';
  display: inline-block;
  width: 40px;
  height: 2px;
  background: var(--gold);
  vertical-align: middle;
  margin: 0 18px;
}
.partners__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 920px;
  margin: 0 auto;
}
.partner-card {
  background: #ffffff;
  padding: 26px 24px;
  border-radius: var(--radius);
  text-align: center;
  border: 2px solid rgba(109, 26, 46, 0.1);
  transition: all .4s cubic-bezier(.2,.8,.2,1);
  box-shadow: 0 6px 18px rgba(46, 6, 18, 0.06);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 110px;
}
.partner-card img {
  max-width: 100%;
  max-height: 90px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform .4s ease;
}
.partner-card:hover img {
  transform: scale(1.06);
}
.partner-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red-700), var(--gold), var(--red-700));
  transform: scaleX(0);
  transition: transform .4s ease;
  transform-origin: left;
}
.partner-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 18px 38px rgba(193, 36, 36, 0.16);
  color: var(--red-800);
}
.partner-card:hover::before { transform: scaleX(1); }

/* ============================================
   MARQUEE (przewijający się pasek)
   ============================================ */
.marquee {
  background: var(--red-900);
  color: var(--gold);
  padding: 18px 0;
  overflow: hidden;
  position: relative;
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
}
.marquee::before,
.marquee::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--red-900) 0%, transparent 100%);
}
.marquee::after {
  right: 0;
  background: linear-gradient(-90deg, var(--red-900) 0%, transparent 100%);
}
.marquee__track {
  display: flex;
  gap: 36px;
  white-space: nowrap;
  animation: marqueeRoll 38s linear infinite;
}
.marquee__track span {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  flex-shrink: 0;
}
.marquee__sep {
  color: var(--cream);
  font-style: normal !important;
}
@keyframes marqueeRoll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.4px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .3s ease;
  text-transform: uppercase;
}
.btn--primary {
  background: var(--gold);
  color: var(--red-900);
  border-color: var(--gold);
  box-shadow: 0 8px 24px rgba(244, 196, 48, 0.3);
}
.btn--primary:hover {
  background: var(--gold-2);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(244, 196, 48, 0.45);
  color: var(--red-900);
}
.btn--ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(250, 246, 238, 0.5);
}
.btn--ghost:hover {
  background: var(--cream);
  color: var(--red-900);
}

/* ============================================
   PAGE HEADER (mini hero podstron)
   ============================================ */
.page-header {
  position: relative;
  padding: 180px 24px 80px;
  text-align: center;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(244, 196, 48, 0.16) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 80%, rgba(193, 36, 36, 0.4) 0%, transparent 60%),
    linear-gradient(135deg, var(--red-900) 0%, var(--red-700) 50%, var(--red-800) 100%);
  color: var(--cream);
  overflow: hidden;
  isolation: isolate;
}
.page-header__floats {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.page-header > .container {
  position: relative;
  z-index: 1;
}
.page-header .eyebrow {
  color: var(--gold);
  display: inline-block;
  margin-bottom: 14px;
}
.page-header h1 {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--cream);
  letter-spacing: -0.5px;
  line-height: 1.1;
  margin-bottom: 14px;
  animation: fadeUp 0.9s ease both;
}
.page-header h1 em {
  color: var(--gold);
  font-style: italic;
}
.page-header__lead {
  max-width: 640px;
  margin: 14px auto 0;
  color: rgba(250, 246, 238, 0.85);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  font-weight: 300;
  animation: fadeUp 1.1s ease both;
}
.page-header .divider {
  margin: 22px auto 0;
}

/* ============================================
   POZNAJ AMICAKE — siatka linków (na home)
   ============================================ */
.explore {
  padding: 100px 0;
  background: var(--cream);
}
.explore__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}
.explore__card {
  position: relative;
  display: block;
  padding: 50px 40px;
  background: linear-gradient(135deg, #fff 0%, var(--cream-2) 100%);
  border-radius: var(--radius-lg);
  border: 2px solid transparent;
  text-decoration: none;
  color: var(--ink);
  overflow: hidden;
  transition: all .4s cubic-bezier(.2,.8,.2,1);
  min-height: 200px;
}
.explore__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red-700), var(--gold), var(--red-700));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s ease;
}
.explore__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(90, 14, 14, 0.18);
  border-color: var(--gold);
}
.explore__card:hover::before { transform: scaleX(1); }
.explore__card:hover .explore__arrow { transform: translateX(8px); color: var(--gold-2); }

.explore__icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
  display: inline-block;
}
.explore__card h3 {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--red-800);
  margin-bottom: 10px;
  font-weight: 700;
}
.explore__card p {
  color: var(--muted);
  font-size: 0.98rem;
  margin-bottom: 18px;
  line-height: 1.6;
}
.explore__arrow {
  font-size: 1.4rem;
  color: var(--red-700);
  font-weight: 700;
  transition: all .3s ease;
  display: inline-block;
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: 110px 0;
  position: relative;
}
.section--cream { background: var(--cream); }
.section--dark {
  background:
    radial-gradient(ellipse at top, rgba(244, 196, 48, 0.08) 0%, transparent 50%),
    linear-gradient(180deg, var(--red-900) 0%, var(--ink) 100%);
  color: var(--cream);
}

.section__head {
  text-align: center;
  margin-bottom: 60px;
}

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--red-600);
  margin-bottom: 14px;
}
.section__head--light .eyebrow { color: var(--gold); }

.section__title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 700;
  color: var(--red-900);
  letter-spacing: -0.5px;
}
.section__head--light .section__title { color: var(--cream); }

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 18px auto 0;
  width: 90px;
}
.divider span {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--red-600);
  border-radius: 2px;
  position: relative;
}
.divider span::before,
.divider span::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  transform: translateY(-50%);
}
.divider span::before { left: -14px; }
.divider span::after  { right: -14px; }
.divider--light span { background: var(--gold); }
.divider--light span::before,
.divider--light span::after { background: var(--cream); }

.section__lead {
  max-width: 640px;
  margin: 22px auto 0;
  font-size: 1.05rem;
  color: rgba(250, 246, 238, 0.8);
  font-weight: 300;
}
.section__head:not(.section__head--light) .section__lead { color: var(--muted); }

/* ============================================
   ABOUT
   ============================================ */
.about {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: center;
}
.about__text p {
  font-size: 1.08rem;
  margin-bottom: 18px;
  color: var(--ink-2);
}
.about__text p strong { color: var(--red-700); }
.about__text p em { color: var(--red-600); font-style: italic; font-weight: 500; }

.about__creed {
  margin-top: 28px !important;
  padding: 22px 26px;
  border-left: 4px solid var(--gold);
  background: linear-gradient(90deg, rgba(244, 196, 48, 0.12) 0%, transparent 100%);
  border-radius: 0 12px 12px 0;
  font-family: var(--serif);
  font-size: 1.2rem !important;
  line-height: 1.45 !important;
  color: var(--red-800) !important;
}
.about__creed em {
  color: var(--red-800) !important;
  font-style: italic;
}

.about__pillars {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 38px;
  padding-top: 30px;
  border-top: 2px solid rgba(193, 36, 36, 0.15);
}
.about__pillars li {
  text-align: center;
}
.pillar__num {
  display: block;
  font-family: var(--sans);
  font-size: 2.9rem;
  font-weight: 800;
  color: var(--red-700);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -1px;
  font-feature-settings: "zero" 1, "tnum" 1;
  font-variant-numeric: slashed-zero tabular-nums;
}
.pillar__lbl {
  display: block;
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.about__art {
  position: relative;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.art__circle {
  position: absolute;
  border-radius: 50%;
}
.art__circle--big {
  width: 92%; height: 92%;
  background: linear-gradient(135deg, var(--red-700) 0%, var(--red-900) 100%);
  box-shadow: var(--shadow-md);
}
.art__circle--dot {
  width: 36%; height: 36%;
  background: var(--gold);
  top: 10%;
  right: 6%;
  box-shadow: 0 12px 32px rgba(244, 196, 48, 0.4);
  animation: floatDot 6s ease-in-out infinite;
}
@keyframes floatDot {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(-10px, 10px); }
}
.art__quote {
  position: relative;
  z-index: 2;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  color: var(--cream);
  text-align: center;
  padding: 0 32px;
  line-height: 1.3;
  font-weight: 600;
  text-shadow: 0 4px 16px rgba(0,0,0,0.25);
}

/* ============================================
   FILTERS
   ============================================ */
.filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 50px;
}
.filter {
  background: rgba(255, 255, 255, 0.07);
  color: var(--cream);
  border: 1.5px solid rgba(244, 196, 48, 0.25);
  padding: 10px 22px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.4px;
  cursor: pointer;
  transition: all .3s ease;
  text-transform: uppercase;
}
.filter:hover {
  background: rgba(244, 196, 48, 0.12);
  border-color: var(--gold);
}
.filter.is-active {
  background: var(--gold);
  color: var(--red-900);
  border-color: var(--gold);
  box-shadow: 0 8px 22px rgba(244, 196, 48, 0.35);
}

/* ============================================
   PRODUCT GRID
   ============================================ */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.card {
  background: var(--cream);
  color: var(--ink);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform .35s ease, box-shadow .35s ease;
  display: flex;
  flex-direction: column;
  animation: cardIn .5s ease both;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(0,0,0,0.35);
}
.card.is-hidden { display: none; }
.card--featured { outline: 3px solid var(--gold); outline-offset: -3px; }
.card--featured::before {
  content: 'NOWOŚĆ';
  position: absolute;
  top: 14px; right: 14px;
  background: var(--gold);
  color: var(--red-900);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  z-index: 2;
}
.card { position: relative; }

@keyframes cardIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

.card__art {
  position: relative;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(255, 255, 255, 0.6) 0%, transparent 50%),
    linear-gradient(135deg, #fff8ec 0%, #f3e8d0 100%);
}
.card__art img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 14px;
  transition: transform .45s ease;
  filter: drop-shadow(0 10px 18px rgba(90, 14, 14, 0.18));
}
.card:hover .card__art img {
  transform: scale(1.06);
}

/* Warianty: batony — ciemne tło lepiej eksponuje opakowania */
.card__art--bar {
  background:
    radial-gradient(ellipse at 30% 30%, rgba(244, 196, 48, 0.18) 0%, transparent 60%),
    linear-gradient(135deg, #2a0d0d 0%, #5a0e0e 100%);
}
.card__art--bar img {
  object-fit: contain;
  padding: 18px;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.5));
}

.card__body {
  padding: 22px 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.card__body h3 {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--red-800);
  margin-bottom: 8px;
  line-height: 1.25;
}
.card__body p {
  font-size: 0.92rem;
  color: var(--muted);
  margin-bottom: 16px;
  flex: 1;
}
.card__meta {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding-top: 14px;
  border-top: 1px dashed rgba(193, 36, 36, 0.2);
  font-size: 12px;
  color: var(--red-700);
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.grid__note {
  text-align: center;
  margin-top: 50px;
  color: rgba(250, 246, 238, 0.7);
  font-size: 0.95rem;
  font-style: italic;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 60px;
}
.contact__card {
  background: var(--white);
  padding: 32px 24px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all .3s ease;
  border: 1px solid rgba(193, 36, 36, 0.08);
}
.contact__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.contact__icon {
  width: 56px; height: 56px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--red-700), var(--red-900));
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 8px 20px rgba(193, 36, 36, 0.25);
}
.contact__icon svg {
  width: 26px;
  height: 26px;
}
.contact__card h3 {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--red-800);
  margin-bottom: 10px;
}
.contact__card p { color: var(--ink-2); font-size: 0.95rem; line-height: 1.5; }
.contact__card .muted { color: var(--muted); font-size: 0.85rem; margin-top: 6px; }
.contact__card a { color: var(--red-700); font-weight: 600; }
.contact__card a:hover { color: var(--gold-2); }

/* Form */
.form {
  background: var(--white);
  padding: 44px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  max-width: 820px;
  margin: 0 auto;
}
.form__title {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--red-800);
  margin-bottom: 28px;
  text-align: center;
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}
.form label {
  display: block;
  margin-bottom: 18px;
}
.form label span {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--red-800);
  margin-bottom: 6px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}
.form input,
.form textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid rgba(193, 36, 36, 0.18);
  border-radius: 10px;
  font-family: var(--sans);
  font-size: 15px;
  background: var(--cream);
  color: var(--ink);
  transition: all .25s ease;
  resize: vertical;
}
.form input:focus,
.form textarea:focus {
  outline: none;
  border-color: var(--red-600);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(193, 36, 36, 0.1);
}
.form .btn { width: 100%; margin-top: 8px; }
.form .btn:disabled { opacity: 0.6; cursor: not-allowed; }

.form__status {
  margin-top: 16px;
  padding: 0;
  font-size: 0.95rem;
  text-align: center;
  line-height: 1.5;
  min-height: 0;
  transition: all .3s ease;
}
.form__status--ok {
  padding: 14px 18px;
  background: rgba(109, 26, 46, 0.06);
  border-left: 4px solid var(--gold);
  border-radius: 0 10px 10px 0;
  color: var(--red-800);
  font-weight: 500;
  text-align: left;
}
.form__status--err {
  padding: 14px 18px;
  background: rgba(193, 36, 36, 0.08);
  border-left: 4px solid var(--red-600);
  border-radius: 0 10px 10px 0;
  color: var(--red-700);
  font-weight: 500;
  text-align: left;
}

/* ============================================
   LOCATION
   ============================================ */
.loc {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 50px;
  align-items: stretch;
}
.loc__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.loc__info h3 {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 16px;
}
.loc__addr {
  font-size: 1.2rem;
  color: var(--cream);
  margin-bottom: 28px;
  line-height: 1.5;
}
.loc__addr strong { color: var(--white); font-size: 1.4rem; }

.loc__details {
  list-style: none;
  margin-bottom: 32px;
}
.loc__details li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(244, 196, 48, 0.15);
  color: rgba(250, 246, 238, 0.85);
  font-size: 0.98rem;
}
.loc__details li span {
  width: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.loc__details li span svg {
  width: 20px;
  height: 20px;
}

.loc__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--gold);
  min-height: 420px;
}
.loc__map iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: none;
  display: block;
  filter: saturate(0.9);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--ink);
  color: rgba(250, 246, 238, 0.75);
  padding-top: 70px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.4fr;
  gap: 40px;
  padding-bottom: 50px;
}
.footer__logo { height: 60px; width: auto; margin-bottom: 18px; }
.footer__brand p { font-size: 0.92rem; line-height: 1.7; max-width: 320px; }

.footer__col h4 {
  font-family: var(--serif);
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}
.footer__col a,
.footer__col p {
  display: block;
  font-size: 0.93rem;
  margin-bottom: 10px;
  color: rgba(250, 246, 238, 0.7);
  transition: color .2s ease;
}
.footer__col a:hover { color: var(--gold); }

.footer__bar {
  border-top: 1px solid rgba(244, 196, 48, 0.12);
  padding: 24px 0;
  text-align: center;
  font-size: 0.88rem;
  color: rgba(250, 246, 238, 0.5);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .values__grid { grid-template-columns: 1fr; gap: 20px; max-width: 520px; }
  .value { padding: 30px 24px; }
  .marquee__track span { font-size: 1.2rem; }
}

@media (max-width: 980px) {
  .nav__links {
    position: fixed;
    top: 74px; left: 0; right: 0;
    background: var(--red-900);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    transform: translateY(-200%);
    transition: transform .35s ease;
    border-bottom: 2px solid var(--gold);
  }
  .nav__links.is-open { transform: translateY(0); }
  .nav__toggle { display: flex; }

  .about { grid-template-columns: 1fr; gap: 50px; }
  .about__art { max-width: 380px; margin: 0 auto; }

  .loc { grid-template-columns: 1fr; gap: 30px; }

  .footer__inner { grid-template-columns: 1fr 1fr; }
  .explore__grid { grid-template-columns: 1fr; }
  .page-header { padding: 140px 24px 60px; }
  .partners__grid { grid-template-columns: 1fr; gap: 16px; max-width: 420px; }
  .partners__sub::before,
  .partners__sub::after { width: 24px; margin: 0 10px; }
}

@media (max-width: 620px) {
  .section { padding: 80px 0; }
  .hero__logo { height: 150px; }
  .form { padding: 28px 20px; }
  .form__row { grid-template-columns: 1fr; gap: 0; }
  .about__pillars { grid-template-columns: 1fr; gap: 24px; }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .nav__logo { height: 38px; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; }
}
