/* OTO GOTOWE — landing page */
:root {
  --navy: #0B1F3A;
  --navy-2: #112949;
  --gold: #C9A96E;
  --gold-soft: #d8bf8b;
  --white: #FFFFFF;
  --beige: #F5F2EC;
  --graphite: #1E1E1E;
  --line: rgba(201, 169, 110, 0.35);
  --shadow: 0 20px 60px rgba(11, 31, 58, 0.12);
  --radius: 18px;
  --radius-lg: 28px;
  --max: 1180px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--graphite);
  background: var(--white);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

h1, h2, h3, h4 {
  font-family: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--navy);
  margin: 0 0 18px;
}

h1 { font-size: clamp(2.1rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); margin-bottom: 14px; }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.5rem); }

p { margin: 0 0 14px; }

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

.section { padding: 96px 0; }
.nav + .section { padding-top: calc(96px + 76px); }
.section--tight { padding: 72px 0; }
.section--navy { background: var(--navy); color: rgba(255,255,255,0.86); }
.section--navy h1, .section--navy h2, .section--navy h3 { color: var(--white); }
.section--beige { background: var(--beige); }

.eyebrow {
  font-family: "Inter", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  color: var(--gold);
  margin-bottom: 14px;
  display: inline-block;
}

.gold-line {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 0 0 22px;
  border: 0;
}
.gold-line--center { margin-left: auto; margin-right: auto; }

.lede {
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  color: rgba(30, 30, 30, 0.78);
  max-width: 60ch;
}

.section--navy .lede { color: rgba(255,255,255,0.78); }

/* NAV */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  background: linear-gradient(180deg, rgba(11,31,58,0.85) 0%, rgba(11,31,58,0.55) 60%, rgba(11,31,58,0) 100%);
  backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transition: background .35s var(--ease), border-color .35s var(--ease), backdrop-filter .35s var(--ease), box-shadow .35s var(--ease);
}
.nav.is-scrolled {
  background: rgba(11,31,58,0.92);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid rgba(201,169,110,0.18);
  box-shadow: 0 12px 30px rgba(11,31,58,0.18);
}
body { padding-top: 0; }
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 16px;
}
.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.55rem;
  letter-spacing: 0.03em;
  color: var(--white);
}
.nav .brand { color: var(--white); }
.brand__dot {
  width: 7px; height: 7px; background: var(--gold); border-radius: 50%;
  display: inline-block; transform: translateY(-3px);
  box-shadow: 0 0 0 0 rgba(201,169,110,0.6);
  animation: dotPulse 2.4s ease-out infinite;
}
.brand__sub { font-size: 11px; color: var(--gold); letter-spacing: 0.22em; text-transform: uppercase; font-family: "Inter", sans-serif; }
.nav__links {
  display: none;
  gap: 26px;
  font-size: 14px;
}
.nav__links a {
  color: rgba(255,255,255,0.82);
  position: relative;
  padding: 6px 0;
}
.nav__links a:hover { color: var(--gold); }
.nav__right { display: flex; align-items: center; gap: 14px; }
.nav__phone {
  display: none;
  align-items: center; gap: 8px;
  font-size: 13.5px; color: rgba(255,255,255,0.78);
  letter-spacing: 0.02em;
  border: 1px solid rgba(255,255,255,0.16);
  padding: 8px 14px;
  border-radius: 999px;
  transition: border-color .25s var(--ease), color .25s var(--ease);
}
.nav__phone:hover { border-color: var(--gold); color: var(--gold); }
.nav__phone svg { color: var(--gold); }
.nav__cta { display: none; }
@media (min-width: 880px) {
  .nav__links { display: flex; }
  .nav__cta { display: inline-flex; }
  .nav__phone { display: inline-flex; }
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 15px;
  font-family: inherit;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
  text-decoration: none;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--primary {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 10px 28px rgba(201, 169, 110, 0.28);
}
.btn--primary:hover { background: var(--gold-soft); }
.btn--ghost {
  background: transparent;
  color: var(--navy);
  border-color: rgba(11,31,58,0.18);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--navy); }
.btn--ghost-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.28);
}
.btn--ghost-light:hover { border-color: var(--gold); color: var(--gold); }
.btn--block { width: 100%; }
.btn--lg { padding: 16px 32px; font-size: 16px; }

