:root{
  --bg:#f3f3f3;
  --panel:#ffffff;
  --muted:#f7f7f7;
  --text:#151515;
  --sub:#4c4c4c;
  --brand:#c8102e;
  --brand-2:#7a0b1d;
  --border:rgba(0,0,0,.08);
  --shadow: 0 10px 22px rgba(0,0,0,.08);
  --radius: 14px;
  --max: 1120px;
  --focus: 0 0 0 3px rgba(200,16,46,.25);
  --bar:#2b2b2b;
  --bar-text:#ffffff;
  --bar-sub:rgba(255,255,255,.78);
  --bar-border:rgba(255,255,255,.12);
}

*{box-sizing:border-box}
html{color-scheme:light}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif;
  line-height:1.55;
  color:var(--text);
  background: var(--bg);
}

a{color:inherit}
a:hover{opacity:.92}
a:focus-visible{outline:none; box-shadow: var(--focus); border-radius: 10px}

.container{width:min(var(--max), calc(100% - 40px)); margin-inline:auto}

.skip-link{
  position:absolute; left:-999px; top: 10px;
  background: var(--panel);
  padding:10px 12px; border:1px solid var(--border); border-radius: 10px;
}
.skip-link:focus{left: 12px; z-index: 9999}

.site-header{
  position:sticky; top:0; z-index:50;
  backdrop-filter: none;
  background: var(--bar);
  border-bottom: 1px solid var(--bar-border);
}
.header-inner{display:flex; align-items:center; justify-content:space-between; gap:18px; padding:14px 0}

.brand{display:flex; align-items:center; gap:12px; text-decoration:none; min-width: 220px}
.brand-mark{filter:none}
.brand-text{display:flex; flex-direction:column}
.brand-title{font-weight:800; letter-spacing:.2px; color: var(--bar-text)}
.brand-subtitle{font-size:12.5px; color:var(--bar-sub)}

.nav-toggle{
  display:none;
  border: 1px solid var(--bar-border);
  background: rgba(255,255,255,.08);
  color: var(--bar-text);
  padding: 10px 12px;
  border-radius: 12px;
  cursor:pointer;
}
.nav-toggle:focus-visible{outline:none; box-shadow: var(--focus)}

.site-nav{display:flex; align-items:center; gap:14px}
.nav-link{
  text-decoration:none;
  padding: 10px 10px;
  border-radius: 999px;
  color: var(--bar-text);
  border: 1px solid transparent;
  font-weight: 600;
}
.nav-link:hover{color: var(--bar-text); background: rgba(255,255,255,.08); border-color: var(--bar-border)}
.nav-link--subtle{color: var(--bar-sub); font-weight: 500}

.hero{padding: 0 0 18px}
.hero-inner{display:block}
.hero-copy{
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 18px 0;
  box-shadow: none;
  margin-top: 14px;
  text-align: center;
}
.hero-copy .lead{margin-left:auto; margin-right:auto; max-width: 70ch}
.hero-copy .note{margin-left:auto; margin-right:auto; max-width: 70ch}
.hero-copy .hero-actions{justify-content:center}
.kicker{
  display:inline-block;
  margin:0 0 10px;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--brand);
}
h1{margin: 0 0 10px; font-size: clamp(28px, 3.6vw, 44px); line-height:1.08}
h2{margin: 0 0 12px; font-size: 26px; line-height:1.15}
h3{margin: 0 0 8px; font-size: 18px}
.lead{margin: 0 0 16px; color: var(--sub); font-size: 16.5px}
.note{margin: 16px 0 0; color: rgba(185,197,221,.92); font-size: 13.5px}

.hero-actions{display:flex; gap: 12px; flex-wrap:wrap; margin-top: 14px}
.button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 4px;
  text-decoration:none;
  font-weight: 700;
  background: var(--brand);
  color: #fff;
  border: 0;
}
.button:hover{transform: translateY(-1px)}
.button:focus-visible{outline:none; box-shadow: var(--focus)}
.button--ghost{
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
}
.button--small{padding: 10px 12px; border-radius: 12px}

