:root {
  --bg: #FAF7EB;
  --bg-soft: #ECD7C5;
  --navy: #192D45;
  --ink: #2A1F18;
  --ink-soft: #5C4A3C;
  --amber: #CA822E;
  --rust-deep: #7A2F22;
  --line: rgba(42, 31, 24, 0.18);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body {
  background: var(--bg); color: var(--ink);
  font-family: 'Satoshi', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}
body { overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
::selection { background: var(--amber); color: var(--bg); }

/* =========================================
   Navigation
   ========================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding: 20px 28px;
  background: transparent;
  color: var(--ink);
  border-bottom: 1px solid transparent;
  transition: background 0.3s, color 0.3s, border 0.3s, backdrop-filter 0.3s;
}
.nav.on-hero { color: var(--bg); }
.nav.scrolled {
  background: rgba(250, 247, 235, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}
.nav-inner {
  max-width: 1400px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.logo-btn { display: flex; align-items: center; }
.logo {
  display: inline-block;
  width: 96px; height: 45px;
  background-color: currentColor;
  -webkit-mask: url("assets/frajda-logo.svg") no-repeat center / contain;
          mask: url("assets/frajda-logo.svg") no-repeat center / contain;
  font-size: 0;
  vertical-align: middle;
}
.logo > * { display: none; }

.nav-desktop { display: flex; align-items: center; gap: 4px; }
.nav-link {
  padding: 10px 16px; font-size: 14px; font-weight: 500;
  opacity: 0.72;
  border-bottom: 1px solid transparent;
  transition: opacity 0.2s;
}
.nav-link:hover { opacity: 1; }
.nav-link.active { opacity: 1; border-bottom-color: currentColor; }

.lang-switch {
  margin-left: 16px;
  display: flex; align-items: center; gap: 4px;
  font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase;
}
.lang-btn { padding: 6px 8px; opacity: 0.5; }
.lang-btn.active { opacity: 1; font-weight: 600; }
.lang-sep { opacity: 0.4; }

.nav-mobile-toggle {
  display: none; flex-direction: column; gap: 5px; padding: 8px;
}
.nav-mobile-toggle span {
  width: 24px; height: 1.5px; background: currentColor; display: block;
}

.mobile-menu {
  position: fixed; inset: 0; background: var(--navy); color: var(--bg);
  z-index: 200; padding: 24px 28px;
  display: none; flex-direction: column;
}
.nav.menu-open {
  background: var(--navy) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  color: var(--bg);
}
body.menu-open { overflow: hidden; position: fixed; width: 100%; }
.mobile-menu.open { display: flex; }
.mobile-menu-top { display: flex; justify-content: space-between; align-items: center; }
.mobile-menu-close { font-size: 28px; padding: 8px; color: var(--bg); }
.mobile-menu-links {
  flex: 1; display: flex; flex-direction: column; justify-content: center; gap: 4px;
}
.mobile-menu-links a {
  font-size: clamp(40px, 10vw, 72px); font-weight: 500; letter-spacing: -0.02em;
  text-align: left; padding: 8px 0; line-height: 1.05;
  color: var(--bg);
}
.mobile-menu-links a.active { color: var(--amber); }
.mobile-menu-lang {
  display: flex; gap: 16px; font-size: 14px; padding-bottom: 12px;
}
.mobile-menu-lang button { color: var(--bg); opacity: 0.5; }
.mobile-menu-lang button.active { opacity: 1; font-weight: 600; }

@media (max-width: 880px) {
  .nav-desktop { display: none; }
  .nav-mobile-toggle { display: flex; }
}

/* =========================================
   Buttons & primitives
   ========================================= */
.btn {
  padding: 15px 26px; border-radius: 999px;
  font-size: 14px; font-weight: 500; letter-spacing: 0.3px;
  display: inline-flex; align-items: center; gap: 10px;
  transition: transform 0.15s, opacity 0.2s;
}
.btn:hover { transform: translateY(-1px); }
.btn-rust { background: var(--amber); color: var(--bg); }
.btn-ghost {
  background: transparent; color: currentColor;
  border: 1px solid currentColor;
}
.btn-outline {
  background: transparent; color: var(--ink);
  border: 1px solid var(--ink);
}
.btn .arrow { flex-shrink: 0; }

.eyebrow {
  display: inline-block;
  font-size: 12px; letter-spacing: 2.4px; text-transform: uppercase;
  color: var(--amber); font-weight: 500;
  margin-bottom: 24px;
}
.eyebrow-light { color: rgba(250, 247, 235, 0.7); }

em.italic-rust { font-style: italic; color: var(--amber); }
em.italic-rust-soft { font-style: italic; color: var(--amber); opacity: 0.95; }
em.italic-soft { font-style: italic; opacity: 0.85; }

/* =========================================
   Home - Hero
   ========================================= */
.hero {
  position: relative; min-height: 100vh;
  background: var(--navy); color: var(--bg);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0.65;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(31,22,17,0.4) 0%, rgba(31,22,17,0.2) 40%, rgba(31,22,17,0.85) 100%);
}
.hero-inner {
  position: relative; z-index: 2; min-height: 100vh;
  padding: 140px 28px 80px;
  display: flex; flex-direction: column; justify-content: space-between;
  max-width: 1280px; margin: 0 auto;
}
.hero-content { max-width: 1100px; }
.hero-est {
  font-size: 13px; letter-spacing: 3px; text-transform: uppercase; opacity: 0.7;
}
.hero h1 {
  font-size: clamp(56px, 11vw, 180px);
  font-weight: 500; line-height: 0.92; letter-spacing: -0.04em;
  margin-top: 18px; margin-bottom: 30px;
}
.hero-lead {
  max-width: 540px; font-size: 17px; line-height: 1.55; opacity: 0.8;
}
.hero-bottom {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px; align-items: end; padding-top: 60px;
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-meta {
  display: flex; justify-content: flex-end; gap: 36px;
  font-size: 13px; opacity: 0.85;
}
.hero-meta-label {
  display: block; opacity: 0.55; margin-bottom: 4px;
  letter-spacing: 1.5px; text-transform: uppercase; font-size: 11px;
}
.scroll-indicator {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase; opacity: 0.5;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.scroll-indicator span:last-child {
  width: 1px; height: 26px; background: var(--bg); opacity: 0.6;
}

/* =========================================
   Home - About
   ========================================= */
.about { padding: 120px 28px; }
.about-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(12, 1fr); gap: 32px;
}
.about-headline { grid-column: span 6; }
.about-headline h2 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 500; line-height: 1.05; letter-spacing: -0.02em;
}
.about-body { grid-column: 8 / span 5; padding-top: 8px; }
.about-body p {
  font-size: 17px; line-height: 1.7; color: var(--ink-soft);
}
.about-body p + p { margin-top: 18px; }

/* =========================================
   Home - Pillars
   ========================================= */
.pillars { padding: 40px 28px 120px; }
.pillars-dark {
  background: var(--amber);
  color: var(--bg);
}
.pillars-dark .pillars-link { color: var(--bg); opacity: 0.8; }
.pillars-dark .pillar-body h3 { color: var(--bg); }
.pillars-dark .pillar-body p { color: var(--bg); opacity: 0.8; }
.pillars-inner { max-width: 1280px; margin: 0 auto; }
.pillars-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  flex-wrap: wrap; gap: 24px; margin-bottom: 56px;
}
.pillars-header h2 {
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 500; line-height: 1.15; letter-spacing: -0.02em;
  max-width: 700px;
}
.pillars-link {
  font-size: 14px; font-weight: 500; color: var(--amber);
  border-bottom: 1px solid var(--amber); padding-bottom: 4px;
}
.pillars-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.pillar { display: flex; flex-direction: column; }
.pillar-image {
  position: relative; width: 100%; aspect-ratio: 3/4;
  overflow: hidden; background: var(--ink-soft);
}
.pillar-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s;
}
.pillar-image:hover img { transform: scale(1.04); }
.pillar-tag {
  position: absolute; top: 14px; left: 14px;
  font-size: 11px; letter-spacing: 2px; color: var(--bg);
  background: rgba(31, 22, 17, 0.5); backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 4px 10px; border-radius: 999px;
}
.pillar-body { padding-top: 18px; }
.pillar-body h3 { font-size: 22px; font-weight: 500; margin-bottom: 8px; }
.pillar-body p { font-size: 14px; line-height: 1.6; color: var(--ink-soft); }

