/* =============================================
   Hodowla Kotów Burmskich Ju-Mi
   Elicyon-inspired — v8
   Zasady: fotografia rządzi, cisza = luksus,
   zero ozdób, typografia jako architektura
   ============================================= */

:root {
  --bg:          #EDE8E0;      /* ciepły pergamin – bazowe tło */
  --bg-alt:      #E4DCD2;      /* minimalnie ciemniejszy akcent */
  --bg-dark:     #1C1410;      /* Charcoal Brown – nav, hero, footer */
  --text:        #1C1410;      /* Charcoal Brown na jasnym tle */
  --text-mid:    #5A4438;
  --text-dim:    rgba(28, 20, 16, 0.40);
  --burg:        #7A3B48;      /* Muted Burgundy – jedyny akcent */
  --burg-dim:    rgba(122, 59, 72, 0.14);
  --taupe:       #B09272;      /* Warm Taupe – cienkie linie, detale */
  --taupe-dim:   rgba(176, 146, 114, 0.20);
  --on-dark:     rgba(244, 240, 235, 0.92);
  --on-dark-dim: rgba(244, 240, 235, 0.38);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-ui:      'Lato', 'Helvetica Neue', sans-serif;
  --ease:         cubic-bezier(0.4, 0, 0.2, 1);
  --t:            0.40s;
  --t-slow:       0.85s;
  --max-w:        1280px;
  --side:         clamp(2rem, 8vw, 8rem);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { background: var(--bg); scroll-behavior: smooth; }

/* Offset dla kotwic – stała nawigacja ma 72px */
section[id], div[id] { scroll-margin-top: 72px; }
body  {
  font-family: var(--font-ui);
  background: var(--bg);
  color: var(--text);
  font-size: 17px;
  line-height: 1.85;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }

/* ---- Navbar – opóźnione pojawienie ---- */
.navbar {
  opacity: 0;
  animation: navAppear 0.80s cubic-bezier(0.4, 0, 0.2, 1) 1.6s forwards;
}
@keyframes navAppear {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---- Animacja liter – losowa kolejność ---- */
/* .wl  = pojedyncza litera, --d = losowe opóźnienie */
.wl {
  display: inline-block;
  opacity: 0;
  filter: blur(8px);
  transform: translateY(-18px);
  transition:
    opacity   0.60s cubic-bezier(0.16, 1, 0.3, 1) var(--d, 0s),
    filter    0.60s cubic-bezier(0.16, 1, 0.3, 1) var(--d, 0s),
    transform 0.60s cubic-bezier(0.16, 1, 0.3, 1) var(--d, 0s);
}
.wl-sp  { display: inline; }           /* spacja – bez animacji */
.wl-word { white-space: nowrap; display: inline-block; } /* całe słowo jako jednostka łamania */

/* Odpal gdy element otrzyma klasę letters-go */
.letters-go .wl {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

/* ---- Animacje wejścia ---- */
[data-anim] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--t-slow) var(--ease),
              transform var(--t-slow) var(--ease);
}
[data-anim].visible          { opacity: 1; transform: translateY(0); }
[data-anim="fade"]           { transform: none; }
[data-anim="fade"].visible   { opacity: 1; }

/* Logotypy – kontener jest zawsze widoczny, dzieci animują się kolejno */
[data-anim="logos"]          { opacity: 1; transform: none; transition: none; }
[data-anim="logos"] .onas-logo { opacity: 0; transform: translateY(12px); }
[data-anim="logos"].visible .onas-logo:nth-child(1) { animation: logoIn 0.65s var(--ease) 0.10s both; }
[data-anim="logos"].visible .onas-logo:nth-child(2) { animation: logoIn 0.65s var(--ease) 0.30s both; }
[data-anim="logos"].visible .onas-logo:nth-child(3) { animation: logoIn 0.65s var(--ease) 0.50s both; }
@keyframes logoIn {
  from { opacity: 0;    transform: translateY(12px); }
  to   { opacity: 0.40; transform: translateY(0);    }
}
[data-delay="1"] { transition-delay: 0.10s; }
[data-delay="2"] { transition-delay: 0.24s; }
[data-delay="3"] { transition-delay: 0.40s; }
[data-delay="4"] { transition-delay: 0.58s; }
[data-delay="5"] { transition-delay: 0.76s; }
[data-delay="6"] { transition-delay: 0.94s; }
[data-delay="7"] { transition-delay: 1.12s; }

/* =============================================
   NAWIGACJA
   ============================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--side);
  background: var(--bg-dark);
}
/* cienka linia taupe zamiast twardego border */
.navbar::after {
  content: '';
  position: absolute;
  bottom: 0; left: var(--side); right: var(--side);
  height: 1px;
  background: var(--taupe-dim);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  transition: color var(--t);
}
.nav-brand-name {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--on-dark);
  transition: color var(--t);
  line-height: 1;
}
.nav-brand-sub {
  font-family: var(--font-ui);
  font-size: 0.60rem;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: var(--on-dark-dim);
  transition: color var(--t);
  line-height: 1;
  padding-left: 0.9rem;
  border-left: 1px solid var(--taupe-dim);
}
.nav-brand-link { text-decoration: none; }
.nav-brand-link:hover .nav-brand-name { color: var(--taupe); }

