@font-face {
  font-family: 'Cormorant';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('/assets/fonts/cormorant-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2212;
}
@font-face {
  font-family: 'Cormorant';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('/assets/fonts/cormorant-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+1E00-1E9F, U+2020, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('/assets/fonts/manrope-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2212;
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('/assets/fonts/manrope-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+1E00-1E9F, U+2020, U+2C60-2C7F, U+A720-A7FF;
}

/* ===== Tokeny ============================================================ */
:root {
  --ivory: #f7f2e9;
  --ivory-deep: #f1eade;
  --cream: #fffcf7;
  --ink: #2c2823;
  --ink-soft: #5a5248;
  --sage: #4e6150;
  --sage-dark: #3b4a3d;
  --sage-tint: #e7ece3;
  --sand: #c0a06a;          /* tylko dekoracje: linie, ramki, obwódki */
  --sand-ink: #7d6229;      /* ten sam akcent, ale w wersji spełniającej kontrast AA dla tekstu */
  --sand-tint: #f0e6d5;
  --line: #e2d9c9;

  --wrap: 1180px;
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --shadow-sm: 0 1px 2px rgba(44, 40, 35, .04), 0 6px 18px rgba(44, 40, 35, .05);
  --shadow-md: 0 2px 6px rgba(44, 40, 35, .05), 0 18px 40px rgba(44, 40, 35, .08);
  --hdr-h: 62px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
ul, ol { margin: 0; padding: 0; }

h1, h2, h3, h4 {
  font-family: 'Cormorant', Georgia, 'Times New Roman', serif;
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: -.005em;
  margin: 0;
  color: var(--ink);
}
h1 { font-size: clamp(2.35rem, 1.6rem + 3.2vw, 4.1rem); font-weight: 500; }
h2 { font-size: clamp(1.85rem, 1.35rem + 2.1vw, 2.9rem); font-weight: 500; }
h3 { font-size: clamp(1.3rem, 1.12rem + .75vw, 1.65rem); }
h4 { font-size: 1.12rem; font-family: 'Manrope', sans-serif; font-weight: 600; letter-spacing: .01em; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

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

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

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 20px; }
@media (min-width: 768px) { .wrap { padding-inline: 32px; } }

.skip {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--sage); color: #fff; padding: 10px 16px; border-radius: var(--r-sm);
  text-decoration: none; transition: top .18s var(--ease);
}
.skip:focus { top: 12px; }

.muted { color: var(--ink-soft); }
.ico { width: 20px; height: 20px; flex: none; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip-path: inset(50%); white-space: nowrap; border: 0;
}

/* ===== Przyciski ========================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  min-height: 48px; padding: .7em 1.35em;
  border: 1px solid transparent; border-radius: var(--r-sm);
  font: inherit; font-weight: 600; font-size: .95rem; letter-spacing: .01em;
  text-decoration: none; cursor: pointer;
  transition: background-color .2s var(--ease), color .2s var(--ease),
              border-color .2s var(--ease), transform .2s var(--ease), box-shadow .2s var(--ease);
}
.btn--primary { background: var(--sage); color: #fff; }
.btn--primary:hover { background: var(--sage-dark); transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.btn--ghost { background: transparent; color: var(--sage); border-color: var(--line); }
.btn--ghost:hover { background: var(--sage-tint); border-color: var(--sage); transform: translateY(-1px); }
.btn--light { background: var(--cream); color: var(--sage); }
.btn--light:hover { background: #fff; transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.btn--sm { min-height: 42px; padding: .5em 1.1em; font-size: .88rem; }
.btn:active { transform: translateY(0); }
.btn[aria-disabled="true"] { opacity: .5; pointer-events: none; }

.link-arrow {
  display: inline-flex; align-items: center; gap: .4em; min-height: 44px;
  color: var(--sage); font-weight: 600; font-size: .93rem; text-decoration: none;
}
.link-arrow::after { content: '→'; transition: transform .2s var(--ease); }
.link-arrow:hover { color: var(--sage-dark); }
.link-arrow:hover::after { transform: translateX(4px); }

/* ===== Nagłówek ========================================================== */
.hdr {
  position: sticky; top: 0; z-index: 90;
  background: rgba(247, 242, 233, .93);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.hdr__inner { display: flex; align-items: center; gap: 16px; min-height: var(--hdr-h); }

.logo { display: flex; flex-direction: column; text-decoration: none; line-height: 1; margin-right: auto; }
.logo__mark {
  font-family: 'Cormorant', Georgia, serif; font-size: 1.85rem; font-weight: 600;
  letter-spacing: .04em; color: var(--sage);
}
.logo__sub {
  font-size: .63rem; text-transform: uppercase; letter-spacing: .22em;
  color: var(--ink-soft); margin-top: 3px;
}

.nav { display: none; }
.nav ul { display: flex; gap: 4px; list-style: none; }
.nav a {
  display: block; padding: 8px 11px; border-radius: var(--r-sm);
  font-size: .88rem; font-weight: 500; text-decoration: none; color: var(--ink-soft);
  transition: color .18s var(--ease), background-color .18s var(--ease);
}
.nav a:hover { color: var(--sage); background: var(--sage-tint); }
.nav a[aria-current="page"] { color: var(--sage); font-weight: 600; }

.hdr__actions { display: flex; align-items: center; gap: 10px; }
.hdr__tel {
  display: none; align-items: center; gap: .45em;
  color: var(--ink); font-weight: 600; font-size: .92rem; text-decoration: none;
}
.hdr__tel:hover { color: var(--sage); }
.hdr__cta { display: none; }

.burger {
  width: 46px; height: 46px; display: grid; place-content: center; gap: 5px;
  background: transparent; border: 1px solid var(--line); border-radius: var(--r-sm); cursor: pointer;
}
.burger span {
  display: block; width: 20px; height: 1.5px; background: var(--ink);
  transition: transform .22s var(--ease), opacity .18s var(--ease);
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mnav {
  border-top: 1px solid var(--line); background: var(--ivory);
  max-height: calc(100dvh - var(--hdr-h)); overflow-y: auto;
  animation: slideDown .22s var(--ease);
}
.mnav[hidden] { display: none; }
@keyframes slideDown { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }
.mnav ul { list-style: none; padding: 8px 20px 4px; }
.mnav a {
  display: block; padding: 14px 4px; text-decoration: none; font-weight: 500;
  border-bottom: 1px solid var(--line);
}
.mnav li:last-child a { border-bottom: 0; }
.mnav a[aria-current="page"] { color: var(--sage); font-weight: 700; }
.mnav__foot { padding: 12px 20px 22px; display: grid; gap: 10px; justify-items: start; }
.mnav__foot .btn { width: 100%; }
.mnav__foot p { font-size: .88rem; color: var(--ink-soft); margin: 0; }

@media (min-width: 1024px) {
  :root { --hdr-h: 78px; }
  .nav { display: block; }
  .burger { display: none; }
  .hdr__tel, .hdr__cta { display: inline-flex; }
  .logo__mark { font-size: 2.1rem; }
}
@media (min-width: 640px) and (max-width: 1023.98px) {
  .hdr__tel { display: inline-flex; }
}

/* ===== Okruszki ========================================================== */
.crumbs { border-bottom: 1px solid var(--line); background: var(--ivory-deep); }
.crumbs ol {
  display: flex; flex-wrap: wrap; gap: .35em; list-style: none;
  padding-block: 11px; font-size: .82rem; color: var(--ink-soft);
}
.crumbs li + li::before { content: '/'; margin-right: .35em; color: var(--line); }
.crumbs a { text-decoration: none; display: inline-block; padding-block: 2px; }
.crumbs a:hover { color: var(--sage); text-decoration: underline; }
.crumbs [aria-current] { color: var(--ink); }

/* ===== Sekcje ============================================================ */
section { padding-block: clamp(52px, 7vw, 96px); }
section.tight { padding-block: clamp(38px, 5vw, 64px); }

.sec-head { max-width: 62ch; margin-bottom: clamp(28px, 4vw, 48px); }
.sec-head--center { margin-inline: auto; text-align: center; }
.sec-head__lead { margin-top: .8em; color: var(--ink-soft); font-size: 1.03rem; }
.eyebrow {
  display: flex; align-items: center; gap: .6em;
  font-size: .72rem; text-transform: uppercase; letter-spacing: .2em;
  color: var(--sand-ink); font-weight: 600; margin: 0 0 .9em;
}
.eyebrow::after { content: ''; height: 1px; width: 44px; background: var(--sand); opacity: .55; }
.sec-head--center .eyebrow { justify-content: center; }
.sec-head--center .eyebrow::before {
  content: ''; height: 1px; width: 44px; background: var(--sand); opacity: .55;
}

.bg-cream { background: var(--cream); }
.bg-deep { background: var(--ivory-deep); }

/* ===== Hero ============================================================== */
.hero { position: relative; padding-block: clamp(44px, 6vw, 84px) clamp(52px, 7vw, 96px); overflow: hidden; }
.hero::before {
  content: ''; position: absolute; inset: -30% 50% auto -20%; height: 70vh;
  background: radial-gradient(ellipse at 30% 40%, rgba(78, 97, 80, .07), transparent 62%);
  pointer-events: none;
}
.hero__grid { display: grid; gap: clamp(32px, 5vw, 64px); align-items: center; position: relative; }
.hero__claim {
  font-family: 'Cormorant', Georgia, serif; font-size: clamp(1.15rem, .9rem + 1vw, 1.5rem);
  color: var(--sage); font-style: italic; margin: 0 0 .6em;
}
.hero__loc {
  display: inline-flex; align-items: center; gap: .45em;
  font-size: .78rem; text-transform: uppercase; letter-spacing: .18em;
  color: var(--ink-soft); margin: 0 0 1.4em;
}
.hero__loc .ico { width: 16px; height: 16px; color: var(--sand); }
.hero h1 { margin-bottom: .3em; }
.hero h1 em { font-style: italic; color: var(--sage); }
.hero__lead { font-size: clamp(1rem, .95rem + .3vw, 1.12rem); color: var(--ink-soft); max-width: 52ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero__meta {
  display: flex; flex-wrap: wrap; gap: 8px 26px; margin-top: 30px;
  padding-top: 22px; border-top: 1px solid var(--line); font-size: .89rem; color: var(--ink-soft);
}
.hero__meta span { display: inline-flex; align-items: center; gap: .5em; min-height: 30px; }
.hero__meta a { display: inline-flex; align-items: center; min-height: 30px; }
.hero__meta .ico { width: 17px; height: 17px; color: var(--sage); }

.hero__media { position: relative; }
.hero__media img {
  width: 100%; border-radius: var(--r-lg); box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3; object-fit: cover;
}
.hero__media::after {
  content: ''; position: absolute; inset: 16px -16px -16px 16px; z-index: -1;
  border: 1px solid var(--sand); border-radius: var(--r-lg); opacity: .55;
}
.hero__badge {
  position: absolute; left: -8px; bottom: -18px;
  background: var(--cream); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 12px 16px; box-shadow: var(--shadow-sm); max-width: 220px;
}
.hero__badge strong { display: block; font-size: .95rem; }
.hero__badge span { font-size: .8rem; color: var(--ink-soft); }

@media (min-width: 900px) {
  .hero__grid { grid-template-columns: 1.05fr .95fr; }
  .hero__badge { left: -24px; }
}

/* ===== Siatki i karty ==================================================== */
.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } .grid-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }

.card {
  background: var(--cream); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: clamp(22px, 3vw, 30px);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.card--hover:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: #d5c9b2; }
.card h3 { margin-bottom: .45em; }
.card p { color: var(--ink-soft); font-size: .97rem; }

.card__icon {
  width: 46px; height: 46px; display: grid; place-content: center;
  background: var(--sage-tint); color: var(--sage); border-radius: 14px; margin-bottom: 18px;
}
.card__icon .ico { width: 23px; height: 23px; }

/* karta usługi */
.svc { display: flex; flex-direction: column; }
.svc h3 { font-size: 1.32rem; }
.svc__meta {
  display: flex; flex-wrap: wrap; gap: 8px; margin: 14px 0 18px;
}
.chip {
  display: inline-flex; align-items: center; gap: .35em;
  background: var(--sand-tint); color: #7a6234; border-radius: 999px;
  padding: 4px 11px; font-size: .78rem; font-weight: 600; letter-spacing: .01em;
}
.chip--sage { background: var(--sage-tint); color: var(--sage-dark); }
.svc .link-arrow { margin-top: auto; align-self: flex-start; }

/* ===== O gabinecie ======================================================= */
.split { display: grid; gap: clamp(28px, 4vw, 56px); align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; } .split--wide { grid-template-columns: 1.15fr .85fr; } }
.split__media img { border-radius: var(--r-lg); box-shadow: var(--shadow-md); width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.split__media--portrait img { aspect-ratio: 3/4; }

.feature-list { list-style: none; display: grid; gap: 14px; margin-top: 26px; }
.feature-list li { display: flex; gap: 12px; align-items: flex-start; font-size: .97rem; }
.feature-list .ico { width: 21px; height: 21px; color: var(--sage); margin-top: 2px; }
.feature-list strong { display: block; }
.feature-list span { color: var(--ink-soft); }

.prose { max-width: 68ch; }
.prose p { color: var(--ink-soft); }
.prose p + p { margin-top: 0; }

.quote {
  border-left: 2px solid var(--sand); padding: 6px 0 6px 22px;
  font-family: 'Cormorant', Georgia, serif; font-size: clamp(1.2rem, 1rem + .9vw, 1.55rem);
  line-height: 1.42; color: var(--ink); font-style: italic;
}

/* ===== Oferta ============================================================ */
.anchors { display: flex; flex-wrap: wrap; gap: 8px; }
.anchors a {
  display: inline-flex; align-items: center; min-height: 40px; padding: 7px 15px;
  background: var(--cream); border: 1px solid var(--line); border-radius: 999px;
  font-size: .87rem; font-weight: 500; text-decoration: none; color: var(--ink-soft);
  transition: all .2s var(--ease);
}
.anchors a:hover { border-color: var(--sage); color: var(--sage); background: var(--sage-tint); }

.service {
  scroll-margin-top: calc(var(--hdr-h) + 16px);
  padding-block: clamp(38px, 5vw, 62px);
  border-top: 1px solid var(--line);
}
.service:first-of-type { border-top: 0; }
.service__head { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; }
.service__head .card__icon { margin-bottom: 0; }
.service__title-sub { display: block; font-family: 'Manrope', sans-serif; font-size: .8rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--sand-ink); margin-top: 8px; }
.service__lead { font-size: 1.07rem; max-width: 65ch; }
.service__body { display: grid; gap: clamp(24px, 3vw, 40px); margin-top: 26px; }
@media (min-width: 900px) { .service__body { grid-template-columns: 1.25fr .75fr; align-items: start; } }

.benefits { list-style: none; display: grid; gap: 10px; }
.benefits li { display: flex; gap: 10px; align-items: flex-start; font-size: .95rem; color: var(--ink-soft); }
.benefits .ico { width: 18px; height: 18px; color: var(--sage); margin-top: 3px; }

.aside-card {
  background: var(--cream); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 24px; position: sticky; top: calc(var(--hdr-h) + 16px);
}
.aside-card h4 { margin-bottom: 14px; }
.aside-card + .aside-card { margin-top: 18px; }
.aside-card .btn { width: 100%; margin-top: 18px; }
.price-rows { list-style: none; display: grid; gap: 0; }
.price-rows li {
  display: flex; justify-content: space-between; align-items: baseline; gap: 12px;
  padding: 11px 0; border-bottom: 1px dashed var(--line); font-size: .93rem;
}
.price-rows li:last-child { border-bottom: 0; }
.price-rows .price { font-weight: 700; color: var(--sage); white-space: nowrap; }
.price-rows .label { color: var(--ink-soft); }

details.more {
  margin-top: 20px; border-top: 1px solid var(--line); padding-top: 4px;
}
details.more > summary {
  list-style: none; cursor: pointer; padding: 14px 0; font-weight: 600; font-size: .92rem;
  color: var(--sage); display: flex; align-items: center; gap: .5em;
}
details.more > summary::-webkit-details-marker { display: none; }
details.more > summary::after { content: '▾'; transition: transform .2s var(--ease); }
details.more[open] > summary::after { transform: rotate(180deg); }
details.more[open] > summary .more__show { display: none; }
details.more:not([open]) > summary .more__hide { display: none; }
.variant { padding: 16px 0; border-top: 1px solid var(--line); }
.variant:first-of-type { border-top: 0; }
.variant strong { display: block; margin-bottom: 4px; }
.variant p { color: var(--ink-soft); font-size: .95rem; }

/* ===== Cennik ============================================================ */
.price-grid { display: grid; gap: 18px; align-items: start; }
@media (min-width: 760px) { .price-grid { grid-template-columns: repeat(2, 1fr); } }
.price-card { background: var(--cream); border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; }
.price-card__head {
  display: flex; align-items: center; gap: 12px;
  padding: 18px 22px; border-bottom: 1px solid var(--line); background: var(--ivory-deep);
}
.price-card__head .ico { width: 22px; height: 22px; color: var(--sage); }
.price-card__head h3 { font-size: 1.25rem; }
.price-card__head span { display: block; font-family: 'Manrope', sans-serif; font-size: .74rem; text-transform: uppercase; letter-spacing: .12em; color: var(--sand-ink); font-weight: 600; }
.price-card table { width: 100%; border-collapse: collapse; }
.price-card caption { text-align: left; padding: 0; height: 0; overflow: hidden; position: absolute; clip-path: inset(50%); }
.price-card th, .price-card td { padding: 13px 22px; text-align: left; font-size: .94rem; vertical-align: baseline; }
.price-card thead th { font-size: .73rem; text-transform: uppercase; letter-spacing: .12em; color: var(--ink-soft); font-weight: 600; padding-bottom: 6px; padding-top: 16px; }
.price-card tbody tr + tr th, .price-card tbody tr + tr td { border-top: 1px solid var(--line); }
.price-card tbody th { font-weight: 500; color: var(--ink-soft); }
.price-card td.price { text-align: right; font-weight: 700; color: var(--sage); font-size: 1.02rem; white-space: nowrap; }
.price-card td.time { white-space: nowrap; color: var(--ink); }
.price-card__foot { padding: 14px 22px 20px; }

.price-note {
  margin-top: 26px; padding: 18px 22px; border: 1px dashed var(--line);
  border-radius: var(--r-md); font-size: .92rem; color: var(--ink-soft); background: var(--cream);
}

/* ===== Voucher =========================================================== */
/* Kolory dziedziczą się w dół — karta vouchera resetuje je z powrotem na ciemne. */
.voucher {
  background: linear-gradient(180deg, var(--sage) 0%, var(--sage-dark) 100%);
  color: rgba(255, 255, 255, .84);
}
.voucher h2, .voucher h3, .voucher strong { color: #fff; }
.voucher .eyebrow { color: #ddc99c; }
.voucher .eyebrow::after, .voucher .eyebrow::before { background: #ddc99c; }
.voucher .sec-head__lead { color: rgba(255, 255, 255, .84); }
.voucher__grid { display: grid; gap: clamp(30px, 4vw, 56px); align-items: center; }
@media (min-width: 900px) { .voucher__grid { grid-template-columns: 1.05fr .95fr; } }
.voucher__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.voucher .btn--ghost { color: #fff; border-color: rgba(255, 255, 255, .38); }
.voucher .btn--ghost:hover { background: rgba(255, 255, 255, .12); border-color: #fff; }

.occasions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; list-style: none; }
.occasions li {
  padding: 5px 13px; border: 1px solid rgba(255, 255, 255, .28); border-radius: 999px;
  font-size: .84rem; color: rgba(255, 255, 255, .9);
}

.voucher-card {
  background: var(--cream); color: var(--ink); border-radius: var(--r-lg);
  padding: clamp(24px, 3.5vw, 38px); box-shadow: var(--shadow-md);
  border: 1px solid rgba(192, 160, 106, .5); position: relative; overflow: hidden;
}
.voucher-card::before {
  content: ''; position: absolute; inset: 10px; border: 1px solid var(--sand);
  border-radius: 16px; opacity: .35; pointer-events: none;
}
.voucher-card__label { font-size: .7rem; text-transform: uppercase; letter-spacing: .24em; color: var(--sand-ink); font-weight: 700; }
.voucher-card__title { font-family: 'Cormorant', Georgia, serif; font-size: clamp(1.9rem, 1.4rem + 2vw, 2.6rem); line-height: 1.1; margin: 10px 0 14px; color: var(--ink); }
.voucher-card p:not([class]) { color: var(--ink-soft); font-size: .93rem; }
.voucher-card__rule { height: 1px; background: var(--line); margin: 20px 0; }
.voucher-card__meta { display: flex; justify-content: space-between; gap: 14px; font-size: .8rem; color: var(--ink-soft); }
.voucher-card__note { margin-top: 16px; font-size: .74rem; color: var(--ink-soft); opacity: .85; }

.steps { list-style: none; counter-reset: s; display: grid; gap: 18px; }
.steps li { display: flex; gap: 16px; align-items: flex-start; counter-increment: s; }
.steps li::before {
  content: counter(s); flex: none;
  width: 38px; height: 38px; display: grid; place-content: center;
  border: 1px solid var(--sand); color: var(--sand-ink); border-radius: 50%;
  font-family: 'Cormorant', Georgia, serif; font-size: 1.2rem; font-weight: 600;
}
.steps strong { display: block; margin-bottom: 2px; }
.steps span { color: var(--ink-soft); font-size: .95rem; }
.steps a { color: var(--sage); font-weight: 600; }
.steps--grid { gap: 20px; }
.steps--grid li {
  background: var(--cream); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 24px; align-items: center;
}
@media (min-width: 760px) { .steps--grid { grid-template-columns: repeat(3, 1fr); align-items: stretch; } .steps--grid li { align-items: flex-start; } }

.info-band strong .ico { width: 18px; height: 18px; color: var(--sage); vertical-align: -3px; margin-right: 6px; }

/* ===== Galeria =========================================================== */
.gal {
  display: grid; gap: 14px;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 240px), 1fr));
}
.gal__item {
  position: relative; padding: 0; border: 0; cursor: zoom-in; overflow: hidden;
  border-radius: var(--r-md); background: var(--ivory-deep); aspect-ratio: 4 / 3;
}
.gal__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease), filter .3s var(--ease); }
.gal__item:hover img { transform: scale(1.045); }
.gal__item::after {
  content: ''; position: absolute; inset: 0; border-radius: var(--r-md);
  box-shadow: inset 0 0 0 1px rgba(44, 40, 35, .09); pointer-events: none;
}
.gal__zoom {
  position: absolute; right: 10px; bottom: 10px;
  width: 34px; height: 34px; border-radius: 50%; display: grid; place-content: center;
  background: rgba(255, 252, 247, .9); color: var(--sage); font-size: 1rem;
  opacity: 0; transform: translateY(6px); transition: all .25s var(--ease);
}
.gal__item:hover .gal__zoom, .gal__item:focus-visible .gal__zoom { opacity: 1; transform: none; }

.lightbox {
  position: fixed; inset: 0; z-index: 200; display: none;
  background: rgba(30, 27, 23, .93); padding: 16px;
  place-content: center; place-items: center;
}
.lightbox[open], .lightbox.open { display: grid; }
.lightbox__fig { margin: 0; max-width: min(94vw, 900px); text-align: center; }
.lightbox__fig img {
  max-width: 100%; max-height: 72dvh; width: auto; margin-inline: auto;
  border-radius: var(--r-md); box-shadow: 0 20px 60px rgba(0, 0, 0, .5);
}
.lightbox__cap { color: rgba(255, 255, 255, .82); font-size: .88rem; margin-top: 14px; max-width: 60ch; margin-inline: auto; }
.lightbox__count { color: rgba(255, 255, 255, .5); font-size: .78rem; margin-top: 6px; }
.lb-btn {
  position: absolute; width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255, 252, 247, .12); border: 1px solid rgba(255, 255, 255, .25); color: #fff;
  font-size: 1.3rem; line-height: 1; cursor: pointer; display: grid; place-content: center;
  transition: background-color .2s var(--ease);
}
.lb-btn:hover { background: rgba(255, 252, 247, .26); }
.lb-close { top: 16px; right: 16px; }
.lb-prev { left: 12px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 12px; top: 50%; transform: translateY(-50%); }
@media (min-width: 900px) { .lb-prev { left: 32px; } .lb-next { right: 32px; } }

/* ===== Kontakt =========================================================== */
.contact-grid { display: grid; gap: 22px; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: .9fr 1.1fr; align-items: start; } }
.contact-card { background: var(--cream); border: 1px solid var(--line); border-radius: var(--r-md); padding: clamp(24px, 3vw, 34px); }
.contact-rows { list-style: none; display: grid; gap: 20px; margin: 24px 0 0; }
.contact-rows li { display: flex; gap: 14px; align-items: flex-start; }
.contact-rows .ico { width: 21px; height: 21px; color: var(--sage); margin-top: 3px; }
.contact-rows dt, .contact-rows strong {
  font-size: .72rem; text-transform: uppercase; letter-spacing: .14em;
  color: var(--ink-soft); font-weight: 600; display: block; margin-bottom: 3px;
}
.contact-rows a { text-decoration: none; font-weight: 600; display: inline-block; padding-block: 5px; }
.contact-rows a:hover { color: var(--sage); text-decoration: underline; }
.contact-card__actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }

