/* ---- ZMIENNE ---- */
:root {
  --cream:       #FAF6EE;
  --cream-dark:  #F0E9D8;
  --cream-mid:   #E8DFC8;
  --burgundy:    #6B1D1D;
  --burgundy-dark: #4A1010;
  --burgundy-light: #8B2E2E;
  --gold:        #C9973A;
  --gold-light:  #E2B55A;
  --brown:       #4A3728;
  --text:        #2D1F14;
  --text-muted:  #6B5A4A;
  --white:       #FFFFFF;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Crimson Pro', Georgia, serif;

  --radius:    8px;
  --radius-lg: 16px;
  --shadow-sm: 0 2px 8px rgba(45,31,20,0.08);
  --shadow-md: 0 8px 32px rgba(45,31,20,0.12);
  --shadow-lg: 0 20px 60px rgba(45,31,20,0.18);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  --container: 1200px;
  --header-h: 72px;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 17px; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--burgundy); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }
ul { list-style: none; }
address { font-style: normal; }

/* ---- TYPOGRAFIA ---- */
h1,h2,h3,h4,h5 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--burgundy-dark);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
p  { font-size: 1.05rem; color: var(--text-muted); }

/* ---- KONTENER ---- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
}

/* ---- SEKCJE ---- */
.section { padding: clamp(3rem, 8vw, 6rem) 0; }

.section-header {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}
.section-eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.section-title {
  position: relative;
  display: inline-block;
  padding-bottom: 0.6em;
}
.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: var(--gold);
}
.section-footer { text-align: center; margin-top: 2.5rem; }

/* ---- PRZYCISKI ---- */
.btn {
  display: inline-block;
  padding: 0.75rem 1.8rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-align: center;
}
.btn-primary {
  background: var(--burgundy);
  color: var(--white);
  border-color: var(--burgundy);
}
.btn-primary:hover {
  background: var(--burgundy-dark);
  border-color: var(--burgundy-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: var(--burgundy);
  border-color: var(--burgundy);
}
.btn-outline:hover {
  background: var(--burgundy);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ---- PLACEHOLDER ZDJĘCIA ---- */
.placeholder-img {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: var(--cream-dark);
  border: 2px dashed var(--cream-mid);
  color: var(--text-muted);
  text-align: center;
  padding: 1.5rem;
  min-height: 200px;
}
.placeholder-img span { font-size: 3rem; }
.placeholder-img p { font-size: 0.85rem; margin: 0; color: var(--text-muted); }
.placeholder-img code {
  background: var(--cream-mid);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-family: monospace;
  color: var(--burgundy);
}

/* ============================================================
   NAGŁÓWEK / NAWIGACJA
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(250,246,238,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--cream-mid);
  box-shadow: var(--shadow-sm);
  overflow: visible;
}
.header-inner {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: inherit;
}
.logo-icon { font-size: 1.8rem; flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-main {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--burgundy-dark);
}
.logo-sub {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Nav */
.main-nav ul {
  display: flex;
  gap: 0.25rem;
}
.nav-link {
  display: block;
  padding: 0.5rem 0.9rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  border-radius: var(--radius);
  transition: all var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-link:hover,
.nav-link.active { color: var(--burgundy); }
.nav-link:hover::after,
.nav-link.active::after { width: calc(100% - 1.8rem); }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--burgundy);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-img-placeholder {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}
.hero-placeholder {
  min-height: 100% !important;
  background: linear-gradient(135deg, var(--cream-dark) 0%, var(--cream-mid) 100%) !important;
  border: none !important;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(74,16,16,0.72) 0%,
    rgba(74,16,16,0.4) 50%,
    rgba(74,16,16,0.15) 100%
  );
}
/* Gdy używasz prawdziwego zdjęcia: */
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: clamp(2rem, 8vw, 5rem) clamp(1rem, 4vw, 2.5rem);
  margin-left: max(2rem, calc((100vw - var(--container)) / 2 + 2.5rem));
}
.hero-eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1rem;
  font-family: var(--font-body);
}
.hero-title {
  color: var(--white);
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-subtitle {
  color: rgba(255,255,255,0.87);
  font-size: 1.15rem;
  max-width: 520px;
  margin-bottom: 2rem;
}
.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-cta .btn-outline {
  border-color: rgba(255,255,255,0.7);
  color: var(--white);
}
.hero-cta .btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  color: var(--white);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: scrollHint 2s ease-in-out infinite;
}
@keyframes scrollHint {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(1.3); opacity: 0.5; }
}