.nav-links {
  display: flex;
  list-style: none;
  gap: 3rem;
}
.nav-links a {
  font-family: var(--font-ui);
  font-size: 0.60rem;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: var(--on-dark-dim);
  transition: color var(--t);
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--taupe);
  transition: width var(--t) var(--ease);
}
.nav-links a:hover,
.nav-links a.active      { color: var(--on-dark); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.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: 1px;
  background: var(--on-dark);
  transition: var(--t);
}

/* =============================================
   HERO – pełnoekranowe tło, tekst po prawej,
   luksusowa animacja liter
   ============================================= */
.hero {
  height: 100vh;
  min-height: 680px;
  position: relative;
  overflow: hidden;
}

/* Tło – hero-background.jpg, lekki zoom przy wejściu */
.hero-bg-img {
  position: absolute;
  inset: 0;
  background: url('../images/hero-background.jpg') center / cover no-repeat;
  z-index: 0;
  transform-origin: center center;
  animation: bgZoom 14s cubic-bezier(0.0, 0.0, 0.2, 1) forwards;
}
@keyframes bgZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1.00); }
}

/* Overlay – gradient: lewa strona jasna, prawa ciemna (pod tekst) */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      to right,
      rgba(28, 20, 16, 0.05) 0%,
      rgba(28, 20, 16, 0.10) 35%,
      rgba(28, 20, 16, 0.68) 60%,
      rgba(28, 20, 16, 0.85) 100%
    ),
    linear-gradient(
      to top,
      rgba(28, 20, 16, 0.55) 0%,
      transparent 38%
    );
  pointer-events: none;
}

/* Siatka: lewa strona = obraz oddycha, prawa = tekst */
.hero-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.hero-left { /* świadomie puste – tło mówi samo za siebie */ }

.hero-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px var(--side) 0 4vw;
}

/* Eyebrow */
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
  opacity: 0;
  animation: hUp 0.7s var(--ease) 0.6s forwards;
}
.hero-eyebrow-line {
  width: 28px; height: 1px;
  background: var(--taupe);
  flex-shrink: 0;
}
.hero-eyebrow-text {
  font-family: var(--font-ui);
  font-size: 0.55rem;
  letter-spacing: 0.52em;
  text-transform: uppercase;
  color: var(--taupe);
}

/* ---- Animacja liter ---- */
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(7rem, 13vw, 12.5rem);
  font-weight: 700;
  line-height: 0.88;
  letter-spacing: 0.04em;
  color: #fff;
  margin-bottom: 2.5rem;
  /* bez własnej animacji – każda litera niezależna */
}

/* Każda litera – .hl */
.hl {
  display: inline-block;
  opacity: 0;
  transform: translateY(48px);
  filter: blur(10px);
  animation: letterIn 0.90s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  /* --i ustawione inline w HTML */
  animation-delay: calc(0.70s + var(--i) * 0.13s);
}
@keyframes letterIn {
  0%   { opacity: 0; transform: translateY(48px); filter: blur(10px); }
  60%  { filter: blur(0); }
  100% { opacity: 1; transform: translateY(0);    filter: blur(0);    }
}

/* Subtitle */
.hero-sub {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.6vw, 1.45rem);
  font-style: italic;
  font-weight: 300;
  color: rgba(244, 240, 235, 0.72);
  letter-spacing: 0.03em;
  line-height: 1.6;
  margin-bottom: 4rem;
  opacity: 0;
  animation: hUp 0.70s var(--ease) 1.60s forwards;
}

/* CTA */
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  font-family: var(--font-ui);
  font-size: 0.60rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--on-dark);
  padding: 1rem 2.5rem;
  border: 1px solid rgba(176, 146, 114, 0.40);
  align-self: flex-start;
  position: relative;
  overflow: hidden;
  transition: color var(--t), border-color var(--t);
  opacity: 0;
  animation: hUp 0.70s var(--ease) 1.80s forwards;
}
.hero-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--taupe);
  transform: translateX(-101%);
  transition: transform 0.46s var(--ease);
  z-index: 0;
}
.hero-cta:hover { color: var(--bg-dark); border-color: var(--taupe); }
.hero-cta:hover::before { transform: translateX(0); }
.hero-cta > * { position: relative; z-index: 1; }

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

/* Strzałka */
.arrow {
  display: inline-block;
  width: 22px; height: 1px;
  background: currentColor;
  position: relative;
  flex-shrink: 0;
  transition: width var(--t);
}
.arrow::after {
  content: '';
  position: absolute;
  right: 0; top: -4px;
  width: 8px; height: 8px;
  border-right: 1px solid currentColor;
  border-top: 1px solid currentColor;
  transform: rotate(45deg);
}
.hero-cta:hover .arrow { width: 34px; }

/* =============================================
   CYTAT – minimalistyczny, bez ornamentów
   ============================================= */
