:root {
  --brand: #1b7367;
  --brand-light: #23917f;
  --brand-dark: #145a51;
  --brand-pale: #e8f5f2;
  --cream: #faf9f6;
  --warm: #f5f0ea;
  --charcoal: #1a1a1a;
  --text: #2d2d2d;
  --text-light: #6b6b6b;
  --white: #ffffff;
  --gold: #c9a96e;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Outfit', system-ui, sans-serif;
}

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

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

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

/* ========== UTILITY ========== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 4rem);
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.section-label {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--charcoal);
}

.section-title em {
  font-style: italic;
  color: var(--brand);
}

/* ========== NAVIGATION ========== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: all 0.4s ease;
  background: transparent;
}

.nav.scrolled {
  background: rgba(250, 249, 246, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(27, 115, 103, 0.08);
  padding: 0.8rem 0;
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 4rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  position: relative;
  display: flex;
  align-items: center;
  height: 48px;
}

.nav-logo img {
  height: 48px;
  transition: all 0.4s ease;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.nav-logo .logo-white {
  opacity: 1;
}

.nav-logo .logo-color {
  opacity: 0;
}

.nav.scrolled .nav-logo img {
  height: 36px;
}

.nav.scrolled .nav-logo .logo-white {
  opacity: 0;
}

.nav.scrolled .nav-logo .logo-color {
  opacity: 1;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-decoration: none;
  color: var(--white);
  transition: color 0.3s ease;
  position: relative;
}

.nav.scrolled .nav-links a { color: var(--text); }
.nav-links a:hover { color: var(--brand-light); }

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0;
  height: 1.5px;
  background: var(--brand);
  transition: width 0.3s ease;
}
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-decoration: none;
  color: var(--white) !important;
  background: var(--brand);
  padding: 0.6rem 1.6rem;
  border-radius: 100px;
  transition: all 0.3s ease;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--brand-dark); transform: translateY(-1px); }

/* Mobile menu */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span {
  width: 24px; height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
  border-radius: 2px;
}
.nav.scrolled .nav-hamburger span { background: var(--charcoal); }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26, 26, 26, 0.97);
  backdrop-filter: blur(30px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--brand-light); }
.mobile-close {
  position: absolute;
  top: 1.5rem; right: 2rem;
  background: none; border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/site/building.png') center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0.25) 0%,
    rgba(0,0,0,0.5) 35%,
    rgba(0,0,0,0.72) 60%,
    rgba(0,0,0,0.78) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 clamp(1.5rem, 4vw, 4rem);
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  justify-content: flex-end;
}

.hero-text {
  max-width: 600px;
  padding: clamp(2rem, 4vw, 4rem) 0;
}

.hero-tag {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brand-light);
  background: rgba(27, 115, 103, 0.15);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1.2rem;
  border-radius: 100px;
  border: 1px solid rgba(27, 115, 103, 0.3);
  margin-bottom: 1.5rem;
  animation: fadeUp 1s 0.3s both;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 6.5vw, 5.5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.05;
  max-width: 700px;
  animation: fadeUp 1s 0.5s both;
}

.hero h1 em {
  font-style: italic;
  color: #3dd4bf;
}

.hero-sub {
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  margin-top: 1.5rem;
  max-width: 480px;
  line-height: 1.7;
  animation: fadeUp 1s 0.7s both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
  animation: fadeUp 1s 0.9s both;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--white);
  background: var(--brand);
  padding: 1rem 2.2rem;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.35s ease;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--brand-dark); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(27, 115, 103, 0.35); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--white);
  background: transparent;
  padding: 1rem 2.2rem;
  border-radius: 100px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.35);
  transition: all 0.35s ease;
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  right: clamp(1.5rem, 4vw, 4rem);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  animation: fadeUp 1s 1.2s both;
}
.hero-scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s infinite;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* ========== PRODUCTS / OFERTA ========== */
.products {
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: var(--cream);
}

.products-header {
  text-align: center;
  margin-bottom: 4rem;
}

.products-header .section-title {
  margin-bottom: 1rem;
}

.products-header p {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 300;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: auto;
  gap: 1.5rem;
}

/* First two cards (kuchnie) span full width each = big */
.cat-card.cat-big {
  grid-column: span 1;
  aspect-ratio: 3/2;
}

/* Remaining cards: 3 per row, smaller */
.cat-card.cat-small {
  aspect-ratio: 4/3;
}

/* When we have 5 small cards: use a separate sub-grid row approach via JS classes */
/* Row of 3 */
.products-grid-small {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  grid-column: 1 / -1;
}

