/* Helms Enterprises, Inc. - Full Site Redesign Styles
 * Palette per approved plan: deep medical blue, healthcare teal, safety red accent.
 * Typography: IBM Plex Sans for headings, Roboto for body.
 * Responsive, WCAG-conscious layout for all pages.
 */
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;500;600;700&family=Roboto:wght@400;500;700&display=swap');

:root {
  --primary: #0A3D62;
  --primary-strong: #062A45;
  --primary-soft: #1A5276;
  --secondary: #148F77;
  --accent: #E74C3C;
  --accent-dark: #c64235;
  --neutral-25: #fbfcfd;
  --neutral-50: #f8f9fb;
  --neutral-100: #F4F6F7;
  --neutral-200: #E5E8E8;
  --neutral-400: #B0B7BF;
  --neutral-700: #566573;
  --neutral-900: #1B2631;
  --border: #d7dde3;
  --shadow-sm: 0 2px 6px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 6px 18px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.14);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --content-width: 1200px;
}

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

body {
  margin: 0;
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--neutral-900);
  background-color: var(--neutral-50);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'IBM Plex Sans', 'Segoe UI', sans-serif;
  color: var(--primary-strong);
  margin: 0 0 0.5em;
  line-height: 1.25;
}

p {
  margin: 0 0 1.2em;
  color: var(--neutral-900);
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover,
a:focus-visible {
  color: var(--secondary);
}

img {
  max-width: 100%;
  display: block;
  height: auto;
  border-radius: var(--radius-md);
}

.container {
  width: 100%;
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 4.25rem 0;
}

.section-tight {
  padding: 3rem 0;
}

.section-lg {
  padding: 5rem 0;
}

.section-muted {
  background: var(--neutral-100);
}

.section-strong {
  background: var(--primary-strong);
  color: #fff;
}

.section-header {
  max-width: 780px;
  margin: 0 auto 2.3rem;
  text-align: center;
}

.section-header h2 {
  font-size: clamp(1.9rem, 3vw, 2.3rem);
  margin-bottom: 0.5rem;
}

.section-header p {
  color: var(--neutral-700);
  margin: 0;
}

.text-center { text-align: center; }
.text-right { text-align: right; }
.text-light { color: #f6f8fb; }
.text-muted { color: var(--neutral-700); }
.eyebrow {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--secondary);
  color: #fff;
  font-weight: 600;
  border-radius: var(--radius-sm);
  letter-spacing: 0.05em;
  font-size: 0.85rem;
  text-transform: uppercase;
}

.lead { font-size: 1.05rem; color: var(--neutral-900); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.grid-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.grid-wide { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.grid-slim { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }

.stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.split {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 992px) {
  .split-2 { grid-template-columns: 1.1fr 0.9fr; }
  .split-50 { grid-template-columns: repeat(2, 1fr); }
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--neutral-100);
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  color: var(--neutral-900);
  font-weight: 600;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.4rem;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  text-decoration: none;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.btn-secondary {
  background: var(--secondary);
  color: #fff;
  border-color: var(--secondary);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: #0f6f5d;
  border-color: #0f6f5d;
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: #fff;
  color: var(--primary-strong);
}

.btn-outline {
  background: transparent;
  color: var(--primary-strong);
  border-color: var(--primary-strong);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  background: var(--primary-strong);
  color: #fff;
}

.btn-small {
  padding: 0.65rem 1rem;
  font-size: 0.95rem;
}

/* Top bar */
.top-bar {
  background: var(--primary-strong);
  color: #e8f2ff;
  font-size: 0.95rem;
}

.top-bar .top-bar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  padding: 0.65rem 0;
}

.top-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.top-meta span { display: inline-flex; align-items: center; gap: 0.35rem; }

.top-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.top-link {
  color: #f6f8fb;
  font-weight: 600;
}

.top-link:hover,
.top-link:focus-visible {
  color: var(--accent);
}

/* Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.site-header.is-sticky {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--primary-strong);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
}

.brand-mark {
  display: inline-flex;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  align-items: center;
  justify-content: center;
  background: var(--secondary);
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-name {
  font-size: 1.05rem;
  font-weight: 800;
}

.brand-tagline {
  color: var(--neutral-700);
  font-weight: 600;
  font-size: 0.95rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  background: var(--neutral-100);
  border: 1px solid var(--border);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--primary-strong);
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
}

.nav-menu > ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0;
  margin: 0;
}

.nav-menu a.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.65rem 0.75rem;
  color: var(--neutral-900);
  font-weight: 700;
}

.nav-menu a.nav-link:hover,
.nav-menu a.nav-link:focus-visible {
  color: var(--primary);
}

.has-children {
  position: relative;
}

.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: -0.3rem;
  padding: 0.65rem 0.35rem;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--neutral-700);
}

.dropdown {
  position: absolute;
  left: 0;
  top: calc(100% + 6px);
  min-width: 240px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  padding: 0.5rem 0;
  list-style: none;
  display: none;
  flex-direction: column;
  align-items: stretch;
  z-index: 10;
}

.dropdown li a {
  display: block;
  padding: 0.55rem 1rem;
  color: var(--neutral-900);
  font-weight: 600;
}

.dropdown li a:hover,
.dropdown li a:focus-visible {
  background: var(--neutral-100);
  color: var(--primary);
}

.has-children.open > .dropdown,
.has-children:focus-within > .dropdown {
  display: block;
}

@media (min-width: 1024px) {
  .has-children:hover > .dropdown {
    display: block;
  }
}

.nav-cta {
  margin-left: 0.5rem;
}

.nav-cta .btn {
  padding: 0.7rem 1.2rem;
}

@media (max-width: 1023px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-menu {
    position: absolute;
    inset: 100% 0 auto 0;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1.25rem 2rem;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    transform-origin: top;
    display: none;
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-menu > ul {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }

  .has-children .dropdown {
    position: static;
    width: 100%;
    display: none;
    box-shadow: none;
    border: 1px solid var(--border);
    margin-top: 0.35rem;
  }

  .dropdown-toggle {
    display: inline-flex;
  }
}

/* Hero areas */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(6, 42, 69, 0.82);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  display: grid;
  gap: 1.2rem;
}

.hero h1 {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  color: #fff;
}

.hero p {
  color: #e9f1f9;
  font-size: 1.1rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.75rem;
}

.metric {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 0.9rem 1rem;
}

.metric .number {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
}

.metric .label {
  color: #d6dfeb;
  font-size: 0.95rem;
}

.page-hero {
  position: relative;
  padding: 4.5rem 0;
  color: #fff;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(6, 42, 69, 0.78);
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  color: #fff;
  margin-bottom: 0.4rem;
}

.page-hero p {
  color: #e9f1f9;
  max-width: 760px;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: #cdd8e6;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: #fff;
  font-weight: 700;
}

/* Cards & common blocks */
.card {
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.card h3 {
  margin-bottom: 0.25rem;
}

.card .tag {
  display: inline-block;
  padding: 0.25rem 0.6rem;
  background: var(--neutral-100);
  border-radius: var(--radius-sm);
  color: var(--neutral-700);
  font-weight: 600;
  font-size: 0.9rem;
}

.card-compact {
  padding: 1.1rem 1.25rem;
}

.card-plain {
  border: none;
  box-shadow: none;
  padding: 0;
}

.badge-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
}

.badge {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1rem;
  font-weight: 700;
  color: var(--primary-strong);
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.category-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-rows: auto 1fr;
}

.category-card .image {
  aspect-ratio: 4 / 3;
  background: var(--neutral-100);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.category-card .body {
  padding: 1.1rem 1.25rem 1.35rem;
  display: grid;
  gap: 0.45rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}

.feature-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.3rem 1.4rem;
  box-shadow: var(--shadow-sm);
}

.feature-card h4 {
  margin: 0 0 0.35rem;
}

.list-check {
  list-style: none;
  padding: 0;
  margin: 0.2rem 0 0;
  display: grid;
  gap: 0.35rem;
}

.list-check li {
  position: relative;
  padding-left: 1.45rem;
  color: var(--neutral-900);
}

.list-check li::before {
  content: '✔';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--secondary);
  font-weight: 800;
}

