/* ============================================================
   Massage4you — premium studio website
   ============================================================ */

:root {
  --cream:      #F6F3EC;
  --cream-2:    #EDE7DA;
  --ink:        #2E4B37;
  --muted:      #55594C;
  --faint:      #8C9080;
  --paper-dark: #E6E2D6;
  --accent:     #C08B4E;   /* change this one line to re-tint the whole site */
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Jost', system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
/* the header is fixed — keep anchor targets clear of it */
[id] { scroll-margin-top: 96px; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: var(--accent); }
a:hover { color: var(--ink); }
::selection { background: var(--ink); color: var(--cream); }

.wrap { padding-left: clamp(24px, 5vw, 72px); padding-right: clamp(24px, 5vw, 72px); }
.section { padding-top: clamp(80px, 12vh, 160px); padding-bottom: clamp(80px, 12vh, 160px); }
.eyebrow {
  font-size: 12px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--accent); margin: 0 0 22px; font-weight: 500;
}
.h2 {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(32px, 4.5vw, 60px); line-height: 1.05;
  margin: 0; letter-spacing: -0.01em; text-wrap: balance;
}
.lead { font-size: 17px; line-height: 1.8; color: var(--muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; text-decoration: none; border-radius: 100px;
  font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 400;
  padding: 16px 34px; transition: opacity .3s ease, background .3s ease, color .3s ease;
}
.btn--solid { background: var(--accent); color: var(--cream); }
.btn--solid:hover { opacity: .9; color: var(--cream); }
.btn--ghost { color: var(--cream); border-bottom: 1px solid rgba(251,245,236,.5); border-radius: 0; padding: 16px 8px; }
.btn--ghost:hover { color: var(--cream); }
/* light booking button — readable on the cream cards and on their dark hover state */
.btn--light { background: var(--cream); color: var(--ink); border: 1px solid rgba(46,75,55,.16); }
.btn--light:hover { background: var(--accent); border-color: var(--accent); color: var(--cream); }
.btn--sm { padding: 12px 24px; font-size: 11px; letter-spacing: .18em; }

/* ---------- Header / nav ---------- */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px clamp(24px, 5vw, 72px);
  transition: background .35s ease, padding .35s ease, box-shadow .35s ease;
}
/* keeps the cream logo and nav legible over a bright hero frame */
.header::before {
  content: ''; position: absolute; inset: 0 0 auto 0; height: 160px; z-index: -1;
  background: linear-gradient(180deg, rgba(23,38,28,.62) 0%, rgba(23,38,28,.28) 55%, rgba(23,38,28,0) 100%);
  pointer-events: none; transition: opacity .35s ease;
}
/* transparent over the hero, solid once the page scrolls past it */
.header--scrolled { background: var(--ink); padding-top: 12px; padding-bottom: 12px; box-shadow: 0 18px 40px -32px rgba(23, 38, 28, .9); }
.header--scrolled::before, .header--solid::before { opacity: 0; }
.logo {
  display: inline-flex; align-items: center; gap: 12px;
  text-decoration: none; color: var(--cream); font-family: var(--serif);
  font-size: 26px; font-weight: 600; letter-spacing: .02em; line-height: 1;
}
.logo__mark { height: 34px; width: auto; transition: height .35s ease; }
.header--scrolled .logo__mark { height: 30px; }
.logo i { font-style: italic; font-weight: 500; }
.nav { display: flex; gap: 34px; align-items: center; }
.nav a {
  text-decoration: none; color: var(--cream); font-size: 13px; letter-spacing: .14em;
  text-transform: uppercase; font-weight: 400; opacity: .85; transition: opacity .3s ease;
}
.nav a:hover { opacity: 1; }
.nav-cta {
  text-decoration: none; color: var(--cream); border: 1px solid rgba(251,245,236,.6);
  padding: 11px 22px; font-size: 12px; letter-spacing: .16em; text-transform: uppercase; border-radius: 100px;
}
.nav__book { display: none; }
.nav-toggle { display: none; background: none; border: 0; color: var(--cream); cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 1.5px; background: var(--cream); margin: 5px 0; transition: .3s; }

