*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

:root {
  --white:      #ffffff;
  --off-white:  #f7f9fc;
  --sky:        #d4eaf7;
  --sky-mid:    #85c1e0;
  --sky-deep:   #3a90c1;
  --ocean:      #2478a8;
  --red:        #c0392b;
  --red-lt:     #e05040;
  --red-pale:   #fce8e6;
  --brown:      #8b5e3c;
  --brown-lt:   #b07d52;
  --brown-pale: #f5ede3;
  --sand:       #e8d5b7;
  --dark:       #1a2535;
  --text:       #2c3e50;
  --text-light: #6b7f94;
  --border:     rgba(36,120,168,0.18);
  --shadow:     0 4px 32px rgba(36,120,168,0.12);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 72px; /* kompensacja fixed nav */
}

body {
  font-family: 'Raleway', sans-serif;
  background: var(--white);
  color: var(--text);
  overscroll-behavior-y: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ═══ FEATURABLE WIDGET ═══ */
.featurable-wrap {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto 40px;
  padding: 0 10px;
  min-height: 400px;
}

/* ═══ TEXTURE OVERLAY ═══ */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.018;
  pointer-events: none;
  z-index: 999;
}

/* ═══ NAV ═══ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 22px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
  background: transparent;
}
nav.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  padding: 14px 60px;
  box-shadow: 0 2px 24px rgba(36,120,168,0.1);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 3px;
  color: var(--white);
  text-transform: uppercase;
  transition: color 0.4s;
  display: flex;
  align-items: center;
  gap: 10px;
}
nav.scrolled .nav-logo { color: var(--ocean); }
.nav-anchor {
  width: 22px; height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  animation: sway 4s ease-in-out infinite;
}
@keyframes sway {
  0%, 100% { transform: rotate(-4deg); }
  50% { transform: rotate(4deg); }
}
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  flex-shrink: 1;
  min-width: 0;
}
.nav-links a {
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
  white-space: nowrap;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.nav-links a:hover::after { transform: scaleX(1); }
nav.scrolled .nav-links a { color: var(--text); }
.nav-links a:hover { color: var(--red); }
nav.scrolled .nav-links a:hover { color: var(--red); }

/* hamburger hidden on desktop */
.nav-hamburger { display: none; }

/* ═══ HERO ═══ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(160deg, #1a6fa0 0%, #2478a8 35%, #3a90c1 65%, #5aadd4 100%);
}

/* Animated sky/sea layers */
.hero-sky {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 50% at 50% -10%, rgba(255,255,255,0.35) 0%, transparent 60%),
    radial-gradient(ellipse 60% 60% at 80% 20%, rgba(212,234,247,0.2) 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 10% 50%, rgba(58,144,193,0.3) 0%, transparent 60%);
}

/* Sun glare */
.hero-sun {
  position: absolute;
  top: 12%;
  right: 15%;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(255,255,255,0.6) 0%, rgba(255,220,100,0.2) 35%, transparent 70%);
  border-radius: 50%;
  animation: sunPulse 6s ease-in-out infinite;
}
@keyframes sunPulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.08); opacity: 0.9; }
}

/* Seagulls */
.seagulls {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.wave-1, .wave-2, .wave-3 {
  /* will-change tylko na aktywnie animowanych falach */
}
.gull {
  position: absolute;
  animation: gullFly linear infinite;
  opacity: 0.6;
}
@keyframes gullFly {
  from { transform: translateX(-80px); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.5; }
  to { transform: translateX(calc(100vw + 80px)); opacity: 0; }
}

/* Waves at bottom */
.waves-wrap {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 200px;
  overflow: hidden;
}
.wave {
  position: absolute;
  bottom: 0;
  left: -50%;
  width: 200%;
}
.wave svg { width: 100%; height: 100%; }
.wave-1 { animation: waveMove 9s linear infinite; opacity: 0.9; }
.wave-2 { animation: waveMove 13s linear infinite reverse; opacity: 0.6; bottom: -10px; }
.wave-3 { animation: waveMove 7s linear infinite; opacity: 0.3; bottom: -20px; }
@keyframes waveMove {
  0% { transform: translateX(0); }
  100% { transform: translateX(25%); }
}

/* Rope decoration */
.hero-rope {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: repeating-linear-gradient(
    90deg,
    var(--brown) 0px, var(--brown) 18px,
    var(--brown-lt) 18px, var(--brown-lt) 36px
  );
  opacity: 0.7;
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  animation: heroReveal 1.6s cubic-bezier(0.16,1,0.3,1) both;
  padding: 0 20px;
}
@keyframes heroReveal {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 7px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  animation: heroReveal 1.6s 0.15s both;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: '';
  width: 50px; height: 1px;
  background: rgba(255,255,255,0.5);
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(80px, 11vw, 140px);
  font-weight: 900;
  line-height: 0.88;
  color: white;
  text-transform: uppercase;
  letter-spacing: -3px;
  text-shadow: 0 4px 40px rgba(26,111,160,0.4), 0 0 80px rgba(255,255,255,0.15);
  animation: heroReveal 1.6s 0.3s both;
}

.hero-subtitle {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  margin-top: 14px;
  animation: heroReveal 1.6s 0.45s both;
}

.hero-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 28px auto;
  animation: heroReveal 1.6s 0.6s both;
}
.hero-divider-line {
  width: 50px; height: 1px;
  background: rgba(255,255,255,0.4);
}
.hero-anchor-icon {
  width: 44px; height: 44px;
  fill: none;
  stroke: rgba(255,255,255,0.8);
  stroke-width: 2;
  animation: sway 5s 2s ease-in-out infinite;
  filter: drop-shadow(0 0 12px rgba(255,255,255,0.3));
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 42px;
  background: var(--red);
  color: white;
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  animation: heroReveal 1.6s 0.75s both;
  box-shadow: 0 8px 30px rgba(192,57,43,0.4);
}
.hero-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--brown);
  transform: translateX(-101%);
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.hero-cta:hover::before { transform: translateX(0); }
.hero-cta span { position: relative; z-index: 1; }
.hero-cta:hover svg { transform: translateX(4px); }
.hero-cta:hover { box-shadow: 0 12px 40px rgba(139,94,60,0.5); transform: translateY(-2px); }

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 10;
  animation: heroReveal 1.6s 1.2s both;
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.7), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.3); }
}
.scroll-text {
  font-family: 'Raleway', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 4px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
}

