﻿/* =====================================================
   Gabinet Masazu i Terapia Manualna Piotr Burkat
   masazbusko.pl - one-page
   ===================================================== */

:root {
  --green: #1F4D3A;
  --green-dark: #163528;
  --copper: #B56A3C;
  --copper-soft: #C9824F;
  --ivory: #F7F2EA;
  --ivory-dark: #EDE5D6;
  --charcoal: #1F2522;
  --mist: #DDE8DF;
  --line: rgba(31, 77, 58, 0.12);

  --font-display: "Cormorant Garamond", "Georgia", serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --maxw: 1180px;
  --radius: 4px;
  --radius-card: 12px;

  --shadow-card: 0 2px 6px rgba(31, 37, 34, 0.05), 0 12px 32px rgba(31, 37, 34, 0.07);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ivory);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--green); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--copper); }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* ----- Typography ----- */

.section-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--green);
  margin: 0.2em 0 0.4em;
}

.section-title--light { color: var(--ivory); }

.section-lead {
  font-size: 1.06rem;
  max-width: 56ch;
  color: rgba(31, 37, 34, 0.78);
  margin: 0 0 2.4rem;
}

.kicker {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper);
  margin: 0;
}

.kicker--light { color: var(--copper-soft); }

/* ----- Navigation ----- */

.nav {
  position: sticky;
  top: 0;
  z-index: 90;
  background: #FAF6EE;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(31, 37, 34, 0.02);
}

.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 88px;
}

.nav__brand {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  height: 68px;
}
.nav__logo {
  height: 68px;
  width: auto;
  display: block;
  transition: height .2s ease;
}

.nav__menu {
  display: flex;
  gap: 32px;
  margin-left: auto;
  font-size: 0.98rem;
  font-weight: 500;
  align-items: center;
}

.nav__menu a {
  color: var(--charcoal);
  position: relative;
  padding: 6px 0;
}

.nav__menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--copper);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}

.nav__menu a:hover::after { transform: scaleX(1); }

/* .nav__cta removed - phone CTA lives in hero and contact section */

.nav__toggle {
  display: none;
  background: transparent;
  border: 1.5px solid rgba(31, 77, 58, 0.22);
  border-radius: 999px;
  width: 44px;
  height: 44px;
  padding: 0;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: background .2s ease, border-color .2s ease;
  flex-shrink: 0;
}
.nav__toggle:hover { background: rgba(31, 77, 58, 0.06); border-color: var(--green); }

.nav__toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}

.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(2) {
  opacity: 0;
}
.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 900px) {
  .nav__menu {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(320px, 85vw);
    background: #fff;
    box-shadow: -8px 0 32px rgba(31, 37, 34, 0.22);
    flex-direction: column;
    gap: 0;
    padding: 96px 28px 32px;
    transform: translateX(100%);
    transition: transform .3s cubic-bezier(.4, 0, .2, 1);
    z-index: 2;
    overflow-y: auto;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .nav__menu.is-open {
    transform: translateX(0);
  }
  .nav__menu a {
    font-size: 1.15rem;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--font-display);
    font-weight: 500;
    color: var(--green);
    background: transparent;
  }
  .nav__menu a::after { display: none; }

  .nav__toggle { display: inline-flex; margin-left: auto; }

  body.nav-open { overflow: hidden; }
  body.nav-open::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(31, 37, 34, 0.5);
    z-index: 70;
  }
}

@media (max-width: 760px) {
  .nav__inner { gap: 10px; padding: 0 14px; min-height: 72px; }
  .nav__brand { height: 52px; }
  .nav__logo { height: 52px; }
  .nav__toggle { width: 44px; height: 44px; }
}

/* ----- Buttons ----- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all .22s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background: var(--green);
  color: var(--ivory);
}
.btn--primary:hover {
  background: var(--green-dark);
  color: var(--ivory);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(31, 77, 58, 0.22);
}

.btn--ghost {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn--ghost:hover {
  background: var(--green);
  color: var(--ivory);
}

.btn--ghost-light {
  color: var(--ivory);
  border-color: rgba(247, 242, 234, 0.45);
}
.btn--ghost-light:hover {
  background: var(--ivory);
  color: var(--green);
  border-color: var(--ivory);
}

.btn--copper {
  background: var(--copper);
  color: var(--ivory);
}
.btn--copper:hover {
  background: #9C5A30;
  color: var(--ivory);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(181, 106, 60, 0.28);
}

.btn--block {
  width: 100%;
}

/* ----- Hero ----- */