/* Solid header — used on every page that is not the homepage */
.header--solid {
  position: sticky; top: 0; right: auto; bottom: auto; left: auto;
  background: var(--ink);
}

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: flex-end;
  padding: clamp(28px, 5vw, 72px); padding-bottom: clamp(48px, 7vh, 96px);
}
/* object-position keeps the massage tables in frame when the portrait shot is cropped to a landscape hero */
.hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 45%; z-index: 0; }
.hero__scrim {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, rgba(30,25,18,.42) 0%, rgba(30,25,18,.12) 32%, rgba(30,25,18,.40) 66%, rgba(30,25,18,.80) 100%);
}
.hero__body { position: relative; z-index: 2; max-width: 900px; color: var(--cream); animation: rise 1s ease both; }
.hero__kicker { font-size: 13px; letter-spacing: .28em; text-transform: uppercase; margin: 0 0 26px; opacity: .9; }
.hero h1 {
  font-family: var(--serif); font-weight: 500; font-size: clamp(44px, 7vw, 96px);
  line-height: 1.02; margin: 0; letter-spacing: -.01em; text-wrap: balance;
}
.hero h1 i { font-style: italic; }
.hero__text { max-width: 520px; font-size: clamp(16px, 1.4vw, 19px); line-height: 1.7; margin: 30px 0 40px; opacity: .92; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.hero__hours {
  position: absolute; right: clamp(28px,5vw,72px); bottom: clamp(48px,7vh,96px); z-index: 2;
  color: var(--cream); text-align: right; font-size: 13px; line-height: 1.9; opacity: .85; letter-spacing: .03em;
}
.hero__hours .phone { margin-top: 8px; font-size: 15px; letter-spacing: .06em; }

/* ---------- Marquee ---------- */
.marquee { background: var(--ink); color: var(--paper-dark); overflow: hidden; padding: 20px 0; white-space: nowrap; }
.marquee__track { display: inline-flex; animation: marquee 34s linear infinite; }
.marquee__track span { font-family: var(--serif); font-style: italic; font-size: 22px; }

/* ---------- Grid helper ---------- */
.grid12 { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(32px, 5vw, 80px); align-items: center; }

/* ---------- About ---------- */
.about__media { grid-column: 8 / span 5; position: relative; }
.about__copy { grid-column: 1 / span 6; }
.about__img { width: 100%; height: clamp(420px, 40vw, 620px); object-fit: cover; }
.about__inset {
  position: absolute; bottom: -48px; left: -48px; width: 46%;
  height: clamp(190px, 18vw, 280px); object-fit: cover; border: 10px solid var(--cream);
}
.stats { display: flex; gap: clamp(28px, 4vw, 56px); margin-top: 40px; }
.stat__n { font-family: var(--serif); font-size: 46px; font-weight: 500; line-height: 1; }
.stat__l { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--faint); margin-top: 8px; }

