/* ============================================================
   BELLA ITALIA Z JACKIEM — Premium Editorial (Wersja 03)
   Inspiracje: Black Tomato, Butterfield & Robinson, Kensington Tours
   Serif czytelny + full-bleed foto + dużo ciepłej bieli + piktogramy
   Paleta: cream + gold + sea
   ============================================================ */

/* ---- RESET ---- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  min-width: 0;
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-2);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: transparent; color: inherit; }
img, svg { max-width: 100%; display: block; }

:root {
  /* Paleta — cream + gold + sea */
  --cream:      #f5efe4;   /* podstawowe tło ciepły ivory */
  --cream-2:    #ebe1cd;   /* drugi ton */
  --paper:      #fbf7ee;   /* jaśniejszy papier */
  --sand:       #d9c8a4;   /* piaskowy akcent */

  --gold:       #b8892b;   /* klasyczne matowe złoto */
  --gold-2:     #8f6a1e;   /* ciemniejsze do tekstu */
  --gold-light: #d9b25e;   /* jaśniejsze na akcenty */

  --sea:        #1f4d63;   /* deep navy sea */
  --sea-2:      #2f6f8e;   /* jaśniejsze morze */
  --sea-deep:   #0f3244;   /* atramentowy */

  --ink:        #1c1613;
  --ink-2:      #3d332a;
  --ink-3:      #6b5d4e;
  --ink-4:      #9a8c7c;

  --rule:       rgba(28, 22, 19, 0.10);
  --rule-2:     rgba(28, 22, 19, 0.20);

  --shadow-soft: 0 4px 16px rgba(28, 22, 19, 0.06);
  --shadow-card: 0 10px 30px rgba(28, 22, 19, 0.10);
  --shadow-deep: 0 20px 50px rgba(28, 22, 19, 0.16);

  /* Fonty */
  --f-display:  "Fraunces", "GT Sectra", "Playfair Display", Georgia, serif;
  --f-serif:    "Cormorant Garamond", Georgia, serif;
  --f-body:     "Inter", -apple-system, "Segoe UI", Roboto, sans-serif;

  --max-w:      1280px;
  --pad:        clamp(20px, 5vw, 80px);
  --pad-y:      clamp(80px, 11vh, 160px);

  --r-sm:       4px;
  --r-md:       8px;
  --r-lg:       12px;
  --r-xl:       20px;
}

/* ---- TYPOGRAFIA ---- */
h1, h2, h3, h4, h5 {
  font-family: var(--f-display);
  color: var(--ink);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.015em;
}
h1 {
  font-size: clamp(44px, 6.5vw, 96px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.05;
}
h2 {
  font-size: clamp(32px, 4.4vw, 58px);
  font-weight: 400;
  letter-spacing: -0.02em;
}
h3 { font-size: clamp(22px, 2.2vw, 30px); font-weight: 500; }
h4 { font-size: clamp(18px, 1.6vw, 22px); font-weight: 500; }

p {
  font-family: var(--f-body);
  font-size: clamp(16px, 1.1vw, 18px);
  color: var(--ink-2);
  line-height: 1.7;
  font-weight: 400;
}
.lead {
  font-family: var(--f-body);
  font-size: clamp(18px, 1.4vw, 22px);
  color: var(--ink-2);
  line-height: 1.55;
  font-weight: 400;
}
.serif { font-family: var(--f-serif); }
strong, b { font-weight: 600; color: var(--ink); }
em { font-style: italic; }

.eyebrow {
  font-family: var(--f-body);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-2);
  font-weight: 600;
}
.eyebrow-gold { color: var(--gold); }
.eyebrow-sea  { color: var(--sea-2); }
.eyebrow-cream { color: var(--gold-light); }

.divider {
  width: 40px; height: 1px;
  background: var(--gold);
  margin: 24px 0;
}
.divider-center { margin: 24px auto; }
.divider-gold { background: var(--gold); }
.divider-sea  { background: var(--sea); }
.divider-cream { background: var(--gold-light); }

/* ---- CONTAINER ---- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad); }
.container-narrow { max-width: 960px; }
.section { padding: var(--pad-y) 0; position: relative; }
.section-tight { padding: clamp(60px, 8vh, 100px) 0; }

.section-cream { background: var(--cream); }
.section-paper { background: var(--paper); }
.section-sand  { background: var(--cream-2); }
.section-sea   { background: var(--sea-deep); color: var(--cream); }
.section-sea h1, .section-sea h2, .section-sea h3 { color: var(--cream); }
.section-sea p { color: rgba(245, 239, 228, 0.85); }
.section-sea .eyebrow { color: var(--gold-light); }

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ============================================================
   PIKTOGRAMY — inline SVG helpers
   Każdy piktogram to wrapper .pic z ikonką w środku
   ============================================================ */
.pic {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--rule-2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--gold-2);
  transition: transform 0.3s, background 0.3s;
}
.pic svg { width: 26px; height: 26px; stroke-width: 1.5; }
.pic-lg { width: 72px; height: 72px; }
.pic-lg svg { width: 32px; height: 32px; }
.pic-sea { background: var(--sea); border-color: var(--sea); color: var(--gold-light); }
.pic-gold { background: var(--gold); border-color: var(--gold); color: var(--paper); }
.pic-cream { background: transparent; border-color: rgba(245, 239, 228, 0.35); color: var(--gold-light); }
.pic:hover { transform: scale(1.06); }

