@charset "utf-8";

/* ===== VARIABLES ===== */
:root {
  --navy-dark: #0c1a35;
  --navy: #1a2f5e;
  --navy-mid: #2a4070;
  --teal: #0ea5e9;
  --teal-light: #38bdf8;
  --teal-dark: #0284c7;
  --gold: #c9a84c;
  --gold-light: #e0c06a;
  --gold-dark: #a07830;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-700: #334155;
  --text: #1e293b;
  --shadow-sm: 0 2px 8px rgba(15,31,61,0.08);
  --shadow: 0 4px 24px rgba(15,31,61,0.10);
  --shadow-lg: 0 12px 48px rgba(15,31,61,0.16);
  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 20px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; outline: none; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', Arial, sans-serif; line-height: 1.65; color: var(--text); background: var(--white); -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
table { border-collapse: collapse; width: 100%; }

/* ===== SCROLLBAR ===== */
* { scrollbar-width: thin; scrollbar-color: var(--teal) var(--gray-100); }
*::-webkit-scrollbar { width: 6px; height: 6px; }
*::-webkit-scrollbar-track { background: var(--gray-100); }
*::-webkit-scrollbar-thumb { background: var(--teal); border-radius: 3px; }

/* ===== TYPOGRAPHY ===== */
h1 { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 800; line-height: 1.15; margin-bottom: 1.25rem; color: var(--navy-dark); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); font-weight: 700; line-height: 1.2; margin-bottom: 1rem; color: var(--navy-dark); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.875rem); font-weight: 700; line-height: 1.25; margin-bottom: 0.875rem; color: var(--navy-dark); }
h4 { font-size: 1.375rem; font-weight: 700; line-height: 1.3; margin-bottom: 0.75rem; color: var(--navy-dark); }
h5 { font-size: 1.125rem; font-weight: 600; line-height: 1.4; margin-bottom: 0.5rem; }
h6 { font-size: 0.9375rem; font-weight: 600; line-height: 1.4; margin-bottom: 0.5rem; }
p { margin-bottom: 1rem; color: var(--gray-700); }
p:last-child { margin-bottom: 0; }
strong { font-weight: 700; }

/* ===== LAYOUT ===== */
.container { width: 92%; max-width: 1240px; margin: 0 auto; }
.container-wide { width: 100%; max-width: 1600px; margin: 0 auto; }
.section { padding: 88px 0; }
.section-sm { padding: 56px 0; }

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(14,165,233,0.12);
  box-shadow: 0 2px 24px rgba(15,31,61,0.07);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 24px;
}
.logo img { height: 42px; width: auto; }
.topinfo { font-size: 13px; color: var(--gray-400); font-weight: 500; white-space: nowrap; }
.topinfo a { color: var(--gray-400); transition: color 0.2s; }
.topinfo a:hover, .topinfo a.act { color: var(--teal); }
.nav { display: flex; align-items: center; list-style: none; gap: 2px; }
.nav li a {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--navy);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  position: relative;
  transition: color 0.2s, background 0.2s;
}
.nav li a:hover, .nav li.active a { color: var(--teal); background: rgba(14,165,233,0.07); }
.nav-cta > a {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark)) !important;
  color: white !important;
  padding: 10px 18px !important;
  border-radius: var(--radius-sm) !important;
  box-shadow: 0 3px 12px rgba(14,165,233,0.35);
  transition: transform 0.2s, box-shadow 0.2s !important;
}
.nav-cta > a:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(14,165,233,0.5) !important;
  color: white !important;
  background: linear-gradient(135deg, var(--teal-light), var(--teal)) !important;
}

/* ===== HERO (full-screen, used on inner pages if needed) ===== */
.hero {
  position: relative;
  height: 82vh;
  min-height: 520px;
  max-height: 900px;
  overflow: hidden;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, rgba(12,26,53,0.88) 0%, rgba(14,165,233,0.2) 60%, rgba(12,26,53,0.55) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
}

/* ===== SPLIT HERO (index page) ===== */
.hero-split {
  display: grid;
  grid-template-columns: 52% 48%;
  min-height: 86vh;
  max-height: 920px;
  overflow: hidden;
}
.hero-split-text {
  background: var(--navy-dark);
  display: flex;
  align-items: center;
  padding: 80px 56px 80px 5%;
  position: relative;
  z-index: 2;
}
.hero-split-text::after {
  content: '';
  position: absolute;
  right: -40px;
  top: 0;
  bottom: 0;
  width: 80px;
  background: linear-gradient(to right, var(--navy-dark), transparent);
  z-index: 3;
  pointer-events: none;
}
.hero-split-img {
  position: relative;
  overflow: hidden;
}
.hero-split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero-split-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(12,26,53,0.7) 0%, transparent 35%);
  z-index: 1;
  pointer-events: none;
}