.quote-section {
  height: 60vh;
  min-height: 420px;
  padding: 0 var(--side);
  border-top: 1px solid var(--taupe-dim);
  border-bottom: 1px solid var(--taupe-dim);
  background: var(--bg-alt);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.quote-section .inner { width: 100%; }
blockquote { margin: 0; }

.quote-text {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 4rem);
  font-style: italic;
  font-weight: 300;
  color: var(--text-mid);
  max-width: 920px;
  line-height: 1.35;
  letter-spacing: 0.01em;
  margin: 0 auto;
  /* bez guillemets, bez ornamentów */
}


.quote-cat-icon {
  display: block;
  height: clamp(4rem, 7.6vw, 8rem);
  width: auto;
  margin: 3rem auto 0;
  fill: var(--text);
}

.quote-source {
  display: block;
  margin-top: 2.8rem;
  font-family: var(--font-ui);
  font-size: 0.58rem;
  letter-spacing: 0.44em;
  text-transform: uppercase;
  color: var(--burg);
}

/* =============================================
   LAYOUT WSPÓLNY
   ============================================= */
.section {
  padding: 11rem var(--side);
  background: var(--bg);
  text-align: center;
}
.section-alt {
  padding: 11rem var(--side);
  background: var(--bg-alt);
  text-align: center;
}

.inner { max-width: var(--max-w); margin: 0 auto; }

/* Label – mały, precyzyjny */
.s-label {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.s-label::after {
  content: '';
  width: 24px; height: 1px;
  background: var(--burg);
  flex-shrink: 0;
}
.s-label-line {
  width: 24px; height: 1px;
  background: var(--burg);
  flex-shrink: 0;
}
.s-label-text {
  font-family: var(--font-ui);
  font-size: 0.56rem;
  letter-spacing: 0.50em;
  text-transform: uppercase;
  color: var(--burg);
}

/* Nagłówek sekcji – duży, seryfowy */
.s-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 4rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.1;
  color: var(--text-mid);
  letter-spacing: 0.01em;
}

.s-text {
  font-size: 1.25rem;
  line-height: 2.0;
  color: var(--text-mid);
  max-width: 620px;
  margin-top: 2.5rem;
  margin-left: auto;
  margin-right: auto;
}

/* =============================================
   GALERIA ODKRYJ – 3 kolumny, bez ramek
   ============================================= */
.gallery-section {
  padding: 0 var(--side) 11rem;
  background: var(--bg);
}
.gallery-header {
  padding: 11rem 0 7rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 1px solid var(--taupe-dim);
  margin-bottom: 6rem;
}
.gallery-header-left  { max-width: 600px; }
.gallery-header-right { text-align: right; padding-bottom: 0.5rem; }

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

.gal-item {
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.gal-img {
  overflow: hidden;
  margin-bottom: 2.4rem;
}
.gal-img img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
  transition: transform 1.1s var(--ease);
}
.gal-item:hover .gal-img img { transform: scale(1.06); }

.gal-num {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.54rem;
  letter-spacing: 0.46em;
  text-transform: uppercase;
  color: var(--burg);
  margin-bottom: 1rem;
}
.gal-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 2.6vw, 3rem);
  font-weight: 600;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 1.4rem;
  letter-spacing: 0.01em;
}
.gal-desc {
  font-size: 0.96rem;
  line-height: 1.9;
  color: var(--text-mid);
  margin-bottom: 2.2rem;
  flex: 1;
}
.gal-link {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--font-ui);
  font-size: 0.58rem;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: var(--burg);
  transition: gap var(--t), color var(--t);
  align-self: flex-start;
}
.gal-item:hover .gal-link { gap: 1.4rem; color: var(--text); }
.gal-link .arrow { width: 20px; }

/* =============================================
   PODSTRONY – pierwsza sekcja pod paskiem
   ============================================= */
/* Dodaj klasę .subpage-first do pierwszej sekcji każdej podstrony */
.subpage-first {
  padding-top: calc(72px + 8rem) !important;
}

/* =============================================
   LOOKBOOK (koty / oferta / mioty)
   ============================================= */
.lookbook { display: flex; flex-direction: column; }

.lookbook-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
  border-top: 1px solid var(--taupe-dim);
}
.lookbook-item:last-child { border-bottom: 1px solid var(--taupe-dim); }

.lookbook-item:nth-child(even) .lookbook-img  { order: 2; }
.lookbook-item:nth-child(even) .lookbook-text { order: 1; }

.lookbook-img { overflow: hidden; }
.lookbook-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.0s var(--ease);
  display: block;
}
.lookbook-item:hover .lookbook-img img { transform: scale(1.04); }

.lookbook-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 7rem;
  background: var(--bg-alt);
  transition: background var(--t);
}
.lookbook-item:hover .lookbook-text { background: var(--bg); }

.lookbook-num {
  font-family: var(--font-display);
  font-size: 8rem;
  font-weight: 700;
  color: var(--taupe-dim);
  line-height: 1;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}
