/* ═══════════════════════════════════════════════
   Villa Toscana Nowy Targ — style
   Kierunek: jasna, ciepła trattoria premium — papier, kość słoniowa,
   szałwiowa zieleń; akcent główny: oliwka, detale: złoto z logo.
   Ciemna oliwka tylko w stopce i pasie zamówień.
   Nagłówki Newsreader (czytelny, elegancki szeryf), tekst Manrope.
   ═══════════════════════════════════════════════ */

:root {
  --paper: #fbf8f2;
  --alt: #eff0e4;          /* szałwiowa zieleń — sekcje na przemian z kremem */
  --sand: #e7e8d6;
  --card: #fffdf9;
  --ink: #221f18;
  --ink-soft: #52493f;
  --ink-faint: #857b70;
  --olive: #5a6b35;        /* kursywy, akcenty */
  --olive-deep: #45522a;   /* przyciski, linki */
  --olive-hover: #56663a;
  --olive-dark: #2c331c;   /* stopka */
  --gold: #c39e48;         /* złoto z gałązki w logo */
  --gold-deep: #7a6130;
  --wine: #7d1c31;         /* tylko drobny detal: „polecamy" w menu */
  --line: rgba(34, 31, 24, 0.13);
  --line-gold: rgba(122, 97, 48, 0.3);

  /* stopka i pas akcentowy */
  --night: #2c331c;
  --ivory: #f4ecdf;
  --ivory-soft: rgba(244, 236, 223, 0.72);
  --ivory-faint: rgba(244, 236, 223, 0.45);
  --line-dark: rgba(196, 163, 108, 0.28);

  --serif: "Newsreader", "Iowan Old Style", Georgia, serif;
  --sans: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;

  --wrap: 1240px;
  --gutter: clamp(20px, 5vw, 56px);
  --section: clamp(80px, 11vw, 150px);
  --ease: cubic-bezier(.22, .61, .36, 1);
  --nav-h: 84px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
[hidden] { display: none !important; }
a { color: inherit; }
button { font: inherit; }
:focus-visible { outline: 2px solid var(--olive); outline-offset: 3px; }
::selection { background: var(--olive); color: var(--ivory); }

.wrap { width: min(100% - 2 * var(--gutter), var(--wrap)); margin-inline: auto; }
.wrap--narrow { width: min(100% - 2 * var(--gutter), 860px); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; left: 12px; top: -60px; z-index: 200; background: var(--olive-deep); color: var(--ivory); padding: 10px 16px; font-weight: 700; text-decoration: none; }
.skip-link:focus { top: 12px; }

/* ─── TYPOGRAFIA ─── */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: 1.1; margin: 0; letter-spacing: -0.015em; color: var(--ink); }
h1 em, h2 em, h3 em { font-style: italic; font-weight: 400; color: var(--olive); }
p { margin: 0 0 1.1em; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--sans); font-size: 12px; font-weight: 700;
  letter-spacing: .26em; text-transform: uppercase; color: var(--gold-deep);
  margin-bottom: 22px;
}
.eyebrow::before { content: ""; width: 34px; height: 1px; background: currentColor; opacity: .6; }

.section-title { font-size: clamp(38px, 5.6vw, 70px); margin-bottom: 26px; }
.section-lead { font-size: clamp(17px, 1.5vw, 19px); color: var(--ink-soft); max-width: 640px; }
.section-head { margin-bottom: clamp(44px, 6vw, 80px); }
.section-head--center { text-align: center; }
.section-head--center .eyebrow::after { content: ""; width: 34px; height: 1px; background: currentColor; opacity: .6; }
.section-head--center .section-lead { margin-inline: auto; }