/* ============================================================
   NAV — sticky cream translucent, cichy elegancki
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px var(--pad);
  background: rgba(245, 239, 228, 0.94);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid var(--rule);
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--f-display); font-weight: 400;
  font-size: 22px; color: var(--ink);
  letter-spacing: -0.01em;
}
.brand-crest {
  width: 40px; height: 40px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-2);
}
.brand-crest svg { width: 18px; height: 18px; }
.brand-name { display: flex; flex-direction: column; line-height: 1; }
.brand-main { font-family: var(--f-display); font-size: 19px; color: var(--ink); letter-spacing: -0.01em; }
.brand-sub {
  font-family: var(--f-body); font-size: 10px;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gold-2); margin-top: 4px; font-weight: 600;
}

.nav-links {
  display: flex; gap: 6px; align-items: center;
  font-family: var(--f-body);
  font-size: 13px; font-weight: 500;
  color: var(--ink-2); letter-spacing: 0.06em;
  text-transform: uppercase;
}
.nav-link-btn { padding: 10px 16px; transition: color 0.2s; opacity: 0.75; }
.nav-link-btn:hover, .nav-link-active { opacity: 1; color: var(--gold-2); }

.nav-cta {
  padding: 12px 22px;
  background: var(--sea); color: var(--cream);
  font-family: var(--f-body); font-size: 12px;
  font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 100px;
  transition: background 0.2s, transform 0.2s;
}
.nav-cta:hover { background: var(--sea-deep); transform: translateY(-2px); }

/* ============================================================
   HERO — full bleed foto + serif serif duży ale REGULAR
   ============================================================ */
.hero {
  position: relative;
  height: 100vh; min-height: 680px;
  overflow: hidden;
  display: flex; align-items: center;
}
.hero-media {
  position: absolute; inset: 0; z-index: 1;
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(15, 50, 68, 0.20) 0%,
    transparent 30%,
    rgba(15, 50, 68, 0.75) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  padding: var(--pad);
  padding-top: clamp(120px, 14vh, 180px);
  padding-bottom: clamp(48px, 8vh, 96px);
  max-width: var(--max-w); margin: 0 auto; width: 100%;
  color: var(--cream);
}
.hero-eyebrow {
  font-family: var(--f-body); font-size: 12px;
  letter-spacing: 0.36em; text-transform: uppercase;
  color: var(--gold-light); font-weight: 600;
  margin-bottom: 32px;
  display: inline-flex; align-items: center; gap: 16px;
}
.hero-eyebrow::before {
  content: ""; width: 48px; height: 1px; background: var(--gold-light);
}
.hero-title {
  font-family: var(--f-display); font-weight: 400;
  font-size: clamp(42px, 5.5vw, 88px);
  line-height: 1.02; letter-spacing: -0.03em;
  color: var(--cream); max-width: 1000px;
}
.hero-sub {
  margin-top: 28px;
  font-family: var(--f-body);
  font-size: clamp(17px, 1.5vw, 22px);
  color: rgba(245, 239, 228, 0.90); font-weight: 400;
  max-width: 640px; line-height: 1.55;
}
.hero-cta {
  margin-top: 44px;
  display: flex; gap: 16px; flex-wrap: wrap;
}
.hero-meta {
  margin-top: 48px; padding-top: 24px;
  border-top: 1px solid rgba(245, 239, 228, 0.18);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 20px 40px;
  font-family: var(--f-body); font-size: 12px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(245, 239, 228, 0.75); font-weight: 500;
  max-width: 800px;
}
.hero-meta div { display: flex; flex-direction: column; gap: 6px; }
.hero-meta .mval {
  font-family: var(--f-display); font-size: 20px;
  letter-spacing: -0.01em; text-transform: none;
  color: var(--cream); font-weight: 400;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 32px;
  font-family: var(--f-body);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  border-radius: 100px;
  transition: transform 0.2s, background 0.2s, color 0.2s, border-color 0.2s;
  border: 1px solid transparent;
}
.btn-sea { background: var(--sea); color: var(--cream); }
.btn-sea:hover { background: var(--sea-deep); transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: var(--paper); }
.btn-gold:hover { background: var(--gold-2); transform: translateY(-2px); }
.btn-line-cream { border-color: var(--cream); color: var(--cream); }
.btn-line-cream:hover { background: var(--cream); color: var(--ink); }
.btn-line-ink { border-color: var(--ink); color: var(--ink); }
.btn-line-ink:hover { background: var(--ink); color: var(--cream); }
.btn-line-sea { border-color: var(--sea); color: var(--sea); }
.btn-line-sea:hover { background: var(--sea); color: var(--cream); }
.btn svg { width: 16px; height: 16px; stroke-width: 2; }

/* ============================================================
   SEKCJA JACEK — 2 kolumny, foto + tekst czytelny
   ============================================================ */
.jacek {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(48px, 6vw, 100px);
  align-items: center;
}
.jacek-foto {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--r-lg);
  background: var(--cream-2);
  box-shadow: var(--shadow-card);
}
.jacek-foto img { width: 100%; height: 100%; object-fit: cover; }
.jacek-tekst h2 { margin: 16px 0 24px; }
.jacek-tekst p { margin-bottom: 18px; }

.jacek-badges {
  margin-top: 40px;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 40px; border-top: 1px solid var(--rule);
}
.jacek-badge { display: flex; flex-direction: column; gap: 12px; }
.jacek-badge .pic { margin-bottom: 4px; }
.jacek-badge-tyt {
  font-family: var(--f-display); font-weight: 500;
  font-size: 18px; color: var(--ink);
}
.jacek-badge-op {
  font-family: var(--f-body); font-size: 14px;
  color: var(--ink-3); line-height: 1.55;
}

/* ============================================================
   ZAOPIEKOWANIE — 8 piktogramów z opisem czego doświadcza gość
   ============================================================ */
.care-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px 40px;
  margin-top: 64px;
}
.care-item {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 16px;
  padding: 24px 16px;
  transition: transform 0.3s;
}
.care-item:hover { transform: translateY(-4px); }
.care-tyt {
  font-family: var(--f-display); font-weight: 500;
  font-size: 17px; color: var(--ink); letter-spacing: -0.01em;
}
.care-op {
  font-family: var(--f-body); font-size: 14px;
  color: var(--ink-3); line-height: 1.55;
}

/* ============================================================
   PROCES REZERWACJI — 4 kroki z ikonami + linią łączącą
   ============================================================ */
