/* ══ CONTENT SECTIONS ════════════════════════════════════ */

/* ── shared img placeholder ─────────────────────────────── */
.img-ph {
  width: 100%;
  background: var(--bg-soft);
  border: 2px dashed rgba(47, 74, 57, 0.15);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(47, 74, 57, 0.35);
  font-size: 12px;
  letter-spacing: .4px;
}

.img-ph svg { opacity: .5; }

/* ── shared section heading ──────────────────────────────── */
.sec-hd {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.sec-hd h2 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(22px, 2.6vw, 34px);
  color: var(--green-dk);
  line-height: 1.12;
  letter-spacing: -.2px;
  margin-bottom: 10px;
}

.sec-hd p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.55;
}

/* ═══════════════════════════════════════════════════════════
   A. CTA Groups Banner
   ══════════════════════════════════════════════════════════ */
.s-cta-groups {
  background: var(--green-dk);
  padding: 56px 0;
}

.cta-groups__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-groups__left {
  flex: 1;
  min-width: 260px;
}

.cta-groups__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 10px;
}

.cta-groups__eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(230, 130, 30, 0.25);
  flex-shrink: 0;
}

.cta-groups__inner h2 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(22px, 2.6vw, 34px);
  color: #fff;
  line-height: 1.1;
  letter-spacing: -.2px;
  margin-bottom: 10px;
}

.cta-groups__inner p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
  max-width: 460px;
}

.cta--light {
  background: linear-gradient(135deg, #f28a18 0%, #e96908 100%);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════
   B. Feature image cards (2×2)
   ══════════════════════════════════════════════════════════ */
.s-fi {
  padding: 72px 0;
  background: var(--bg);
}

.fi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.fi-card {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(23, 64, 54, 0.07);
  border-radius: 24px;
  overflow: hidden;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    0 8px 28px rgba(23, 64, 54, 0.045);
  transition: transform 0.38s cubic-bezier(.22,1,.36,1), box-shadow 0.38s cubic-bezier(.22,1,.36,1);
}

.fi-card:hover {
  transform: translateY(-3px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.65),
    0 18px 42px rgba(23, 64, 54, 0.08);
}

.fi-card__img {
  aspect-ratio: 16 / 9;
}

.fi-card__body {
  padding: 20px 22px 22px;
}

.fi-card__body h3 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 19px;
  color: var(--green-dk);
  line-height: 1.2;
  margin-bottom: 7px;
}

.fi-card__body p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════
   C. Photo + text split
   ══════════════════════════════════════════════════════════ */
.s-why {
  padding: 80px 0;
  background: var(--bg-soft);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.why__photo .img-ph {
  aspect-ratio: 4 / 5;
  border-radius: 28px;
}

.why__text {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.why__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--orange-dk);
  margin-bottom: 12px;
}

.why__eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

.why__text h2 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(22px, 2.4vw, 32px);
  color: var(--green-dk);
  line-height: 1.12;
  letter-spacing: -.2px;
  margin-bottom: 18px;
}

.why__text p {
  font-size: 15px;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 16px;
}

.why__cta-box {
  margin-top: 28px;
  padding: 24px 26px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(239, 126, 20, 0.18);
  border-radius: 20px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    0 8px 24px rgba(23, 64, 54, 0.04);
}

.why__cta-box p {
  font-size: 15px;
  font-weight: 600;
  color: var(--green-dk);
  margin-bottom: 14px;
}

/* ═══════════════════════════════════════════════════════════
   D. Who we're for + orzeczenie aside
   ══════════════════════════════════════════════════════════ */
.s-who {
  padding: 80px 0;
  background: var(--bg);
}

.who-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}

.who__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

.who__eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

.who-col h2 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(22px, 2.4vw, 30px);
  color: var(--green-dk);
  line-height: 1.14;
  letter-spacing: -.2px;
  margin-bottom: 14px;
}

.who-col > p {
  font-size: 15px;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 22px;
}

.who-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.who-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: var(--text);
  line-height: 1.4;
}

.who-list li::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
  margin-top: 5px;
}

.who__cta-note {
  font-size: 14px;
  font-weight: 600;
  color: var(--green-dk);
  margin-bottom: 14px;
}

/* Orzeczenie card */
.orzeczenie-card {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(23, 64, 54, 0.09);
  border-radius: 24px;
  padding: 28px 26px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    0 12px 36px rgba(23, 64, 54, 0.06);
  position: sticky;
  top: 24px;
}

.orzeczenie-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(47, 74, 57, 0.08);
  display: grid;
  place-items: center;
  color: var(--green);
  margin-bottom: 16px;
}

.orzeczenie-card h3 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 20px;
  color: var(--green-dk);
  line-height: 1.2;
  margin-bottom: 12px;
}

.orzeczenie-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.orzeczenie-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--green-dk);
  text-decoration: none;
  border-bottom: 1.5px solid rgba(47, 74, 57, 0.3);
  padding-bottom: 1px;
  transition: border-color 0.2s, color 0.2s;
}