.list-dot {
  list-style: disc;
  padding-left: 1.2rem;
  color: var(--neutral-900);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.stat-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1rem 1.2rem;
  box-shadow: var(--shadow-sm);
}

.stat-card .stat-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-strong);
}

.stat-card .stat-label {
  color: var(--neutral-700);
  font-weight: 600;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
  display: grid;
  gap: 0.5rem;
}

.service-list li {
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fff;
  font-weight: 600;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.value-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.5rem;
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 0.5rem;
}

.value-card .label {
  color: var(--secondary);
  font-weight: 800;
  letter-spacing: 0.02em;
}

.cert-band {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0.75rem;
}

.cert-pill {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  font-weight: 700;
  text-align: center;
  color: var(--primary-strong);
  box-shadow: var(--shadow-sm);
}

.cta-strip {
  background: var(--secondary);
  color: #fff;
  padding: 3rem 0;
  text-align: center;
}

.cta-strip h2 {
  color: #fff;
  margin-bottom: 0.75rem;
}

.cta-banner {
  background: var(--primary-strong);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: grid;
  gap: 1rem;
  align-items: center;
  box-shadow: var(--shadow-md);
}

.cta-banner h3 {
  color: #fff;
  margin: 0;
}

.trust-bar {
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.4rem 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0.75rem;
  align-items: stretch;
}