/* ---------- Offer / cennik ---------- */
.offer { background: var(--cream-2); }
.price-group + .price-group { margin-top: clamp(48px, 6vw, 84px); }
.price-group .hub-group__head { margin-bottom: clamp(20px, 2.4vw, 32px); }
.section-head { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 24px; margin-bottom: clamp(48px, 7vh, 88px); }
.section-head .h2 { max-width: 640px; }
.link-underline { text-decoration: none; color: var(--ink); font-size: 13px; letter-spacing: .16em; text-transform: uppercase; border-bottom: 1px solid var(--ink); padding-bottom: 4px; }
/* separators are drawn per card, so half-filled last rows stay invisible */
.svc-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 0;
  background: var(--cream-2);
  border-top: 1px solid rgba(42,37,30,.14); border-left: 1px solid rgba(42,37,30,.14);
}
.svc {
  background: var(--cream-2); padding: clamp(28px, 3vw, 44px); display: flex; flex-direction: column;
  min-height: 300px; transition: background .5s ease, color .5s ease;
  /* each card owns its own right/bottom rule, so a half-filled last row stays clean */
  border-right: 1px solid rgba(42,37,30,.14); border-bottom: 1px solid rgba(42,37,30,.14);
}
.svc:hover { background: var(--ink); color: var(--cream); }
.svc:hover .svc__desc { color: #C9BCA6; }
.svc__num { font-family: var(--serif); font-size: 15px; opacity: .5; }
.svc__name { font-family: var(--serif); font-weight: 500; font-size: clamp(24px, 2vw, 30px); line-height: 1.15; margin: 18px 0 14px; letter-spacing: -.005em; }
.svc__desc { font-size: 15px; line-height: 1.7; color: var(--muted); margin: 0 0 auto; }
.svc__foot { display: flex; justify-content: space-between; align-items: baseline; margin-top: 32px; padding-top: 18px; border-top: 1px solid rgba(42,37,30,.16); }
.svc__time { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--faint); }
.svc__price { font-family: var(--serif); font-size: 22px; font-weight: 500; }
.svc__cta { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; margin-top: 22px; }
.svc__more {
  font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--accent); text-decoration: none; transition: color .3s ease;
}
.svc:hover .svc__more { color: var(--cream); }
.note { font-family: var(--serif); font-style: italic; font-size: 16px; color: var(--faint); margin: 24px 0 0; }

/* ---------- Why ---------- */
.why__head { grid-column: 1 / span 4; }
.why__grid { grid-column: 6 / span 7; display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(24px, 3vw, 48px) clamp(32px, 4vw, 56px); }
.rating-badge { display: flex; align-items: center; gap: 14px; padding: 20px 24px; background: var(--cream-2); border-radius: 6px; margin-top: 32px; }
.rating-badge .num { font-family: var(--serif); font-size: 40px; font-weight: 600; line-height: 1; }
.stars { color: var(--accent); letter-spacing: 3px; font-size: 15px; }
.why__item h3 { font-family: var(--serif); font-weight: 500; font-size: clamp(21px, 1.9vw, 27px); margin: 0 0 12px; letter-spacing: -.005em; }
.why__item .n { font-family: var(--serif); font-size: 15px; color: var(--accent); margin-bottom: 14px; }
.why__item p { font-size: 15px; line-height: 1.7; color: var(--muted); margin: 0; }

/* ---------- Team ---------- */
.team { background: var(--cream-2); }
.center-head { text-align: center; max-width: 640px; margin: 0 auto clamp(48px, 7vh, 80px); }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: clamp(24px, 3vw, 44px); max-width: 1100px; margin: 0 auto; }
.team-card img { width: 100%; height: clamp(300px, 34vw, 400px); object-fit: cover; border-radius: 4px; }
.team-card h3 { font-family: var(--serif); font-weight: 500; font-size: 24px; margin: 22px 0 6px; letter-spacing: -.005em; }
.team-card p { font-size: 13px; letter-spacing: .06em; color: var(--faint); margin: 0; text-transform: uppercase; }

/* ---------- Feature / quote ---------- */
.feature { position: relative; min-height: 74vh; display: flex; align-items: center; justify-content: center; padding: clamp(60px, 10vh, 140px) clamp(24px, 6vw, 100px); text-align: center; }
.feature img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.feature .scrim { position: absolute; inset: 0; z-index: 1; background: rgba(30,25,18,.55); }
.feature blockquote { position: relative; z-index: 2; color: var(--cream); max-width: 900px; margin: 0; display: flex; flex-direction: column; align-items: center; }
.play {
  width: 76px; height: 76px; border-radius: 100px; border: 1px solid rgba(251,245,236,.6);
  background: rgba(251,245,236,.08); color: var(--cream); cursor: pointer;
  display: flex; align-items: center; justify-content: center; margin-bottom: 40px;
  backdrop-filter: blur(2px); transition: background .3s ease;
}
.play:hover { background: rgba(251,245,236,.18); }
.play i { display: block; width: 0; height: 0; border-top: 9px solid transparent; border-bottom: 9px solid transparent; border-left: 15px solid var(--cream); margin-left: 4px; }
.feature q { font-family: var(--serif); font-weight: 400; font-style: italic; font-size: clamp(28px, 4vw, 52px); line-height: 1.3; text-wrap: balance; quotes: "„" "”"; }
.feature footer { font-size: 12px; letter-spacing: .24em; text-transform: uppercase; margin-top: 32px; opacity: .8; }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: clamp(160px, 15vw, 220px); gap: clamp(10px, 1vw, 16px); }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; border-radius: 4px; }
.g-tall { grid-column: span 2; grid-row: span 2; }
.g-wide { grid-column: span 2; }

