/* ZielonoWłosa — strona salonu · mobile-first
   Quiet-luxury palette: warm stone (not pure white) to reduce glare,
   cashmere neutrals, deep rose accent. 60-30-10 layers. */
:root {
  /* 60% canvas */
  --bg: #e8e2dc;
  --bg-deep: #ddd5cd;
  /* 30% surfaces */
  --surface: #f3eee8;
  --surface-2: #ebe4dc;
  /* text */
  --ink: #1f1719;
  --muted: #5c524f;
  --faint: #8a7f7a;
  --line: #d4cac2;
  /* 10% brand */
  --rose: #8b3a54;
  --rose-soft: #e8d6dc;
  --booksy: #0277b5;
  --booksy-dark: #035f91;
  --radius: 14px;
  --shadow: 0 1px 2px rgb(31 23 25 / 0.05), 0 14px 36px rgb(31 23 25 / 0.09);
  --shadow-soft: 0 2px 12px rgb(31 23 25 / 0.06);
  --font: "Inter", system-ui, -apple-system, sans-serif;
  --display: "Cormorant Garamond", Georgia, serif;
  --nav-h: 60px;
  /* Ciemny pasek nawigacji — tlo MUSI byc czyste #000,
     bo logo ma czarne tlo wtopione w PNG. */
  --nav-bg: #000;
  --nav-ink: #f5f2f3;
  --nav-muted: #b5abad;
  --nav-line: #2b2426;
  --sticky-h: calc(4.25rem + env(safe-area-inset-bottom, 0px));
  --touch: 44px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  padding-bottom: var(--sticky-h);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  min-height: 100dvh;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

body.nav-open {
  overflow: hidden;
  touch-action: none;
}

@media (min-width: 768px) {
  body {
    font-size: 16.5px;
    padding-bottom: 0;
  }
  :root { --nav-h: 68px; }
}

a { color: var(--rose); }
img {
  max-width: 100%;
  display: block;
  height: auto;
}

.wrap {
  width: min(960px, 100%);
  margin: 0 auto;
  padding-left: max(1rem, env(safe-area-inset-left, 0px));
  padding-right: max(1rem, env(safe-area-inset-right, 0px));
}

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

/* Touch feedback */
a, button, .btn, .nav-toggle, .card-cta, summary {
  -webkit-tap-highlight-color: rgb(154 61 92 / 0.12);
  touch-action: manipulation;
}

/* Nav
   Panel lives OUTSIDE header (sibling) so position:fixed is not trapped by
   backdrop-filter / sticky stacking context on .nav (Safari/Chrome bug). */
.nav {
  position: sticky;
  top: 0;
  z-index: 210;
  background: var(--nav-bg);
  border-bottom: 1px solid var(--nav-line);
  padding-top: env(safe-area-inset-top, 0px);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--nav-h);
  gap: 0.5rem;
  position: relative;
  z-index: 1;
}
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  padding: 0.35rem 0;
}
.logo img {
  display: block;
  height: 34px;
  width: auto;
}
@media (min-width: 400px) {
  .logo img { height: 38px; }
}
@media (min-width: 860px) {
  .logo img { height: 44px; }
}
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: var(--touch);
  height: var(--touch);
  min-width: var(--touch);
  min-height: var(--touch);
  border: 1px solid var(--nav-line);
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
  padding: 0;
  position: relative;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 18px;
  background: var(--nav-ink);
  border-radius: 1px;
  transition: transform 0.2s, opacity 0.2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
@media (min-width: 860px) { .nav-toggle { display: none; } }

/* Full-viewport overlay — NOT inside .nav (avoids fixed+backdrop-filter trap) */
.nav-panel {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--surface);
  padding:
    calc(var(--nav-h) + env(safe-area-inset-top, 0px) + 1.25rem)
    max(1.25rem, env(safe-area-inset-right, 0px))
    max(2rem, env(safe-area-inset-bottom, 0px))
    max(1.25rem, env(safe-area-inset-left, 0px));
  flex-direction: column;
  gap: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}
