/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  { font-family: 'Lato', sans-serif; color: var(--text); background: var(--cream); overflow-x: hidden; }
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }
h2   { font-size: clamp(1.7rem, 3.5vw, 2.6rem); color: var(--dark); margin-bottom: .4rem; }
p    { line-height: 1.8; color: var(--muted); }
a    { text-decoration: none; color: inherit; }
img  { max-width: 100%; display: block; height: auto; }

/* Focus-visible — improved keyboard accessibility */
:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

/* Skip link — accessible, hidden until focused */
.skip-link {
  position: absolute;
  top: -100px;
  left: 8px;
  z-index: 10000;
  background: var(--teal);
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 700;
  font-size: .85rem;
  transition: top .2s ease;
}
.skip-link:focus { top: 8px; }

address { font-style: normal; }

/* ============================================================
   DESIGN TOKENS  —  Teal
   ============================================================ */
:root {
  --teal:    #1a6b7a;            /* main brand colour                           */
  --teal-d:  #13505d;            /* hover / darker                              */
  --teal-bg: #f3fafc;            /* cool teal tint (legacy)                     */
  --cream:   #ffffff;            /* page background — clean white               */
  --sand:    #f6f9fa;            /* near-white cool tint for alt sections       */
  --sand-d:  #e8eef0;            /* subtle border/divider on tinted areas       */
  --teal-soft: #e3f0f2;          /* soft teal wash for icon chips               */
  --dark:    #0f3d47;            /* header · strip · CTA — darker than teal     */
  --dark-2:  #0a2a31;            /* deepest accent                              */
  --text:    #0d1e22;            /* dark body text                              */
  --muted:   #1c3038;            /* paragraph text — dark, readable             */
  --border:  rgba(26, 107, 122, .18);
  --light:   #e8f5f8;            /* light accent on dark backgrounds            */
  --t:       .28s ease;
}

/* ============================================================
   LAYOUT HELPERS
   ============================================================ */
.section     { padding: 104px 0; }
.section-alt { background: var(--sand); }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.subtitle {
  display: block;
  font-size: .75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 8px;
  font-weight: 700;
}

.divider {
  width: 48px;
  height: 2px;
  background: var(--teal);
  margin: 12px auto;
}
.divider.left { margin-left: 0; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 30px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: .88rem;
  letter-spacing: .4px;
  transition: all var(--t);
  cursor: pointer;
  border: none;
}
.btn svg { width: 16px; height: 16px; }

/* solid teal — hero */
.btn-primary {
  background: var(--teal);
  color: #fff;
}
.btn-primary:hover {
  background: var(--teal-d);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(26, 107, 122, .35);
}

/* outline white — hero (on dark photo) */
.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, .65);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, .12);
  border-color: #fff;
  transform: translateY(-2px);
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s ease, transform .5s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   LUCIDE ICON DEFAULTS
   ============================================================ */
i[data-lucide] { display: inline-block; line-height: 0; }
i[data-lucide] svg { display: block; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 12px 0;
  /* transparent over the hero — a soft gradient keeps the nav legible */
  background: linear-gradient(to bottom, rgba(8, 26, 30, .55), rgba(8, 26, 30, 0));
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  box-shadow: none;
  transition: background var(--t), box-shadow var(--t), backdrop-filter var(--t);
}
/* solid once the user scrolls past the top of the hero */
.site-header.scrolled {
  background: rgba(15, 61, 71, .92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 16px rgba(0, 0, 0, .25);
}

.nav-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Logo */
.nav-logo img {
  height: 64px;
  filter: brightness(0) invert(1);
}

/* Links — centered in middle column */
.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  position: relative;
  color: rgba(255, 255, 255, .88);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding-bottom: 4px;
  transition: color var(--t);
}
.nav-links a:hover { color: #fff; }

/* animated underline — grows on hover and for the active section */
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--light);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t);
}
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: #fff; }

/* Right-side nav elements */
.nav-end {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: flex-end;
}

.nav-tel {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #fff;
  color: var(--teal) !important;
  padding: 8px 18px;
  border-radius: 25px;
  font-size: .82rem;
  font-weight: 700;
  transition: background var(--t), box-shadow var(--t);
  white-space: nowrap;
}
.nav-tel:hover {
  background: #cde7ee;
  box-shadow: 0 4px 14px rgba(0,0,0,.12);
}
.nav-tel svg { width: 14px; height: 14px; color: var(--teal); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transform-origin: center;
  transition: transform var(--t), opacity var(--t);
}
/* morph the three bars into an X while the menu is open */
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   MOBILE MENU  —  dropdown pod headerem
   ============================================================ */