/* HERO */
.hero {
  position: relative;
  background:
    radial-gradient(1100px 600px at 80% -10%, rgba(201,169,110,0.16), transparent 60%),
    radial-gradient(900px 500px at 0% 100%, rgba(201,169,110,0.08), transparent 60%),
    var(--navy);
  color: var(--white);
  overflow: hidden;
  padding: 160px 0 130px;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 980px) {
  .hero__grid { grid-template-columns: 1.15fr 1fr; gap: 72px; }
}
.hero h1 { color: var(--white); }
.hero .lede { color: rgba(255,255,255,0.82); margin-bottom: 28px; max-width: 56ch; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero__meta {
  margin-top: 36px;
  display: flex; flex-wrap: wrap; gap: 22px 36px;
  font-size: 14px; color: rgba(255,255,255,0.72);
}
.hero__meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero__meta i {
  width: 6px; height: 6px; border-radius: 50%; background: var(--gold); display: inline-block;
}

/* HERO FORM */
.lead-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 32px;
  backdrop-filter: blur(8px);
}
.lead-card__title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 6px;
}
.lead-card__sub {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  margin-bottom: 22px;
}
.lead-card label { display: block; font-size: 12px; color: rgba(255,255,255,0.7); margin-bottom: 6px; letter-spacing: 0.04em; }
.lead-card .field { margin-bottom: 14px; }
.lead-card input, .lead-card select, .lead-card textarea {
  width: 100%;
  padding: 13px 16px;
  font: inherit;
  color: var(--white);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  outline: none;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.lead-card input::placeholder, .lead-card textarea::placeholder { color: rgba(255,255,255,0.45); }
.lead-card input:focus, .lead-card select:focus, .lead-card textarea:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.09);
}
.lead-card .row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.lead-card__note { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 12px; }

/* SECTION HEAD */
.section-head { max-width: 70ch; margin: 0 auto 56px; text-align: center; }
.section-head .gold-line { margin: 0 auto 22px; }

