/* ==========================================================================
   Bar IKA — Niechorze · style.css
   ========================================================================== */

/* --- Fonty (self-hosted, subsety latin + latin-ext) --------------------- */

/* Bricolage Grotesque — latin-ext */
@font-face {
  font-family: 'Bricolage Grotesque';
  font-style: normal;
  font-weight: 500 800;
  font-stretch: 100%;
  font-display: swap;
  src: url(../fonts/bricolage-grotesque-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* Bricolage Grotesque — latin */
@font-face {
  font-family: 'Bricolage Grotesque';
  font-style: normal;
  font-weight: 500 800;
  font-stretch: 100%;
  font-display: swap;
  src: url(../fonts/bricolage-grotesque-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* Caveat — latin-ext */
@font-face {
  font-family: 'Caveat';
  font-style: normal;
  font-weight: 600 700;
  font-display: swap;
  src: url(../fonts/caveat-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* Caveat — latin */
@font-face {
  font-family: 'Caveat';
  font-style: normal;
  font-weight: 600 700;
  font-display: swap;
  src: url(../fonts/caveat-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* Instrument Sans — latin-ext */
@font-face {
  font-family: 'Instrument Sans';
  font-style: normal;
  font-weight: 400 600;
  font-stretch: 100%;
  font-display: swap;
  src: url(../fonts/instrument-sans-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* Instrument Sans — latin */
@font-face {
  font-family: 'Instrument Sans';
  font-style: normal;
  font-weight: 400 600;
  font-stretch: 100%;
  font-display: swap;
  src: url(../fonts/instrument-sans-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* --- Design tokens ------------------------------------------------------ */

:root {
  --teal: #1A7E97;
  --navy: #0E3F4C;
  --amber: #EFA43C;
  --cream: #FBF4E7;
  --muted: #5B6B6E;          /* min. 4,5:1 na bieli i kremie (WCAG AA) */
  --muted-on-dark: rgba(255, 255, 255, 0.78);
  --font-display: 'Bricolage Grotesque', 'Segoe UI', sans-serif;
  --font-body: 'Instrument Sans', 'Segoe UI', sans-serif;
  --font-script: 'Caveat', cursive;
  --container: 1200px;
  --pad-x: clamp(18px, 4vw, 40px);
}

/* --- Reset / baza ------------------------------------------------------- */

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--teal); color: #fff; }

img { max-width: 100%; height: auto; }

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 2px;
  border-radius: 6px;
}

.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--pad-x);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--navy);
  color: #fff;
  padding: 12px 20px;
  border-radius: 0 0 12px 0;
  text-decoration: none;
  font-weight: 600;
}
.skip-link:focus { left: 0; }

/* --- Animacje ------------------------------------------------------------ */

@keyframes floatUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes swayWave {
  0%, 100% { transform: translateX(0); }
  50%      { transform: translateX(-28px); }
}

.float-up   { animation: floatUp 0.7s ease both; }
.float-up-2 { animation: floatUp 0.7s ease 0.08s both; }
.float-up-3 { animation: floatUp 0.7s ease 0.16s both; }
.float-up-4 { animation: floatUp 0.7s ease 0.24s both; }

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

/* --- Przyciski ----------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 600;
  border: 0;
  cursor: pointer;
  font-family: inherit;
}
.btn--phone {
  background: var(--teal);
  color: #fff;
  font-size: 15px;
  padding: 10px 18px;
  box-shadow: 0 4px 14px rgba(26, 126, 151, 0.28);
}
.btn--amber {
  background: var(--amber);
  color: #5A3208;
  font-weight: 700;
  font-size: 16px;
  padding: 15px 28px;
  box-shadow: 0 8px 24px rgba(239, 164, 60, 0.4);
}
.btn--ghost {
  background: rgba(255, 255, 255, 0.14);
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  color: #fff;
  font-size: 16px;
  padding: 15px 26px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.btn--teal {
  background: var(--teal);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 24px;
  box-shadow: 0 8px 22px rgba(26, 126, 151, 0.3);
}
.btn--outline {
  background: #fff;
  border: 1.5px solid rgba(14, 63, 76, 0.15);
  color: var(--navy);
  font-size: 15px;
  padding: 14px 24px;
}

/* --- Nagłówek / nawigacja ------------------------------------------------ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 244, 231, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(14, 63, 76, 0.08);
}
.nav {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px var(--pad-x);
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.brand {
  display: flex;
  align-items: baseline;
  gap: 9px;
  text-decoration: none;
  color: var(--navy);
  margin-right: auto;
}
.brand__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 30px;
  letter-spacing: -0.02em;
  line-height: 1;
}
.brand__sub {
  font-family: var(--font-script);
  font-size: 19px;
  color: var(--teal);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.4vw, 30px);
  flex-wrap: wrap;
}
.nav__link {
  text-decoration: none;
  color: var(--navy);
  font-weight: 500;
  font-size: 15px;
}

/* --- Hero ----------------------------------------------------------------- */

.hero {
  position: relative;
  min-height: clamp(560px, 86vh, 820px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg,
    rgba(12, 60, 74, 0.30) 0%,
    rgba(12, 60, 74, 0.12) 38%,
    rgba(12, 60, 74, 0.62) 78%,
    rgba(12, 60, 74, 0.85) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
  padding: 0 var(--pad-x) clamp(40px, 7vh, 80px);
  color: #fff;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 7px 15px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 7vw, 86px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  margin: 18px 0 0;
  max-width: 16ch;
  text-shadow: 0 2px 30px rgba(8, 40, 50, 0.35);
}
.hero__lead {
  font-size: clamp(16px, 2vw, 21px);
  line-height: 1.5;
  max-width: 48ch;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.92);
}
.hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

/* --- Atuty ----------------------------------------------------------------- */

.features {
  padding: clamp(54px, 8vw, 92px) 0 clamp(20px, 4vw, 40px);
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: clamp(20px, 3vw, 34px);
}
.feature {
  text-align: center;
  padding: 8px;
}
.feature__emoji { font-size: 34px; line-height: 1; }
.feature__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  margin: 14px 0 6px;
}
.feature__text {
  font-size: 15px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
}

/* --- Sekcje: nagłówki ------------------------------------------------------ */

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto clamp(34px, 5vw, 56px);
}
.kicker {
  font-family: var(--font-script);
  font-size: 26px;
  color: var(--teal);
}
.kicker--amber { color: var(--amber); }
.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(32px, 5vw, 56px);
  letter-spacing: -0.02em;
  margin: 4px 0 12px;
}
.section-sub {
  font-size: 16px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
}

/* --- Menu ------------------------------------------------------------------ */

.menu {
  position: relative;
  padding: clamp(40px, 6vw, 72px) 0 clamp(54px, 8vw, 96px);
}
.menu__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(18px, 2.6vw, 28px);
  align-items: start;
}
.card {
  background: #fff;
  border-radius: 22px;
  padding: clamp(22px, 2.6vw, 30px);
  box-shadow: 0 14px 40px rgba(14, 63, 76, 0.07);
  border: 1px solid rgba(14, 63, 76, 0.05);
}
.card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  margin: 0 0 4px;
  display: flex;
  align-items: center;
  gap: 9px;
}
.card__note {
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 16px;
}
.price-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.price-row__name { font-weight: 600; font-size: 15.5px; }
.price-row__dots {
  flex: 1;
  border-bottom: 1px dotted #C9D3D4;
  transform: translateY(-3px);
}
.price-row__value {
  font-weight: 700;
  color: var(--teal);
  white-space: nowrap;
}

.card--dark {
  background: linear-gradient(165deg, #0E3F4C 0%, #135A6B 100%);
  color: #fff;
  border: 0;
  box-shadow: 0 14px 40px rgba(14, 63, 76, 0.18);
}
.card--dark .card__title { color: #fff; }
.card--dark .card__note { color: var(--muted-on-dark); }
.card--dark .price-row__dots { border-bottom-color: rgba(255, 255, 255, 0.28); }
.card--dark .price-row__value { color: var(--amber); }

/* --- Galeria ---------------------------------------------------------------- */

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: clamp(12px, 1.6vw, 18px);
  margin-top: clamp(22px, 3vw, 34px);
}
.gallery__img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 18px;
  display: block;
}

/* --- Opinie ----------------------------------------------------------------- */

.reviews {
  background: var(--navy);
  color: #fff;
  padding: clamp(56px, 8vw, 100px) 0;
  position: relative;
  overflow: hidden;
}
.reviews__wave {
  position: absolute;
  bottom: -40px;
  left: -40px;
  font-size: 240px;
  opacity: 0.05;
  line-height: 1;
  animation: swayWave 7s ease-in-out infinite;
}
.reviews__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding-inline: var(--pad-x);
  position: relative;
  z-index: 1;
}
.reviews__head {
  text-align: center;
  margin-bottom: clamp(34px, 5vw, 52px);
}
.rating-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 15px;
}
.rating-pill__stars { color: var(--amber); font-size: 17px; }
.rating-pill__value { font-size: 17px; }
.rating-pill__count { color: var(--muted-on-dark); }
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(16px, 2.4vw, 26px);
}
.review {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 26px;
  margin: 0;
}
.review__stars {
  color: var(--amber);
  font-size: 15px;
  margin-bottom: 12px;
}
.review blockquote { margin: 0; }
.review blockquote p {
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.94);
}
.review__author { font-weight: 600; font-size: 14px; }
.review__meta { font-size: 13px; color: var(--muted-on-dark); }

