/* ============================================================
   FUNDACJA WSPARCIE I ROZWÓJ — style.css
   Palette: navy #002753 · blue #008aff / #0064bc · lime #a8d603
   Text #1a2332 / #475569 · bg #fafbfd / #eff4fb / #e6f0fa
   ============================================================ */

:root {
  --navy: #002753;
  --navy-deep: #001a3a;
  --blue: #008aff;
  --blue-dark: #0064bc;
  --lime: #a8d603;
  --lime-dark: #8fb802;
  --green-text: #3d5100;
  --bg: #fafbfd;
  --bg-blue: #eff4fb;
  --surface: #e6f0fa;
  --ink: #1a2332;
  --ink-soft: #475569;
  --line: #d8e2ee;
  --radius-s: 6px;
  --radius-m: 10px;
  --radius-l: 16px;
  --shadow-s: 0 2px 8px rgba(0, 39, 83, 0.08);
  --shadow-m: 0 6px 20px rgba(0, 39, 83, 0.12);
  --header-h: 72px;
  --container: 1120px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  padding-top: var(--header-h);
  font-family: 'Lato', 'Segoe UI', Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-weight: 900;
  line-height: 1.2;
  color: var(--navy);
  margin: 0 0 0.6em;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(1.9rem, 4.5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3.2vw, 2.1rem); }
h3 { font-size: 1.2rem; }

p { margin: 0 0 1em; }

a { color: var(--blue-dark); text-decoration: none; }
a:hover { color: var(--blue); text-decoration: underline; }

ul, ol { padding-left: 1.3em; }
li { margin-bottom: 0.4em; }

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 2px;
  border-radius: 3px;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--navy);
  color: #fff;
  padding: 10px 16px;
  z-index: 200;
  border-radius: 0 0 var(--radius-s) 0;
}
.skip-link:focus { left: 0; color: #fff; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 12px 26px;
  border-radius: var(--radius-m);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.3;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
  text-align: center;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-lime { background: var(--lime); color: var(--navy); }
.btn-lime:hover { background: var(--lime-dark); color: var(--navy); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-deep); color: #fff; }
.btn-outline { border-color: #fff; color: #fff; background: transparent; }
.btn-outline:hover { background: rgba(255, 255, 255, 0.14); color: #fff; }
.btn-blue { background: var(--blue-dark); color: #fff; }
.btn-blue:hover { background: var(--navy); color: #fff; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: var(--navy);
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 26, 58, 0.35);
}
.header-inner {
  max-width: var(--container);
  height: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  min-width: 0;
  flex-shrink: 1;
}
.brand:hover { text-decoration: none; }
.brand img { width: 40px; height: 40px; flex-shrink: 0; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; min-width: 0; }
.brand-name {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.85);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.brand-name-strong { font-weight: 900; font-size: 0.95rem; color: #fff; }

.nav-toggle {
  display: none;
  position: relative;
  z-index: 130;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  margin-right: -8px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
}
.nav-toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav-toggle-bar + .nav-toggle-bar { margin-top: 5px; }
.nav-open .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.site-nav { display: flex; align-items: center; gap: 18px; }
.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-link {
  display: block;
  padding: 8px 11px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
  font-size: 0.92rem;
  border-radius: var(--radius-s);
  white-space: nowrap;
}
.nav-link:hover { color: #fff; background: rgba(255, 255, 255, 0.1); text-decoration: none; }
.nav-link.active { color: var(--lime); }
.nav-link-cta { background: var(--lime); color: var(--navy); margin-left: 6px; }
.nav-link-cta:hover { background: var(--lime-dark); color: var(--navy); }
.nav-link-cta.active { color: var(--navy); }

.lang-switch {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
}
.lang-btn {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-family: inherit;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 2px 5px;
  cursor: pointer;
  border-radius: 999px;
}
.lang-btn:hover { color: #fff; }
.lang-btn[aria-pressed="true"] { background: var(--lime); color: var(--navy); }
.lang-sep { color: rgba(255, 255, 255, 0.4); font-size: 0.85rem; }

/* ---------- Hero (home) ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--navy-deep);
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(0, 26, 58, 0.92) 0%, rgba(0, 39, 83, 0.78) 55%, rgba(0, 39, 83, 0.45) 100%);
  z-index: 1;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(70px, 12vw, 150px) 20px;
  color: #fff;
}
.hero-kicker {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 18px;
}
.hero h1 {
  color: #fff;
  max-width: 16ch;
  margin-bottom: 20px;
  text-shadow: 0 2px 14px rgba(0, 20, 45, 0.5);
}
.hero-lead {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  max-width: 46ch;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 30px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Interior page hero ---------- */
.page-hero {
  background: linear-gradient(115deg, var(--navy-deep), var(--navy) 70%, #063a6e);
  color: #fff;
  padding: clamp(48px, 8vw, 84px) 0;
}
.page-hero h1 {
  color: #fff;
  max-width: 24ch;
  margin-bottom: 14px;
}
.page-hero .page-hero-lead {
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  max-width: 62ch;
  margin: 0;
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
  font-size: 0.88rem;
}
.breadcrumb li { margin: 0; }
.breadcrumb li + li::before { content: "/"; margin-right: 6px; color: rgba(255, 255, 255, 0.5); }
.breadcrumb a { color: rgba(255, 255, 255, 0.75); }
.breadcrumb a:hover { color: var(--lime); }
.breadcrumb [aria-current] { color: var(--lime); }

/* ---------- Sections ---------- */
.section { padding: clamp(48px, 8vw, 88px) 0; }
.section-blue { background: var(--bg-blue); }
.section-surface { background: var(--surface); }
.section-head { max-width: 720px; margin: 0 auto 40px; text-align: center; }
.section-head p { color: var(--ink-soft); font-size: 1.05rem; }
.section-head-left { max-width: 720px; margin: 0 0 36px; }
.kicker {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--blue-dark);
  margin-bottom: 10px;
}

/* ---------- Facts band ---------- */
.facts-band {
  background: var(--navy);
  color: #fff;
  padding: clamp(40px, 6vw, 64px) 0;
}
.facts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 28px;
}
.fact { text-align: center; padding: 0 8px; }
.fact-number {
  display: block;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--lime);
  line-height: 1.1;
}
.fact-label { color: rgba(255, 255, 255, 0.85); font-size: 0.95rem; }

/* ---------- Cards ---------- */
.card-grid { display: grid; gap: 24px; }
.card-grid.cols-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.card-grid.cols-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.card-grid.cols-4 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

.info-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: 28px;
  box-shadow: var(--shadow-s);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.info-card:hover { box-shadow: var(--shadow-m); transform: translateY(-2px); }
.info-card h3 { margin-bottom: 10px; }
.info-card p { color: var(--ink-soft); margin-bottom: 0; }
.info-card .card-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-m);
  background: var(--surface);
  color: var(--blue-dark);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}
.card-link { font-weight: 700; }

/* ---------- Split (text + image) ---------- */
.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
}
.split.reverse { grid-template-columns: 0.9fr 1.1fr; }
.split-media img { border-radius: var(--radius-l); box-shadow: var(--shadow-m); }
.split-media.portrait img { border-radius: var(--radius-l); box-shadow: var(--shadow-m); }

/* ---------- Team ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}
.team-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow-s);
}
.team-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 14px;
  border: 4px solid var(--surface);
}
.team-card h3 { font-size: 1.05rem; margin-bottom: 2px; }
.team-role {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 10px;
}
.team-card p { color: var(--ink-soft); font-size: 0.95rem; margin: 0; }

/* ---------- Timeline ---------- */
.timeline { list-style: none; margin: 0; padding: 0; position: relative; }
.timeline::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: var(--line);
}
.timeline li { position: relative; padding: 0 0 28px 40px; }
.timeline li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--lime);
  border: 3px solid var(--navy);
}
.timeline h3 { margin-bottom: 6px; }
.timeline time {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 6px;
}
.timeline p { color: var(--ink-soft); margin-bottom: 0; }