/* ─── SEKCJE ─── */
.section { padding-block: var(--section); position: relative; background: var(--paper); }
.section--alt { background: var(--alt); }
.section--sand { background: var(--sand); }
.section--olive { background: var(--olive-deep); color: var(--ivory); }
.section--olive h1, .section--olive h2, .section--olive h3 { color: var(--ivory); }
.section--olive h2 em { color: #e3cf98; }
.section--olive .eyebrow { color: #e3cf98; }
.section--olive .section-lead, .section--olive p { color: var(--ivory-soft); }

/* ─── PRZYCISKI ─── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 0 30px;
  font-family: var(--sans); font-size: 13px; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase; text-decoration: none;
  border: 1px solid transparent; border-radius: 0; cursor: pointer;
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.btn svg { width: 16px; height: 16px; flex: none; }
.btn--olive { background: var(--olive-deep); color: var(--ivory); }
.btn--olive:hover { background: var(--olive-hover); }
.btn--ghost { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn--ghost:hover { background: var(--ink); color: var(--paper); }
.btn--ink { background: var(--ink); color: var(--paper); }
.btn--ink:hover { background: var(--olive-deep); }
.btn--ghost-ink { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn--ghost-ink:hover { background: var(--ink); color: var(--paper); }
.section--olive .btn--olive { background: var(--paper); color: var(--olive-deep); }
.section--olive .btn--olive:hover { background: var(--ivory); }
.btn[disabled] { opacity: .6; cursor: progress; }
.link-arrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase;
  text-decoration: none; color: var(--olive-deep); border-bottom: 1px solid var(--line-gold); padding-bottom: 6px;
  transition: gap .3s var(--ease), border-color .3s var(--ease);
}
.link-arrow:hover { gap: 16px; border-color: var(--olive-deep); }
.section--olive .link-arrow { color: var(--ivory); border-color: rgba(244, 236, 223, .35); }

/* ─── NAWIGACJA ─── */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: height .4s var(--ease);
  padding-top: env(safe-area-inset-top, 0px);
}
/* Tło paska na osobnej warstwie: backdrop-filter na samym .nav zamykałby
   rozwijane menu (position: fixed) w pasku zamiast na całym ekranie telefonu. */
.nav::before {
  content: ""; position: absolute; inset: 0; z-index: -2; pointer-events: none;
  background: rgba(251, 248, 242, .94);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
  opacity: 0; transition: opacity .4s var(--ease);
}
.nav.scrolled::before, .nav--solid::before { opacity: 1; }
.nav.scrolled, .nav--solid { --nav-h: 70px; }
.nav__inner { width: min(100% - 2 * var(--gutter), 1400px); margin-inline: auto; display: flex; align-items: center; gap: 28px; }
.nav__logo { flex: none; display: block; }
.nav__logo img { height: 62px; width: auto; }
.nav.scrolled .nav__logo img, .nav--solid .nav__logo img { height: 52px; }
.nav__links { display: flex; gap: clamp(18px, 2.2vw, 34px); list-style: none; margin: 0 0 0 auto; padding: 0; }
.nav__links a {
  font-size: 12px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  text-decoration: none; color: var(--ink-soft); padding: 8px 0; position: relative; transition: color .3s;
}
.nav__links a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 2px; height: 1px; background: var(--olive-deep); transition: right .35s var(--ease); }
.nav__links a:hover, .nav__links a[aria-current="page"] { color: var(--ink); }
.nav__links a:hover::after, .nav__links a[aria-current="page"]::after { right: 0; }
.nav__actions { display: flex; align-items: center; gap: 14px; }
.nav__cta { min-height: 42px; padding: 0 20px; font-size: 12px; }
.lang-btn {
  background: none; border: 1px solid var(--line); color: var(--ink-soft);
  font-size: 11px; font-weight: 700; letter-spacing: .16em; width: 42px; height: 42px; cursor: pointer; transition: color .3s, border-color .3s;
}
.lang-btn:hover { color: var(--ink); border-color: var(--ink); }
.burger { display: none; background: none; border: 0; width: 44px; height: 44px; padding: 10px; cursor: pointer; }
.burger span { display: block; height: 1px; background: var(--ink); margin: 6px 0; transition: transform .35s var(--ease), opacity .3s; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1080px) {
  .nav__cta { display: none; }
  .burger { display: block; }
  .nav__links {
    position: fixed; inset: 0; margin: 0; z-index: -1;
    flex-direction: column; justify-content: center; align-items: center; gap: 26px;
    background: var(--paper);
    opacity: 0; visibility: hidden; transition: opacity .4s var(--ease), visibility .4s;
  }
  .nav__links.open { opacity: 1; visibility: visible; }
  .nav__links a { font-family: var(--serif); font-size: 30px; letter-spacing: 0; text-transform: none; color: var(--ink); }
  .nav__links a::after { display: none; }
  .nav__actions { margin-left: auto; }
}