/* ═══ SECTION COMMONS ═══ */
section { position: relative; z-index: 2; }

.section-tag {
  font-family: 'Raleway', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.section-tag::before, .section-tag::after {
  content: '';
  flex-shrink: 0;
  width: 36px; height: 1px;
  background: var(--red);
  opacity: 0.4;
}
.section-tag.centered {
  justify-content: center;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  color: var(--dark);
  line-height: 1.05;
  letter-spacing: -1px;
  overflow-wrap: break-word;
  word-break: break-word;
}
.section-desc {
  font-family: 'Dancing Script', cursive;
  font-size: 20px;
  font-weight: 600;
  color: var(--text-light);
  margin-top: 12px;
  line-height: 1.6;
  overflow-wrap: break-word;
}

/* ═══ STRIPE DECORATION ═══ */
.stripe-dec {
  height: 8px;
  background: repeating-linear-gradient(
    90deg,
    var(--red) 0px, var(--red) 20px,
    var(--white) 20px, var(--white) 40px,
    var(--ocean) 40px, var(--ocean) 60px,
    var(--white) 60px, var(--white) 80px
  );
  opacity: 0.65;
}

/* ═══ GDZIE JESTEŚMY (mapa) ═══ */
/* ═══ PERFORMANCE: content-visibility dla sekcji poniżej folda ═══ */
.menu-section,
.gallery-section,
.location-section {
  padding: 90px 0;
  background: var(--white);
}
.location-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 60px;
}
.location-header {
  text-align: center;
  margin-bottom: 52px;
}
.location-header .section-tag { justify-content: center; }

.location-body {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  align-items: stretch;
}
.location-map-wrap {
  position: relative;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
  line-height: 0;
}
.location-map-wrap iframe {
  display: block;
  width: 100%;
  height: 460px;
  border: none;
}

.location-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
.location-card {
  background: var(--off-white);
  border: 1.5px solid var(--border);
  padding: 28px 24px;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.location-card:hover {
  border-color: var(--ocean);
  box-shadow: var(--shadow);
}
.location-card-icon {
  width: 28px; height: 28px;
  stroke: var(--ocean);
  display: block;
  margin-bottom: 12px;
}
.location-card-label {
  font-family: 'Raleway', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.location-card-value {
  font-size: 15px;
  color: var(--text);
  line-height: 1.8;
}
.location-nav-btn {
  display: inline-block;
  margin-top: 14px;
  padding: 9px 20px;
  background: var(--ocean);
  color: white;
  font-family: 'Raleway', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.25s;
}
.location-nav-btn:hover { background: var(--red); }

/* ═══ MENU SECTION ═══ */
.menu-section {
  padding: 110px 0;
  background: var(--off-white);
  position: relative;
}
.menu-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--ocean), var(--brown));
}
.menu-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 60px;
}
.menu-header {
  text-align: center;
  margin-bottom: 56px;
}
.menu-header .section-tag { justify-content: center; }

