/* ================================================================
   BIRCHMEIER GRUPPE — Redesign Demo
   Fonts: Red Hat Display (Headings) + Inter (Body)
   Palette: #1B5E35 Primary / #E8D700 Accent / #FAFAF8 Background
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Red+Hat+Display:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --primary: #1B5E35;
  --primary-light: #2A7A48;
  --primary-dark: #0F3D22;
  --primary-50: #E8F5EE;
  --primary-100: #C8E6D3;
  --accent: #E8D700;
  --accent-soft: #FFF9C4;
  --accent-dark: #C4B600;
  --ink: #111111;
  --ink-soft: #2A2A2A;
  --muted: #5A5A5A;
  --muted-2: #7A7A7A;
  --bg: #FAFAF8;
  --bg-warm: #F0EFE9;
  --surface: #FFFFFF;
  --border: #E0DED6;
  --border-strong: #C8C5BA;
  --white: #FFFFFF;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.06);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.08);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.10);
  --radius: 6px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --max: 1240px;
  --f-head: 'Red Hat Display', system-ui, -apple-system, sans-serif;
  --f-body: 'Inter', system-ui, -apple-system, sans-serif;
  --t: 0.25s ease;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; padding: 0; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--f-head);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }
p { margin-bottom: 1rem; }

/* Layout */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section--dark { background: var(--ink); color: var(--white); }
.section--dark h2, .section--dark h3 { color: var(--white); }
.section--green { background: var(--primary); color: var(--white); }
.section--green h2, .section--green h3 { color: var(--white); }
.section--warm { background: var(--bg-warm); }
.section--surface { background: var(--surface); }

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--t);
}
.header.scrolled { box-shadow: var(--shadow-md); }
.header__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--f-head);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--primary);
  letter-spacing: -0.02em;
}
.header__logo svg { flex-shrink: 0; }
.header__logo-sub {
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: block;
  line-height: 1;
  margin-top: 2px;
}
.nav { display: flex; align-items: center; gap: 4px; }
.nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: background var(--t), color var(--t);
  position: relative;
  color: var(--ink-soft);
}
.nav__link:hover, .nav__link.active {
  background: var(--primary-50);
  color: var(--primary);
}
.nav__cta {
  background: var(--primary);
  color: var(--white);
  padding: 10px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  margin-left: 8px;
  transition: background var(--t);
}
.nav__cta:hover { background: var(--primary-light); }

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform var(--t), opacity var(--t);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.nav-mobile {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  padding: 24px;
  overflow-y: auto;
  z-index: 999;
}
.nav-mobile.open { display: block; }
.nav-mobile__link {
  display: block;
  padding: 14px 0;
  font-size: 1.05rem;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
  color: var(--ink);
}
.nav-mobile__link:hover { color: var(--primary); }
.nav-mobile__cta {
  display: inline-block;
  margin-top: 24px;
  background: var(--primary);
  color: var(--white);
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding-top: 72px;
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 80% 60%, rgba(232,215,0,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(255,255,255,0.05) 0%, transparent 70%);
}
.hero__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 80px 24px;
  position: relative;
  z-index: 2;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 24px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hero__title {
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 900;
  color: var(--white);
  max-width: 700px;
  line-height: 1.05;
  margin-bottom: 24px;
}
.hero__title span { color: var(--accent); }
.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 40px;
}
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: var(--radius);
  transition: all var(--t);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn--primary {
  background: var(--accent);
  color: var(--ink);
  border-color: var(--accent);
}
.btn--primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn--outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
}
.btn--green {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn--green:hover {
  background: var(--primary-light);
  border-color: var(--primary-light);
}
.btn--dark {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.btn--dark:hover { background: var(--ink-soft); }
.btn--ghost {
  background: transparent;
  color: var(--primary);
  border-color: var(--border);
}
.btn--ghost:hover {
  border-color: var(--primary);
  background: var(--primary-50);
}
.btn--sm { padding: 10px 20px; font-size: 0.85rem; }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.stats__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat {
  padding: 36px 24px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.stat:last-child { border-right: none; }
.stat__number {
  font-family: var(--f-head);
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 4px;
}
.stat__label {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 500;
}

/* ============================================================
   SECTION HEADER
   ============================================================ */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}
.section-header__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary-50);
  color: var(--primary);
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-header__badge svg { width: 14px; height: 14px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}
.section--dark .section-header__badge {
  background: rgba(255,255,255,0.1);
  color: var(--accent);
}
.section--dark .section-header p { color: rgba(255,255,255,0.65); }
.section--green .section-header__badge {
  background: rgba(255,255,255,0.15);
  color: var(--accent);
}
.section--green .section-header p { color: rgba(255,255,255,0.7); }

/* Left-aligned section header */
.section-header--left {
  text-align: left;
  max-width: none;
}

/* ============================================================
   FEATURE GRID / CARDS
   ============================================================ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card-grid--2 { grid-template-columns: repeat(2, 1fr); }
.card-grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: border-color var(--t), box-shadow var(--t), transform var(--t);
}
.card:hover {
  border-color: var(--primary-100);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: var(--primary-50);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--primary);
}
.card__icon svg { width: 24px; height: 24px; }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 0.92rem; line-height: 1.6; }
.card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.88rem;
  margin-top: 16px;
  transition: gap var(--t);
}
.card__link:hover { gap: 10px; }
.card__link svg { width: 16px; height: 16px; }

/* Service card with image */
.card--service {
  padding: 0;
  overflow: hidden;
}
.card--service__img {
  height: 200px;
  overflow: hidden;
}
.card--service__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.card--service:hover .card--service__img img { transform: scale(1.04); }
.card--service__body { padding: 28px; }
.card--service__body h3 { margin-bottom: 8px; }
.card--service__body p { color: var(--muted); font-size: 0.9rem; }

/* ============================================================
   CTA SPLIT
   ============================================================ */
.cta-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.cta-split--reversed { direction: rtl; }
.cta-split--reversed > * { direction: ltr; }
.cta-split__content h2 { margin-bottom: 16px; }
.cta-split__content p { color: var(--muted); font-size: 1.02rem; line-height: 1.7; margin-bottom: 24px; }
.cta-split__image {
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.cta-split__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--primary);
  border-radius: var(--radius-xl);
  padding: 64px 48px;
  text-align: center;
  color: var(--white);
}
.cta-banner h2 { color: var(--white); margin-bottom: 16px; }
.cta-banner p {
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  margin: 0 auto 32px;
  font-size: 1.05rem;
}
.cta-banner .btn--primary { font-size: 1rem; padding: 16px 36px; }