.hero-inner { max-width: 600px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.45);
  color: var(--gold-light);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.hero-split-text h1 { color: white; }
.hero-sub { color: rgba(255,255,255,0.78); font-size: 1.05rem; margin-bottom: 2rem; max-width: 480px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* hero decorative accent line */
.hero-split-text .hero-inner::before {
  content: '';
  display: block;
  width: 3px;
  height: 48px;
  background: linear-gradient(to bottom, var(--teal), var(--gold));
  border-radius: 2px;
  margin-bottom: 28px;
}

/* ===== QUICK NAV ===== */
.quick-nav { background: var(--navy); }
.quick-nav-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.quick-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 28px 16px;
  text-align: center;
  color: rgba(255,255,255,0.72);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.2;
  transition: background 0.25s, color 0.25s;
  border-right: 1px solid rgba(255,255,255,0.07);
  cursor: pointer;
}
.quick-nav-item:last-child { border-right: none; }
.quick-nav-item:hover { background: rgba(14,165,233,0.18); color: white; }
.quick-nav-item.active { background: rgba(14,165,233,0.15); color: var(--teal-light); }
.quick-nav-item svg { width: 28px; height: 28px; opacity: 0.65; transition: opacity 0.25s; flex-shrink: 0; }
.quick-nav-item:hover svg, .quick-nav-item.active svg { opacity: 1; }
.qn-label { font-size: 11.5px; font-weight: 700; letter-spacing: 0.08em; }
.qn-sub { font-size: 10px; font-weight: 400; text-transform: none; letter-spacing: 0; opacity: 0.6; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: white;
  box-shadow: 0 4px 16px rgba(14,165,233,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(14,165,233,0.5); color: white; }
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: white;
  box-shadow: 0 4px 16px rgba(201,168,76,0.3);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(201,168,76,0.45); color: white; }
.btn-outline-white { border-color: rgba(255,255,255,0.5); color: white; background: transparent; }
.btn-outline-white:hover { border-color: white; background: rgba(255,255,255,0.1); color: white; }
.btn-outline-navy { border-color: var(--navy); color: var(--navy); background: transparent; }
.btn-outline-navy:hover { background: var(--navy); color: white; }

/* ===== SECTION LABELS & DIVIDERS ===== */
.section-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--teal);
  margin-bottom: 10px;
}
.section-label-gold { color: var(--gold); }
.divider {
  width: 48px; height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--teal-light));
  border-radius: 2px;
  margin: 12px 0 36px;
}
.divider-gold { background: linear-gradient(90deg, var(--gold), var(--gold-light)); }
.text-center { text-align: center; }
.text-center .divider { margin-left: auto; margin-right: auto; }

/* ===== CARDS (light bg) ===== */
.card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.card-img { overflow: hidden; aspect-ratio: 4/3; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.card:hover .card-img img { transform: scale(1.06); }
.card-body { padding: 24px; }
.card-tag { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--teal); margin-bottom: 6px; }
.card-title { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 6px; line-height: 1.3; }
.card-sub { font-size: 13px; color: var(--gray-500); }

/* ===== GLASS CARDS (dark bg) ===== */
.glass-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: background 0.3s, transform 0.3s, border-color 0.3s;
}
.glass-card:hover { background: rgba(255,255,255,0.11); transform: translateY(-4px); border-color: rgba(14,165,233,0.4); }
.glass-card-img { overflow: hidden; aspect-ratio: 4/3; }
.glass-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; filter: brightness(0.82); }
.glass-card:hover .glass-card-img img { transform: scale(1.05); filter: brightness(0.95); }
.glass-card-body { padding: 20px 24px; }
.glass-card-title { font-size: 15px; font-weight: 700; color: white; margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.05em; }
.glass-card-sub { font-size: 12px; color: var(--teal-light); font-weight: 500; }

