/* =========================================================
   PodoMed Oborniki — arkusz stylów
   Motyw wizualny: pieczęć z logo (podwójny złoty pierścień,
   szałwiowa kropka) rozwinięta w linie i znaczniki sekcji.
   ========================================================= */

/* ---------- 1. Tokeny ---------- */
:root {
  /* Kolory — jasny motyw (domyślny) */
  --bg:          #FAF4EC;   /* ecru z logo */
  --bg-alt:      #F3EADC;   /* cieplejszy pas sekcji */
  --surface:     #FFFCF7;
  --forest:      #2C3F35;   /* głęboka zieleń gabinetowa */
  --forest-deep: #22322A;
  --sage:        #8FAF97;
  --sage-deep:   #5E8168;
  --gold:        #B8912F;
  --gold-soft:   #DFC98F;
  /* stały akcent dla miejsc, które ZAWSZE są na ciemnym tle
     (hero, sekcja opinii, stopka) — nie zmienia się w trybie ciemnym */
  --gold-lt:     #E0C88E;
  --ink-on-gold: #2A2216;
  --ink:         #241F1A;   /* ciepły grafit */
  --ink-soft:    #5E5A50;   /* neutral z lekkim odchyleniem w oliwkę */
  --on-dark:     #F1E9DC;
  --on-dark-soft:#C2CDBF;
  --line:        #E2D6C3;
  --line-strong: #CDBCA2;
  --focus:       #1D6E4E;
  --accent-strong: #2C3F35;  /* nagłówki usług i ceny: na jasnym tle zieleń, na ciemnym szałwia */

  /* Typografia */
  --f-display: "Fraunces", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --f-body:    "Karla", "Helvetica Neue", Arial, sans-serif;

  --t-xs: 0.8125rem;
  --t-sm: 0.9375rem;
  --t-base: 1.0625rem;
  --t-lg: 1.1875rem;
  --t-xl: 1.5rem;
  --t-2xl: clamp(1.6rem, 1.2rem + 1.8vw, 2.35rem);
  --t-3xl: clamp(2.1rem, 1.4rem + 3.2vw, 3.5rem);

  /* Rytm */
  --gap: 1.25rem;
  --pad-section: clamp(3.5rem, 2rem + 6vw, 6.5rem);
  --wrap: 1120px;
  --radius: 4px;

  --shadow-sm: 0 1px 2px rgba(36, 31, 26, .05), 0 6px 18px rgba(36, 31, 26, .05);
  --shadow-md: 0 2px 4px rgba(36, 31, 26, .06), 0 18px 40px rgba(36, 31, 26, .09);
}

/* Wartości ciemnego motywu trzymamy raz, w jednym miejscu.
   Poniżej tylko mapujemy je na tokeny — w dwóch sytuacjach:
   1) system ustawiony na ciemny i użytkownik nie wybrał inaczej,
   2) użytkownik wybrał ciemny przełącznikiem (data-theme="dark"). */
:root {
  --d-bg:          #161D19;
  --d-bg-alt:      #1C251F;
  --d-surface:     #1F2A23;
  --d-forest:      #101613;
  --d-forest-deep: #0C110E;
  --d-sage:        #9CC0A6;
  --d-sage-deep:   #B4D2BC;
  --d-gold:        #D9B96C;
  --d-gold-soft:   #6E5C31;
  --d-ink:         #EDE5D7;
  --d-ink-soft:    #A8AC9E;
  --d-on-dark:     #EDE5D7;
  --d-on-dark-soft:#A9BCAE;
  --d-line:        #2F3B33;
  --d-line-strong: #435046;
  --d-focus:       #9CC0A6;
  --d-accent-strong: #B4D2BC;
  --d-shadow-sm: 0 1px 2px rgba(0, 0, 0, .3), 0 6px 18px rgba(0, 0, 0, .25);
  --d-shadow-md: 0 2px 4px rgba(0, 0, 0, .35), 0 18px 40px rgba(0, 0, 0, .4);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg: var(--d-bg);
    --bg-alt: var(--d-bg-alt);
    --surface: var(--d-surface);
    --forest: var(--d-forest);
    --forest-deep: var(--d-forest-deep);
    --sage: var(--d-sage);
    --sage-deep: var(--d-sage-deep);
    --gold: var(--d-gold);
    --gold-soft: var(--d-gold-soft);
    --ink: var(--d-ink);
    --ink-soft: var(--d-ink-soft);
    --on-dark: var(--d-on-dark);
    --on-dark-soft: var(--d-on-dark-soft);
    --line: var(--d-line);
    --line-strong: var(--d-line-strong);
    --focus: var(--d-focus);
    --accent-strong: var(--d-accent-strong);
    --shadow-sm: var(--d-shadow-sm);
    --shadow-md: var(--d-shadow-md);
  }
}

