/* ==============================================================
   Fri Kotki — styles.css
   Paleta: butelkowa zieleń + złoto
   ============================================================== */

:root {
  /* Kolory */
  --green: #0F3D2E;
  --green-deep: #082519;
  --green-soft: #1B5742;
  --gold: #D4AF37;
  --gold-mute: #C9A86A;
  --gold-dark: #9C7E3F;
  --cream: #F5EFE0;
  --cream-warm: #FAF4E6;
  --ink: #0F1814;
  --mute: #6B6B6B;
  --line: rgba(15, 61, 46, 0.12);
  --line-light: rgba(245, 239, 224, 0.18);

  /* Typografia */
  --font-display: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', 'Helvetica Neue', system-ui, sans-serif;

  /* Layout */
  --banner-h: 52px;
  --nav-h: 76px;
  --max-w: 1280px;
  --max-w-prose: 720px;
  --radius: 14px;
  --radius-lg: 24px;

  /* Animacje */
  --easing: cubic-bezier(0.22, 1, 0.36, 1);
}

@media (max-width: 768px) {
  :root { --banner-h: 96px; --nav-h: 64px; }
}

/* ============================================================== */
/* RESET */
/* ============================================================== */

* { box-sizing: border-box; }
*, *::before, *::after { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; border: none; background: none; cursor: pointer; color: inherit; }
ul { list-style: none; }
input, textarea, select { font: inherit; color: inherit; }

/* ============================================================== */
/* TYPOGRAFIA */
/* ============================================================== */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--green-deep);
}
h1 { font-size: clamp(2.5rem, 6vw, 5rem); font-style: italic; font-weight: 300; }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); }
h3 { font-size: clamp(1.4rem, 2vw, 1.875rem); }
h4 { font-size: 1.25rem; font-weight: 500; }
p { margin-bottom: 1.1em; }
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 500;
  margin-bottom: 1rem;
}
.eyebrow.on-dark { color: var(--gold); }

/* ============================================================== */
/* LAYOUT — kontenery */
/* ============================================================== */

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}
.container-prose { max-width: var(--max-w-prose); margin: 0 auto; padding: 0 24px; }
@media (max-width: 640px) {
  .container, .container-prose { padding: 0 20px; }
}

section { padding: clamp(64px, 10vw, 128px) 0; }
section.alt { background: var(--cream-warm); }
section.dark { background: var(--green); color: var(--cream); }
section.dark h2, section.dark h3, section.dark h4 { color: var(--cream); }
section.dark .eyebrow { color: var(--gold); }

/* ============================================================== */
/* BANNER „w trakcie rozbudowy" */
/* ============================================================== */

.site-banner {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  height: var(--banner-h);
  background: linear-gradient(135deg, var(--green-deep), var(--green));
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 56px 0 24px;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-align: center;
  border-bottom: 1px solid var(--gold-dark);
}
.site-banner b { color: var(--gold); font-weight: 500; }
.site-banner-close {
  position: absolute;
  right: 16px; top: 50%;
  transform: translateY(-50%);
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--cream);
  font-size: 20px;
  line-height: 1;
  transition: background 0.2s;
}
.site-banner-close:hover { background: rgba(255, 255, 255, 0.1); }
@media (max-width: 768px) {
  .site-banner { font-size: 12px; padding: 0 48px 0 16px; line-height: 1.45; }
}

body.no-banner { --banner-h: 0px; }
body.no-banner .site-banner { display: none; }

/* ============================================================== */
/* NAV */
/* ============================================================== */

.site-nav {
  position: fixed;
  top: var(--banner-h);
  left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(15, 61, 46, 0.92);
  border-bottom: 1px solid var(--line-light);
  transition: top 0.2s;
}
/* Frosted-glass na osobnej warstwie (::after) zamiast bezposrednio na
   .site-nav. Backdrop-filter na .site-nav tworzylby containing block dla
   position:fixed .nav-menu — przez to menu mobilne (hamburger) zapadalo
   sie do paska nav zamiast wypelniac ekran. Tu blur nie dotyka menu. */
.site-nav::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  pointer-events: none;
}
.site-nav-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  height: 100%;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-brand {
  display: flex; align-items: center; gap: 12px;
  color: var(--cream);
}
.nav-brand img { width: 40px; height: 40px; flex-shrink: 0; }
.nav-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav-brand-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--cream);
}
.nav-brand-name .dot { color: var(--gold); }
.nav-brand-tagline {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-top: 3px;
}
@media (max-width: 480px) {
  .nav-brand-tagline { display: none; }
}

