/* ==========================================================================
   Vejmelka & Wünsch advokáti — design system
   Navy / gold, Playfair Display + Inter
   ========================================================================== */

:root {
  --navy-950: #0a1e38;
  --navy-900: #0f2a4a;
  --navy-800: #163a63;
  --navy-700: #1e4d82;
  --blue-600: #1e5aa8;
  --blue-500: #2d6fc4;
  --gold-600: #a9822f;
  --gold-500: #c9a227;
  --gold-400: #d9bc5c;
  --gold-300: #e8d38f;
  --cream-50: #faf8f3;
  --cream-100: #f3efe4;
  --ink-900: #17202b;
  --ink-700: #33404f;
  --gray-600: #5b6472;
  --gray-400: #93a0ad;
  --gray-200: #dfe4e9;
  --white: #ffffff;
  --shadow-sm: 0 2px 10px rgba(15, 42, 74, 0.08);
  --shadow-md: 0 10px 30px rgba(15, 42, 74, 0.12);
  --shadow-lg: 0 25px 60px rgba(15, 42, 74, 0.18);
  --radius: 14px;
  --container: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; width: 100%; }

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink-900);
  background: var(--cream-50);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, .serif {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 0.5em;
  color: var(--navy-900);
  overflow-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
}

p, span, div { overflow-wrap: break-word; }
p { margin: 0 0 1em; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { padding-left: 1.2em; }

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-600);
  font-weight: 600;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--gold-500);
  display: inline-block;
}

.section {
  padding: 92px 0;
}
.section--tight { padding: 56px 0; }
.section--navy {
  background: linear-gradient(160deg, var(--navy-950), var(--navy-800) 65%, var(--navy-700));
  color: var(--cream-50);
  position: relative;
  overflow: hidden;
}
.section--navy h1, .section--navy h2, .section--navy h3 { color: var(--white); }
.section--cream { background: var(--cream-100); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.3s ease, color 0.3s ease;
  will-change: transform;
}
.btn:hover { transform: translateY(-3px); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: var(--navy-950);
  box-shadow: 0 12px 26px rgba(201, 162, 39, 0.35);
}
.btn-gold:hover { box-shadow: 0 18px 34px rgba(201, 162, 39, 0.45); }
.btn-outline {
  border-color: rgba(255,255,255,0.4);
  color: var(--white);
  background: transparent;
}
.btn-outline:hover { background: rgba(255,255,255,0.1); }
.btn-navy {
  background: var(--navy-900);
  color: var(--white);
}
.btn-navy:hover { box-shadow: var(--shadow-md); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  padding: 20px 0;
  transition: padding 0.35s var(--ease), background 0.35s var(--ease), box-shadow 0.35s var(--ease);
  background: rgba(10, 30, 56, 0.0);
}
.site-header.scrolled {
  padding: 10px 0;
  background: rgba(10, 30, 56, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}
.brand-mark {
  width: 44px; height: 44px;
  flex-shrink: 0;
}
.brand-text .name {
  font-family: "Playfair Display", serif;
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.01em;
  line-height: 1.1;
}
.brand-text .tag {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-300);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.main-nav a {
  color: rgba(255,255,255,0.88);
  font-size: 0.92rem;
  font-weight: 500;
  position: relative;
  padding: 6px 0;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--gold-500);
  transition: right 0.3s var(--ease);
}
.main-nav a:hover::after, .main-nav a.active::after { right: 0; }
.main-nav a.active { color: var(--gold-300); }

.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.06);
  color: var(--white);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.nav-toggle svg { width: 20px; height: 20px; }

.mobile-nav {
  position: fixed;
  inset: 0;
  background: linear-gradient(160deg, var(--navy-950), var(--navy-800));
  z-index: 600;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  transform: translateY(-100%);
  transition: transform 0.5s var(--ease);
}
.mobile-nav.open { transform: translateY(0); }
.mobile-nav a {
  color: var(--white);
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
}
.mobile-nav-close {
  position: absolute;
  top: 24px; right: 24px;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  background: transparent;
  cursor: pointer;
}