:root[data-theme="dark"] {
  --bg: var(--d-bg);
  --bg-alt: var(--d-bg-alt);
  --surface: var(--d-surface);
  --forest: var(--d-forest);
  --forest-deep: var(--d-forest-deep);
  --sage: var(--d-sage);
  --sage-deep: var(--d-sage-deep);
  --gold: var(--d-gold);
  --gold-soft: var(--d-gold-soft);
  --ink: var(--d-ink);
  --ink-soft: var(--d-ink-soft);
  --on-dark: var(--d-on-dark);
  --on-dark-soft: var(--d-on-dark-soft);
  --line: var(--d-line);
  --line-strong: var(--d-line-strong);
  --focus: var(--d-focus);
  --accent-strong: var(--d-accent-strong);
  --shadow-sm: var(--d-shadow-sm);
  --shadow-md: var(--d-shadow-md);
}

/* ---------- 2. Podstawy ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 6rem; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: var(--t-base);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 {
  font-family: var(--f-display);
  font-weight: 500;
  line-height: 1.15;
  text-wrap: balance;
  margin: 0;
  letter-spacing: -.01em;
}
h1 { font-size: var(--t-3xl); }
h2 { font-size: var(--t-2xl); }
h3 { font-size: var(--t-lg); letter-spacing: 0; }
p  { margin: 0; }

a { color: var(--sage-deep); text-decoration-thickness: 1px; text-underline-offset: .2em; }
a:hover { color: var(--gold); }

:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
  border-radius: 2px;
}

.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }

.visually-hidden {
  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: 1rem; top: -4rem; z-index: 100;
  background: var(--forest); color: var(--on-dark);
  padding: .6rem 1rem; border-radius: var(--radius); transition: top .2s;
}
.skip-link:focus { top: 1rem; }

.muted { color: var(--ink-soft); }
.small { font-size: var(--t-sm); }

/* ---------- 3. Przyciski ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5rem;
  padding: .85rem 1.5rem;
  font-family: var(--f-body);
  font-size: var(--t-sm);
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  transition: transform .18s ease, background-color .18s ease, color .18s ease, border-color .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-sm { padding: .6rem 1.1rem; font-size: var(--t-xs); }

.btn-primary { background: var(--forest); color: var(--on-dark); }
.btn-primary:hover { background: var(--sage-deep); color: #fff; }

.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.btn-light { background: var(--gold-lt); color: var(--ink-on-gold); border-color: transparent; }
.btn-light:hover { background: #fff; color: var(--forest-deep); }

/* ---------- 4. Nagłówek strony ---------- */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  padding-block: .7rem;
}

.brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; color: inherit; }
.brand-seal {
  width: 52px; height: 52px; border-radius: 50%;
  background: #FBF3E8;
  box-shadow: 0 0 0 1px var(--gold-soft);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-name { font-family: var(--f-display); font-size: 1.3rem; font-style: italic; }
.brand-sub  { font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-soft); }

.nav, .nav-plain { display: flex; align-items: center; gap: 1.75rem; }
.nav-list {
  display: flex; align-items: center; gap: 1.5rem;
  list-style: none; margin: 0; padding: 0;
}
.nav-list a {
  color: var(--ink); text-decoration: none;
  font-size: var(--t-sm); font-weight: 500;
  padding-block: .25rem;
  border-bottom: 1px solid transparent;
}
.nav-list a:hover { color: var(--sage-deep); border-bottom-color: var(--gold); }

/* przełącznik motywu — ikona pokazuje motyw, NA KTÓRY się przełączy */
.theme-toggle {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  width: 40px; height: 40px; padding: 0;
  background: transparent;
  border: 1px solid var(--line-strong); border-radius: 999px;
  color: var(--ink); cursor: pointer;
  transition: color .18s ease, border-color .18s ease;
}
.theme-toggle:hover { color: var(--gold); border-color: var(--gold); }
.theme-toggle .icon { flex: none; }