/* ============================================================
   INFO STRIP
   ============================================================ */
.info-strip {
  background: var(--burgundy);
  padding: 1.5rem 0;
}
.info-strip-items {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.info-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.9);
  flex: 1;
  min-width: 220px;
  max-width: 360px;
}
.info-item strong { display: block; color: var(--white); font-weight: 600; }
.info-item p { color: rgba(255,255,255,0.8); font-size: 0.9rem; margin: 0; }
.info-item a { color: rgba(255,255,255,0.8); }
.info-item a:hover { color: var(--gold-light); }
.info-icon { font-size: 1.5rem; flex-shrink: 0; }

/* ============================================================
   HIGHLIGHTS
   ============================================================ */
.highlights { background: var(--white); }
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.highlight-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: var(--cream);
  border: 1px solid var(--cream-mid);
  transition: all var(--transition);
  text-align: center;
}
.highlight-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-light);
}
.highlight-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}
.highlight-card h3 { margin-bottom: 0.5rem; font-size: 1.25rem; }

/* ============================================================
   FEATURED / BESTSELLERY
   ============================================================ */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.featured-card.large {
  grid-column: span 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.featured-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.featured-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.featured-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--cream-dark);
}
.featured-card.large .featured-img {
  aspect-ratio: unset;
  height: 100%;
  min-height: 260px;
}
.featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.featured-card:hover .featured-img img { transform: scale(1.05); }
.featured-info {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.featured-category {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.4rem;
  display: block;
}
.featured-info h3 { margin-bottom: 0.5rem; }
.featured-link {
  margin-top: auto;
  padding-top: 1rem;
  font-weight: 600;
  color: var(--burgundy);
  transition: all var(--transition);
  display: inline-block;
}
.featured-link:hover {
  color: var(--gold);
  transform: translateX(4px);
}
.featured-card.large .featured-info { justify-content: center; }

/* ============================================================
   OPINIE GOOGLE
   ============================================================ */
.reviews { background: var(--cream-dark); }
.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 99px;
  margin-top: 0.75rem;
  box-shadow: var(--shadow-sm);
  font-size: 0.9rem;
}
.google-rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  border-left: 1px solid var(--cream-mid);
  padding-left: 0.5rem;
  margin-left: 0.25rem;
}
.stars { color: #FFC107; letter-spacing: -1px; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  position: relative;
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.review-card::before {
  content: '"';
  position: absolute;
  top: 0.75rem;
  right: 1.25rem;
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--cream-mid);
  line-height: 1;
}
.review-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--burgundy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.review-name { display: block; font-weight: 600; color: var(--text); font-size: 0.95rem; }
.review-date { display: block; font-size: 0.8rem; color: var(--text-muted); }
.review-stars { margin-left: auto; color: #FFC107; font-size: 1.1rem; }
.review-text { font-size: 0.97rem; color: var(--text); line-height: 1.6; }
.review-source {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.reviews-cta { text-align: center; }

/* ============================================================
   AKTUALNOŚCI PREVIEW
   ============================================================ */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.news-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.news-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.news-card-img {
  aspect-ratio: 16/9;
  background: var(--cream-dark);
  overflow: hidden;
}
.news-card-img img { width: 100%; height: 100%; object-fit: cover; }
.news-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.news-card-meta {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.news-tag {
  background: var(--cream-dark);
  color: var(--burgundy);
  padding: 2px 8px;
  border-radius: 99px;
  font-size: 0.8rem;
  font-weight: 600;
}
.news-card h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.news-card p { font-size: 0.95rem; flex: 1; }
.news-card-link {
  margin-top: 1rem;
  font-weight: 600;
  color: var(--burgundy);
}
.news-card-link:hover { color: var(--gold); }

/* ============================================================
   GALERIA PRODUKTÓW (pieczywo.html / ciasta.html)
   ============================================================ */
.products-hero {
  background: var(--burgundy);
  padding: clamp(3rem, 8vw, 5rem) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.products-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.products-hero h1 { color: var(--white); position: relative; }
.products-hero p { color: rgba(255,255,255,0.8); max-width: 600px; margin: 1rem auto 0; position: relative; font-size: 1.1rem; }

.products-filters {
  background: var(--white);
  border-bottom: 1px solid var(--cream-mid);
  position: sticky;
  top: var(--header-h);
  z-index: 50;
}
.filters-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 1rem clamp(1rem, 4vw, 2.5rem);
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  scrollbar-width: none;
}
.filters-inner::-webkit-scrollbar { display: none; }
.filter-btn {
  white-space: nowrap;
  padding: 0.4rem 1.1rem;
  border-radius: 99px;
  border: 2px solid var(--cream-mid);
  background: none;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition);
}
.filter-btn.active,
.filter-btn:hover {
  background: var(--burgundy);
  border-color: var(--burgundy);
  color: var(--white);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  padding: 2rem 0;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.product-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--cream-dark);
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.product-card:hover .product-img img { transform: scale(1.08); }
.product-info { padding: 1.25rem; }
.product-info h3 { margin-bottom: 0.35rem; font-size: 1.1rem; }
.product-info p { font-size: 0.9rem; color: var(--text-muted); }
.product-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 99px;
  margin-bottom: 0.4rem;
}

/* ============================================================
   KONTAKT
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.contact-info h2 { margin-bottom: 1.5rem; }
.contact-detail {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}
.contact-detail-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: var(--burgundy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-detail-text strong { display: block; color: var(--text); font-size: 0.95rem; margin-bottom: 0.15rem; }
.contact-detail-text p { font-size: 0.95rem; margin: 0; }
.contact-detail-text a { color: var(--burgundy); font-weight: 600; }
.contact-detail-text a:hover { color: var(--gold); }

.social-contact { margin-top: 2rem; }
.social-contact h3 { margin-bottom: 1rem; font-size: 1.2rem; }
.social-contact .social-links { display: flex; gap: 1rem; }
.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  border: 2px solid var(--cream-mid);
  color: var(--burgundy);
  transition: all var(--transition);
}
.social-links a:hover {
  background: var(--burgundy);
  border-color: var(--burgundy);
  color: var(--white);
  transform: translateY(-3px);
}

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/3;
  background: var(--cream-dark);
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Godziny otwarcia w kontakcie */
.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}
.hours-table td {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--cream-mid);
  font-size: 0.95rem;
  color: var(--text-muted);
}
.hours-table td:first-child { color: var(--text); font-weight: 600; }
.hours-table tr:last-child td { border-bottom: none; }