/* ─── PLANSZE ZDJĘĆ (placeholdery) ───
   <figure class="ph"> z <img> w środku: gdy plik zdjęcia istnieje,
   zakrywa planszę; gdy go brak, onerror usuwa <img> i widać planszę
   z opisem ujęcia. Po sesji wystarczy wrzucić pliki pod te nazwy. */
.ph {
  position: relative; margin: 0; overflow: hidden;
  aspect-ratio: var(--ar, 4 / 5);
  background:
    radial-gradient(110% 80% at 25% 20%, rgba(255, 255, 255, .7), transparent 60%),
    radial-gradient(80% 70% at 90% 95%, rgba(90, 107, 53, .16), transparent 65%),
    linear-gradient(160deg, #eee6d3 0%, #dcd3b6 100%);
}
.ph::before {
  content: ""; position: absolute; inset: 14px; border: 1px solid rgba(125, 95, 48, .28); pointer-events: none; z-index: 1;
}
.ph::after {
  content: ""; position: absolute; inset: 0; opacity: .14; mix-blend-mode: multiply; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.ph img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 2; }
.ph__label {
  position: absolute; left: 28px; right: 28px; bottom: 26px; z-index: 1;
  display: flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: rgba(95, 72, 38, .75);
}
.ph__label svg { width: 16px; height: 16px; flex: none; opacity: .8; }
.ph img:not([src]) { display: none; }
.ph:has(img[src]) .ph__label { visibility: hidden; }

/* ─── HERO ─── */
.hero { padding-block: calc(var(--nav-h) + clamp(28px, 5vw, 64px)) clamp(48px, 7vw, 96px); background: var(--paper); }
.hero__grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(40px, 6vw, 96px); align-items: center; min-height: min(calc(100svh - var(--nav-h) - 120px), 760px); }
.hero__title { font-size: clamp(46px, 6.6vw, 98px); line-height: .98; margin-bottom: 30px; }
.hero__lead { font-size: clamp(17px, 1.6vw, 20px); color: var(--ink-soft); max-width: 540px; margin-bottom: 40px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero__actions .link-arrow { margin-left: 12px; }
.hero__media { width: 100%; max-height: 78svh; }
.hero__media .ph__label { bottom: 28px; }
@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; min-height: 0; }
  .hero__media { --ar: 4 / 3 !important; }
}

/* ─── LAURY / WYRÓŻNIENIA ─── */
.laurels { background: var(--alt); border-block: 1px solid var(--line); }
.laurels__list { display: grid; grid-template-columns: repeat(4, 1fr); list-style: none; margin: 0 auto; padding: 0; }
.laurel { padding: 32px 24px; display: flex; gap: 18px; align-items: center; }
.laurel + .laurel { border-left: 1px solid var(--line); }
.laurel__icon { width: 40px; height: 40px; flex: none; color: var(--gold-deep); }
.laurel__title { display: block; font-family: var(--serif); font-size: 21px; line-height: 1.15; color: var(--ink); }
.laurel__meta { display: block; font-size: 12.5px; line-height: 1.5; color: var(--ink-soft); margin-top: 4px; }
@media (max-width: 1000px) {
  .laurels__list { grid-template-columns: 1fr 1fr; }
  .laurel:nth-child(3) { border-left: 0; }
  .laurel:nth-child(n+3) { border-top: 1px solid var(--line); }
}
@media (max-width: 560px) {
  .laurels__list { grid-template-columns: 1fr; }
  .laurel + .laurel { border-left: 0; border-top: 1px solid var(--line); }
  .laurel { padding: 22px 4px; }
}