/* ---------- Hero ---------- */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 120px;
  padding-bottom: 60px;
  background:
    radial-gradient(circle at 85% 10%, rgba(201,162,39,0.18), transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(45,111,196,0.25), transparent 55%),
    linear-gradient(160deg, var(--navy-950) 0%, var(--navy-800) 55%, var(--navy-700) 100%);
  color: var(--white);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-grid > * { min-width: 0; }
.hero h1 {
  font-size: clamp(2.3rem, 4.4vw, 3.6rem);
  color: var(--white);
  margin-bottom: 22px;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-300);
}
.hero p.lead {
  font-size: 1.12rem;
  color: rgba(255,255,255,0.82);
  max-width: 52ch;
  margin-bottom: 34px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 46px;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, auto));
  gap: 34px;
  min-width: 0;
  max-width: 100%;
}
.stat { min-width: 0; }
.stat .num {
  font-family: "Playfair Display", serif;
  font-size: 2.1rem;
  color: var(--gold-300);
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.stat .label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.68);
  overflow-wrap: break-word;
  letter-spacing: 0.03em;
}

/* Rotating 3D emblem */
.emblem-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
  position: relative;
  z-index: 2;
}
.emblem {
  width: min(360px, 80%);
  aspect-ratio: 1;
  position: relative;
  transform-style: preserve-3d;
  animation: spin3d 16s linear infinite;
}
@keyframes spin3d {
  from { transform: rotateY(0deg) rotateX(8deg); }
  to { transform: rotateY(360deg) rotateX(8deg); }
}
.emblem-face {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid rgba(201,162,39,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  backface-visibility: hidden;
  background: radial-gradient(circle at 32% 28%, rgba(201,162,39,0.22), rgba(255,255,255,0.02) 60%);
  box-shadow: inset 0 0 60px rgba(201,162,39,0.15), 0 30px 70px rgba(0,0,0,0.35);
}
.emblem-face.back { transform: rotateY(180deg); }
.emblem-face svg { width: 46%; height: 46%; }
.emblem-ring {
  position: absolute;
  inset: -26px;
  border-radius: 50%;
  border: 1px dashed rgba(201,162,39,0.3);
  animation: spin3d 30s linear infinite reverse;
}
.emblem-orbit-dot {
  position: absolute;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gold-400);
  box-shadow: 0 0 16px 4px rgba(201,162,39,0.6);
  top: -5px; left: calc(50% - 5px);
}

.hero-bg-lines {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.35;
  pointer-events: none;
}

/* ---------- Marquee / trust bar ---------- */
.trust-bar {
  background: var(--navy-900);
  padding: 22px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.trust-track {
  display: flex;
  gap: 64px;
  width: max-content;
  animation: marquee 26s linear infinite;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.trust-item {
  color: rgba(255,255,255,0.72);
  font-family: "Playfair Display", serif;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 10px;
}
.trust-item::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold-500);
}

/* ---------- Cards / grid ---------- */
.grid { display: grid; gap: 28px; }
.grid > * { min-width: 0; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s var(--ease);
  transform-style: preserve-3d;
  will-change: transform;
}
.card:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(201,162,39,0.4);
}
.card .icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-950));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  color: var(--gold-300);
}
.card .icon svg { width: 26px; height: 26px; }
.card h3 { font-size: 1.12rem; margin-bottom: 10px; }
.card p { color: var(--gray-600); font-size: 0.95rem; margin-bottom: 0; }

