/* ============== Auris Estate — wizytówka =============== */

:root {
  --bg: #4a1419;
  --bg-deep: #3a0f13;
  --bg-soft: #5a1a20;
  --card: #58181e;
  --card-2: #631c23;
  --line: rgba(227, 199, 157, 0.18);
  --line-strong: rgba(227, 199, 157, 0.34);
  --cream: #e7cea4;
  --cream-soft: #d6b98a;
  --text: #f1e4cb;
  --muted: #c9b48d;
  --muted-2: #a08866;
  --shadow: 0 30px 60px -30px rgba(0,0,0,0.55);
  --radius: 14px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "ss01", "cv11";
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }

.serif {
  font-family: "Cormorant Garamond", "Iowan Old Style", "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.01em;
}

/* ========== layout ========== */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
}

.eyebrow {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--cream);
  font-weight: 500;
  display: inline-block;
}

h1, h2, h3 { margin: 0; font-weight: 400; }

.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  text-align: center;
  color: var(--text);
}

.section { padding: 110px 0; position: relative; }
.section + .section { padding-top: 0; }

/* ========== nav ========== */
.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(58, 15, 19, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background .3s ease;
}
.nav.scrolled {
  border-bottom-color: var(--line);
  background: rgba(58, 15, 19, 0.92);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 36px;
  padding: 22px 28px;
  max-width: 1320px;
  margin: 0 auto;
}
.nav-logo {
  height: 56px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
  flex: 1;
}
.nav-link {
  font-size: 13.5px;
  color: var(--text);
  opacity: 0.82;
  position: relative;
  padding: 6px 0;
  transition: opacity .2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav-link:hover { opacity: 1; color: var(--cream); }
.nav-link.has-caret::after {
  content: "";
  width: 6px; height: 6px;
  border-right: 1.4px solid currentColor;
  border-bottom: 1.4px solid currentColor;
  transform: rotate(45deg);
  display: inline-block;
  margin-left: 2px;
  margin-top: -3px;
  opacity: 0.6;
}

.btn {
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--text);
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.04em;
  transition: all .25s ease;
  white-space: nowrap;
}
.btn:hover {
  background: var(--cream);
  color: var(--bg-deep);
  border-color: var(--cream);
}
.btn-primary {
  background: var(--cream);
  color: var(--bg-deep);
  border-color: var(--cream);
  font-weight: 500;
}
.btn-primary:hover {
  background: var(--text);
  border-color: var(--text);
}
.btn-ghost {
  border-color: transparent;
  padding: 12px 18px;
}
.btn-ghost:hover {
  background: rgba(227,199,157,0.1);
  color: var(--cream);
}

/* mobile nav */
.nav-toggle { display: none; background: none; border: 0; color: var(--text); padding: 8px; }
.nav-toggle svg { width: 22px; height: 22px; }
.mobile-menu {
  display: none;
  padding: 18px 28px 28px;
  border-top: 1px solid var(--line);
  flex-direction: column;
  gap: 14px;
}
.mobile-menu.open { display: flex; }
.mobile-menu .nav-link { padding: 8px 0; }

@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav-cta-desktop { display: none; }
  .nav-toggle { display: inline-flex; margin-left: auto; }
}

/* ========== hero ========== */
.hero {
  padding: 90px 0 80px;
  text-align: center;
  position: relative;
}
.hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(46px, 6.5vw, 88px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 18px auto 0;
  max-width: 920px;
}
.hero-image {
  position: relative;
  margin: 56px auto 0;
  max-width: 1180px;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 16 / 8.5;
  min-height: 560px;
  background: #2a0c10;
  box-shadow: var(--shadow);
}
.hero-image::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(74,20,25,0.25), rgba(74,20,25,0.55));
  z-index: 2;
}
.hero-image .interior {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1616486338812-3dadae4b4ace?w=1800&q=80&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  filter: saturate(0.95);
}
.hero-image::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(74,20,25,0) 60%, rgba(74,20,25,0.35));
  pointer-events: none;
}