/* ─── O NAS ─── */
.story { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(48px, 7vw, 110px); align-items: center; }
.story__text p { color: var(--ink-soft); font-size: 17px; }
.story__text p.story__first { font-family: var(--serif); font-size: clamp(22px, 2.2vw, 27px); line-height: 1.45; color: var(--ink); }
.story__media { position: relative; }
.story__media .ph--small { position: absolute; width: 42%; right: -7%; bottom: -9%; border: 10px solid var(--paper); }
.facts { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 46px; border-top: 1px solid var(--line); }
.fact { padding: 26px 18px 0 0; }
.fact + .fact { padding-left: 22px; border-left: 1px solid var(--line); }
.fact__num { display: block; font-family: var(--serif); font-size: clamp(32px, 3.4vw, 46px); line-height: 1; color: var(--olive); white-space: nowrap; }
.fact__label { display: block; font-size: 13px; color: var(--ink-soft); margin-top: 10px; line-height: 1.45; }
@media (max-width: 900px) {
  .story { grid-template-columns: 1fr; }
  .story__media { order: -1; max-width: 560px; }
  .story__media .ph--small { display: none; }
}
@media (max-width: 520px) {
  .facts { grid-template-columns: 1fr; }
  .fact + .fact { padding-left: 0; border-left: 0; border-top: 1px solid var(--line); padding-top: 20px; margin-top: 20px; }
}

/* ─── KULTOWE MIEJSCE: OŚ CZASU ─── */
.legacy { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(48px, 7vw, 110px); align-items: start; }
.legacy__intro { position: sticky; top: calc(var(--nav-h) + 40px); }
.timeline { list-style: none; margin: 0; padding: 0; position: relative; }
.timeline::before { content: ""; position: absolute; left: 118px; top: 10px; bottom: 10px; width: 1px; background: var(--line-gold); }
.timeline__item { display: grid; grid-template-columns: 118px 1fr; gap: 0 44px; padding-bottom: 46px; position: relative; }
.timeline__item::before { content: ""; position: absolute; left: 114px; top: 17px; width: 9px; height: 9px; border-radius: 50%; background: var(--alt); border: 1px solid var(--gold-deep); }
.timeline__year { font-family: var(--serif); font-size: 40px; line-height: 1; color: var(--olive); font-style: italic; }
.timeline__item h3 { font-size: clamp(22px, 2.1vw, 27px); margin-bottom: 10px; }
.timeline__item p { color: var(--ink-soft); margin-bottom: 0; }
@media (max-width: 900px) {
  .legacy { grid-template-columns: 1fr; }
  .legacy__intro { position: static; }
}
@media (max-width: 560px) {
  .timeline::before { left: 4px; }
  .timeline__item { grid-template-columns: 1fr; padding-left: 30px; }
  .timeline__item::before { left: 0; top: 12px; }
  .timeline__year { font-size: 32px; margin-bottom: 10px; }
}

.press { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); margin-top: clamp(52px, 7vw, 88px); }
.press__card { background: var(--card); padding: 32px 28px; display: flex; flex-direction: column; gap: 14px; }
.press__source { font-size: 11px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-deep); }
.press__title { font-family: var(--serif); font-size: 21px; line-height: 1.32; color: var(--ink); }
.press__date { font-size: 13px; color: var(--ink-faint); margin-top: auto; }
@media (max-width: 900px) { .press { grid-template-columns: 1fr; } }

/* ─── SPECJALNOŚCI ─── */
.signatures { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(28px, 3.5vw, 48px) clamp(20px, 2.6vw, 36px); }
.signature__media { margin-bottom: 22px; }
.signature__media .ph img { transition: transform 1.2s var(--ease); }
.signature:hover .signature__media .ph img { transform: scale(1.03); }
.signature__kicker { font-size: 11px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-deep); }
.signature h3 { font-size: 26px; font-style: italic; font-weight: 400; margin: 8px 0 10px; }
.signature p { color: var(--ink-soft); font-size: 15px; margin-bottom: 0; }
.signature__price { font-family: var(--serif); font-style: normal; color: var(--olive); font-size: 18px; margin-left: 8px; }
@media (max-width: 960px) { .signatures { grid-template-columns: 1fr 1fr; } }
@media (max-width: 580px) { .signatures { grid-template-columns: 1fr; } }

