/* ============================================================
   MANDRYKOWSKI WRZOS - Premium Light Edition
   Kancelaria Radców Prawnych Opole
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,700&family=Inter:wght@300;400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* ── ZMIENNE ─────────────────────────────────────────────── */
:root {
  /* Jasna paleta - krem + granat + miedź */
  --bg:           #faf8f4;
  --bg2:          #f4f0e8;
  --bg3:          #edeae2;
  --white:        #ffffff;

  --navy:         #0e1b2e;
  --navy2:        #1a2d46;
  --navy3:        #253f63;

  --copper:       #b87333;
  --copper2:      #c8834a;
  --gold:         #c9a84c;
  --gold2:        #debb6a;

  --text:         #0f172a;
  --text2:        #334155;
  --text3:        #64748b;

  --line:         rgba(14,27,46,.08);
  --line2:        rgba(14,27,46,.14);

  --red:          #c0392b;
  --red2:         #e53e3e;

  --shadow-sm:    0 2px 12px rgba(14,27,46,.06);
  --shadow-md:    0 8px 32px rgba(14,27,46,.09);
  --shadow-lg:    0 20px 60px rgba(14,27,46,.12);
  --shadow-xl:    0 32px 80px rgba(14,27,46,.16);

  --font-serif:   'Playfair Display', Georgia, serif;
  --font-sans:    'Space Grotesk', 'Inter', sans-serif;
  --font-body:    'Inter', sans-serif;

  --ease:         cubic-bezier(.4,0,.2,1);
  --ease-out:     cubic-bezier(0,0,.2,1);

  --max:          1300px;
  --pad:          clamp(20px, 5vw, 60px);
  --radius:       6px;
  --radius-lg:    14px;

  --grad-copper:  linear-gradient(135deg, #c9a84c 0%, #b87333 100%);
  --grad-text:    linear-gradient(135deg, #c9a84c, #b87333);
}

/* ── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: var(--copper); border-radius: 3px; }

/* ╔══════════════════════════════════════╗
   ║  NAWIGACJA                           ║
   ╚══════════════════════════════════════╝ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 var(--pad);
  background: rgba(250,248,244,.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s var(--ease);
}
.nav.scrolled {
  box-shadow: 0 4px 24px rgba(14,27,46,.08);
}

.nav-inner {
  max-width: var(--max); margin: 0 auto;
  height: 84px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}

.nav-logo { flex-shrink: 0; }
.nav-logo img {
  height: 48px; width: auto;
  transition: opacity .25s var(--ease);
}
.nav-logo:hover img { opacity: .75; }

.nav-links {
  display: flex; align-items: center;
  gap: clamp(10px, 1.4vw, 22px);
  flex-shrink: 1;
}
.nav-links a {
  font-family: var(--font-sans);
  font-size: 11.5px; font-weight: 600;
  letter-spacing: .04em; text-transform: uppercase;
  color: var(--text2);
  transition: color .25s var(--ease);
  position: relative;
  white-space: nowrap;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -6px; left: 0;
  width: 0; height: 1.5px;
  background: var(--grad-copper);
  transition: width .3s var(--ease);
}
.nav-links a:hover { color: var(--navy); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--navy); }

.nav-cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

.nav-emergency {
  display: flex; align-items: center; gap: 6px;
  background: rgba(192,57,43,.07);
  border: 1px solid rgba(192,57,43,.3);
  color: var(--red);
  padding: 7px 13px; border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 10.5px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  transition: all .25s var(--ease);
  white-space: nowrap;
}
.nav-emergency:hover {
  background: var(--red2);
  border-color: var(--red2);
  color: white;
  box-shadow: 0 4px 16px rgba(192,57,43,.3);
}
.nav-emergency .dot {
  width: 7px; height: 7px;
  border-radius: 50%; background: var(--red2);
  animation: blink 1.3s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.15} }

.nav-tel {
  font-family: var(--font-sans);
  font-size: 14px; font-weight: 700;
  color: var(--navy);
  display: flex; align-items: center; gap: 7px;
  transition: color .25s var(--ease);
}
.nav-tel:hover { color: var(--copper); }
.nav-tel i { color: var(--copper); }

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px; padding: 8px;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--navy); border-radius: 2px;
  transition: all .3s var(--ease);
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4px,5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px,-5px); }

/* ╔══════════════════════════════════════╗
   ║  HERO                                ║
   ╚══════════════════════════════════════╝ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--white);
  padding-top: 98px;
}

/* Subtelny wzór krzyży/linii w tle */
.hero-mesh {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: .4;
  pointer-events: none;
}

/* Złoty akcent w prawym górnym rogu */
.hero-beam {
  position: absolute;
  top: 0; right: 0;
  width: 480px; height: 480px;
  background: radial-gradient(ellipse at top right, rgba(201,168,76,.15) 0%, transparent 70%);
  pointer-events: none;
}

/* Duże dekoracyjne MW */
.hero-deco-text {
  position: absolute;
  right: -20px; bottom: -40px;
  font-family: var(--font-serif);
  font-size: clamp(180px, 22vw, 340px);
  font-weight: 900; font-style: italic;
  color: transparent;
  -webkit-text-stroke: 1px rgba(14,27,46,.05);
  line-height: 1; user-select: none; pointer-events: none;
  letter-spacing: -.04em;
}

.hero-inner {
  position: relative; z-index: 2;
  max-width: var(--max); margin: 0 auto;
  padding: clamp(60px,10vh,120px) var(--pad);
  display: grid;
  grid-template-columns: 1fr 500px;
  align-items: center;
  gap: clamp(40px,6vw,96px);
  width: 100%;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 12px;
  margin-bottom: 24px;
}
.hero-badge-line { width: 28px; height: 1.5px; background: var(--copper); }
.hero-badge-text {
  font-family: var(--font-sans);
  font-size: 11px; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--copper);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 5.5vw, 5rem);
  font-weight: 900; line-height: 1.06;
  color: var(--navy);
  margin-bottom: 24px;
  letter-spacing: -.025em;
}
.hero-title em {
  font-style: italic;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-lead {
  font-size: 1.05rem; line-height: 1.8;
  color: var(--text2); max-width: 500px;
  margin-bottom: 36px;
}

/* Statystyki */
.hero-stats {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 0; margin-bottom: 40px;
  border: 1px solid var(--line2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.hero-stat {
  padding: 20px 22px;
  border-right: 1px solid var(--line);
  transition: background .25s var(--ease);
  position: relative;
}
.hero-stat:last-child { border-right: none; }
.hero-stat::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--grad-copper);
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease);
}
.hero-stat:hover { background: var(--bg); }
.hero-stat:hover::before { transform: scaleX(1); }