.proces {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 32px; margin-top: 64px;
  position: relative;
}
.proces::before {
  content: ""; position: absolute;
  top: 36px; left: 12.5%; right: 12.5%;
  height: 1px;
  background: linear-gradient(90deg,
    var(--rule) 0%, var(--gold) 15%, var(--gold) 85%, var(--rule) 100%);
  z-index: 0;
}
.krok {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 20px;
  position: relative; z-index: 1;
}
.krok .pic {
  background: var(--paper);
  box-shadow: 0 0 0 6px var(--paper), var(--shadow-soft);
  width: 72px; height: 72px;
}
.krok .pic svg { width: 30px; height: 30px; }
.krok-nr {
  font-family: var(--f-body); font-size: 11px;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold-2); font-weight: 700;
}
.krok-tyt {
  font-family: var(--f-display); font-weight: 500;
  font-size: 20px; color: var(--ink); letter-spacing: -0.01em;
}
.krok-op {
  font-family: var(--f-body); font-size: 14px;
  color: var(--ink-3); line-height: 1.6; max-width: 220px;
}

/* ============================================================
   TRASY GRID — hero cards editorial style
   ============================================================ */
.trasy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 40px;
  margin-top: 64px;
}
.trasa-karta {
  display: flex; flex-direction: column;
  background: transparent;
  transition: transform 0.4s;
}
.trasa-karta:hover { transform: translateY(-6px); }
.trasa-karta-foto {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--r-md);
  background: var(--cream-2);
  margin-bottom: 24px;
  position: relative;
}
.trasa-karta-foto img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s;
}
.trasa-karta:hover .trasa-karta-foto img { transform: scale(1.05); }
.trasa-karta-tag {
  position: absolute; top: 20px; left: 20px;
  padding: 8px 14px;
  background: rgba(245, 239, 228, 0.95);
  border-radius: 100px;
  font-family: var(--f-body); font-size: 10px;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gold-2); font-weight: 700;
}
.trasa-karta-nr {
  font-family: var(--f-body); font-size: 11px;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold-2); font-weight: 700;
  margin-bottom: 12px;
}
.trasa-karta-tyt {
  font-family: var(--f-display); font-weight: 400;
  font-size: 28px; color: var(--ink);
  letter-spacing: -0.02em; line-height: 1.15;
  margin-bottom: 14px;
}
.trasa-karta-op {
  font-family: var(--f-body); font-size: 15px;
  color: var(--ink-3); line-height: 1.6;
  margin-bottom: 20px;
}
.trasa-karta-cta {
  font-family: var(--f-body); font-size: 11px;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--sea); font-weight: 700;
  display: inline-flex; align-items: center; gap: 10px;
  padding-top: 16px; border-top: 1px solid var(--rule);
  transition: gap 0.2s;
}
.trasa-karta:hover .trasa-karta-cta { gap: 16px; color: var(--gold-2); }

/* ============================================================
   PODSTRONA TRASY — hero foto full-bleed
   ============================================================ */
.trasa-hero {
  position: relative;
  height: 85vh; min-height: 620px;
  overflow: hidden;
  display: flex; align-items: flex-end;
}
.trasa-hero img {
  position: absolute; inset: 0; z-index: 1;
  width: 100%; height: 100%; object-fit: cover;
}
.trasa-hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg,
    rgba(15, 50, 68, 0.15) 0%,
    transparent 40%,
    rgba(15, 50, 68, 0.85) 100%);
}
.trasa-hero-content {
  position: relative; z-index: 2;
  padding: var(--pad); padding-bottom: clamp(56px, 9vh, 96px);
  max-width: var(--max-w); margin: 0 auto; width: 100%;
  color: var(--cream);
}
.trasa-hero-lbl {
  font-family: var(--f-body); font-size: 12px;
  letter-spacing: 0.36em; text-transform: uppercase;
  color: var(--gold-light); font-weight: 600;
  margin-bottom: 20px;
  display: inline-flex; align-items: center; gap: 16px;
}
.trasa-hero-lbl::before {
  content: ""; width: 48px; height: 1px; background: var(--gold-light);
}
.trasa-hero-tyt {
  font-family: var(--f-display); font-weight: 400;
  font-size: clamp(40px, 6vw, 88px);
  color: var(--cream); line-height: 1.03;
  letter-spacing: -0.025em; max-width: 1000px;
}
.trasa-hero-tag {
  margin-top: 20px;
  font-family: var(--f-body); font-size: 13px;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: rgba(245, 239, 228, 0.85); font-weight: 500;
}

/* ============================================================
   OPOWIEŚĆ TRASY
   ============================================================ */
.opowiesc {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: start;
}
.opowiesc-tresc h2 { margin-bottom: 32px; }
.opowiesc-tresc p { margin-bottom: 20px; }
.opowiesc-obok {
  padding: 40px 32px;
  background: var(--paper);
  border-radius: var(--r-lg);
  border-top: 3px solid var(--gold);
  box-shadow: var(--shadow-soft);
  position: sticky; top: 100px;
}
.opowiesc-obok .eyebrow { margin-bottom: 20px; display: block; }
.opowiesc-obok-lista { list-style: none; padding: 0; }
.opowiesc-obok-lista li {
  padding: 16px 0;
  border-bottom: 1px solid var(--rule);
  display: grid; grid-template-columns: 40px 1fr;
  gap: 12px; align-items: baseline;
}
.opowiesc-obok-lista li:last-child { border-bottom: none; }
.opowiesc-obok-lista .num {
  font-family: var(--f-body); font-size: 11px;
  letter-spacing: 0.16em; color: var(--gold-2);
  font-weight: 700;
}
.opowiesc-obok-lista .txt {
  font-family: var(--f-body); font-size: 15px;
  color: var(--ink-2); line-height: 1.5;
}

/* ============================================================
   WSKAZÓWKA JACKA — cichy panel z ikoną
   ============================================================ */
.wskazowka {
  margin: 64px auto 0;
  max-width: 920px;
  padding: 44px 48px;
  background: var(--sea-deep);
  color: var(--cream);
  border-radius: var(--r-lg);
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 32px; align-items: start;
  box-shadow: var(--shadow-card);
}
.wskazowka .pic {
  background: transparent;
  border: 1px solid var(--gold-light);
  color: var(--gold-light);
}
.wskazowka-lbl {
  font-family: var(--f-body); font-size: 11px;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold-light); font-weight: 600;
  margin-bottom: 14px;
}
.wskazowka p {
  font-family: var(--f-display); font-weight: 400;
  font-size: clamp(19px, 1.6vw, 24px);
  color: var(--cream); line-height: 1.5;
  font-style: italic;
}