@media (max-width: 1024px) {
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .about-headline, .about-body { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  .pillars-grid { grid-template-columns: 1fr; }
}

/* =========================================
   Home - Wine feature
   ========================================= */
.wine-feature {
  background: var(--amber); color: var(--bg);
  padding: 120px 28px; position: relative; overflow: hidden;
}
.wine-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(12, 1fr);
  gap: 40px; align-items: center;
}
.wine-text { grid-column: span 6; }
.wine-text h2 {
  font-size: clamp(40px, 6vw, 88px);
  font-weight: 500; line-height: 0.95; letter-spacing: -0.03em;
  margin-bottom: 28px;
}
.wine-text p {
  font-size: 17px; line-height: 1.65; max-width: 520px; opacity: 0.9;
}
.wine-stats {
  margin-top: 36px; display: flex; gap: 36px; flex-wrap: wrap;
}
.wine-stat-n {
  font-size: 40px; font-weight: 500; line-height: 1; letter-spacing: -0.02em;
}
.wine-stat-l {
  font-size: 12px; letter-spacing: 1.4px; text-transform: uppercase;
  opacity: 0.7; margin-top: 6px;
}
.wine-img { grid-column: 8 / span 5; }
.wine-img > div { aspect-ratio: 3/4; overflow: hidden; }
.wine-img img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 1024px) {
  .wine-text, .wine-img { grid-column: 1 / -1; }
}