/* którą ikonę pokazać: przy ciemnym motywie słońce, przy jasnym księżyc */
.icon.when-dark { display: none; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .icon.when-dark { display: block; }
  :root:not([data-theme="light"]) .icon.when-light { display: none; }
}
:root[data-theme="dark"] .icon.when-dark { display: block; }
:root[data-theme="dark"] .icon.when-light { display: none; }
:root[data-theme="light"] .icon.when-dark { display: none; }
:root[data-theme="light"] .icon.when-light { display: block; }

.nav-toggle {
  display: none;
  align-items: center; gap: .55rem;
  background: transparent; border: 1px solid var(--line-strong);
  border-radius: 999px; padding: .5rem .9rem;
  color: var(--ink); font-family: var(--f-body); font-size: var(--t-xs);
  letter-spacing: .08em; text-transform: uppercase; cursor: pointer;
}
.nav-toggle-bars, .nav-toggle-bars::before, .nav-toggle-bars::after {
  display: block; width: 16px; height: 1.5px; background: currentColor; content: "";
}
.nav-toggle-bars { position: relative; }
.nav-toggle-bars::before { position: absolute; top: -5px; }
.nav-toggle-bars::after  { position: absolute; top: 5px; }

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    display: none;
    position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    padding: .5rem 1.25rem 1.25rem;
  }
  .nav.is-open { display: flex; }
  .nav-list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav-list a { display: block; padding: .9rem .25rem; border-bottom: 1px solid var(--line); }
  .theme-toggle { margin-top: 1rem; align-self: flex-start; }
  .nav-cta { margin-top: 1rem; }
  .site-header { position: sticky; }
  .header-inner { position: relative; }
}

/* ---------- 5. Hero ---------- */
.hero {
  background:
    radial-gradient(120% 90% at 80% 0%, rgba(143, 175, 151, .18), transparent 60%),
    linear-gradient(180deg, var(--forest) 0%, var(--forest-deep) 100%);
  color: var(--on-dark);
  padding-block: clamp(3rem, 1.5rem + 7vw, 6rem);
  border-bottom: 1px solid var(--gold-soft);
}
.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
}
.hero-copy { display: flex; flex-direction: column; align-items: flex-start; gap: 1.25rem; }
.hero h1 { color: #fff; max-width: 15ch; }
.hero .lead {
  font-size: var(--t-lg);
  color: var(--on-dark-soft);
  max-width: 46ch;
}
.eyebrow {
  font-size: var(--t-xs); letter-spacing: .16em; text-transform: uppercase;
  color: var(--sage);
  display: flex; align-items: center; gap: .6rem;
}
.eyebrow > span { flex: 0 0 auto; }
.eyebrow::after {
  content: ""; flex: 0 1 4rem; height: 1px; min-width: 1.5rem;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.hero-status {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: var(--t-sm);
  padding: .35rem .95rem .35rem .7rem;
  border: 1px solid rgba(223, 201, 143, .35);
  border-radius: 999px;
  color: var(--on-dark);
}
.hero-status::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--sage); box-shadow: 0 0 0 3px rgba(143, 175, 151, .25);
}
.hero-status[data-open="false"]::before { background: var(--gold); box-shadow: 0 0 0 3px rgba(184, 145, 47, .2); }

.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; }
.hero .btn-ghost { color: var(--on-dark); border-color: rgba(223, 201, 143, .5); }
.hero .btn-ghost:hover { color: var(--gold-lt); border-color: var(--gold-lt); }

.hero-address { font-size: var(--t-sm); color: var(--on-dark-soft); }