/* ============================================================
   BADGES (3 elementy: dni / grupa / start)
   ============================================================ */
.badges {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 56px;
  padding: 40px 32px;
  background: var(--paper);
  border-radius: var(--r-lg);
  border: 1px solid var(--rule);
}
.badge { display: flex; align-items: center; gap: 20px; }
.badge-inner {
  display: flex; flex-direction: column; gap: 4px;
}
.badge-lbl {
  font-family: var(--f-body); font-size: 10px;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold-2); font-weight: 600;
}
.badge-val {
  font-family: var(--f-display); font-weight: 400;
  font-size: 22px; color: var(--ink);
  letter-spacing: -0.01em;
}

/* ============================================================
   MAPA + LANDMARKI
   ============================================================ */
.mapa-block { margin-top: 48px; }
.mapa-block h3 { margin-bottom: 32px; text-align: center; }
.mapa-foto {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--rule-2);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}
.mapa-foto img { width: 100%; height: auto; display: block; }
.mapa-attr {
  font-family: var(--f-body); font-size: 10px;
  letter-spacing: 0.16em; color: var(--ink-4);
  text-transform: uppercase; margin-top: 16px;
  text-align: center; line-height: 1.5;
}

.landmark-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px; margin-top: 56px;
}
.landmark-row-2 { grid-template-columns: 1fr 1fr; }
.landmark { text-align: left; }
.landmark-foto {
  aspect-ratio: 4 / 5;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--cream-2);
  box-shadow: var(--shadow-soft);
}
.landmark-foto img { width: 100%; height: 100%; object-fit: cover; }
.landmark-lbl {
  font-family: var(--f-display); font-weight: 500;
  font-size: 18px; color: var(--ink);
  margin-top: 18px; letter-spacing: -0.01em;
}
.landmark-sub {
  font-family: var(--f-body); font-size: 12px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold-2); font-weight: 600;
  margin-top: 4px;
}

/* ============================================================
   PLAN DNIA — cichy vertical rhythm
   ============================================================ */
.plan-dni { margin-top: 32px; }
.plan-dni h3 { margin-bottom: 40px; text-align: center; }
.plan-dzien {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 40px; padding: 32px 0;
  border-bottom: 1px solid var(--rule);
  align-items: start;
}
.plan-dzien:last-child { border-bottom: none; }
.plan-dzien-nr {
  font-family: var(--f-display); font-weight: 400;
  font-size: 48px; color: var(--gold);
  line-height: 1; letter-spacing: -0.02em;
}
.plan-dzien-lbl {
  font-family: var(--f-body); font-size: 10px;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gold-2); margin-top: 8px; font-weight: 700;
}
.plan-dzien-tyt {
  font-family: var(--f-display); font-weight: 500;
  font-size: 24px; color: var(--ink);
  margin-bottom: 10px; letter-spacing: -0.01em;
}
.plan-dzien-op {
  font-family: var(--f-body); font-size: 16px;
  color: var(--ink-2); line-height: 1.65;
}

/* ============================================================
   CIEKAWOSTKA — cichy panel piaskowy
   ============================================================ */
.ciekawostka {
  margin-top: 64px;
  padding: 40px 48px;
  background: var(--cream-2);
  border-radius: var(--r-lg);
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 28px; align-items: start;
}
.ciekawostka-lbl {
  font-family: var(--f-body); font-size: 10px;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold-2); font-weight: 700;
  margin-bottom: 10px;
}
.ciekawostka p {
  font-family: var(--f-display); font-weight: 400;
  font-size: clamp(17px, 1.4vw, 20px);
  color: var(--ink); line-height: 1.5;
  letter-spacing: -0.01em;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq { display: grid; gap: 8px; margin-top: 48px; }
.faq-item {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item[open] { border-color: var(--gold); }
.faq-item summary {
  padding: 22px 28px;
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  gap: 20px;
  font-family: var(--f-display); font-weight: 500;
  font-size: 19px; color: var(--ink);
  list-style: none;
  letter-spacing: -0.01em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: ""; width: 20px; height: 20px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23b8892b' stroke-width='2' stroke-linecap='round'><line x1='12' y1='5' x2='12' y2='19'/><line x1='5' y1='12' x2='19' y2='12'/></svg>");
  transition: transform 0.3s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-body {
  padding: 0 28px 28px;
  font-family: var(--f-body); font-size: 16px;
  color: var(--ink-2); line-height: 1.7;
}

/* ============================================================
   KATAMARAN
   ============================================================ */
.kat-cechy {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 32px; margin: 48px 0;
}
.kat-cecha {
  display: flex; flex-direction: column; gap: 16px;
  text-align: left;
}
.kat-cecha-tyt {
  font-family: var(--f-display); font-weight: 500;
  font-size: 20px; color: var(--cream);
  letter-spacing: -0.01em;
}
.kat-cecha-op {
  font-family: var(--f-body); font-size: 14px;
  color: rgba(245, 239, 228, 0.75); line-height: 1.6;
}
.kat-cena {
  margin-top: 56px;
  padding: 48px;
  background: var(--gold);
  color: var(--paper);
  border-radius: var(--r-lg);
  display: grid; grid-template-columns: auto 1fr auto;
  gap: 40px; align-items: center;
}
.kat-cena-lbl {
  font-family: var(--f-body); font-size: 11px;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: rgba(251, 247, 238, 0.8); font-weight: 700;
  margin-bottom: 8px;
}
.kat-cena-val {
  font-family: var(--f-display); font-weight: 400;
  font-size: clamp(44px, 5vw, 72px);
  color: var(--paper); line-height: 1;
  letter-spacing: -0.025em;
}
.kat-cena-op {
  font-family: var(--f-body); font-size: 14px;
  color: rgba(251, 247, 238, 0.85); line-height: 1.5;
  max-width: 400px;
}

/* ============================================================
   KONTAKT
   ============================================================ */
.kontakt-hero {
  padding-top: clamp(140px, 18vh, 220px);
  text-align: center;
}
.kontakt-hero-title {
  margin-top: 24px;
  font-family: var(--f-display); font-weight: 400;
  color: var(--ink);
  font-size: clamp(48px, 7vw, 108px);
  letter-spacing: -0.025em; line-height: 1;
}
.kontakt-hero-lead {
  margin: 32px auto 0; max-width: 720px;
}
.kontakt-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px; align-items: start; margin-top: 56px;
}
.kontakt-card {
  padding: 48px;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-soft);
}
.kontakt-row {
  padding: 24px 0;
  border-bottom: 1px solid var(--rule);
  display: grid; grid-template-columns: 48px 1fr;
  gap: 20px; align-items: center;
}
.kontakt-row:last-child { border-bottom: none; }
.kontakt-lbl {
  font-family: var(--f-body); font-size: 10px;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold-2); font-weight: 700;
  margin-bottom: 4px;
}
.kontakt-val {
  font-family: var(--f-display); font-weight: 500;
  font-size: 22px; color: var(--ink);
  letter-spacing: -0.01em; line-height: 1.1;
}
.kontakt-val a:hover { color: var(--gold-2); }