.mobile-menu {
  display: flex;                       /* zawsze flex, widoczność przez transform */
  position: fixed;
  top: 88px;                           /* = wysokość headera (12+64+12) */
  left: 0; right: 0;
  background: rgba(15, 61, 71, .96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 998;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 12px 24px 20px;
  transform: translateY(-110%);
  opacity: 0;
  pointer-events: none;
  transition: transform .3s ease, opacity .25s ease;
  box-shadow: 0 8px 28px rgba(0, 0, 0, .35);
  border-top: 1px solid rgba(255, 255, 255, .08);
}
.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu a.mobile-link {
  width: 100%;
  text-align: center;
  padding: 11px 0;
  color: rgba(255, 255, 255, .85);
  font-family: 'Lato', sans-serif;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  transition: color var(--t);
}
.mobile-menu a.mobile-link:last-of-type { border-bottom: none; }
.mobile-menu a.mobile-link:hover        { color: #fff; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  height: 100svh;
  min-height: 560px;
  max-height: 920px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../assets/images/hero.jpg');
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero-bg.loaded { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(8, 26, 30, .55) 0%, rgba(8, 26, 30, .28) 45%, rgba(8, 26, 30, .78) 100%),
    radial-gradient(ellipse at center, transparent 0%, rgba(8, 26, 30, .35) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
  max-width: 700px;
  padding: 0 24px;
}

.hero-badge {
  display: inline-block;
  background: rgba(26, 107, 122, .55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, .35);
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding: 8px 22px;
  border-radius: 30px;
  margin-bottom: 24px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, .15);
}

.hero h1 {
  font-size: clamp(2.4rem, 7vw, 4.8rem);
  font-weight: 700;
  margin-bottom: 18px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, .3);
}
.hero h1 span { color: var(--light); }

.hero-sub {
  font-size: clamp(.95rem, 2vw, 1.2rem);
  margin-bottom: 40px;
  line-height: 1.7;
  color: rgba(255, 255, 255, .94);
  text-shadow: 0 1px 12px rgba(0, 0, 0, .35);
}

.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.scroll-hint {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.scroll-arrow {
  width: 18px;
  height: 18px;
  border-right: 2px solid rgba(255, 255, 255, .55);
  border-bottom: 2px solid rgba(255, 255, 255, .55);
  transform: rotate(45deg);
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translateY(0);  opacity: .55; }
  50%       { transform: rotate(45deg) translateY(5px); opacity: 1;  }
}

/* ============================================================
   STRIP
   ============================================================ */
.strip { background: var(--dark); }

.strip-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.strip-item {
  flex: 0 0 auto;
  width: 240px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-right: 1px solid rgba(255, 255, 255, .1);
  transition: background var(--t);
}
.strip-item:last-child { border-right: none; }
.strip-item:hover      { background: rgba(255, 255, 255, .05); }

.strip-item svg {
  width: 22px; height: 22px;
  color: var(--light);
  flex-shrink: 0;
}

.strip-item strong {
  display: block;
  color: #fff;
  font-size: .88rem;
  font-weight: 700;
}
.strip-item span {
  color: rgba(255, 255, 255, .72);
  font-size: .76rem;
}

/* ============================================================
   ABOUT / POKOJE
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

p.lead {
  font-size: 1.02rem;
  margin-bottom: 12px;
}
.about-text p { margin-bottom: 12px; }

.highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}

.hcard {
  background: #fff;
  border-radius: 16px;
  padding: 22px 20px;
  box-shadow: 0 6px 24px rgba(26, 107, 122, .07);
  transition: transform var(--t), box-shadow var(--t), opacity .5s ease;
}
.hcard:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(26, 107, 122, .12);
}
/* icon chip — soft teal circle */
.hcard svg {
  width: 22px; height: 22px;
  color: var(--teal);
  margin-bottom: 14px;
  padding: 11px;
  box-sizing: content-box;
  background: var(--teal-soft);
  border-radius: 50%;
}
.hcard strong {
  display: block;
  color: var(--dark);
  font-size: .9rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.hcard p { font-size: .8rem; margin: 0; }

.about-img-wrap { position: relative; }
.about-img-wrap img {
  border-radius: 14px;
  width: 100%;
  height: 480px;
  object-fit: cover;
  box-shadow: 0 16px 50px rgba(0, 0, 0, .14);
}

.img-badge {
  position: absolute;
  bottom: -18px;
  left: -18px;
  background: var(--dark);
  color: #fff;
  padding: 16px 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .2);
}
.img-badge strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  color: var(--light);
}
.img-badge span { font-size: .72rem; color: rgba(255,255,255,.82); }