/* Category card with image slider */
.cat-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  background: var(--charcoal);
}

/* FADE animation instead of slide */
.cat-slider {
  position: absolute;
  inset: 0;
}

.cat-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.cat-slider img.active {
  opacity: 1;
}

.cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.72) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.8rem;
  transition: background 0.4s ease;
  z-index: 2;
}

.cat-card:hover .cat-overlay {
  background: linear-gradient(180deg, transparent 10%, rgba(27, 115, 103, 0.75) 100%);
}

.cat-overlay h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.2rem;
}

.cat-big .cat-overlay h3 {
  font-size: 1.8rem;
}

.cat-overlay p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  font-weight: 300;
}

.cat-count {
  position: absolute;
  top: 1rem; right: 1rem;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(10px);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 500;
  padding: 0.35rem 0.7rem;
  border-radius: 100px;
  z-index: 3;
  letter-spacing: 0.05em;
}

.cat-dots {
  display: flex;
  gap: 5px;
  z-index: 3;
  margin-top: 0.6rem;
}

.cat-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  transition: all 0.3s ease;
}

.cat-dot.active {
  background: var(--white);
  width: 18px;
  border-radius: 3px;
}

.cat-browse {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--white);
  margin-top: 0.6rem;
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.3s ease;
}

.cat-card:hover .cat-browse {
  opacity: 1;
  transform: translateY(0);
}

.cat-browse svg {
  width: 14px; height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

/* ========== CATEGORY GALLERY MODAL ========== */
.cat-gallery-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.94);
  backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.cat-gallery-modal.open {
  display: flex;
}

.cat-gallery-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  z-index: 3;
}

.cat-gallery-title {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--white);
}

.cat-gallery-close {
  background: rgba(255,255,255,0.1);
  border: none;
  color: white;
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.cat-gallery-close:hover {
  background: rgba(255,255,255,0.2);
}

.cat-gallery-body {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  max-width: 90vw;
  max-height: 80vh;
}

.cat-gallery-main {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.cat-gallery-main img {
  max-width: 100%;
  max-height: 75vh;
  border-radius: 12px;
  object-fit: contain;
}

.cat-gallery-nav {
  background: rgba(255,255,255,0.1);
  border: none;
  color: white;
  width: 48px; height: 48px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s;
}

.cat-gallery-nav:hover {
  background: rgba(255,255,255,0.25);
}

.cat-gallery-counter {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  text-align: center;
  padding: 1.5rem;
  z-index: 3;
}

.cat-gallery-counter span {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  background: rgba(0,0,0,0.4);
  padding: 0.4rem 1rem;
  border-radius: 100px;
}

.cat-gallery-thumbs {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1rem;
  flex-wrap: wrap;
  max-width: 90vw;
}

.cat-gallery-thumb {
  width: 60px; height: 45px;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.4;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.cat-gallery-thumb.active {
  opacity: 1;
  border-color: var(--brand);
}

.cat-gallery-thumb:hover {
  opacity: 0.8;
}

.cat-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ========== ABOUT ========== */
.about {
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: var(--charcoal);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(27, 115, 103, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/5;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image-badge {
  position: absolute;
  bottom: 2rem; left: 2rem;
  background: var(--brand);
  color: var(--white);
  padding: 1rem 1.5rem;
  border-radius: 12px;
}

.about-image-badge .badge-number {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1;
}

.about-image-badge .badge-text {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  margin-top: 0.2rem;
}

.about-content .section-title {
  color: var(--white);
  margin-bottom: 2rem;
}

.about-text {
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.7);
  font-weight: 300;
  margin-bottom: 2rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.about-feature {
  padding: 1.5rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.about-feature:hover {
  background: rgba(27, 115, 103, 0.1);
  border-color: rgba(27, 115, 103, 0.2);
}

.about-feature-icon {
  width: 36px; height: 36px;
  background: var(--brand);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.8rem;
}

.about-feature-icon svg {
  width: 18px; height: 18px;
  stroke: white;
  fill: none;
  stroke-width: 2;
}

.about-feature h4 {
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.3rem;
}

.about-feature p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  font-weight: 300;
  line-height: 1.5;
}

/* ========== GALLERY ========== */
.gallery {
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: var(--warm);
}

.gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.gallery-masonry {
  columns: 3;
  column-gap: 1.5rem;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 1.5rem;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover img {
  transform: scale(1.04);
}

/* ========== REVIEWS ========== */
.reviews {
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: var(--cream);
}

.reviews-header {
  text-align: center;
  margin-bottom: 4rem;
}

.reviews-stars {
  display: flex;
  justify-content: center;
  gap: 0.3rem;
  margin-bottom: 1rem;
}

.reviews-stars svg {
  width: 22px; height: 22px;
  fill: var(--gold);
}

.reviews-rating {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--charcoal);
}

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

.review-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid rgba(0,0,0,0.04);
  transition: all 0.3s ease;
}

.review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

.review-quote {
  font-family: var(--serif);
  font-size: 2.5rem;
  color: var(--brand);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.review-text {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--text);
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.review-avatar {
  width: 40px; height: 40px;
  background: var(--brand-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--brand);
}

.review-name {
  font-weight: 500;
  font-size: 0.88rem;
  color: var(--charcoal);
}

.review-source {
  font-size: 0.75rem;
  color: var(--text-light);
  font-weight: 300;
}

/* ========== CONTACT ========== */
.contact {
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 5rem);
}

.contact-info h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 2rem;
  color: var(--charcoal);
}

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.8rem;
}

.contact-icon {
  width: 44px; height: 44px;
  background: var(--brand-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 20px; height: 20px;
  stroke: var(--brand);
  fill: none;
  stroke-width: 2;
}

.contact-item-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 500;
  margin-bottom: 0.2rem;
}

.contact-item-value {
  font-size: 1rem;
  color: var(--charcoal);
  font-weight: 400;
}

.contact-item-value a {
  color: var(--charcoal);
  text-decoration: none;
  transition: color 0.3s;
}
.contact-item-value a:hover { color: var(--brand); }

.contact-hours {
  margin-top: 2rem;
  padding: 1.5rem;
  background: var(--brand-pale);
  border-radius: 12px;
}

.contact-hours h4 {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brand-dark);
  margin-bottom: 0.8rem;
}

.contact-hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  padding: 0.35rem 0;
  color: var(--text);
}