/* filter bar */
.filterbar {
  position: absolute;
  top: 28px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(58, 15, 19, 0.78);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px;
  display: flex;
  gap: 4px;
  align-items: center;
  z-index: 3;
  max-width: calc(100% - 40px);
  flex-wrap: wrap;
  justify-content: center;
}
.filter-field {
  position: relative;
  min-width: 170px;
}
.filter-field select {
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: 0;
  color: var(--text);
  font: inherit;
  font-size: 13px;
  padding: 12px 32px 12px 18px;
  border-radius: 999px;
  width: 100%;
  cursor: pointer;
  letter-spacing: 0.01em;
}
.filter-field select:hover { background: rgba(227,199,157,0.08); }
.filter-field::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  width: 6px; height: 6px;
  border-right: 1.4px solid var(--cream);
  border-bottom: 1.4px solid var(--cream);
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}
.filter-field select option { background: var(--bg-deep); color: var(--text); }
.filter-search {
  background: var(--cream);
  color: var(--bg-deep);
  border: 0;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.02em;
}
.filter-search:hover { background: #fff; }

/* hero CTA panel (replaces old hero form) */
.hero-cta {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(640px, calc(100% - 48px));
  background: rgba(40, 10, 14, 0.78);
  backdrop-filter: blur(22px) saturate(1.1);
  -webkit-backdrop-filter: blur(22px) saturate(1.1);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 38px 36px;
  z-index: 4;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  box-shadow:
    var(--shadow),
    0 0 0 1px rgba(227, 199, 157, 0.2),
    0 0 80px -10px rgba(227, 199, 157, 0.3);
}
.hero-cta::after {
  content: "";
  position: absolute; inset: -1px;
  border-radius: 19px;
  padding: 1px;
  background: linear-gradient(135deg,
    rgba(227, 199, 157, 0.6) 0%,
    rgba(227, 199, 157, 0.05) 35%,
    rgba(227, 199, 157, 0.05) 65%,
    rgba(255, 240, 210, 0.5) 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}
.hero-cta-tagline {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.15;
  color: var(--text);
  margin: 4px 0 8px;
  letter-spacing: -0.005em;
  max-width: 480px;
}
.hero-cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
@media (max-width: 720px) {
  .hero-cta { position: static; transform: none; margin: 22px 18px 0; width: auto; padding: 28px 22px; }
  .hero-image { aspect-ratio: auto; height: auto; min-height: 0; padding-bottom: 0; }
}

/* contact quick cards */
.contact-quick {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 980px) { .contact-quick { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .contact-quick { grid-template-columns: 1fr; } }
.contact-quick-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 26px 24px;
  text-decoration: none;
  color: inherit;
  transition: transform .25s ease, background .25s ease, border-color .25s ease, box-shadow .25s ease;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.contact-quick-card::before {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(227,199,157,0.7), transparent);
  transition: left 1.1s ease;
}
.contact-quick-card:hover::before { left: 130%; }
.contact-quick-card:hover {
  transform: translateY(-3px);
  background: var(--card-2);
  border-color: var(--cream);
  box-shadow: 0 20px 40px -18px rgba(0,0,0,0.6),
              0 0 36px -10px rgba(227,199,157,0.3);
}
.contact-quick-static { cursor: default; }
.contact-quick-static:hover { transform: none; border-color: var(--line); background: var(--card); box-shadow: none; }
.contact-quick-static:hover::before { left: -100%; }
.contact-quick-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(227,199,157,0.3);
  background: radial-gradient(circle at 30% 30%, rgba(227,199,157,0.18), rgba(227,199,157,0.04));
  color: var(--cream);
  display: grid; place-items: center;
  margin-bottom: 4px;
}
.contact-quick-icon svg { width: 18px; height: 18px; }
.contact-quick-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream-soft);
}
.contact-quick-value {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  color: var(--text);
  line-height: 1.15;
  letter-spacing: -0.005em;
}
.section.contact .map { aspect-ratio: 21 / 8; }
@media (max-width: 720px) { .section.contact .map { aspect-ratio: 4/5; } }

/* ========== Instagram card ========== */
.ig-card {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 0;
  background: linear-gradient(135deg, rgba(40, 10, 14, 0.92), rgba(74, 20, 25, 0.92));
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  position: relative;
  isolation: isolate;
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
  box-shadow:
    var(--shadow),
    0 0 0 1px rgba(227, 199, 157, 0.12),
    0 0 80px -20px rgba(227, 199, 157, 0.25);
}
.ig-card:hover {
  transform: translateY(-3px);
  border-color: var(--cream);
  box-shadow:
    0 30px 60px -25px rgba(0,0,0,0.6),
    0 0 0 1px rgba(255, 240, 210, 0.3),
    0 0 100px -10px rgba(227, 199, 157, 0.45);
}
.ig-card::before {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 240, 210, 0.7), transparent);
  transition: left 1.2s ease;
  z-index: 3;
}
.ig-card:hover::before { left: 130%; }
.ig-glow {
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(420px 320px at 12% 90%, rgba(247, 145, 65, 0.22), transparent 65%),
    radial-gradient(380px 280px at 92% 10%, rgba(220, 90, 165, 0.18), transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.ig-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr 1fr;
  gap: 6px;
  padding: 18px;
  position: relative;
  z-index: 1;
  min-height: 360px;
}
.ig-tile {
  display: block;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  background-color: #2a0a0e;
  position: relative;
  overflow: hidden;
  filter: saturate(0.95) contrast(1.02);
  transition: transform .5s ease, filter .5s ease;
}
.ig-tile::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(40,10,14,0) 50%, rgba(40,10,14,0.5));
}
.ig-card:hover .ig-tile { filter: saturate(1.05) contrast(1.05) brightness(1.05); }
.ig-card:hover .ig-tile:nth-child(odd) { transform: scale(1.04); }

.ig-body {
  padding: 44px 44px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
  position: relative;
  z-index: 1;
  border-left: 1px solid var(--line);
}
.ig-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, #f6e4c3, #d9b07a);
  color: var(--bg-deep);
  display: grid; place-items: center;
  margin-bottom: 6px;
  box-shadow: 0 8px 20px -8px rgba(227, 199, 157, 0.6);
}
.ig-icon svg { width: 26px; height: 26px; stroke-width: 1.5; }