.hero-stat-number {
  font-family: var(--font-serif);
  font-size: 2.2rem; font-weight: 900;
  line-height: 1; margin-bottom: 6px;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-stat-label {
  font-size: 11.5px; color: var(--text3); line-height: 1.4;
}

.hero-actions {
  display: flex; gap: 12px; flex-wrap: wrap;
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--navy);
  color: white;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-sans); font-size: 13px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  transition: all .28s var(--ease);
  box-shadow: 0 4px 16px rgba(14,27,46,.2);
}
.btn-primary:hover {
  background: var(--navy2);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(14,27,46,.28);
}

.btn-copper {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--grad-copper);
  color: white;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-sans); font-size: 13px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  transition: all .28s var(--ease);
  box-shadow: 0 4px 16px rgba(184,115,51,.3);
}
.btn-copper:hover {
  opacity: .9;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(184,115,51,.4);
}

.btn-outline {
  display: inline-flex; align-items: center; gap: 9px;
  border: 1.5px solid var(--line2);
  color: var(--navy);
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-sans); font-size: 13px; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  transition: all .28s var(--ease);
}
.btn-outline:hover {
  border-color: var(--copper);
  color: var(--copper);
  background: rgba(184,115,51,.04);
}

.btn-emergency {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%;
  background: var(--red2);
  color: white;
  padding: 16px; border-radius: var(--radius);
  font-family: var(--font-sans); font-size: 13px; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase;
  transition: all .28s var(--ease);
}
.btn-emergency:hover {
  background: var(--red);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(229,62,62,.4);
}

.btn-gold {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,.1);
  border: 1.5px solid rgba(201,168,76,.4);
  color: #7a6000;
  padding: 13px 26px; border-radius: var(--radius);
  font-family: var(--font-sans); font-size: 13px; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  transition: all .28s var(--ease);
}
.btn-gold:hover {
  background: rgba(201,168,76,.2);
  border-color: var(--gold);
  transform: translateY(-2px);
}

/* ── HERO VISUAL ─────────────────────────────────────────── */
.hero-visual { position: relative; }

.hero-photo-frame {
  position: relative;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 12px;
}
/* Narożne złote akcenty */
.hero-photo-frame::before {
  content: '';
  position: absolute;
  top: -14px; left: -14px;
  width: 56px; height: 56px;
  border-top: 2px solid var(--copper);
  border-left: 2px solid var(--copper);
  pointer-events: none; z-index: 3;
  border-radius: 2px 0 0 0;
}
.hero-photo-frame::after {
  content: '';
  position: absolute;
  bottom: -14px; right: -14px;
  width: 56px; height: 56px;
  border-bottom: 2px solid var(--copper);
  border-right: 2px solid var(--copper);
  pointer-events: none; z-index: 3;
  border-radius: 0 0 2px 0;
}