.nav-menu {
  display: flex; align-items: center; gap: 6px;
}
.nav-menu a {
  display: inline-block;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 0.02em;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
.nav-menu a:hover { background: rgba(212, 175, 55, 0.12); color: var(--gold); }
.nav-menu a.active { color: var(--gold); }
.nav-menu .cta {
  background: var(--gold);
  color: var(--green-deep);
  padding: 10px 20px;
  font-weight: 500;
  border-radius: 999px;
  margin-left: 12px;
}
.nav-menu .cta:hover { background: var(--cream); color: var(--green-deep); }

/* Dropdown rasy */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 200px;
  background: var(--green-deep);
  border: 1px solid var(--line-light);
  border-radius: 12px;
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-dropdown-menu a { display: block; padding: 10px 14px; }

/* Hamburger mobile */
.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--cream);
  transition: transform 0.3s, opacity 0.3s;
}
body.menu-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 960px) {
  .site-nav-inner { padding: 0 20px; }
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed;
    top: calc(var(--banner-h) + var(--nav-h));
    left: 0; right: 0;
    bottom: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--green-deep);
    padding: 24px 24px 80px;
    gap: 0;
    transform: translateX(100%);
    transition: transform 0.35s var(--easing);
    overflow-y: auto;
  }
  body.menu-open .nav-menu { transform: translateX(0); }
  .nav-menu a {
    padding: 18px 12px;
    font-size: 18px;
    border-bottom: 1px solid var(--line-light);
    border-radius: 0;
  }
  .nav-menu .cta { margin-top: 16px; margin-left: 0; text-align: center; }
  .nav-dropdown-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; background: transparent; padding: 0 0 0 16px; border: none; }
}

/* ============================================================== */
/* HERO (strona główna) */
/* ============================================================== */

.hero {
  min-height: 100vh;
  padding-top: calc(var(--banner-h) + var(--nav-h) + 16px);
  padding-bottom: 48px;
  position: relative;
  background:
    radial-gradient(ellipse at 50% 30%, var(--green-soft) 0%, var(--green) 45%, var(--green-deep) 100%);
  color: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.06), transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.05), transparent 50%);
  pointer-events: none;
}
.hero-inner { position: relative; max-width: 900px; padding: 0 32px; }
.hero-logo {
  max-width: min(440px, 42vh);
  width: 100%;
  margin: 0 auto 20px;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.35));
}
@media (max-width: 640px) {
  .hero-logo { max-width: min(340px, 38vh); }
}
.hero h1 {
  color: var(--cream);
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 12px;
}
.hero .lead {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  color: var(--gold);
  margin-bottom: 28px;
  font-weight: 300;
  letter-spacing: 0.01em;
}
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Sparkles */
.sparkle {
  position: absolute;
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: sparkle 6s ease-in-out infinite;
  pointer-events: none;
}
@keyframes sparkle {
  0%, 100% { opacity: 0; transform: scale(0.5); }
  50% { opacity: 0.8; transform: scale(1); }
}

/* ============================================================== */
/* PRZYCISKI */
/* ============================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.02em;
  transition: all 0.25s var(--easing);
  border: 1px solid transparent;
  text-decoration: none;
}
.btn-primary {
  background: var(--gold);
  color: var(--green-deep);
}
.btn-primary:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}
.btn-ghost {
  background: transparent;
  border-color: var(--cream);
  color: var(--cream);
}
.btn-ghost:hover {
  background: var(--cream);
  color: var(--green-deep);
}
.btn-dark {
  background: var(--green-deep);
  color: var(--cream);
}
.btn-dark:hover { background: var(--green); }
.btn-gold-outline {
  background: transparent;
  color: var(--gold-dark);
  border-color: var(--gold-mute);
}
.btn-gold-outline:hover { background: var(--gold); color: var(--green-deep); border-color: var(--gold); }

/* ============================================================== */
/* STATS BAND */
/* ============================================================== */

.stats {
  background: var(--green-deep);
  color: var(--cream);
  padding: 64px 0;
  border-top: 1px solid var(--gold-dark);
  border-bottom: 1px solid var(--gold-dark);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 4rem);
  color: var(--gold);
  line-height: 1;
  font-weight: 400;
  letter-spacing: -0.02em;
}
.stat-label {
  margin-top: 8px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 239, 224, 0.7);
}
@media (max-width: 760px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
}