/* PROBLEMS */
.problems {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}
.problem {
  background: var(--white);
  border: 1px solid rgba(11,31,58,0.06);
  border-radius: var(--radius);
  padding: 26px 24px;
  transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.problem:hover { border-color: var(--line); transform: translateY(-3px); box-shadow: var(--shadow); }
.problem__icon {
  width: 38px; height: 38px;
  border: 1px solid var(--line); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  margin-bottom: 16px;
}
.problem h3 { font-size: 1.15rem; margin-bottom: 6px; }
.problem p { color: rgba(30,30,30,0.7); font-size: 14.5px; margin: 0; }

/* PILLARS (rozwiązanie) */
.pillars {
  display: grid; gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.pillar {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 32px 28px;
}
.pillar__num {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.4rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 14px;
}
.pillar h3 { color: var(--white); }
.pillar p { color: rgba(255,255,255,0.74); margin: 0; font-size: 15px; }

/* STEPS */
.steps {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  counter-reset: step;
}
.step {
  position: relative;
  padding: 28px 22px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid rgba(11,31,58,0.06);
}
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: "Cormorant Garamond", serif;
  color: var(--gold);
  font-size: 1.4rem;
  display: block;
  margin-bottom: 8px;
}
.step h3 { font-size: 1.05rem; margin-bottom: 4px; }
.step p { font-size: 14px; color: rgba(30,30,30,0.68); margin: 0; }

/* FOR-WHOM CARDS */
.cards-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.card {
  background: var(--white);
  border: 1px solid rgba(11,31,58,0.06);
  border-radius: var(--radius);
  padding: 26px 24px;
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.card:hover { transform: translateY(-2px); border-color: var(--line); }
.card__tag {
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.card h3 { font-size: 1.2rem; margin-bottom: 6px; }
.card p { font-size: 14.5px; color: rgba(30,30,30,0.7); margin: 0; }

/* LOCAL */
.local__grid {
  display: grid; gap: 48px;
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 880px) { .local__grid { grid-template-columns: 1.1fr 1fr; gap: 64px; } }
.districts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 10px;
}
.district {
  background: var(--white);
  border: 1px solid rgba(11,31,58,0.08);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 14.5px;
  color: var(--navy);
  display: flex; align-items: center; gap: 10px;
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.district::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%; background: var(--gold);
}
.district:hover { border-color: var(--gold); }

/* TRUST */
.trust-grid {
  display: grid; gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.trust {
  padding: 28px 24px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.03);
}
.trust__icon { color: var(--gold); margin-bottom: 14px; }
.trust h3 { color: var(--white); margin-bottom: 4px; font-size: 1.1rem; }
.trust p { color: rgba(255,255,255,0.7); font-size: 14.5px; margin: 0; }

/* MAIN FORM */
.main-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(11,31,58,0.05);
}
.main-form .row-2 { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 700px) { .main-form .row-2 { grid-template-columns: 1fr 1fr; } }
.main-form .field { margin-bottom: 16px; }
.main-form label {
  display: block; font-size: 13px; color: var(--navy);
  margin-bottom: 6px; font-weight: 500;
}
.main-form input,
.main-form select,
.main-form textarea {
  width: 100%;
  padding: 13px 16px;
  font: inherit;
  background: var(--beige);
  border: 1px solid transparent;
  border-radius: 12px;
  color: var(--graphite);
  outline: none;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.main-form input:focus, .main-form select:focus, .main-form textarea:focus {
  border-color: var(--gold);
  background: var(--white);
}
.main-form textarea { min-height: 110px; resize: vertical; }
.form-note {
  font-size: 12.5px; color: rgba(30,30,30,0.55);
  margin-top: 12px;
}
.honeypot { position: absolute; left: -10000px; top: auto; width: 1px; height: 1px; overflow: hidden; }

/* BLOG */
.blog-grid {
  display: grid; gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.post {
  background: var(--white);
  border: 1px solid rgba(11,31,58,0.06);
  border-radius: var(--radius);
  padding: 28px;
  display: flex; flex-direction: column;
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.post:hover { transform: translateY(-3px); border-color: var(--line); box-shadow: var(--shadow); }
.post__meta { font-size: 12px; color: var(--gold); letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 12px; }
.post h3 { font-size: 1.3rem; margin-bottom: 8px; }
.post p { color: rgba(30,30,30,0.7); font-size: 14.5px; }
.post__more {
  margin-top: auto;
  color: var(--navy);
  font-size: 14px;
  display: inline-flex; align-items: center; gap: 8px;
  border-bottom: 1px solid var(--gold);
  align-self: flex-start;
  padding-bottom: 2px;
}

/* FAQ */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item {
  border-top: 1px solid rgba(11,31,58,0.1);
}
.faq-item:last-child { border-bottom: 1px solid rgba(11,31,58,0.1); }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 1.05rem;
  color: var(--navy);
  font-weight: 500;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: "Cormorant Garamond", serif;
  color: var(--gold);
  font-size: 1.6rem;
  transition: transform .3s var(--ease);
}
.faq-item[open] summary::after { content: "−"; }
.faq-item__body {
  padding: 0 0 22px;
  color: rgba(30,30,30,0.75);
  font-size: 15.5px;
  max-width: 70ch;
}

/* FOOTER */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 70px 0 28px;
}
.footer__grid {
  display: grid;
  gap: 36px;
  grid-template-columns: 1fr;
}
@media (min-width: 800px) { .footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.footer h4 {
  color: var(--white);
  font-family: "Inter", sans-serif;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer a { color: rgba(255,255,255,0.7); display: block; padding: 6px 0; font-size: 14.5px; }
.footer a:hover { color: var(--gold); }
.footer__brand p { font-size: 14.5px; max-width: 38ch; }
.footer__bottom {
  margin-top: 50px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: space-between;
  font-size: 13px; color: rgba(255,255,255,0.55);
}
.socials { display: flex; gap: 14px; margin-top: 12px; }
.socials a {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0;
}
.socials a:hover { border-color: var(--gold); color: var(--gold); }

/* MOBILE STICKY */
.mobile-sticky {
  position: fixed;
  bottom: 16px;
  left: 16px; right: 16px;
  z-index: 50;
  display: flex;
  gap: 8px;
  background: var(--navy);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  padding: 8px 8px 8px 18px;
  align-items: center;
  box-shadow: 0 18px 40px rgba(11,31,58,0.4);
  transform: translateY(120%);
  transition: transform .4s var(--ease);
}
.mobile-sticky.is-visible { transform: translateY(0); }
.mobile-sticky__label { color: var(--white); font-size: 14px; flex: 1; }
.mobile-sticky a {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--gold); color: var(--navy);
  border: 0;
}
.mobile-sticky a + a { background: rgba(255,255,255,0.08); color: var(--white); }
.mobile-sticky button.btn--primary { padding: 10px 18px; font-size: 14px; }
@media (min-width: 880px) { .mobile-sticky { display: none; } }

/* POPUP */
.popup-overlay {
  position: fixed; inset: 0;
  background: rgba(11,31,58,0.55);
  backdrop-filter: blur(6px);
  z-index: 100;
  display: none;
  align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.popup-overlay.is-open { display: flex; opacity: 1; }
.popup {
  background: var(--white);
  border-radius: var(--radius-lg);
  width: min(560px, 100%);
  max-height: 92vh;
  overflow: hidden;
  position: relative;
  display: flex; flex-direction: column;
  transform: translateY(20px) scale(.98);
  transition: transform .35s var(--ease);
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
}
.popup-overlay.is-open .popup { transform: translateY(0) scale(1); }
.popup__close {
  position: absolute; top: 14px; right: 14px;
  width: 36px; height: 36px;
  border: 0; background: transparent;
  cursor: pointer; color: var(--graphite);
  border-radius: 50%; transition: background .2s var(--ease);
  z-index: 2;
  display: flex; align-items: center; justify-content: center;
}
.popup__close:hover { background: rgba(0,0,0,0.06); }
.popup__progress {
  height: 4px; background: var(--beige);
  width: 100%;
}
.popup__progress-bar {
  height: 100%;
  background: var(--gold);
  width: 14%;
  transition: width .4s var(--ease);
}
.popup__body {
  padding: 40px 32px 32px;
  overflow-y: auto;
}
.popup__step { display: none; }
.popup__step.is-active {
  display: block;
  animation: stepIn .35s var(--ease);
}
@keyframes stepIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.popup h3 {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  margin-bottom: 8px;
}
.popup p { color: rgba(30,30,30,0.7); font-size: 15px; }
.popup__choices {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}
.popup__choice {
  text-align: left;
  padding: 16px 18px;
  background: var(--beige);
  border: 1px solid transparent;
  border-radius: 14px;
  font: inherit;
  font-size: 15.5px;
  color: var(--navy);
  cursor: pointer;
  transition: all .25s var(--ease);
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.popup__choice:hover { border-color: var(--gold); background: var(--white); }
.popup__choice:hover::after { transform: translateX(3px); }
.popup__choice::after { content: "→"; color: var(--gold); transition: transform .25s var(--ease); }
.popup__field { margin-top: 16px; }
.popup__field label { font-size: 13px; color: var(--navy); display: block; margin-bottom: 6px; font-weight: 500; }
.popup__field input {
  width: 100%; padding: 14px 16px;
  font: inherit;
  background: var(--beige); border: 1px solid transparent; border-radius: 12px;
  outline: none; transition: border-color .2s var(--ease), background .2s var(--ease);
}
.popup__field input:focus { border-color: var(--gold); background: var(--white); }
.popup__nav { display: flex; justify-content: space-between; gap: 12px; margin-top: 22px; }
.popup__back {
  background: transparent; border: 0; cursor: pointer;
  font: inherit; font-size: 14px; color: rgba(30,30,30,0.6);
  display: inline-flex; align-items: center; gap: 6px;
}
.popup__back:hover { color: var(--navy); }
.popup__success {
  text-align: center; padding: 16px 0;
}
.popup__success-icon {
  width: 64px; height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--beige);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.popup__counter {
  font-size: 12px; color: var(--gold);
  letter-spacing: 0.18em; text-transform: uppercase;
  margin-bottom: 14px; display: block;
}

/* SUCCESS MESSAGE */
.form-success {
  background: var(--beige);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  color: var(--navy);
  display: none;
}
.form-success.is-visible { display: block; animation: stepIn .4s var(--ease); }

/* utils */
.text-center { text-align: center; }
.mt-24 { margin-top: 24px; }
.hide-mobile { display: none; }
@media (min-width: 700px) { .hide-mobile { display: block; } }

/* anim on scroll */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-in { opacity: 1; transform: translateY(0); }
.reveal--left { transform: translateX(-32px); }
.reveal--left.is-in { transform: translateX(0); }
.reveal--right { transform: translateX(32px); }
.reveal--right.is-in { transform: translateX(0); }

@media (max-width: 600px) {
  .section { padding: 72px 0; }
  .hero { padding: 130px 0 90px; }
  .lead-card { padding: 24px; }
  .main-form { padding: 28px 22px; }
  .lead-card .row-2 { grid-template-columns: 1fr; }
  body { padding-bottom: 80px; }
}

/* ===========================
   HERO BACKGROUND LAYERS
   =========================== */
.hero { isolation: isolate; }
.hero {
  background:
    radial-gradient(1100px 600px at 80% -10%, rgba(201,169,110,0.18), transparent 60%),
    radial-gradient(900px 500px at 0% 100%, rgba(201,169,110,0.10), transparent 60%),
    linear-gradient(180deg, #0a1c33 0%, #0B1F3A 50%, #081729 100%);
}
.hero__bg {
  position: absolute; inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero__bg-layer { position: absolute; inset: 0; }
.hero__bg-layer--gradient {
  background:
    radial-gradient(900px 500px at 78% 20%, rgba(201,169,110,0.18), transparent 65%),
    radial-gradient(700px 480px at 12% 80%, rgba(201,169,110,0.10), transparent 70%);
  animation: glowPulse 9s ease-in-out infinite alternate;
}
.hero__bg-layer--pattern {
  background-image:
    linear-gradient(rgba(201,169,110,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,169,110,0.07) 1px, transparent 1px);
  background-size: 56px 56px, 56px 56px;
  background-position: 0 0;
  mask-image: radial-gradient(ellipse at 70% 30%, rgba(0,0,0,0.7), transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 70% 30%, rgba(0,0,0,0.7), transparent 75%);
  animation: gridDrift 40s linear infinite;
}
.hero__bg-layer--glow {
  background:
    radial-gradient(420px 260px at 22% 38%, rgba(201,169,110,0.16), transparent 70%);
  animation: glowPulse 7s ease-in-out infinite alternate;
}
.hero__floorplan {
  position: absolute;
  left: -40px;
  top: 50%;
  transform: translateY(-50%) rotate(-2deg);
  width: 620px;
  max-width: 60%;
  height: auto;
  opacity: 0.55;
  filter: drop-shadow(0 0 20px rgba(0,0,0,0.3));
  animation: floorFloat 14s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes floorFloat {
  0%   { transform: translateY(-50%) rotate(-2deg) translateX(0); }
  100% { transform: translateY(-52%) rotate(-1deg) translateX(8px); }
}
@media (max-width: 980px) {
  .hero__floorplan { opacity: 0.22; left: -10%; width: 130%; }
}
.hero__skyline {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 280px;
  opacity: 0.85;
  mask-image: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.6) 30%, rgba(0,0,0,1) 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.6) 30%, rgba(0,0,0,1) 100%);
}
.hero__key {
  position: absolute;
  right: 7%;
  top: 22%;
  width: 110px;
  height: 110px;
  opacity: 0.65;
  animation: keyFloat 9s ease-in-out infinite alternate;
}
@keyframes keyFloat {
  0%   { transform: rotate(-8deg) translateY(0); }
  100% { transform: rotate(6deg) translateY(-14px); }
}
@media (max-width: 880px) { .hero__key { display: none; } }
.hero .container { position: relative; z-index: 1; }
.hero__skyline g rect { animation: windowBlink 6s steps(1) infinite; }
.hero__skyline g rect:nth-child(2n)  { animation-delay: 1.2s; }
.hero__skyline g rect:nth-child(3n)  { animation-delay: 2.4s; }
.hero__skyline g rect:nth-child(4n)  { animation-delay: 3.6s; }
.hero__skyline g rect:nth-child(5n)  { animation-delay: 4.8s; }
@keyframes windowBlink {
  0%, 100% { opacity: 1; }
  47%, 53% { opacity: 0.35; }
}

@keyframes gridDrift {
  0%   { background-position: 0 0, 0 0; }
  100% { background-position: 56px 56px, 56px 56px; }
}
@keyframes glowPulse {
  0%   { opacity: 0.78; }
  100% { opacity: 1; }
}

/* eyebrow shimmer */
.eyebrow {
  position: relative;
  overflow: hidden;
}
.eyebrow::after {
  content: "";
  position: absolute;
  top: 0; left: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(201,169,110,0.35), transparent);
  animation: shimmer 5s ease-in-out infinite;
}
@keyframes shimmer {
  0%, 60% { left: -120%; }
  100% { left: 220%; }
}

/* gold-line draw-in */
.gold-line {
  width: 60px;
  transform-origin: left center;
  animation: lineDraw 1s var(--ease) both;
}
.gold-line--center { transform-origin: center; }
@keyframes lineDraw {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

/* hero meta dots pulse */
.hero__meta i {
  box-shadow: 0 0 0 0 rgba(201,169,110,0.6);
  animation: dotPulse 2.4s ease-out infinite;
}
.hero__meta span:nth-child(2) i { animation-delay: 0.6s; }
.hero__meta span:nth-child(3) i { animation-delay: 1.2s; }
@keyframes dotPulse {
  0%   { box-shadow: 0 0 0 0 rgba(201,169,110,0.55); }
  70%  { box-shadow: 0 0 0 10px rgba(201,169,110,0); }
  100% { box-shadow: 0 0 0 0 rgba(201,169,110,0); }
}

/* lead card subtle float */
.lead-card {
  animation: cardFloat 8s ease-in-out infinite alternate;
}
@keyframes cardFloat {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-6px); }
}

/* button hover lift + shine */
.btn--primary { position: relative; overflow: hidden; }
.btn--primary::before {
  content: "";
  position: absolute;
  top: 0; left: -80%;
  width: 50%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.45), transparent);
  transform: skewX(-18deg);
  transition: left .7s var(--ease);
}
.btn--primary:hover::before { left: 130%; }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(201,169,110,0.4); }