.hero-photo-item {
  position: relative; aspect-ratio: 1;
  border-radius: var(--radius); overflow: hidden;
  background: var(--bg3);
}
.hero-photo-item img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  transition: transform .6s var(--ease);
}
.hero-photo-item:hover img { transform: scale(1.05); }
.hero-photo-item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(14,27,46,.8) 0%, rgba(14,27,46,.15) 55%, transparent 100%);
}
.hero-photo-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 20px 14px 14px; z-index: 2;
}
.hero-photo-name {
  font-family: var(--font-sans); font-size: 12.5px; font-weight: 700;
  color: white; line-height: 1.2;
}
.hero-photo-title {
  font-size: 10px; color: var(--gold2); margin-top: 3px;
  letter-spacing: .07em; text-transform: uppercase;
}

.hero-awards {
  display: flex; gap: 8px; flex-wrap: wrap; margin-top: 14px;
}
.hero-award-tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px;
  background: var(--white);
  border: 1px solid var(--line2);
  border-radius: 100px;
  font-family: var(--font-sans); font-size: 11px; font-weight: 600;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}
.hero-award-tag i { color: var(--copper); }

/* ── INFO STRIP ──────────────────────────────────────────── */
.info-strip {
  background: var(--navy);
  padding: 16px var(--pad);
}
.info-strip-inner {
  max-width: var(--max); margin: 0 auto;
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 16px;
}
.info-item {
  display: flex; align-items: center; gap: 12px;
  font-size: 13px; color: rgba(255,255,255,.65);
}
.info-item-icon {
  width: 32px; height: 32px;
  background: rgba(255,255,255,.07);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: var(--copper2); font-size: 13px; flex-shrink: 0;
}
.info-item strong { color: white; }
.info-item a { color: rgba(255,255,255,.65); transition: color .2s; }
.info-item a:hover { color: var(--copper2); }

/* ╔══════════════════════════════════════╗
   ║  SEKCJE - BAZA                       ║
   ╚══════════════════════════════════════╝ */
.section { padding: clamp(64px,10vw,120px) var(--pad); }
.section-inner { max-width: var(--max); margin: 0 auto; }

.section-label {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-sans);
  font-size: 10.5px; font-weight: 700;
  letter-spacing: .24em; text-transform: uppercase;
  color: var(--copper); margin-bottom: 14px;
}
.section-label::before {
  content: ''; width: 24px; height: 1.5px;
  background: var(--grad-copper); display: block;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 3.8vw, 3.4rem);
  font-weight: 900; line-height: 1.1;
  color: var(--navy); margin-bottom: 16px;
  letter-spacing: -.02em;
}
.section-title.light { color: white; }
.section-title em {
  font-style: italic;
  background: linear-gradient(135deg, #b87333 0%, #8a4e18 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-title.light em {
  background: linear-gradient(135deg, #f0d98a 0%, #c9a84c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-lead {
  font-size: 1.05rem; color: var(--text2);
  max-width: 580px; line-height: 1.8;
  margin-bottom: 52px;
}
.section-lead.light { color: rgba(255,255,255,.65); }

/* ╔══════════════════════════════════════╗
   ║  SPECJALIZACJE                       ║
   ╚══════════════════════════════════════╝ */
.specializations { background: var(--bg); }

.spec-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 20px;
}

.spec-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative; overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  cursor: default;
}
.spec-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad-copper);
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.spec-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(184,115,51,.2);
}
.spec-card:hover::before { transform: scaleX(1); }

/* Numer dekoracyjny */
.spec-card-num {
  position: absolute; top: 14px; right: 22px;
  font-family: var(--font-serif); font-size: 5rem; font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(14,27,46,.05);
  line-height: 1; user-select: none; pointer-events: none;
  transition: -webkit-text-stroke-color .3s var(--ease);
}
.spec-card:hover .spec-card-num {
  -webkit-text-stroke-color: rgba(184,115,51,.1);
}

.spec-icon {
  width: 48px; height: 48px;
  background: rgba(184,115,51,.08);
  border: 1px solid rgba(184,115,51,.18);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: var(--copper);
  margin-bottom: 18px;
  transition: all .3s var(--ease);
}
.spec-card:hover .spec-icon {
  background: rgba(184,115,51,.14);
  box-shadow: 0 0 16px rgba(184,115,51,.2);
}