/* --- Kontakt ------------------------------------------------------------------ */

.contact {
  padding: clamp(56px, 8vw, 100px) 0;
}
.contact__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(24px, 4vw, 52px);
  align-items: center;
}
.contact address {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.info-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.info-row__emoji { font-size: 22px; line-height: 1.2; }
.info-row__title { font-weight: 700; font-size: 16px; }
.info-row__title a { color: var(--navy); text-decoration: none; }
.info-row__sub { font-size: 15px; color: var(--muted); }
.contact__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

/* --- Mapa (ładowana za zgodą) --------------------------------------------------- */

.map-card {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(14, 63, 76, 0.12);
  border: 1px solid rgba(14, 63, 76, 0.06);
  min-height: 340px;
}
.map-placeholder {
  min-height: 340px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  background: #EFE6D4;
  padding: 28px;
}
.map-placeholder__emoji { font-size: 40px; line-height: 1; }
.map-placeholder__text {
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 40ch;
  margin: 0;
}
.map-placeholder__link { color: var(--teal); font-weight: 600; }
.map-iframe {
  width: 100%;
  height: 100%;
  min-height: 340px;
  border: 0;
  display: block;
}

/* --- Stopka -------------------------------------------------------------------- */

.site-footer {
  background: var(--cream);
  border-top: 1px solid rgba(14, 63, 76, 0.08);
  padding: clamp(34px, 5vw, 52px) 0;
}
.site-footer__main {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}
.site-footer__brand {
  display: flex;
  align-items: baseline;
  gap: 9px;
}
.site-footer__brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 26px;
  letter-spacing: -0.02em;
}
.site-footer__brand-sub {
  font-family: var(--font-script);
  font-size: 18px;
  color: var(--teal);
}
.site-footer__info { font-size: 14px; color: var(--muted); margin: 0; }
.site-footer__credits {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(14, 63, 76, 0.07);
  text-align: center;
}
.site-footer__credits p {
  font-size: 12.5px;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}
