/* =========================================================================
   Agencja Nieruchomości GRODZKIE — Przemyśl
   Styl: elegancki minimal / editorial · granat + kremowy + złoto
   Typografia: Cormorant Garamond (display) + Jost (body)
   ========================================================================= */

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body { -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; }
button { font: inherit; color: inherit; cursor: pointer; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; border-radius: 3px; }

/* ---------- TOKENY ---------- */
:root {
  --navy:        #13233B;   /* granat — autorytet, tło ciemnych sekcji */
  --navy-2:      #1B3050;   /* jaśniejszy granat */
  --navy-deep:   #0E1B2E;   /* najgłębszy — stopka */
  --cream:       #F7F3EC;   /* kremowe tło stron */
  --cream-2:     #FBF8F2;   /* jaśniejszy krem — karty */
  --ink:         #1C2435;   /* tekst główny na jasnym */
  --muted:       #5A6173;   /* tekst drugorzędny (na #F7F3EC ~5.4:1) */
  --gold:        #875D27;   /* złoto-brąz — akcent/CTA na jasnym (5.2:1 na kremie, biały na nim 5.8:1) */
  --gold-soft:   #C79A4E;   /* jaśniejsze złoto — akcent na ciemnym */
  --gold-tint:   #EFE3CC;   /* pudrowe złoto — tła/odznaki */
  --line:        #E4DBCB;   /* linie/obramowania na jasnym */
  --line-dark:   rgba(244,233,212,.18); /* linie na ciemnym */
  --on-dark:     #EDE7DA;   /* tekst na granacie */
  --on-dark-mut: #B6BCCB;   /* drugorzędny na granacie (~6:1) */
  --white:       #FFFFFF;

  --maxw: 1180px;
  --gut: clamp(1.15rem, 4vw, 2.25rem);

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;

  --shadow-sm: 0 1px 2px rgba(19,35,59,.05), 0 4px 14px rgba(19,35,59,.06);
  --shadow-md: 0 10px 30px rgba(19,35,59,.10), 0 2px 8px rgba(19,35,59,.06);
  --shadow-lg: 0 24px 60px rgba(14,27,46,.16);

  --ff-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --ff-body: "Jost", "Segoe UI", system-ui, sans-serif;

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- BAZA ---------- */
body {
  font-family: var(--ff-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  font-weight: 400;
  letter-spacing: .005em;
}

h1, h2, h3, h4 {
  font-family: var(--ff-display);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -.01em;
  color: var(--navy);
}
p { max-width: 68ch; }

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }

.eyebrow {
  font-family: var(--ff-body);
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: .6rem;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1.5px;
  background: var(--gold);
  display: inline-block;
}
.on-dark .eyebrow { color: var(--gold-soft); }
.on-dark .eyebrow::before { background: var(--gold-soft); }

.ico { width: 1.25em; height: 1.25em; flex: none; }

.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--navy); color: var(--on-dark);
  padding: .7rem 1.1rem; border-radius: 0 0 var(--r-sm) 0; z-index: 1000;
}
.skip:focus { left: 0; }