/* Lawyer cards */
.lawyer-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  cursor: pointer;
  transition: box-shadow 0.4s var(--ease), transform 0.4s var(--ease);
}
.lawyer-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.lawyer-photo {
  aspect-ratio: 4/3.2;
  background: linear-gradient(150deg, var(--navy-900), var(--navy-700));
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.lawyer-photo .mono {
  font-family: "Playfair Display", serif;
  font-size: 3.2rem;
  color: rgba(255,255,255,0.92);
  letter-spacing: 0.02em;
}
.lawyer-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 75% 20%, rgba(201,162,39,0.35), transparent 55%);
}
.lawyer-body { padding: 22px 24px 26px; }
.lawyer-body h3 { font-size: 1.08rem; margin-bottom: 2px; }
.lawyer-body .role { color: var(--gold-600); font-size: 0.85rem; font-weight: 600; margin-bottom: 12px; }
.lawyer-body .excerpt { color: var(--gray-600); font-size: 0.9rem; }
.lawyer-body .expand-toggle {
  margin-top: 14px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue-600);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.lawyer-full {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease);
  font-size: 0.92rem;
  color: var(--ink-700);
}
.lawyer-card.open .lawyer-full { max-height: 900px; }
.lawyer-card.open .expand-toggle svg { transform: rotate(180deg); }
.expand-toggle svg { transition: transform 0.35s var(--ease); width: 14px; height: 14px; }

/* Counters section */
.counters {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.counter .num {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  color: var(--navy-900);
}
.counter .num .plus { color: var(--gold-600); }
.counter .label { color: var(--gray-600); font-size: 0.9rem; }

/* Timeline */
.timeline {
  position: relative;
  margin-left: 10px;
  padding-left: 40px;
  border-left: 2px solid var(--gray-200);
}
.timeline-item {
  position: relative;
  padding-bottom: 44px;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: "";
  position: absolute;
  left: -49px; top: 2px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--cream-50);
  border: 3px solid var(--gold-500);
}
.timeline-item .year {
  font-family: "Playfair Display", serif;
  color: var(--gold-600);
  font-size: 1.3rem;
  margin-bottom: 4px;
}
.timeline-item p { color: var(--ink-700); margin-bottom: 0; }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-scale { opacity: 0; transform: scale(0.94); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal-scale.in-view { opacity: 1; transform: scale(1); }
.stagger > * { transition-delay: calc(var(--i, 0) * 90ms); }

/* Accordion (specializace / publikace) */
.accordion-item {
  border-bottom: 1px solid var(--gray-200);
}
.accordion-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 4px;
  cursor: pointer;
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  color: var(--navy-900);
}
.accordion-head .plus {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1px solid var(--gray-200);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform 0.4s var(--ease), background 0.4s ease;
  color: var(--navy-900);
}
.accordion-item.open .accordion-head .plus { transform: rotate(135deg); background: var(--gold-500); color: var(--white); border-color: var(--gold-500); }
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease);
}
.accordion-item.open .accordion-body { max-height: 3000px; }
.accordion-body-inner { padding: 0 4px 26px; color: var(--gray-600); }

/* Publications list */
.pub-year-group { margin-bottom: 6px; }
.pub-list { list-style: none; padding: 0; margin: 0; }
.pub-list li {
  padding: 12px 0;
  border-bottom: 1px dashed var(--gray-200);
  font-size: 0.93rem;
  color: var(--ink-700);
}
.pub-list li .who { color: var(--gold-600); font-weight: 600; }
.pub-list li .src { color: var(--gray-600); font-size: 0.85rem; }
.pub-search {
  width: 100%;
  padding: 16px 20px;
  border-radius: 999px;
  border: 1px solid var(--gray-200);
  font-size: 1rem;
  margin-bottom: 40px;
  background: var(--white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%235b6472' stroke-width='2'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'/%3E%3C/svg%3E") no-repeat 20px center;
  padding-left: 52px;
}
.pub-search:focus { outline: none; border-color: var(--gold-500); box-shadow: 0 0 0 4px rgba(201,162,39,0.14); }
.pub-empty { display: none; color: var(--gray-600); padding: 20px 0; }

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 50px;
}
.contact-grid > * { min-width: 0; }
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 26px;
}
.contact-item .icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--cream-100);
  color: var(--gold-600);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-item .icon svg { width: 20px; height: 20px; }