.ig-handle {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 0;
  background: linear-gradient(180deg, #f6e4c3 0%, #d9b07a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.ig-sub {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.7;
  max-width: 460px;
  text-wrap: pretty;
}
.ig-cta {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: var(--cream);
  color: var(--bg-deep);
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  width: fit-content;
  transition: background .25s ease, transform .15s ease;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.25),
              0 12px 30px -10px rgba(227, 199, 157, 0.5),
              0 0 32px -6px rgba(227, 199, 157, 0.4);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.ig-cta svg { width: 14px; height: 14px; }
.ig-card:hover .ig-cta { background: #fff; transform: translateY(-1px); }
.ig-cta::after {
  content: "";
  position: absolute; top: 0; left: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(115deg, transparent, rgba(255,255,255,0.7) 50%, transparent);
  transform: skewX(-22deg);
  transition: left .9s cubic-bezier(.2, .8, .2, 1);
  z-index: -1;
}
.ig-card:hover .ig-cta::after { left: 130%; }

@media (max-width: 880px) {
  .ig-card { grid-template-columns: 1fr; }
  .ig-grid { min-height: 280px; }
  .ig-body { padding: 32px 28px 36px; border-left: 0; border-top: 1px solid var(--line); }
}
@media (max-width: 540px) {
  .ig-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr 1fr; }
}
.hero-form {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(720px, calc(100% - 36px));
  background: rgba(40, 10, 14, 0.78);
  backdrop-filter: blur(22px) saturate(1.1);
  -webkit-backdrop-filter: blur(22px) saturate(1.1);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px 24px 24px;
  z-index: 4;
  box-shadow: var(--shadow);
}
.hero-form-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.intent-switch {
  display: inline-flex;
  background: rgba(227, 199, 157, 0.06);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px;
  gap: 2px;
}
.intent-switch button {
  background: transparent;
  border: 0;
  color: var(--muted);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 12.5px;
  letter-spacing: 0.02em;
  transition: all .25s ease;
  white-space: nowrap;
}
.intent-switch button:hover { color: var(--text); }
.intent-switch button.on {
  background: var(--cream);
  color: var(--bg-deep);
  font-weight: 500;
}
.hero-form-sub {
  margin: 0;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.hero-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 14px;
}
.hero-form-wide { grid-column: 1 / -1; }
.hero-form .field label {
  display: block;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-soft);
  margin-bottom: 6px;
}
.hero-form .input,
.hero-form .select,
.hero-form .textarea {
  background: rgba(227, 199, 157, 0.04);
  border-color: var(--line);
}
.hero-form-submit {
  width: 100%;
  background: var(--cream);
  color: var(--bg-deep);
  border: 0;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background .25s, transform .15s;
}
.hero-form-submit svg { width: 16px; height: 16px; stroke-width: 1.8; }
.hero-form-submit:hover { background: #fff; }
.hero-form-submit:active { transform: scale(0.99); }
.hero-form-submit:disabled { opacity: 0.6; cursor: wait; }

@media (max-width: 720px) {
  .hero-form { position: static; transform: none; margin: 22px 18px 0; width: auto; }
  .hero-form-grid { grid-template-columns: 1fr; }
  .hero-image { aspect-ratio: auto; height: 460px; }
}

/* ========== services / "Co nas wyróżnia" ========== */
.lede {
  max-width: 880px;
  margin: 22px auto 50px;
  text-align: center;
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--muted);
}
.sub-eyebrow {
  text-align: center;
  margin-bottom: 22px;
  color: var(--cream-soft);
  font-size: 13px;
  font-style: italic;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media (max-width: 980px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 26px 30px;
  text-align: center;
  transition: transform .35s ease, background .35s ease, border-color .35s ease;
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-4px);
  background: var(--card-2);
  border-color: var(--line-strong);
}
.service-icon {
  width: 36px; height: 36px;
  margin: 0 auto 16px;
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-icon svg { width: 100%; height: 100%; stroke-width: 1.4; }
.service-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--text);
}
.service-card p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}
.services-cta {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 42px;
  flex-wrap: wrap;
}

/* ========== about / Kim jesteśmy ========== */
.about {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 70px;
  align-items: center;
}
@media (max-width: 880px) { .about { grid-template-columns: 1fr; gap: 36px; } }

.about h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1.05;
  margin-bottom: 22px;
}
.about p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
  margin: 0 0 26px;
}
.team-photo {
  position: relative;
  aspect-ratio: 5 / 4;
  border-radius: var(--radius);
  overflow: hidden;
  background: #2a0a0e;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
.team-photo-4 { grid-template-columns: repeat(4, 1fr); aspect-ratio: 5 / 3.2; }
.team-photo .col {
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center top;
  filter: grayscale(0.15) contrast(1.05);
}
.team-photo .col + .col { border-left: 1px solid rgba(0,0,0,0.4); }
.team-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(74,20,25,0) 70%, rgba(74,20,25,0.55));
}

.team-captions {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  margin-top: 18px;
}
.team-captions-4 { grid-template-columns: repeat(4, 1fr); }
.team-cap { text-align: center; padding: 0 8px; }
.team-cap-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  color: var(--text);
  line-height: 1.15;
}
.team-cap-role {
  margin-top: 4px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream-soft);
}
@media (max-width: 560px) {
  .team-captions { grid-template-columns: 1fr; gap: 6px; }
  .team-cap { padding: 4px 0; }
}

/* stats strip */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.stat { text-align: center; }
.stat-num {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(46px, 5vw, 64px);
  color: var(--cream);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--muted-2);
  text-transform: uppercase;
  margin-top: 8px;
}

/* ========== process ========== */
.process {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 70px;
  align-items: start;
}
@media (max-width: 880px) { .process { grid-template-columns: 1fr; gap: 30px; } }
.process h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1.05;
  margin-bottom: 18px;
}
.process p.intro {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 26px;
}
.process-cta { display: flex; gap: 12px; flex-wrap: wrap; }

.steps { list-style: none; padding: 0; margin: 0; }
.step {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 22px 8px;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  transition: background .25s ease;
}
.step:hover { background: rgba(227,199,157,0.04); }
.step .step-num {
  color: var(--cream);
  font-size: 12px;
  letter-spacing: 0.16em;
}
.step .step-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  color: var(--text);
}
.step .step-plus {
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: grid; place-items: center;
  color: var(--cream);
  font-size: 16px;
  transition: transform .3s ease;
}
.step.open .step-plus { transform: rotate(45deg); background: var(--cream); color: var(--bg-deep); }
.step-body {
  grid-column: 1 / -1;
  max-height: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  transition: max-height .4s ease, padding .4s ease;
  padding: 0 0 0 114px;
}
.step.open .step-body { max-height: 200px; padding: 4px 0 16px 114px; }

/* ========== rzetelność / quiet section ========== */
.quiet {
  padding: 140px 0;
  text-align: center;
}
.quiet .bar {
  width: 1px;
  height: 56px;
  background: var(--line-strong);
  margin: 0 auto 28px;
}
.quiet h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 36px;
  margin-bottom: 18px;
}
.quiet p {
  max-width: 520px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}
.quiet .sign {
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: center;
  margin-top: 36px;
  color: var(--muted-2);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.quiet .sign::before, .quiet .sign::after {
  content: "";
  width: 60px;
  height: 1px;
  background: var(--line);
}

/* ========== testimonials ========== */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 50px;
}
@media (max-width: 900px) { .testi-grid { grid-template-columns: 1fr; } }