/* ─── MENU ─── */
.menu-card { background: var(--card); border: 1px solid var(--line); padding: clamp(28px, 5vw, 72px); position: relative; box-shadow: 0 30px 60px -40px rgba(34, 27, 21, .25); }
.menu-card::before { content: ""; position: absolute; inset: 10px; border: 1px solid var(--line-gold); pointer-events: none; }
.menu__tabs {
  display: flex; gap: 6px; overflow-x: auto; scrollbar-width: none; margin: 0 0 44px;
  padding-bottom: 2px; border-bottom: 1px solid var(--line); -webkit-overflow-scrolling: touch;
}
.menu__tabs::-webkit-scrollbar { display: none; }
@media (min-width: 1000px) { .menu__tabs { flex-wrap: wrap; justify-content: center; overflow: visible; } }
.menu__tab {
  flex: none; background: none; border: 0; cursor: pointer; color: var(--ink-soft);
  padding: 12px 16px 16px; position: relative; text-align: left; line-height: 1.2;
}
.menu__tab-it { display: block; font-family: var(--serif); font-size: 22px; font-style: italic; color: var(--ink); }
.menu__tab-label { display: block; font-size: 10.5px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; margin-top: 5px; }
.menu__tab::after { content: ""; position: absolute; left: 16px; right: 16px; bottom: -1px; height: 2px; background: var(--olive-deep); transform: scaleX(0); transition: transform .35s var(--ease); }
.menu__tab.active::after { transform: scaleX(1); }
.menu__tab.active .menu__tab-label { color: var(--olive-deep); }
.menu__panel { display: none; }
.menu__panel.active { display: block; animation: fadein .5s var(--ease); }
@keyframes fadein { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.menu__subheading { font-size: 26px; font-style: italic; font-weight: 400; color: var(--ink); margin: 40px 0 8px; }
.menu__panel > .menu__subheading:first-child { margin-top: 0; }
.menu__subnote { font-size: 14px; color: var(--ink-soft); font-style: italic; margin-bottom: 22px; }
.menu__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px clamp(32px, 5vw, 72px); margin-top: 18px; }
.dish { padding: 16px 0; border-bottom: 1px solid var(--line); }
.dish__head { display: flex; align-items: baseline; gap: 10px; }
.dish__name { font-family: var(--serif); font-size: 21px; font-weight: 500; color: var(--ink); line-height: 1.3; }
.dish__tags { display: inline-flex; gap: 4px; transform: translateY(2px); }
.dish__tags svg { width: 15px; height: 15px; }
.dish__dots { flex: 1; border-bottom: 1px dotted rgba(34, 27, 21, .28); transform: translateY(-5px); min-width: 16px; }
.dish__price { font-family: var(--serif); font-size: 20px; font-weight: 500; color: var(--ink); white-space: nowrap; }
.dish__unit { font-size: 12px; color: var(--ink-soft); letter-spacing: .04em; white-space: nowrap; }
.dish__desc { font-size: 15px; color: var(--ink-soft); margin: 4px 0 0; line-height: 1.55; }
.menu__grid--compact .dish { padding: 10px 0; }
.menu__grid--compact .dish__name { font-family: var(--sans); font-size: 15px; font-weight: 500; }
.menu__grid--compact .dish__price { font-size: 16px; }
.menu__footnote { font-size: 13.5px; color: var(--ink-soft); margin-top: 22px; padding: 14px 18px; background: rgba(125, 95, 48, .07); border-left: 2px solid var(--gold-deep); }
.menu__legend { display: flex; flex-wrap: wrap; gap: 10px 28px; margin-top: 44px; padding-top: 24px; border-top: 1px solid var(--line); font-size: 13px; color: var(--ink-soft); }
.menu__legend span { display: inline-flex; align-items: center; gap: 8px; }
.menu__legend svg { width: 16px; height: 16px; }
.menu__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 52px; }
.tag--fav { color: var(--wine); }
.tag--veg { color: #5b7a3a; }
.tag--hot { color: #b8442a; }
@media (max-width: 760px) { .menu__grid { grid-template-columns: 1fr; } }

/* ─── PRZYJĘCIA ─── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(48px, 7vw, 110px); align-items: center; }
.occasions { list-style: none; margin: 34px 0 40px; padding: 0; border-top: 1px solid var(--line); }
.occasions li { display: flex; justify-content: space-between; gap: 20px; padding: 17px 0; border-bottom: 1px solid var(--line); }
.occasions strong { font-family: var(--serif); font-weight: 500; font-size: 21px; font-style: italic; color: var(--ink); }
.occasions span { color: var(--ink-soft); font-size: 14px; text-align: right; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }

/* ─── ZAMÓWIENIA (pas w kolorze wina) ─── */
.order-band { display: grid; grid-template-columns: 1.3fr 1fr; gap: 48px; align-items: center; }
.order-band__points { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 10px; color: var(--ink-soft); }
.section--olive .order-band__points { color: var(--ivory-soft); }
.order-band__points li { display: flex; gap: 12px; align-items: baseline; }
.order-band__points li::before { content: ""; width: 18px; height: 1px; background: currentColor; transform: translateY(-4px); flex: none; opacity: .6; }
.order-band__cta { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.app-badge { display: inline-flex; align-items: center; gap: 12px; padding: 10px 18px; border: 1px solid var(--line); text-decoration: none; color: var(--ink); transition: border-color .3s; }
.app-badge:hover { border-color: var(--ink); }
.section--olive .app-badge { color: var(--ivory); border-color: rgba(244, 236, 223, .35); }
.section--olive .app-badge:hover { border-color: var(--ivory); }
.app-badge svg { width: 22px; height: 22px; }
.app-badge small { display: block; font-size: 10px; letter-spacing: .14em; text-transform: uppercase; opacity: .7; line-height: 1.2; }
.app-badge b { display: block; font-weight: 600; font-size: 15px; line-height: 1.2; }
.phone-line { font-size: 15px; margin: 0; }
.phone-line a { color: inherit; font-weight: 600; }
@media (max-width: 860px) { .order-band { grid-template-columns: 1fr; } }

/* ─── GALERIA ─── */
.gallery { columns: 3 280px; column-gap: 18px; }
.gallery__item { break-inside: avoid; margin-bottom: 18px; display: block; }
.gallery__item img { width: 100%; height: auto; }
.gallery__filters { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 40px; }
.chip { background: none; border: 1px solid var(--line); color: var(--ink-soft); padding: 9px 18px; font-size: 11px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; cursor: pointer; transition: all .3s; }
.chip:hover, .chip.active { border-color: var(--ink); color: var(--ink); }
.chip.active { background: var(--alt); border-color: var(--olive-deep); color: var(--olive-deep); }
.gallery-more { text-align: center; margin: 40px 0 0; }

/* ─── WYDARZENIA ─── */
.events-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.event-card { background: var(--card); padding: 36px 30px; }
.event-card__date { font-family: var(--serif); font-size: 44px; color: var(--olive); line-height: 1; font-style: italic; }
.event-card h3 { font-size: 24px; margin: 16px 0 10px; }
.event-card p { color: var(--ink-soft); font-size: 15px; margin: 0; }
.event-card--past { opacity: .5; }

/* ─── FAQ ─── */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer; display: flex; justify-content: space-between; gap: 24px; align-items: center;
  padding: 24px 0; font-family: var(--serif); font-size: clamp(19px, 2vw, 23px); color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--sans); font-weight: 300; font-size: 26px; color: var(--olive-deep); transition: transform .35s var(--ease); flex: none; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { color: var(--ink-soft); margin: -6px 0 26px; max-width: 760px; }
.faq a { color: var(--olive-deep); }

/* ─── KONTAKT ─── */
.contact { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(48px, 7vw, 110px); }
.contact__list { list-style: none; padding: 0; margin: 0 0 36px; }
.contact__list li { display: grid; grid-template-columns: 120px 1fr; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.contact__list li:first-child { border-top: 1px solid var(--line); }
.contact__key { font-size: 11px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-deep); padding-top: 4px; }
.contact__val { font-size: 17px; }
.contact__val a { text-decoration: none; border-bottom: 1px solid var(--line-gold); }
.contact__val a:hover { border-color: var(--olive-deep); color: var(--olive-deep); }
.contact__social { display: flex; gap: 10px; }
.icon-link { width: 46px; height: 46px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--line); color: var(--ink); transition: border-color .3s, color .3s; }
.icon-link:hover { border-color: var(--olive-deep); color: var(--olive-deep); }
.icon-link svg { width: 18px; height: 18px; }
.map { height: clamp(320px, 42vw, 480px); border: 0; width: 100%; display: block; filter: grayscale(.35) sepia(.12); }
.map-slot { height: clamp(300px, 36vw, 440px); --ar: auto; }
.map-slot__inner { position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px; text-align: center; padding: 24px; }
@media (max-width: 900px) { .contact { grid-template-columns: 1fr; } }
@media (max-width: 480px) { .contact__list li { grid-template-columns: 1fr; gap: 4px; } }

/* ─── FORMULARZE ─── */
.form { display: grid; gap: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.form-row--3 { grid-template-columns: 1.2fr 1fr .8fr; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-deep); }
.form input, .form select, .form textarea {
  width: 100%; background: transparent; color: var(--ink);
  border: 0; border-bottom: 1px solid rgba(34, 27, 21, .28); border-radius: 0;
  padding: 12px 0; font-family: var(--sans); font-size: 16px; transition: border-color .3s;
  -webkit-appearance: none; appearance: none;
}
.form select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%237d5f30' stroke-width='1.5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 4px center; padding-right: 24px; }
.form textarea { resize: vertical; min-height: 96px; }
.form input:focus, .form select:focus, .form textarea:focus { outline: none; border-color: var(--olive-deep); }
.form input::placeholder, .form textarea::placeholder { color: var(--ink-faint); }
.checkbox-group { display: flex; gap: 12px; align-items: flex-start; }
.checkbox-group input[type="checkbox"] { width: 18px; height: 18px; margin-top: 3px; flex: none; accent-color: var(--olive-deep); -webkit-appearance: auto; appearance: auto; border: 0; padding: 0; }
.checkbox-group label { font-size: 13.5px; color: var(--ink-soft); line-height: 1.55; cursor: pointer; letter-spacing: 0; text-transform: none; font-weight: 400; }
.checkbox-group a { color: var(--olive-deep); }
.form .btn { justify-self: start; margin-top: 8px; }
.form-status { font-size: 15px; min-height: 1.5em; }
.form-status--success { color: #3f5f22; padding: 14px 18px; border-left: 2px solid #6f9447; background: rgba(111, 148, 71, .09); }
.form-status--error { color: #9c2f16; padding: 14px 18px; border-left: 2px solid #c65a3c; background: rgba(198, 90, 60, .08); }
.form-legal { font-size: 12px; color: var(--ink-faint); margin: -6px 0 0; line-height: 1.5; }
.form-legal a { color: inherit; }
.honeypot { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; }
/* Znaczek reCAPTCHA ukryty — w formularzach jest wymagana informacja tekstowa (.form-legal). */
.grecaptcha-badge { visibility: hidden !important; }
@media (max-width: 640px) { .form-row, .form-row--3 { grid-template-columns: 1fr; } }

/* ─── PODSTRONY ─── */
.page-hero { padding-block: calc(var(--nav-h) + clamp(56px, 9vw, 110px)) clamp(48px, 7vw, 88px); position: relative; background: var(--paper); border-bottom: 1px solid var(--line); }
.page-hero__title { font-size: clamp(44px, 6.6vw, 92px); max-width: 14ch; margin-bottom: 24px; }
.aside-card { border: 1px solid var(--line); background: var(--card); padding: 32px 30px; }
.aside-card + .aside-card { margin-top: 18px; }
.aside-card h3 { font-size: 24px; margin-bottom: 14px; }
.aside-card p, .aside-card li { color: var(--ink-soft); font-size: 15px; }
.aside-card ol, .aside-card ul { padding-left: 18px; margin: 0; display: grid; gap: 8px; }
.aside-card a { color: var(--olive-deep); }
.big-phone { font-family: var(--serif); font-size: 30px; margin: 0 0 10px; }
.big-phone a { color: var(--ink); text-decoration: none; }
.big-phone a:hover { color: var(--olive-deep); }
.two-col { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(48px, 7vw, 100px); align-items: start; }
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; } }