/* ============================================================
   AKTUALNOŚCI / BLOG
   ============================================================ */
.blog-post-full {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0;
}
.blog-post-full h1 { margin-bottom: 0.5rem; }
.blog-post-meta {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 2rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}
.blog-post-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 2rem;
}
.blog-content h2 { margin: 2rem 0 0.75rem; }
.blog-content p { margin-bottom: 1rem; }

/* Admin panel wpisu */
.admin-panel {
  display: none;
  background: var(--burgundy-dark);
  color: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  margin: 2rem 0;
}
.admin-panel.visible { display: block; }
.admin-panel h3 { color: var(--white); margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; margin-bottom: 0.35rem; font-size: 0.9rem; color: rgba(255,255,255,0.8); }
.form-control {
  width: 100%;
  padding: 0.65rem 1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  resize: vertical;
}
.form-control::placeholder { color: rgba(255,255,255,0.4); }
.form-control:focus { outline: 2px solid var(--gold); }
.form-group textarea { min-height: 120px; }
.form-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1rem; }

/* ============================================================
   STOPKA
   ============================================================ */
.site-footer {
  background: var(--burgundy-dark);
  color: rgba(255,255,255,0.8);
  padding-top: 3rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
.footer-brand .logo-main { color: var(--white); }
.footer-brand p { font-size: 0.95rem; color: rgba(255,255,255,0.65); margin-top: 0.75rem; max-width: 300px; }
.site-footer h3 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
}
.footer-links ul li { margin-bottom: 0.5rem; }
.footer-links ul a,
.footer-contact a {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  transition: color var(--transition);
}
.footer-links ul a:hover,
.footer-contact a:hover { color: var(--gold-light); }
.footer-contact p { font-size: 0.95rem; color: rgba(255,255,255,0.7); margin-bottom: 0.5rem; }
.footer-social .social-links a {
  border-color: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.7);
}
.footer-social .social-links a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}
.footer-hours { margin-top: 1.5rem; }
.footer-hours h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}
.footer-hours table { width: 100%; }
.footer-hours td { font-size: 0.88rem; color: rgba(255,255,255,0.65); padding: 0.2rem 0; }
.footer-hours td:last-child { text-align: right; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
}