.lookbook-meta {
  font-family: var(--font-ui);
  font-size: 0.56rem;
  letter-spacing: 0.40em;
  text-transform: uppercase;
  color: var(--burg);
  margin-bottom: 1.5rem;
}
.lookbook-name {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 3.4vw, 4rem);
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.01em;
  margin-bottom: 1.5rem;
  line-height: 1.05;
}
.lookbook-desc {
  font-size: 1.02rem;
  line-height: 2.0;
  color: var(--text-mid);
  max-width: 360px;
  margin-bottom: 3rem;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-ui);
  font-size: 0.58rem;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: var(--burg);
  align-self: flex-start;
  transition: gap var(--t), color var(--t);
}
.link-arrow:hover { gap: 1.6rem; color: var(--text); }
.link-arrow .arrow { width: 22px; }

.badge {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.54rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  padding: 0.32rem 0.88rem;
  border: 1px solid;
  margin-bottom: 1.2rem;
}
.badge-avail { color: var(--burg); border-color: var(--burg-dim); }
.badge-res   { color: var(--text-dim); border-color: rgba(28,20,16,0.14); }

/* =============================================
   FAQ
   ============================================= */
.faq-list { max-width: 800px; margin-left: auto; margin-right: auto; text-align: left; }
.faq-item { border-bottom: 1px solid var(--taupe-dim); }
.faq-item:first-child { border-top: 1px solid var(--taupe-dim); }

.faq-q {
  width: 100%;
  background: none; border: none;
  text-align: left;
  padding: 2rem 0;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  letter-spacing: 0.01em;
  transition: color var(--t);
}
.faq-q:hover { color: var(--burg); }

.faq-icon {
  flex-shrink: 0;
  width: 16px; height: 16px;
  position: relative;
  color: var(--burg);
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  transition: var(--t);
}
.faq-icon::before { top: 7px; left: 0; width: 16px; height: 1px; }
.faq-icon::after  { top: 0; left: 7px; width: 1px; height: 16px; }
.faq-item.open .faq-icon::after { opacity: 0; transform: scaleY(0); }

.faq-a {
  height: 0;
  overflow: hidden;
  transition: height 0.38s var(--ease);
}
.faq-a-inner {
  padding-bottom: 2rem;
  font-size: 1.04rem;
  line-height: 2.0;
  color: var(--text-mid);
  text-align: left;
}

/* =============================================
   RASA – komponenty
   ============================================= */
.traits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1px;
  background: var(--taupe-dim);
  margin-top: 4rem;
}
.trait-card {
  background: var(--bg);
  padding: 2.8rem 2.4rem;
  transition: background var(--t);
}
.trait-card:hover { background: var(--bg-alt); }
.trait-icon  { font-size: 1.6rem; margin-bottom: 1.2rem; }
.trait-title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.6rem;
}
.trait-desc {
  font-size: 0.96rem;
  line-height: 1.85;
  color: var(--text-dim);
}

.colors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}
.color-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.color-swatch {
  width: 64px; height: 64px;
  border-radius: 50%;
  border: 1px solid var(--taupe-dim);
  transition: transform var(--t), border-color var(--t);
}
.color-item:hover .color-swatch {
  transform: scale(1.12);
  border-color: var(--burg);
}
.color-name {
  font-family: var(--font-ui);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mid);
}

.rasa-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: start;
}
.rasa-intro-img img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  object-position: top;
  display: block;
}

.care-list {
  display: flex;
  flex-direction: column;
  margin-top: 4rem;
  max-width: 800px;
  border-top: 1px solid var(--taupe-dim);
}
.care-item {
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: 2rem;
  align-items: start;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--taupe-dim);
  transition: background var(--t), padding-inline var(--t);
}
.care-item:hover {
  background: var(--bg-alt);
  padding-inline: 1.5rem;
}
.care-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--burg);
  line-height: 1;
}
.care-text strong {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.care-text p {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--text-mid);
  margin: 0;
}

/* =============================================
   CTA BANNER
   ============================================= */
.cta-banner {
  background: var(--bg-dark);
  padding: 10rem var(--side);
  text-align: center;
  position: relative;
  overflow: hidden;
}
/* płynne przejścia do sąsiednich sekcji */
.cta-banner::before,
.cta-banner::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 100px;
  pointer-events: none;
}
.cta-banner::before { top: 0;    background: linear-gradient(to bottom, var(--bg), transparent); }
.cta-banner::after  { bottom: 0; background: linear-gradient(to top,   var(--bg), transparent); }
.cta-banner .inner  { position: relative; z-index: 1; }
.cta-banner .s-heading { color: var(--on-dark); }
.cta-banner .s-text    { color: var(--on-dark-dim); margin: 0 auto; }
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 1.4rem;
  margin-top: 3.5rem;
  padding: 1.1rem 2.8rem;
  font-family: var(--font-ui);
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--bg-dark);
  background: var(--taupe);
  border: none;
  cursor: pointer;
  transition: background var(--t), transform var(--t);
}
.cta-btn:hover { background: var(--on-dark); transform: translateY(-2px); }