.site-footer__credits strong { color: var(--navy); font-weight: 600; }

/* --- Przełącznik języka (PL/DE) ------------------------------------------ */

.lang-switch {
  display: inline-flex;
  gap: 2px;
  padding: 3px;
  border: 1px solid rgba(14, 63, 76, 0.18);
  border-radius: 999px;
  background: #fff;
}

.lang-switch__btn {
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 5px 12px;
  border-radius: 999px;
  cursor: pointer;
}

.lang-switch__btn.is-active {
  background: var(--teal);
  color: #fff;
}

.lang-switch__btn:not(.is-active):hover {
  color: var(--navy);
}

.lang-switch__btn:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

/* --- O nas ----------------------------------------------------------------- */

.about {
  padding: clamp(56px, 9vw, 110px) 0;
}

.about__cols {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.about__text {
  margin: 0;
  color: var(--muted);
  font-size: 16.5px;
  line-height: 1.7;
}

/* --- FAQ -------------------------------------------------------------------- */

.faq {
  padding: clamp(56px, 9vw, 110px) 0;
}

.faq__list {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq__item {
  background: #fff;
  border: 1px solid rgba(14, 63, 76, 0.10);
  border-radius: 16px;
}

.faq__item summary {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 16px 20px;
  cursor: pointer;
  font-weight: 600;
  color: var(--navy);
  list-style: none;
}

.faq__item summary::-webkit-details-marker { display: none; }

.faq__item summary::after {
  content: '+';
  color: var(--teal);
  font-weight: 700;
  flex: none;
}

.faq__item[open] summary::after { content: '–'; }

.faq__answer {
  margin: 0;
  padding: 0 20px 18px;
  color: var(--muted);
  line-height: 1.65;
}
