/* ============================================================
   Chrum Home — biuro nieruchomości
   Paleta z logo: kruczy grafit + pudrowy róż + krem
   Siostrzana identyfikacja do kancelarii (Cormorant + Jost)
   ============================================================ */

:root {
  --ink-deep: #1F242B;       /* tło hero/stopki */
  --ink: #262C34;            /* grafit z logo */
  --ink-soft: #39414C;
  --rose: #D28E93;           /* róż ryjka */
  --rose-light: #E9BFC2;
  --rose-deep: #B96F75;
  --cream: #F8F1EC;          /* tło z logo */
  --cream-dark: #F0E6DE;
  --text: #262B31;
  --muted: #666C74;
  --line: #E8DED6;
  --white: #FFFFFF;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Jost', 'Segoe UI', sans-serif;

  --radius: 16px;
  --shadow: 0 12px 36px rgba(31, 36, 43, 0.10);
  --shadow-lg: 0 24px 60px rgba(31, 36, 43, 0.18);
  --container: 1160px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  font-size: 17px;
  overflow-x: hidden;
}

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

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

h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.15;
  color: var(--text);
}

h1 { font-size: clamp(2.6rem, 5.5vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.7rem); }
h3 { font-size: 1.35rem; }

a { color: var(--ink); text-decoration: none; }

/* ---------- Przyciski ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: .98rem;
  padding: 14px 34px;
  border-radius: 3px;
  transition: all .3s var(--ease);
  cursor: pointer;
  border: none;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.btn-rose {
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-deep) 100%);
  color: #fff;
  box-shadow: 0 8px 24px rgba(210, 142, 147, 0.4);
}
.btn-rose:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(185, 111, 117, 0.5);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(38, 44, 52, 0.35);
}
.btn-ghost:hover { border-color: var(--rose-deep); color: var(--rose-deep); }

.btn-dark {
  background: var(--ink);
  color: #fff;
}
.btn-dark:hover { background: var(--ink-deep); transform: translateY(-3px); box-shadow: var(--shadow); }

.btn-lg { padding: 17px 44px; font-size: 1rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 241, 236, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: background .4s var(--ease), box-shadow .4s var(--ease);
}

/* wariant na hero (index) — startuje przezroczysty (jasne hero, ciemny tekst) */
.site-header.on-hero {
  position: fixed;
  left: 0; right: 0;
  background: transparent;
  border-bottom: 1px solid rgba(38, 44, 52, 0.07);
  backdrop-filter: none;
}
.site-header.on-hero .brand-name,
.site-header.on-hero .nav-link { color: var(--text); }
.site-header.on-hero .brand-sub { color: var(--muted); }
.site-header.on-hero .brand-mark { color: var(--ink); }
.site-header.on-hero .nav-toggle span { background: var(--text); }

.site-header.on-hero.scrolled {
  position: fixed;
  background: rgba(248, 241, 236, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 6px 24px rgba(31, 36, 43, 0.08);
}
.site-header.on-hero.scrolled .brand-name,
.site-header.on-hero.scrolled .nav-link { color: var(--text); }
.site-header.on-hero.scrolled .brand-sub { color: var(--muted); }
.site-header.on-hero.scrolled .brand-mark { color: var(--ink); }
.site-header.on-hero.scrolled .nav-toggle span { background: var(--text); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}

.brand { display: flex; align-items: center; gap: 13px; }
.brand-mark {
  width: 52px;
  height: 52px;
  color: var(--ink);
  transition: color .4s;
  flex-shrink: 0;
}
.brand-mark svg { width: 100%; height: 100%; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--text);
  transition: color .4s;
  letter-spacing: .02em;
}
.brand-sub {
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .4s;
}