.map { border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; background: var(--ivory-deep); }
.map__preview {
  position: relative; width: 100%; aspect-ratio: 4/3; min-height: 300px;
  display: grid; place-content: center; gap: 12px; justify-items: center;
  border: 0; cursor: pointer; font: inherit; color: var(--ink);
  background:
    repeating-linear-gradient(90deg, transparent 0 38px, rgba(78, 97, 80, .07) 38px 39px),
    repeating-linear-gradient(0deg, transparent 0 38px, rgba(78, 97, 80, .07) 38px 39px),
    var(--ivory-deep);
  transition: background-color .2s var(--ease);
}
.map__preview:hover { background-color: var(--sage-tint); }
.map__pin { width: 46px; height: 46px; color: var(--sage); }
.map__preview strong { font-size: 1rem; }
.map__preview span { font-size: .87rem; color: var(--ink-soft); }
.map iframe { display: block; width: 100%; height: 420px; border: 0; }

.info-band { display: grid; gap: 14px; margin-top: 22px; }
@media (min-width: 640px) { .info-band { grid-template-columns: repeat(2, 1fr); } }
.info-band div {
  background: var(--cream); border: 1px solid var(--line); border-radius: var(--r-md); padding: 18px 20px;
}
.info-band strong { display: block; margin-bottom: 4px; font-size: .97rem; }
.info-band p { font-size: .92rem; color: var(--ink-soft); }