.testi {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform .35s ease, background .35s ease;
}
.testi:hover { transform: translateY(-3px); background: var(--card-2); }
.testi-head { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--bg-deep);
  display: grid; place-items: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 19px;
  font-weight: 600;
  flex-shrink: 0;
}
.testi-meta { line-height: 1.3; }
.testi-name { font-size: 14px; color: var(--text); font-weight: 500; }
.testi-date { font-size: 12px; color: var(--muted-2); }
.testi-stars { color: var(--cream); font-size: 13px; letter-spacing: 2px; }
.testi-body {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
  text-wrap: pretty;
}

.testi-cta { display: flex; justify-content: center; gap: 14px; margin-top: 44px; flex-wrap: wrap; }

/* ========== offers ========== */
.offers-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 38px;
  gap: 24px;
  flex-wrap: wrap;
}
.offers-head .left h2 { font-family: "Cormorant Garamond", serif; font-size: clamp(36px, 4vw, 54px); line-height: 1.05; }
.offers-head .left p { color: var(--muted); font-size: 14px; margin-top: 8px; }
.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 980px) { .offers-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .offers-grid { grid-template-columns: 1fr; } }

.offer {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .35s ease, border-color .35s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.offer:hover { transform: translateY(-4px); border-color: var(--line-strong); }
.offer-img {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  position: relative;
}
.offer-tag {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(58, 15, 19, 0.78);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  color: var(--cream);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.offer-fav {
  position: absolute;
  top: 12px; right: 12px;
  width: 34px; height: 34px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(58, 15, 19, 0.72);
  border: 1px solid var(--line);
  color: var(--cream);
  transition: all .2s;
}
.offer-fav:hover { background: var(--cream); color: var(--bg-deep); }
.offer-fav.active { background: var(--cream); color: var(--bg-deep); }
.offer-body { padding: 22px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.offer-title { font-family: "Cormorant Garamond", serif; font-size: 22px; line-height: 1.2; margin-bottom: 6px; }
.offer-loc { font-size: 12.5px; color: var(--muted); display: flex; align-items: center; gap: 6px; }
.offer-loc svg { width: 12px; height: 12px; opacity: 0.8; }
.offer-meta {
  display: flex;
  gap: 16px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--muted);
}
.offer-meta span { display: inline-flex; align-items: center; gap: 5px; }
.offer-price {
  margin-top: 14px;
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
  color: var(--cream);
  letter-spacing: -0.01em;
}

/* ========== contact ========== */
.contact-wrap {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: 60px;
  margin-top: 40px;
}
@media (max-width: 980px) { .contact-wrap { grid-template-columns: 1fr; gap: 36px; } }

.contact h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(36px, 4.4vw, 58px);
  line-height: 1.05;
  margin-bottom: 22px;
  max-width: 540px;
}
.contact-intro { color: var(--muted); font-size: 15px; line-height: 1.7; margin-bottom: 32px; max-width: 520px; }

.contact-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 28px;
}
.contact-info .item .label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 6px;
}
.contact-info .item .val { font-size: 14.5px; color: var(--text); line-height: 1.5; }

.map {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/9;
  position: relative;
  background: #2a0a0e;
  box-shadow: 0 20px 50px -20px rgba(0,0,0,0.5), 0 0 0 1px rgba(227,199,157,0.06) inset;
}
.map iframe {
  width: 100%;
  height: 100%;
  filter: invert(0.92) hue-rotate(180deg) saturate(0.6) brightness(0.95);
  transition: filter .4s ease;
}
.map:hover iframe { filter: invert(0.88) hue-rotate(180deg) saturate(0.75) brightness(1); }
.map-pin-overlay {
  position: absolute;
  left: 14px;
  bottom: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: rgba(40, 10, 14, 0.82);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line-strong);
  padding: 10px 14px;
  border-radius: 10px;
  pointer-events: none;
}
.map-pin-overlay > * { pointer-events: auto; }
.map-pin-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
}
.map-directions {
  font-size: 12px;
  color: var(--text);
  text-decoration: none;
  opacity: 0.85;
  transition: opacity .2s, color .2s;
}
.map-directions:hover { opacity: 1; color: var(--cream); }

.form {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }

.field { position: relative; }
.field label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-soft);
  margin-bottom: 8px;
}
.input, .textarea, .select {
  width: 100%;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text);
  padding: 13px 14px;
  font: inherit;
  font-size: 14px;
  border-radius: 10px;
  transition: border-color .2s, background .2s;
}
.input:focus, .textarea:focus, .select:focus {
  outline: none;
  border-color: var(--cream);
  background: rgba(227,199,157,0.04);
}
.textarea { min-height: 110px; resize: vertical; font-family: inherit; }
.select { appearance: none; padding-right: 36px; cursor: pointer; background-image: linear-gradient(45deg, transparent 50%, var(--cream) 50%), linear-gradient(135deg, var(--cream) 50%, transparent 50%); background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%; background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; }
.select option { background: var(--bg-deep); color: var(--text); }

.consent { display: flex; gap: 10px; align-items: flex-start; font-size: 12px; color: var(--muted); margin: 6px 0 18px; line-height: 1.55; }
.consent input { margin-top: 3px; accent-color: var(--cream); }
.form-error { color: #f4b07a; font-size: 12px; margin-top: 4px; }
.form-success {
  background: rgba(227,199,157,0.08);
  border: 1px solid var(--line-strong);
  color: var(--cream);
  padding: 14px 16px;
  border-radius: 10px;
  margin-bottom: 14px;
  font-size: 13.5px;
}

/* ========== footer ========== */
.footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--line);
  padding: 70px 0 30px;
  margin-top: 100px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 40px;
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-logo { height: 72px; margin-bottom: 22px; }
.footer h4 {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream);
  margin: 0 0 16px;
  font-weight: 500;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer li a { font-size: 13px; color: var(--muted); transition: color .2s; }