.main-nav { display: flex; align-items: center; gap: 26px; }
.nav-link {
  color: var(--text);
  font-weight: 400;
  font-size: .95rem;
  letter-spacing: .03em;
  position: relative;
  transition: color .4s;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: -5px;
  width: 0; height: 1.5px;
  background: var(--rose);
  transition: width .3s var(--ease);
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-cta { margin-left: 10px; padding: 11px 26px; font-size: .85rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 110;
}
.nav-toggle span {
  width: 26px; height: 2px;
  background: var(--text);
  transition: all .3s;
}

/* ---------- HERO ---------- */
.hero-main {
  position: relative;
  min-height: clamp(640px, 100vh, 1000px);
  display: flex;
  align-items: center;
  background: linear-gradient(160deg, #FDFAF7 0%, var(--cream) 55%, var(--cream-dark) 100%);
  overflow: hidden;
  padding: 140px 0 90px;
}

/* miękka różowa poświata w rogu */
.hero-main::before {
  content: '';
  position: absolute;
  width: 760px; height: 760px;
  right: -180px; top: -220px;
  background: radial-gradient(circle, rgba(233,191,194,.35) 0%, rgba(233,191,194,0) 65%);
  pointer-events: none;
}

.hero-watermark {
  position: absolute;
  right: -6%;
  top: 50%;
  transform: translateY(-50%);
  width: 620px;
  height: 620px;
  color: rgba(210, 142, 147, 0.13);
  pointer-events: none;
  user-select: none;
}
.hero-watermark svg { width: 100%; height: 100%; }

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 60px;
  align-items: center;
}

.hero-content h1 { color: var(--ink); }
.hero-name {
  display: inline-block;
  margin-top: 6px;
  color: var(--rose-deep);
  font-style: italic;
  font-weight: 500;
}

.hero-kicker {
  font-size: .82rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--rose-deep);
  font-weight: 500;
  margin-bottom: 26px;
}

.rose-divider {
  width: 72px;
  height: 2px;
  background: linear-gradient(90deg, var(--rose), transparent);
  margin: 30px 0 22px;
}

.hero-lead {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.6vw, 1.85rem);
  font-style: italic;
  color: var(--ink-soft);
  margin-bottom: 38px;
}

.hero-cta { display: flex; gap: 18px; flex-wrap: wrap; }

.hero-values {
  margin-top: 46px;
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-values span { color: var(--rose-deep); margin: 0 10px; }

/* wizual hero */
.hero-visual {
  position: relative;
  justify-self: center;
}

.portrait-frame {
  position: relative;
  width: min(380px, 100%);
  border-radius: 240px 240px var(--radius) var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.portrait-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(233, 191, 194, 0.4);
}
.portrait-frame img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform 6s var(--ease);
}
.hero-visual:hover .portrait-frame img { transform: scale(1.05); }

.hero-visual::before {
  content: '';
  position: absolute;
  inset: -16px -16px 16px 16px;
  border: 1px solid rgba(185, 111, 117, 0.4);
  border-radius: 250px 250px var(--radius) var(--radius);
  pointer-events: none;
}

.portrait-badge {
  position: absolute;
  bottom: 26px;
  left: -34px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 14px 26px;
  border-radius: 3px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  border-left: 3px solid var(--rose);
}
.badge-title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--ink);
}
.badge-sub {
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
}

/* animacje wejścia hero */
.anim {
  opacity: 0;
  transform: translateY(28px);
  animation: heroIn 1s var(--ease) forwards;
}
.anim-1 { animation-delay: .1s; }
.anim-2 { animation-delay: .25s; }
.anim-3 { animation-delay: .45s; }
.anim-4 { animation-delay: .65s; }
.anim-5 { animation-delay: .85s; }

@keyframes heroIn {
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---------- Sekcje ---------- */
.section { padding: 96px 0; }
.alt-bg { background: var(--cream); }

.section-head { text-align: center; margin-bottom: 56px; }
.section-head h2 { position: relative; display: inline-block; }
.section-kicker {
  font-size: .8rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--rose-deep);
  font-weight: 500;
  margin-bottom: 12px;
}

/* ---------- Pasek zaufania ---------- */
.trust-strip {
  background: var(--white);
  padding: 76px 0;
  border-bottom: 1px solid var(--line);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.trust-item { text-align: center; padding: 0 12px; }
.trust-item h3 { margin: 18px 0 10px; }
.trust-item p { color: var(--muted); font-size: .96rem; }
.trust-icon {
  width: 64px; height: 64px;
  margin: 0 auto;
  border-radius: 50%;
  background: var(--cream);
  color: var(--rose-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 0 1px var(--line);
}
.trust-icon svg { width: 30px; height: 30px; }

/* ---------- Usługi (karty foto) ---------- */
.spec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.spec-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 440px;
  display: flex;
  align-items: flex-end;
  box-shadow: var(--shadow);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.spec-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.spec-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.spec-card:hover img { transform: scale(1.07); }

.spec-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(31,36,43,.05) 0%, rgba(31,36,43,.55) 55%, rgba(31,36,43,.92) 100%);
  transition: background .4s;
}