/* ---------- Reviews ---------- */
.reviews { background: var(--ink); color: var(--paper-dark); }
.reviews .h2 { color: var(--cream); }
.reviews .stars-lg { color: var(--accent); letter-spacing: 4px; font-size: 18px; }
.review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: clamp(20px, 2.5vw, 36px); }
.review { border: 1px solid rgba(232,221,203,.16); border-radius: 6px; padding: clamp(28px, 3vw, 40px); display: flex; flex-direction: column; }
.review .stars { margin-bottom: 22px; font-size: 14px; }
.review q { font-family: var(--serif); font-style: italic; font-size: clamp(19px, 1.6vw, 24px); line-height: 1.45; color: var(--cream); margin: 0 0 auto; quotes: "„" "”"; }
.review__foot { display: flex; justify-content: space-between; align-items: center; margin-top: 32px; padding-top: 20px; border-top: 1px solid rgba(232,221,203,.16); }
.review__foot .author { font-size: 14px; color: var(--paper-dark); }
.review__foot .src { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--faint); }

/* ---------- Vouchers ---------- */
.voucher__media { grid-column: 1 / span 5; }
.voucher__copy { grid-column: 7 / span 6; }
.voucher-card {
  aspect-ratio: 1.6/1; background: linear-gradient(135deg, #2A251E 0%, #3E5A46 100%);
  border-radius: 6px; padding: clamp(28px,3vw,44px); display: flex; flex-direction: column;
  justify-content: space-between; color: var(--cream); box-shadow: 0 30px 60px -30px rgba(42,37,30,.5);
}
.voucher-card .top { display: flex; justify-content: space-between; align-items: flex-start; }
.voucher-card .brand { font-family: var(--serif); font-size: 22px; font-weight: 600; }
.voucher-card .brand i { font-style: italic; }
.voucher-card .tag { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; opacity: .7; }
.voucher-card .kicker { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; opacity: .6; margin-bottom: 8px; }
.voucher-card .title { font-family: var(--serif); font-size: clamp(26px,3vw,40px); font-weight: 500; line-height: 1.1; }

/* ---------- Blog ---------- */
.blog { background: var(--cream-2); }
.post-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: clamp(24px, 3vw, 44px); }
.post { text-decoration: none; color: inherit; display: block; }
.post__thumb { overflow: hidden; border-radius: 4px; }
.post__thumb img { width: 100%; height: clamp(200px, 22vw, 260px); object-fit: cover; transition: transform .7s ease; }
.post:hover .post__thumb img { transform: scale(1.04); }
.post__meta { display: flex; gap: 12px; align-items: center; margin: 20px 0 12px; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--faint); }
.post__meta .cat { color: var(--accent); }
.post h3 { font-family: var(--serif); font-weight: 500; font-size: clamp(22px, 2vw, 28px); line-height: 1.2; margin: 0; letter-spacing: -.005em; transition: color .3s ease; }
.post:hover h3 { color: var(--accent); }