/* ============================================================
   ANIMACJE WEJŚCIA
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in:nth-child(2) { transition-delay: 0.1s; }
.fade-in:nth-child(3) { transition-delay: 0.2s; }
.fade-in:nth-child(4) { transition-delay: 0.3s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .featured-card.large { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-layout { gap: 2rem; }
}

@media (max-width: 768px) {
  /* Nav mobile */
  .nav-toggle { display: flex; }
  /*.main-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 2px solid var(--cream-mid);
    padding: 1.5rem;
    transform: translateY(-110%);
    transition: transform var(--transition);
    box-shadow: var(--shadow-md);
  }
  .main-nav.open { transform: translateY(0); }*/
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;        /* tuż pod headerem */
    left: 0; 
    right: 0;
    z-index: 199;
    background: var(--white);
    border-bottom: 2px solid var(--cream-mid);
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; gap: 0; }
  .nav-link { padding: 0.8rem 0.5rem; border-bottom: 1px solid var(--cream-mid); border-radius: 0; }
  .nav-link::after { display: none; }

  /* Hero */
  .hero-content { margin-left: 0; padding: 2rem 1rem; }

  /* Products */
  .featured-grid { grid-template-columns: 1fr; }
  .featured-card.large { grid-column: span 1; grid-template-columns: 1fr; }
  .featured-card.large .featured-img { min-height: 220px; }

  /* Contact */
  .contact-layout { grid-template-columns: 1fr; }
  .map-container { aspect-ratio: 16/9; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }

  /* Info strip */
  .info-strip-items { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero-cta { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .reviews-grid { grid-template-columns: 1fr; }
  h1 { font-size: 2rem; }
}

/* ============================================================
   DRUKOWANIE
   ============================================================ */
@media print {
  .site-header, .hero-scroll-hint, .site-footer nav { display: none; }
  .hero { min-height: auto; padding: 2rem; }
  .hero-overlay { display: none; }
  .hero-title { color: var(--burgundy-dark); text-shadow: none; }
  .hero-subtitle { color: var(--text); }
}

/* ============================================================
   FORMULARZ KONTAKTOWY
   ============================================================ */
.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  margin-top: 2rem;
}
.contact-form h3 { margin-bottom: 1.25rem; font-size: 1.4rem; }
.cf-group { margin-bottom: 1rem; }
.cf-group label { display: block; margin-bottom: 0.3rem; font-size: 0.9rem; color: var(--text); font-weight: 600; }
.cf-control {
  width: 100%;
  padding: 0.65rem 1rem;
  border-radius: var(--radius);
  border: 2px solid var(--cream-mid);
  background: var(--cream);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color var(--transition);
}
.cf-control:focus { outline: none; border-color: var(--burgundy); background: var(--white); }
.cf-control::placeholder { color: var(--text-muted); }
textarea.cf-control { min-height: 130px; resize: vertical; }
.cf-submit { margin-top: 1.25rem; }
.form-note { font-size: 0.82rem; color: var(--text-muted); margin-top: 0.5rem; }
.cf-success {
  background: #d4edda; color: #155724;
  border: 1px solid #c3e6cb;
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  margin-bottom: 1rem;
}
.cf-alert {
  background: #fde8e8; color: #c0392b;
  border: 1px solid #f5c6cb;
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  margin-bottom: 1rem;
}