.footer li a:hover { color: var(--text); }
.footer .info-row { font-size: 13px; color: var(--muted); margin-bottom: 6px; line-height: 1.55; }
.footer .info-row b { color: var(--text); font-weight: 500; }

.legal {
  margin-top: 50px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; gap: 16px;
  flex-wrap: wrap;
  font-size: 11.5px;
  color: var(--muted-2);
  letter-spacing: 0.06em;
}

/* ========== reveal animations ========== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* small util */
.center { text-align: center; }
.spacer { height: 60px; }

/* ============== LUXURY SHIMMER LAYER ============== */

/* gold gradient for shine */
:root {
  --gold-shine: linear-gradient(115deg,
    #e7cea4 0%,
    #f6e4c3 28%,
    #fff8e6 45%,
    #f6e4c3 62%,
    #e7cea4 100%);
}

/* ambient orbs floating in the page background */
body::before,
body::after {
  content: "";
  position: fixed;
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.55;
  mix-blend-mode: screen;
}
body::before {
  top: -180px; left: -120px;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(227, 199, 157, 0.45), transparent 70%);
  animation: orbA 22s ease-in-out infinite;
}
body::after {
  top: 40%; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(214, 156, 90, 0.35), transparent 70%);
  animation: orbB 28s ease-in-out infinite;
}
@keyframes orbA {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(80px, 60px); }
}
@keyframes orbB {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-100px, -80px); }
}
.nav, .section, .hero, .footer, .quiet, main { position: relative; z-index: 1; }
@media (prefers-reduced-motion: reduce) {
  body::before, body::after { animation: none; }
}

/* animated gold sweep across hero headline */
.hero h1 {
  background: var(--gold-shine);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: shineSweep 7s linear infinite;
  filter: drop-shadow(0 6px 24px rgba(227, 199, 157, 0.18));
}
@keyframes shineSweep {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
@media (prefers-reduced-motion: reduce) {
  .hero h1 { animation: none; background-position: 0 0; }
}

/* primary button: glow + sheen sweep on hover */
.btn-primary {
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(227, 199, 157, 0.4),
              0 10px 30px -10px rgba(227, 199, 157, 0.45),
              0 0 28px -6px rgba(227, 199, 157, 0.35);
  transition: all .3s ease;
  isolation: isolate;
}
.btn-primary::before {
  content: "";
  position: absolute;
  top: 0; left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(115deg,
    transparent 0%,
    rgba(255, 255, 255, 0.6) 50%,
    transparent 100%);
  transform: skewX(-22deg);
  transition: left .8s cubic-bezier(.2, .8, .2, 1);
  z-index: -1;
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.5),
              0 18px 40px -12px rgba(227, 199, 157, 0.6),
              0 0 50px -4px rgba(227, 199, 157, 0.55);
}
.btn-primary:hover::before { left: 130%; }

/* ghost btn: subtle gold hairline on hover */
.btn:hover {
  box-shadow: 0 0 0 1px rgba(227, 199, 157, 0.4),
              0 10px 24px -10px rgba(227, 199, 157, 0.35);
}

/* hero form: glass + glow ring */
.hero-form {
  box-shadow:
    var(--shadow),
    0 0 0 1px rgba(227, 199, 157, 0.2),
    0 0 80px -10px rgba(227, 199, 157, 0.25);
  position: relative;
}
.hero-form::after {
  content: "";
  position: absolute; inset: -1px;
  border-radius: 19px;
  padding: 1px;
  background: linear-gradient(135deg,
    rgba(227, 199, 157, 0.6) 0%,
    rgba(227, 199, 157, 0.05) 35%,
    rgba(227, 199, 157, 0.05) 65%,
    rgba(255, 240, 210, 0.5) 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  z-index: 0;
}
.hero-form > * { position: relative; z-index: 1; }

.hero-form-submit {
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.25),
              0 14px 36px -12px rgba(227, 199, 157, 0.5),
              0 0 40px -4px rgba(227, 199, 157, 0.4);
  isolation: isolate;
}
.hero-form-submit::before {
  content: "";
  position: absolute;
  top: 0; left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(115deg,
    transparent,
    rgba(255, 255, 255, 0.6) 50%,
    transparent);
  transform: skewX(-22deg);
  transition: left .8s cubic-bezier(.2, .8, .2, 1);
  z-index: -1;
}
.hero-form-submit:hover::before { left: 130%; }

/* hero image - light shimmer at top edge + corner sparkles */
.hero-image {
  box-shadow: var(--shadow),
              0 0 0 1px rgba(227, 199, 157, 0.18),
              0 0 90px -20px rgba(227, 199, 157, 0.3);
}
.hero-image::after {
  background:
    radial-gradient(600px 200px at 50% -100px, rgba(227, 199, 157, 0.25), transparent 60%),
    linear-gradient(180deg, rgba(74,20,25,0) 60%, rgba(74,20,25,0.35));
}

/* service icons: golden ring + glow on hover */
.service-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(227, 199, 157, 0.18), rgba(227, 199, 157, 0.04));
  border: 1px solid rgba(227, 199, 157, 0.25);
  padding: 12px;
  transition: all .35s ease;
  position: relative;
}
.service-icon::before {
  content: "";
  position: absolute; inset: -3px;
  border-radius: 50%;
  background: conic-gradient(from 0deg,
    rgba(227, 199, 157, 0.6),
    transparent 30%,
    transparent 70%,
    rgba(255, 240, 210, 0.5));
  opacity: 0;
  transition: opacity .4s ease;
  z-index: -1;
  filter: blur(6px);
}
.service-card:hover .service-icon { transform: translateY(-2px); border-color: var(--cream); }
.service-card:hover .service-icon::before { opacity: 1; }