/* ============================================================== */
/* SECTION HEADER */
/* ============================================================== */

.section-head { text-align: center; margin-bottom: 64px; }
.section-head h2 { margin-bottom: 16px; }
.section-head p { color: var(--mute); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }
.section-head.left { text-align: left; }

/* ============================================================== */
/* KARTY (rasy, usługi, opinie) */
/* ============================================================== */

.cards-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.cards-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

@media (max-width: 960px) {
  .cards-2 { grid-template-columns: 1fr; }
  .cards-3 { grid-template-columns: 1fr 1fr; }
  .cards-4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .cards-3, .cards-4 { grid-template-columns: 1fr; }
}

.card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid var(--line);
  transition: transform 0.35s var(--easing), box-shadow 0.35s var(--easing), border-color 0.35s;
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(8, 37, 25, 0.08);
  border-color: var(--gold-mute);
}
.card h3 { margin-bottom: 12px; }
.card p { color: var(--mute); margin-bottom: 20px; }
.card .card-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-dark);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.04em;
}
.card .card-link::after { content: '→'; transition: transform 0.2s; }
.card:hover .card-link::after { transform: translateX(4px); }

/* Breed card — duża, z hero image */
.breed-card {
  display: flex;
  flex-direction: column;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: all 0.4s var(--easing);
}
.breed-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(8, 37, 25, 0.12);
}
.breed-card-img {
  aspect-ratio: 16 / 11;
  background: var(--green-soft);
  background-size: cover;
  background-position: center;
  position: relative;
}
.breed-card-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(8, 37, 25, 0.5));
}
.breed-card-body { padding: 36px 32px; }
.breed-card-body h3 { font-size: 2rem; margin-bottom: 8px; }
.breed-card-body .sub {
  color: var(--gold-dark);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 20px;
}
.breed-card-body p { color: var(--mute); }

/* ============================================================== */
/* CHECK-LIST (pakiet startowy) */
/* ============================================================== */

.checks { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px 32px; margin: 32px 0; }
.checks li {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 18px;
  background: white;
  border-radius: 12px;
  border-left: 3px solid var(--gold);
  font-size: 0.95rem;
}
section.dark .checks li { background: rgba(245, 239, 224, 0.04); border-left-color: var(--gold); color: var(--cream); }
.checks li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 600;
  flex-shrink: 0;
}
@media (max-width: 720px) { .checks { grid-template-columns: 1fr; } }

/* ============================================================== */
/* FAQ */
/* ============================================================== */

.faq { max-width: 800px; margin: 0 auto; }
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}
.faq summary {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  color: var(--green-deep);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-size: 28px;
  color: var(--gold-dark);
  font-weight: 300;
  transition: transform 0.3s;
  line-height: 1;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details > div {
  padding-top: 16px;
  color: var(--mute);
  font-size: 1rem;
  line-height: 1.75;
}

/* ============================================================== */
/* GALERIE — cover + lightbox (jak Perfectto) */
/* ============================================================== */

.gallery-cover {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--green-soft);
  aspect-ratio: 4 / 3;
}
.gallery-cover img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--easing);
}
.gallery-cover:hover img { transform: scale(1.06); }
.gallery-cover-cta {
  position: absolute;
  bottom: 14px; right: 14px;
  background: rgba(15, 61, 46, 0.85);
  color: var(--gold);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.04em;
  backdrop-filter: blur(8px);
}
.gallery-grid[hidden] { display: none; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(8, 37, 25, 0.96);
  display: none;
  flex-direction: column;
  padding: 24px;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-stage {
  flex: 1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 0;
}
.lightbox-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 8px;
  transition: opacity 0.25s;
}
.lightbox-img.fading { opacity: 0; }
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  background: rgba(15, 61, 46, 0.6);
  border: 1px solid var(--gold-mute);
  color: var(--cream);
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  cursor: pointer;
  transition: all 0.2s;
  z-index: 10;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: var(--gold); color: var(--green-deep); }