.hero-seal { display: flex; flex-direction: column; align-items: center; gap: 1.1rem; }
.hero-seal img {
  width: min(100%, 340px); aspect-ratio: 1; border-radius: 50%;
  background: #FBF3E8;
  padding: 4px;
  box-shadow: 0 0 0 1px var(--gold), 0 24px 60px rgba(0, 0, 0, .35);
}
.hero-rating {
  font-size: var(--t-sm); color: var(--on-dark-soft); text-align: center; max-width: 26ch;
}
.hero-rating strong { color: #fff; }
.stars { color: var(--gold-lt); letter-spacing: .12em; }
.stars-lg { font-size: 1.9rem; }

@media (max-width: 860px) {
  .hero-inner { grid-template-columns: minmax(0, 1fr); }
  .eyebrow::after { display: none; }
  .hero-status { border-radius: 14px; }
  .hero-seal { order: -1; }
  .hero-seal img { width: min(58%, 220px); }
  .hero-rating { max-width: none; }
  .hero h1 { max-width: none; }
}

/* ---------- 7. Sekcje ---------- */
.section { padding-block: var(--pad-section); }
.section-alt { background: var(--bg-alt); }
.section-dark { background: var(--forest); color: var(--on-dark); }

.section-head { display: flex; flex-direction: column; align-items: flex-start; gap: .9rem; margin-bottom: 2.75rem; }
.section-head h2, .section-head h1 { max-width: 22ch; }
.section-lead { color: var(--ink-soft); font-size: var(--t-lg); max-width: 60ch; }

/* znacznik sekcji — nawiązanie do kropki i pierścienia z logo */
.marker {
  display: flex; align-items: center; gap: .7rem;
  font-size: var(--t-xs); letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold);
}
.marker::before {
  content: ""; width: 9px; height: 9px; border-radius: 50%;
  background: var(--sage); box-shadow: 0 0 0 3px var(--bg), 0 0 0 4px var(--gold-soft);
  flex: none;
}
.section-alt .marker::before { box-shadow: 0 0 0 3px var(--bg-alt), 0 0 0 4px var(--gold-soft); }
.marker-light { color: var(--gold-lt); justify-content: center; }
.marker-light::before { box-shadow: 0 0 0 3px var(--forest), 0 0 0 4px var(--gold); }

.center-block { display: flex; justify-content: center; margin-top: 2.5rem; }

/* ---------- 8. O gabinecie ---------- */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, .75fr);
  gap: clamp(1.75rem, 4vw, 3.5rem);
  align-items: start;
}
.about-text { display: flex; flex-direction: column; gap: 1.1rem; max-width: 62ch; }
.about-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 1rem;
}
.ticks { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .7rem; }
.ticks li { position: relative; padding-left: 1.6rem; font-size: var(--t-sm); color: var(--ink-soft); }
.ticks li::before {
  content: ""; position: absolute; left: 0; top: .55em;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--sage); outline: 1px solid var(--gold-soft); outline-offset: 2px;
}
@media (max-width: 820px) { .about-grid { grid-template-columns: 1fr; } }

/* ---------- 9. Usługi i cennik (jedna sekcja) ---------- */
.offers {
  display: flex; flex-direction: column;
  border-top: 1px solid var(--line-strong);
}
.offer {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: 1.25rem clamp(2rem, 4vw, 4rem);
  align-items: start;
  padding-block: clamp(1.75rem, 1rem + 1.6vw, 2.5rem);
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 7rem;
}
.offer-text { display: flex; flex-direction: column; gap: .6rem; }
.offer-text h3 { font-size: 1.3rem; color: var(--accent-strong); }
.offer-text p { font-size: var(--t-sm); color: var(--ink-soft); max-width: 48ch; }
.offer:target h3 { color: var(--gold); }

@media (max-width: 780px) { .offer { grid-template-columns: minmax(0, 1fr); } }

.price-table { width: 100%; border-collapse: collapse; font-size: var(--t-sm); }
.price-table th {
  text-align: left; font-weight: 400; color: var(--ink);
  padding: .5rem 0; vertical-align: top;
}
.price-table td { padding: .5rem 0; vertical-align: top; }
.price-table tr:first-child th, .price-table tr:first-child td { padding-top: 0; }
.price-table tr + tr th, .price-table tr + tr td { border-top: 1px dotted var(--line-strong); }
.price-table .t { color: var(--ink-soft); font-size: var(--t-xs); text-align: right; padding-right: 1.25rem; white-space: nowrap; font-variant-numeric: tabular-nums; }
.price-table .p { text-align: right; font-weight: 700; white-space: nowrap; font-variant-numeric: tabular-nums; color: var(--accent-strong); }