.hero {
  padding: 72px 24px 96px;
  background:
    radial-gradient(ellipse at top right, rgba(221, 232, 223, 0.55), transparent 60%),
    radial-gradient(ellipse at bottom left, rgba(181, 106, 60, 0.06), transparent 55%),
    var(--ivory);
}

.hero__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero__text { max-width: 580px; }

.hero__logo {
  max-width: 420px;
  width: 100%;
  height: auto;
  margin: 0 0 28px;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.2rem, 4.6vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--green);
  margin: 0 0 22px;
}

.hero__title-loc {
  color: var(--copper);
  font-style: italic;
  font-weight: 400;
}

.hero__sub {
  font-size: clamp(1.02rem, 1.4vw, 1.14rem);
  color: rgba(31, 37, 34, 0.78);
  max-width: 56ch;
  margin: 0 0 32px;
  line-height: 1.65;
}

.hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.hero__meta {
  font-size: 0.92rem;
  color: rgba(31, 37, 34, 0.58);
  letter-spacing: 0.02em;
  margin: 0;
}

.hero__media {
  position: relative;
}

.hero__figure {
  margin: 0;
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow:
    0 4px 12px rgba(31, 37, 34, 0.08),
    0 32px 60px -20px rgba(31, 77, 58, 0.32);
  transform: rotate(-1.2deg);
  transition: transform .4s ease;
}
.hero__figure:hover { transform: rotate(0); }
.hero__figure::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(31, 77, 58, 0) 65%, rgba(31, 77, 58, 0.25) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero__figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.hero__caption {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero__text { max-width: none; margin: 0 auto; }
  .hero__logo { margin-left: auto; margin-right: auto; }
  .hero__sub { margin-left: auto; margin-right: auto; }
  .hero__cta { justify-content: center; }
  .hero__figure { max-width: 480px; margin: 0 auto; transform: none; }
}

@media (max-width: 760px) {
  .hero { padding: 48px 18px 64px; }
  .hero__logo { max-width: 300px; margin-bottom: 22px; }
  .hero__figure img { aspect-ratio: 1 / 1; }
}

/* ----- Uslugi ----- */

.uslugi {
  padding: 96px 0;
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.uslugi__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 16px;
}

.card {
  background: var(--ivory);
  padding: 42px 38px;
  border-radius: var(--radius-card);
  border: 1px solid var(--line);
  transition: transform .25s ease, box-shadow .25s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.card--accent {
  background: var(--mist);
  border-color: rgba(31, 77, 58, 0.18);
}

.card__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.75rem;
  color: var(--green);
  margin: 0 0 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--copper);
  display: inline-block;
}

.card__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.card__list li {
  padding: 10px 0 10px 26px;
  position: relative;
  font-size: 1rem;
  color: var(--charcoal);
  border-bottom: 1px dashed rgba(31, 77, 58, 0.12);
}

.card__list li:last-child { border-bottom: none; }

.card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 14px;
  height: 1px;
  background: var(--copper);
  transform: translateY(-50%);
}

@media (max-width: 820px) {
  .uslugi { padding: 64px 0; }
  .uslugi__grid { grid-template-columns: 1fr; gap: 22px; }
  .card { padding: 32px 26px; }
}

/* ----- Dla kogo ----- */

.dla-kogo {
  padding: 96px 0;
  background: var(--ivory);
}

.tiles {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.tile {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 32px 26px;
  transition: transform .22s ease, border-color .22s ease;
}

.tile:hover {
  transform: translateY(-3px);
  border-color: var(--copper);
}

.tile__num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--copper);
  font-weight: 600;
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}

.tile__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.3rem;
  color: var(--green);
  margin: 0 0 10px;
  line-height: 1.2;
}

.tile__text {
  font-size: 0.95rem;
  color: rgba(31, 37, 34, 0.72);
  margin: 0;
  line-height: 1.55;
}

@media (max-width: 820px) {
  .dla-kogo { padding: 64px 0; }
}

/* ----- Info / Kontakt ----- */

.info {
  padding: 96px 0;
  background: linear-gradient(180deg, var(--green) 0%, var(--green-dark) 100%);
  color: var(--ivory);
}

.info__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: start;
}

.info__col { color: var(--ivory); }

.info__block { margin-bottom: 26px; }

.info__label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper-soft);
  margin: 0 0 6px;
}

.info__value {
  font-size: 1.1rem;
  margin: 0;
  line-height: 1.55;
  color: var(--ivory);
}