/* ============================================================
   AMENITIES  (scalone w sekcji „Pokoje")
   ============================================================ */
.amenities-inline {
  margin-top: 56px;
  padding-top: 44px;
  border-top: 1px solid var(--border);
}
.amenities-title {
  text-align: center;
  color: var(--dark);
  font-family: 'Lato', sans-serif;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  margin-bottom: 26px;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.acard {
  background: #fff;
  border-radius: 16px;
  padding: 26px 16px;
  text-align: center;
  box-shadow: 0 6px 24px rgba(26, 107, 122, .07);
  transition: transform var(--t), box-shadow var(--t), opacity .5s ease;
}
.acard:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(26, 107, 122, .14);
}
/* icon chip — soft teal circle */
.acard svg {
  width: 24px;
  height: 24px;
  color: var(--teal);
  margin: 0 auto 14px;
  display: block;
  padding: 12px;
  box-sizing: content-box;
  background: var(--teal-soft);
  border-radius: 50%;
}
.acard strong {
  display: block;
  color: var(--dark);
  font-size: .84rem;
  font-weight: 700;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.gitem {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  cursor: pointer;
  aspect-ratio: 4 / 3;
  border: none;
  padding: 0;
  background: none;
  font: inherit;
  color: inherit;
  display: block;
  width: 100%;
}
.gitem:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 3px;
}

.gitem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}
.gitem:hover img { transform: scale(1.06); }

.goverlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 107, 122, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t);
}
.gitem:hover .goverlay { background: rgba(26, 107, 122, .45); }
.goverlay svg {
  opacity: 0;
  color: #fff;
  width: 30px;
  height: 30px;
  transition: opacity var(--t);
}
.gitem:hover .goverlay svg { opacity: 1; }

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .93);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.lightbox.active { display: flex; }

.lb-img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 6px;
  object-fit: contain;
}

.lb-close {
  position: absolute;
  top: 20px; right: 20px;
  color: #fff;
  cursor: pointer;
  background: rgba(255,255,255,.1);
  border: none;
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t);
}
.lb-close:hover { background: rgba(255,255,255,.22); }
.lb-close svg   { width: 20px; height: 20px; }

.lb-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, .12);
  border: none;
  color: #fff;
  width: 46px; height: 46px;
  border-radius: 50%;
  cursor: pointer;
  transition: background var(--t);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lb-btn:hover { background: rgba(255, 255, 255, .26); }
.lb-btn svg   { width: 24px; height: 24px; }
#lb-prev { left: 18px; }
#lb-next { right: 18px; }

/* image position indicator, e.g. "3 / 8" */
.lb-counter {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, .85);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: 1px;
  background: rgba(255, 255, 255, .1);
  padding: 5px 14px;
  border-radius: 20px;
}

/* ============================================================
   LOCATION
   ============================================================ */
.loc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

/* shared card style — used by both .loc-info and .distances */
.loc-info,
.distances {
  background: #fff;
  border-radius: 14px;
  padding: 28px 32px;
  box-shadow: 0 4px 20px rgba(26, 107, 122, .09);
  border: 1px solid var(--border);
}

/* shared card header */
.loc-info h3,
.distances h3 {
  color: var(--dark);
  font-family: 'Lato', sans-serif;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
  font-weight: 700;
}

/* shared row style */
.loc-row,
.dist-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: .9rem;
}
.loc-row:last-child,
.dist-row:last-child { border-bottom: none; }

/* left label */
.loc-row span:first-child,
.dist-row span:first-child {
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  flex-shrink: 0;
}