/* ===== DOCTOR CARDS ===== */
.doctor-card {
  text-align: center;
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px 28px 32px;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}
.doctor-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.doctor-photo {
  width: 160px; height: 160px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px;
  border: 4px solid var(--gray-100);
  transition: border-color 0.3s;
  display: block;
}
.doctor-card:hover .doctor-photo { border-color: var(--teal); }
.doctor-name { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.doctor-spec { font-size: 13px; color: var(--teal); font-weight: 600; margin-bottom: 10px; line-height: 1.5; }
.doctor-info { font-size: 13px; color: var(--gray-500); line-height: 1.6; }

/* ===== DARK SECTION COLORS ===== */
.section-dark { background: var(--navy-dark); }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4, .section-dark h5 { color: white; }
.section-dark p { color: rgba(255,255,255,0.7); }
.section-navy { background: var(--navy); }
.section-navy h1, .section-navy h2, .section-navy h3, .section-navy h4, .section-navy h5 { color: white; }
.section-navy p { color: rgba(255,255,255,0.7); }
.section-gray { background: var(--gray-50); }
.section-dark .section-label, .section-navy .section-label { color: var(--teal-light); }
.section-dark .section-label-gold, .section-navy .section-label-gold { color: var(--gold-light); }
.section-dark .divider, .section-navy .divider { background: linear-gradient(90deg, var(--teal-light), var(--teal)); }
.section-dark .divider-gold, .section-navy .divider-gold { background: linear-gradient(90deg, var(--gold-light), var(--gold)); }

/* ===== GRID LAYOUTS ===== */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.grid-2-center { align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* ===== INFO BLOCK ===== */
.info-block { padding: 28px 32px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius); }
.info-block h6 { color: var(--teal-light); font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 10px; }
.info-block p { color: rgba(255,255,255,0.72); font-size: 14px; }

/* ===== HOURS TABLE ===== */
.hours-table { width: 100%; }
.hours-table tr { border-bottom: 1px solid rgba(255,255,255,0.07); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table td { padding: 8px 0; font-size: 14px; color: rgba(255,255,255,0.68); }
.hours-table td:last-child { text-align: right; font-weight: 600; color: var(--teal-light); }

/* ===== METHODS/BULLET LIST ===== */
.bullet-list { padding: 0; }
.bullet-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.55;
}
.bullet-list li:last-child { border-bottom: none; }
.bullet-list li::before {
  content: '';
  width: 6px; height: 6px;
  min-width: 6px;
  background: var(--teal);
  border-radius: 50%;
  margin-top: 6px;
}
.bullet-list-light li { border-bottom-color: var(--gray-200); color: var(--gray-700); }
.bullet-list-light li::before { background: var(--teal); }

/* ===== ACCORDION ===== */
.accord { list-style: none; padding: 0; margin: 0 0 32px; }
.accord-item { position: relative; border-bottom: 1px solid rgba(14,165,233,0.15); }
.accord-item input[type="checkbox"] {
  position: absolute;
  opacity: 0; width: 100%; height: 52px;
  cursor: pointer; z-index: 2; top: 0; left: 0;
}
.accord-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 40px 18px 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  user-select: none;
  transition: color 0.2s;
}
.accord-label::after {
  content: '+';
  position: absolute; right: 4px;
  font-size: 22px;
  font-weight: 300;
  color: var(--teal);
  transition: transform 0.3s;
  line-height: 1;
}
.accord-item input:checked ~ .accord-label { color: var(--teal-dark); }
.accord-item input:checked ~ .accord-label::after { transform: rotate(45deg); }
.accord-body { overflow: hidden; max-height: 0; transition: max-height 0.45s ease; }
.accord-item input:checked ~ .accord-body { max-height: 4000px; }
.accord-body-inner { padding-bottom: 20px; }
.accord-body p { font-size: 14px; line-height: 1.75; color: var(--gray-600, #475569); }

/* accordion on dark backgrounds */
.accord-dark .accord-item { border-bottom-color: rgba(255,255,255,0.1); }
.accord-dark .accord-label { color: rgba(255,255,255,0.85); }
.accord-dark .accord-item input:checked ~ .accord-label { color: var(--teal-light); }
.accord-dark .accord-body p { color: rgba(255,255,255,0.68); }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  position: relative;
  height: 44vh;
  min-height: 300px;
  max-height: 480px;
  overflow: hidden;
}
.page-hero-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 40%;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(12,26,53,0.82) 0%, rgba(12,26,53,0.40) 45%, rgba(12,26,53,0.10) 100%);
}
.page-hero-content {
  position: relative; z-index: 2;
  height: 100%; display: flex; align-items: flex-end;
  padding-bottom: 52px;
}
.page-hero-content h1 { color: white; margin-bottom: 8px; }
.page-hero-content p { color: rgba(255,255,255,0.75); font-size: 1rem; margin-bottom: 0; }

/* ===== CTA SECTION ===== */
.cta-section { text-align: center; }
.cta-photo {
  width: 140px; height: 140px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 28px;
  border: 4px solid var(--gray-200);
  display: block;
}

/* ===== PRESS ARTICLE ===== */
.press-article {
  background: rgba(255,255,255,0.05);
  border-left: 3px solid var(--gold);
  padding: 32px 36px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-top: 8px;
}
.press-source {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-light);
  margin-bottom: 16px;
  display: block;
}
.press-article p { color: rgba(255,255,255,0.75); font-size: 15px; line-height: 1.8; }