/* ===========================
   SECTION PATTERNS (navy)
   =========================== */
.section--has-pattern { position: relative; overflow: hidden; }
.section__pattern {
  position: absolute; inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(rgba(201,169,110,0.08) 1px, transparent 1px),
    radial-gradient(rgba(201,169,110,0.04) 1px, transparent 1px);
  background-size: 28px 28px, 56px 56px;
  background-position: 0 0, 14px 14px;
  mask-image: radial-gradient(ellipse at 30% 20%, rgba(0,0,0,0.7), transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 30% 20%, rgba(0,0,0,0.7), transparent 75%);
  z-index: 0;
}
.section__pattern--alt {
  mask-image: radial-gradient(ellipse at 75% 80%, rgba(0,0,0,0.7), transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 75% 80%, rgba(0,0,0,0.7), transparent 75%);
}
.section--has-pattern .container { position: relative; z-index: 1; }

/* beige sections — subtle blueprint backdrop */
.section--beige {
  position: relative;
  background:
    linear-gradient(180deg, var(--beige) 0%, #efeae0 100%);
}
.section--beige::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(11,31,58,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11,31,58,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at 50% 0%, rgba(0,0,0,0.55), transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 0%, rgba(0,0,0,0.55), transparent 70%);
  pointer-events: none;
}
.section--beige .container { position: relative; z-index: 1; }