.service-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 70%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(227, 199, 157, 0.7), transparent);
  transition: left 1.2s ease;
  z-index: 0;
}
.service-card:hover::before { left: 130%; }
.service-card:hover {
  box-shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.6),
              0 0 0 1px rgba(227, 199, 157, 0.25),
              0 0 40px -10px rgba(227, 199, 157, 0.2);
}

/* stats numbers: gold gradient + soft glow */
.stat-num {
  background: linear-gradient(180deg, #f6e4c3 0%, #d9b07a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 4px 14px rgba(227, 199, 157, 0.25));
}

/* section-title shimmer underline */
.section-title {
  position: relative;
  display: block;
}
.section-title::after {
  content: "";
  display: block;
  margin: 22px auto 0;
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cream), transparent);
  box-shadow: 0 0 12px rgba(227, 199, 157, 0.5);
}

/* testimonial cards: subtle gold corner accent */
.testi {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.testi::before {
  content: "";
  position: absolute;
  top: -40px; right: -40px;
  width: 140px; height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(227, 199, 157, 0.18), transparent 70%);
  opacity: 0;
  transition: opacity .4s ease;
  z-index: -1;
}
.testi:hover::before { opacity: 1; }
.testi-avatar {
  background: linear-gradient(135deg, #f6e4c3, #d9b07a);
  box-shadow: 0 4px 14px -4px rgba(227, 199, 157, 0.5);
}

/* eyebrow with gold dot-bar */
.eyebrow {
  position: relative;
}

/* floating side rail with phone + email pills (desktop) */
.float-rail {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
  pointer-events: none;
}
.float-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(40, 10, 14, 0.92), rgba(74, 20, 25, 0.92));
  border: 1px solid rgba(227, 199, 157, 0.35);
  color: var(--text);
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.02em;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  pointer-events: auto;
  box-shadow: 0 14px 30px -10px rgba(0, 0, 0, 0.6),
              0 0 28px -8px rgba(227, 199, 157, 0.3);
  transition: all .3s ease;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.float-pill svg { width: 16px; height: 16px; color: var(--cream); }
.float-pill:hover {
  transform: translateY(-2px);
  border-color: var(--cream);
  box-shadow: 0 22px 40px -12px rgba(0, 0, 0, 0.7),
              0 0 50px -6px rgba(227, 199, 157, 0.55);
}
.float-pill.float-primary {
  background: var(--gold-shine);
  background-size: 200% 100%;
  color: var(--bg-deep);
  font-weight: 500;
  border-color: rgba(255, 240, 210, 0.6);
  animation: shineSweep 6s linear infinite;
}
.float-pill.float-primary svg { color: var(--bg-deep); }
.float-pill.float-primary::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(227, 199, 157, 0.55), transparent 70%);
  z-index: -1;
  animation: pulseGlow 2.6s ease-in-out infinite;
}
@keyframes pulseGlow {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 0.9; transform: scale(1.08); }
}
@media (max-width: 720px) {
  .float-rail { right: 14px; bottom: 14px; gap: 8px; }
  .float-pill { padding: 11px 16px; font-size: 12.5px; }
  .float-pill .pill-label-long { display: none; }
}

/* tiny sparkles floating across hero */
.sparkles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}
.sparkle {
  position: absolute;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--cream);
  box-shadow: 0 0 8px 2px rgba(227, 199, 157, 0.7);
  opacity: 0;
  animation: sparkleAnim 7s linear infinite;
}
@keyframes sparkleAnim {
  0% { transform: translateY(40px) scale(0.4); opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 0.7; }
  100% { transform: translateY(-120px) scale(1.2); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .sparkle { animation: none; opacity: 0.3; }
}

/* ========== subpage ========== */
.subpage { padding-top: 0; }
.sub-hero {
  padding: 70px 0 50px;
  position: relative;
  background:
    radial-gradient(900px 500px at 50% 0%, rgba(227, 199, 157, 0.08), transparent 70%),
    var(--bg);
}
.back-link {
  display: inline-flex;
  align-items: center;
  font-size: 12.5px;
  color: var(--cream);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.8;
  transition: opacity .2s;
}
.back-link:hover { opacity: 1; }
.sub-title {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-size: clamp(44px, 6vw, 80px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 14px 0 24px;
  max-width: 900px;
}
.sub-lede {
  font-size: 16px;
  line-height: 1.75;
  color: var(--muted);
  max-width: 720px;
}
.sub-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 880px) { .sub-grid { grid-template-columns: 1fr; gap: 36px; } }
.sub-h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-size: clamp(32px, 3.6vw, 48px);
  line-height: 1.08;
  margin: 14px 0 22px;
}
.sub-para {
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
}
.case-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 560px) { .case-list { grid-template-columns: 1fr; } }
.case-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}
.case-item:hover {
  transform: translateY(-2px);
  background: var(--card-2);
  border-color: var(--line-strong);
}
.case-icon {
  width: 34px; height: 34px;
  flex: 0 0 34px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: grid; place-items: center;
  color: var(--cream);
}
.case-icon svg { width: 16px; height: 16px; }
.case-label {
  font-size: 14.5px;
  color: var(--text);
  line-height: 1.4;
}

/* services subpage */
.svc-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  max-width: 920px;
  margin: 0 auto;
}
.svc-row {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 26px;
  align-items: flex-start;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 26px 28px;
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}
.svc-row:hover {
  transform: translateY(-2px);
  background: var(--card-2);
  border-color: var(--line-strong);
}
.svc-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  color: var(--cream);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.svc-icon svg { width: 24px; height: 24px; stroke-width: 1.3; }
.svc-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
  line-height: 1.15;
  color: var(--text);
  margin: 4px 0 8px;
}
.svc-desc {
  margin: 0;
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.7;
}
@media (max-width: 560px) {
  .svc-row { grid-template-columns: 1fr; gap: 14px; padding: 22px; }
  .svc-icon { width: 48px; height: 48px; }
}