/* =========================================
   Marquee
   ========================================= */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden; padding: 28px 0;
}
.marquee-track {
  display: flex; gap: 60px; white-space: nowrap;
  animation: marquee-scroll 40s linear infinite;
  width: max-content;
}
.marquee-item {
  font-size: clamp(28px, 5vw, 64px);
  font-weight: 400; font-style: italic; color: var(--ink);
  letter-spacing: -0.02em;
}
.marquee-item .dot { color: var(--amber); }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-33.333%); }
}

/* =========================================
   CTA Band
   ========================================= */
.cta-band { padding: 120px 28px 0; }
.cta-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(12, 1fr); gap: 24px;
}
.cta-card {
  grid-column: span 6; padding: 56px 48px;
  display: flex; flex-direction: column; justify-content: space-between;
  min-height: 320px;
}
.cta-card.light { background: var(--bg-soft); }
.cta-card.dark { background: var(--navy); color: var(--bg); }
.cta-card h3 {
  font-size: clamp(28px, 3vw, 40px); font-weight: 500; line-height: 1.1;
  margin-bottom: 16px; letter-spacing: -0.02em;
}
.cta-card p {
  font-size: 15px; line-height: 1.6; margin-bottom: 28px;
}
.cta-card.light p { color: var(--ink-soft); }
.cta-card.dark  p { opacity: 0.75; }

@media (max-width: 880px) {
  .cta-card { grid-column: 1 / -1; padding: 40px 28px; min-height: 260px; }
}

/* =========================================
   Footer
   ========================================= */
.footer {
  background: var(--navy); color: var(--bg);
  padding: 80px 28px 32px; margin-top: 120px;
}
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px; padding-bottom: 60px;
  border-bottom: 1px solid rgba(250, 247, 235, 0.12);
}
.footer-brand { grid-column: span 2; }
.footer-logo {
  display: inline-block;
  width: 150px; height: 70px;
  background-color: currentColor;
  -webkit-mask: url("assets/frajda-logo.svg") no-repeat left / contain;
          mask: url("assets/frajda-logo.svg") no-repeat left / contain;
  font-size: 0;
}
.footer-logo > * { display: none; }
.footer-tag {
  margin-top: 16px; font-size: 14px; line-height: 1.6; opacity: 0.65;
  max-width: 320px;
}
.footer h4 {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  opacity: 0.55; margin-bottom: 14px; font-weight: 500;
}
.footer-col-body { font-size: 14px; line-height: 1.7; }
.footer-col-body a { display: block; }
.footer-bar {
  padding-top: 28px;
  display: flex; justify-content: space-between; flex-wrap: wrap;
  gap: 12px; font-size: 12px; opacity: 0.5;
}