/* right value */
.loc-row span:last-child { color: var(--muted); text-align: right; }
.dist-row span:last-child { font-weight: 700; color: var(--teal); white-space: nowrap; }

.loc-row a { color: var(--teal); font-weight: 700; }

/* full-width map below the grid */
.map-full {
  margin-top: 28px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(26, 107, 122, .12);
  height: 420px;
}
.map-full iframe { width: 100%; height: 100%; border: none; }

/* ============================================================
   HISTORIA  (sekcja celowo mniejsza — domknięcie strony)
   ============================================================ */
#historia { padding: 64px 0; }
#historia .section-header { margin-bottom: 32px; }

.historia-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 40px;
  align-items: center;
}
.historia-text p { margin-bottom: 12px; font-size: .95rem; }

.historia-img img {
  border-radius: 16px;
  width: 100%;
  height: 240px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
}

/* ============================================================
   CTA
   ============================================================ */
.cta {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  padding: 88px 0;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  top: -50%;  left: -10%;
  width: 60%; height: 200%;
  background: radial-gradient(ellipse, rgba(26, 107, 122, .35) 0%, transparent 60%);
  pointer-events: none;
}
.cta::after {
  content: '';
  position: absolute;
  bottom: -40%; right: -10%;
  width: 50%; height: 180%;
  background: radial-gradient(ellipse, rgba(26, 107, 122, .22) 0%, transparent 65%);
  pointer-events: none;
}
.cta > .container { position: relative; z-index: 1; }

.cta h2   { color: #fff; margin-bottom: 12px; }
.cta-lead {
  color: rgba(255, 255, 255, .88);
  font-size: 1.02rem;
  max-width: 460px;
  margin: 0 auto 32px;
}

.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  color: var(--teal);
  border-radius: 50px;
  padding: 14px 30px;
  transition: background var(--t), box-shadow var(--t);
}
.cta-phone:hover {
  background: #cde7ee;
  box-shadow: 0 8px 24px rgba(0,0,0,.15);
}
.cta-phone svg   { width: 22px; height: 22px; color: var(--teal); }
.cta-phone strong {
  display: block;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--teal);
}
.cta-phone small { font-size: .76rem; color: var(--teal-d); }

/* fact-based trust row under the phone CTA */
.cta-trust {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 28px;
  margin-top: 28px;
}
.cta-trust li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .88);
  font-size: .84rem;
  font-weight: 700;
}
.cta-trust svg {
  width: 17px;
  height: 17px;
  color: var(--light);
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .cta-trust { gap: 12px 20px; }
  .cta-trust li { font-size: .8rem; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--dark-2);
  color: rgba(255, 255, 255, .82);
  padding: 60px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 36px;
}

.footer-brand img {
  height: 48px;
  filter: brightness(0) invert(1);
  opacity: .7;
  margin-bottom: 12px;
}
.footer-brand p { font-size: .83rem; line-height: 1.7; color: rgba(255,255,255,.78); }

.footer-col h3 {
  color: #fff;
  font-family: 'Lato', sans-serif;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
  font-weight: 700;
}
.footer-col ul  { list-style: none; }
.footer-col li  { margin-bottom: 8px; }
.footer-col a   { color: rgba(255,255,255,.78); font-size: .83rem; transition: color var(--t); }
.footer-col a:hover { color: #fff; }
.footer-col p   { font-size: .83rem; margin-bottom: 6px; color: rgba(255,255,255,.78); }
.footer-col a[href^="tel"] { color: var(--light); }
.footer-note    { margin-top: 10px; font-size: .74rem !important; color: rgba(255,255,255,.55) !important; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .76rem;
  flex-wrap: wrap;
  gap: 8px;
  color: rgba(255,255,255,.55);
}
.footer-bottom span:last-child {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-bottom span:last-child::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--teal);
  display: inline-block;
}
@media (max-width: 680px) {
  .footer-bottom { justify-content: center; text-align: center; }
}

/* ============================================================
   FLOATING PHONE
   ============================================================ */
.float-tel {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 9001;
  background: var(--teal);
  color: #fff;
  width: 54px; height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(26, 107, 122, .45);
  transition: transform var(--t), box-shadow var(--t), bottom var(--t);
}
/* podnieś przycisk gdy banner jest widoczny */
body.cookie-active .float-tel { bottom: 110px; }
@media (max-width: 600px) {
  body.cookie-active .float-tel { bottom: 180px; }
}
.float-tel:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 28px rgba(26, 107, 122, .55);
}
.float-tel svg { width: 22px; height: 22px; }
.float-tel::before {
  content: '';
  position: absolute;
  width: 100%; height: 100%;
  border-radius: 50%;
  border: 2px solid var(--teal);
  animation: ripple 2.2s infinite;
}