/* =============================================
   LIGHTBOX
   ============================================= */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(28, 20, 16, 0.96);
  backdrop-filter: blur(6px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.4rem;
  padding: 5rem 2rem 3rem;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
  box-sizing: border-box;
}
.lightbox-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.lightbox-img-wrap {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.lightbox-img {
  display: block;
  max-width: 90vw;
  max-height: calc(90vh - 10rem);
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  background: none;
  border: none;
  color: var(--on-dark);
  font-size: 2.4rem;
  line-height: 1;
  cursor: pointer;
  transition: color var(--t);
}
.lightbox-close:hover { color: var(--taupe); }

/* Pasek kontrolny pod zdjęciem */
.lightbox-controls {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-shrink: 0;
}
.lightbox-nav {
  background: none;
  border: 1px solid var(--taupe);
  width: 3.2rem;
  height: 3.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--t), border-color var(--t);
}
.lightbox-nav:hover            { background: var(--taupe); }
.lightbox-nav .arrow           { background: var(--on-dark); }
.lightbox-nav .arrow::after    { border-color: var(--on-dark); }
.lightbox-nav .arrow-left      { transform: rotate(180deg); }
.lightbox-counter {
  font-family: var(--font-ui);
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--on-dark-dim);
  white-space: nowrap;
  min-width: 4rem;
  text-align: center;
}

/* =============================================
   MODAL KONTAKTOWY
   ============================================= */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(28, 20, 16, 0.55);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease);
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.modal-box {
  background: var(--bg);
  padding: 5rem 6rem;
  max-width: 520px;
  width: 90%;
  text-align: center;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.35s var(--ease);
}
.modal-overlay.open .modal-box {
  transform: translateY(0);
}
.modal-close {
  position: absolute;
  top: 1.6rem;
  right: 2rem;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--text-dim);
  cursor: pointer;
  line-height: 1;
  transition: color var(--t);
}
.modal-close:hover { color: var(--burg); }
.modal-line1 {
  font-family: var(--font-display);
  font-size: 1.92rem;
  font-style: italic;
  font-weight: 300;
  color: var(--text-mid);
  letter-spacing: 0.02em;
  margin-bottom: 2rem;
}
.modal-phone {
  font-family: var(--font-ui);
  font-size: 1.68rem;
  font-weight: 300;
  color: var(--text);
  letter-spacing: 0.12em;
  white-space: nowrap;
  margin-bottom: 1.8rem;
}
.modal-phone a {
  color: inherit;
  text-decoration: none;
  transition: color var(--t);
}
.modal-phone a:hover { color: var(--burg); }
.modal-name {
  font-family: var(--font-ui);
  font-size: 0.98rem;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: var(--burg);
  margin-bottom: 0.6rem;
}
.modal-role {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 300;
  color: var(--text-dim);
  letter-spacing: 0.04em;
}

/* =============================================
   STOPKA
   ============================================= */
.footer {
  padding: 6rem var(--side) 3.5rem;
  background: var(--bg-dark);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
  border-top: 1px solid var(--taupe-dim);
}
.footer-brand {
  display: block;
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--on-dark);
  letter-spacing: 0.12em;
  line-height: 1;
  margin-bottom: 0.6rem;
  transition: color var(--t);
}
.footer-brand:hover { color: var(--taupe); }
.footer-sub {
  font-family: var(--font-ui);
  font-size: 0.54rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--on-dark-dim);
}
.footer-center {
  width: 1px;
  height: 64px;
  background: var(--taupe-dim);
  margin: 0 auto;
}
.footer-right { text-align: right; }
.footer-copy {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  color: var(--on-dark-dim);
  letter-spacing: 0.06em;
  line-height: 1.8;
}

/* =============================================
   O NAS – obraz między akapitami
   ============================================= */
.onas-img {
  margin-top: 5rem;
  margin-bottom: 5rem;
  text-align: center;
}

.onas-img img {
  max-width: 620px;
  width: 100%;
  height: auto;
  object-fit: contain;
  display: inline-block;
}

.onas-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.9;
}

.galeria-heading {
  margin-top: 2.5rem;
  margin-bottom: 4rem;
}

/* =============================================
   O NAS – logotypy poziomo pod tekstem
   ============================================= */
.onas-logos {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8rem;
  margin-top: 5rem;
}
.onas-logo {
  max-width: 202px;
  max-height: 115px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.40;
  transition: filter var(--t-slow), opacity var(--t-slow);
}
.onas-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
}

@media (max-width: 768px) {
  .onas-logos {
    gap: 3rem;
    flex-wrap: wrap;
  }
}

/* =============================================
   FOTO – split 50/50
   ============================================= */
.foto-section {
  background: var(--bg);
  padding: 0 0 11rem;
}
.foto-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;         /* obie kolumny wyrównane do środka */
  max-height: 100vh;
  overflow: hidden;
}

/* Lewa – tekst i przycisk */
.foto-split-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem var(--side) 8rem calc(var(--side) + 2rem);
  background: var(--bg);
  align-self: stretch;         /* wypełnia całą wysokość obrazu */
}
.foto-split-heading {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 6vw, 6.5rem);
  font-weight: 600;
  line-height: 1.0;
  color: var(--text);
  letter-spacing: 0.01em;
  margin: 2rem 0 4rem;
}