/* ── TABS ── Prostokąty, zawijane, z odstępami */
.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 52px;
  flex-wrap: wrap; /* naturalne łamanie do nowej linii */
}
.menu-tab {
  padding: 12px 24px;
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-light);
  border: 1.5px solid var(--border);
  background: white;
  cursor: pointer;
  transition: all 0.25s ease;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  white-space: nowrap;
}
.menu-tab.active {
  background: var(--ocean);
  color: white;
  border-color: var(--ocean);
}
.menu-tab:hover:not(.active) {
  border-color: var(--ocean);
  color: var(--ocean);
}

.menu-panel { display: none; }
.menu-panel.active { display: block; }

.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 70px;
}
.menu-category { margin-bottom: 40px; }
.menu-cat-title {
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--ocean);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--sky);
}
.menu-cat-title::after {
  content: '';
  flex: 1;
  height: 2px;
  background: transparent;
}

.menu-item {
  display: flex;
  align-items: flex-start;
  padding: 11px 0;
  border-bottom: 1px solid rgba(212,234,247,0.6);
  transition: all 0.25s ease;
  gap: 12px;
}
@media (hover: hover) {
  .menu-item:hover {
    border-bottom-color: var(--sky-mid);
    padding-left: 6px;
  }
  .menu-item:hover .menu-item-name { color: var(--ocean); }
}
.menu-item-info { flex: 1; min-width: 0; }
.menu-item-name {
  font-size: 17px;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.2;
}
.menu-item:hover .menu-item-name { color: var(--ocean); }
.menu-item-desc {
  font-size: 13px;
  font-style: italic;
  color: var(--text-light);
  margin-top: 2px;
  line-height: 1.4;
}
.menu-item-price {
  font-family: 'Raleway', sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: var(--red);
  white-space: nowrap;
  flex-shrink: 0;
  text-align: right;
  max-width: 50%;
}
@media (max-width: 768px) {
  .menu-item-price {
    white-space: normal;
    word-break: break-word;
    max-width: 45%;
  }
}
.menu-note {
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.menu-note-blue {
  color: var(--ocean);
}
.hot-badge {
  font-size: 12px;
}

/* ═══ FOOTER ═══ */
footer {
  padding: 48px 60px;
  border-top: 2px solid var(--sky);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  background: var(--dark);
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  letter-spacing: 5px;
  color: rgba(255,255,255,0.6);
  font-weight: 700;
}
.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  font-style: italic;
}
.footer-anchor {
  width: 26px; height: 26px;
  fill: none;
  stroke: rgba(255,255,255,0.3);
  stroke-width: 2;
  animation: sway 5s ease-in-out infinite;
}

/* ═══ REVEALS ═══ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: all 0.85s cubic-bezier(0.16,1,0.3,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ═══ OPINIE ═══ */
.reviews-section {
  padding: 110px 0 90px;
  background: linear-gradient(180deg, var(--off-white) 0%, var(--sky) 100%);
  overflow: hidden;
}
.reviews-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 60px;
}
.reviews-header {
  text-align: center;
  margin-bottom: 56px;
}
.reviews-header .section-tag { justify-content: center; }