.contact-hours-row.closed span:last-child { color: var(--text-light); }

.contact-map {
  border-radius: 20px;
  overflow: hidden;
  min-height: 400px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: none;
  filter: saturate(0.85) contrast(1.05);
}

.contact-social {
  display: flex;
  gap: 0.8rem;
  margin-top: 2rem;
}

.social-link {
  width: 44px; height: 44px;
  background: var(--charcoal);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-link:hover {
  background: var(--brand);
  transform: translateY(-2px);
}

.social-link svg {
  width: 20px; height: 20px;
  fill: white;
}

/* ========== AKTUALNOŚCI / FACEBOOK ========== */
.news {
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: var(--warm);
}

.news-header {
  text-align: center;
  margin-bottom: 3rem;
}

.news-header p {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 480px;
  margin: 0.8rem auto 0;
  line-height: 1.7;
  font-weight: 300;
}

.news-embed {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.news-fb-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--brand);
  text-decoration: none;
  margin-top: 2rem;
  transition: all 0.3s ease;
}

.news-fb-link:hover {
  color: var(--brand-dark);
  gap: 0.9rem;
}

.news-fb-link svg {
  width: 20px; height: 20px;
  fill: currentColor;
}

/* ========== FOOTER ========== */
.footer {
  padding: 3rem 0;
  background: var(--charcoal);
  text-align: center;
}

.footer-logo img {
  height: 28px;
  opacity: 0.7;
  margin-bottom: 1rem;
}

.footer p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  font-weight: 300;
}

/* ========== LIGHTBOX ========== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(20px);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.lightbox.open { display: flex; }

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 8px;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 2rem; right: 2rem;
  background: none; border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .gallery-masonry {
    columns: 2;
  }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .hero {
    align-items: flex-end;
  }

  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(0,0,0,0.2) 0%,
      rgba(0,0,0,0.35) 40%,
      rgba(0,0,0,0.75) 100%
    );
  }

  .hero-content {
    justify-content: flex-start;
    padding-bottom: clamp(3rem, 6vw, 5rem);
  }

  .hero-text {
    max-width: 100%;
  }

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

  .cat-card.cat-big {
    aspect-ratio: 4/3;
  }

  .products-grid-small {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .about-image {
    aspect-ratio: 16/10;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .gallery-masonry {
    columns: 2;
    column-gap: 0.8rem;
  }

  .gallery-item {
    margin-bottom: 0.8rem;
  }

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

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

@media (max-width: 480px) {
  .gallery-masonry {
    columns: 1;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-scroll { display: none; }
}