.nav-panel.is-open {
  display: flex !important;
}
.nav-panel[hidden]:not(.is-open) {
  display: none !important;
}
.nav-panel a {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  padding: 1rem 0;
  min-height: var(--touch);
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
}
.nav-panel a[data-booksy] {
  margin-top: 1rem;
  justify-content: center;
  background: var(--booksy);
  color: #fff;
  border: 0;
  border-radius: 999px;
  padding: 0.9rem 1.25rem;
  min-height: 50px;
}
.nav-desktop {
  display: none;
  align-items: center;
  gap: 1.35rem;
  list-style: none;
}
.nav-desktop a {
  color: var(--nav-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
}
.nav-desktop a:hover,
.nav-desktop a.is-active { color: var(--nav-ink); }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
}
@media (min-width: 860px) {
  .nav-desktop { display: flex; }
  .nav-panel { display: none !important; }
}
/* Hide sticky Booksy while menu is open */
body.nav-open .sticky { display: none !important; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-height: 50px;
  padding: 0.8rem 1.25rem;
  font-size: 0.9375rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.25;
  text-decoration: none;
  border-radius: 999px;
  border: 1.5px solid transparent;
  transition: background 0.15s, border-color 0.15s, transform 0.15s;
  cursor: pointer;
  user-select: none;
}
@media (hover: hover) and (pointer: fine) {
  .btn:hover { transform: translateY(-1px); }
}
.btn:active { transform: scale(0.98); }
.btn-booksy {
  background: var(--booksy);
  color: #fff;
  border-color: var(--booksy);
}
@media (hover: hover) and (pointer: fine) {
  .btn-booksy:hover {
    background: var(--booksy-dark);
    border-color: var(--booksy-dark);
    color: #fff;
  }
}
.btn-primary {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
@media (hover: hover) and (pointer: fine) {
  .btn-primary:hover {
    background: #34282c;
    border-color: #34282c;
    color: #fff;
  }
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
@media (hover: hover) and (pointer: fine) {
  .btn-ghost:hover { border-color: var(--ink); color: var(--ink); }
}
.btn-light {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--surface);
}
.btn-ig {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: stretch;
}
.btn-row .btn { min-height: 50px; }
/* Full-width stacked CTAs on phones */
@media (max-width: 539px) {
  .btn-row { flex-direction: column; align-items: stretch; }
  .btn-row .btn {
    width: 100%;
    min-width: 0 !important;
  }
}
@media (min-width: 540px) {
  .hero .btn-row .btn,
  .final .btn-row .btn { min-width: 11rem; }
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-height: 40px;
  min-width: 0;
  padding: 0 0.85rem;
  background: var(--booksy);
  color: #fff !important;
  font-size: 0.8125rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 999px;
  border: 1.5px solid var(--booksy);
  white-space: nowrap;
}
@media (min-width: 400px) {
  .nav-cta {
    min-height: 42px;
    padding: 0 1.1rem;
    font-size: 0.875rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .nav-cta:hover {
    background: var(--booksy-dark);
    border-color: var(--booksy-dark);
  }
}

/* Hero */
.hero {
  padding: 1.75rem 0 2rem;
  background:
    radial-gradient(ellipse 90% 70% at 100% -15%, color-mix(in srgb, var(--rose-soft) 75%, transparent), transparent 55%),
    radial-gradient(ellipse 50% 45% at 0% 100%, rgb(140 120 100 / 0.12), transparent 50%),
    linear-gradient(90deg, var(--surface) 0%, color-mix(in srgb, var(--surface) 82%, transparent) 40%, color-mix(in srgb, var(--surface) 45%, transparent) 100%),
    url('../images/tlo.webp') center top/cover no-repeat;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 480px) {
  .hero { padding: 2.25rem 0 2.5rem; }
}
@media (min-width: 768px) {
  .hero { padding: 3.5rem 0 4rem; }
}
.hero-grid {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}
@media (min-width: 860px) {
  .hero-grid { grid-template-columns: 1.08fr 0.92fr; gap: 2.75rem; }
}
.hero-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}
@media (min-width: 480px) {
  .hero-label { font-size: 0.8rem; letter-spacing: 0.07em; margin-bottom: 1rem; }
}
.hero h1 {
  font-family: var(--display);
  font-size: clamp(1.85rem, 7.5vw, 3.15rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 0.9rem;
  max-width: 14em;
}
.hero-lead {
  font-size: 1rem;
  color: var(--muted);
  max-width: 34em;
  margin-bottom: 1.25rem;
  line-height: 1.65;
}
@media (min-width: 480px) {
  .hero-lead { font-size: 1.08rem; margin-bottom: 1.5rem; line-height: 1.7; }
}
.hero-meta {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--faint);
  line-height: 1.5;
}
.hero-meta a {
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
}
@media (hover: hover) and (pointer: fine) {
  .hero-meta a:hover { color: var(--rose); }
}

.hero-visual {
  position: relative;
  width: 100%;
  max-width: min(380px, 100%);
  margin: 0 auto;
  aspect-ratio: 4 / 5;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
@media (min-width: 480px) {
  .hero-visual { max-width: 420px; border-radius: 18px; }
}
@media (min-width: 860px) {
  .hero-visual { max-width: none; margin: 0; }
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hv-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgb(26 18 22 / 0.55) 100%);
  pointer-events: none;
}
.hv-card {
  position: absolute;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.6rem 0.75rem;
  box-shadow: var(--shadow);
  max-width: min(10.5rem, 48%);
  z-index: 2;
}
.hv-card strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.1rem;
}
.hv-card span { font-size: 0.68rem; color: var(--muted); line-height: 1.35; }
.hv-a { left: 0.5rem; bottom: 3.25rem; }
.hv-b {
  right: 0.5rem;
  bottom: 0.5rem;
  background: var(--booksy);
  border-color: var(--booksy);
  color: #fff;
}
.hv-b strong { color: #fff; }
.hv-b span { color: rgb(255 255 255 / 0.88); }
.hv-chip {
  position: absolute;
  top: 0.6rem;
  left: 0.6rem;
  z-index: 2;
  background: color-mix(in srgb, var(--surface) 96%, transparent);
  border: 1px solid var(--line);
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--rose);
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
}
@media (max-width: 379px) {
  .hv-a { display: none; }
  .hv-card { max-width: 58%; padding: 0.55rem 0.65rem; }
  .hv-b { bottom: 0.5rem; right: 0.5rem; }
}
@media (min-width: 480px) {
  .hv-card { padding: 0.7rem 0.85rem; max-width: min(11rem, 46%); }
  .hv-card strong { font-size: 0.78rem; }
  .hv-card span { font-size: 0.72rem; }
  .hv-a { left: 0.65rem; bottom: 3.5rem; }
  .hv-b { right: 0.65rem; bottom: 0.65rem; }
  .hv-chip { top: 0.75rem; left: 0.75rem; font-size: 0.72rem; padding: 0.35rem 0.65rem; }
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.4rem 0.5rem;
  padding: 0.75rem 0.85rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  background: var(--bg-deep);
  text-align: center;
}
.trust-strip span {
  padding: 0.2rem 0.5rem;
  background: color-mix(in srgb, var(--surface) 70%, transparent);
  border: 1px solid var(--line);
  border-radius: 999px;
  white-space: nowrap;
}
@media (min-width: 480px) {
  .trust-strip {
    gap: 0.45rem 0.65rem;
    padding: 0.9rem 1rem;
    font-size: 0.8125rem;
  }
  .trust-strip span { padding: 0.2rem 0.55rem; }
}
@media (min-width: 700px) {
  .trust-strip {
    gap: 0;
    font-size: 0.875rem;
  }
  .trust-strip span {
    background: transparent;
    border: 0;
    border-right: 1px solid var(--line);
    border-radius: 0;
    padding: 0.25rem 0.9rem;
  }
  .trust-strip span:last-child { border-right: 0; }
}