.spec-name {
  font-family: var(--font-serif); font-size: 1.2rem; font-weight: 700;
  color: var(--navy); margin-bottom: 10px; line-height: 1.3;
}

.spec-desc {
  font-size: 13.5px; color: var(--text2);
  line-height: 1.7; margin-bottom: 18px;
}

.spec-list {
  border-top: 1px solid var(--line);
  padding-top: 16px;
  display: flex; flex-direction: column; gap: 7px;
}
.spec-list li {
  font-size: 13px; color: var(--text2);
  display: flex; align-items: flex-start; gap: 10px; line-height: 1.5;
}
.spec-list li::before {
  content: '→'; color: var(--copper); font-size: 11px;
  flex-shrink: 0; margin-top: 2px;
}

.spec-card-link {
  display: inline-flex; align-items: center; gap: 7px;
  margin-top: 18px;
  font-family: var(--font-sans); font-size: 11.5px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--copper);
  transition: gap .25s var(--ease);
}
.spec-card:hover .spec-card-link { gap: 12px; }

/* ╔══════════════════════════════════════╗
   ║  OBRONA 24/7                         ║
   ╚══════════════════════════════════════╝ */
.emergency-section {
  background: var(--navy);
  position: relative; overflow: hidden;
}
.emergency-section::before {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 60vw; height: 120%;
  background: radial-gradient(ellipse, rgba(192,57,43,.15) 0%, transparent 65%);
  pointer-events: none;
}

/* Pierścienie pulsujące */
.emergency-pulse-rings {
  position: absolute; right: 18%; top: 50%;
  transform: translateY(-50%);
  pointer-events: none; z-index: 0;
}
.ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(229,62,62,.3);
  transform: translate(-50%,-50%);
  animation: ring-expand 3s ease-out infinite;
}
.ring:nth-child(1) { animation-delay: 0s; }
.ring:nth-child(2) { animation-delay: .9s; }
.ring:nth-child(3) { animation-delay: 1.8s; }
@keyframes ring-expand {
  0%   { width: 80px; height: 80px; opacity: .8; }
  100% { width: 420px; height: 420px; opacity: 0; }
}

.emergency-inner {
  position: relative; z-index: 2;
  max-width: var(--max); margin: 0 auto;
  padding: clamp(64px,10vw,120px) var(--pad);
  display: grid;
  grid-template-columns: 1fr 360px;
  align-items: center;
  gap: clamp(40px,6vw,96px);
}

.emergency-label {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(229,62,62,.12);
  border: 1px solid rgba(229,62,62,.35);
  color: #ff8080; padding: 7px 18px; border-radius: var(--radius);
  font-family: var(--font-sans); font-size: 10.5px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase; margin-bottom: 22px;
}

.emergency-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 900; line-height: 1.1; color: white;
  margin-bottom: 18px; letter-spacing: -.02em;
}

.emergency-text {
  font-size: 15px; color: rgba(255,255,255,.82);
  line-height: 1.8; margin-bottom: 32px;
}

.emergency-scope { display: flex; flex-direction: column; gap: 10px; }
.emergency-scope-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 14px 16px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius);
  transition: all .25s var(--ease);
}
.emergency-scope-item:hover {
  background: rgba(229,62,62,.07);
  border-color: rgba(229,62,62,.2);
}
.scope-icon {
  width: 38px; height: 38px;
  background: rgba(192,57,43,.2);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0; color: #ff8080;
}
.scope-text strong { display: block; font-size: 13.5px; font-weight: 600; color: white; margin-bottom: 3px; }
.scope-text span { font-size: 12.5px; color: rgba(255,255,255,.88); }

.emergency-contact-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(229,62,62,.25);
  border-radius: var(--radius-lg);
  padding: 32px 24px; text-align: center;
  position: relative; overflow: hidden;
}
.emergency-contact-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--red2), transparent);
}
.night-badge {
  display: inline-block; background: var(--red2); color: white;
  font-family: var(--font-sans); font-size: 9.5px; font-weight: 800;
  letter-spacing: .2em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 100px; margin-bottom: 20px;
}

.emergency-attorney-avatar {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  margin-bottom: 18px; text-align: left;
}
.emergency-attorney-avatar img {
  width: 56px; height: 56px; border-radius: 50%;
  border: 2px solid var(--gold);
  object-fit: cover; object-position: top center;
  box-shadow: 0 4px 16px rgba(0,0,0,.3);
}
.emergency-attorney-name {
  font-family: var(--font-serif); font-size: 1.05rem; font-weight: 700;
  color: white; line-height: 1.2;
}
.emergency-attorney-title {
  font-size: 11.5px; color: #f0d98a; font-family: var(--font-sans);
  letter-spacing: .04em; margin-top: 2px;
}