.orzeczenie-card__link:hover {
  color: var(--orange-dk);
  border-color: var(--orange);
}

.orzeczenie-card__link svg {
  transition: transform .2s;
}

.orzeczenie-card__link:hover svg {
  transform: translateX(3px);
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1080px) {
  .who-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .orzeczenie-card {
    position: static;
  }
}

@media (max-width: 883px) {
  .fi-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .cta-groups__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .cta--light {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 560px) {
  .s-cta-groups { padding: 40px 0; }
  .s-fi         { padding: 48px 0; }
  .s-why        { padding: 56px 0; }
  .s-who        { padding: 56px 0; }
}

/* ═══════════════════════════════════════════════════════════
   E. Location + FAQ
   ══════════════════════════════════════════════════════════ */
.s-contact {
  padding: 80px 0;
  background: var(--bg-soft);
}

.contact-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 48px;
  align-items: start;
}

/* Location card */
.location-card {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(23, 64, 54, 0.08);
  border-radius: 24px;
  padding: 32px 28px;
  text-align: center;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 12px 36px rgba(23, 64, 54, 0.06);
}

.location-card__pin {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(239, 126, 20, 0.10);
  color: var(--orange-dk);
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
}

.location-card__city {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 18px;
  color: var(--green-dk);
  margin-bottom: 4px;
}

.location-card__street {
  font-size: 14px;
  font-weight: 600;
  color: var(--green-dk);
  margin-bottom: 12px;
}

.location-card__desc {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 22px;
}

.location-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--orange-dk);
  text-decoration: none;
  border-bottom: 1.5px solid rgba(239, 126, 20, 0.35);
  padding-bottom: 1px;
  transition: border-color 0.2s;
}

.location-card__link:hover {
  border-color: var(--orange);
}

/* FAQ */
.faq-col__hd {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(22px, 2.4vw, 32px);
  color: var(--green-dk);
  line-height: 1.12;
  letter-spacing: -.2px;
  margin-bottom: 28px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  padding: 20px 0;
  border-bottom: 1px solid rgba(23, 64, 54, 0.08);
}

.faq-item:first-child {
  border-top: 1px solid rgba(23, 64, 54, 0.08);
}

.faq-item__q {
  font-size: 15px;
  font-weight: 700;
  color: var(--green-dk);
  margin-bottom: 8px;
}

.faq-item__a {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 883px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .location-card {
    max-width: 400px;
  }
}

@media (max-width: 560px) {
  .s-contact { padding: 56px 0; }
  .location-card { max-width: 100%; }
}

/* ═══════════════════════════════════════════════════════════
   F. Final CTA
   ══════════════════════════════════════════════════════════ */
.s-final-cta {
  padding: 80px 0;
  background: var(--bg);
  text-align: center;
}

.final-cta__inner {
  max-width: 680px;
  margin: 0 auto;
  background: linear-gradient(145deg, rgba(47, 74, 57, 0.05) 0%, rgba(239, 126, 20, 0.06) 100%);
  border: 1px solid rgba(23, 64, 54, 0.08);
  border-radius: 32px;
  padding: 56px 48px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 20px 60px rgba(23, 64, 54, 0.05);
}

.final-cta__inner h2 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(24px, 3vw, 42px);
  color: var(--green-dk);
  line-height: 1.1;
  letter-spacing: -.3px;
  margin-bottom: 16px;
}

.final-cta__inner p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.55;
  max-width: 460px;
  margin: 0 auto 32px;
}

.cta--orange-lg {
  background: linear-gradient(135deg, #f28a18 0%, #e96908 100%);
  font-size: 16px;
  padding: 16px 36px;
  border-radius: 999px;
  box-shadow: 0 12px 32px rgba(239, 126, 20, 0.30);
}

.cta--orange-lg:hover {
  box-shadow: 0 16px 40px rgba(239, 126, 20, 0.40);
}

@media (max-width: 560px) {
  .s-final-cta { padding: 48px 0; }
  .final-cta__inner { padding: 40px 24px; }
  .cta--orange-lg { width: 100%; justify-content: center; }
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--green-dk);
  padding: 64px 0 0;
  color: rgba(255, 255, 255, 0.65);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 18px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  display: block;
}

.footer-brand p {
  font-size: 13.5px;
  line-height: 1.65;
  margin-bottom: 20px;
}

.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.2s;
}

.footer-phone:hover { opacity: 0.8; }

.footer-col__hd {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 14px;
}

.footer-address {
  font-style: normal;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.80);
  margin-bottom: 14px;
}

.footer-seo {
  font-size: 12.5px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.45);
}

.footer-tags {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.footer-tags li {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.70);
  padding-left: 14px;
  position: relative;
  line-height: 1.4;
}

.footer-tags li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange);
  opacity: 0.7;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-legal {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.30);
  line-height: 1.5;
}

@media (max-width: 1080px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .site-footer { padding: 48px 0 0; }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: 32px;
  }
  .footer-brand { grid-column: auto; }
}