/* CTA */
.reviews-cta {
  text-align: center;
  margin-top: 40px;
}
.rev-google-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border: 2px solid var(--border);
  background: white;
  color: var(--text);
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 12px rgba(36,120,168,0.08);
  touch-action: manipulation;
}
@media (hover: hover) {
  .rev-google-btn:hover {
    border-color: var(--ocean);
    box-shadow: 0 6px 24px rgba(36,120,168,0.15);
    transform: translateY(-2px);
  }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — TABLET (max 1024px)
═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  nav { padding: 18px 32px; }
  nav.scrolled { padding: 12px 32px; }
  .location-inner { padding: 0 32px; }
  .location-body { grid-template-columns: 1fr; }
  .location-map-wrap iframe { height: 340px; }
  .location-details { flex-direction: row; flex-wrap: wrap; }
  .location-card { flex: 1; min-width: 200px; }
  .menu-inner { padding: 0 32px; }
  .reviews-inner { padding: 0 32px; }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — MOBILE (max 768px)
═══════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* ── NAV — hamburger ── */
  nav {
    padding: 14px 18px;
    background: transparent;
    gap: 8px;
  }
  nav.scrolled {
    padding: 10px 18px;
    background: rgba(255,255,255,0.97);
  }

  .nav-logo {
    font-size: 16px;
    letter-spacing: 2px;
    flex: 1;
    min-width: 0;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(160deg, #0d1e33 0%, #1a3550 50%, #0f2a42 100%);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    z-index: 190;
    list-style: none;
    padding: 0;
    opacity: 0;
    transition: opacity 0.25s ease;
  }
  .nav-links.open {
    display: flex;
    opacity: 1;
  }
  .nav-links li {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .nav-links li:first-child { border-top: 1px solid rgba(255,255,255,0.06); }
  .nav-links a {
    display: block;
    padding: 22px 40px;
    font-size: 12px;
    letter-spacing: 6px;
    color: rgba(255,255,255,0.75) !important;
    transition: all 0.2s;
  }
  .nav-links a:hover,
  .nav-links a:active {
    color: white !important;
    background: rgba(255,255,255,0.04);
    padding-left: 54px;
  }
  .nav-links a::after { display: none; }

  .nav-links.open::before {
    content: '';
    position: absolute;
    top: 14px; right: 18px;
    width: 24px; height: 24px;
  }

  .nav-hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 210;
    width: 44px;
    height: 44px;
    touch-action: manipulation;
  }
  .nav-hamburger span {
    display: block;
    width: 22px; height: 2px;
    background: white; 
    transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
    border-radius: 2px;
    transform-origin: center;
  }
  nav.scrolled .nav-hamburger span { background: var(--dark); }
  .nav-hamburger.open span { background: white !important; }
  .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* ── LOCATION BANNER ── */
  .loc-track { animation-duration: 18s; }
  .location-banner { height: 38px; }

  /* ── HERO ── */
  .hero { min-height: 100svh; }
  .hero-content { padding: 0 22px; margin-top: -20px; }
  .hero-title {
    font-size: clamp(58px, 16vw, 82px);
    letter-spacing: -2px;
    line-height: 0.85;
  }
  .hero-subtitle { font-size: 17px; margin-top: 16px; }
  .hero-eyebrow { font-size: 9px; letter-spacing: 3px; gap: 12px; }
  .hero-eyebrow::before, .hero-eyebrow::after { width: 22px; }
  .hero-divider { margin: 22px auto; gap: 12px; }
  .hero-divider-line { width: 36px; }
  .hero-anchor-icon { width: 36px; height: 36px; }
  .hero-cta {
    padding: 18px 34px;
    font-size: 10px;
    letter-spacing: 3px;
    margin-top: 4px;
    min-height: 52px;
  }
  .hero-sun { width: 110px; height: 110px; top: 7%; right: 3%; }
  .scroll-indicator { bottom: 24px; }
  .scroll-line { height: 36px; }

  /* ── GDZIE JESTEŚMY ── */
  .location-section { padding: 56px 0; }
  .location-inner { padding: 0 16px; }
  .location-header { margin-bottom: 32px; }
  .location-body { grid-template-columns: 1fr; gap: 16px; }
  .location-map-wrap iframe { height: 280px; }
  .location-details { flex-direction: column; gap: 12px; }
  .location-card { padding: 20px 18px; display: flex; align-items: flex-start; gap: 16px; }
  .location-card-icon { flex-shrink: 0; margin-bottom: 0; margin-top: 2px; }
  .location-card-value { font-size: 14px; }

  /* ── MENU ── */
  .menu-section { padding: 64px 0; }
  .menu-inner { padding: 0 14px; }
  .menu-header { margin-bottom: 28px; }
  .menu-header .section-title { font-size: clamp(28px, 8vw, 40px); }

  /* ── TABS NA MOBILE - Zawijane prostokąty tak jak na screenie ── */
  .menu-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px; /* Ładne odstępy w pionie i poziomie */
    margin-bottom: 32px;
    padding: 0;
    border: none;
  }
  .menu-tab {
    flex-shrink: 0;
    padding: 10px 14px;
    font-size: 10px;
    letter-spacing: 1px;
    border: 1.5px solid var(--border);
    border-radius: 0; /* Zwykły prostokąt */
    white-space: nowrap;
    touch-action: manipulation;
    min-height: auto;
  }
  .menu-tab.active {
    background: var(--ocean);
    color: white;
    border-color: var(--ocean);
  }

  .menu-grid { grid-template-columns: 1fr; gap: 0; }
  .menu-cat-title {
    font-size: 10px;
    padding-bottom: 12px;
    margin-bottom: 4px;
  }
  .menu-item {
    padding: 10px 0;
    gap: 10px;
  }
  .menu-item-name { font-size: 15px; line-height: 1.3; }
  .menu-item-desc { font-size: 12px; }
  .menu-item-price { font-size: 14px; font-weight: 800; }
  .menu-category { margin-bottom: 28px; }

  /* ── OPINIE ── */
  .reviews-section { padding: 64px 0 52px; }
  .reviews-inner { padding: 0 14px; }
  .reviews-header { margin-bottom: 28px; }
  .featurable-wrap { padding: 0; margin-bottom: 24px; }

  /* ── FOOTER ── */
  footer {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding: 32px 20px;
  }
  .footer-logo { font-size: 15px; letter-spacing: 4px; }
  .footer-copy { font-size: 11px; }

  /* ── OGÓLNE ── */
  .section-title { font-size: clamp(28px, 7vw, 40px); }
  .section-desc { font-size: 16px; }
  .stripe-dec { height: 5px; }
}