.price-note {
  margin-top: 2.5rem; padding: 1.1rem 1.4rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 3px solid var(--sage);
  border-radius: var(--radius);
  font-size: var(--t-sm); color: var(--ink-soft);
}
/* ---------- 11. Opinie ---------- */
.reviews { display: flex; flex-direction: column; align-items: center; gap: .6rem; text-align: center; }
.reviews-number { font-family: var(--f-display); font-size: clamp(2.6rem, 2rem + 3vw, 4rem); line-height: 1; color: #fff; }
.reviews-number strong { font-weight: 500; }
.reviews-caption { color: var(--on-dark-soft); max-width: 42ch; }
/* cytaty pacjentów — po trzy w rzędzie, wszystkie boksy równej wysokości */
.quotes {
  width: 100%; margin-top: 2.75rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 1.5rem;
  text-align: left;
}
@media (min-width: 700px) { .quotes { grid-auto-rows: 1fr; } }
.quote {
  display: flex; flex-direction: column;
  margin: 0;
  padding: 1.5rem 1.4rem 1.15rem;
  background: rgba(255, 255, 255, .045);
  border: 1px solid rgba(224, 200, 142, .22);
  border-radius: var(--radius);
}
.quote::before {
  content: "„";
  display: block;
  font-family: var(--f-display); font-size: 2.4rem; line-height: .6;
  color: var(--gold-lt);
  margin-bottom: .55rem;
}
.quote blockquote { margin: 0 0 1rem; }
.quote p {
  font-family: var(--f-display); font-style: italic;
  font-size: 1.0625rem; line-height: 1.55;
  color: var(--on-dark);
}
.quote figcaption {
  display: flex; justify-content: space-between; align-items: baseline; gap: 1rem;
  margin-top: auto; padding-top: .75rem;
  border-top: 1px solid rgba(224, 200, 142, .18);
}
.quote-name {
  font-size: var(--t-xs); font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--gold-lt);
}
.quote-date { font-size: var(--t-xs); color: var(--on-dark-soft); font-variant-numeric: tabular-nums; }

