/* ── RESET & TOKENS ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:    #ffffff;
  --cream2:   #f0f0f0;
  --parchment:#ffffff;
  --white:    #ffffff;
  --ink:      #1e1b14;
  --ink2:     #2c2820;
  --mid:      #8c7e6e;
  --border:   #e0d8cc;
  --accent:   #1a3a6e;
  --gold:     #a07840;
  --r:        3px;
  --font:    'DM Sans', sans-serif;
  --fontd:   'Funnel Display', sans-serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--parchment);
  color: var(--ink2);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img  { max-width: 100%; display: block; }
a    { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--font); }
::selection { background: var(--accent); color: #fff; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }

/* ── SCROLL PROGRESS ── */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 3px; background: rgba(0,0,0,0.06); pointer-events: none;
}
.scroll-progress__bar {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, #c0272d 0%, #e8453c 60%, #ff6b5b 100%);
  transition: width 0.1s linear;
}

/* ── NETWORK BAR ── */
.network-bar {
  background: #0f2240;
  height: 36px;
  display: flex; align-items: center; justify-content: center;
  padding: 0 20px;
  font-size: 12px;
  position: fixed; top: 0; left: 0; right: 0; z-index: 101;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.network-bar__label {
  color: rgba(255,255,255,0.35);
  margin-right: 14px;
  letter-spacing: 0.06em;
  font-weight: 500;
}
.network-bar__link {
  color: rgba(255,255,255,0.45);
  font-weight: 400;
  padding: 0 14px;
  border-left: 1px solid rgba(255,255,255,0.1);
  line-height: 36px;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.network-bar__link:first-of-type { border-left: none; }
.network-bar__link--active {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.network-bar__link:hover { color: #fff; }
.network-bar__star { color: var(--gold); margin-right: 4px; }

/* ── SITE NAV ── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0; z-index: 100;
  height: 62px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(20px, 5vw, 56px);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.site-nav.scrolled { box-shadow: 0 1px 12px rgba(24,22,15,0.06); }
.site-nav__logo img { height: 38px; width: auto; display: block; }
.site-nav__links {
  display: flex; gap: 32px; align-items: center;
}
.site-nav__link {
  font-size: 14px; font-weight: 400;
  color: var(--mid); letter-spacing: 0.01em;
  transition: color 0.2s;
}
.site-nav__link:hover { color: var(--ink); }

/* hamburger (mobile) */
.site-nav__hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; padding: 4px;
}
.site-nav__hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

/* mobile nav drawer */
.site-nav__drawer {
  display: none;
  position: fixed; top: 62px; left: 0; right: 0;
  background: var(--white); border-bottom: 1px solid var(--border);
  padding: 20px clamp(20px,5vw,56px); z-index: 99;
  flex-direction: column; gap: 0;
}
.site-nav__drawer.open { display: flex; }
.site-nav__drawer a {
  font-size: 15px; font-weight: 400; color: var(--ink2);
  padding: 14px 0; border-bottom: 1px solid var(--border);
}
.site-nav__drawer a:last-child { border-bottom: none; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: #fff;
  padding: 12px 24px; border-radius: var(--r);
  font-family: var(--font); font-weight: 500; font-size: 14px;
  letter-spacing: 0.01em; border: none;
  transition: opacity 0.2s; cursor: pointer;
}
.btn-primary:hover { opacity: 0.85; }
.btn-primary--sm { padding: 9px 18px; font-size: 13px; }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--ink2);
  padding: 11px 22px; border-radius: var(--r);
  font-family: var(--font); font-weight: 500; font-size: 14px;
  border: 1px solid var(--border); transition: border-color 0.2s, color 0.2s;
}
.btn-outline:hover { border-color: var(--ink2); }

/* ── WRAPPERS & TYPOGRAPHY ── */
.max-w { max-width: 1200px; margin: 0 auto; }

.tag-label {
  font-family: var(--font);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--mid); display: block; margin-bottom: 10px;
}

.display-h2 {
  font-family: var(--fontd);
  font-weight: 700; font-size: clamp(30px, 4vw, 54px);
  color: var(--ink); line-height: 1.05;
  letter-spacing: -0.02em; text-wrap: balance;
}

/* ── FOOTER ── */
.site-footer {
  background: #111111;
  color: rgba(255,255,255,0.5);
  padding: clamp(44px, 5vh, 64px) clamp(20px, 5vw, 60px) 0;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.site-footer__logo img {
  height: 34px; width: auto; margin-bottom: 14px;
  filter: brightness(0) invert(1); opacity: 0.85;
}
.site-footer__city {
  font-size: 12px; color: rgba(255,255,255,0.25);
  margin-bottom: 16px; letter-spacing: 0.06em; text-transform: uppercase;
}
.site-footer__desc {
  font-size: 14px; line-height: 1.8; max-width: 280px; font-weight: 300;
}
.site-footer__network-label {
  font-size: 10px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.2);
  margin-top: 22px; padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 8px;
}
.site-footer__network-links { display: flex; gap: 14px; flex-wrap: wrap; }
.site-footer__network-link {
  font-size: 13px; color: rgba(255,255,255,0.35);
  font-weight: 300; transition: color 0.2s;
}
.site-footer__network-link--active {
  color: rgba(255,255,255,0.85); font-weight: 600;
}
.site-footer__network-link:hover { color: #fff; }
.site-footer__col-heading {
  font-size: 11px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.3);
  margin-bottom: 16px;
}
.site-footer__col a {
  display: block; font-size: 14px; line-height: 2.2;
  color: rgba(255,255,255,0.45); font-weight: 300; transition: color 0.2s;
}
.site-footer__col a:hover { color: #fff; }
.site-footer__contact-phone a {
  color: rgba(255,255,255,0.7); font-weight: 500; font-size: 14px;
  line-height: 2.3;
}
.site-footer__contact-hours {
  font-size: 12px; color: rgba(255,255,255,0.25); line-height: 2;
}
.site-footer__contact-emergency {
  color: var(--gold); font-weight: 600; font-size: 13px; line-height: 2;
}
.site-footer__contact-email a {
  color: rgba(255,255,255,0.35); font-size: 12px; margin-top: 8px; display: block;
}
.site-footer__bottom {
  display: flex; justify-content: space-between;
  padding: 18px 0; font-size: 12px;
  color: rgba(255,255,255,0.2); flex-wrap: wrap; gap: 8px; font-weight: 300;
}

/* ── REVEAL ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .site-nav__links { display: none; }
  .site-nav__hamburger { display: flex; }

  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .site-footer__logo { grid-column: 1 / -1; }
}

@media (max-width: 480px) {
  .site-footer__grid { grid-template-columns: 1fr; }
}