.tnum { font-variant-numeric: tabular-nums; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: .98rem;
  letter-spacing: .01em;
  padding: .92rem 1.6rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  text-decoration: none;
  white-space: nowrap;
  min-height: 48px;
  cursor: pointer;
  transition: transform .2s var(--ease), background-color .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.btn .ico { width: 1.1em; height: 1.1em; }
.btn--primary { background: var(--gold); color: var(--white); box-shadow: 0 8px 22px rgba(135,93,39,.28); }
.btn--primary:hover { background: #6E4B1F; transform: translateY(-2px); box-shadow: 0 12px 28px rgba(135,93,39,.34); }
.btn--ghost { background: transparent; color: var(--navy); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--navy); background: rgba(19,35,59,.04); }
.on-dark .btn--ghost { color: var(--on-dark); border-color: var(--line-dark); }
.on-dark .btn--ghost:hover { border-color: var(--gold-soft); color: var(--white); background: rgba(244,233,212,.06); }
.btn--gold-line { background: transparent; color: var(--gold-soft); border-color: rgba(199,154,78,.5); }
.btn--gold-line:hover { background: var(--gold-soft); color: var(--navy-deep); border-color: var(--gold-soft); transform: translateY(-2px); }

/* ---------- HEADER ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(247,243,236,.86);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .25s var(--ease), border-color .25s var(--ease), background-color .25s var(--ease);
}
.site-header.is-stuck {
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px rgba(19,35,59,.07);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 76px; }

.brand { display: inline-flex; align-items: center; gap: .72rem; text-decoration: none; }
.brand__mark { width: 42px; height: 42px; flex: none; border-radius: 11px; box-shadow: var(--shadow-sm); }
.brand__txt { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name { font-family: var(--ff-display); font-weight: 600; font-size: 1.32rem; color: var(--navy); letter-spacing: .01em; }
.brand__sub { font-size: .67rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); font-weight: 600; }

.nav__links { list-style: none; display: flex; align-items: center; gap: .35rem; padding: 0; margin: 0; }
.nav__links a {
  display: inline-block;
  text-decoration: none;
  color: var(--ink);
  font-weight: 500;
  font-size: .96rem;
  letter-spacing: .01em;
  padding: .55rem .82rem;
  border-radius: 999px;
  white-space: nowrap;
  transition: color .18s var(--ease), background-color .18s var(--ease);
}
.nav__links a:hover { color: var(--navy); background: rgba(19,35,59,.05); }
.nav__links a[aria-current="page"] { color: var(--gold); }
.nav__links a[aria-current="page"]::after {
  content: ""; display: block; height: 1.5px; background: var(--gold);
  margin: 3px .82rem 0; border-radius: 2px;
}

.nav__cta { display: flex; align-items: center; gap: .55rem; }
.nav__tel {
  display: inline-flex; align-items: center; gap: .45rem;
  text-decoration: none; color: var(--navy); font-weight: 600; font-size: .96rem;
  padding: .5rem .7rem; border-radius: 999px;
}
.nav__tel .ico { color: var(--gold); }
.nav__tel:hover { background: rgba(19,35,59,.05); }
.nav__tel-num { letter-spacing: .02em; }

.nav__toggle {
  display: none;
  width: 48px; height: 48px;
  align-items: center; justify-content: center;
  background: transparent; border: 1.5px solid var(--line); border-radius: 12px;
}
.nav__toggle .ico { width: 24px; height: 24px; color: var(--navy); }

/* mobilne menu */
.mobile-menu {
  display: none;
  position: fixed; inset: 76px 0 0; z-index: 55;
  background: var(--cream);
  padding: 1.4rem var(--gut) 2.4rem;
  overflow-y: auto;
  flex-direction: column;
}
.mobile-menu.is-open { display: flex; animation: menuIn .25s var(--ease); }
@keyframes menuIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }
.mobile-menu ul { list-style: none; padding: 0; margin: 0; }
.mobile-menu li + li { border-top: 1px solid var(--line); }
.mobile-menu a {
  display: flex; align-items: center; justify-content: space-between;
  text-decoration: none; color: var(--navy); font-weight: 500;
  font-size: 1.18rem; padding: 1rem .2rem; min-height: 48px;
}
.mobile-menu a[aria-current="page"] { color: var(--gold); }
.mobile-menu a .ico { color: var(--gold); }
.mobile-menu__foot { margin-top: 1.6rem; display: grid; gap: .7rem; }
.mobile-menu__foot .btn { width: 100%; }
/* przywróć kolory przycisków w menu (selektor .mobile-menu a ma wyższą specyficzność) */
.mobile-menu__foot a.btn--primary { color: var(--white); }
.mobile-menu__foot a.btn--ghost { color: var(--navy); }

/* ---------- SECTIONS ---------- */
.section { padding-block: clamp(3.4rem, 8vw, 6rem); }
.section--tight { padding-block: clamp(2.6rem, 6vw, 4rem); }
.section--dark { background: var(--navy); color: var(--on-dark); }
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: var(--on-dark); }
.section--dark p { color: var(--on-dark-mut); }
.section--cream2 { background: var(--cream-2); }

.section-head { max-width: 64ch; margin-bottom: clamp(1.8rem, 4vw, 2.8rem); }
.section-head h2 { font-size: clamp(2rem, 5.2vw, 3.1rem); margin-top: .7rem; }
.section-head p { margin-top: .9rem; color: var(--muted); font-size: 1.06rem; }
.on-dark .section-head p, .section--dark .section-head p { color: var(--on-dark-mut); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }

/* ---------- HERO (type-led) ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(120% 80% at 88% -10%, rgba(199,154,78,.16), transparent 60%),
    radial-gradient(90% 70% at -5% 110%, rgba(27,48,80,.07), transparent 55%),
    var(--cream);
  overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: .25;
  -webkit-mask-image: radial-gradient(80% 60% at 70% 20%, #000, transparent 75%);
          mask-image: radial-gradient(80% 60% at 70% 20%, #000, transparent 75%);
}
.hero__inner { position: relative; z-index: 1; padding-block: clamp(3.2rem, 8vw, 6.2rem); }
.hero__grid { display: grid; gap: clamp(2rem, 5vw, 3.4rem); align-items: center; }
.hero h1 {
  font-size: clamp(2.7rem, 8.4vw, 5.2rem);
  line-height: 1.02;
  letter-spacing: -.015em;
  margin-top: 1.1rem;
}
.hero h1 .accent { color: var(--gold); font-style: italic; font-weight: 500; }
.hero__lead { margin-top: 1.3rem; font-size: clamp(1.06rem, 2.4vw, 1.22rem); color: var(--muted); max-width: 52ch; }
.hero__cta { margin-top: 1.9rem; display: flex; flex-wrap: wrap; gap: .8rem; }

.hero__trust { margin-top: 2.2rem; display: flex; flex-wrap: wrap; gap: .6rem; }
.ti {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .5rem .9rem;
  font-size: .86rem;
  font-weight: 500;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.ti .ico { width: 1.05em; height: 1.05em; color: var(--gold); }
.ti strong { font-weight: 600; color: var(--navy); }

/* hero panel — wizytówka kontaktu (zamiast amatorskiej fotki) */
.hero__card {
  background: var(--navy);
  color: var(--on-dark);
  border-radius: var(--r-lg);
  padding: clamp(1.6rem, 4vw, 2.3rem);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.hero__card::before {
  content: ""; position: absolute; right: -40px; top: -40px;
  width: 160px; height: 160px; border-radius: 50%;
  background: radial-gradient(circle, rgba(199,154,78,.32), transparent 70%);
}
.hero__card h2 { color: var(--on-dark); font-size: 1.55rem; }
.hero__card .lbl { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-soft); font-weight: 600; }
.hero__card .agent { display: flex; align-items: center; gap: .9rem; margin-top: 1.1rem; }
.hero__card .agent__avatar {
  width: 54px; height: 54px; border-radius: 50%; flex: none;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  display: grid; place-items: center;
  font-family: var(--ff-display); font-weight: 600; font-size: 1.4rem; color: var(--navy-deep);
}
.hero__card .agent__name { font-family: var(--ff-display); font-size: 1.3rem; font-weight: 600; color: var(--on-dark); line-height: 1.1; }
.hero__card .agent__role { font-size: .84rem; color: var(--on-dark-mut); }
.hero__card .rows { margin-top: 1.4rem; display: grid; gap: .15rem; border-top: 1px solid var(--line-dark); padding-top: 1.2rem; }
.hero__card .row { display: flex; align-items: center; gap: .8rem; padding: .55rem 0; text-decoration: none; color: var(--on-dark); }
.hero__card .row + .row { border-top: 1px solid var(--line-dark); }
.hero__card .row .ico { color: var(--gold-soft); width: 1.3em; height: 1.3em; }
.hero__card .row span small { display: block; font-size: .72rem; color: var(--on-dark-mut); letter-spacing: .04em; }
.hero__card .row span b { font-weight: 600; font-size: 1.04rem; letter-spacing: .01em; }
.hero__card .row[href]:hover b { color: var(--gold-soft); }

/* ---------- USŁUGI / KARTY ---------- */
.grid { display: grid; gap: 1.2rem; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: 1fr; }

.card {
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 1.6rem 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold-tint); }
.card__ico {
  width: 50px; height: 50px; border-radius: 13px;
  background: var(--gold-tint); color: var(--gold);
  display: grid; place-items: center; margin-bottom: 1.1rem;
}
.card__ico .ico { width: 26px; height: 26px; }
.card h3 { font-size: 1.5rem; }
.card p { margin-top: .55rem; color: var(--muted); font-size: 1rem; }
.card__list { list-style: none; padding: 0; margin: 1rem 0 0; display: grid; gap: .5rem; }
.card__list li { display: flex; gap: .55rem; align-items: flex-start; font-size: .96rem; color: var(--ink); }
.card__list .ico { color: var(--gold); width: 1.1em; height: 1.1em; margin-top: .22em; }

