/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1300;
  padding: 22px 0;
  transition: background .35s var(--ease), padding .35s var(--ease), border-color .35s var(--ease);
  border-bottom: 1px solid transparent;
}

.site-header.is-solid {
  background: rgba(18, 22, 26, 0.96);
  backdrop-filter: blur(10px);
  padding: 14px 0;
  border-color: var(--line-dark);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 38px;
  height: 38px;
  flex: none;
  border: 1.5px solid var(--brass);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--brass);
  font-size: 0.95rem;
  transform: rotate(45deg);
}

.brand-mark span {
  transform: rotate(-45deg);
}

.brand-word {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: 1.32rem;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1;
}

.brand-word small {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  color: var(--steel-300);
  font-weight: 400;
  margin-top: 4px;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 38px;
}

.main-nav ul {
  display: flex;
  gap: 34px;
}

.main-nav a {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--concrete);
  position: relative;
  padding: 6px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--brass);
  transition: width .3s var(--ease);
}

.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after {
  width: 100%;
}

.main-nav a[aria-current="page"] {
  color: var(--brass-light);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-phone {
  display: flex;
  flex-direction: column;
  text-align: right;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--steel-300);
}

.header-phone a {
  color: var(--white);
  font-size: 0.92rem;
  letter-spacing: 0.02em;
}

.header-phone a:hover {
  color: var(--brass-light);
}

.hamburger {
  display: none;
  flex: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-dark-strong);
  background: transparent;
  position: relative;
  z-index: 1200;
}

.hamburger .bar {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 1.5px;
  background: var(--white);
  transition: transform .3s var(--ease), opacity .2s var(--ease), top .3s var(--ease), background .2s var(--ease);
}

.hamburger .bar-top {
  top: 15px;
}

.hamburger .bar-mid {
  top: 21px;
}

.hamburger .bar-bottom {
  top: 27px;
}

.hamburger[aria-expanded="true"] .bar-mid {
  background: transparent;
}

.hamburger[aria-expanded="true"] .bar-top {
  top: 21px;
  transform: rotate(45deg);
}

.hamburger[aria-expanded="true"] .bar-bottom {
  top: 21px;
  transform: rotate(-45deg);
}

/* Mobile menu panel */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .45s var(--ease);
  visibility: hidden;
}

.mobile-menu.is-open {
  transform: translateX(0);
  visibility: visible;
}

.mobile-menu-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 32px 40px;
  overflow-y: auto;
}

.mobile-menu nav ul {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mobile-menu nav a {
  display: flex;
  align-items: baseline;
  gap: 14px;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 8.5vw, 2.1rem);
  text-transform: uppercase;
  padding: 16px 0;
  color: var(--white);
  border-bottom: 1px solid var(--line-dark);
  min-height: 44px;
  min-width: 0;
  overflow-wrap: break-word;
  word-break: break-word;
}

.mobile-menu nav a span.num {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--brass);
  font-weight: 400;
}

.mobile-menu nav a[aria-current="page"] {
  color: var(--brass-light);
}

.mobile-menu-footer {
  border-top: 1px solid var(--line-dark);
  padding: 24px 32px 36px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--steel-300);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
}

.mobile-menu-footer a {
  color: var(--brass-light);
}

.no-scroll {
  overflow: hidden;
  height: 100%;
}

@media (max-width:920px) {
  .main-nav {
    display: none;
  }

  .header-phone {
    display: none;
  }

  .hamburger {
    display: block;
  }
}

/* ============================================================
   PAGE HEADER (interior pages)
   ============================================================ */
.page-header {
  background: var(--ink);
  color: var(--white);
  padding: 180px 0 72px;
  position: relative;
  overflow: hidden;
}

.page-header .container {
  position: relative;
  z-index: 2;
}

.page-header .eyebrow {
  margin-bottom: 16px;
}

.page-header h1 {
  font-size: clamp(2.4rem, 5.4vw, 4.2rem);
}

.page-header .lede {
  max-width: 60ch;
  color: var(--steel-300);
  font-size: 1.08rem;
  margin-top: 20px;
}

.breadcrumb {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--steel-300);
  letter-spacing: .05em;
  margin-bottom: 26px;
  text-transform: uppercase;
}

.breadcrumb a {
  color: var(--steel-300);
}

.breadcrumb a:hover {
  color: var(--brass-light);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--ink);
  color: var(--concrete);
  padding-top: 80px;
  position: relative;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--line-dark);
}

.footer-brand p {
  color: var(--steel-300);
  margin-top: 18px;
  max-width: 36ch;
  font-size: 0.95rem;
}

.footer-motto {
  font-family: var(--font-display);
  text-transform: uppercase;
  color: var(--brass-light);
  font-size: 1rem;
  margin-top: 22px;
  letter-spacing: 0.01em;
  line-height: 1.3;
}

.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  color: var(--steel-300);
  text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: 600;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-col a,
.footer-col address {
  font-size: 0.94rem;
  color: var(--concrete);
  font-style: normal;
  line-height: 1.5;
}

.footer-col a:hover {
  color: var(--brass-light);
}

.footer-emergency {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 4px;
  border-left: 2px solid var(--safety);
  padding-left: 12px;
}

.footer-emergency .label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--steel-300);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.footer-emergency a {
  font-family: var(--font-mono);
  font-size: 1.05rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 0;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--steel-300);
  flex-wrap: wrap;
}

.footer-bottom nav ul {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.footer-bottom a:hover {
  color: var(--brass-light);
}

@media (max-width:920px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px 24px;
  }
}

@media (max-width:560px) {
  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ============================================================
   CTA BAND (used across pages)
   ============================================================ */
.cta-band {
  background: var(--brass);
  color: var(--ink);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}

.cta-band .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.cta-band h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  max-width: 16ch;
}

.cta-band-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.cta-band .btn-primary {
  background: var(--ink);
  color: var(--paper);
}

.cta-band .btn-primary:hover {
  background: var(--ink-soft);
}