.info__value a {
  color: var(--ivory);
  border-bottom: 1px solid rgba(247, 242, 234, 0.35);
  transition: border-color .2s ease;
}
.info__value a:hover {
  color: var(--ivory);
  border-bottom-color: var(--copper);
}

.info__cta-card {
  background: rgba(247, 242, 234, 0.08);
  border: 1px solid rgba(247, 242, 234, 0.18);
  padding: 38px 34px;
  border-radius: var(--radius-card);
  backdrop-filter: blur(6px);
}

.info__cta-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.85rem;
  color: var(--ivory);
  margin: 0 0 14px;
  line-height: 1.15;
}

.info__cta-text {
  font-size: 1rem;
  color: rgba(247, 242, 234, 0.78);
  margin: 0 0 26px;
  line-height: 1.6;
}

.info__cta-card .btn { margin-top: 10px; }
.info__cta-card .btn:first-of-type { margin-top: 0; }

@media (max-width: 880px) {
  .info { padding: 64px 0; }
  .info__grid { grid-template-columns: 1fr; gap: 36px; }
  .info__cta-card { padding: 32px 24px; }
}

/* ----- Footer ----- */

.footer {
  background: var(--charcoal);
  color: rgba(247, 242, 234, 0.7);
  padding: 48px 0 36px;
  font-size: 0.92rem;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer__brand {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--ivory);
  margin: 0 0 14px;
  font-weight: 500;
  line-height: 1.3;
}

.footer__line { margin: 0 0 6px; line-height: 1.5; }
.footer__line a { color: var(--copper-soft); }
.footer__line a:hover { color: var(--ivory); }
.footer__line--small { font-size: 0.78rem; opacity: 0.65; margin-top: 10px; letter-spacing: 0.04em; }

.footer__col--right { text-align: right; }

.footer__nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  margin-bottom: 18px;
}
.footer__nav a {
  color: var(--copper-soft);
  font-size: 0.92rem;
  transition: color .2s ease;
}
.footer__nav a:hover { color: var(--ivory); }

.footer__copy {
  margin-top: 18px;
  font-size: 0.82rem;
  color: rgba(247, 242, 234, 0.4);
}

@media (max-width: 640px) {
  .footer__col--right { text-align: left; }
  .footer__nav { align-items: flex-start; }
}

/* ----- Cookies banner ----- */

.cookies {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 80;
  background: var(--charcoal);
  color: var(--ivory);
  padding: 20px 24px;
  box-shadow: 0 -10px 32px rgba(0, 0, 0, 0.18);
  transform: translateY(120%);
  transition: transform .35s cubic-bezier(.4, 0, .2, 1);
}
.cookies.is-visible { transform: translateY(0); }

.cookies__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.cookies__text {
  flex: 1 1 320px;
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(247, 242, 234, 0.88);
}
.cookies__text strong { color: var(--ivory); font-weight: 600; }
.cookies__text a {
  color: var(--copper-soft);
  border-bottom: 1px solid var(--copper-soft);
}
.cookies__text a:hover { color: var(--ivory); border-bottom-color: var(--ivory); }

.cookies__buttons { display: flex; gap: 10px; flex-shrink: 0; }

.cookies__btn {
  font-family: var(--font-body);
  padding: 11px 18px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all .2s ease;
  white-space: nowrap;
}
.cookies__btn--primary {
  background: var(--copper);
  color: var(--ivory);
}
.cookies__btn--primary:hover { background: #9C5A30; }

.cookies__btn--ghost {
  background: transparent;
  color: var(--ivory);
  border-color: rgba(247, 242, 234, 0.4);
}
.cookies__btn--ghost:hover { background: rgba(247, 242, 234, 0.08); border-color: var(--ivory); }

@media (max-width: 720px) {
  .cookies { padding: 16px 18px; }
  .cookies__inner { gap: 14px; }
  .cookies__buttons { width: 100%; }
  .cookies__btn { flex: 1; padding: 11px 12px; font-size: 0.85rem; }
}

/* ----- Legal pages (regulamin, polityka prywatnosci) ----- */

.legal {
  padding: 60px 0 96px;
  background: var(--ivory);
  min-height: 60vh;
}

.legal__container {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 24px;
}

.legal__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.92rem;
  color: var(--copper);
  margin-bottom: 24px;
  font-weight: 500;
}
.legal__back:hover { color: var(--green); }

.legal__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--green);
  line-height: 1.12;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}

