
:root {
  --accent: #b9152b;
  --accent-dark: #8d1021;
  --ink: #1e2a32;
  --muted: #66737d;
  --line: #e5e9ed;
  --soft: #f5f7f8;
  --green: #2f8066;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.65;
}
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-dark); }
img { max-width: 100%; height: auto; display: block; }
.container { width: min(1160px, calc(100% - 32px)); margin: 0 auto; }

.topbar {
  background: #26343d;
  color: #edf2f4;
  font-size: 13px;
  padding: 7px 0;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 3px 16px rgba(30, 42, 50, .06);
}
.nav-row {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand img { width: 210px; max-height: 58px; object-fit: contain; }
.main-nav { display: flex; align-items: center; gap: 18px; font-size: 14px; font-weight: 700; }
.main-nav a { color: var(--ink); }
.main-nav a:hover { color: var(--accent); }
.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  width: 42px;
  height: 42px;
  font-size: 22px;
}

.hero {
  min-height: 610px;
  background: var(--hero-image) center / cover no-repeat;
  color: #fff;
}
.hero-overlay {
  min-height: 610px;
  background: linear-gradient(90deg, rgba(24, 31, 36, .82), rgba(24, 31, 36, .28));
  display: flex;
  align-items: center;
}
.hero-content { padding: 72px 0; }
.eyebrow {
  margin: 0 0 12px;
  color: #f4c6ce;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: 64px;
  line-height: 1.05;
}
.hero p:not(.eyebrow) {
  max-width: 640px;
  margin: 22px 0 0;
  font-size: 20px;
}
.hero-actions { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.button,
.contact-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  font-weight: 700;
}
.button.ghost {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .78);
}
.button:hover,
.contact-form button:hover { color: #fff; background: var(--accent-dark); border-color: var(--accent-dark); }
.hero-thumbs { display: flex; gap: 12px; margin-top: 42px; }
.hero-thumbs img {
  width: 130px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 3px solid rgba(255, 255, 255, .72);
}

.page-hero {
  background: linear-gradient(120deg, #26343d, #8d1021);
  color: #fff;
  padding: 72px 0;
}
.page-hero h1 { margin: 0; font-size: 42px; line-height: 1.15; max-width: 900px; }
.section { padding: 58px 0; }
.section:nth-of-type(even) { background: var(--soft); }
.section-dark { background: #26343d !important; color: #fff; }
.section h2 {
  margin: 0 0 18px;
  font-size: 34px;
  line-height: 1.2;
}
.lead {
  max-width: 880px;
  margin: 0 auto 28px;
  color: var(--muted);
  font-size: 18px;
  text-align: center;
}
.section-dark .lead { color: #d8e2e7; }
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 26px;
  align-items: start;
}
.grid.single { grid-template-columns: 1fr; }
.column > * + * { margin-top: 24px; }
.content-block { margin: 0 0 28px; }
.nested-block > h2 { text-align: center; }

.rich-text h2,
.rich-text h3,
.info-card h3,
.person-card h3 {
  margin: 0 0 12px;
  line-height: 1.25;
}
.rich-text p:first-child { margin-top: 0; }
.rich-text ul { padding-left: 20px; }
.media-figure { margin: 0; }
.media-figure img,
.article-card img,
.person-card img,
.article-main-image {
  width: 100%;
  object-fit: cover;
}
.media-figure img { border-radius: 4px; }
.media-figure figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}
.info-card,
.person-card,
.article-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 22px;
}
.section-dark .info-card,
.section-dark .person-card { color: var(--ink); }
.feature-icon {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin-bottom: 14px;
}
.person-card img {
  aspect-ratio: 4 / 5;
  margin-bottom: 16px;
}
.muted,
.meta { color: var(--muted); }
.meta { margin: 0 0 8px; font-size: 14px; }
.article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.article-card { padding: 0; overflow: hidden; }
.article-card img { aspect-ratio: 16 / 10; }
.article-card-body { padding: 20px; }
.article-card h3 { margin: 0 0 10px; line-height: 1.25; }
.article-layout { max-width: 900px; }
.article-full { background: #fff; }
.article-main-image {
  max-height: 520px;
  margin: 22px 0;
  border-radius: 6px;
}
.accordion details {
  border: 1px solid var(--line);
  background: #fff;
  padding: 14px 18px;
  margin-bottom: 10px;
}
.accordion summary { cursor: pointer; font-weight: 700; }
.callout {
  background: #26343d;
  color: #fff;
  padding: 28px;
  border-radius: 6px;
}
.stat {
  background: var(--soft);
  border-left: 4px solid var(--green);
  padding: 18px;
}
.stat strong { display: block; font-size: 32px; }
.contact-form {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.contact-form textarea,
.contact-form .check,
.contact-form button { grid-column: 1 / -1; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  padding: 12px 14px;
  font: inherit;
}
.check { display: flex; gap: 10px; align-items: flex-start; color: var(--muted); font-size: 14px; }
.contact-list { list-style: none; padding: 0; margin: 0; }
.contact-list li + li { margin-top: 8px; }
.map-frame {
  width: 100%;
  min-height: 420px;
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
}
.map-frame iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}
.sitemap { columns: 2; }
.sitemap li { break-inside: avoid; margin-bottom: 8px; }

.site-footer {
  background: #1f2b33;
  color: #e9eef1;
  padding: 42px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
}
.footer-grid img { width: 138px; }
.footer-grid h2 { margin: 0 0 8px; font-size: 20px; }
.footer-grid p { margin: 0; color: #cdd7dc; }

@media (max-width: 900px) {
  .menu-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .main-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 16px;
    flex-direction: column;
    align-items: flex-start;
  }
  .main-nav.open { display: flex; }
  .hero,
  .hero-overlay { min-height: 520px; }
  .hero h1 { font-size: 46px; }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-form { grid-template-columns: 1fr; }
  .sitemap { columns: 1; }
}

@media (max-width: 560px) {
  .brand img { width: 172px; }
  .hero h1 { font-size: 38px; }
  .hero p:not(.eyebrow) { font-size: 18px; }
  .page-hero h1 { font-size: 34px; }
  .section { padding: 42px 0; }
  .section h2 { font-size: 28px; }
  .hero-thumbs { display: none; }
}