/* ═══ BOARD PANEL (Władysławowo) ═══ */
.location-banner {
  background: var(--ocean);
  color: white;
  padding: 0;
  overflow: hidden;
  position: relative;
  z-index: 10;
  height: 42px;
  display: flex;
  align-items: center;
}
.loc-track {
  display: flex;
  align-items: center;
  gap: 20px;
  white-space: nowrap;
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  animation: marquee 28s linear infinite;
  will-change: transform;
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.loc-dot {
  width: 6px; height: 6px;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
  flex-shrink: 0;
}


/* ═══ SMALL MOBILE (max 400px) — dodatkowy breakpoint ═══ */
@media (max-width: 400px) {
  .hero-title { font-size: clamp(48px, 15vw, 62px); letter-spacing: -1px; }
  .hero-cta { padding: 18px 28px; font-size: 9px; letter-spacing: 2px; }
  .hero-eyebrow { font-size: 8px; letter-spacing: 2px; }
  .location-map-wrap iframe { height: 240px; }
  .menu-tab { padding: 8px 12px; font-size: 9px; letter-spacing: 1px; }
  .menu-item-price { font-size: 13px; }
}

/* ═══ GALERIA ═══ */
.gallery-section {
  padding: 110px 0;
  background: var(--off-white);
}
.gallery-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 60px;
}
.gallery-header {
  text-align: center;
  margin-bottom: 60px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 16px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  background: var(--sky);
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s cubic-bezier(0.16,1,0.3,1);
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(4) { grid-column: span 2; }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,37,53,0.6) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.4s;
  display: flex;
  align-items: flex-end;
  padding: 24px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay-text {
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: white;
}
.gallery-note {
  text-align: center;
  margin-top: 40px;
  font-family: 'Dancing Script', cursive;
  font-size: 18px;
  color: var(--text-light);
  line-height: 1.8;
}
.gallery-note strong {
  color: var(--ocean);
  font-style: normal;
}
@media (max-width: 768px) {
  .gallery-inner { padding: 0 20px; }
  .gallery-section { padding: 64px 0; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 160px;
    gap: 10px;
  }
  .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .gallery-item:nth-child(4) { grid-column: span 1; }
  .gallery-item:nth-child(5) { grid-column: span 1; }
}


/* ═══ PARALLAX HERO LAYERS ═══ */
.hero-sky, .hero-sun {
  will-change: transform;
}

/* ═══ RIPPLE NA HERO-CTA ═══ */
.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  transform: scale(0);
  animation: rippleAnim 0.7s ease-out forwards;
  pointer-events: none;
}
@keyframes rippleAnim {
  to { transform: scale(4); opacity: 0; }
}

/* ═══ REVEAL — dodatkowe warianty ═══ */
.reveal-left {
  opacity: 0;
  transform: translateX(-36px);
  transition: all 0.85s cubic-bezier(0.16,1,0.3,1);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(36px);
  transition: all 0.85s cubic-bezier(0.16,1,0.3,1);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-scale {
  opacity: 0;
  transform: scale(0.88);
  transition: all 0.75s cubic-bezier(0.34,1.56,0.64,1);
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* ═══ MENU ITEM STAGGER ═══ */
.menu-item {
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.16,1,0.3,1), box-shadow 0.3s ease !important;
}
.menu-item.stagger-in {
  opacity: 0;
  transform: translateY(20px);
}
.menu-item.stagger-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══ NAV LOGO BOUNCE ═══ */
@keyframes logoBounce {
  0%   { transform: scale(1); }
  30%  { transform: scale(1.08); }
  55%  { transform: scale(0.96); }
  75%  { transform: scale(1.03); }
  100% { transform: scale(1); }
}
.nav-logo.bounce {
  animation: logoBounce 0.55s ease both;
}

/* ═══ TICKER WAVE MORPH ═══ */
@keyframes waveMorphA {
  0%,100% { d: path("M0,60 C150,100 350,20 600,60 C850,100 1050,20 1200,60 L1200,120 L0,120 Z"); }
  50%      { d: path("M0,50 C180,90 320,10 600,55 C880,100 1020,15 1200,50 L1200,120 L0,120 Z"); }
}
.wave-1 path { animation: waveMorphA 9s ease-in-out infinite; }

/* ═══ SECTION TAG SHIMMER ═══ */
.section-tag {
  position: relative;
}
.section-tag::before, .section-tag::after {
  transition: width 0.5s cubic-bezier(0.16,1,0.3,1);
}
.section-tag.visible::before, .section-tag.visible::after {
  width: 60px;
}

/* ═══ GALLERY ITEM — tilt na hover ═══ */
.gallery-item {
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s ease !important;
}
.gallery-item:hover {
  transform: scale(1.02) !important;
}

/* ═══ LANG OVERLAY — cinematic ═══ */
#langOverlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: linear-gradient(160deg, #060e1c 0%, #0a1e3a 45%, #0d2545 70%, #060e1c 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
#langCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
#langContent {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px 32px;
  max-width: 520px;
  width: 92%;
  animation: langContentIn 1.6s cubic-bezier(0.16,1,0.3,1) both 0.45s;
}
@keyframes langContentIn {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

#langAnchorWrap {
  margin: 0 auto 20px;
  width: 54px;
  animation: langAnchorIn 1.8s cubic-bezier(0.34,1.56,0.64,1) both 0.15s;
}
@keyframes langAnchorIn {
  from { opacity: 0; transform: scale(0.3) rotate(-20deg); }
  to   { opacity: 1; transform: scale(1) rotate(0deg); }
}
#langAnchorSvg {
  width: 54px; height: 54px;
  fill: none;
  stroke: rgba(255,255,255,0.7);
  stroke-width: 2;
  animation: sway 4s ease-in-out infinite;
  filter: drop-shadow(0 0 14px rgba(100,180,255,0.4));
}