.about-team-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  margin-bottom: 24px;
  position: relative;
}
.about-team-photo img {
  width: 100%; height: auto;
  display: block;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.about-team-photo:hover img { transform: scale(1.03); }
.about-team-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 16px 20px;
  background: linear-gradient(to top, rgba(14,27,46,.9) 0%, transparent 100%);
  color: white; font-family: var(--font-sans); font-size: 12px; font-weight: 600;
  display: flex; align-items: center; gap: 8px;
}
.about-team-caption i { color: var(--gold2); }

/* Cutout transparent integrations */
.cutout-duo-about {
  max-height: 320px;
  width: auto;
  margin: 0 auto -15px auto;
  filter: drop-shadow(0 16px 36px rgba(14,27,46,.22));
  display: block;
  transition: transform .4s var(--ease);
}
.cutout-duo-about:hover {
  transform: translateY(-6px) scale(1.02);
}

.cutout-emergency-wrzos {
  max-height: 200px;
  width: auto;
  margin: 0 auto 6px auto;
  filter: drop-shadow(0 10px 28px rgba(0,0,0,.6));
  display: block;
  transition: transform .4s var(--ease);
}
.cutout-emergency-wrzos:hover {
  transform: translateY(-4px);
}

.cutout-heritage-mandrykowski {
  max-height: 180px;
  width: auto;
  margin: 0 auto 10px auto;
  filter: drop-shadow(0 10px 24px rgba(0,0,0,.5));
  display: block;
}
.emergency-number {
  font-family: var(--font-serif); font-size: 2.6rem; font-weight: 900;
  color: white; margin-bottom: 12px;
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.emergency-number a { color: inherit; }

/* ╔══════════════════════════════════════╗
   ║  O KANCELARII                        ║
   ╚══════════════════════════════════════╝ */
.about-section { background: var(--white); }

.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px,6vw,96px); align-items: center;
}

.about-text p {
  font-size: 1.05rem; color: var(--text2);
  line-height: 1.85; margin-bottom: 22px;
}

.about-awards { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.about-award {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px;
  background: var(--bg); border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.about-award-icon {
  width: 34px; height: 34px;
  background: var(--grad-copper);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 14px;
}
.about-award-text strong { display: block; font-size: 13px; font-weight: 700; color: var(--navy); }
.about-award-text span { font-size: 11.5px; color: var(--text3); }

.about-highlights {
  display: flex; gap: 24px; flex-wrap: wrap;
  margin-top: 28px; padding-top: 28px;
  border-top: 1px solid var(--line);
}
.about-highlight { flex: 1; min-width: 110px; }
.about-highlight-num {
  font-family: var(--font-serif); font-size: 1.9rem; font-weight: 900;
  background: var(--grad-text);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; line-height: 1; margin-bottom: 4px;
}
.about-highlight-label { font-size: 12px; color: var(--text3); line-height: 1.4; }

/* Registry card */
.registry-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
  position: relative; overflow: hidden;
}
.registry-card::before {
  content: '';
  position: absolute; top: 0; left: 0; bottom: 0; width: 3px;
  background: var(--grad-copper);
}
.registry-title {
  font-family: var(--font-serif); font-size: 1.2rem; font-weight: 700;
  color: var(--navy); margin-bottom: 24px;
}
.registry-row {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: 12px 0; border-bottom: 1px solid var(--line);
  font-size: 13.5px; gap: 16px;
}
.registry-row:last-child { border-bottom: none; padding-bottom: 0; }
.registry-key { color: var(--text3); flex-shrink: 0; min-width: 88px; }
.registry-val { color: var(--navy); font-weight: 600; text-align: right; line-height: 1.5; }
.registry-val.mono { font-family: var(--font-sans); letter-spacing: .04em; }

/* ╔══════════════════════════════════════╗
   ║  WSPÓLNICY                           ║
   ╚══════════════════════════════════════╝ */
.partners-section { background: var(--bg); }

.partners-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }

.partner-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  position: relative;
}
.partner-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad-copper);
  transform: scaleX(0); transform-origin: left;
  transition: transform .45s var(--ease);
  z-index: 2;
}
.partner-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.partner-card:hover::before { transform: scaleX(1); }

.partner-photo { position: relative; height: 380px; overflow: hidden; background: var(--bg3); }
.partner-photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  transition: transform .65s var(--ease);
}
.partner-card:hover .partner-photo img { transform: scale(1.05); }
.partner-photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(14,27,46,.75) 100%);
}
.partner-bar {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 24px 24px 20px; z-index: 2;
}
.partner-number {
  font-family: var(--font-sans); font-size: 10px; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold2); margin-bottom: 5px;
}
.partner-name-photo {
  font-family: var(--font-serif); font-size: 1.65rem; font-weight: 900;
  color: white; line-height: 1.1;
}