@keyframes ripple {
  0%   { transform: scale(1);   opacity: .7; }
  100% { transform: scale(1.9); opacity: 0;  }
}

/* ============================================================
   RESPONSIVE — tablet  ≤ 960 px
   ============================================================ */
@media (max-width: 960px) {
  .strip-item     { width: 220px; }
  .about-grid     { grid-template-columns: 1fr; gap: 40px; }
  .about-img-wrap { order: -1; max-width: 560px; margin: 0 auto; width: 100%; }
  .about-img-wrap img { height: 360px; }
  .amenities-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid   { grid-template-columns: repeat(3, 1fr); }
  .loc-grid       { grid-template-columns: 1fr; }
  .historia-grid  { grid-template-columns: 1fr; gap: 24px; }
  .historia-img img { height: 220px; }
  .footer-grid    { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   RESPONSIVE — mobile  ≤ 680 px
   ============================================================ */
@media (max-width: 680px) {
  .nav-links      { display: none; }
  .nav-tel        { display: none; }
  .hamburger      { display: flex; }

  .section        { padding: 64px 0; }
  .section-header { margin-bottom: 40px; }
  .container      { padding: 0 20px; }
  .gallery-grid   { grid-template-columns: repeat(2, 1fr); }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .highlights     { grid-template-columns: 1fr; }
  .footer-grid    { grid-template-columns: 1fr; gap: 28px; }
  .strip-item     { width: 50%; border-bottom: 1px solid rgba(255,255,255,.08); }
  .strip-item:nth-child(2n) { border-right: none; }
  .about-img-wrap img { height: 280px; }
  .historia-img img   { height: 190px; }
  .img-badge      { left: 12px; bottom: 12px; padding: 12px 16px; }
  .img-badge strong { font-size: 1.4rem; }
  .map-full       { height: 320px; }
  .loc-info, .distances { padding: 22px 20px; }
  .cta            { padding: 56px 0; }
}

/* ============================================================
   RESPONSIVE — small mobile  ≤ 440 px
   ============================================================ */
@media (max-width: 440px) {
  .gallery-grid   { grid-template-columns: 1fr 1fr; }
  .strip-item     { width: 100%; border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
  .strip-item:last-child { border-bottom: none; }
}

/* ============================================================
   COOKIE CONSENT BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9000;
  background: var(--dark);
  border-top: 2px solid rgba(26, 107, 122, .4);
  box-shadow: 0 -4px 28px rgba(0, 0, 0, .3);
  transform: translateY(100%);
  transition: transform .4s ease;
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner.hiding  { transform: translateY(100%); }

.cookie-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text { flex: 1; min-width: 240px; }
.cookie-text strong {
  display: block;
  color: #fff;
  font-size: .88rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.cookie-text p {
  color: rgba(255, 255, 255, .75);
  font-size: .78rem;
  margin: 0;
  line-height: 1.55;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 9px 22px;
  border-radius: 25px;
  font-family: 'Lato', sans-serif;
  font-size: .82rem;
  font-weight: 700;
  cursor: pointer;
  transition: all .25s ease;
  white-space: nowrap;
}
.cookie-btn-primary {
  background: var(--teal);
  color: #fff;
  border: none;
}
.cookie-btn-primary:hover {
  background: var(--teal-d);
  transform: translateY(-1px);
}
.cookie-btn-outline {
  background: transparent;
  color: rgba(255, 255, 255, .8);
  border: 1px solid rgba(255, 255, 255, .3);
}
.cookie-btn-outline:hover {
  background: rgba(255, 255, 255, .08);
  color: #fff;
  border-color: rgba(255, 255, 255, .5);
}

@media (max-width: 600px) {
  .cookie-inner   { padding: 14px 20px; gap: 14px; }
  .cookie-actions { width: 100%; justify-content: flex-end; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .hero-bg { transform: none !important; }
  .reveal  { opacity: 1 !important; transform: none !important; }
}
