/* ============================================================
   Kancelaria Adwokacka Magdalena Idzik-Cieśla
   Shared stylesheet — wszystkie domeny
   Dostosowanie per domena: nadpisz zmienne CSS w <style> w index.html
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,600;0,700;0,800;1,600;1,700&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img, video { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; }
a { text-decoration: none; }

/* ── DESIGN TOKENS ── */
:root {
  /* Kolory bazowe — nadpisywane per domena */
  --accent:        #8B5E1A;   /* złoty (default) */
  --accent-light:  #C49A3C;
  --accent-bg:     #FDF6E9;

  /* Paleta stała */
  --navy:          #0F1F38;
  --navy-mid:      #1A3254;
  --white:         #FFFFFF;
  --bg:            #F8F7F4;
  --bg-card:       #FFFFFF;
  --border:        rgba(15,31,56,.1);
  --text:          #1A2435;
  --text-muted:    #6B7A8D;
  --text-light:    #A0AABA;

  /* Typografia */
  --serif:  'Playfair Display', Georgia, serif;
  --sans:   'DM Sans', system-ui, -apple-system, sans-serif;

  /* Spacing */
  --max-w:  1100px;
  --px:     clamp(1.25rem, 5vw, 4rem);
  --section-py: clamp(4rem, 8vw, 7rem);

  /* Misc */
  --radius:  6px;
  --radius-lg: 14px;
  --shadow:  0 2px 20px rgba(15,31,56,.07);
  --shadow-lg: 0 8px 48px rgba(15,31,56,.13);
  --transition: .22s cubic-bezier(.4,0,.2,1);
}

/* ── BASE ── */
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── CONTAINER ── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--px);
  padding-right: var(--px);
}

/* ── TICKER ── */
.ticker-wrap {
  background: var(--navy);
  overflow: hidden;
  height: 36px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 200;
}
.ticker-track {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  will-change: transform;
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: 0 1.5rem;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
}
.ticker-item.active-district {
  color: var(--accent-light);
}
.ticker-item::before {
  content: '⬥';
  font-size: .55rem;
  color: var(--accent-light);
  opacity: .6;
}
.ticker-item a {
  color: inherit;
  transition: color var(--transition);
}
.ticker-item a:hover { color: var(--accent-light); }

/* ── NAV ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248,247,244,.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  height: 68px;
  display: flex;
  align-items: center;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--px);
}
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.nav-logo-name {
  font-family: var(--serif);
  font-size: .95rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -.01em;
}
.nav-logo-sub {
  font-size: .68rem;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.nav-links a {
  font-size: .82rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: .04em;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--navy); }
.nav-cta {
  background: var(--accent) !important;
  color: var(--white) !important;
  padding: 9px 20px;
  border-radius: var(--radius);
  font-size: .82rem !important;
  font-weight: 600 !important;
  letter-spacing: .03em !important;
  white-space: nowrap;
  transition: opacity var(--transition) !important;
}
.nav-cta:hover { opacity: .87; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: all .25s;
}

/* ── HERO ── */
.hero {
  padding: clamp(3.5rem, 7vw, 6rem) 0 clamp(3rem, 6vw, 5rem);
  text-align: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
  opacity: 0;
}
.hero-eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--navy);
  letter-spacing: -.02em;
  max-width: 820px;
  margin: 0 auto 1.5rem;
  opacity: 0;
}
.hero h1 em {
  font-style: italic;
  color: var(--accent);
}
.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--text-muted);
  font-weight: 300;
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
  opacity: 0;
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  opacity: 0;
}
.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  opacity: 0;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-size: .82rem;
  color: var(--text-muted);
  font-weight: 400;
}
.hero-trust-item svg {
  color: var(--accent);
  flex-shrink: 0;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: 13px 26px;
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .03em;
  transition: all var(--transition);
  border: 1.5px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-primary:hover { opacity: .88; transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--border);
}
.btn-outline:hover { border-color: var(--navy); background: var(--white); }
.btn-white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-white:hover { opacity: .9; }
.btn-lg { padding: 15px 32px; font-size: .95rem; }