/* ===========================
   OWNERS SECTION
   =========================== */
.section--owners {
  position: relative;
  background:
    linear-gradient(180deg, #fdfbf6 0%, var(--beige) 100%);
  overflow: hidden;
}
.owners__bg {
  position: absolute; inset: 0;
  pointer-events: none;
  background:
    radial-gradient(700px 400px at 100% 10%, rgba(201,169,110,0.18), transparent 65%),
    radial-gradient(600px 500px at 0% 100%, rgba(11,31,58,0.06), transparent 65%);
}
.owners__bg::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(11,31,58,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11,31,58,0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at 50% 50%, rgba(0,0,0,0.5), transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, rgba(0,0,0,0.5), transparent 75%);
}

.owners__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}
@media (min-width: 980px) {
  .owners__grid { grid-template-columns: 1fr 1.05fr; gap: 80px; }
}

.owners__photo-wrap {
  position: relative;
  padding: 14px;
}
.owners__photo-wrap::before {
  content: "";
  position: absolute;
  inset: -4px -4px 30px -30px;
  border: 1px solid var(--gold);
  border-radius: 28px;
  opacity: 0.6;
  transition: transform .8s var(--ease), opacity .8s var(--ease);
  pointer-events: none;
}
.owners__photo-wrap:hover::before {
  transform: translate(8px, 8px);
}
.owners__frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(11,31,58,0.22), 0 8px 24px rgba(11,31,58,0.10);
  background: var(--navy);
  transform: translateZ(0);
  transition: transform .6s var(--ease), box-shadow .6s var(--ease);
}
.owners__frame img {
  width: 100%;
  height: auto;
  display: block;
  transform: scale(1.02);
  transition: transform 1.2s var(--ease), filter .6s var(--ease);
  filter: saturate(1.02) contrast(1.03);
}
.owners__photo-wrap:hover .owners__frame {
  transform: translateY(-4px);
  box-shadow: 0 40px 100px rgba(11,31,58,0.28), 0 10px 30px rgba(11,31,58,0.14);
}
.owners__photo-wrap:hover .owners__frame img { transform: scale(1.06); }