/* Sections */
section.page-section { padding: 2rem 0; }
@media (min-width: 768px) {
  section.page-section { padding: 3.75rem 0; }
}
.page-hero {
  padding: 1.5rem 0 1.25rem;
  background:
    radial-gradient(ellipse 70% 80% at 100% 0%, color-mix(in srgb, var(--rose-soft) 45%, transparent), transparent 55%),
    var(--surface);
  border-bottom: 1px solid var(--line);
}
@media (min-width: 768px) {
  .page-hero { padding: 2.75rem 0 2rem; }
}
.page-hero h1 {
  font-family: var(--display);
  font-size: clamp(1.75rem, 6vw, 2.6rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 0.5rem;
}
.page-hero p {
  color: var(--muted);
  font-size: 1rem;
  max-width: 36em;
  line-height: 1.6;
}
@media (min-width: 480px) {
  .page-hero p { font-size: 1.05rem; }
}
.sec-kicker {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 0.4rem;
}
@media (min-width: 480px) {
  .sec-kicker { font-size: 0.78rem; margin-bottom: 0.45rem; }
}
.sec-h {
  font-family: var(--display);
  font-size: clamp(1.55rem, 5vw, 2.25rem);
  font-weight: 700;
  line-height: 1.18;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.sec-lead {
  font-size: 0.98rem;
  color: var(--muted);
  max-width: 36em;
  margin-bottom: 1.35rem;
  line-height: 1.6;
}
@media (min-width: 480px) {
  .sec-lead { font-size: 1.05rem; margin-bottom: 1.75rem; }
}
.band {
  background: var(--surface-2);
  border-block: 1px solid var(--line);
}

.grid-3 {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 1fr;
}
@media (min-width: 560px) { .grid-3 { grid-template-columns: repeat(2, 1fr); gap: 1rem; } }
@media (min-width: 880px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem 1.1rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
  box-shadow: 0 1px 0 rgb(31 23 25 / 0.03);
}
@media (min-width: 480px) {
  .card { padding: 1.4rem 1.25rem; }
}
@media (hover: hover) and (pointer: fine) {
  .card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
}
.band .card { background: var(--surface); }
.card-line {
  width: 1.75rem;
  height: 2px;
  background: var(--rose);
  margin-bottom: 0.85rem;
  border-radius: 2px;
}
.card h3 {
  font-size: 1.02rem;
  font-weight: 700;
  margin-bottom: 0.45rem;
}
.card p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.55;
  flex: 1;
}
.card .card-cta {
  margin-top: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--booksy);
  text-decoration: none;
  min-height: var(--touch);
  display: inline-flex;
  align-items: center;
}
@media (hover: hover) and (pointer: fine) {
  .card .card-cta:hover { text-decoration: underline; }
}