.lightbox-close { top: 24px; right: 24px; }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-count {
  position: absolute;
  top: 28px; left: 28px;
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
}
.lightbox-thumbs {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  max-width: 100%;
  overflow-x: auto;
  padding: 4px;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) transparent;
}
.lightbox-thumbs img {
  width: 64px; height: 48px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  opacity: 0.5;
  border: 2px solid transparent;
  transition: opacity 0.2s, border-color 0.2s;
  flex-shrink: 0;
}
.lightbox-thumbs img.active { opacity: 1; border-color: var(--gold); }
.lightbox-thumbs img:hover { opacity: 1; }

@media (max-width: 640px) {
  .lightbox-prev { left: 12px; }
  .lightbox-next { right: 12px; }
}

/* ============================================================== */
/* PAGE HERO (podstrony) */
/* ============================================================== */

.page-hero {
  padding-top: calc(var(--banner-h) + var(--nav-h) + 80px);
  padding-bottom: 80px;
  background: radial-gradient(ellipse at center, var(--green-soft) 0%, var(--green) 60%, var(--green-deep) 100%);
  color: var(--cream);
  text-align: center;
}
.page-hero h1 { color: var(--cream); margin-bottom: 12px; }
.page-hero .lead {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold);
  font-size: 1.25rem;
  max-width: 640px;
  margin: 0 auto;
  font-weight: 300;
}
.breadcrumbs {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 239, 224, 0.6);
  margin-bottom: 24px;
}
.breadcrumbs a { color: var(--gold-mute); }
.breadcrumbs a:hover { color: var(--gold); }
.breadcrumbs span { margin: 0 10px; opacity: 0.5; }

/* ============================================================== */
/* CONTENT (treść podstrony) */
/* ============================================================== */

.content-section { padding: clamp(64px, 8vw, 96px) 0; }
.content-section h2 { margin-bottom: 24px; }
.content-section h3 { margin-top: 48px; margin-bottom: 16px; }
.content-section p { font-size: 1.05rem; }
.content-section ul:not(.checks):not(.nav-menu) {
  margin: 1em 0 1.5em 1.5em;
}
.content-section ul:not(.checks):not(.nav-menu) li {
  position: relative;
  padding-left: 12px;
  margin-bottom: 8px;
  line-height: 1.7;
  list-style: none;
}
.content-section ul:not(.checks):not(.nav-menu) li::before {
  content: '·';
  position: absolute;
  left: -8px;
  color: var(--gold-dark);
  font-weight: 700;
}

.pull-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--green-deep);
  text-align: center;
  margin: 64px auto;
  max-width: 680px;
  position: relative;
  padding: 24px 0;
  border-top: 1px solid var(--gold-mute);
  border-bottom: 1px solid var(--gold-mute);
  line-height: 1.4;
}

/* ============================================================== */
/* FORMULARZ */
/* ============================================================== */

.form-wrap {
  max-width: 720px;
  margin: 0 auto;
  background: white;
  padding: clamp(32px, 5vw, 56px);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: 0 20px 60px rgba(8, 37, 25, 0.06);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-row.single { grid-template-columns: 1fr; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

.field { display: flex; flex-direction: column; }
.field label {
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--green-deep);
  letter-spacing: 0.02em;
}
.field label .req { color: var(--gold-dark); margin-left: 2px; }
.field input, .field textarea, .field select {
  background: var(--cream-warm);
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 15px;
  width: 100%;
  transition: border-color 0.2s, background 0.2s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--gold);
  background: white;
}
.field textarea { min-height: 120px; resize: vertical; font-family: inherit; }

.honeypot { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 24px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--mute);
}
.checkbox-row input[type=checkbox] { margin-top: 3px; accent-color: var(--gold); }
.checkbox-row a { color: var(--gold-dark); text-decoration: underline; }