.hero-slider{
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #dcdcdc;
  overflow:hidden;
  box-shadow: var(--shadow);
  position: relative;
  /* Avoid mobile flex/aspect-ratio bugs causing huge images */
  --hero-slide-height: clamp(220px, 32vw, 420px);
  height: var(--hero-slide-height);
}
.hero-slider--full{
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  border-left: 0;
  border-right: 0;
  border-radius: 0;
  box-shadow: none;
}
.hero-slider-track{
  display:flex;
  align-items: stretch;
  height: 100%;
  transition: transform 320ms ease;
}
.hero-slide{
  flex: 0 0 100%;
  flex-shrink: 0;
  height: var(--hero-slide-height);
  aspect-ratio: 16 / 6;
  background: linear-gradient(135deg, rgba(0,0,0,.12), rgba(0,0,0,.02));
  position: relative;
  min-height: 0;
}
.hero-slide img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display:block;
  max-height: 100%;
}
.hero-slide-caption{
  position:absolute;
  left: 14px;
  bottom: 14px;
  background: rgba(0,0,0,.55);
  color:#fff;
  padding: 6px 10px;
  border-radius: 4px;
  font-weight: 700;
}
.hero-slider-controls{
  position:absolute;
  inset: 0;
  pointer-events:none;
}
.hero-slider-btn{
  pointer-events:auto;
  position:absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.45);
  background: rgba(0,0,0,.45);
  color:#fff;
  cursor:pointer;
  display:grid;
  place-items:center;
}
.hero-slider-btn:hover{background: rgba(0,0,0,.58)}
.hero-slider-btn:focus-visible{outline:none; box-shadow: 0 0 0 3px rgba(255,255,255,.28)}
.hero-slider-btn--prev{left: 10px}
.hero-slider-btn--next{right: 10px}
.hero-slider-dots{
  position:absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  display:flex;
  justify-content:center;
  gap: 8px;
  pointer-events:auto;
}
.hero-slider-dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.55);
  background: rgba(0,0,0,.35);
  cursor:pointer;
}
.hero-slider-dot[aria-current="true"]{
  background: rgba(255,255,255,.92);
  border-color: rgba(255,255,255,.92);
}
.hero-slider-placeholder{
  padding: 18px;
  color: rgba(0,0,0,.72);
}

.section{padding: 24px 0}
.section--muted{background: var(--muted); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border)}

.cards{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 340px));
  justify-content: center;
  gap: 14px;
}
.card{
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--panel);
  padding: 16px;
  box-shadow: 0 8px 16px rgba(0,0,0,.06);
}
.small{color: var(--sub); font-size: 13.5px; margin: 10px 0 0}

.timeline{display:grid; gap: 12px; margin-top: 14px}
.timeline-item{
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--panel);
  padding: 14px 16px;
  box-shadow: 0 8px 16px rgba(0,0,0,.06);
}
.timeline-meta{margin:0; color: var(--sub); font-size: 13.5px}
.timeline-title{margin: 6px 0 4px; font-weight: 900}
.timeline-text{margin: 0; color: var(--sub)}

.split{display:grid; grid-template-columns: 1.2fr .8fr; gap: 16px; align-items:start}
.callout{
  border-radius: var(--radius);
  border: 1px solid rgba(200,16,46,.25);
  background: rgba(200,16,46,.06);
  padding: 16px;
}
.checklist{margin: 12px 0 0; padding-left: 18px; color: var(--text)}
.checklist li{margin: 8px 0}

.contact-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 340px));
  justify-content: center;
  gap: 14px;
  margin-top: 14px;
}

.site-footer{
  border-top: 1px solid var(--border);
  padding: 18px 0;
  background: var(--bar);
  border-top: 1px solid var(--bar-border);
}
.footer-inner{display:flex; align-items:center; justify-content:space-between; gap: 16px; flex-wrap:wrap}
.site-footer .small{color: var(--bar-sub)}
.site-footer a{color: var(--bar-text); text-decoration:none; padding: 6px 10px; border-radius: 999px; border: 1px solid transparent}
.site-footer a:hover{background: rgba(255,255,255,.08); border-color: var(--bar-border)}

.page{padding: 38px 0}
.prose{
  border:0;
  background: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  max-width: 75ch;
  margin-inline: auto;
}
.prose p{color: var(--sub)}
.prose a{color: var(--brand)}

@media (max-width: 920px){
  .contact-grid{grid-template-columns: 1fr}
  .split{grid-template-columns: 1fr}
  .hero-slider{--hero-slide-height: clamp(200px, 40vw, 320px)}
}

@media (max-width: 760px){
  .hero-slider{--hero-slide-height: clamp(180px, 56vw, 300px)}
  .nav-toggle{display:inline-flex}
  .site-nav{
    position:absolute;
    right: 20px;
    top: 64px;
    display:none;
    flex-direction:column;
    align-items:stretch;
    padding: 10px;
    border-radius: 14px;
    border: 1px solid var(--bar-border);
    background: var(--bar);
    box-shadow: var(--shadow);
    min-width: 220px;
  }
  .site-nav.is-open{display:flex}
  .nav-link{padding: 12px 12px}
}