#langTitle {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 6vw, 3.2rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 8px;
  text-shadow: 0 0 40px rgba(100,200,255,0.25);
  animation: langContentIn 1.6s cubic-bezier(0.16,1,0.3,1) both 0.7s;
}

#langSubtitle {
  font-family: 'Raleway', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 28px;
  animation: langContentIn 1.6s cubic-bezier(0.16,1,0.3,1) both 0.85s;
}

#langDivider {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  margin: 0 auto 28px;
  animation: langDividerGrow 1.2s ease both 1.05s;
}
@keyframes langDividerGrow {
  from { width: 0; opacity: 0; }
  to   { width: 60px; opacity: 1; }
}

#langGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  animation: langContentIn 1.6s cubic-bezier(0.16,1,0.3,1) both 1s;
}

.lang-pick-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 14px 18px;
  cursor: pointer;
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: left;
  transition: background 0.25s, border-color 0.25s, transform 0.3s cubic-bezier(0.34,1.56,0.64,1), color 0.25s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.lang-pick-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  border-radius: inherit;
}
.lang-pick-btn:hover::before { opacity: 1; }
.lang-pick-btn:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.35);
  color: white;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 32px rgba(0,0,0,0.3), 0 0 0 1px rgba(255,255,255,0.15);
}
.lang-pick-btn:active { transform: translateY(0) scale(0.98); }

.lpb-flag-wrap {
  flex-shrink: 0;
  width: 40px;
  height: 28px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s;
}
.lpb-flag-wrap svg { display: block; width: 100%; height: 100%; }
.lang-pick-btn:hover .lpb-flag-wrap {
  transform: scale(1.1) rotate(-2deg);
  box-shadow: 0 4px 16px rgba(0,0,0,0.5);
}

.lpb-name { flex: 1; }
.lpb-enter {
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.25s, transform 0.25s;
  font-size: 16px;
  color: rgba(255,255,255,0.5);
}
.lang-pick-btn:hover .lpb-enter {
  opacity: 1;
  transform: translateX(0);
}

/* Exit animation */
#langOverlay.lang-exit {
  animation: langOverlayExit 0.95s cubic-bezier(0.7,0,0.84,0) forwards;
}
@keyframes langOverlayExit {
  0%   { opacity: 1; transform: scale(1); filter: blur(0px); }
  40%  { opacity: 1; transform: scale(1.04); filter: blur(0px); }
  100% { opacity: 0; transform: scale(1.12); filter: blur(8px); pointer-events: none; }
}