/* ---------- Testimonials ---------- */
.quote-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.quote-card {
  background: #fff;
  border-left: 5px solid var(--lime);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-s);
  padding: 26px;
}
.quote-card blockquote {
  margin: 0 0 14px;
  font-size: 1rem;
  color: var(--ink);
}
.quote-card figcaption { color: var(--ink-soft); font-size: 0.9rem; font-weight: 700; }

/* ---------- Contact strip ---------- */
.contact-strip {
  background: linear-gradient(115deg, var(--navy), #063a6e);
  color: #fff;
  padding: clamp(48px, 7vw, 72px) 0;
}
.contact-strip h2 { color: #fff; }
.contact-strip p { color: rgba(255, 255, 255, 0.88); max-width: 60ch; }
.contact-strip .strip-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 22px; }
.contact-strip a.strip-link { color: var(--lime); font-weight: 700; }

/* ---------- Contact info cards ---------- */
.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-s);
  padding: 24px;
  margin-bottom: 20px;
}
.contact-card:last-child { margin-bottom: 0; }
.contact-card h3 { font-size: 1.05rem; }
.contact-card p, .contact-card address { color: var(--ink-soft); font-style: normal; margin-bottom: 0.4em; }
.contact-card a { font-weight: 700; }

/* ---------- Forms ---------- */
.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-s);
  padding: clamp(24px, 4vw, 36px);
}
.form-field { margin-bottom: 18px; }
.form-field label {
  display: block;
  font-weight: 700;
  font-size: 0.92rem;
  margin-bottom: 6px;
  color: var(--navy);
}
.form-field .required { color: #c0392b; }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-s);
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: var(--bg);
  transition: border-color 0.2s ease;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 138, 255, 0.15);
}
.form-note { font-size: 0.85rem; color: var(--ink-soft); }
.form-status {
  display: none;
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: var(--radius-s);
  font-size: 0.95rem;
}
.form-status.show { display: block; }
.form-status.ok { background: #eef8d3; color: var(--green-text); border: 1px solid var(--lime); }
.form-status.err { background: #fdeaea; color: #8f1f1f; border: 1px solid #e5b4b4; }

/* ---------- Map ---------- */
.map-wrap { border-radius: var(--radius-l); overflow: hidden; box-shadow: var(--shadow-m); line-height: 0; }
.map-wrap iframe { width: 100%; height: 380px; border: 0; display: block; }

/* ---------- Blog listing grid (cards are direct children) ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 26px;
}
.post-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  overflow: hidden;
  box-shadow: var(--shadow-s);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  height: auto;
}
.post-card:hover { box-shadow: var(--shadow-m); transform: translateY(-3px); }
.post-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
}
.post-card-link:hover { color: inherit; text-decoration: none; }
.post-card-media { display: block; aspect-ratio: 16 / 9; overflow: hidden; }
.post-card-media img { width: 100%; height: 100%; object-fit: cover; }
.post-card-body { display: flex; flex-direction: column; padding: 20px 22px 22px; flex: 1; }
.post-card-tags {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-dark);
  margin-bottom: 8px;
}
.post-card-title {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 10px;
}
a:hover .post-card-title { color: var(--blue-dark); }
.post-card-excerpt {
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin-bottom: 16px;
}
.post-card-meta {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--ink-soft);
}
.post-card-meta time { font-weight: 700; }

/* ---------- Post page ---------- */
.post-page { padding: clamp(40px, 7vw, 72px) 0; }
.post-container { max-width: 820px; margin: 0 auto; padding: 0 20px; }
.post-breadcrumb { margin-bottom: 20px; }
.post-article { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-l); box-shadow: var(--shadow-s); padding: clamp(24px, 5vw, 48px); }
.post-tags {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-dark);
  margin-bottom: 12px;
}
.post-title { font-size: clamp(1.6rem, 3.6vw, 2.3rem); }
.post-lead { font-size: 1.1rem; color: var(--ink-soft); }
.post-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin-bottom: 24px;
}
.post-meta time { font-weight: 700; }
.post-cover { border-radius: var(--radius-m); margin-bottom: 28px; }
.post-article h2 { font-size: 1.4rem; margin-top: 1.6em; }
.post-article ul li, .post-article ol li { color: var(--ink); }
.blog-toc {
  background: var(--bg-blue);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 18px 22px;
  margin: 0 0 28px;
  font-size: 0.95rem;
}
.blog-toc strong { display: block; color: var(--navy); margin-bottom: 8px; }
.blog-toc ul { margin: 0; padding-left: 1.2em; }
.post-footer-cta {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 2px solid var(--bg-blue);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.post-footer-cta p { margin: 0; color: var(--ink-soft); }
.post-related { margin-top: 48px; }
.post-related h2 { font-size: 1.3rem; }
.post-related .blog-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }

/* ---------- Accordion (details) ---------- */
details.topic {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  margin-bottom: 12px;
  overflow: hidden;
}
details.topic summary {
  cursor: pointer;
  padding: 16px 20px;
  font-weight: 700;
  color: var(--navy);
  list-style-position: inside;
}
details.topic summary:hover { background: var(--bg-blue); }
details.topic .topic-body { padding: 4px 20px 18px; color: var(--ink-soft); }
details.topic .topic-body p:last-child { margin-bottom: 0; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.8);
  margin-top: auto;
  font-size: 0.95rem;
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(40px, 6vw, 64px) 20px 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.footer-logo { width: 56px; height: 56px; margin-bottom: 14px; }
.footer-name { font-weight: 900; color: #fff; line-height: 1.3; margin-bottom: 12px; }
.footer-ids { line-height: 1.7; margin-bottom: 12px; }
.footer-address { font-style: normal; line-height: 1.7; margin-bottom: 12px; }
.footer-contact { line-height: 1.7; margin: 0; }
.footer-contact a, .footer-links a { color: rgba(255, 255, 255, 0.8); }
.footer-contact a:hover, .footer-links a:hover { color: var(--lime); }
.footer-heading {
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 14px;
}
.footer-heading-follow { margin-top: 22px; }
.footer-links { list-style: none; margin: 0; padding: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-about p { margin: 0; }
.footer-bottom {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 6px;
  padding-top: 22px;
  font-size: 0.85rem;
}
.footer-bottom p { margin: 0; }
.vo-link { opacity: 0.5; font-weight: 300; color: inherit; }
.vo-link:hover { color: inherit; }

/* ---------- Reveal animation ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
  .reveal.visible { opacity: 1; transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    z-index: 120;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--navy);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 14px 26px rgba(0, 26, 58, 0.35);
    padding: 10px 20px 22px;
  }
  .nav-open .site-nav { display: flex; }
  .nav-list { flex-direction: column; align-items: stretch; gap: 2px; }
  .nav-link { padding: 13px 12px; font-size: 1.05rem; }
  .nav-link-cta { margin: 8px 0 0; text-align: center; }
  .lang-switch { margin-top: 16px; align-self: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .split, .split.reverse { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: -1; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { align-items: center; text-align: center; }
  .map-wrap iframe { height: 300px; }
  .hero-actions .btn, .strip-actions .btn { width: 100%; }
  .brand-name { font-size: 0.72rem; }
  .brand-name-strong { font-size: 0.85rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