/* ---------- Booking form ---------- */
.booking { align-items: start; }
.booking__copy { grid-column: 1 / span 5; }
.booking__form { grid-column: 7 / span 6; }
.booking__aside { border-top: 1px solid rgba(46,75,55,.16); padding-top: 26px; max-width: 380px; }
.booking__label { font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
.booking__phone {
  display: inline-block; text-decoration: none; color: var(--ink);
  font-family: var(--serif); font-size: clamp(26px, 2.6vw, 34px); font-weight: 500;
}
.booking__phone:hover { color: var(--accent); }
.booking__mail { display: block; margin-top: 8px; font-size: 15px; color: var(--muted); text-decoration: none; border-bottom: 1px solid rgba(46,75,55,.28); padding-bottom: 2px; width: fit-content; }
.booking__hours { margin-top: 22px; color: var(--muted); }
.booking__hours .hours-row { font-size: 15px; }
.booking__hours .hours-row + .hours-row { border-top: 1px solid rgba(46,75,55,.14); }

.form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 20px; }
.field { display: flex; flex-direction: column; gap: 9px; min-width: 0; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--faint); }
.field input, .field select, .field textarea {
  font-family: var(--sans); font-size: 15px; font-weight: 300; color: var(--ink);
  background: #fff; border: 1px solid rgba(46,75,55,.18); border-radius: 8px;
  padding: 14px 16px; width: 100%;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.field textarea { resize: vertical; min-height: 108px; line-height: 1.6; }
.field select {
  appearance: none; -webkit-appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%232E4B37' stroke-width='1.4' d='M1 1.5 6 6.5l5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; background-size: 12px;
  padding-right: 42px;
}
.field input::placeholder, .field textarea::placeholder { color: #A9AC9C; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(192,139,78,.16);
}
.field input:user-invalid, .field select:user-invalid, .field textarea:user-invalid { border-color: #B4553F; }

.consent { display: flex; gap: 12px; align-items: flex-start; font-size: 13.5px; line-height: 1.6; color: var(--muted); cursor: pointer; }
.consent input { flex: 0 0 auto; width: 18px; height: 18px; margin: 2px 0 0; accent-color: var(--accent); cursor: pointer; }
.form__actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; margin-top: 4px; }
.form__actions .btn { border: 0; cursor: pointer; font-family: var(--sans); }
.form__hint { font-size: 12px; letter-spacing: .04em; color: var(--faint); }
.form__status { grid-column: 1 / -1; margin: 0; font-size: 14.5px; line-height: 1.6; }
.form__status:empty { display: none; }
.form__status--ok { color: var(--ink); border-left: 2px solid var(--accent); padding-left: 14px; }
.form__status--err { color: #A24A35; border-left: 2px solid #A24A35; padding-left: 14px; }

/* ---------- Contact / footer ---------- */
.contact { background: var(--ink); color: var(--paper-dark); padding: clamp(80px, 12vh, 150px) clamp(24px, 5vw, 72px) clamp(48px,6vh,80px); }
.contact .grid12 { align-items: start; }
.contact__main { grid-column: 1 / span 6; }
.contact .h2 { color: var(--cream); margin-bottom: 40px; }
.contact__phone { text-decoration: none; color: var(--cream); font-family: var(--serif); font-size: clamp(28px,3vw,40px); font-weight: 500; display: inline-block; margin-bottom: 8px; }
.contact__mail { text-decoration: none; color: var(--paper-dark); font-size: 17px; letter-spacing: .02em; border-bottom: 1px solid rgba(232,221,203,.35); padding-bottom: 3px; }
.contact__col { grid-column: span 3; }
.contact__label { font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--accent); margin-bottom: 18px; }
.hours-row { display: flex; justify-content: space-between; padding: 6px 0; font-size: 16px; }
.hours-row + .hours-row { border-top: 1px solid rgba(232,221,203,.14); }
.address { font-size: 16px; line-height: 1.8; }
.footer { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; margin-top: clamp(64px,9vh,120px); padding-top: 32px; border-top: 1px solid rgba(232,221,203,.16); }
.footer .brand { font-family: var(--serif); font-size: 22px; font-weight: 600; color: var(--cream); }
.footer .brand i { font-style: italic; }
.footer__logo { height: 84px; width: auto; opacity: .92; }
.footer .copy { font-size: 12px; letter-spacing: .1em; color: var(--faint); }

/* ============================================================
   ZABIEGI — service pages (/zabiegi/*.html)
   ============================================================ */
.sv-section { padding: clamp(64px, 9vw, 120px) clamp(24px, 5vw, 72px); }
.crumbs { padding: 18px clamp(24px, 5vw, 72px); font-size: 12px; letter-spacing: .08em; color: var(--faint); }
.crumbs a { color: var(--faint); text-decoration: none; }
.crumbs a:hover { color: var(--ink); }
.crumbs .here { color: var(--ink); }

/* extra button variants used on light / dark service sections */
.btn--line { color: var(--ink); border-bottom: 1px solid var(--ink); border-radius: 0; padding: 16px 6px; }
.btn--line:hover { color: var(--accent); border-color: var(--accent); }
.btn--dark { background: var(--ink); color: var(--cream); }
.btn--dark:hover { color: var(--cream); opacity: .9; }
.btn--outline { color: var(--cream); border: 1px solid rgba(246, 243, 236, .5); }
.btn--outline:hover { color: var(--cream); background: rgba(246, 243, 236, .1); }

/* 1 · hero */
.sv-hero { display: grid; grid-template-columns: 1.05fr 1fr; min-height: 74vh; }
.sv-hero__body { padding: clamp(48px, 6vw, 96px) clamp(24px, 5vw, 72px); display: flex; flex-direction: column; justify-content: center; }
.sv-hero h1 {
  font-family: var(--serif); font-weight: 500; font-size: clamp(40px, 5vw, 74px);
  line-height: 1.02; margin: 0 0 24px; letter-spacing: -.01em; text-wrap: balance;
}
.sv-hero .lead { font-size: clamp(16px, 1.3vw, 19px); max-width: 520px; margin: 0 0 36px; }
.sv-hero__media { position: relative; min-height: 340px; }
.sv-hero__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.sv-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }

/* 2 · quick facts strip */
.sv-facts {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1px;
  background: rgba(46, 75, 55, .14);
  border-top: 1px solid rgba(46, 75, 55, .14); border-bottom: 1px solid rgba(46, 75, 55, .14);
}
.sv-fact { background: var(--cream); padding: clamp(22px, 2.4vw, 32px) clamp(24px, 3vw, 40px); }
.sv-fact__l { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--faint); margin-bottom: 10px; }
.sv-fact__v { font-family: var(--serif); font-size: clamp(21px, 2vw, 27px); font-weight: 500; line-height: 1.2; }

/* 3 · na czym polega */
.sv-about__copy { grid-column: 1 / span 6; }
.sv-about__media { grid-column: 8 / span 5; }
.sv-about__media img { width: 100%; height: clamp(320px, 32vw, 480px); object-fit: cover; border-radius: 4px; }
.sv-about__copy p + p { margin-top: 18px; }

/* 4 · korzyści */
.sv-benefits { background: var(--ink); color: var(--cream); }
.sv-benefits .h2 { color: var(--cream); }
.sv-ben__head { grid-column: 1 / span 4; }
.sv-ben__grid { grid-column: 6 / span 7; display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(22px, 3vw, 44px); }
.sv-ben__item .n { font-family: var(--serif); font-size: 15px; color: var(--accent); margin-bottom: 12px; }
.sv-ben__item h3 { font-family: var(--serif); font-weight: 500; font-size: clamp(20px, 1.8vw, 26px); margin: 0 0 10px; }
.sv-ben__item p { font-size: 15px; line-height: 1.7; color: #C4C7B5; margin: 0; }

/* 5 · jak przebiega */
.sv-steps__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1px;
  background: rgba(46, 75, 55, .14); border: 1px solid rgba(46, 75, 55, .14);
}
.sv-step { background: var(--cream); padding: clamp(26px, 3vw, 40px); min-height: 220px; display: flex; flex-direction: column; }
.sv-step .n { font-family: var(--serif); font-size: 40px; font-weight: 500; color: var(--accent); line-height: 1; }
.sv-step h3 { font-family: var(--serif); font-weight: 500; font-size: clamp(20px, 1.8vw, 25px); margin: 16px 0 10px; }
.sv-step p { font-size: 14px; line-height: 1.65; color: var(--muted); margin: 0; }