/* =========================================
   Sub-page hero & generic
   ========================================= */
main { min-height: 100vh; }
.page-pad { padding-top: 120px; }
.page-header { padding: 60px 28px 0; }
.page-header-inner { max-width: 1100px; margin: 0 auto; }
.page-h1 {
  font-size: clamp(48px, 8vw, 120px);
  font-weight: 500; line-height: 0.95; letter-spacing: -0.03em;
  margin-bottom: 32px;
}
.page-lead {
  font-size: 17px; line-height: 1.65; color: var(--ink-soft);
  max-width: 620px; margin-bottom: 56px;
}

/* =========================================
   Menu page
   ========================================= */
.menu-section { padding: 0 28px 120px; }
.menu-section-inner { max-width: 1100px; margin: 0 auto; }
.menu-tabs {
  display: flex; gap: 6px; flex-wrap: wrap;
  margin-bottom: 40px; border-bottom: 1px solid var(--line);
}
.menu-tab {
  padding: 14px 22px; font-size: 14px; font-weight: 500;
  color: var(--ink-soft);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}
.menu-tab.active { color: var(--amber); border-bottom-color: var(--amber); }

.menu-cards {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.menu-card {
  padding: 36px 32px; background: var(--bg);
  display: flex; flex-direction: column; gap: 24px;
  border: 1px solid var(--line);
  transition: all 0.25s;
  position: relative; overflow: hidden;
  min-height: 240px; color: var(--ink);
}
.menu-card:hover {
  background: var(--amber); color: var(--bg); border-color: var(--amber);
}
.menu-card:hover .menu-card-meta { color: var(--bg); }
.menu-card-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase; opacity: 0.6;
}
.menu-card h3 {
  font-size: 32px; font-weight: 500; letter-spacing: -0.02em; line-height: 1.05;
}
.menu-card-meta {
  margin-top: auto;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px;
}
.menu-card-meta .updated { opacity: 0.65; }
.menu-card-meta .download {
  font-weight: 500; display: flex; align-items: center; gap: 6px;
}

/* Menu gallery */
.menu-cards-food { display: block; }
.menu-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 18px;
  max-width: 1300px;
  margin: 0 auto;
}
.gallery-thumb {
  /* Wszystkie miniatury TEJ SAMEJ WYSOKOŚCI - szerokości naturalnie różne (proporcjonalnie do PNG) */
  height: clamp(420px, 38vw, 540px);
  width: auto;
  display: block;
  cursor: pointer;
  border: 1px solid var(--line);
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  flex-shrink: 0;
}
.gallery-thumb:hover {
  opacity: 0.92;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

/* Tablet i mobile - 1 kolumna, jedna pod drugą */
@media (max-width: 880px) {
  .menu-gallery {
    flex-direction: column;
    align-items: center;
    gap: 18px;
    max-width: 520px;
  }
  .gallery-thumb {
    height: auto;
    width: 100%;
    max-width: 480px;
  }
}

/* Lightbox */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.92);
  align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-img { max-width: 90vw; max-height: 90vh; object-fit: contain; display: block; }
.lightbox-close {
  position: absolute; top: 20px; right: 24px;
  font-size: 36px; color: #fff; cursor: pointer;
  background: none; border: none; padding: 0; line-height: 1;
}
.lightbox-prev, .lightbox-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  font-size: 32px; line-height: 1; color: #fff; cursor: pointer;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  user-select: none;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  padding: 0;
}
.lightbox-prev:hover, .lightbox-next:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.4);
}
.lightbox-prev:active, .lightbox-next:active {
  transform: translateY(-50%) scale(0.95);
}
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
@media (max-width: 640px) {
  .lightbox-prev, .lightbox-next {
    width: 44px; height: 44px; font-size: 26px;
  }
  .lightbox-prev { left: 12px; }
  .lightbox-next { right: 12px; }
}
.lightbox-counter {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.55); font-size: 13px; letter-spacing: 0.05em;
}