.obejmuje { padding: 48px; background: var(--sea-deep); color: var(--cream); border-radius: var(--r-lg); }
.obejmuje h3 { color: var(--cream); margin: 12px 0 28px; }
.obejmuje ul { list-style: none; padding: 0; }
.obejmuje li {
  padding: 18px 0;
  border-bottom: 1px solid rgba(245, 239, 228, 0.15);
  display: grid; grid-template-columns: 40px 1fr;
  gap: 16px; align-items: center;
  font-family: var(--f-body); font-size: 15px;
  color: rgba(245, 239, 228, 0.92); line-height: 1.5;
}
.obejmuje li:last-child { border-bottom: none; }
.obejmuje li svg {
  width: 22px; height: 22px; stroke: var(--gold-light);
  stroke-width: 1.5;
}
.obejmuje-uwaga {
  font-family: var(--f-body); font-size: 13px;
  color: rgba(245, 239, 228, 0.65);
  margin-top: 24px; line-height: 1.55; font-style: italic;
}

/* ============================================================
   LISTA KIERUNKÓW (kontakt)
   ============================================================ */
.kier-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0 48px; margin-top: 40px;
}
.kier-item {
  padding: 20px 0;
  border-bottom: 1px solid var(--rule);
  display: grid; grid-template-columns: 60px 1fr 24px;
  gap: 16px; align-items: baseline;
  font-family: var(--f-display); font-size: 20px;
  color: var(--ink); letter-spacing: -0.01em;
  font-weight: 500;
  transition: padding-left 0.2s, color 0.2s;
}
.kier-item:hover { color: var(--gold-2); padding-left: 8px; }
.kier-nr {
  font-family: var(--f-body); font-size: 12px;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gold-2); font-weight: 700;
}
.kier-arr { color: var(--gold-2); }
.kier-arr svg { width: 18px; height: 18px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--sea-deep);
  color: rgba(245, 239, 228, 0.75);
  padding: clamp(72px, 10vh, 120px) var(--pad) 40px;
}
.footer-grid {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(245, 239, 228, 0.15);
}
.footer-brand {
  font-family: var(--f-display); font-weight: 400;
  font-size: clamp(28px, 3vw, 40px);
  color: var(--cream); line-height: 1.15;
  letter-spacing: -0.02em; max-width: 420px;
}
.footer-brand-mark {
  display: block; margin-bottom: 24px;
  font-family: var(--f-body); font-size: 11px;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold-light); font-weight: 700;
}
.footer-lbl {
  font-family: var(--f-body); font-size: 11px;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold-light); font-weight: 700;
  margin-bottom: 20px;
}
.footer a {
  display: block; padding: 6px 0;
  font-family: var(--f-body); font-size: 15px;
  color: rgba(245, 239, 228, 0.75);
  transition: color 0.2s, padding-left 0.2s;
}
.footer a:hover { color: var(--cream); padding-left: 4px; }
.footer-legal {
  max-width: var(--max-w); margin: 40px auto 0;
  display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
  font-family: var(--f-body); font-size: 11px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(245, 239, 228, 0.45); font-weight: 500;
}

/* ============================================================
   MOBILE
   ============================================================ */