/* ── STATS BAR ── */
.stats-bar {
  background: var(--navy);
  padding: 2.5rem 0;
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.07);
}
.stat-item {
  background: transparent;
  padding: 1.5rem 2rem;
  text-align: center;
}
.stat-number {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: .35rem;
}
.stat-number sup {
  font-size: 1.2rem;
  color: var(--accent-light);
}
.stat-label {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
}

/* ── LOCATION STRIP ── */
.location-strip {
  background: var(--accent-bg);
  border-top: 1px solid rgba(139,94,26,.12);
  border-bottom: 1px solid rgba(139,94,26,.12);
  padding: .65rem 0;
}
.location-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.location-chip {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .78rem;
  font-weight: 500;
  color: var(--accent);
}
.location-chip svg { opacity: .7; }

/* ── SECTION COMMONS ── */
.section { padding: var(--section-py) 0; }
.section-center { text-align: center; }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .9rem;
}
.section-label::before, .section-label::after {
  content: '';
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--accent);
  opacity: .6;
}
.section-label.no-line::before, .section-label.no-line::after { display: none; }
.section-title {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -.02em;
  margin-bottom: 1rem;
}
.section-title em {
  font-style: italic;
  color: var(--accent);
}
.section-desc {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.8;
  max-width: 580px;
}
.section-center .section-desc { margin: 0 auto; }
.section-header { margin-bottom: clamp(2.5rem, 5vw, 4rem); }

/* ── PAIN SECTION ── */
.pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.pain-items { margin-top: 2rem; }
.pain-item {
  display: flex;
  gap: 1.25rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--border);
}
.pain-item:first-child { border-top: 1px solid var(--border); }
.pain-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--accent-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.pain-item h4 {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .3rem;
  line-height: 1.3;
}
.pain-item p {
  font-size: .88rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.7;
}
.pain-quote-block {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 3rem;
  position: relative;
  overflow: hidden;
}
.pain-quote-block::before {
  content: '"';
  font-family: var(--serif);
  font-size: 9rem;
  color: var(--accent-light);
  opacity: .15;
  position: absolute;
  top: -1rem; left: 1.5rem;
  line-height: 1;
  pointer-events: none;
}
.pain-quote-block blockquote {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--white);
  line-height: 1.7;
  position: relative;
  margin-bottom: 2rem;
}
.pain-quote-block cite {
  font-family: var(--sans);
  font-size: .78rem;
  font-style: normal;
  font-weight: 500;
  letter-spacing: .06em;
  color: var(--accent-light);
  text-transform: uppercase;
}

/* ── SERVICES ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: rgba(139,94,26,.2);
}
.service-card:hover::after { transform: scaleX(1); }
.service-num {
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--border);
  line-height: 1;
  margin-bottom: 1.25rem;
  transition: color var(--transition);
}
.service-card:hover .service-num { color: var(--accent-bg); }
.service-card h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .6rem;
}
.service-card p {
  font-size: .875rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}
.service-tags { display: flex; gap: .4rem; flex-wrap: wrap; }
.tag {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 3px 10px;
  background: var(--accent-bg);
  color: var(--accent);
  border-radius: 20px;
}

/* ── PROCESS ── */
.process-section { background: var(--navy); }
.process-section .section-label { color: var(--accent-light); }
.process-section .section-label::before,
.process-section .section-label::after { background: var(--accent-light); }
.process-section .section-title { color: var(--white); }
.process-section .section-desc { color: rgba(255,255,255,.55); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.process-step {
  position: relative;
  padding-top: 1rem;
}
.process-step::before {
  content: '';
  position: absolute;
  top: 2rem;
  right: -0.75rem;
  width: calc(100% - 1.5rem);
  height: 1px;
  background: rgba(255,255,255,.1);
  z-index: 0;
}
.process-step:last-child::before { display: none; }
.step-badge {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent-light);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  background: var(--navy);
}
.process-step h4 {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .5rem;
}
.process-step p {
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  font-weight: 300;
  line-height: 1.75;
}