/* Pricing — mobile-safe table */
.price-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 16px;
  box-shadow: var(--shadow);
  overscroll-behavior-x: contain;
  /* subtle cue that table scrolls on narrow screens */
  background:
    linear-gradient(90deg, var(--surface) 85%, transparent),
    linear-gradient(90deg, transparent, var(--surface) 15%) 100% 0,
    linear-gradient(90deg, rgb(26 18 22 / 0.06), transparent 40%),
    linear-gradient(270deg, rgb(26 18 22 / 0.06), transparent 40%) 100% 0;
  background-repeat: no-repeat;
  background-size: 40px 100%, 40px 100%, 16px 100%, 16px 100%;
  background-attachment: local, local, scroll, scroll;
}
.price-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  min-width: 0;
  box-shadow: var(--shadow);
}
.price-scroll .price-card {
  box-shadow: none;
  border: 0;
  border-radius: 0;
  min-width: min(100%, 320px);
}
.price-note {
  padding: 0.75rem 0.9rem;
  font-size: 0.78rem;
  color: var(--faint);
  background: var(--bg-deep);
  border-bottom: 1px solid var(--line);
  line-height: 1.45;
}
@media (min-width: 600px) {
  .price-note { padding: 0.85rem 1.25rem; font-size: 0.85rem; }
}
.price-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 280px;
}
.price-table th,
.price-table td {
  padding: 0.8rem 0.85rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: 0.875rem;
  vertical-align: top;
}
@media (min-width: 600px) {
  .price-table th,
  .price-table td {
    padding: 1.05rem 1.25rem;
    font-size: 0.98rem;
  }
}
.price-table th {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--faint);
  background: var(--bg-deep);
}
@media (min-width: 600px) {
  .price-table th { font-size: 0.72rem; }
}
.price-table td { color: var(--ink); }
.price-table td:first-child {
  padding-right: 0.5rem;
}
.price-table td:last-child {
  font-weight: 700;
  text-align: right;
  white-space: nowrap;
  color: var(--rose);
  padding-left: 0.5rem;
}
.price-table tr:last-child td { border-bottom: 0; }
.price-table tbody tr:nth-child(even) td { background: var(--surface-2); }
.price-foot {
  text-align: center;
  padding: 1.25rem 1rem;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, var(--surface), var(--bg));
}
@media (min-width: 480px) {
  .price-foot { padding: 1.6rem 1.25rem; }
}
.price-foot .btn { width: 100%; max-width: 22rem; }
.price-foot .hint {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.8125rem;
  color: var(--faint);
  line-height: 1.5;
  padding: 0 0.25rem;
}
@media (min-width: 480px) {
  .price-foot .hint { font-size: 0.875rem; }
}