/* Prawa – obraz w pełni widoczny, bez przycinania */
.foto-split-img {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-alt);
  align-self: stretch;
  overflow: hidden;
}
.foto-split-img img {
  width: 100%;
  height: 100%;
  max-height: 100vh;
  object-fit: contain;         /* całe zdjęcie widoczne */
  object-position: center;
  display: block;
  transition: transform 1.2s var(--ease);
}
.foto-split-img:hover img { transform: scale(1.03); }

/* Przycisk */
.foto-btn {
  display: inline-flex;
  align-items: center;
  gap: 1.4rem;
  font-family: var(--font-ui);
  font-size: 0.60rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--text);
  padding: 1rem 2.4rem;
  border: 1px solid rgba(28, 20, 16, 0.25);
  align-self: flex-start;
  position: relative;
  overflow: hidden;
  transition: color var(--t), border-color var(--t);
}
.foto-btn::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--bg-dark);
  transform: translateX(-101%);
  transition: transform 0.46s var(--ease);
  z-index: 0;
}
.foto-btn:hover { color: var(--on-dark); border-color: var(--bg-dark); }
.foto-btn:hover::before { transform: translateX(0); }
.foto-btn > * { position: relative; z-index: 1; }
.foto-btn:hover .arrow { width: 34px; }

@media (max-width: 768px) {
  .foto-split        { grid-template-columns: 1fr; }
  .foto-split-img    { min-height: 60vw; }
  .foto-split-text   { padding: 5rem var(--side); }
}

/* =============================================
   AKTUALNOŚCI – duży napis z datą
   ============================================= */
.news-section { border-top: 1px solid var(--taupe-dim); }
.news-intro {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 4rem);
  font-style: italic;
  font-weight: 300;
  color: var(--text-mid);
  letter-spacing: 0.01em;
  line-height: 1.35;
  margin-top: 3rem;
  margin-bottom: 0;
}
.news-date {
  font-family: var(--font-display);
  font-size: clamp(5rem, 14vw, 13rem);
  font-weight: 700;
  line-height: 0.9;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 4rem;
}

/* =============================================
   KARUZELA ZDJĘĆ
   ============================================= */
.carousel-section {
  padding: 11rem 0;
  background: var(--bg);
  position: relative;   /* strzałki pozycjonowane względem sekcji */
}

/* Taśma slajdów – wcięta o szerokość strzałek */
.carousel-wrap {
  position: relative;
  overflow: hidden;
  margin: 0 var(--side);  /* miejsce na strzałki po bokach */
}
.carousel-track {
  display: flex;
  transition: transform 0.90s cubic-bezier(0.76, 0, 0.24, 1);
  will-change: transform;
}
.carousel-slide {
  flex-shrink: 0;
  width: 100%;
  height: 85vh;
  min-height: 520px;
  overflow: hidden;
}
.carousel-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.6s var(--ease);
}
/* Lekki zoom na aktywnym slajdzie */
.carousel-slide.is-active img { transform: scale(1.04); }

/* Licznik 01 / 03 */
.carousel-counter {
  position: absolute;
  bottom: 2.8rem;
  left: var(--side);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-ui);
  font-size: 0.56rem;
  letter-spacing: 0.44em;
  text-transform: uppercase;
  color: rgba(244, 240, 235, 0.45);
  pointer-events: none;
  user-select: none;
}
.carousel-counter-cur { color: rgba(244, 240, 235, 0.88); }


/* Wskaźniki – poziome kreski */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.7rem;
  margin-top: 2.8rem;
  padding: 0 var(--side);
}
.carousel-dot {
  width: 28px; height: 1px;
  background: var(--taupe-dim);
  border: none;
  padding: 6px 0;
  background-clip: content-box;
  cursor: pointer;
  transition: width 0.4s var(--ease), background 0.4s var(--ease);
}
.carousel-dot.active {
  width: 56px;
  background: var(--burg);
  background-clip: content-box;
}

/* =============================================
   MAPA – Tu zamieszkały nasze koty
   ============================================= */
.mapa-wrap {
  margin-top: 7rem;
  padding: 0 var(--side);
}
#map-container {
  width: 95%;
  max-width: 900px;
  aspect-ratio: 4 / 3;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  -webkit-mask-image:
    linear-gradient(to bottom, transparent, black 5%, black 95%, transparent),
    linear-gradient(to right,  transparent, black 5%, black 95%, transparent);
  mask-image:
    linear-gradient(to bottom, transparent, black 5%, black 95%, transparent),
    linear-gradient(to right,  transparent, black 5%, black 95%, transparent);
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
}
#map-container svg {
  width: 100%;
  height: 100%;
  display: block;
  background: transparent;
}
#map-container .map-country {
  fill: var(--bg-alt);
  stroke: var(--taupe);
  stroke-width: 0.8px;
  transition: fill 0.3s ease;
  opacity: 0;
}
#map-container .map-country:hover {
  fill: var(--taupe-dim);
  cursor: pointer;
}
#map-container .map-pin-group {
  pointer-events: none;
  opacity: 0;
}