/* ---------- OFERTY (placeholdery zdjęć) ---------- */
.listings { display: grid; gap: 1.4rem; grid-template-columns: 1fr; }
.listing {
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.listing:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.photo-ph {
  position: relative;
  aspect-ratio: 4 / 3;
  background:
    repeating-linear-gradient(135deg, rgba(19,35,59,.035) 0 14px, transparent 14px 28px),
    linear-gradient(160deg, #20344F, #13233B);
  display: grid; place-items: center; text-align: center;
  color: var(--on-dark-mut);
}
.photo-ph__inner { display: grid; place-items: center; gap: .55rem; padding: 1rem; }
.photo-ph .ico { width: 34px; height: 34px; color: var(--gold-soft); opacity: .9; }
.photo-ph span { font-size: .82rem; letter-spacing: .06em; color: var(--on-dark-mut); }
.photo-ph span b { color: var(--gold-soft); font-weight: 600; }
.listing__tag {
  position: absolute; top: .8rem; left: .8rem;
  background: var(--gold); color: var(--white);
  font-size: .72rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  padding: .32rem .7rem; border-radius: 999px;
}
.listing__tag--rent { background: var(--navy); }
.listing__body { padding: 1.25rem 1.3rem 1.4rem; display: flex; flex-direction: column; flex: 1; }
.listing__body h3 { font-size: 1.42rem; }
.listing__loc { display: flex; align-items: center; gap: .4rem; color: var(--muted); font-size: .9rem; margin-top: .3rem; }
.listing__loc .ico { width: 1em; height: 1em; color: var(--gold); }
.listing__meta { display: flex; flex-wrap: wrap; gap: .5rem 1.1rem; margin-top: .9rem; padding-top: .9rem; border-top: 1px solid var(--line); }
.listing__meta span { display: inline-flex; align-items: center; gap: .4rem; font-size: .9rem; color: var(--ink); }
.listing__meta .ico { width: 1.05em; height: 1.05em; color: var(--muted); }
.listing__foot { margin-top: auto; padding-top: 1.1rem; display: flex; align-items: center; justify-content: space-between; gap: .8rem; }
.listing__price { font-family: var(--ff-display); font-size: 1.5rem; font-weight: 600; color: var(--navy); }
.listing__price small { display: block; font-family: var(--ff-body); font-size: .72rem; color: var(--muted); letter-spacing: .04em; font-weight: 500; }

/* ---------- PROCES ---------- */
.steps { display: grid; gap: 1.1rem; grid-template-columns: 1fr; counter-reset: step; }
.step {
  position: relative;
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 1.5rem 1.4rem 1.4rem;
}
.step__n {
  font-family: var(--ff-display); font-size: 2.6rem; font-weight: 600;
  color: var(--gold); line-height: 1; opacity: .9;
}
.step h3 { margin-top: .5rem; font-size: 1.35rem; }
.step p { margin-top: .4rem; color: var(--muted); font-size: .98rem; }
.section--dark .step { background: var(--navy-2); border-color: var(--line-dark); }
.section--dark .step__n { color: var(--gold-soft); }

/* ---------- STATY ---------- */
.stats { display: grid; gap: 1.2rem; grid-template-columns: repeat(2, 1fr); }
.stat { text-align: center; padding: 1.2rem .6rem; border-radius: var(--r-md); }
.stat strong {
  display: block; font-family: var(--ff-display); font-weight: 600;
  font-size: clamp(2.4rem, 7vw, 3.2rem); line-height: 1; color: var(--gold-soft);
  font-variant-numeric: tabular-nums;
}
.stat span { display: block; margin-top: .5rem; font-size: .9rem; color: var(--on-dark-mut); letter-spacing: .03em; }

/* ---------- ZAUFANIE / WARTOŚCI ---------- */
.values { display: grid; gap: 1.1rem; grid-template-columns: 1fr; }
.value { display: flex; gap: 1rem; align-items: flex-start; }
.value__ico {
  width: 46px; height: 46px; flex: none; border-radius: 12px;
  background: var(--gold-tint); color: var(--gold);
  display: grid; place-items: center;
}
.on-dark .value__ico, .section--dark .value__ico { background: rgba(199,154,78,.16); color: var(--gold-soft); }
.value__ico .ico { width: 24px; height: 24px; }
.value h3 { font-size: 1.32rem; }
.value p { margin-top: .3rem; color: var(--muted); font-size: .98rem; }
.section--dark .value p { color: var(--on-dark-mut); }

/* ---------- CTA PASEK ---------- */
.cta-band {
  background:
    radial-gradient(100% 120% at 100% 0%, rgba(199,154,78,.2), transparent 55%),
    var(--navy);
  color: var(--on-dark);
  border-radius: var(--r-lg);
  padding: clamp(2rem, 5vw, 3.2rem);
  display: grid; gap: 1.4rem;
  box-shadow: var(--shadow-lg);
}
.cta-band h2 { color: var(--on-dark); font-size: clamp(1.7rem, 4vw, 2.5rem); }
.cta-band p { color: var(--on-dark-mut); }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: .8rem; }

/* ---------- OPINIE ---------- */
.quote {
  background: var(--cream-2); border: 1px solid var(--line);
  border-radius: var(--r-md); padding: 1.6rem 1.5rem;
}
.quote__stars { display: inline-flex; gap: 2px; color: var(--gold); margin-bottom: .7rem; }
.quote__stars .ico { width: 18px; height: 18px; }
.quote p { font-family: var(--ff-display); font-size: 1.28rem; line-height: 1.4; color: var(--navy); font-style: italic; max-width: none; }
.quote__src { margin-top: .9rem; font-size: .86rem; color: var(--muted); }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: .8rem; max-width: 820px; }
.faq details {
  background: var(--cream-2); border: 1px solid var(--line);
  border-radius: var(--r-md); padding: .3rem 1.3rem;
}
.faq summary {
  list-style: none; cursor: pointer; padding: 1.05rem 0;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  font-family: var(--ff-display); font-size: 1.28rem; font-weight: 600; color: var(--navy);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .ico { color: var(--gold); transition: transform .25s var(--ease); flex: none; }
.faq details[open] summary .ico { transform: rotate(45deg); }
.faq details p { padding: 0 0 1.15rem; color: var(--muted); margin-top: -.2rem; }

/* ---------- KONTAKT ---------- */
.contact-grid { display: grid; gap: 2rem; grid-template-columns: 1fr; }
.contact-info { display: grid; gap: 1rem; }
.contact-row {
  display: flex; gap: .95rem; align-items: flex-start;
  text-decoration: none; color: var(--ink);
  padding: 1.05rem 1.2rem; background: var(--cream-2);
  border: 1px solid var(--line); border-radius: var(--r-md);
  transition: border-color .2s var(--ease), transform .2s var(--ease);
}
a.contact-row:hover { border-color: var(--gold-tint); transform: translateY(-2px); }
.contact-row__ico {
  width: 44px; height: 44px; flex: none; border-radius: 11px;
  background: var(--gold-tint); color: var(--gold);
  display: grid; place-items: center;
}
.contact-row__ico .ico { width: 22px; height: 22px; }
.contact-row > span:last-child { display: flex; flex-direction: column; gap: .15rem; min-width: 0; }
.contact-row .lbl { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.contact-row .val { font-size: 1.1rem; font-weight: 600; color: var(--navy); letter-spacing: .01em; }

/* mapa — w swoim kontenerze */
.map-frame {
  margin-top: 1.4rem;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  background: var(--cream-2);
}
.map-frame iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ---------- FORMULARZ ---------- */
.form-card {
  background: var(--cream-2); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: clamp(1.5rem, 4vw, 2.2rem);
  box-shadow: var(--shadow-md);
}
.form-grid { display: grid; gap: 1.05rem; }
.field { display: grid; gap: .4rem; }
.field label { font-size: .9rem; font-weight: 600; color: var(--navy); }
.field .req { color: var(--gold); }
.field input, .field textarea, .field select {
  font-family: var(--ff-body); font-size: 1rem;
  padding: .85rem .95rem; min-height: 48px;
  background: var(--white); color: var(--ink);
  border: 1.5px solid var(--line); border-radius: var(--r-sm);
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
  width: 100%;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(154,107,46,.15);
}
.field.has-error input, .field.has-error textarea, .field.has-error select { border-color: #B5402C; }
.field .err { font-size: .82rem; color: #9F3320; min-height: 0; }
.field.has-error .err::before { content: "⚠ "; }
.check { display: flex; gap: .65rem; align-items: flex-start; font-size: .88rem; color: var(--muted); }
.check input { width: 20px; height: 20px; margin-top: .15rem; flex: none; accent-color: var(--gold); }
.check a { color: var(--gold); }
.form-status { font-size: .95rem; padding: .2rem 0; display: none; }
.form-status.ok { display: flex; align-items: center; gap: .5rem; color: #1F6B43; }
.form-status.ok .ico { color: #1F6B43; }
.form-note { font-size: .82rem; color: var(--muted); margin-top: .3rem; }

/* ---------- BREADCRUMB ---------- */
.breadcrumb { padding-block: 1rem; }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: .4rem; padding: 0; margin: 0; font-size: .86rem; color: var(--muted); }
.breadcrumb li { display: inline-flex; align-items: center; gap: .4rem; }
.breadcrumb li + li::before { content: "›"; color: var(--gold); }
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--navy); }
.breadcrumb [aria-current="page"] { color: var(--navy); font-weight: 600; }

/* page hero (podstrony) */
.page-hero { background: var(--navy); color: var(--on-dark); padding-block: clamp(2.6rem, 6vw, 4.2rem); position: relative; overflow: hidden; }
.page-hero::after {
  content: ""; position: absolute; right: -8%; top: -30%; width: 50%; height: 160%;
  background: radial-gradient(circle, rgba(199,154,78,.18), transparent 65%);
  pointer-events: none;
}
.page-hero h1 { color: var(--on-dark); font-size: clamp(2.3rem, 6vw, 3.6rem); margin-top: .9rem; }
.page-hero p { color: var(--on-dark-mut); margin-top: 1rem; font-size: 1.1rem; max-width: 58ch; }
.page-hero .breadcrumb { padding-bottom: 0; }
.page-hero .breadcrumb ol { color: var(--on-dark-mut); }
.page-hero .breadcrumb a { color: var(--on-dark-mut); }
.page-hero .breadcrumb a:hover { color: var(--white); }
.page-hero .breadcrumb [aria-current="page"] { color: var(--gold-soft); }
.page-hero .breadcrumb li + li::before { color: var(--gold-soft); }

/* ---------- FOOTER ---------- */
.site-footer { background: var(--navy-deep); color: var(--on-dark-mut); padding-block: clamp(2.6rem, 6vw, 4rem) 1.6rem; }
.footer-grid { display: grid; gap: 2rem; grid-template-columns: 1fr; }
.footer-brand .brand__name { color: var(--on-dark); }
.footer-brand p { margin-top: 1rem; color: var(--on-dark-mut); font-size: .94rem; max-width: 36ch; }
.footer-col h4 { color: var(--on-dark); font-family: var(--ff-body); font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 600; margin-bottom: 1rem; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .6rem; }
.footer-col a { color: var(--on-dark-mut); text-decoration: none; font-size: .96rem; transition: color .18s var(--ease); }
.footer-col a:hover { color: var(--gold-soft); }
.footer-contact a { display: inline-flex; align-items: center; gap: .5rem; color: var(--on-dark); font-weight: 500; }
.footer-contact a .ico { color: var(--gold-soft); width: 1.05em; height: 1.05em; }
.footer-bottom {
  margin-top: 2.4rem; padding-top: 1.5rem; border-top: 1px solid var(--line-dark);
  display: flex; flex-wrap: wrap; gap: .8rem 1.5rem; align-items: center; justify-content: space-between;
  font-size: .82rem; color: var(--on-dark-mut);
}
.footer-bottom a { color: var(--on-dark-mut); }
.footer-bottom a:hover { color: var(--gold-soft); }

/* ---------- REVEAL ---------- */
.reveal { opacity: 1; }
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); will-change: opacity, transform; }
.js .reveal.is-visible { opacity: 1; transform: none; }
.js .reveal[data-d="1"] { transition-delay: .08s; }
.js .reveal[data-d="2"] { transition-delay: .16s; }
.js .reveal[data-d="3"] { transition-delay: .24s; }
.js .reveal[data-d="4"] { transition-delay: .32s; }
html.reveal-instant .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ---------- RESPONSYWNOŚĆ ---------- */
@media (min-width: 600px) {
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .listings { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .values { grid-template-columns: repeat(2, 1fr); }
  .form-grid--2 { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 920px) {
  .hero__grid { grid-template-columns: 1.15fr .85fr; }
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
  .listings { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(4, 1fr); }
  .stats { grid-template-columns: repeat(4, 1fr); }
  .contact-grid { grid-template-columns: .85fr 1.15fr; align-items: start; }
  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1.2fr; }
  .cta-band { grid-template-columns: 1.5fr auto; align-items: center; }
  .cta-band__actions { justify-content: flex-end; }
}
@media (max-width: 1000px) {
  .nav__links, .nav__tel-num, .nav__cta .btn { display: none; }
  .nav__toggle { display: inline-flex; }
  .nav__cta { gap: .3rem; }
}
@media (min-width: 1001px) {
  .nav__tel { display: inline-flex; }
}
@media (max-width: 1000px) {
  .nav__tel { display: inline-flex; padding: .5rem; }
}

/* full-bleed helper dla CTA band w wrapie */
.section .cta-band { margin-top: 0; }