.menu-tabs-tab-pdfs[data-current="food"] .menu-cards-food,
.menu-tabs-tab-pdfs[data-current="breakfast"] .menu-cards-breakfast,
.menu-tabs-tab-pdfs[data-current="drinks"] .menu-cards-drinks {
  display: grid;
}
.menu-tabs-tab-pdfs .menu-cards { display: none; }

/* =========================================
   Oferta page
   ========================================= */
.oferta-hero {
  position: relative; min-height: 70vh; overflow: hidden;
}
.oferta-hero img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.oferta-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(31,22,17,0.2), rgba(31,22,17,0.75));
}
.oferta-hero-content {
  position: relative; z-index: 2;
  padding: 100px 28px 80px; max-width: 1100px; margin: 0 auto;
  min-height: 70vh;
  display: flex; flex-direction: column; justify-content: flex-end;
  color: var(--bg);
}
.oferta-hero-content h1 {
  font-size: clamp(48px, 8vw, 110px);
  font-weight: 500; line-height: 0.95; letter-spacing: -0.03em;
  max-width: 1000px;
}

.oferta-body { padding: 120px 28px; }
.oferta-body-inner { max-width: 1100px; margin: 0 auto; }
.oferta-intro { max-width: 720px; margin-bottom: 80px; }
.oferta-intro p { font-size: 19px; line-height: 1.65; color: var(--ink-soft); }

.oferta-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1px; background: var(--line); overflow: hidden;
}
.oferta-item {
  padding: 40px 36px; background: var(--bg);
  min-height: 240px;
}
.oferta-item:last-child:nth-child(odd) { grid-column: 1 / -1; }
.oferta-item .idx {
  font-size: 12px; letter-spacing: 2px; color: var(--amber); font-weight: 500;
}
.oferta-item h3 {
  font-size: 26px; font-weight: 500;
  margin-top: 20px; margin-bottom: 14px; letter-spacing: -0.01em;
}
.oferta-item p { font-size: 15px; line-height: 1.65; color: var(--ink-soft); }

.oferta-cta {
  margin-top: 64px; padding: 56px 48px;
  background: var(--navy); color: var(--bg);
  display: flex; flex-wrap: wrap; gap: 32px;
  align-items: center; justify-content: space-between;
}
.oferta-cta-text { max-width: 540px; }
.oferta-cta-text h3 {
  font-size: clamp(26px, 3vw, 36px); font-weight: 500;
  line-height: 1.1; letter-spacing: -0.02em;
}
.oferta-cta-text p {
  margin-top: 12px; opacity: 0.75; font-size: 15px; line-height: 1.6;
}

@media (max-width: 720px) {
  .oferta-grid { grid-template-columns: 1fr; }
}

/* =========================================
   Formularz (contact form)
   ========================================= */