.spec-content {
  position: relative;
  padding: 34px 30px;
  color: #fff;
}
.spec-content h3 { color: #fff; font-size: 1.6rem; margin-bottom: 8px; }
.spec-content p { color: rgba(255,255,255,.78); font-size: .95rem; margin-bottom: 16px; }

.spec-more {
  font-size: .8rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--rose-light);
  font-weight: 500;
}
.spec-more .arrow {
  display: inline-block;
  transition: transform .3s var(--ease);
}
.spec-card:hover .spec-more .arrow { transform: translateX(6px); }

/* ---------- Dlaczego my ---------- */
.list-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.list-item {
  position: relative;
  display: block;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 66px 28px 30px;
  transition: all .35s var(--ease);
}
.list-item:hover {
  border-color: var(--rose);
  box-shadow: var(--shadow);
  transform: translateX(6px);
}
.list-item h3 { font-size: 1.25rem; margin-bottom: 4px; }
.list-item p { color: var(--muted); font-size: .93rem; }
.list-item .arrow {
  position: absolute;
  right: 26px;
  top: 28px;
  font-size: 1.3rem;
  color: var(--rose-deep);
}

.advantage-note {
  text-align: center;
  margin-top: 42px;
  color: var(--muted);
  font-style: italic;
}
.advantage-note a {
  color: var(--rose-deep);
  border-bottom: 1px solid rgba(185, 111, 117, .4);
  transition: color .3s;
}
.advantage-note a:hover { color: var(--ink); }

/* ---------- Band ---------- */
.quote-band {
  position: relative;
  background: url('img/hero-wnetrze.jpg') center 40%/cover no-repeat;
  background-attachment: fixed;
  padding: 150px 0;
  text-align: center;
}
.quote-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(31,36,43,.93) 0%, rgba(57,65,76,.84) 100%);
}
.quote-inner { position: relative; }
.quote-mark {
  font-family: var(--font-serif);
  font-size: 7rem;
  line-height: .4;
  color: var(--rose);
  margin-bottom: 26px;
}
.quote-band h2 {
  color: #fff;
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-style: italic;
  font-weight: 500;
  margin-bottom: 40px;
}