.partner-body { padding: 28px; }
.partner-role {
  font-family: var(--font-sans); font-size: 10.5px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--copper); margin-bottom: 14px;
}
.partner-summary { font-size: 14px; color: var(--text2); line-height: 1.75; margin-bottom: 20px; }

.partner-credentials {
  display: flex; flex-direction: column; gap: 9px;
  padding: 16px; background: var(--bg);
  border-radius: var(--radius); margin-bottom: 20px;
}
.credential-item {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 13px; color: var(--text); line-height: 1.6;
}
.credential-item strong {
  color: var(--text3); min-width: 98px; flex-shrink: 0;
  font-size: 10.5px; font-weight: 600; font-family: var(--font-sans);
  text-transform: uppercase; letter-spacing: .06em; margin-top: 2px;
}

.partner-spec-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.spec-tag {
  background: rgba(184,115,51,.07);
  border: 1px solid rgba(184,115,51,.18);
  color: var(--copper); padding: 4px 12px;
  border-radius: 100px; font-size: 11.5px; font-weight: 500;
}

.partner-contact {
  margin-top: 18px; padding-top: 18px;
  border-top: 1px solid var(--line); display: flex; gap: 10px;
}
.partner-contact a {
  flex: 1;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  padding: 10px; border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 12.5px; font-weight: 500; color: var(--text2);
  transition: all .25s var(--ease);
}
.partner-contact a:hover { border-color: var(--copper); color: var(--copper); background: rgba(184,115,51,.04); }

/* ╔══════════════════════════════════════╗
   ║  CENTRUM SPADKOBIERCY                ║
   ╚══════════════════════════════════════╝ */
.heritage-section {
  background: var(--navy);
  position: relative; overflow: hidden;
}
.heritage-section::before {
  content: '"';
  position: absolute; top: -80px; right: 40px;
  font-family: var(--font-serif);
  font-size: 600px; line-height: 1;
  color: rgba(201,168,76,.04);
  pointer-events: none; user-select: none;
}

.heritage-inner {
  position: relative; z-index: 1;
  max-width: var(--max); margin: 0 auto;
  padding: clamp(64px,10vw,120px) var(--pad);
  display: grid; grid-template-columns: 1fr 460px;
  gap: clamp(40px,6vw,96px); align-items: center;
}

.heritage-steps { display: flex; flex-direction: column; gap: 22px; margin-top: 32px; }
.heritage-step { display: flex; gap: 20px; align-items: flex-start; }
.heritage-step-num {
  width: 40px; height: 40px;
  border: 1.5px solid rgba(201,168,76,.4); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-size: 16px; font-weight: 700;
  color: var(--gold2); flex-shrink: 0; position: relative;
}
.heritage-step-num::after {
  content: '';
  position: absolute; bottom: -22px; left: 50%;
  transform: translateX(-50%);
  width: 1px; height: 22px;
  background: rgba(201,168,76,.2);
}
.heritage-step:last-child .heritage-step-num::after { display: none; }
.heritage-step-content strong { display: block; font-size: 15px; font-weight: 600; color: white; margin-bottom: 4px; }
.heritage-step-content p { font-size: 13.5px; color: rgba(255,255,255,.78); line-height: 1.65; }

.heritage-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: var(--radius-lg);
  padding: 36px; position: relative; overflow: hidden;
}
.heritage-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--grad-copper);
}

.heritage-attorney-quote {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 20px; padding-bottom: 16px;
  border-bottom: 1px solid rgba(201,168,76,.2);
}
.heritage-attorney-quote img {
  width: 48px; height: 48px; border-radius: 50%;
  border: 2px solid var(--gold);
  object-fit: cover; object-position: top center;
}
.heritage-attorney-quote strong {
  display: block; font-size: 13px; color: white; font-family: var(--font-sans);
}
.heritage-attorney-quote span {
  font-size: 11.5px; color: #f0d98a;
}
.heritage-card-label {
  font-family: var(--font-sans); font-size: 10.5px; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold2); margin-bottom: 14px;
}
.heritage-card-title { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 700; color: white; margin-bottom: 12px; }
.heritage-card-desc { font-size: 13.5px; color: rgba(255,255,255,.80); line-height: 1.7; margin-bottom: 24px; }
.heritage-checklist { display: flex; flex-direction: column; gap: 11px; margin-bottom: 28px; }
.heritage-checklist li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 13.5px; color: rgba(255,255,255,.88); line-height: 1.5;
}
.heritage-checklist li::before {
  content: '✓';
  background: var(--grad-text);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800; flex-shrink: 0; font-size: 13px;
}