.team-banner-section { padding: 30px 0 90px; }
.team-banner {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  background: #2a0a0e;
  box-shadow: var(--shadow);
}
.team-banner img {
  width: 100%;
  height: auto;
  display: block;
  filter: contrast(1.02) saturate(0.95);
}
.team-banner figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 28px 32px;
  background: linear-gradient(180deg, rgba(74,20,25,0) 0%, rgba(40, 10, 14, 0.92) 100%);
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--text);
}
.team-banner-names {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(22px, 2.6vw, 32px);
  color: var(--cream);
  letter-spacing: -0.005em;
}
@media (max-width: 560px) {
  .team-banner figcaption { padding: 20px 18px; }
}

/* raty notarialne subpage */
.raty-block { margin-bottom: 36px; }
.raty-divider {
  height: 1px;
  background: var(--line);
  margin: 30px 0 50px;
}
.raty-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 920px) { .raty-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .raty-grid { grid-template-columns: 1fr; } }
.raty-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px 26px 26px;
  position: relative;
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}
.raty-card:hover {
  transform: translateY(-2px);
  background: var(--card-2);
  border-color: var(--line-strong);
}
.raty-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 36px;
  color: var(--cream);
  letter-spacing: -0.02em;
  display: block;
  line-height: 1;
  margin-bottom: 14px;
}
.raty-card-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  line-height: 1.2;
  margin: 0 0 10px;
  color: var(--text);
}
.raty-card-body {
  margin: 0;
  font-size: 13.8px;
  color: var(--muted);
  line-height: 1.7;
}

.buyer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 720px) { .buyer-list { grid-template-columns: 1fr; } }
.buyer-item {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 16px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 22px 22px;
  align-items: start;
  transition: background .25s ease, border-color .25s ease;
}
.buyer-item:hover { background: var(--card-2); border-color: var(--line-strong); }
.buyer-check {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  color: var(--cream);
  display: grid; place-items: center;
}
.buyer-check svg { width: 16px; height: 16px; }
.buyer-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  line-height: 1.2;
  margin: 4px 0 6px;
  color: var(--text);
}
.buyer-body {
  margin: 0;
  font-size: 13.8px;
  color: var(--muted);
  line-height: 1.7;
}

/* o-nas: values grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 920px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .values-grid { grid-template-columns: 1fr; } }
.value-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px 24px 26px;
  position: relative;
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
  overflow: hidden;
  isolation: isolate;
}
.value-card:hover {
  transform: translateY(-3px);
  background: var(--card-2);
  border-color: var(--line-strong);
  box-shadow: 0 18px 40px -16px rgba(0,0,0,0.55), 0 0 32px -10px rgba(227,199,157,0.25);
}
.value-card::before {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 70%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(227, 199, 157, 0.7), transparent);
  transition: left 1.2s ease;
  z-index: 0;
}
.value-card:hover::before { left: 130%; }
.value-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
  background: linear-gradient(180deg, #f6e4c3 0%, #d9b07a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
  display: block;
  line-height: 1;
  margin-bottom: 14px;
}
.value-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  line-height: 1.2;
  margin: 0 0 10px;
  color: var(--text);
}
.value-body {
  margin: 0;
  font-size: 13.8px;
  color: var(--muted);
  line-height: 1.7;
}

/* ========== Kontakt subpage ========== */
.kontakt-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 980px) { .kontakt-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .kontakt-grid { grid-template-columns: 1fr; } }

.kontakt-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 26px 24px 24px;
  text-decoration: none;
  color: inherit;
  transition: transform .25s ease, background .25s ease, border-color .25s ease, box-shadow .25s ease;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.kontakt-card::before {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(227,199,157,0.7), transparent);
  transition: left 1.1s ease;
}
.kontakt-card:hover::before { left: 130%; }
.kontakt-card:hover {
  transform: translateY(-3px);
  background: var(--card-2);
  border-color: var(--cream);
  box-shadow: 0 20px 40px -18px rgba(0,0,0,0.6),
              0 0 36px -10px rgba(227,199,157,0.3);
}
.kontakt-card-static { cursor: default; }
.kontakt-card-static:hover { transform: none; border-color: var(--line); background: var(--card); box-shadow: none; }
.kontakt-card-static:hover::before { left: -100%; }

.kontakt-icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(227,199,157,0.3);
  color: var(--cream);
  display: grid; place-items: center;
  margin-bottom: 6px;
  background: radial-gradient(circle at 30% 30%, rgba(227,199,157,0.18), rgba(227,199,157,0.04));
}
.kontakt-icon svg { width: 18px; height: 18px; }

.kontakt-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream-soft);
}
.kontakt-value {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  color: var(--text);
  line-height: 1.15;
  letter-spacing: -0.005em;
}
.kontakt-sub {
  font-size: 12.5px;
  color: var(--muted);
}

.kontakt-map {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  aspect-ratio: 16 / 8;
  background: #2a0a0e;
  box-shadow: 0 30px 60px -30px rgba(0,0,0,0.6),
              0 0 0 1px rgba(227,199,157,0.12) inset,
              0 0 90px -20px rgba(227,199,157,0.25);
}
.kontakt-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: invert(0.92) hue-rotate(180deg) saturate(0.6) brightness(0.95);
  transition: filter .4s ease;
}
.kontakt-map:hover iframe { filter: invert(0.88) hue-rotate(180deg) saturate(0.75) brightness(1); }

.kontakt-map-overlay {
  position: absolute;
  left: 22px;
  bottom: 22px;
  background: rgba(40, 10, 14, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--line-strong);
  padding: 18px 22px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-width: 320px;
}
.kontakt-map-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  color: var(--cream);
  line-height: 1.15;
}
.kontakt-map-addr {
  font-size: 13px;
  color: var(--muted);
}
.kontakt-map-btn {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text);
  font-size: 12.5px;
  letter-spacing: 0.06em;
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 4px;
  width: fit-content;
  transition: color .2s, border-color .2s;
}
.kontakt-map-btn:hover { color: var(--cream); border-color: var(--cream); }