.owners__frame-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, transparent 35%, rgba(255,255,255,0.18) 50%, transparent 65%);
  transform: translateX(-100%);
  transition: transform 1.1s var(--ease);
  pointer-events: none;
}
.owners__photo-wrap:hover .owners__frame-shine { transform: translateX(100%); }

.owners__badge {
  position: absolute;
  bottom: 18px; left: -18px;
  background: var(--navy);
  color: var(--white);
  padding: 14px 20px;
  border-radius: 16px;
  display: flex; flex-direction: column; gap: 2px;
  box-shadow: 0 18px 40px rgba(11,31,58,0.28);
  border: 1px solid rgba(201,169,110,0.4);
  max-width: 200px;
  animation: badgeFloat 4.5s ease-in-out infinite alternate;
}
.owners__badge-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.9rem;
  color: var(--gold);
  line-height: 1;
}
.owners__badge-label {
  font-size: 12px;
  color: rgba(255,255,255,0.78);
  letter-spacing: 0.04em;
  line-height: 1.3;
}
@keyframes badgeFloat {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-6px); }
}
.owners__signature {
  position: absolute;
  top: -12px; right: 4px;
  opacity: 0.85;
}
.owners__signature path {
  stroke-dasharray: 480;
  stroke-dashoffset: 480;
  animation: signWrite 2.6s var(--ease) .6s forwards;
}
@keyframes signWrite {
  to { stroke-dashoffset: 0; }
}

.owners__copy h2 { margin-bottom: 18px; }
.owners__copy p { color: rgba(30,30,30,0.78); }
.owners__copy strong { color: var(--navy); font-weight: 600; }

.owners__points {
  list-style: none;
  padding: 0;
  margin: 24px 0 30px;
  display: grid;
  gap: 12px;
}
.owners__points li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15.5px;
  color: rgba(30,30,30,0.82);
}
.owners__check {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(201,169,110,0.35);
}

.owners__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 8px; }

@media (max-width: 700px) {
  .owners__badge { left: 10px; bottom: 10px; padding: 12px 16px; }
  .owners__signature { display: none; }
  .owners__photo-wrap::before { inset: -4px -4px 20px -16px; }
}

/* ===========================
   CARD HOVER EXTRAS
   =========================== */
.problem, .card, .post {
  position: relative;
  overflow: hidden;
}
.problem::before, .card::before, .post::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: translateX(-100%);
  transition: transform .6s var(--ease);
}
.problem:hover::before, .card:hover::before, .post:hover::before {
  transform: translateX(0);
}

.problem__icon {
  transition: transform .35s var(--ease), border-color .35s var(--ease), background .35s var(--ease);
}
.problem:hover .problem__icon {
  transform: rotate(-6deg) scale(1.08);
  border-color: var(--gold);
  background: rgba(201,169,110,0.08);
}

.card__tag { transition: letter-spacing .35s var(--ease); }
.card:hover .card__tag { letter-spacing: 0.24em; }

.pillar { transition: transform .4s var(--ease), border-color .4s var(--ease), background .4s var(--ease); }
.pillar:hover {
  transform: translateY(-4px);
  border-color: rgba(201,169,110,0.35);
  background: rgba(255,255,255,0.05);
}
.pillar__num { transition: transform .4s var(--ease); display: inline-block; }
.pillar:hover .pillar__num { transform: translateX(4px); }