/* ── TESTIMONIALS ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.testimonial {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: box-shadow var(--transition);
}
.testimonial:hover { box-shadow: var(--shadow-lg); }
.t-stars { font-size: 1rem; color: var(--accent); margin-bottom: 1.25rem; letter-spacing: .1em; }
.t-quote {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--navy);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.t-author { display: flex; align-items: center; gap: .75rem; }
.t-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--accent-bg);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-size: .9rem;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
}
.t-name { font-size: .88rem; font-weight: 600; color: var(--navy); }
.t-meta { font-size: .75rem; color: var(--text-muted); font-weight: 300; }

/* ── FAQ ── */
.faq-section { background: var(--bg-card); }
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 6rem;
  align-items: start;
}
.faq-sticky { position: sticky; top: 90px; }
.faq-list { }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-btn {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: var(--sans);
  font-size: .97rem;
  font-weight: 500;
  color: var(--navy);
  transition: color var(--transition);
}
.faq-btn:hover { color: var(--accent); }
.faq-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: .8rem;
  color: var(--text-muted);
  transition: all var(--transition);
}
.faq-item.open .faq-icon {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  transform: rotate(45deg);
}
.faq-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height .35s cubic-bezier(.4,0,.2,1);
}
.faq-body p {
  padding-bottom: 1.25rem;
  font-size: .9rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.8;
}
.faq-item.open .faq-body { max-height: 400px; }

/* ── CONTACT / CTA ── */
.contact-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: var(--section-py) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.contact-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 20% 50%, rgba(139,94,26,.12) 0%, transparent 65%),
    radial-gradient(ellipse 40% 60% at 80% 20%, rgba(196,154,60,.08) 0%, transparent 60%);
  pointer-events: none;
}
.contact-section .section-label { color: var(--accent-light); }
.contact-section .section-label::before,
.contact-section .section-label::after { background: var(--accent-light); }
.contact-section .section-title { color: var(--white); }
.contact-section .section-desc { color: rgba(255,255,255,.6); margin: 0 auto 2.5rem; }

/* ── FORM ── */
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  max-width: 560px;
  margin: 0 auto;
  text-align: left;
}
.form-card-title {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .35rem;
}
.form-card-sub {
  font-size: .85rem;
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 1.75rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: .4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  font-family: var(--sans);
  font-size: .9rem;
  color: var(--text);
  transition: border-color var(--transition), background var(--transition);
  appearance: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 90px; }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236B7A8D' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.form-submit {
  width: 100%;
  padding: 14px;
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: .92rem;
  font-weight: 600;
  letter-spacing: .04em;
  transition: opacity var(--transition);
  margin-top: .5rem;
}
.form-submit:hover { opacity: .87; }
.form-submit:disabled { opacity: .6; cursor: not-allowed; }
.form-notice {
  text-align: center;
  font-size: .73rem;
  color: var(--text-light);
  margin-top: .75rem;
  line-height: 1.5;
}

/* ── FOOTER ── */
footer {
  background: #0A1626;
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer-brand {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .5rem;
}
.footer-tagline {
  font-size: .82rem;
  color: rgba(255,255,255,.4);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 260px;
}
.footer-contact a {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  font-weight: 500;
  color: var(--accent-light);
  margin-bottom: .5rem;
  transition: opacity var(--transition);
}
.footer-contact a:hover { opacity: .8; }
.footer-col h5 {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col li {
  margin-bottom: .45rem;
  font-size: .82rem;
  font-weight: 300;
}
.footer-col li a {
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
}
.footer-col li a:hover { color: var(--accent-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 1.1rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .72rem;
  color: rgba(255,255,255,.25);
}

/* ── UTILITIES ── */
.text-center { text-align: center; }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-3 { margin-bottom: 1.5rem; }
.hidden { display: none !important; }

/* ── ANIMATIONS ── */
.anim-ready { opacity: 0; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .pain-grid { grid-template-columns: 1fr; gap: 3rem; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .faq-layout { grid-template-columns: 1fr; gap: 3rem; }
  .faq-sticky { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  :root { --px: 1.25rem; }
  .hamburger { display: flex; }
  .nav-desktop { display: none; }
  .nav-desktop.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: var(--bg);
    padding: 1.5rem var(--px) 2rem;
    border-bottom: 1px solid var(--border);
    gap: 1.25rem;
    z-index: 99;
    box-shadow: var(--shadow-lg);
  }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: .5rem; text-align: center; }
  .process-step::before { display: none; }
}

/* ── PER-DISTRICT THEMES ── */
/* Użyj w <style> na danej domenie: */
/* body { --accent: #...; --accent-light: #...; --accent-bg: #...; } */