.trust-item {
  background: var(--neutral-100);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  color: var(--primary-strong);
}

.trust-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: #fff;
  border: 1px solid var(--border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  font-weight: 800;
}

.image-frame {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 0.75rem;
  box-shadow: var(--shadow-sm);
}

.quote-block {
  border-left: 4px solid var(--secondary);
  padding-left: 1rem;
  color: var(--neutral-700);
  font-style: italic;
}

/* Tables */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

th, td {
  padding: 0.9rem 1rem;
  border-bottom: 1px solid var(--border);
  text-align: left;
}

th {
  background: var(--neutral-100);
  color: var(--primary-strong);
  font-weight: 700;
}

tr:last-child td {
  border-bottom: none;
}

.table-note {
  color: var(--neutral-700);
  font-size: 0.95rem;
}

/* Forms */
form {
  display: grid;
  gap: 1rem;
}

label {
  font-weight: 700;
  color: var(--neutral-900);
  margin-bottom: 0.35rem;
  display: block;
}

input,
textarea,
select {
  width: 100%;
  padding: 0.8rem 0.85rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  font-family: inherit;
  font-size: 1rem;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

textarea { min-height: 140px; resize: vertical; }

input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(10, 61, 98, 0.15);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.note {
  color: var(--neutral-700);
  font-size: 0.95rem;
}

.contact-panel {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.contact-meta {
  display: grid;
  gap: 0.5rem;
}

.contact-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 600;
}

.contact-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 992px) {
  .contact-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

.form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-md);
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: 1.5rem;
  display: grid;
  gap: 1.5rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--neutral-200);
}

.timeline-item {
  position: relative;
  padding-left: 1.25rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--secondary);
  left: -1px;
  top: 6px;
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px var(--neutral-200);
}

.timeline-year {
  font-weight: 800;
  color: var(--primary-strong);
  margin-bottom: 0.35rem;
}

/* Team & cards */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.team-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 0.5rem;
  text-align: center;
}

.team-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 0.5rem;
}

.team-role {
  color: var(--neutral-700);
  font-weight: 700;
}

/* News & resources */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.news-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 0.5rem;
}

.news-meta {
  color: var(--neutral-700);
  font-weight: 600;
}

/* Footer */
.site-footer {
  background: var(--primary-strong);
  color: #e8f2ff;
  padding: 3.5rem 0 2.5rem;
  margin-top: 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.site-footer h3 {
  color: #fff;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
  display: grid;
  gap: 0.4rem;
}

.footer-links a {
  color: #e8f2ff;
  font-weight: 600;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--accent);
}

.site-footer p,
.site-footer .contact-meta span {
  color: rgba(255, 255, 255, 0.92);
}

.site-footer a {
  color: #ffffff;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--accent);
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  font-size: 0.95rem;
}

.footer-bottom-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 767px) {
  .hero {
    min-height: 60vh;
  }

  .section {
    padding: 3rem 0;
  }

  .top-bar .top-bar-content {
    justify-content: center;
  }
}