.legal__updated {
  font-size: 0.88rem;
  color: rgba(31, 37, 34, 0.55);
  margin: 0 0 40px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.legal__content {
  font-size: 1rem;
  line-height: 1.72;
  color: rgba(31, 37, 34, 0.84);
}

.legal__content h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.6rem;
  color: var(--green);
  margin: 48px 0 16px;
  letter-spacing: -0.005em;
}

.legal__content h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--charcoal);
  margin: 28px 0 10px;
}

.legal__content p { margin: 0 0 14px; }
.legal__content ul, .legal__content ol { padding-left: 22px; margin: 0 0 16px; }
.legal__content li { margin-bottom: 6px; }
.legal__content a { border-bottom: 1px solid var(--copper); }
.legal__content strong { color: var(--charcoal); }

.legal__box {
  background: #fff;
  border-left: 3px solid var(--copper);
  padding: 22px 26px;
  border-radius: 0 var(--radius-card) var(--radius-card) 0;
  margin: 24px 0;
}
.legal__box p:last-child { margin-bottom: 0; }

@media (max-width: 760px) {
  .legal { padding: 40px 0 64px; }
  .legal__content h2 { font-size: 1.35rem; margin-top: 36px; }
}

/* ----- Misc ----- */

::selection {
  background: var(--copper);
  color: var(--ivory);
}

/* ----- Services accordion (klikalne zabiegi) ----- */

.services {
  margin-top: 8px;
}

.service {
  border-bottom: 1px solid rgba(31, 77, 58, 0.12);
  padding: 0;
}
.service:last-child { border-bottom: none; }

.service__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: color .2s ease;
}
.service__head::-webkit-details-marker { display: none; }
.service__head::marker { display: none; }
.service__head:hover { color: var(--copper); }
.service__head:hover .service__chev { border-color: var(--copper); }
.service__head:hover .service__chev::before { background: var(--copper); }
.service__head:hover .service__chev::after { background: var(--copper); }

.service__name {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--green);
  line-height: 1.35;
}

.service__chev {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border: 1.5px solid var(--green);
  border-radius: 50%;
  position: relative;
  transition: transform .25s ease, border-color .2s ease;
}
.service__chev::before,
.service__chev::after {
  content: "";
  position: absolute;
  background: var(--green);
  border-radius: 1px;
  transition: opacity .2s ease, background .2s ease;
}
.service__chev::before {
  width: 10px;
  height: 1.5px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.service__chev::after {
  width: 1.5px;
  height: 10px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.service[open] .service__chev::after { opacity: 0; }
.service[open] .service__chev { background: var(--green); }
.service[open] .service__chev::before { background: var(--ivory); }

.service__body {
  padding: 0 0 18px;
  color: rgba(31, 37, 34, 0.78);
  font-size: 0.96rem;
  line-height: 1.6;
}

.card--accent .service__name { color: var(--green); }
.card--accent .service { border-bottom-color: rgba(31, 77, 58, 0.16); }

/* ----- Upcoming (suche igłowanie) ----- */

.upcoming {
  margin-top: 40px;
  background: linear-gradient(135deg, rgba(181, 106, 60, 0.08), rgba(31, 77, 58, 0.04));
  border: 1px dashed var(--copper);
  border-radius: var(--radius-card);
  padding: 36px 36px;
  position: relative;
  overflow: hidden;
}

.upcoming::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(181, 106, 60, 0.16), transparent 70%);
  pointer-events: none;
}

.upcoming__badge {
  display: inline-block;
  background: var(--copper);
  color: var(--ivory);
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.upcoming__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.5rem, 2.6vw, 1.95rem);
  color: var(--green);
  margin: 0 0 12px;
}

.upcoming__text {
  font-size: 1rem;
  color: rgba(31, 37, 34, 0.78);
  margin: 0;
  line-height: 1.65;
  max-width: 70ch;
  position: relative;
  z-index: 1;
}

@media (max-width: 760px) {
  .upcoming { padding: 28px 22px; margin-top: 32px; }
}

/* ----- O gabinecie ----- */

.o-gabinecie {
  padding: 96px 0;
  background: #fff;
  border-top: 1px solid var(--line);
}

.o-gabinecie__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: start;
}