.form-status {
  padding: 16px 20px;
  border-radius: 12px;
  margin-bottom: 24px;
  font-size: 14px;
}
.form-status.success { background: rgba(212, 175, 55, 0.15); color: var(--green-deep); border: 1px solid var(--gold-mute); }
.form-status.error { background: rgba(180, 60, 60, 0.1); color: #8B2D2D; border: 1px solid #C45454; }
.form-status[hidden] { display: none; }

/* ============================================================== */
/* FLOATING BUTTONS */
/* ============================================================== */

.float-btns {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 99;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.float-btn {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  color: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  transition: transform 0.25s var(--easing);
}
.float-btn:hover { transform: scale(1.1); }
.float-btn.wa { background: #25D366; }
.float-btn.tel { background: var(--gold); color: var(--green-deep); }

/* ============================================================== */
/* FOOTER */
/* ============================================================== */

.site-footer {
  background: var(--green-deep);
  color: var(--cream);
  padding: 80px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}
.footer-brand { display: flex; flex-direction: column; gap: 16px; max-width: 360px; }
.footer-brand img { width: 80px; height: 80px; }
.footer-brand p { color: rgba(245, 239, 224, 0.6); font-size: 14px; line-height: 1.7; }
.footer-col h4 {
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; font-size: 14px; }
.footer-col ul li a { color: rgba(245, 239, 224, 0.75); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--line-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: rgba(245, 239, 224, 0.4);
  letter-spacing: 0.04em;
}
.footer-bottom a { color: var(--gold-mute); }
@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ============================================================== */
/* UTILITIES */
/* ============================================================== */

.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-md { margin-top: 24px; }
.mt-lg { margin-top: 48px; }

main { padding-top: calc(var(--banner-h) + var(--nav-h)); }

/* Skip-to-content (a11y) */
.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--gold);
  color: var(--green-deep);
  padding: 12px 20px;
  z-index: 99999;
}
.skip:focus { left: 8px; top: 8px; }

/* Subtle reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--easing), transform 0.7s var(--easing);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================== */
/* COOKIE CONSENT — banner + ustawienia                            */
/* ============================================================== */

.cookie-banner {
  position: fixed;
  bottom: 16px; left: 16px; right: 16px;
  z-index: 10001;
  background: var(--green-deep);
  color: var(--cream);
  border: 1px solid var(--gold-mute);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s var(--easing), transform 0.4s var(--easing);
  pointer-events: none;
  max-width: 980px;
  margin: 0 auto;
}
.cookie-banner.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.cookie-banner__inner {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
.cookie-banner__icon { font-size: 32px; flex-shrink: 0; }
.cookie-banner__text { flex: 1 1 320px; font-size: 14px; line-height: 1.55; }
.cookie-banner__text strong { display: block; color: var(--gold); font-family: var(--font-display); font-style: italic; font-size: 18px; margin-bottom: 6px; }
.cookie-banner__text a { color: var(--gold-mute); text-decoration: underline; }
.cookie-banner__text a:hover { color: var(--gold); }
.cookie-banner__buttons { display: flex; gap: 8px; flex-wrap: wrap; }

.cookie-btn {
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.2s;
  border: 1px solid transparent;
  font-family: var(--font-body);
}
.cookie-btn--primary { background: var(--gold); color: var(--green-deep); }
.cookie-btn--primary:hover { background: var(--cream); }
.cookie-btn--secondary { background: transparent; color: var(--cream); border-color: var(--cream); }
.cookie-btn--secondary:hover { background: var(--cream); color: var(--green-deep); }
.cookie-btn--ghost { background: transparent; color: var(--gold-mute); text-decoration: underline; }
.cookie-btn--ghost:hover { color: var(--gold); }

/* Cookie settings modal */
.cookie-settings {
  position: fixed; inset: 0;
  z-index: 10002;
  background: rgba(8, 37, 25, 0.85);
  display: none;
  align-items: center; justify-content: center;
  padding: 24px;
}
.cookie-settings.open { display: flex; }
.cookie-settings__box {
  background: var(--cream);
  color: var(--ink);
  max-width: 600px; width: 100%;
  max-height: 90vh; overflow-y: auto;
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
}
.cookie-settings__close {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--green);
  color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  cursor: pointer;
}
.cookie-settings h2 { font-family: var(--font-display); font-weight: 400; font-style: italic; margin-bottom: 12px; color: var(--green-deep); }
.cookie-settings .intro { color: var(--mute); font-size: 14px; margin-bottom: 24px; line-height: 1.6; }

.cookie-row { border-top: 1px solid var(--line); padding: 18px 0; }
.cookie-row__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.cookie-row__title { font-weight: 600; color: var(--green-deep); font-size: 16px; }
.cookie-row__desc { color: var(--mute); font-size: 13px; line-height: 1.6; }

/* Toggle switch */
.cookie-switch { position: relative; display: inline-block; width: 48px; height: 26px; }
.cookie-switch input { opacity: 0; width: 0; height: 0; }
.cookie-switch__slider {
  position: absolute; cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #ccc;
  border-radius: 26px;
  transition: 0.3s;
}
.cookie-switch__slider:before {
  content: ""; position: absolute;
  height: 20px; width: 20px;
  left: 3px; bottom: 3px;
  background: white;
  border-radius: 50%;
  transition: 0.3s;
}
.cookie-switch input:checked + .cookie-switch__slider { background: var(--gold); }
.cookie-switch input:checked + .cookie-switch__slider:before { transform: translateX(22px); }
.cookie-switch input:disabled + .cookie-switch__slider { background: var(--gold-mute); opacity: 0.6; cursor: not-allowed; }

.cookie-settings__actions {
  display: flex; gap: 12px; justify-content: flex-end;
  margin-top: 28px; padding-top: 20px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.cookie-settings__actions .cookie-btn--secondary { color: var(--green-deep); border-color: var(--green-soft); }
.cookie-settings__actions .cookie-btn--secondary:hover { background: var(--green); color: var(--cream); }

@media (max-width: 600px) {
  .cookie-banner__buttons { width: 100%; }
  .cookie-banner__buttons .cookie-btn { flex: 1; text-align: center; }
}

/* ============================================================== */
/* LEGAL CONTENT — polityki                                        */
/* ============================================================== */

.legal-content {
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(48px, 6vw, 80px) clamp(20px, 4vw, 40px);
}
.legal-content h2 { font-size: 1.6rem; margin-top: 48px; margin-bottom: 14px; color: var(--green-deep); }
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 { font-size: 1.2rem; margin-top: 28px; margin-bottom: 10px; color: var(--green); }
.legal-content p { font-size: 15px; line-height: 1.75; color: #2a2a2a; margin-bottom: 12px; }
.legal-content ul, .legal-content ol { margin: 8px 0 18px 1.6em; }
.legal-content li { font-size: 15px; line-height: 1.7; color: #2a2a2a; margin-bottom: 6px; }
.legal-content a { color: var(--gold-dark); text-decoration: underline; }
.legal-content a:hover { color: var(--green); }
.legal-content code { background: var(--cream-warm); padding: 2px 6px; border-radius: 4px; font-size: 13px; color: var(--green-deep); }

.legal-meta {
  background: var(--cream-warm);
  border-left: 3px solid var(--gold);
  padding: 18px 22px;
  margin-bottom: 32px;
  font-size: 14px;
  line-height: 1.7;
  border-radius: 0 8px 8px 0;
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  margin: 16px 0 24px;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.cookie-table th, .cookie-table td { padding: 12px 14px; text-align: left; border-bottom: 1px solid var(--line); }
.cookie-table th { background: var(--green-deep); color: var(--cream); font-weight: 500; font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; }
.cookie-table tr:last-child td { border-bottom: none; }
.cookie-table code { background: var(--cream-warm); }

.legal-cta {
  margin-top: 56px;
  background: var(--green-deep);
  color: var(--cream);
  padding: 32px 28px;
  border-radius: var(--radius);
  text-align: center;
}
.legal-cta h3 { color: var(--cream); font-size: 1.4rem; margin-bottom: 12px; }
.legal-cta button {
  background: var(--gold);
  color: var(--green-deep);
  border: none;
  padding: 12px 28px;
  border-radius: 999px;
  font-weight: 500;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.2s;
}
.legal-cta button:hover { background: var(--cream); }

/* Footer legal links */
.foot-legal { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.foot-legal a { color: var(--gold-mute); font-size: 12px; }
.foot-legal a:hover { color: var(--gold); }
.foot-legal__sep { color: rgba(245, 239, 224, 0.3); }

/* ============================================================== */
/* SIATKA KOTÓW (na podstronach rasy)                              */
/* ============================================================== */

.cats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 48px 0;
}
@media (max-width: 900px) { .cats-grid { grid-template-columns: 1fr 1fr; gap: 18px; } }
@media (max-width: 560px) { .cats-grid { grid-template-columns: 1fr; } }

.cat-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform 0.35s var(--easing), box-shadow 0.35s var(--easing);
  display: flex;
  flex-direction: column;
}
.cat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(8, 37, 25, 0.12);
}
.cat-card .gallery-cover {
  border-radius: 0;
  aspect-ratio: 1 / 1;
}
.cat-card-body {
  padding: 20px 24px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}
.cat-card-body h3 {
  font-size: 1.5rem;
  margin: 0;
  color: var(--green-deep);
}
.cat-card-body .meta {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 500;
}