/* ---------- 12. Galeria ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 1.25rem;
}
.shot { margin: 0; display: flex; flex-direction: column; gap: .6rem; }
.shot img, .shot-ph {
  width: 100%; aspect-ratio: 4 / 3; border-radius: var(--radius);
  object-fit: cover;
  border: 1px solid var(--line);
}
.shot-ph {
  background:
    repeating-linear-gradient(45deg, transparent 0 12px, color-mix(in srgb, var(--sage) 22%, transparent) 12px 13px),
    var(--surface);
}
.shot figcaption { font-size: var(--t-xs); color: var(--ink-soft); letter-spacing: .04em; }

/* ---------- 13. FAQ ---------- */
.faq { display: flex; flex-direction: column; gap: .75rem; max-width: 820px; }
.qa {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.qa summary {
  cursor: pointer; list-style: none;
  padding: 1.05rem 3rem 1.05rem 1.25rem;
  font-family: var(--f-display); font-size: var(--t-lg);
  position: relative;
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary::after {
  content: "+"; position: absolute; right: 1.25rem; top: 50%; transform: translateY(-50%);
  font-family: var(--f-body); font-size: 1.4rem; color: var(--gold); line-height: 1;
}
.qa[open] summary::after { content: "−"; }
.qa[open] summary { color: var(--sage-deep); }
.qa-body { padding: 0 1.25rem 1.25rem; font-size: var(--t-sm); color: var(--ink-soft); max-width: 65ch; }

/* ---------- 14. Kontakt ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: clamp(1.75rem, 4vw, 3.5rem);
  align-items: start;
}
.contact-col { display: flex; flex-direction: column; gap: .5rem; }
.contact-col h3 {
  font-size: var(--t-xs); letter-spacing: .16em; text-transform: uppercase;
  font-family: var(--f-body); font-weight: 700; color: var(--gold);
  margin-top: 1.4rem;
}
.contact-col h3:first-child { margin-top: 0; }
.contact-line { font-size: var(--t-base); line-height: 1.8; }
.socials { display: flex; gap: .6rem; margin-top: .2rem; }
.social {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border: 1px solid var(--line-strong); border-radius: 50%;
  color: var(--ink-soft); text-decoration: none;
  transition: color .18s ease, border-color .18s ease, transform .18s ease;
}
.social:hover { color: var(--gold); border-color: var(--gold); transform: translateY(-2px); }

.hours { width: 100%; border-collapse: collapse; font-size: var(--t-sm); max-width: 420px; }
.hours th { text-align: left; font-weight: 400; padding: .6rem 0; }
.hours td { text-align: right; padding: .6rem 0; font-variant-numeric: tabular-nums; }
.hours tr + tr th, .hours tr + tr td { border-top: 1px dotted var(--line-strong); }
.hours .closed { color: var(--ink-soft); }
.hours tr.today th, .hours tr.today td { color: var(--sage-deep); font-weight: 700; }
.hours tr.today th::before { content: "▸ "; color: var(--gold); }

.map-frame {
  margin-top: 2.75rem;
  overflow-anchor: none;   /* doczytująca się mapa nie ma przerywać przewijania na górę */
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  line-height: 0;
}
.map-frame iframe { width: 100%; height: clamp(280px, 40vh, 420px); border: 0; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .map-frame iframe { filter: invert(.9) hue-rotate(180deg) saturate(.8); }
}
:root[data-theme="dark"] .map-frame iframe { filter: invert(.9) hue-rotate(180deg) saturate(.8); }

/* ---------- 15. Stopka ---------- */
.site-footer {
  background: var(--forest-deep);
  color: var(--on-dark-soft);
  padding-block: clamp(2.5rem, 1.5rem + 4vw, 4rem) 1.5rem;
  font-size: var(--t-sm);
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(223, 201, 143, .2);
}
.footer-brand { display: flex; flex-direction: column; gap: .9rem; }
.footer-brand img { width: 64px; height: 64px; border-radius: 50%; background: #FBF3E8; }
.footer-brand strong { color: var(--on-dark); font-family: var(--f-display); font-size: 1.1rem; }
.footer-col h3 {
  font-family: var(--f-body); font-size: var(--t-xs); font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; color: var(--gold-lt);
  margin-bottom: .8rem;
}
.footer-col p { line-height: 1.9; }
.footer-links { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .4rem; }
.site-footer a { color: var(--on-dark); text-decoration: none; border-bottom: 1px solid transparent; }
.site-footer a:hover { color: var(--gold-lt); border-bottom-color: currentColor; }
.site-footer .muted { color: var(--on-dark-soft); }
.site-footer .btn-light { margin-top: .9rem; }

.footer-bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: .5rem;
  padding-top: 1.5rem;
  font-size: var(--t-xs);
}

/* ---------- 16. Pasek CTA na telefonie ---------- */
.mobile-bar { display: none; }
@media (max-width: 720px) {
  .mobile-bar {
    display: flex; gap: .6rem;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 50;
    padding: .7rem 1rem calc(.7rem + env(safe-area-inset-bottom));
    background: color-mix(in srgb, var(--bg) 94%, transparent);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--line);
  }
  .mobile-bar .btn { flex: 1; }
  body { padding-bottom: 4.5rem; }
  .nav-cta { display: none; }
}

/* ---------- 17. Animacje wejścia ---------- */
/* animacja tylko gdy JS działa — bez niego treść jest po prostu widoczna */
.js .reveal { opacity: 0; transform: translateY(14px); }
.js .reveal.is-in { opacity: 1; transform: none; transition: opacity .6s ease, transform .6s cubic-bezier(.22, .61, .36, 1); }

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

/* ---------- 18. Podstrona tekstowa (polityka prywatności) ---------- */
.prose { max-width: 68ch; display: flex; flex-direction: column; gap: 1.1rem; }
.prose h2 { font-size: var(--t-xl); margin-top: 1.5rem; }
.prose ul { margin: 0; padding-left: 1.25rem; display: flex; flex-direction: column; gap: .45rem; }
.prose li { color: var(--ink-soft); }
.prose p { color: var(--ink-soft); }
.prose p.first { color: var(--ink); font-size: var(--t-lg); }

/* ---------- 19. Druk ---------- */
@media print {
  .site-header, .mobile-bar, .map-frame, .hero-actions, .reviews-actions { display: none; }
  body { background: #fff; color: #000; }
  .hero { background: #fff; color: #000; }
}