.mobile-burger, .mobile-drawer { display: none; }
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav { padding: 14px 20px; }

  .mobile-burger {
    display: flex; flex-direction: column;
    justify-content: center; align-items: center; gap: 5px;
    position: fixed; top: 12px; right: 12px;
    width: 46px; height: 46px;
    background: var(--sea);
    border-radius: 50%;
    box-shadow: var(--shadow-soft);
    z-index: 200;
  }
  .mobile-burger span {
    display: block; width: 20px; height: 2px;
    background: var(--cream); border-radius: 2px;
    transition: transform 0.3s, opacity 0.2s;
  }
  .mobile-burger[aria-expanded="true"] { background: var(--cream); }
  .mobile-burger[aria-expanded="true"] span { background: var(--sea); }
  .mobile-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .mobile-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .mobile-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .mobile-drawer {
    display: block;
    position: fixed; top: 0; right: 0; bottom: 0;
    width: min(340px, 90vw);
    background: var(--cream);
    z-index: 190;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: var(--shadow-deep);
    overflow-y: auto;
    padding: 80px 28px 24px;
  }
  .mobile-drawer[aria-hidden="false"] { transform: translateX(0); }
  .mobile-drawer a {
    display: block; padding: 18px 0;
    border-bottom: 1px solid var(--rule);
    font-family: var(--f-display); font-size: 20px;
    color: var(--ink); font-weight: 500;
  }
  .mobile-drawer .md-cta {
    margin-top: 24px; padding: 16px 24px;
    text-align: center; background: var(--sea);
    color: var(--cream); border-radius: 100px;
    font-family: var(--f-body); font-size: 12px;
    font-weight: 700; letter-spacing: 0.2em;
    text-transform: uppercase; border-bottom: none;
  }

  .jacek { grid-template-columns: 1fr; gap: 40px; }
  .jacek-badges { grid-template-columns: 1fr; gap: 24px; }
  .care-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .proces { grid-template-columns: 1fr; gap: 40px; }
  .proces::before { display: none; }

  /* MOBILE TRASY — horizontal scroll snap */
  .trasy-grid {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-padding: 0 20px;
    gap: 16px;
    padding: 8px 20px 24px;
    margin: 40px calc(var(--pad) * -1) 0;
    scrollbar-width: none;
  }
  .trasy-grid::-webkit-scrollbar { display: none; }
  .trasa-karta {
    flex: 0 0 82%;
    scroll-snap-align: center;
    min-width: 280px;
  }
  .trasa-karta-foto { aspect-ratio: 4 / 5; }
  .opowiesc { grid-template-columns: 1fr; gap: 40px; }
  .opowiesc-obok { position: static; }
  .badges { grid-template-columns: 1fr; }
  .landmark-row { grid-template-columns: 1fr; }
  .landmark-row-2 { grid-template-columns: 1fr; }
  .plan-dzien { grid-template-columns: 1fr; gap: 8px; padding: 24px 0; }
  .plan-dzien-nr { font-size: 36px; display: flex; align-items: baseline; gap: 12px; }
  .kat-cechy { grid-template-columns: 1fr 1fr; }

  /* MOBILE KATAMARAN TEASER — obraz WIĘKSZY i NA GÓRZE */
  .kat-teaser-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  .kat-teaser-grid > div:last-child { order: -1; }
  .kat-teaser-img {
    aspect-ratio: 3 / 4 !important;
    min-height: 60vh;
  }
  .kat-cena { grid-template-columns: 1fr; text-align: center; gap: 20px; }
  .kier-grid { grid-template-columns: 1fr; }
  .kontakt-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .wskazowka { grid-template-columns: 1fr; padding: 32px; }
  .ciekawostka { grid-template-columns: 1fr; padding: 28px; }
  .hero { height: 90vh; }
  .trasa-hero { height: 72vh; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============================================================
   TRANSPORT (bus vs samolot+bus)
   ============================================================ */
.transport-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 32px; margin-top: 56px;
}
.transport-card {
  padding: 40px;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-soft);
  display: flex; flex-direction: column;
}
.transport-card-featured {
  border-color: var(--gold);
  border-width: 1.5px;
  background: linear-gradient(180deg, var(--paper) 0%, var(--cream) 100%);
}
.transport-head {
  display: grid; grid-template-columns: 72px 1fr;
  gap: 20px; align-items: center;
  margin-bottom: 24px;
}
.transport-lbl {
  font-family: var(--f-body); font-size: 11px;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gold-2); font-weight: 700;
  margin-bottom: 6px;
}
.transport-tyt {
  font-family: var(--f-display); font-weight: 500;
  font-size: clamp(22px, 2vw, 28px);
  color: var(--ink); letter-spacing: -0.01em;
  line-height: 1.15;
}
.transport-p {
  font-family: var(--f-body); font-size: 16px;
  color: var(--ink-2); line-height: 1.65;
  margin-bottom: 24px;
}
.transport-list { list-style: none; padding: 0; }
.transport-list li {
  padding: 12px 0;
  border-bottom: 1px dashed var(--rule);
  display: grid; grid-template-columns: 24px 1fr; gap: 14px;
  align-items: baseline;
  font-family: var(--f-body); font-size: 15px;
  color: var(--ink-2); line-height: 1.5;
}
.transport-list li:last-child { border-bottom: none; }
.transport-list li svg {
  width: 18px; height: 18px;
  stroke: var(--gold-2); stroke-width: 2;
}
.transport-card-featured .transport-list li svg { stroke: var(--gold); }
.transport-foot {
  margin-top: 40px; text-align: center;
  font-family: var(--f-body); font-size: 15px;
  color: var(--ink-3); font-style: italic;
  max-width: 720px; margin-left: auto; margin-right: auto;
  line-height: 1.6;
}

/* ============================================================
   KATAMARAN TEASER (index.html)
   ============================================================ */
.kat-teaser-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px; align-items: center;
}
.kat-teaser-h2 { margin-top: 20px; }
.kat-teaser-p {
  margin-top: 24px; font-size: 18px;
  color: rgba(245, 239, 228, 0.9);
  line-height: 1.65;
}
.kat-teaser-badges {
  display: flex; gap: 20px; margin-top: 32px;
  flex-wrap: wrap;
}
.kat-teaser-badge {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--f-body); font-size: 14px;
  color: rgba(245, 239, 228, 0.9); font-weight: 500;
}
.kat-teaser-cta { margin-top: 40px; }
.kat-teaser-img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
  border-radius: var(--r-lg);
}

/* ============================================================
   ITALIC HEADING helper
   ============================================================ */
.italic-heading em { font-style: italic; color: var(--gold-2); }

/* ============================================================
   OKŁADKA KATALOGU (sekcja Jestem Jacek)
   ============================================================ */
.katalog-card {
  margin-top: 56px;
  padding: 40px;
  background: var(--paper);
  border: 1px solid var(--gold);
  border-radius: var(--r-lg);
  display: grid;
  grid-template-columns: 220px 1fr auto;
  gap: 32px; align-items: center;
  box-shadow: var(--shadow-card);
}
.katalog-card-foto {
  aspect-ratio: 3/5;
  overflow: hidden;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-soft);
}
.katalog-card-foto img { width: 100%; height: 100%; object-fit: cover; }
.katalog-card-lbl {
  font-family: var(--f-body); font-size: 11px;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold-2); font-weight: 700;
  margin-bottom: 12px;
}
.katalog-card-tyt {
  font-family: var(--f-display); font-weight: 500;
  font-size: clamp(24px, 2.4vw, 32px);
  color: var(--ink); letter-spacing: -0.02em;
  line-height: 1.15; margin-bottom: 12px;
}
.katalog-card-p {
  font-family: var(--f-body); font-size: 16px;
  color: var(--ink-2); line-height: 1.6;
}

/* ============================================================
   MOBILE
   ============================================================ */