/* Gallery — mobile: 2 cols, tablet+: 3 */
.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.4rem;
}
@media (min-width: 480px) {
  .gallery {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
  }
}
@media (min-width: 640px) { .gallery { gap: 0.65rem; } }
.g {
  aspect-ratio: 1;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  background: var(--bg-deep);
  border: 1px solid color-mix(in srgb, var(--line) 80%, transparent);
  box-shadow: var(--shadow-soft);
  display: block;
  text-decoration: none;
  color: inherit;
}
@media (min-width: 640px) {
  .g { border-radius: 10px; }
}
.g img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.35s ease;
}
@media (hover: hover) and (pointer: fine) {
  .g:hover img { transform: scale(1.04); }
}
.g span {
  position: absolute;
  left: 0.35rem;
  bottom: 0.35rem;
  right: 0.35rem;
  z-index: 1;
  font-size: 0.6rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 1px 4px rgb(0 0 0 / 0.55);
  pointer-events: none;
  line-height: 1.25;
}
@media (min-width: 480px) {
  .g span { font-size: 0.65rem; left: 0.4rem; bottom: 0.4rem; right: auto; }
}
@media (min-width: 640px) {
  .g span { font-size: 0.7rem; left: 0.5rem; bottom: 0.5rem; }
}
/* label chip over photos */
.g::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgb(26 18 22 / 0.45) 100%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s;
}
.g:has(span)::after { opacity: 1; }
.gallery-cta { margin-top: 1.5rem; text-align: center; }
@media (min-width: 480px) {
  .gallery-cta { margin-top: 1.75rem; }
}

/* About photo */
.about-visual {
  min-height: 220px;
  border-radius: 14px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  background: var(--bg-deep);
}
@media (min-width: 480px) {
  .about-visual { min-height: 260px; border-radius: 16px; }
}
.about-visual img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  object-position: center top;
}
@media (min-width: 480px) {
  .about-visual img { min-height: 260px; }
}
@media (min-width: 780px) {
  .about-visual,
  .about-visual img { min-height: 340px; }
}
.gallery-head {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 1.15rem;
}
@media (min-width: 480px) {
  .gallery-head { margin-bottom: 1.5rem; }
}
.gallery-head .sec-lead { margin-bottom: 0; }
.ig-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  min-height: var(--touch);
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
@media (hover: hover) and (pointer: fine) {
  .ig-link:hover { color: var(--rose); }
}

/* About */
.about-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 780px) {
  .about-grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 2.5rem;
  }
}
.about-grid ul {
  margin: 1.15rem 0 0 1.1rem;
  color: var(--muted);
  font-size: 0.95rem;
}
@media (min-width: 480px) {
  .about-grid ul { font-size: 0.98rem; }
}
.about-grid li { margin-bottom: 0.45rem; }
.about-visual span {
  position: absolute;
  left: 0.75rem;
  bottom: 0.75rem;
  z-index: 1;
  background: color-mix(in srgb, var(--surface) 94%, transparent);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--line);
}
@media (min-width: 480px) {
  .about-visual span {
    left: 0.85rem;
    bottom: 0.85rem;
    font-size: 0.82rem;
    padding: 0.45rem 0.85rem;
  }
}