/* ---------- O mnie ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 72px;
  align-items: center;
}

.photo-frame {
  position: relative;
  border-radius: 240px 240px var(--radius) var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.photo-frame img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}
.about-photo { position: relative; }
.about-photo::before {
  content: '';
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 1px solid var(--rose);
  opacity: .45;
  border-radius: 240px 240px var(--radius) var(--radius);
  pointer-events: none;
}

.about-text h2 { margin-bottom: 22px; }
.about-text h2 .soft {
  display: block;
  font-size: .55em;
  font-style: italic;
  font-weight: 500;
  color: var(--rose-deep);
  margin-top: 6px;
}
.about-text p { color: var(--muted); margin-bottom: 18px; }
.about-text .btn { margin-top: 14px; }

.about-quote {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--ink) !important;
  line-height: 1.5;
  padding-left: 22px;
  border-left: 2px solid var(--rose);
}

/* ---------- Proces ---------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.process-step {
  background: var(--white);
  border-radius: var(--radius);
  padding: 44px 34px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  transition: transform .35s var(--ease);
}
.process-step:hover { transform: translateY(-6px); }
.step-num {
  font-family: var(--font-serif);
  font-size: 4.4rem;
  font-weight: 700;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--rose);
  display: block;
  margin-bottom: 18px;
}
.process-step h3 { margin-bottom: 10px; }
.process-step p { color: var(--muted); font-size: .96rem; }

/* ---------- Kontakt ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 56px;
  align-items: start;
}
.contact-info p { color: var(--muted); margin-bottom: 22px; }
.contact-info a { font-weight: 500; font-size: 1.15rem; }
.contact-line strong {
  display: block;
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--rose-deep);
  font-weight: 500;
  margin-bottom: 2px;
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 42px;
  box-shadow: var(--shadow);
}
.form-row { margin-bottom: 20px; }
.form-row label {
  display: block;
  font-weight: 500;
  font-size: .9rem;
  margin-bottom: 6px;
}
.form-row input,
.form-row textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--text);
  background: var(--cream);
  transition: border-color .25s, background .25s;
}
.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--rose);
  background: #fff;
}
.form-row textarea { min-height: 140px; resize: vertical; }
.form-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: .85rem;
  color: var(--muted);
  margin-bottom: 24px;
}
.form-consent input { margin-top: 4px; }
.form-consent a { color: var(--rose-deep); }

/* ---------- Stopka ---------- */
.site-footer {
  background: var(--ink-deep);
  color: rgba(255, 255, 255, 0.75);
  padding: 70px 0 0;
  font-size: .95rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.3fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  align-items: start;
}
.footer-logo {
  width: 150px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
}
.footer-brand {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 12px;
}
.footer-head {
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: .74rem;
  color: var(--rose-light);
  margin-bottom: 14px;
}
.footer-col p { color: rgba(255, 255, 255, 0.65); }
.footer-col a { color: rgba(255, 255, 255, 0.65); transition: color .3s; }
.footer-col a:hover { color: var(--rose-light); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 22px;
  padding-bottom: 22px;
  text-align: center;
  color: rgba(255, 255, 255, 0.45);
  font-size: .84rem;
}
.footer-bottom a { color: rgba(255, 255, 255, 0.55); }
.footer-bottom a:hover { color: var(--rose-light); }
.footer-credit { margin-top: 6px; font-size: .78rem; }
.footer-credit a { color: var(--rose-light); }