@media (max-width: 900px) {
  .transport-grid { grid-template-columns: 1fr; gap: 20px; }
  .transport-card { padding: 28px; }
  .transport-head { grid-template-columns: 56px 1fr; gap: 16px; }
  .katalog-card {
    grid-template-columns: 1fr;
    padding: 24px; gap: 20px; text-align: center;
  }
  .katalog-card-foto { max-width: 220px; margin: 0 auto; }
  .kat-teaser-grid { gap: 40px; }
  .kat-teaser-badges { gap: 12px; }
}

/* ============================================================
   KATAMARAN — bez ceny (v04)
   ============================================================ */
.kat-cena-note {
  margin-top: 40px; margin-bottom: 24px;
  text-align: center;
  font-family: var(--f-body); font-size: 15px;
  color: rgba(245, 239, 228, 0.7); font-style: italic;
  max-width: 720px; margin-left: auto; margin-right: auto;
  line-height: 1.6;
}
.btn-mleft { margin-left: 12px; }
@media (max-width: 900px) {
  .btn-mleft { margin-left: 0; margin-top: 12px; }
}

/* ============================================================
   HOW IT WORKS — jedna kompaktowa sekcja zamiast 3
   ============================================================ */
.how-it-works { padding: clamp(64px, 8vh, 100px) 0; }
.hiw-intro { margin-bottom: 56px; }
.hiw-block { margin-bottom: 48px; }
.hiw-block:last-of-type { margin-bottom: 32px; }
.hiw-label {
  font-family: var(--f-body); font-size: 11px;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold-2); font-weight: 700;
  text-align: center; margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--rule);
}
.hiw-cta { margin-top: 40px; }

/* ---- BLOK A: STEPS STRIP ---- */
.steps-strip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; position: relative;
}
.steps-strip::before {
  content: ""; position: absolute;
  top: 22px; left: 12.5%; right: 12.5%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 12%, var(--gold) 88%, transparent 100%);
  opacity: 0.5;
  z-index: 0;
}
.step-item {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center;
  gap: 14px; text-align: center;
}
.step-num {
  width: 44px; height: 44px;
  background: var(--paper);
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-display); font-weight: 600;
  font-size: 15px; color: var(--gold-2);
  box-shadow: 0 0 0 8px var(--cream);
  flex-shrink: 0;
}
.step-tyt {
  font-family: var(--f-display); font-weight: 500;
  font-size: 16px; color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.step-op {
  font-family: var(--f-body); font-size: 13px;
  color: var(--ink-3); line-height: 1.55;
  max-width: 220px;
}

/* ---- BLOK B: TRANSPORT MINI ---- */
.transport-mini {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.tm-card {
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px; align-items: start;
}
.tm-featured {
  border-color: var(--gold);
  border-width: 1.5px;
  background: linear-gradient(180deg, var(--paper) 0%, var(--cream) 100%);
}
.tm-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.tm-icon svg { width: 22px; height: 22px; stroke-width: 1.5; }
.tm-icon-sea { background: var(--sea); color: var(--gold-light); }
.tm-icon-gold { background: var(--gold); color: var(--paper); }
.tm-body {}
.tm-lbl {
  font-family: var(--f-body); font-size: 10px;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gold-2); font-weight: 700;
  margin-bottom: 4px;
}
.tm-tyt {
  font-family: var(--f-display); font-weight: 500;
  font-size: 20px; color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.tm-desc {
  font-family: var(--f-body); font-size: 14px;
  color: var(--ink-2); line-height: 1.55;
}

/* ---- BLOK C: CARE INLINE (8 elementów zaopiekowania) ---- */
.care-inline {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 8px 24px;
}
.ci-item {
  display: grid; grid-template-columns: 22px 1fr;
  gap: 12px; align-items: center;
  padding: 14px 0;
  border-bottom: 1px dashed var(--rule);
  font-family: var(--f-body); font-size: 14px;
  color: var(--ink-2); line-height: 1.45;
}
.ci-item svg {
  width: 20px; height: 20px;
  stroke: var(--gold-2); stroke-width: 1.5;
  flex-shrink: 0;
}

/* ---- MOBILE ---- */
@media (max-width: 900px) {
  .hiw-block { margin-bottom: 40px; }
  .steps-strip {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .steps-strip::before { display: none; }
  .step-item { align-items: flex-start; text-align: left; flex-direction: row; }
  .step-op { max-width: 100%; }
  .transport-mini { grid-template-columns: 1fr; gap: 14px; }
  .care-inline { grid-template-columns: 1fr 1fr; gap: 4px 20px; }
}
@media (max-width: 560px) {
  .care-inline { grid-template-columns: 1fr; }
  .steps-strip { grid-template-columns: 1fr; }
}

.opt-note {
  font-family: var(--f-body); font-style: normal;
  font-size: 12px; color: var(--gold-2);
  letter-spacing: 0.02em;
  display: block; margin-top: 4px;
}

/* ---- katalog card actions (2 buttony) ---- */
.katalog-card-actions {
  display: flex; flex-direction: column;
  gap: 12px; align-items: stretch;
}
.katalog-card-actions .btn { justify-content: center; }
@media (max-width: 900px) {
  .katalog-card-actions { flex-direction: column; width: 100%; }
}

/* ============================================================
   FORMULARZ ZAPYTANIA (Netlify Forms)
   ============================================================ */
.form-zapytanie {
  margin-top: 56px;
  padding: 40px clamp(24px, 4vw, 56px);
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-soft);
  display: grid; gap: 20px;
}
.hp-field { position: absolute; left: -9999px; visibility: hidden; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 20px; }
.form-row-2 { grid-template-columns: 1fr 1fr; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label {
  font-family: var(--f-body); font-size: 12px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold-2); font-weight: 700;
}
.form-field input,
.form-field select,
.form-field textarea {
  padding: 14px 16px;
  font-family: var(--f-body); font-size: 16px;
  color: var(--ink); background: var(--cream);
  border: 1px solid var(--rule-2);
  border-radius: var(--r-md);
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--paper);
}
.form-field textarea { resize: vertical; font-family: var(--f-body); }
.form-field select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23b8892b' stroke-width='2' stroke-linecap='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  padding-right: 42px;
}