/* FAQ — big tap targets */
details.faq {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0;
  margin-bottom: 0.5rem;
  overflow: hidden;
  box-shadow: 0 1px 0 rgb(31 23 25 / 0.03);
}
details.faq summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--ink);
  list-style: none;
  padding: 1rem 1.1rem;
  min-height: var(--touch);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  line-height: 1.4;
}
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after {
  content: "+";
  margin-left: auto;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--faint);
  flex-shrink: 0;
}
details.faq[open] summary::after { content: "−"; }
details.faq p {
  margin: 0;
  padding: 0 1.1rem 1.05rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
}
@media (min-width: 480px) {
  details.faq summary { font-size: 0.98rem; padding: 1.05rem 1.2rem; }
  details.faq p { font-size: 0.95rem; padding: 0 1.2rem 1.1rem; }
}

/* Teasers home */
.teaser-row {
  display: grid;
  gap: 0.85rem;
}
@media (min-width: 700px) {
  .teaser-row { grid-template-columns: 1.1fr 0.9fr; align-items: stretch; gap: 1rem; }
}
.teaser-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.25rem 1.15rem;
  box-shadow: var(--shadow-soft);
}
@media (min-width: 480px) {
  .teaser-card { padding: 1.5rem 1.35rem; }
}
.teaser-card h3 {
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.45rem;
  line-height: 1.2;
}
@media (min-width: 480px) {
  .teaser-card h3 { font-size: 1.5rem; }
}
.teaser-card p {
  color: var(--muted);
  font-size: 0.94rem;
  margin-bottom: 1rem;
  line-height: 1.55;
}
@media (min-width: 480px) {
  .teaser-card p { font-size: 0.98rem; margin-bottom: 1.1rem; }
}

/* Final / contact */
.final {
  background: linear-gradient(155deg, #1f1719 0%, #3a252c 52%, #54303f 100%);
  color: #f3eee8;
  border-radius: 16px;
  padding: 1.85rem 1.15rem;
  text-align: center;
  box-shadow: var(--shadow);
}
@media (min-width: 480px) {
  .final {
    border-radius: 20px;
    padding: 2.5rem 1.6rem;
  }
}
@media (min-width: 768px) {
  .final { padding: 2.75rem 1.6rem; }
}
.final h2 {
  font-family: var(--display);
  font-size: clamp(1.55rem, 5.5vw, 2.45rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.18;
}
.final > p {
  color: #c4b0b4;
  font-size: 0.98rem;
  max-width: 30em;
  margin: 0 auto 1.2rem;
  line-height: 1.6;
}
@media (min-width: 480px) {
  .final > p { font-size: 1.05rem; margin-bottom: 1.35rem; line-height: 1.65; }
}
.final .btn-row { justify-content: center; }
.final .btn-ghost {
  color: #f3eee8;
  border-color: rgb(243 238 232 / 0.35);
  background: transparent;
}
@media (hover: hover) and (pointer: fine) {
  .final .btn-ghost:hover { border-color: #f3eee8; color: #f3eee8; }
}
.final .btn-light {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--surface);
}
.final-meta {
  margin-top: 1.15rem;
  font-size: 0.85rem;
  color: #9a8a8e;
  line-height: 1.4;
}
@media (min-width: 480px) {
  .final-meta { margin-top: 1.35rem; font-size: 0.9rem; }
}

.contact-grid {
  display: grid;
  gap: 0.85rem;
}
@media (min-width: 700px) {
  .contact-grid { grid-template-columns: 1.15fr 0.85fr; gap: 1rem; }
}
.contact-box {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.25rem 1.15rem;
  box-shadow: var(--shadow-soft);
}
@media (min-width: 480px) {
  .contact-box { padding: 1.5rem 1.35rem; }
}
.contact-box h2 {
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
  line-height: 1.3;
}
@media (min-width: 480px) {
  .contact-box h2 { font-size: 1.15rem; margin-bottom: 0.75rem; }
}
.contact-box p { color: var(--muted); margin-bottom: 1rem; font-size: 0.94rem; }
@media (min-width: 480px) {
  .contact-box p { font-size: 0.98rem; }
}
.contact-box ul {
  margin: 0 0 1.15rem 1.1rem;
  color: var(--muted);
  font-size: 0.92rem;
}
.contact-box li { margin-bottom: 0.4rem; }
.contact-box > .btn { width: 100%; margin-bottom: 0.6rem; }
.contact-box > .btn:last-of-type { margin-bottom: 0; }
.contact-box .btn-row { flex-direction: column; }
.contact-box .btn-row .btn { width: 100%; }
.contact-box .hint { word-break: break-word; }
.contact-box code {
  font-size: 0.8rem;
  background: var(--bg-deep);
  padding: 0.1rem 0.35rem;
  border-radius: 4px;
}

/* Footer */
footer {
  padding: 2rem 0 calc(1.75rem + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid var(--line);
  font-size: 0.875rem;
  color: var(--faint);
  background: var(--surface-2);
}
@media (min-width: 768px) {
  footer { padding: 2.75rem 0 2.5rem; }
}
footer strong { color: var(--ink); }
footer a {
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
  min-height: 2rem;
  display: inline-flex;
  align-items: center;
}
@media (hover: hover) and (pointer: fine) {
  footer a:hover { color: var(--rose); }
}
.foot-grid {
  display: grid;
  gap: 1.35rem;
}
@media (min-width: 700px) {
  .foot-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 2rem;
  }
}
.foot-grid h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 0.65rem;
}
.foot-grid ul { list-style: none; }
.foot-grid li { margin-bottom: 0.35rem; }
.foot-bottom {
  margin-top: 1.5rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  justify-content: space-between;
  font-size: 0.8125rem;
  line-height: 1.45;
}
@media (min-width: 480px) {
  .foot-bottom {
    margin-top: 2rem;
    padding-top: 1.25rem;
    font-size: 0.875rem;
  }
}

/* Sticky Booksy — mobile only */
.sticky {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  padding:
    0.55rem max(0.85rem, env(safe-area-inset-left))
    calc(0.55rem + env(safe-area-inset-bottom, 0px))
    max(0.85rem, env(safe-area-inset-right));
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
}
.sticky a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 50px;
  background: var(--booksy);
  color: #fff;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  border-radius: 999px;
  -webkit-tap-highlight-color: transparent;
}
.sticky a:active { background: var(--booksy-dark); }
@media (min-width: 768px) { .sticky { display: none; } }