/* Widget zamówień Restaumatic */
#restaumatic_menu_widget_wrapper { background: var(--card); border: 1px solid var(--line); overflow: hidden; }
#restaumatic_menu_widget_wrapper iframe { display: block; width: 100%; min-height: 1400px; border: 0; }
@media (max-width: 600px) { #restaumatic_menu_widget_wrapper iframe { min-height: 1600px; } }
/* Ramka z własnym przewijaniem (konto Restaumatic bez trybu osadzania) */
#restaumatic_menu_widget_wrapper.is-scrolling iframe { min-height: 0; height: max(640px, calc(100svh - 150px)); }
.muted-note { margin-top: 22px; font-size: 14px; color: var(--ink-soft); }
.muted-note a { color: var(--olive-deep); }

/* Prose — polityka prywatności */
.prose h2 { font-size: 30px; margin: 48px 0 16px; }
.prose h3 { font-size: 22px; margin: 32px 0 12px; }
.prose p, .prose li { color: var(--ink-soft); }
.prose a { color: var(--olive-deep); }

/* ─── STOPKA (jedyna ciemna część) ─── */
.footer { background: var(--night); color: var(--ivory); padding-block: clamp(64px, 8vw, 96px) 36px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer__logo { height: 64px; width: auto; margin-bottom: 20px; }
.footer p, .footer li { color: var(--ivory-soft); font-size: 14.5px; }
.footer h4 { font-family: var(--sans); font-size: 11px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.footer a { text-decoration: none; color: var(--ivory-soft); transition: color .3s; }
.footer a:hover { color: var(--ivory); }
.footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px 24px; margin-top: 60px; padding-top: 26px; border-top: 1px solid var(--line-dark); font-size: 13px; color: var(--ivory-faint); }
.footer__bottom a { color: var(--ivory-faint); }
.footer--slim { padding-block: 32px; }
.footer--slim .footer__bottom { margin-top: 0; padding-top: 0; border-top: 0; }
@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer__grid { grid-template-columns: 1fr; } }

/* Pływający pasek akcji na telefonie */
.mobile-bar { display: none; }
@media (max-width: 760px) {
  .mobile-bar {
    display: grid; grid-template-columns: 1fr 1fr 1fr; position: fixed; inset: auto 0 0 0; z-index: 90;
    background: rgba(251, 248, 242, .97); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
    border-top: 1px solid var(--line); padding-bottom: env(safe-area-inset-bottom, 0px);
  }
  .mobile-bar a { display: flex; flex-direction: column; align-items: center; gap: 4px; padding: 11px 4px 12px; text-decoration: none; font-size: 10.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-soft); }
  .mobile-bar a + a { border-left: 1px solid var(--line); }
  .mobile-bar a svg { width: 19px; height: 19px; color: var(--olive-deep); }
  .mobile-bar a.is-primary { color: var(--ivory); background: var(--olive-deep); }
  .mobile-bar a.is-primary svg { color: var(--ivory); }
  body { padding-bottom: 64px; }
}

/* ─── ANIMACJE ─── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