.o-gabinecie__col--media {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.o-gabinecie__lead {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  line-height: 1.4;
  color: var(--green);
  margin: 0 0 22px;
  font-weight: 500;
}

.o-gabinecie__body {
  font-size: 1.02rem;
  color: rgba(31, 37, 34, 0.78);
  line-height: 1.7;
  margin: 0 0 32px;
}

.o-gabinecie__figure {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(31, 37, 34, 0.06), 0 28px 56px -22px rgba(31, 77, 58, 0.28);
  transform: rotate(1deg);
  transition: transform .4s ease;
}
.o-gabinecie__figure:hover { transform: rotate(0); }
.o-gabinecie__figure img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.o-gabinecie__quote {
  background: var(--ivory);
  border-left: 3px solid var(--copper);
  padding: 22px 26px;
  border-radius: 0 var(--radius-card) var(--radius-card) 0;
}

.o-gabinecie__quote-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--green);
  line-height: 1.4;
  margin: 0 0 8px;
}

.o-gabinecie__quote-author {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--copper);
  margin: 0;
  font-weight: 600;
}

.trust-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.trust-list li {
  display: flex;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(31, 77, 58, 0.12);
  font-size: 0.98rem;
  line-height: 1.55;
  color: rgba(31, 37, 34, 0.84);
}
.trust-list li:last-child { border-bottom: none; }

.trust-list__icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  background: var(--green);
  color: var(--ivory);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  margin-top: 2px;
}

@media (max-width: 880px) {
  .o-gabinecie { padding: 64px 0; }
  .o-gabinecie__grid { grid-template-columns: 1fr; gap: 40px; }
  .o-gabinecie__col--media { order: -1; }
  .o-gabinecie__figure { transform: none; max-width: 480px; margin: 0 auto; }
}

/* ----- Galeria ----- */

.galeria {
  padding: 96px 0;
  background: var(--ivory);
}

.galeria__grid {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.galeria__item {
  margin: 0;
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(31, 37, 34, 0.06), 0 18px 36px -16px rgba(31, 77, 58, 0.22);
  cursor: zoom-in;
  background: #000;
  transition: transform .35s ease;
}
.galeria__item:hover { transform: translateY(-4px); }
.galeria__item:hover img { transform: scale(1.06); }

.galeria__item img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform .6s ease;
}

.galeria__cap {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.galeria__cap-title,
.galeria__cap-text { display: inline; }

@media (max-width: 880px) {
  .galeria { padding: 64px 0; }
  .galeria__grid { grid-template-columns: 1fr 1fr; gap: 18px; }
  .galeria__item:nth-child(3) { grid-column: 1 / -1; }
  .galeria__item:nth-child(3) img { aspect-ratio: 16 / 10; }
}

@media (max-width: 560px) {
  .galeria__grid { grid-template-columns: 1fr; }
  .galeria__item:nth-child(3) img { aspect-ratio: 4 / 5; }
}

/* ----- FAQ ----- */

.faq {
  padding: 96px 0;
  background: #fff;
  border-top: 1px solid var(--line);
}

.faq__list {
  margin-top: 36px;
  max-width: 880px;
}

.faq__item {
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  margin-bottom: 12px;
  background: var(--ivory);
  transition: border-color .2s ease, box-shadow .2s ease;
  overflow: hidden;
}
.faq__item:hover { border-color: var(--copper); }
.faq__item[open] {
  border-color: var(--copper);
  box-shadow: 0 4px 18px rgba(181, 106, 60, 0.1);
}

.faq__q {
  list-style: none;
  cursor: pointer;
  padding: 22px 56px 22px 26px;
  position: relative;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.18rem;
  color: var(--green);
  line-height: 1.35;
  transition: color .2s ease;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::marker { display: none; }
.faq__q:hover { color: var(--copper); }

.faq__q::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 50%;
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--copper);
  border-bottom: 2px solid var(--copper);
  transform: translateY(-70%) rotate(45deg);
  transition: transform .3s ease;
}
.faq__item[open] .faq__q::after {
  transform: translateY(-30%) rotate(-135deg);
}

.faq__a {
  padding: 0 26px 24px;
  color: rgba(31, 37, 34, 0.78);
  font-size: 1rem;
  line-height: 1.68;
}
.faq__a a {
  border-bottom: 1px solid var(--copper);
}

@media (max-width: 760px) {
  .faq { padding: 64px 0; }
  .faq__q { padding: 18px 48px 18px 20px; font-size: 1.06rem; }
  .faq__q::after { right: 18px; width: 10px; height: 10px; }
  .faq__a { padding: 0 20px 20px; }
}

/* Print: simplify */
@media print {
  .nav, .hero__cta, .info__cta-card, .btn { display: none !important; }
  .hero__figure, .o-gabinecie__figure, .galeria { display: none !important; }
}
