:root {
  --orange: #c95722;
  --dark: #232323;
  --darker: #191919;
  --light: #f0f0f0;
  --card: #ffffff;
  --text: #343434;
  --muted: #777;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--light);
}
a { color: var(--orange); }
.wrap { width: min(960px, calc(100% - 32px)); margin: 0 auto; }

.topbar { background: #202020; color: #b9b9b9; font-size: 11px; }
.topbar-inner { padding: 10px 0; text-align: center; }

.site-header { background: #fff; }
.brand-row { display: flex; align-items: center; gap: 12px; padding: 12px 0 18px; }
.brand-mark { width: 62px; height: 62px; border: 3px solid #111; border-radius: 50%; display: grid; place-items: center; }
.brand-grid { width: 42px; height: 42px; display: grid; grid-template-columns: 1fr 1fr; border: 2px solid #111; }
.brand-grid span { display: grid; place-items: center; font-weight: 700; font-size: 14px; border: 1px solid #111; }
.brand-copy { display: flex; align-items: end; gap: 10px; line-height: .95; }
.brand-title { font-weight: 800; font-size: 17px; }
.brand-sub { font-weight: 700; font-size: 13px; line-height: 1.05; }

.main-nav { border-top: 1px solid #eee; border-bottom: 1px solid #eee; }
.nav-inner { min-height: 58px; display: flex; gap: 26px; align-items: center; justify-content: center; flex-wrap: wrap; font-size: 13px; font-weight: 600; }
.nav-inner a, .nav-inner span { color: #333; text-decoration: none; }
.nav-inner .active { color: var(--orange); }

.page-bg { background: #efefef; padding: 34px 0 54px; min-height: 540px; }
.content-grid { display: grid; grid-template-columns: minmax(0, 1fr) 260px; gap: 22px; align-items: start; }
.content-card, .side-card { background: var(--card); border: 1px solid #e5e5e5; }
.maintenance-card { position: relative; padding: 26px 32px 36px; }
.date-badge { position: absolute; left: -50px; top: 54px; width: 50px; background: var(--orange); color: #fff; text-align: center; padding: 8px 0; }
.date-badge strong { display: block; font-size: 27px; line-height: 1; }
.date-badge span { display: block; font-size: 18px; font-weight: 700; margin-top: 3px; }
.eyebrow { color: #9a9a9a; font-size: 12px; margin: 0 0 14px; }
h1 { font-size: clamp(28px, 4vw, 46px); line-height: 1.02; margin: 0 0 20px; letter-spacing: -1px; }
.lead { font-size: 17px; line-height: 1.7; color: #565656; }
.notice-box { border-left: 5px solid var(--orange); background: #faf7f5; padding: 22px 24px; margin: 28px 0; }
.notice-box h2 { margin: 0 0 10px; font-size: 22px; }
.notice-box p { line-height: 1.7; }
.fb-button { display: inline-block; background: #2d2d2d; color: #fff; text-decoration: none; font-weight: 700; padding: 13px 18px; margin-top: 8px; }
.fb-button:hover { background: var(--orange); }
.small-note { color: var(--muted); font-size: 13px; margin-bottom: 0; }

.sidebar { display: grid; gap: 18px; }
.side-card { padding: 20px 18px; }
.side-card h2 { margin: 0 0 14px; font-size: 17px; }
.side-card p { line-height: 1.55; font-size: 13px; }
.muted { color: var(--muted); }
.text-link { font-size: 13px; font-weight: 700; text-decoration: none; }

.site-footer { background: var(--dark); color: #cfcfcf; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; padding: 36px 0; }
.site-footer h3 { color: #fff; font-size: 14px; margin: 0 0 14px; }
.site-footer p { font-size: 12px; line-height: 1.7; margin: 0; }
.footer-bottom { background: var(--darker); padding: 28px 0 36px; text-align: center; }
.footer-bottom p { font-size: 11px; }
.credits { color: #666; margin-top: 22px !important; }

@media (max-width: 860px) {
  .content-grid { grid-template-columns: 1fr; }
  .date-badge { position: static; width: 58px; margin: -4px 0 18px; }
  .sidebar { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 22px; }
}

@media (max-width: 620px) {
  .wrap { width: min(100% - 22px, 960px); }
  .brand-row { justify-content: center; }
  .nav-inner { gap: 14px; padding: 14px 0; font-size: 12px; }
  .maintenance-card { padding: 22px 20px 28px; }
  .sidebar { grid-template-columns: 1fr; }
}
.brand-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-logo {
  width: 100px;
  height: auto;
  display: block;
}