/* ============================================================
   PAGE HEADER (Subpages)
   ============================================================ */
.page-header {
  padding-top: 72px;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: var(--white);
  padding-bottom: 60px;
}
.page-header__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 60px 24px 0;
}
.page-header__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
}
.page-header__breadcrumb a { color: rgba(255,255,255,0.55); transition: color var(--t); }
.page-header__breadcrumb a:hover { color: var(--white); }
.page-header__breadcrumb svg { width: 14px; height: 14px; }
.page-header h1 { color: var(--white); margin-bottom: 12px; }
.page-header p {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  max-width: 600px;
  line-height: 1.7;
}

/* ============================================================
   REFERENCE CARDS
   ============================================================ */
.ref-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--t), box-shadow var(--t);
}
.ref-card:hover {
  border-color: var(--primary-100);
  box-shadow: var(--shadow-md);
}
.ref-card__img {
  height: 240px;
  overflow: hidden;
}
.ref-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.ref-card:hover .ref-card__img img { transform: scale(1.04); }
.ref-card__body { padding: 28px; }
.ref-card__tag {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--primary);
  margin-bottom: 8px;
}
.ref-card__body h3 { margin-bottom: 8px; font-size: 1.2rem; }
.ref-card__body p { color: var(--muted); font-size: 0.88rem; }
.ref-card__meta {
  display: flex;
  gap: 16px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--muted-2);
}
.ref-card__meta span { display: flex; align-items: center; gap: 4px; }
.ref-card__meta svg { width: 14px; height: 14px; }

/* ============================================================
   CONTACT SPLIT
   ============================================================ */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}
.contact-info__item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}
.contact-info__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: var(--primary-50);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}
.contact-info__icon svg { width: 20px; height: 20px; }
.contact-info__text h4 { margin-bottom: 4px; font-size: 0.95rem; }
.contact-info__text p { color: var(--muted); font-size: 0.9rem; margin: 0; }
.contact-info__text a { color: var(--primary); font-weight: 500; }
.contact-info__text a:hover { text-decoration: underline; }

.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.contact-form h3 { margin-bottom: 24px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--ink-soft);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--f-body);
  font-size: 0.95rem;
  background: var(--bg);
  transition: border-color var(--t);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ============================================================
   DIVISIONS / GROUP STRUCTURE
   ============================================================ */