.rasa-section {
  padding-top: 6rem;
  padding-bottom: 6rem;
}


.rasa-cat-icon,
.onas-cat-icon {
  display: block;
  width: auto;
  fill: none;
  stroke: var(--taupe);
  stroke-width: 0.4px;
  overflow: visible;
}
.rasa-cat-icon {
  height: clamp(16rem, 30vw, 26rem);
  margin: 0 auto -2rem;
}
.onas-cat-icon {
  height: clamp(6.4rem, 12vw, 10.4rem);
  margin: 0 auto 4rem;
}
.rasa-page-cat-icon {
  height: clamp(8.32rem, 15.6vw, 13.52rem);
  margin: 0 auto 5rem;
}

.mapa-cta-label {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.8vw, 2.8rem);
  font-style: italic;
  font-weight: 300;
  color: var(--text-mid);
  letter-spacing: 0.02em;
  text-align: center;
  margin-top: 0;
  margin-bottom: 1.5rem;
}
.mapa-cta {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}
.mapa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-width: 26rem;
  font-family: var(--font-ui);
  font-size: 0.62rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--text);
  background: transparent;
  border: 1px solid var(--text);
  padding: 1.4rem 3.5rem;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color var(--t), border-color var(--t);
}
.mapa-btn::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--burg);
  transform: translateX(-101%);
  transition: transform 0.50s var(--ease);
  z-index: 0;
}
.mapa-btn:hover { color: var(--on-dark); border-color: var(--burg); }
.mapa-btn:hover::before { transform: translateX(0); }
.mapa-btn > * { position: relative; z-index: 1; }
.mapa-btn .arrow { background: var(--text); width: 28px; }
.mapa-btn .arrow::after { border-color: var(--text); }
.mapa-btn:hover .arrow { width: 40px; background: var(--on-dark); }
.mapa-btn:hover .arrow::after { border-color: var(--on-dark); }

/* =============================================
   KARUZELA GALERII – poziomy pasek
   ============================================= */
.galeria-section { padding-bottom: 8rem; }

.carousel-stage {
  overflow: hidden;
  width: 100%;
  margin-bottom: 4rem;
  /* lekkie wyłamanie poza padding sekcji */
  margin-left:  calc(var(--side) * -1);
  margin-right: calc(var(--side) * -1);
  width:        calc(100% + var(--side) * 2);
}