.form-consent { margin-top: 4px; }
.form-check {
  display: grid; grid-template-columns: 24px 1fr;
  gap: 12px; align-items: start;
  font-family: var(--f-body); font-size: 14px;
  color: var(--ink-3); line-height: 1.5;
  text-transform: none; letter-spacing: normal; font-weight: 400;
}
.form-check input[type="checkbox"] {
  width: 20px; height: 20px;
  accent-color: var(--sea);
  cursor: pointer; margin-top: 2px;
}

.form-submit {
  margin-top: 16px; text-align: center;
  display: flex; flex-direction: column;
  gap: 16px; align-items: center;
}
.form-alt {
  font-family: var(--f-body); font-size: 14px;
  color: var(--ink-3);
}
.form-alt a { color: var(--gold-2); font-weight: 600; }
.form-alt a:hover { color: var(--gold); }

@media (max-width: 700px) {
  .form-row-2 { grid-template-columns: 1fr; }
  .form-zapytanie { padding: 28px 20px; gap: 16px; }
}

/* ---- Dziekujemy page ---- */
.ty-hero { padding-top: clamp(140px, 20vh, 240px); }
.ty-inner { max-width: 720px; }
.ty-check {
  display: inline-flex; align-items: center; justify-content: center;
  width: 80px; height: 80px;
  background: var(--gold); color: var(--paper);
  border-radius: 50%; margin-bottom: 32px;
  box-shadow: 0 12px 30px rgba(184, 137, 43, 0.35);
}
.ty-check svg { width: 40px; height: 40px; stroke-width: 3; }
.ty-title {
  margin-top: 24px;
  font-family: var(--f-display); font-weight: 400; font-style: italic;
  font-size: clamp(56px, 8vw, 128px);
  color: var(--ink); letter-spacing: -0.03em; line-height: 1;
}
.ty-lead { margin: 32px auto; max-width: 620px; }
.ty-lead a { color: var(--gold-2); font-weight: 600; }
.ty-note {
  margin-top: 40px; padding-top: 32px;
  border-top: 1px solid var(--rule);
  font-family: var(--f-display); font-style: italic;
  font-size: 20px; color: var(--ink-3);
  line-height: 1.4;
}

/* ============================================================
   HERO SLIDESHOW — crossfade + ken burns + mocny overlay
   ============================================================ */
.hero-slides {
  position: absolute; inset: 0; z-index: 1;
  overflow: hidden;
}
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 2s cubic-bezier(0.4, 0, 0.2, 1),
              transform 8s ease-out;
  will-change: opacity, transform;
  filter: saturate(1.08) contrast(1.04);
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1.14);
  z-index: 1;
}
@media (prefers-reduced-motion: reduce) {
  .hero-slide { transition: opacity 0.4s; transform: none; }
  .hero-slide.active { transform: none; }
}

/* Overlay ciemny — mocno kontrastowy zeby tekst byl czytelny */
.hero-overlay {
  position: absolute; inset: 0; z-index: 2;
  background:
    linear-gradient(180deg,
      rgba(15, 50, 68, 0.35) 0%,
      rgba(15, 50, 68, 0.55) 40%,
      rgba(15, 50, 68, 0.85) 100%),
    linear-gradient(90deg,
      rgba(15, 50, 68, 0.35) 0%,
      transparent 50%,
      transparent 100%);
  pointer-events: none;
}

/* Nadpisujemy stary .hero-media (juz nieuzywany, ale zeby nie kolidowal) */
.hero-media, .hero-media::after { display: none; }

/* Content: z-index 3 + text-shadow zeby wybic sie ponad overlay i slajdy */
.hero-content { z-index: 3; }
.hero-title {
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.55), 0 0 40px rgba(0, 0, 0, 0.3);
}
.hero-sub {
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
  color: rgba(255, 255, 255, 0.96) !important;
}
.hero-eyebrow {
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}
.hero-meta div span {
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.6);
}
.hero-meta .mval {
  color: #fff !important;
}
.hero-meta { border-top-color: rgba(255, 255, 255, 0.35) !important; }

/* Dots (paginacja slideshow) */
.hero-dots {
  position: absolute; bottom: 24px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 10px; z-index: 4;
}
.hero-dot {
  width: 32px; height: 3px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.35);
  border: none; padding: 0; cursor: pointer;
  transition: background 0.3s, width 0.3s;
}
.hero-dot:hover { background: rgba(255, 255, 255, 0.6); }
.hero-dot.active {
  background: var(--gold-light);
  width: 48px;
}

@media (max-width: 900px) {
  .hero-dots { bottom: 16px; }
  .hero-dot { width: 24px; }
  .hero-dot.active { width: 36px; }
  .hero-overlay {
    background: linear-gradient(180deg,
      rgba(15, 50, 68, 0.45) 0%,
      rgba(15, 50, 68, 0.65) 50%,
      rgba(15, 50, 68, 0.9) 100%);
  }
}

/* ============================================================
   CONTACT TILES — 4 karty bez formularza
   ============================================================ */
.contact-lead { max-width: 640px; margin-left: auto; margin-right: auto; }
.contact-tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px; margin-top: 56px;
}
.contact-tile {
  padding: 32px 24px;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  gap: 10px;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  color: inherit;
}
.contact-tile:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: var(--shadow-card);
}
.contact-tile .pic { margin-bottom: 12px; }
.contact-tile-lbl {
  font-family: var(--f-body); font-size: 11px;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gold-2); font-weight: 700;
}
.contact-tile-val {
  font-family: var(--f-display); font-weight: 500;
  font-size: clamp(18px, 1.7vw, 22px);
  color: var(--ink); letter-spacing: -0.015em;
  line-height: 1.15;
}
.contact-tile-sub {
  font-family: var(--f-body); font-size: 13px;
  color: var(--ink-3); line-height: 1.5;
}

@media (max-width: 900px) {
  .contact-tiles { grid-template-columns: 1fr 1fr; gap: 12px; }
  .contact-tile { padding: 24px 16px; }
}
@media (max-width: 560px) {
  .contact-tiles { grid-template-columns: 1fr; }
}