/* ═══ SEKCJA PRACY ═══ */
.jobs-section {
  background: var(--dark);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
  content-visibility: auto;
  contain-intrinsic-size: 0 400px;
}
.jobs-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: repeating-linear-gradient(
    90deg,
    var(--ocean) 0px, var(--ocean) 24px,
    rgba(255,255,255,0.08) 24px, rgba(255,255,255,0.08) 48px
  );
}
.jobs-section::after {
  content: '';
  position: absolute;
  right: -60px; top: 50%;
  transform: translateY(-50%);
  width: 320px; height: 320px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='rgba(255,255,255,0.04)' stroke-width='1.5'%3E%3Ccircle cx='32' cy='12' r='5'/%3E%3Cline x1='32' y1='17' x2='32' y2='52'/%3E%3Cline x1='18' y1='28' x2='46' y2='28'/%3E%3Cpath d='M18,52 Q32,42 46,52' stroke-linecap='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  opacity: 1;
}
.jobs-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.jobs-left .section-tag { color: var(--sky-mid); }
.jobs-left .section-tag::before,
.jobs-left .section-tag::after { background: var(--sky-mid); }
.jobs-left .section-title {
  color: white;
  margin-bottom: 16px;
}
.jobs-desc {
  font-family: 'Raleway', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  margin-bottom: 24px;
}
.jobs-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.jobs-tag-pill {
  font-family: 'Raleway', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sky-mid);
  border: 1px solid rgba(133,193,224,0.3);
  border-radius: 20px;
  padding: 6px 14px;
  background: rgba(133,193,224,0.06);
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}
.jobs-tag-pill:hover {
  background: rgba(133,193,224,0.15);
  border-color: rgba(133,193,224,0.6);
  color: white;
}
.jobs-right {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 36px 40px;
}
.jobs-contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.jobs-contact-item:last-of-type { border-bottom: none; }
.jobs-contact-icon {
  width: 44px; height: 44px;
  background: rgba(133,193,224,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.25s;
}
.jobs-contact-item:hover .jobs-contact-icon {
  background: rgba(133,193,224,0.2);
}
.jobs-contact-icon svg {
  width: 20px; height: 20px;
  stroke: var(--sky-mid);
}
.jobs-contact-label {
  font-family: 'Raleway', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 4px;
}
.jobs-contact-value {
  font-family: 'Raleway', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: white;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}
.jobs-contact-value:hover { color: var(--sky-mid); }
.jobs-note {
  font-family: 'Dancing Script', cursive;
  font-size: 16px;
  color: rgba(255,255,255,0.3);
  line-height: 1.6;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.07);
}

@media (max-width: 900px) {
  .jobs-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 32px;
  }
  .jobs-right { padding: 28px 28px; }
  .jobs-section { padding: 64px 0; }
}
@media (max-width: 600px) {
  .jobs-inner { padding: 0 20px; }
  .jobs-right { padding: 24px 20px; }
  .jobs-contact-value { font-size: 15px; }
}

/* ═══ PREFERS-REDUCED-MOTION ═══ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
/* ═══ LANGUAGE SWITCHER ═══ */
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0;
}
.flag-icon {
  width: 18px;
  height: 13px;
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
  border-radius: 1px;
  box-shadow: 0 0 0 0.5px rgba(0,0,0,0.15);
  margin-right: 5px;
}
.lang-btn {
  background: none;
  border: 1px solid rgba(255,255,255,0.35);
  color: rgba(255,255,255,0.75);
  font-family: 'Raleway', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 5px 9px;
  cursor: pointer;
  transition: all 0.25s ease;
  text-transform: uppercase;
  line-height: 1;
  touch-action: manipulation;
  white-space: nowrap;
}
.lang-btn:first-child { border-radius: 3px 0 0 3px; }
.lang-btn:last-child  { border-radius: 0 3px 3px 0; }
.lang-btn + .lang-btn { border-left: none; }
.lang-btn.active {
  background: rgba(255,255,255,0.2);
  color: white;
  border-color: rgba(255,255,255,0.6);
}
.lang-btn:hover:not(.active) {
  background: rgba(255,255,255,0.1);
  color: white;
}
nav.scrolled .lang-btn {
  border-color: var(--border);
  color: var(--text-light);
}
nav.scrolled .lang-btn.active {
  background: var(--ocean);
  color: white;
  border-color: var(--ocean);
}
nav.scrolled .lang-btn:hover:not(.active) {
  border-color: var(--ocean);
  color: var(--ocean);
}
@media (max-width: 768px) {
  .lang-switcher {
    margin-left: 0;
  }
  .lang-btn {
    padding: 6px 7px;
    font-size: 9px;
  }
  .nav-hamburger {
    display: flex;
  }
}

/* ═══ LIGHTBOX GALERII ═══ */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(26,37,53,0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s cubic-bezier(0.16,1,0.3,1), visibility 0.4s;
}
.lightbox-overlay.is-open {
  opacity: 1;
  visibility: visible;
}
.lightbox-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 86vw;
}
.lightbox-frame {
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-img {
  max-width: 86vw;
  max-height: 78vh;
  object-fit: contain;
  display: block;
  border-radius: 10px;
  background: var(--white);
  padding: 6px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.45), var(--shadow);
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.4s cubic-bezier(0.16,1,0.3,1), transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.lightbox-img.is-visible {
  opacity: 1;
  transform: scale(1);
}
.lightbox-caption {
  text-align: center;
  margin-top: 18px;
  font-family: 'Dancing Script', cursive;
  font-size: 22px;
  font-weight: 600;
  color: var(--sky-mid);
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: var(--white);
  color: var(--ocean);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: background 0.25s, color 0.25s, transform 0.25s;
}
.lightbox-close svg, .lightbox-prev svg, .lightbox-next svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.4;
  stroke-linecap: round;
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--ocean);
  color: white;
  transform: scale(1.08);
}
.lightbox-close { top: 28px; right: 28px; }
.lightbox-prev  { left: 28px; top: 50%; transform: translateY(-50%); }
.lightbox-next  { right: 28px; top: 50%; transform: translateY(-50%); }