.carousel-track {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.carousel-item {
  flex-shrink: 0;
  width: clamp(220px, 28vw, 400px);
  /* Ramka – nieco ciemniejszy odcień niż tło sekcji */
  padding: 11px;
  background: var(--bg-alt);
  box-sizing: border-box;
  /* Domyślny stan: najdalej */
  transform: scale(0.64);
  opacity: 0.28;
  transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1),
              opacity   0.65s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.carousel-item img {
  width: 100%;
  height: clamp(340px, 56vh, 680px);
  object-fit: cover;
  object-position: top;
  display: block;
}

/* Stopniowe skalowanie – im bliżej środka, tym większe */
.carousel-item.is-d2  { transform: scale(0.72); opacity: 0.45; }
.carousel-item.is-d1  { transform: scale(0.84); opacity: 0.68; }
.carousel-item.is-center {
  transform: scale(1);
  opacity: 1;
  cursor: default;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.carousel-btn {
  width: 3.2rem;
  height: 3.2rem;
  background: none;
  border: 1px solid var(--taupe);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color var(--t), background var(--t);
  flex-shrink: 0;
}
.carousel-btn:hover {
  border-color: var(--text);
  background: var(--text);
}
.carousel-btn:hover .arrow { background: var(--bg); }
.carousel-btn:hover .arrow::after { border-color: var(--bg); }
.carousel-btn .arrow-left { transform: rotate(180deg); }

/* =============================================
   KARUZELA – mobilna (peek po bokach)
   ============================================= */
@media (max-width: 700px) {
  .carousel-stage {
    margin-left:  -1.2rem;
    margin-right: -1.2rem;
    width:        calc(100% + 2.4rem);
  }

  /* Węższy środkowy element = boki wyraźniej widoczne */
  .carousel-item {
    width: 56vw;
  }

  /* Wyższe zdjęcia */
  .carousel-item img {
    height: clamp(300px, 72vw, 520px);
  }
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1100px) {
  :root { --side: clamp(1.5rem, 5vw, 5rem); }
  .lookbook-text { padding: 4.5rem 5rem; }
  .gallery-grid  { gap: 2.5rem; }
}

@media (max-width: 768px) {
  :root { --side: 1.5rem; }
  body { font-size: 16px; }

  /* Hero – mobile: jeden kolumna, tekst na dole, tło przesunięte w prawo */
  .hero-bg-img {
    background-position: 30% center;
  }
  .hero-overlay {
    background: linear-gradient(
      to top,
      rgba(28, 20, 16, 0.75) 0%,
      rgba(28, 20, 16, 0.35) 50%,
      rgba(28, 20, 16, 0.10) 100%
    );
  }
  .hero-inner {
    grid-template-columns: 1fr;
    align-items: flex-end;
    padding-bottom: 5rem;
  }
  .hero-left { display: none; }
  .hero-right {
    display: flex;
    padding: 0 var(--side);
  }
  .hero-eyebrow { opacity: 1; transform: none; animation: none; }
  .hero-title   { opacity: 1; animation: none; }
  .hero-sub     { opacity: 1; transform: none; animation: none; }
  .hero-cta     { opacity: 1; transform: none; animation: none; }
  .hero-eyebrow-text { color: var(--taupe); }
  .hero-sub { color: var(--on-dark-dim); }
  .hero-cta  { border-color: var(--taupe); color: var(--on-dark); }

  .gallery-grid  { grid-template-columns: 1fr; gap: 4rem; }
  .gallery-header { flex-direction: column; align-items: flex-start; gap: 2rem; }
  .gallery-header-right { text-align: left; }

  .lookbook-item { grid-template-columns: 1fr; min-height: auto; }
  .lookbook-item:nth-child(even) .lookbook-img  { order: 1; }
  .lookbook-item:nth-child(even) .lookbook-text { order: 2; }
  .lookbook-img  { height: 65vw; }
  .lookbook-text { padding: 3.5rem 2.5rem; }
  .lookbook-num  { font-size: 6rem; }

  .carousel-wrap  { margin: 0 calc(var(--side) * 1.5); }
  .carousel-slide { height: 70vw; min-height: 300px; }
  .c-arrow        { width: 28px; }

  .rasa-intro { grid-template-columns: 1fr; gap: 4rem; }
  .traits-grid { grid-template-columns: 1fr; }
  .colors-grid { grid-template-columns: repeat(3, 1fr); }

  .nav-links {
    flex-direction: column;
    align-items: stretch;     /* li rozciągają się na pełną szerokość */
    gap: 0;                   /* usuń gap: 3rem z desktopu */
    padding: 0;
    margin: 0;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: rgba(28,20,16,0.98);
    border-top: 1px solid var(--taupe-dim);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .nav-links.open { max-height: 400px; }
  .nav-links li {
    display: block;
    width: 100%;
    border-bottom: 1px solid rgba(176,146,114,0.08);
  }
  .nav-links li a {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 1.1rem var(--side);
    font-family: var(--font-ui);
    font-size: 0.72rem;
    line-height: 1.2;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--on-dark-dim);
    white-space: nowrap;
    padding-bottom: 1.1rem;   /* override desktop padding-bottom: 2px */
  }
  .nav-links a::after { display: none; }
  .nav-toggle { display: flex; }

  .footer { grid-template-columns: 1fr; }
  .footer-center { display: none; }
  .footer-right  { text-align: left; }
  .section, .section-alt,
  .quote-section { padding: 7rem var(--side); }
}

@media (max-width: 480px) {
  .hero-title { font-size: clamp(5rem, 20vw, 8rem); }
}

/* =============================================
   MOBILE – dodatkowe poprawki
   ============================================= */
@media (max-width: 768px) {

  /* Nav – Ju-Mi nigdy nie łamie się do nowej linii */
  .nav-brand-name {
    white-space: nowrap;
  }

  /* Przyciski – nigdy nie wychodź poza szerokość ekranu */
  .mapa-btn {
    min-width: 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  /* Hero – ukryj "Hodowla kotów burmskich", tekst nisko przy dole */
  .hero-eyebrow { display: none; }
  .hero-inner   { padding-bottom: 2rem; }   /* override 5rem → tekst niżej */
  .hero-right   { padding-bottom: 0; }      /* usuń moje poprzednie 10rem */

  /* Karuzela – przyciski strzałek bez wypełnienia, obramowanie jak mapa */
  .carousel-btn {
    background: transparent;
    border-color: var(--taupe);
  }
  .carousel-btn .arrow        { background: var(--text); }
  .carousel-btn .arrow::after { border-color: var(--text); }

  /* Mapa – pełna szerokość, osobne odstępy dla każdego elementu */
  .mapa-wrap {
    padding-left: 0;
    padding-right: 0;
    margin-top: 5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;                /* zamiast gap używamy margin na elementach */
  }
  #map-container {
    width: 100%;
    max-width: 100%;
    margin: 0 0 4rem;     /* duży odstęp tylko pod mapą */
  }
  .mapa-cta-label { margin-top: 0; margin-bottom: 1rem; }
  .mapa-wrap .mapa-cta { margin-top: 0; }

  /* Przyciski strzałek – brak efektu hover na urządzeniach dotykowych */
  @media (hover: none) {
    .carousel-btn:hover {
      background: transparent;
      border-color: var(--taupe);
    }
    .carousel-btn:hover .arrow        { background: var(--text); }
    .carousel-btn:hover .arrow::after { border-color: var(--text); }
  }

  /* Modal – numer telefonu nie wychodzi poza pop-up */
  .modal-box {
    padding: 4rem 2rem;
    width: 92%;
  }
  .modal-phone {
    white-space: normal;
    font-size: 1.3rem;
    letter-spacing: 0.08em;
  }
}