.kontakt-meta {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}
@media (max-width: 760px) {
  .kontakt-meta { grid-template-columns: 1fr 1fr; gap: 24px; }
}
.meta-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 8px;
}
.meta-row {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}
.meta-row b { color: var(--text); font-weight: 500; }

@media (max-width: 560px) {
  .kontakt-map { aspect-ratio: 4/5; }
  .kontakt-map-overlay { left: 14px; right: 14px; bottom: 14px; max-width: none; }
}

/* ========== Zespół subpage ========== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
@media (max-width: 1080px) { .team-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; } }
@media (max-width: 560px)  { .team-grid { grid-template-columns: 1fr; } }

.team-member {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .35s ease, background .35s ease, border-color .35s ease, box-shadow .35s ease;
  position: relative;
  isolation: isolate;
}
.team-member::before {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 70%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(227,199,157,0.7), transparent);
  transition: left 1.2s ease;
  z-index: 2;
}
.team-member:hover::before { left: 130%; }
.team-member:hover {
  transform: translateY(-4px);
  background: var(--card-2);
  border-color: var(--cream);
  box-shadow: 0 26px 50px -20px rgba(0,0,0,0.65),
              0 0 50px -10px rgba(227,199,157,0.3);
}
.team-photo-card {
  aspect-ratio: 3 / 4;
  background-size: cover;
  background-position: center 18%;
  background-color: #2a0a0e;
  position: relative;
}
.team-photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(74,20,25,0) 50%, rgba(40, 10, 14, 0.85) 100%);
  pointer-events: none;
}
.team-photo-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(227,199,157,0.18), transparent 60%);
  opacity: 0;
  transition: opacity .4s ease;
  pointer-events: none;
}
.team-member:hover .team-photo-glow { opacity: 1; }

.team-info {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.team-role {
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--cream-soft);
}
.team-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--text);
  margin: 0;
}
.team-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}
.team-action {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(227,199,157,0.03);
  transition: all .25s ease;
  word-break: break-all;
}
.team-action:hover {
  border-color: var(--cream);
  background: rgba(227,199,157,0.08);
  color: var(--cream);
}
.team-action-icon {
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1px solid rgba(227,199,157,0.3);
  color: var(--cream);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.team-action-icon svg { width: 13px; height: 13px; }
.team-action-label { line-height: 1.2; }
.team-action-phone .team-action-label { letter-spacing: 0.04em; }

/* ========== Oferty subpage ========== */
.oferty-locs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 920px) { .oferty-locs { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .oferty-locs { grid-template-columns: 1fr; } }
.oferty-loc {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 30px 26px 28px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform .25s ease, background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.oferty-loc::before {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 70%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(227,199,157,0.7), transparent);
  transition: left 1.2s ease;
}
.oferty-loc:hover::before { left: 130%; }
.oferty-loc:hover {
  transform: translateY(-3px);
  background: var(--card-2);
  border-color: var(--cream);
  box-shadow: 0 22px 44px -20px rgba(0,0,0,0.6),
              0 0 36px -10px rgba(227,199,157,0.28);
}
.oferty-loc-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  letter-spacing: -0.02em;
  background: linear-gradient(180deg, #f6e4c3, #d9b07a);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  margin-bottom: 10px;
  line-height: 1;
}
.oferty-loc-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  line-height: 1.1;
  margin: 0 0 10px;
  color: var(--text);
}
.oferty-loc-body {
  margin: 0;
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.65;
}
.oferty-loc-foot {
  text-align: center;
  margin: 36px auto 0;
  max-width: 700px;
  color: var(--cream-soft);
  font-style: italic;
  font-size: 15px;
  line-height: 1.7;
}

.oferty-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 880px) { .oferty-pillars { grid-template-columns: 1fr; } }
.oferty-pillar {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 30px 28px 28px;
  text-align: center;
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}
.oferty-pillar:hover {
  transform: translateY(-3px);
  background: var(--card-2);
  border-color: var(--line-strong);
}
.oferty-pillar-icon {
  width: 56px; height: 56px;
  margin: 0 auto 16px;
  border-radius: 50%;
  border: 1px solid rgba(227,199,157,0.3);
  background: radial-gradient(circle at 30% 30%, rgba(227,199,157,0.18), rgba(227,199,157,0.04));
  color: var(--cream);
  display: grid; place-items: center;
}
.oferty-pillar-icon svg { width: 22px; height: 22px; }
.oferty-pillar-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  line-height: 1.15;
  margin: 0 0 10px;
  color: var(--text);
}
.oferty-pillar-body {
  margin: 0;
  font-size: 13.8px;
  color: var(--muted);
  line-height: 1.7;
  text-wrap: pretty;
}

.oferty-banner {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  background: #2a0a0e;
  box-shadow:
    var(--shadow),
    0 0 0 1px rgba(227, 199, 157, 0.2),
    0 0 90px -20px rgba(227, 199, 157, 0.3);
  aspect-ratio: 16 / 8;
}
.oferty-banner img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: contrast(1.02) saturate(0.95);
  transition: transform .8s ease;
}
.oferty-banner:hover img { transform: scale(1.03); }
.oferty-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 240px at 50% -80px, rgba(227, 199, 157, 0.25), transparent 60%),
    linear-gradient(180deg, rgba(74,20,25,0) 35%, rgba(40, 10, 14, 0.85) 100%);
  pointer-events: none;
}
.oferty-banner figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--text);
  z-index: 1;
}
.oferty-banner-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--cream);
  filter: drop-shadow(0 6px 24px rgba(0,0,0,0.6));
}
@media (max-width: 720px) {
  .oferty-banner { aspect-ratio: 4/5; }
  .oferty-banner figcaption { padding: 24px 20px; }
}