.division-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.division-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: border-color var(--t), box-shadow var(--t);
}
.division-card:hover {
  border-color: var(--primary-100);
  box-shadow: var(--shadow-md);
}
.division-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  background: var(--primary-50);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}
.division-card__icon svg { width: 24px; height: 24px; }
.division-card h3 { font-size: 1.1rem; margin-bottom: 6px; }
.division-card p { color: var(--muted); font-size: 0.88rem; margin: 0; }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item__q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-family: var(--f-head);
  font-weight: 600;
  font-size: 1.05rem;
  text-align: left;
  color: var(--ink);
  transition: color var(--t);
}
.faq-item__q:hover { color: var(--primary); }
.faq-item__q svg {
  width: 20px;
  height: 20px;
  transition: transform var(--t);
  flex-shrink: 0;
  color: var(--muted);
}
.faq-item.open .faq-item__q svg { transform: rotate(45deg); color: var(--primary); }
.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.open .faq-item__a { max-height: 400px; }
.faq-item__a p {
  padding-bottom: 20px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ============================================================
   TIMELINE
   ============================================================ */
.timeline {
  position: relative;
  padding-left: 40px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}
.timeline__item {
  position: relative;
  margin-bottom: 40px;
}
.timeline__item::before {
  content: '';
  position: absolute;
  left: -33px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid var(--bg);
}
.timeline__year {
  font-family: var(--f-head);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 4px;
}
.timeline__text {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 0;
}
.footer__grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer__brand {
  font-family: var(--f-head);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 12px;
}
.footer__desc {
  font-size: 0.88rem;
  line-height: 1.65;
  margin-bottom: 20px;
}
.footer__social { display: flex; gap: 12px; }
.footer__social a {
  width: 36px;
  height: 36px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: background var(--t), color var(--t);
}
.footer__social a:hover {
  background: var(--primary);
  color: var(--white);
}
.footer__social a svg { width: 18px; height: 18px; }
.footer h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer__links a {
  display: block;
  font-size: 0.88rem;
  padding: 4px 0;
  transition: color var(--t);
}
.footer__links a:hover { color: var(--white); }
.footer__bottom {
  max-width: var(--max);
  margin: 48px auto 0;
  padding: 20px 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}
.footer__legal { display: flex; gap: 20px; }
.footer__legal a:hover { color: var(--white); }

/* ============================================================
   DETAIL PAGE CONTENT
   ============================================================ */
.content-block { padding: 60px 0; }
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.content-grid--reversed { direction: rtl; }
.content-grid--reversed > * { direction: ltr; }
.content-text h2 { margin-bottom: 16px; }
.content-text p { color: var(--muted); line-height: 1.7; }
.content-text ul {
  margin-top: 16px;
}
.content-text ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.92rem;
}
.content-text ul li svg {
  width: 18px;
  height: 18px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}
.content-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.content-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* Checklist */
.checklist { list-style: none; }
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
  font-size: 0.95rem;
}
.checklist li svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 1px;
}

/* ============================================================
   LOCATIONS GRID
   ============================================================ */
.location-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.location-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.location-card h4 { margin-bottom: 12px; }
.location-card p {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 4px;
}
.location-card a { color: var(--primary); font-weight: 500; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .card-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .division-grid { grid-template-columns: 1fr; }
  .content-grid { gap: 32px; }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .nav-toggle { display: flex; }
  .hero { min-height: 70vh; }
  .hero__title { font-size: clamp(2rem, 7vw, 3rem); }
  .section { padding: 56px 0; }
  .stats__inner { grid-template-columns: repeat(2, 1fr); }
  .stat { border-right: none; padding: 24px 16px; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--border); }
  .card-grid { grid-template-columns: 1fr; }
  .card-grid--2 { grid-template-columns: 1fr; }
  .card-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .cta-split { grid-template-columns: 1fr; gap: 32px; }
  .cta-split--reversed { direction: ltr; }
  .contact-split { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
  .cta-banner { padding: 48px 24px; }
  .location-grid { grid-template-columns: 1fr; }
  .content-grid { grid-template-columns: 1fr; }
  .content-grid--reversed { direction: ltr; }
  .ref-card__img { height: 200px; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .stats__inner { grid-template-columns: 1fr; }
  .stat { border-bottom: 1px solid var(--border); border-right: none; }
  .stat:last-child { border-bottom: none; }
  .card-grid--4 { grid-template-columns: 1fr; }
  h1 { font-size: 2rem; }
  .wrap { padding: 0 16px; }
}

/* Print */
@media print {
  .header, .footer, .nav-toggle, .nav-mobile { display: none; }
  body { background: white; color: black; }
  .hero { min-height: auto; padding: 40px 0; }
}