/* ╔══════════════════════════════════════╗
   ║  OPINIE                              ║
   ╚══════════════════════════════════════╝ */
.reviews-section { background: var(--white); }

.reviews-header {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 52px; flex-wrap: wrap; gap: 24px;
}
.score-big {
  font-family: var(--font-serif); font-size: 4.8rem; font-weight: 900;
  background: var(--grad-text);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; line-height: 1;
}
.score-stars { display: flex; gap: 4px; font-size: 20px; color: var(--gold); margin: 8px 0; }
.score-source { font-size: 12.5px; color: var(--text3); }

.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }

.review-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--line);
  transition: all .3s var(--ease);
  position: relative; overflow: hidden;
}
.review-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad-copper);
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease);
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); background: var(--white); }
.review-card:hover::before { transform: scaleX(1); }

.review-stars { display: flex; gap: 3px; font-size: 15px; color: var(--gold); margin-bottom: 16px; }
.review-text { font-size: 15px; line-height: 1.75; color: var(--text); font-style: italic; margin-bottom: 18px; }
.review-author { display: flex; align-items: center; gap: 12px; border-top: 1px solid var(--line); padding-top: 16px; }
.review-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--grad-copper); display: flex; align-items: center;
  justify-content: center; font-family: var(--font-sans);
  font-size: 15px; font-weight: 700; color: white; flex-shrink: 0;
}
.review-name { font-weight: 700; font-size: 13.5px; color: var(--navy); }
.review-date { font-size: 12px; color: var(--text3); margin-top: 2px; }
.review-platform { margin-left: auto; font-size: 12px; color: var(--text3); }

/* ╔══════════════════════════════════════╗
   ║  KONTAKT                             ║
   ╚══════════════════════════════════════╝ */
.contact-section { background: var(--bg); }

.contact-inner {
  max-width: var(--max); margin: 0 auto;
  padding: clamp(64px,10vw,120px) var(--pad);
  display: grid; grid-template-columns: 1fr 460px;
  gap: clamp(40px,6vw,96px); align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 22px; margin-top: 28px; }
.contact-info-item { display: flex; gap: 16px; }
.contact-info-icon {
  width: 48px; height: 48px;
  background: rgba(184,115,51,.08);
  border: 1px solid rgba(184,115,51,.18);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 19px; color: var(--copper); flex-shrink: 0;
}
.contact-info-label {
  font-family: var(--font-sans); font-size: 10.5px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--copper); margin-bottom: 4px;
}
.contact-info-value { font-size: 15px; font-weight: 500; color: var(--navy); line-height: 1.5; }
.contact-info-value a { color: var(--navy); transition: color .2s; }
.contact-info-value a:hover { color: var(--copper); }
.contact-info-value small { display: block; font-size: 13px; color: var(--text3); font-weight: 400; margin-top: 2px; }

.contact-map {
  margin-top: 24px; border-radius: var(--radius-lg); overflow: hidden;
  height: 200px; border: 1px solid var(--line);
}
.contact-map iframe { width: 100%; height: 100%; border: none; }

.contact-form-box {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
  position: relative; overflow: hidden;
}
.contact-form-box::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad-copper);
}

.contact-form-title { font-family: var(--font-serif); font-size: 1.6rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.contact-form-subtitle { font-size: 13.5px; color: var(--text2); margin-bottom: 26px; line-height: 1.7; }

.form-group { margin-bottom: 15px; }
.form-group label {
  display: block; font-family: var(--font-sans);
  font-size: 10.5px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--navy); font-weight: 700; margin-bottom: 7px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; background: var(--bg);
  border: 1px solid var(--line2);
  border-radius: var(--radius);
  padding: 12px 15px; font-size: 14px; color: var(--navy);
  transition: border-color .25s var(--ease), background .25s var(--ease);
  outline: none; appearance: none; font-family: var(--font-body);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text3); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--copper);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(184,115,51,.1);
}
.form-group select option { background: white; color: var(--navy); }
.form-group textarea { resize: vertical; min-height: 115px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }

.btn-submit {
  width: 100%; background: var(--navy); color: white;
  padding: 15px; border-radius: var(--radius);
  font-family: var(--font-sans); font-size: 13px; font-weight: 800;
  letter-spacing: .08em; text-transform: uppercase;
  transition: all .28s var(--ease); margin-top: 4px;
  display: flex; align-items: center; justify-content: center; gap: 9px;
}
.btn-submit:hover { background: var(--navy2); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(14,27,46,.25); }
.btn-submit:disabled { opacity: .6; cursor: not-allowed; transform: none; }