/* ---------- Baner cookies ---------- */
#cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 400;
  background: var(--ink-deep);
  color: rgba(255, 255, 255, 0.7);
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.35);
  transform: translateY(110%);
  transition: transform .5s var(--ease);
  border-top: 2px solid var(--rose);
}
#cookie-banner.cb-visible { transform: translateY(0); }
.cb-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cb-text { flex: 1; min-width: 260px; }
.cb-text strong { color: #fff; display: block; margin-bottom: 4px; font-family: var(--font-serif); font-size: 1.1rem; }
.cb-text p { color: rgba(255,255,255,.6); font-size: 13px; line-height: 1.5; margin: 0; }
.cb-text a { color: var(--rose-light); border-bottom: 1px solid rgba(233,191,194,.4); }
.cb-buttons { display: flex; gap: 10px; flex-wrap: wrap; }
.cb-btn {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: .04em;
  padding: 11px 20px;
  border-radius: 3px;
  border: none;
  cursor: pointer;
  transition: transform .25s, background .25s;
}
.cb-btn:hover { transform: translateY(-1px); }
.cb-btn-accept { background: linear-gradient(135deg, var(--rose) 0%, var(--rose-deep) 100%); color: #fff; }
.cb-btn-necessary { background: rgba(255,255,255,.1); color: rgba(255,255,255,.85); border: 1px solid rgba(255,255,255,.15); }
.cb-btn-necessary:hover { background: rgba(255,255,255,.18); }
.cb-btn-settings { background: transparent; color: rgba(255,255,255,.55); border: 1px solid rgba(255,255,255,.15); }
.cb-btn-settings:hover { color: #fff; }
#cb-panel { border-top: 1px solid rgba(255,255,255,.08); }
.cb-panel-inner { max-width: var(--container); margin: 0 auto; padding: 18px 24px 14px; }
.cb-panel-inner h3 { color: rgba(255,255,255,.5); font-size: 11px; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 14px; font-family: var(--font-sans); font-weight: 600; }
.cb-option { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.05); }
.cb-option:last-of-type { border-bottom: none; }
.cb-option-info strong { color: #fff; font-size: 14px; display: block; margin-bottom: 2px; }
.cb-option-info span { color: rgba(255,255,255,.4); font-size: 12px; line-height: 1.4; }
.cb-toggle-on { color: var(--rose-light); font-size: 12px; font-weight: 600; }
.cb-toggle-switch { position: relative; display: inline-block; width: 44px; height: 24px; flex-shrink: 0; }
.cb-toggle-switch input { opacity: 0; width: 0; height: 0; }
.cb-slider { position: absolute; cursor: pointer; inset: 0; background: rgba(255,255,255,.15); border-radius: 24px; transition: background .2s; }
.cb-slider::before { content: ''; position: absolute; width: 18px; height: 18px; left: 3px; bottom: 3px; background: #fff; border-radius: 50%; transition: transform .2s; }
.cb-toggle-switch input:checked + .cb-slider { background: var(--rose); }
.cb-toggle-switch input:checked + .cb-slider::before { transform: translateX(20px); }
.cb-panel-actions { padding-top: 14px; }
@media (max-width: 760px) {
  .cb-inner { padding: 16px; }
  .cb-buttons { width: 100%; }
  .cb-btn { flex: 1; min-width: 0; padding: 11px 12px; }
}

/* ---------- Podstrony (polityka, dziękujemy) ---------- */
.page-head {
  background: linear-gradient(160deg, var(--ink-deep) 0%, var(--ink) 100%);
  text-align: center;
  padding: 92px 0 68px;
}
.page-head h1 { font-size: clamp(2.1rem, 4vw, 3.1rem); color: #fff; }
.page-head p {
  color: rgba(255, 255, 255, 0.7);
  margin-top: 16px;
  max-width: 660px;
  margin-left: auto;
  margin-right: auto;
}

.content-narrow { max-width: 820px; margin: 0 auto; }
.content-narrow h2 { margin: 44px 0 16px; }
.content-narrow p, .content-narrow li { color: var(--muted); margin-bottom: 14px; }
.content-narrow ul { padding-left: 22px; }

.hero {
  background: linear-gradient(160deg, var(--ink-deep) 0%, var(--ink) 100%);
  text-align: center;
  padding: 96px 0 80px;
}
.hero-inner h1 { color: #fff; }
.hero .hero-kicker { color: var(--rose-light); }
.hero .hero-lead { color: rgba(255,255,255,.8); margin: 24px 0 34px; }

/* ---------- Responsywność ---------- */
@media (max-width: 1080px) {
  .hero-watermark { display: none; }
}

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: minmax(0, 1fr); gap: 56px; text-align: center; }
  .hero-visual { max-width: 100%; }
  .hero-content { order: 1; }
  .hero-visual { order: 2; }
  .rose-divider { margin: 26px auto 20px; }
  .hero-cta { justify-content: center; }
  .portrait-badge { left: 50%; transform: translateX(-50%); bottom: -22px; white-space: nowrap; }
  .hero-main { min-height: 0; padding: 130px 0 110px; }

  .trust-grid, .spec-grid, .process-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-photo { max-width: 380px; margin: 0 auto; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .list-grid { grid-template-columns: 1fr; }

  /* parallax off na mobile (wydajność iOS) */
  .quote-band { background-attachment: scroll; }
}

@media (max-width: 680px) {
  .section { padding: 64px 0; }

  .brand-mark { width: 42px; height: 42px; }
  .brand-name { font-size: 1.05rem; }
  .brand-sub { font-size: .56rem; letter-spacing: .1em; }
  .header-inner { padding-top: 10px; padding-bottom: 10px; }

  .hero-kicker { font-size: .64rem; letter-spacing: .12em; }
  .hero-main h1 { font-size: clamp(1.9rem, 8.6vw, 2.3rem); }
  .hero-lead { font-size: 1.18rem; }
  .hero-values { font-size: .64rem; letter-spacing: .05em; }
  .portrait-frame { width: min(300px, 86vw); }

  .contact-form { padding: 28px 22px; }

  .nav-toggle { display: flex; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--ink-deep);
    flex-direction: column;
    padding: 28px 24px;
    gap: 20px;
    box-shadow: var(--shadow-lg);
  }
  .main-nav.open { display: flex; }
  .main-nav .nav-link { color: #fff !important; font-size: 1.05rem; }
  .nav-cta { margin-left: 0; }
}