.step { transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease); }
.step:hover { transform: translateY(-3px); border-color: var(--line); box-shadow: var(--shadow); }

.trust { transition: transform .4s var(--ease), border-color .4s var(--ease), background .4s var(--ease); }
.trust:hover {
  transform: translateY(-4px);
  border-color: rgba(201,169,110,0.4);
  background: rgba(255,255,255,0.06);
}
.trust__icon { transition: transform .4s var(--ease); }
.trust:hover .trust__icon { transform: scale(1.1) rotate(-4deg); }

.district { transition: transform .25s var(--ease), border-color .25s var(--ease), background .25s var(--ease); }
.district:hover { transform: translateY(-2px); background: var(--white); }

.faq-item summary { transition: color .25s var(--ease), padding-left .25s var(--ease); }
.faq-item:hover summary { padding-left: 6px; color: var(--navy); }
.faq-item summary::after { transition: transform .35s var(--ease); }
.faq-item[open] summary::after { transform: rotate(180deg); }

.socials a { transition: transform .3s var(--ease), border-color .3s var(--ease), color .3s var(--ease); }
.socials a:hover { transform: translateY(-3px); }

/* nav link underline */
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.nav__links a:hover::after { transform: scaleX(1); }

/* popup choice — slide-in arrow already exists, add subtle scale */
.popup__choice { transition: transform .25s var(--ease), border-color .25s var(--ease), background .25s var(--ease); }
.popup__choice:hover { transform: translateX(2px); }

/* mobile sticky pulse */
.mobile-sticky.is-visible button.btn--primary {
  animation: stickyPulse 2.4s ease-in-out infinite;
}
@keyframes stickyPulse {
  0%, 100% { box-shadow: 0 8px 22px rgba(201,169,110,0.35); }
  50% { box-shadow: 0 8px 32px rgba(201,169,110,0.6); }
}

/* respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hero__bg-layer--gradient,
  .hero__bg-layer--pattern,
  .hero__bg-layer--glow,
  .hero__floorplan,
  .hero__key,
  .hero__skyline g rect,
  .lead-card,
  .owners__badge,
  .eyebrow::after,
  .gold-line,
  .hero__meta i,
  .brand__dot,
  .mobile-sticky.is-visible button.btn--primary,
  .owners__signature path {
    animation: none !important;
  }
  .reveal { transition: opacity .3s ease !important; transform: none !important; }
}

/* ===========================
   HERO BULLETS
   =========================== */
.hero__bullets {
  list-style: none;
  padding: 0;
  margin: 28px 0 30px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
@media (min-width: 600px) { .hero__bullets { grid-template-columns: 1fr 1fr; } }
.hero__bullets li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14.5px;
  color: rgba(255,255,255,0.86);
}
.hero__check {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(201,169,110,0.16);
  color: var(--gold);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px;
  font-weight: 700;
  margin-top: 1px;
}

/* ===========================
   STATS STRIP
   =========================== */
.stats-strip {
  background:
    linear-gradient(180deg, #0B1F3A 0%, #112949 100%);
  border-top: 1px solid rgba(201,169,110,0.18);
  border-bottom: 1px solid rgba(201,169,110,0.18);
  padding: 48px 0;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.stats-strip::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,169,110,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,169,110,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse at 50% 50%, rgba(0,0,0,0.55), transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, rgba(0,0,0,0.55), transparent 75%);
  pointer-events: none;
}
.stats-strip__inner {
  position: relative;
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  text-align: center;
}
.stat { display: flex; flex-direction: column; gap: 6px; }
.stat__num {
  font-family: "Cormorant Garamond", serif;
  color: var(--gold);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1;
}
.stat__label {
  font-size: 13.5px;
  color: rgba(255,255,255,0.72);
  letter-spacing: 0.02em;
  max-width: 26ch;
  margin: 0 auto;
}

/* ===========================
   COMPARE SECTION
   =========================== */