/* Very small phones */
@media (max-width: 359px) {
  .nav-cta { padding: 0 0.65rem; font-size: 0.75rem; }
  .logo img { height: 30px; }
  .hero h1 { font-size: 1.7rem; }
}

.owner-note {
  margin-top: 1.5rem;
  padding: 1rem 1.1rem;
  background: var(--rose-soft);
  border: 1px solid color-mix(in srgb, var(--rose) 18%, var(--line));
  border-radius: var(--radius);
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.6;
}
@media (min-width: 480px) {
  .owner-note {
    margin-top: 1.75rem;
    padding: 1.15rem 1.25rem;
    font-size: 0.9rem;
  }
}
.owner-note strong { color: var(--ink); }

.prose { max-width: 40em; color: var(--muted); }
.prose p { margin-bottom: 1rem; font-size: 0.98rem; line-height: 1.65; }
.prose h2 {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--ink);
  margin: 1.5rem 0 0.6rem;
  line-height: 1.3;
}
@media (min-width: 480px) {
  .prose p { font-size: 1rem; }
  .prose h2 { font-size: 1.15rem; margin: 1.75rem 0 0.65rem; }
}
.prose ul { margin: 0 0 1rem 1.15rem; }
.prose li { margin-bottom: 0.35rem; }

.cta-mid {
  text-align: center;
  margin-top: 1.5rem;
}
@media (min-width: 480px) {
  .cta-mid { margin-top: 1.75rem; }
}
.cta-mid .btn { width: 100%; max-width: 22rem; }

/* Utility spacing used in pages */
.mt-section { margin-top: 2rem; }
@media (min-width: 480px) {
  .mt-section { margin-top: 2.5rem; }
}

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

/* Dane rejestrowe — wymagane przez UŚUDE, celowo dyskretne */
.legal-line {
  margin-top: 1rem;
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--faint);
}

/* Etykieta w H1 (SEO: fraza lokalna w nagłówku) — wygląd jak dawny div.hero-label */
.hero h1 .hero-label {
  display: block;
  width: fit-content;
  font-family: var(--font);
  max-width: none;
}