/* ===== CTA =============================================================== */
.cta { background: var(--ivory-deep); border-top: 1px solid var(--line); }
.cta__inner { display: grid; gap: 24px; align-items: center; }
.cta h2 { margin-bottom: .3em; }
.cta p { color: var(--ink-soft); max-width: 52ch; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 12px; }
@media (min-width: 900px) { .cta__inner { grid-template-columns: 1.2fr auto; } }

/* ===== Stopka ============================================================ */
.ftr { background: var(--ink); color: #d9d2c6; padding-block: clamp(44px, 5vw, 68px) 22px; }
.ftr .logo__mark { color: #e9dcc2; }
.ftr .logo__sub { color: #9a9284; }
.ftr__grid { display: grid; gap: 32px; }
@media (min-width: 640px) { .ftr__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .ftr__grid { grid-template-columns: 1.2fr 1fr 1fr 1fr; } }
.ftr__brand { display: flex; flex-direction: column; }
.ftr__claim { font-family: 'Cormorant', Georgia, serif; font-style: italic; font-size: 1.15rem; color: #b9b0a0; margin-top: 14px; }
.ftr h2 { font-family: 'Manrope', sans-serif; font-size: .74rem; text-transform: uppercase; letter-spacing: .16em; color: #a89e8d; font-weight: 600; margin-bottom: 14px; }
.ftr address { font-style: normal; font-size: .93rem; line-height: 1.75; margin-bottom: 12px; }
.ftr p { font-size: .93rem; margin-bottom: .5em; }
.ftr .muted { color: #a8a08e; }
.ftr a { color: #e6dfd2; text-decoration: none; display: inline-block; padding-block: 5px; }
.ftr a:hover { color: #fff; text-decoration: underline; }
.ftr__nav { list-style: none; display: grid; gap: 9px; font-size: .93rem; }
.ftr__bottom {
  display: flex; flex-wrap: wrap; gap: 8px 24px; justify-content: space-between;
  margin-top: 40px; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: .85rem; color: #9a9284;
}
.ftr__bottom p { margin: 0; }
.disclaimer { font-size: .78rem; color: #a49c8a; line-height: 1.6; margin-top: 14px; max-width: 90ch; }

/* ===== Dolny pasek mobilny =============================================== */
.dock {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(247, 242, 233, .95); backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
}
.dock__btn {
  display: flex; align-items: center; justify-content: center; gap: .5em;
  min-height: 48px; border-radius: var(--r-sm); text-decoration: none;
  font-weight: 600; font-size: .92rem;
  background: var(--cream); border: 1px solid var(--line); color: var(--ink);
}
.dock__btn--primary { background: var(--sage); border-color: var(--sage); color: #fff; }
.dock__btn .ico { width: 18px; height: 18px; }
body { padding-bottom: 78px; }
@media (min-width: 768px) { .dock { display: none; } body { padding-bottom: 0; } }

/* ===== 404 =============================================================== */
.nf { text-align: center; padding-block: clamp(60px, 10vw, 130px); }
.nf p { color: var(--ink-soft); max-width: 46ch; margin-inline: auto; }
.nf .btn { margin-top: 26px; }

/* ===== Animacje ========================================================== */
/* Ukrywamy dopiero gdy JS działa — bez skryptu treść jest widoczna od razu. */
.js .reveal { opacity: 0; transform: translateY(16px); }
.js .reveal.is-in { opacity: 1; transform: none; transition: opacity .6s var(--ease), transform .6s var(--ease); }

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