.compare {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}
@media (min-width: 880px) {
  .compare { grid-template-columns: 1.1fr 1fr 1fr; align-items: stretch; }
}
.compare__col {
  background: var(--white);
  border: 1px solid rgba(11,31,58,0.07);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex; flex-direction: column;
  transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.compare__col:hover { transform: translateY(-3px); }
.compare__col--us {
  background: linear-gradient(180deg, #0B1F3A 0%, #112949 100%);
  color: var(--white);
  border-color: rgba(201,169,110,0.35);
  box-shadow: 0 24px 50px rgba(11,31,58,0.18);
  position: relative;
}
.compare__col--us::after {
  content: "Polecane";
  position: absolute; top: -14px; right: 24px;
  background: var(--gold); color: var(--navy);
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600;
  padding: 6px 12px; border-radius: 999px;
}
.compare__col--us h3 { color: var(--white); }
.compare__head { margin-bottom: 18px; }
.compare__tag {
  display: inline-block;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.compare__tag--neutral { color: rgba(30,30,30,0.55); }
.compare__col h3 { margin: 0; font-size: 1.4rem; }
.compare__col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.compare__col li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; line-height: 1.5; }
.compare__col--us li { color: rgba(255,255,255,0.85); }
.compare__col:not(.compare__col--us) li { color: rgba(30,30,30,0.78); }
.compare__ok {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(201,169,110,0.2);
  color: var(--gold);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
  margin-top: 1px;
}
.compare__no {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(11,31,58,0.06);
  color: rgba(11,31,58,0.45);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 16px;
  margin-top: 1px;
}

/* ===========================
   TESTIMONIALS
   =========================== */
.section--testi {
  position: relative;
  background: linear-gradient(180deg, #fdfbf6 0%, var(--beige) 100%);
  overflow: hidden;
}
.testi__bg {
  position: absolute; inset: 0;
  pointer-events: none;
  opacity: 0.6;
}
.testi__bg svg { width: 100%; height: 100%; }
.testi-grid {
  position: relative;
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.testi {
  background: var(--white);
  border: 1px solid rgba(11,31,58,0.06);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  position: relative;
  display: flex; flex-direction: column;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.testi:hover { transform: translateY(-3px); border-color: var(--line); box-shadow: var(--shadow); }
.testi::before {
  content: "“";
  position: absolute;
  top: -14px; left: 24px;
  font-family: "Cormorant Garamond", serif;
  font-size: 4.5rem;
  color: var(--gold);
  line-height: 1;
}
.testi__stars {
  color: var(--gold);
  letter-spacing: 0.15em;
  font-size: 15px;
  margin-bottom: 10px;
}
.testi p {
  color: rgba(30,30,30,0.82);
  font-size: 15.5px;
  line-height: 1.6;
  margin-bottom: 18px;
  flex: 1;
}
.testi__author {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px;
  color: rgba(30,30,30,0.68);
  border-top: 1px solid rgba(11,31,58,0.07);
  padding-top: 14px;
}
.testi__author strong { color: var(--navy); font-weight: 600; }
.testi__avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  font-weight: 600;
  flex-shrink: 0;
}

/* ===========================
   DISTRICT ALT (okolice)
   =========================== */
.district--alt {
  background: var(--beige);
  border-style: dashed;
  border-color: rgba(11,31,58,0.18);
  color: rgba(11,31,58,0.78);
}
.district--alt::before { background: rgba(201,169,110,0.7); }

/* ===========================
   OWNERS NAME TAG
   =========================== */
.owners__name-tag {
  position: absolute;
  top: 18px; right: -16px;
  background: var(--white);
  border: 1px solid rgba(201,169,110,0.4);
  border-radius: 14px;
  padding: 12px 18px;
  display: flex; flex-direction: column; gap: 2px;
  box-shadow: 0 12px 30px rgba(11,31,58,0.16);
  text-align: right;
  animation: badgeFloat 5s ease-in-out infinite alternate;
}
.owners__name-tag-eyebrow {
  font-size: 10.5px;
  color: var(--gold);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.owners__name-tag-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  color: var(--navy);
  line-height: 1;
}
.owners__quote {
  background: rgba(201,169,110,0.1);
  border-left: 3px solid var(--gold);
  padding: 16px 20px;
  border-radius: 0 14px 14px 0;
  font-style: italic;
  color: rgba(30,30,30,0.78) !important;
  font-size: 15.5px;
  margin: 18px 0 22px;
}
.owners__quote em { color: var(--navy); font-style: italic; font-weight: 500; }
@media (max-width: 700px) {
  .owners__name-tag { right: 6px; top: 6px; padding: 10px 14px; }
  .owners__name-tag-name { font-size: 1.05rem; }
}

/* ===========================
   FORM TRUST STRIP
   =========================== */
.form-trust {
  display: flex; flex-wrap: wrap; gap: 10px 22px;
  justify-content: center;
  margin: 0 auto 28px;
  max-width: 760px;
}
.form-trust span {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13.5px;
  color: var(--navy);
  background: var(--white);
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(201,169,110,0.4);
}
.form-trust svg { color: var(--gold); }

/* ===========================
   FOOTER CTA + SEO
   =========================== */
.footer__cta {
  display: grid;
  gap: 22px;
  align-items: center;
  grid-template-columns: 1fr;
  background: linear-gradient(135deg, rgba(201,169,110,0.18) 0%, rgba(201,169,110,0.04) 100%);
  border: 1px solid rgba(201,169,110,0.35);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 50px;
}
@media (min-width: 800px) { .footer__cta { grid-template-columns: 1fr auto; gap: 32px; padding: 40px; } }
.footer__cta h3 { color: var(--white); margin-bottom: 8px; font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
.footer__cta p { color: rgba(255,255,255,0.7); margin: 0; font-size: 15px; }
.footer__seo {
  margin: 0 0 40px;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__seo h4 {
  color: var(--white);
  font-family: "Inter", sans-serif;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.footer__seo p {
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  line-height: 1.8;
  margin: 0 0 8px;
}