.form-section { padding: 60px 28px 120px; }
.form-inner { max-width: 760px; margin: 0 auto; }
.back-link {
  font-size: 13px; color: var(--ink-soft); margin-bottom: 32px;
  display: inline-flex; align-items: center; gap: 8px;
}
.form-h1 {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 500; line-height: 1; letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.form-lead {
  color: var(--ink-soft); font-size: 16px; line-height: 1.6;
  margin-bottom: 56px;
}
.form-fields { display: flex; flex-direction: column; gap: 32px; }
.form-row {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field label {
  font-size: 12px; letter-spacing: 1.6px; text-transform: uppercase;
  color: var(--ink-soft);
}
.form-field input, .form-field textarea {
  background: transparent; border: none;
  border-bottom: 1px solid var(--line);
  padding: 12px 0; font-size: 16px; font-family: inherit;
  color: var(--ink); outline: none;
}
.form-field textarea { resize: vertical; min-height: 130px; }
.form-field.error input, .form-field.error textarea {
  border-bottom-color: #c44;
}
.form-error {
  font-size: 12px; color: #c44; display: none;
}
.form-field.error .form-error { display: block; }

.form-consent {
  display: flex; gap: 14px; align-items: flex-start;
  cursor: pointer; font-size: 13px; line-height: 1.55; color: var(--ink-soft);
}
.form-consent input {
  width: 18px; height: 18px; margin-top: 2px;
  accent-color: var(--amber); flex-shrink: 0;
}
.form-consent-text { flex: 1; }
.form-consent .form-error { margin-top: 4px; }

.form-submit {
  background: var(--amber); color: var(--bg);
  padding: 16px 32px; border-radius: 999px;
  font-size: 14px; font-weight: 500; letter-spacing: 0.4px; cursor: pointer;
  display: inline-flex; align-items: center; gap: 10px;
}

.thanks-screen {
  min-height: 90vh;
  display: flex; align-items: center; justify-content: center;
  padding: 180px 28px 120px;
}
.thanks-content { max-width: 600px; text-align: center; }
.thanks-tick {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--amber); color: var(--bg);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px; font-size: 26px;
}
.thanks-content h1 {
  font-size: 48px; font-weight: 500; letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.thanks-content p {
  font-size: 17px; line-height: 1.65; color: var(--ink-soft);
  margin-bottom: 32px;
}

/* =========================================
   Rezerwacja
   ========================================= */
.rez-section { padding: 60px 28px 120px; }
.rez-section-inner { max-width: 1100px; margin: 0 auto; }
.rez-grid {
  display: grid; grid-template-columns: repeat(12, 1fr); gap: 24px;
}
.rez-info { grid-column: span 7; }
.rez-stats {
  display: grid; grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 28px; margin-bottom: 48px;
}
.stat { border-top: 1px solid var(--line); padding-top: 16px; }
.stat-label {
  font-size: 11px; letter-spacing: 1.6px; text-transform: uppercase;
  color: var(--ink-soft);
}
.stat-value {
  font-size: 22px; font-weight: 500; margin-top: 8px; letter-spacing: -0.01em;
}
.stat-value--sm { font-size: 14px; line-height: 1.6; font-weight: 400; }
.rez-stat-when { grid-row: 1 / 3; display: flex; flex-direction: column; }
.rez-stat-when .stat-value { flex: 1; display: flex; flex-direction: column; justify-content: space-between; margin-top: 8px; }
.rez-stat-when .stat-value span { display: block; }
.rez-note { font-size: 14px; color: var(--ink-soft); line-height: 1.6; }
.rez-note a {
  color: var(--amber); border-bottom: 1px solid var(--amber);
}

.rez-cta { grid-column: 8 / span 5; }
.rez-cta-card {
  background: var(--amber); color: var(--bg);
  padding: 40px 32px;
}
.rez-cta-label {
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase; opacity: 0.75;
}
.rez-cta-list {
  list-style: none; padding-left: 0; margin-top: 24px;
  display: flex; flex-direction: column; gap: 14px;
}
.rez-cta-list li { font-size: 28px; font-weight: 500; letter-spacing: -0.01em; line-height: 1.4; }
.rez-cta-list a { color: var(--bg); text-decoration: none; display: inline-flex; align-items: center; gap: 8px; }
.rez-cta-list a svg { flex-shrink: 0; }
.rez-cta-phone-num { display: block; font-size: 18px; font-weight: 400; }

@media (max-width: 880px) {
  .rez-info, .rez-cta { grid-column: 1 / -1; }
  .rez-stats { grid-template-columns: 1fr; }
  .rez-stat-when { grid-row: auto; }
}

/* =========================================
   Kontakt
   ========================================= */
.kont-section { padding: 60px 28px 80px; }
.kont-section-inner { max-width: 1280px; margin: 0 auto; }
.kont-grid {
  display: grid; grid-template-columns: repeat(12, 1fr); gap: 32px;
}
.kont-info {
  grid-column: span 5;
  display: flex; flex-direction: column; gap: 40px;
}
.info-block {
  border-top: 1px solid var(--line); padding-top: 18px;
}
.info-block h3 {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--ink-soft); margin-bottom: 14px; font-weight: 500;
}
.info-block-body { font-size: 16px; line-height: 1.6; }
.info-link-small {
  color: var(--amber); border-bottom: 1px solid var(--amber);
  font-size: 13px; margin-top: 8px; display: inline-block;
}
.info-big { font-size: 22px; font-weight: 500; }
.info-meta { font-size: 13px; color: var(--ink-soft); }

.kont-map { grid-column: 6 / span 7; }
.kont-map-frame {
  width: 100%; aspect-ratio: 4/5; overflow: hidden;
  background: var(--bg); border: 1px solid var(--line);
}
.kont-map iframe { width: 100%; height: 100%; border: 0; display: block; }
.kont-map-caption {
  font-size: 12px; color: var(--ink-soft);
  margin-top: 12px; text-align: right;
}

.hours-row {
  display: flex; justify-content: space-between; gap: 24px; font-size: 16px;
}
.hours-row + .hours-row { margin-top: 6px; }
.hours-day { color: var(--ink-soft); }
.hours-time { font-weight: 500; }
.hours-note {
  margin-top: 10px;
  font-size: 13px;
  color: var(--ink);
  opacity: 0.55;
  line-height: 1.5;
}

@media (max-width: 880px) {
  .kont-info, .kont-map { grid-column: 1 / -1; }
  .kont-map-frame { aspect-ratio: 1/1; }
}

/* ============================================================
   COOKIE BANNER + SETTINGS MODAL
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 9999;
  background: var(--navy);
  color: #FAF7EB;
  padding: 24px 28px;
  border-radius: 10px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.32);
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  transform: translateY(140%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  font-family: 'Satoshi', system-ui, sans-serif;
}
.cookie-banner-visible {
  transform: translateY(0);
}
.cookie-banner-inner {
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: space-between;
}
.cookie-banner-text {
  flex: 1;
  min-width: 0;
}
.cookie-banner-text strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #FAF7EB;
}
.cookie-banner-text p {
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
  color: rgba(250, 247, 235, 0.82);
}
.cookie-banner-text a {
  color: var(--amber);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-banner-text a:hover {
  color: #E0954A;
}
.cookie-banner-btns {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  align-items: center;
}
.cookie-btn {
  border: none;
  cursor: pointer;
  padding: 12px 22px;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 500;
  font-family: inherit;
  letter-spacing: 0.02em;
  transition: background 0.2s, border-color 0.2s, transform 0.1s;
  white-space: nowrap;
}
.cookie-btn:active { transform: translateY(1px); }

/* Główny CTA - Akceptuj wszystkie */
.cookie-btn-accept {
  background: var(--amber);
  color: #FAF7EB;
  font-weight: 600;
  padding: 14px 28px;
  font-size: 14px;
  box-shadow: 0 2px 8px rgba(202, 130, 46, 0.35);
}
.cookie-btn-accept:hover {
  background: #DB8E33;
  box-shadow: 0 4px 12px rgba(202, 130, 46, 0.5);
}

/* Drugi przycisk - Dostosuj (mniej wyróżniony) */
.cookie-btn-customize {
  background: transparent;
  color: rgba(250, 247, 235, 0.75);
  border: none;
  padding: 12px 16px;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(250, 247, 235, 0.35);
}
.cookie-btn-customize:hover {
  color: #FAF7EB;
  text-decoration-color: rgba(250, 247, 235, 0.7);
}

/* "Zapisz wybór" - mniej widoczny, tekstowy link */
.cookie-btn-save {
  background: transparent;
  color: var(--ink-soft);
  border: none;
  padding: 12px 16px;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(92, 74, 60, 0.3);
}
.cookie-btn-save:hover {
  color: var(--navy);
  text-decoration-color: rgba(25, 45, 69, 0.6);
}

/* "Akceptuj wszystkie" w modalu - większy, mocniejszy CTA */
.cookie-modal-footer .cookie-btn-accept {
  padding: 14px 32px;
  font-size: 15px;
}

/* Mobile banner */
@media (max-width: 640px) {
  .cookie-banner {
    bottom: 12px;
    left: 12px;
    right: 12px;
    padding: 20px 22px;
  }
  .cookie-banner-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
  .cookie-banner-btns {
    flex-direction: column-reverse;
    gap: 4px;
  }
  .cookie-btn-accept {
    width: 100%;
    padding: 14px 16px;
  }
  .cookie-btn-customize {
    width: 100%;
    padding: 10px;
  }
}

/* ----- Settings Modal ----- */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(25, 45, 69, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.25s ease-out;
  font-family: 'Satoshi', system-ui, sans-serif;
}
.cookie-modal-visible {
  opacity: 1;
}
.cookie-modal {
  background: #FAF7EB;
  color: var(--ink);
  border-radius: 12px;
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  transform: translateY(20px) scale(0.98);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.cookie-modal-visible .cookie-modal {
  transform: translateY(0) scale(1);
}
.cookie-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 28px;
  border-bottom: 1px solid var(--line);
}
.cookie-modal-header h2 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
}
.cookie-modal-close {
  background: none;
  border: none;
  font-size: 28px;
  line-height: 1;
  color: var(--ink-soft);
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.15s;
}
.cookie-modal-close:hover {
  background: rgba(42, 31, 24, 0.08);
  color: var(--ink);
}
.cookie-modal-body {
  padding: 22px 28px;
  overflow-y: auto;
  flex: 1;
}
.cookie-modal-lead {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0 0 22px;
}
.cookie-cat {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.cookie-cat:last-child {
  border-bottom: none;
}
.cookie-cat-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  gap: 16px;
}
.cookie-cat-head strong {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
}
.cookie-cat p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
}
.cookie-cat p + p {
  margin-top: 10px;
}