.contact-item h4 { margin-bottom: 3px; font-size: 1rem; font-family: Inter, sans-serif; font-weight: 700; }
.contact-item p { margin: 0; color: var(--gray-600); }
.map-frame {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}
.map-frame iframe { width: 100%; height: 100%; min-height: 320px; border: 0; display: block; }

.form-field { margin-bottom: 18px; }
.form-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-700);
  margin-bottom: 6px;
}
.form-field input, .form-field textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: 10px;
  border: 1px solid var(--gray-200);
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--white);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.form-field input:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--gold-500);
  box-shadow: 0 0 0 4px rgba(201,162,39,0.14);
}

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--navy-950), var(--navy-800));
  border-radius: 24px;
  padding: 60px 50px;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  position: relative;
  min-width: 0;
  overflow: hidden;
}
.cta-band > * {
  min-width: 0;
  max-width: 100%;
}
.cta-band::before {
  content: "";
  position: absolute;
  width: 340px; height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,162,39,0.28), transparent 65%);
  top: -140px; right: -100px;
}
.cta-band h2 { color: var(--white); margin-bottom: 8px; }
.cta-band p { color: rgba(255,255,255,0.75); margin: 0; max-width: 46ch; }

/* Footer */
.site-footer {
  background: var(--navy-950);
  color: rgba(255,255,255,0.7);
  padding: 70px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-grid > * { min-width: 0; }
.footer-brand { display: flex; gap: 12px; align-items: center; margin-bottom: 16px; }
.footer-brand .name { color: var(--white); font-family: "Playfair Display", serif; font-size: 1.1rem; }
.site-footer h5 {
  color: var(--white);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-family: Inter, sans-serif;
  font-weight: 600;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 10px; font-size: 0.92rem; }
.site-footer a:hover { color: var(--gold-300); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 26px;
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-legal { color: rgba(255,255,255,0.45); }
.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
}
.footer-socials svg { width: 16px; height: 16px; }

/* Back to top */
.back-to-top {
  position: fixed;
  right: 26px; bottom: 26px;
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--gold-500);
  color: var(--navy-950);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 24px rgba(0,0,0,0.25);
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: all 0.4s var(--ease);
  z-index: 400;
  cursor: pointer;
  border: none;
}
.back-to-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top svg { width: 20px; height: 20px; }

/* Page header (subpages) */
.page-hero {
  padding: 168px 0 70px;
  background: linear-gradient(160deg, var(--navy-950), var(--navy-800));
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.page-hero .breadcrumb {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 14px;
}
.page-hero .breadcrumb a { color: rgba(255,255,255,0.85); }
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.75); max-width: 60ch; margin: 0; }

/* Specializace mini-3D icon spin on hover */
.spec-card .icon { transition: transform 0.6s var(--ease); transform-style: preserve-3d; }
.spec-card:hover .icon { transform: rotateY(180deg); }

/* Utility */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0 !important; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.two-col > * { min-width: 0; }
.badge-row { display: flex; flex-wrap: wrap; gap: 14px; }
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px;
  border-radius: 999px;
  background: var(--cream-100);
  color: var(--navy-800);
  font-size: 0.82rem;
  font-weight: 600;
  border: 1px solid var(--gray-200);
}
.badge svg { width: 14px; height: 14px; color: var(--gold-600); }

/* ---------------- Responsive ---------------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .emblem-wrap { order: -1; }
  .emblem { width: min(240px, 60%); margin: 0 auto; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-2 { grid-template-columns: 1fr; }
  .counters { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 34px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
}
@media (max-width: 600px) {
  .section { padding: 64px 0; }
  .grid-4, .grid-3 { grid-template-columns: 1fr; }
  .counters { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .hero { min-height: auto; padding-top: 130px; }
  .cta-band { padding: 40px 26px; flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; }
  .hero-stats { grid-template-columns: repeat(3, minmax(0, auto)); gap: 14px; }
  .stat .num { font-size: 1.5rem; }
  .stat .label { font-size: 0.7rem; }
}