.lightbox-counter {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'Raleway', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}
.lightbox-counter::before, .lightbox-counter::after {
  content: '';
  width: 28px;
  height: 1px;
  background: rgba(255,255,255,0.4);
}

@media (max-width: 768px) {
  .lightbox-prev  { left: 10px; width: 38px; height: 38px; }
  .lightbox-next  { right: 10px; width: 38px; height: 38px; }
  .lightbox-close { top: 14px; right: 14px; width: 38px; height: 38px; }
  .lightbox-caption { font-size: 18px; }
  .lightbox-counter { bottom: 14px; gap: 10px; }
  .lightbox-counter::before, .lightbox-counter::after { width: 18px; }
}

/* ═══════════════════════════════════════════════════════════
   ANIMACJE SCROLL — USZYPRA CINEMATIC PACK
   Autor: Claude Sonnet 4.6 ∙ 2026
═══════════════════════════════════════════════════════════ */

/* ─── 1. TIDE LINE — usunięty na prośbę użytkownika ─── */

/* ─── 2. SECTION SPLIT-REVEAL — usunięty na prośbę użytkownika ─── */

/* ─── 3. DRIFT PARALLAX — głębokość tła przy scrollu ─── */
.drift-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.drift-layer {
  position: absolute;
  inset: -20%;
  will-change: transform;
}
/* Morski wzór na sekcji menu */
.menu-section .drift-bg {
  opacity: 0.025;
}
.menu-section .drift-bg .drift-layer {
  background-image: url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%232478a8' stroke-width='1'%3E%3Ccircle cx='60' cy='12' r='8'/%3E%3Cline x1='60' y1='20' x2='60' y2='100'/%3E%3Cline x1='36' y1='54' x2='84' y2='54'/%3E%3Cpath d='M36,100 Q60,82 84,100' stroke-linecap='round'/%3E%3C/svg%3E");
  background-size: 120px 120px;
}

/* ─── 4. MAGNETIC CURSOR — usunięty (zobacz main.js) ─── */

/* ─── 5. ANCHOR DROP — kotwica na hero opada przy scrollu ─── */
.hero-anchor-icon {
  transform-origin: center top;
  will-change: transform;
}

/* ─── 6. SECTION COUNTER — liczniki głębokości ─── */
.depth-counter-wrap {
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  color: var(--ocean);
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 8px;
}
.depth-counter-num {
  font-size: clamp(48px, 6vw, 72px);
  display: inline-block;
  min-width: 2ch;
  text-align: right;
  position: relative;
}
.depth-counter-unit {
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text-light);
  align-self: flex-end;
  padding-bottom: 8px;
}
.depth-echo {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: var(--sky-mid);
  opacity: 0;
  animation: depthEcho 0.6s cubic-bezier(0.16,1,0.3,1) forwards;
}
@keyframes depthEcho {
  0%   { opacity: 0.6; transform: scale(1); }
  100% { opacity: 0;   transform: scale(1.8) translateY(-10px); }
}

/* ─── 7. ROPE SCROLL INDICATOR — usunięty na prośbę użytkownika ─── */

/* ─── 8. SECTION CHAPTER MARKER — usunięty na prośbę użytkownika ─── */

/* ─── 9. PARTICLE DRIFT przy hover na sekcji menu ─── */
.menu-section {
  position: relative;
  overflow: hidden;
}

/* ─── 10. SMOOTH SECTION TRANSITION border ─── */
.section-wave-top {
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
  height: 80px;
  overflow: hidden;
  pointer-events: none;
}
.section-wave-top svg {
  width: 100%;
  height: 100%;
}

/* ─── GALERIA TILT 3D ─── */
.gallery-item {
  perspective: 800px;
  transform-style: preserve-3d;
}
.gallery-item-inner {
  position: absolute;
  inset: 0;
  transition: transform 0.15s ease;
  transform-style: preserve-3d;
}

/* ─── MENU TAB aktywny: ocean wave underline ─── */
.menu-tab {
  position: relative;
  overflow: hidden;
}
.menu-tab::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 100%;
  height: 2px;
  background: var(--ocean);
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1);
}
.menu-tab.active::after { transform: translateX(-50%) scaleX(1); }

/* ─── JOBS SECTION — pulsujące kółka usunięte na prośbę użytkownika ─── */

/* ─── FOOTER WAVE ─── */
.footer-wave {
  height: 60px;
  overflow: hidden;
  background: var(--dark);
  margin-top: -1px;
}
.footer-wave svg {
  display: block;
  width: 100%;
  height: 100%;
}