/* Wyróżniona kategoria (Analytics) - delikatne podświetlenie żeby zachęcić */
.cookie-cat-recommended {
  background: linear-gradient(135deg, rgba(202, 130, 46, 0.06), rgba(202, 130, 46, 0.03));
  margin: 0 -16px;
  padding: 16px 16px;
  border-radius: 8px;
  border-bottom: none !important;
  border: 1px solid rgba(202, 130, 46, 0.15);
}
.cookie-cat-title {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.cookie-recommended-badge {
  font-size: 11px;
  font-weight: 600;
  color: #FAF7EB;
  background: var(--amber);
  padding: 3px 9px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.5;
  white-space: nowrap;
}
.cookie-cat-tip {
  font-size: 12.5px !important;
  line-height: 1.55 !important;
  color: var(--amber) !important;
  background: rgba(202, 130, 46, 0.08);
  padding: 9px 12px;
  border-radius: 6px;
  border-left: 3px solid var(--amber);
  font-weight: 500;
}
.cookie-toggle-locked {
  font-size: 12px;
  color: var(--ink-soft);
  background: var(--bg-soft);
  padding: 5px 11px;
  border-radius: 20px;
  font-weight: 500;
  white-space: nowrap;
}

/* iOS-style toggle switch */
.cookie-switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}
.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-switch-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background-color: #C4B8AC;
  border-radius: 24px;
  transition: background-color 0.2s;
}
.cookie-switch-slider::before {
  content: '';
  position: absolute;
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  border-radius: 50%;
  transition: transform 0.2s;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
.cookie-switch input:checked + .cookie-switch-slider {
  background-color: var(--amber);
}
.cookie-switch input:checked + .cookie-switch-slider::before {
  transform: translateX(20px);
}
.cookie-switch input:focus-visible + .cookie-switch-slider {
  outline: 2px solid var(--amber);
  outline-offset: 2px;
}

.cookie-modal-footer {
  padding: 18px 28px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  background: rgba(236, 215, 197, 0.18);
}

@media (max-width: 540px) {
  .cookie-modal-header,
  .cookie-modal-body,
  .cookie-modal-footer { padding-left: 20px; padding-right: 20px; }
  .cookie-modal-footer {
    flex-direction: column-reverse;
    gap: 8px;
  }
  .cookie-modal-footer .cookie-btn {
    width: 100%;
  }
}

/* Kategoria "Polecane" - subtelne wyróżnienie */
.cookie-cat-recommended {
  background: linear-gradient(180deg, rgba(202, 130, 46, 0.05) 0%, transparent 100%);
  margin: 0 -12px;
  padding-left: 12px;
  padding-right: 12px;
  border-radius: 6px;
}
.cookie-cat-title {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.cookie-recommended-badge {
  display: inline-block;
  background: var(--amber);
  color: #FAF7EB;
  font-size: 10px;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 20px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.cookie-cat-tip {
  margin-top: 10px !important;
  padding: 10px 14px;
  background: rgba(202, 130, 46, 0.1);
  border-left: 3px solid var(--amber);
  border-radius: 4px;
  font-size: 12.5px !important;
  color: var(--ink) !important;
  line-height: 1.55 !important;
}