.form-disclaimer { font-size: 11px; color: var(--text3); text-align: center; margin-top: 13px; line-height: 1.6; }
.form-disclaimer a { color: var(--text3); text-decoration: underline; }

/* ╔══════════════════════════════════════╗
   ║  STOPKA                              ║
   ╚══════════════════════════════════════╝ */
.footer {
  background: var(--navy);
  padding: clamp(48px,8vw,96px) var(--pad) 36px;
}
.footer-inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(24px,4vw,52px); margin-bottom: 44px;
}
.footer-logo img { height: 30px; width: auto; filter: brightness(0) invert(1); margin-bottom: 16px; opacity: .75; }
.footer-desc { font-size: 13px; color: rgba(255,255,255,.72); line-height: 1.8; max-width: 280px; margin-bottom: 18px; }
.footer-socials { display: flex; gap: 8px; }
.footer-social {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.4); font-size: 15px;
  transition: all .25s var(--ease);
}
.footer-social:hover { border-color: var(--copper); color: var(--copper); background: rgba(184,115,51,.08); }
.footer-col-title {
  font-family: var(--font-sans); font-size: 10.5px; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold2); font-weight: 700; letter-spacing: .15em; margin-bottom: 16px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,.75); transition: color .2s; }
.footer-links a:hover { color: var(--copper2); }
.footer-bottom {
  max-width: var(--max); margin: 0 auto;
  padding-top: 22px; border-top: 1px solid rgba(255,255,255,.06);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,.55); }
.footer-legal { display: flex; gap: 18px; }
.footer-legal a { font-size: 12px; color: rgba(255,255,255,.55); transition: color .2s; }
.footer-legal a:hover { color: rgba(255,255,255,.55); }

/* ╔══════════════════════════════════════╗
   ║  MOBILE MENU                         ║
   ╚══════════════════════════════════════╝ */
.mobile-menu {
  display: none;
  position: fixed; top: 98px; left: 0; right: 0; bottom: 0;
  background: rgba(250,248,244,.98);
  backdrop-filter: blur(16px);
  z-index: 997;
  padding: 32px var(--pad);
  flex-direction: column; gap: 4px;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu > a {
  font-family: var(--font-serif); font-size: 1.8rem; font-weight: 700;
  color: var(--navy); padding: 12px 0;
  border-bottom: 1px solid var(--line);
  transition: color .2s;
}
.mobile-menu > a:hover { color: var(--copper); }
.mobile-menu-cta { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }

/* ╔══════════════════════════════════════╗
   ║  ANIMACJE                            ║
   ╚══════════════════════════════════════╝ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-in { opacity: 0; animation: fadeInUp .65s var(--ease-out) forwards; }
.animate-in-1 { animation-delay: .1s; }
.animate-in-2 { animation-delay: .22s; }
.animate-in-3 { animation-delay: .36s; }
.animate-in-4 { animation-delay: .5s; }

.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity .65s var(--ease-out), transform .65s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Kaskada kart */
.spec-card:nth-child(1) { transition-delay: .04s; }
.spec-card:nth-child(2) { transition-delay: .1s; }
.spec-card:nth-child(3) { transition-delay: .16s; }
.spec-card:nth-child(4) { transition-delay: .22s; }
.spec-card:nth-child(5) { transition-delay: .28s; }
.spec-card:nth-child(6) { transition-delay: .34s; }

/* ╔══════════════════════════════════════╗
   ║  RESPONSYWNOŚĆ                       ║
   ╚══════════════════════════════════════╝ */
@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr 420px; }
  .spec-grid  { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-visual { max-width: 440px; margin: 0 auto; }
  .hero-lead { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .about-grid       { grid-template-columns: 1fr; }
  .partners-grid    { grid-template-columns: 1fr; }
  .emergency-inner  { grid-template-columns: 1fr; }
  .heritage-inner   { grid-template-columns: 1fr; }
  .contact-inner    { grid-template-columns: 1fr; }
  .footer-inner     { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .nav-tel   { display: none; }
  .nav-hamburger { display: flex; }
}
@media (max-width: 640px) {
  .spec-grid          { grid-template-columns: 1fr; }
  .reviews-grid       { grid-template-columns: 1fr; }
  .hero-stats         { grid-template-columns: repeat(3,1fr); }
  .hero-photo-frame   { grid-template-columns: 1fr 1fr; }
  .footer-inner       { grid-template-columns: 1fr; }
  .form-grid          { grid-template-columns: 1fr; }
  .reviews-header     { flex-direction: column; }
}