/* 6 · czas i cena */
.sv-price { background: var(--cream-2); }
.sv-price__copy { grid-column: 1 / span 5; }
.sv-price__list { grid-column: 7 / span 6; }
.sv-price__row {
  display: flex; align-items: baseline; justify-content: space-between; gap: 20px;
  background: #fff; border-radius: 12px; padding: 22px 26px; margin-bottom: 12px;
  box-shadow: 0 10px 26px -22px rgba(46, 75, 55, .6);
}
.sv-price__t { font-family: var(--serif); font-size: 24px; font-weight: 500; }
.sv-price__n { font-size: 13px; letter-spacing: .04em; color: var(--faint); margin-top: 3px; }
.sv-price__p { font-family: var(--serif); font-size: 28px; font-weight: 600; color: var(--accent); white-space: nowrap; }

/* 7 · przeciwwskazania */
.sv-contra__head { grid-column: 1 / span 4; }
.sv-contra__body { grid-column: 6 / span 7; }
.sv-contra__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 40px; }
.sv-contra__item {
  display: flex; gap: 12px; align-items: flex-start; padding: 10px 0;
  border-bottom: 1px solid rgba(46, 75, 55, .12); font-size: 15px; line-height: 1.5; color: var(--muted);
}
.sv-contra__item svg { flex-shrink: 0; margin-top: 2px; }

/* 9 · powiązane zabiegi */
.sv-rel-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: clamp(16px, 2vw, 28px); }
.sv-rel {
  display: block; text-decoration: none; color: var(--ink); background: #fff; border-radius: 14px; overflow: hidden;
  box-shadow: 0 10px 28px -22px rgba(46, 75, 55, .6); transition: transform .25s ease, box-shadow .25s ease;
}
.sv-rel:hover { transform: translateY(-4px); box-shadow: 0 24px 46px -26px rgba(46, 75, 55, .5); color: var(--ink); }
.sv-rel img { width: 100%; height: 180px; object-fit: cover; }
.sv-rel__body { padding: 20px 22px 24px; }
.sv-rel h3 { font-family: var(--serif); font-weight: 500; font-size: 23px; margin: 0 0 6px; }
.sv-rel__meta { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--faint); }

/* 10 · FAQ */
.sv-faq { background: var(--cream-2); }
.sv-faq__inner { max-width: 860px; margin: 0 auto; }
.sv-faq__item { border-top: 1px solid rgba(46, 75, 55, .16); padding: 26px 0; }
.sv-faq__item h3 { font-family: var(--serif); font-weight: 500; font-size: clamp(20px, 1.9vw, 26px); margin: 0 0 12px; }
.sv-faq__item p { font-size: 16px; line-height: 1.75; color: var(--muted); margin: 0; }