/* ===== DEPT SECTIONS ===== */
.dept-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.dept-img img { width: 100%; height: 380px; object-fit: cover; }
.section-dark .dept-img {
  box-shadow: 0 0 0 1px rgba(255,255,255,0.08), 0 16px 48px rgba(0,0,0,0.4);
}
.section-dark .dept-img img { filter: brightness(1.12) contrast(0.96) saturate(1.08); }

/* ===== CONTACT TABLE ===== */
.contact-hours { width: 100%; }
.contact-hours tr { border-bottom: 1px solid rgba(255,255,255,0.07); }
.contact-hours tr:last-child { border-bottom: none; }
.contact-hours td { padding: 8px 16px 8px 0; font-size: 14px; color: rgba(255,255,255,0.7); vertical-align: top; }
.contact-hours td:last-child { font-weight: 600; color: var(--teal-light); padding-right: 0; }

/* ===== CONTENT PAGES (impressum, datenschutz) ===== */
.content-page { max-width: 860px; }
.content-page h4 { color: var(--navy); border-bottom: 2px solid var(--gray-100); padding-bottom: 12px; margin-top: 48px; margin-bottom: 16px; font-size: 1.2rem; }
.content-page h4:first-child { margin-top: 0; }
.content-page p { font-size: 15px; line-height: 1.8; color: var(--gray-700); }
.content-page a { color: var(--teal); }
.content-page a:hover { text-decoration: underline; }

/* ===== FOOTER ===== */
.footer {
  background: var(--navy-dark);
  padding: 64px 0 0;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; padding-bottom: 56px; }
.footer-logo { margin-bottom: 16px; }
.footer-logo-text { display: flex; flex-direction: column; gap: 3px; }
.footer-logo-text .logo-name { font-size: 24px; font-weight: 800; letter-spacing: 0.02em; color: white; line-height: 1; }
.footer-logo-text .logo-name span { color: var(--teal-light); }
.footer-logo-text .logo-sub { font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.35); }
.footer-desc { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.45); max-width: 300px; }
.footer h6 { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--teal-light); margin-bottom: 16px; }
.footer p { font-size: 14px; color: rgba(255,255,255,0.52); line-height: 1.7; margin-bottom: 0; }
.footer a { color: rgba(255,255,255,0.52); transition: color 0.2s; }
.footer a:hover { color: white; }
.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.07); }
.subfooter {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.32);
  gap: 16px;
  flex-wrap: wrap;
}
.subfooter a { color: rgba(255,255,255,0.32); transition: color 0.2s; }
.subfooter a:hover { color: rgba(255,255,255,0.75); }

/* ===== TO TOP ===== */
.totop {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(14,165,233,0.4);
  z-index: 200;
  opacity: 0.9;
  transition: opacity 0.2s, transform 0.2s;
}
.totop:hover { opacity: 1; transform: translateY(-2px); }
.totop svg { width: 18px; height: 18px; }

/* ===== REVEAL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }

/* ===== DISORDER TITLE ===== */
.disorder-title {
  color: var(--navy);
  font-size: 1.3rem;
  margin-top: 48px;
  margin-bottom: 0;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gray-100);
}
.disorder-title:first-child { margin-top: 0; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > *:first-child { grid-column: span 2; }
}

@media (max-width: 1000px) {
  .topinfo { display: none; }
  .header-inner { height: auto; padding: 12px 0; flex-wrap: wrap; justify-content: center; gap: 8px; }
  .logo { order: 1; }
  .nav { order: 2; flex-wrap: wrap; justify-content: center; gap: 0; }
  .header { position: relative; }
}

@media (max-width: 900px) {
  .quick-nav-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .hero-split {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr auto;
    min-height: auto;
  }
  .hero-split-text {
    order: 2;
    padding: 52px 5%;
  }
  .hero-split-text::after { display: none; }
  .hero-split-img {
    order: 1;
    height: 44vh;
    min-height: 260px;
  }
  .hero-split-img::before {
    background: linear-gradient(to bottom, transparent 40%, rgba(12,26,53,0.6) 100%);
  }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .hero { height: 75vh; }
  .page-hero { height: 38vh; }
  .subfooter { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > *:first-child { grid-column: span 1; }
  .dept-img img { height: 260px; }
}

@media (max-width: 600px) {
  .hero h1 { font-size: 1.875rem; }
  .nav li a { font-size: 12px; padding: 6px 10px; }
  .nav-cta { display: none; }
  .quick-nav-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .quick-nav-item { padding: 20px 12px; }
  .section { padding: 48px 0; }
  .hero { height: 70vh; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .press-article { padding: 20px 20px; }
}