/* 11 · CTA */
.sv-cta { background: var(--ink); color: var(--cream); text-align: center; padding: clamp(72px, 10vw, 140px) clamp(24px, 5vw, 72px); }
.sv-cta h2 {
  font-family: var(--serif); font-weight: 500; font-size: clamp(32px, 4.5vw, 62px); line-height: 1.04;
  margin: 0 auto 20px; max-width: 720px; letter-spacing: -.01em; text-wrap: balance;
}
.sv-cta .lead { color: #C4C7B5; max-width: 520px; margin: 0 auto 36px; }
.sv-cta .sv-actions { justify-content: center; }

/* ---------- Zabiegi hub ---------- */
.hub-hero { background: var(--ink); color: var(--cream); padding: clamp(72px, 9vw, 130px) clamp(24px, 5vw, 72px); }
.hub-hero h1 {
  font-family: var(--serif); font-weight: 500; font-size: clamp(40px, 5.4vw, 78px); line-height: 1.02;
  margin: 0 0 24px; max-width: 900px; letter-spacing: -.01em; text-wrap: balance;
}
.hub-hero .lead { color: #C4C7B5; max-width: 620px; margin: 0; }
.hub-group + .hub-group { padding-top: 0; }
.hub-group__head { display: flex; align-items: baseline; gap: 18px; margin-bottom: clamp(28px, 3vw, 44px); }
.hub-group__n { font-family: var(--serif); font-size: 15px; color: var(--accent); }
.hub-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: clamp(16px, 2vw, 28px); }
.hub-card {
  display: flex; flex-direction: column; text-decoration: none; color: var(--ink); background: #fff;
  border-radius: 14px; overflow: hidden; box-shadow: 0 10px 28px -22px rgba(46, 75, 55, .6);
  transition: transform .25s ease, box-shadow .25s ease;
}
a.hub-card:hover { transform: translateY(-4px); box-shadow: 0 24px 46px -26px rgba(46, 75, 55, .5); color: var(--ink); }
.hub-card__thumb { position: relative; height: 190px; }
.hub-card__thumb img { width: 100%; height: 100%; object-fit: cover; }
.hub-card__pill {
  position: absolute; top: 14px; left: 14px; background: var(--ink); color: var(--cream);
  font-size: 10px; letter-spacing: .16em; text-transform: uppercase; padding: 7px 13px; border-radius: 100px;
}
.hub-card__body { padding: 22px 24px 24px; display: flex; flex-direction: column; flex: 1; }
.hub-card h3 { font-family: var(--serif); font-weight: 500; font-size: 25px; margin: 0 0 10px; letter-spacing: -.005em; }
.hub-card p { font-size: 14px; line-height: 1.65; color: var(--muted); margin: 0 0 auto; }
.hub-card__foot {
  display: flex; justify-content: space-between; align-items: baseline; gap: 16px;
  margin-top: 26px; padding-top: 16px; border-top: 1px solid rgba(46, 75, 55, .14);
  font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--faint);
}
.hub-card__go { color: var(--accent); transition: transform .25s ease; display: inline-block; }
a.hub-card:hover .hub-card__go { transform: translateX(4px); }
.hub-card--soon { opacity: .62; }
.hub-card--soon .hub-card__go { color: var(--faint); }

/* ---------- Animations ---------- */
@keyframes rise { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .nav { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: block; }
  .nav.open {
    display: flex; flex-direction: column; align-items: flex-start; gap: 20px;
    position: absolute; top: 100%; right: clamp(24px,5vw,72px);
    background: var(--ink); padding: 24px 32px; border-radius: 8px;
    box-shadow: 0 30px 60px -34px rgba(23, 38, 28, .95);
  }
  .nav.open .nav__book {
    display: block; color: var(--accent); opacity: 1;
    margin-top: 4px; padding-top: 18px; width: 100%;
    border-top: 1px solid rgba(246, 243, 236, .2);
  }

  .grid12 { grid-template-columns: 1fr; }
  .about__copy, .about__media,
  .why__head, .why__grid,
  .voucher__media, .voucher__copy,
  .booking__copy, .booking__form,
  .contact__main, .contact__col,
  .sv-about__copy, .sv-about__media,
  .sv-ben__head, .sv-ben__grid,
  .sv-price__copy, .sv-price__list,
  .sv-contra__head, .sv-contra__body { grid-column: 1 / -1 !important; }
  .sv-hero { grid-template-columns: 1fr; min-height: 0; }
  .sv-hero__media { min-height: 56vh; order: -1; }
  .sv-about__media { margin-top: 40px; }
  .about__media { margin-bottom: 56px; }
  .about__inset { left: 0; }
  .why__grid { grid-template-columns: 1fr 1fr; }
  .hero__hours { display: none; }
  .g-tall, .g-wide { grid-column: span 2; grid-row: auto; }
  .booking__form { margin-top: 44px; }
  .footer__logo { height: 66px; }
}
@media (max-width: 620px) {
  .sv-ben__grid, .sv-contra__grid { grid-template-columns: 1fr; }
  .form { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .why__grid { grid-template-columns: 1fr; }
  .stats { flex-wrap: wrap; gap: 28px 40px; }
  .sv-price__row { flex-direction: column; align-items: flex-start; gap: 10px; }
}
