/* ── LAYOUT ─────────────────────────────────────────────────────────
   Topbar, navbar, page-header (sub-pages), footers.
   Two footer variants: .footer-full (landing) and .footer-slim (inner pages).
──────────────────────────────────────────────────────────────────── */

/* UNDER-CONSTRUCTION BANNER: all pages, non-dismissible ------------ */
.construction-banner {
  background: #f97316;
  color: #fff;
  text-align: center;
  padding: 9px 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .01em;
}
.construction-banner-inner {
  max-width: var(--container);
  margin: 0 auto;
}

/* NOTICE BANNER: landing page only -------------------------------- */
.notice-banner {
  background: var(--gold-bg);
  border-bottom: 2px solid #e6a20a;
  padding: 9px 0;
  font-size: 13px;
}
.notice-banner-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.notice-close {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 20px;
  color: var(--slate);
  padding: 0 4px;
  line-height: 1;
  flex-shrink: 0;
}

/* TOPBAR ------------------------------------------------------------ */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,.75);
  font-size: 12.5px;
  padding: 7px 0;
  border-bottom: 3px solid var(--teal);
}
.topbar-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topbar-phone { color: white; font-weight: 600; }
.topbar-right { display: flex; gap: 18px; align-items: center; }
.topbar a { color: rgba(255,255,255,.7); }
.topbar a:hover { color: white; }

/* NAVBAR ------------------------------------------------------------ */
nav {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 4px rgba(0,0,0,.6);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-mark {
  width: 40px;
  height: 40px;
  background: var(--teal);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.logo-mark img { width: 100%; height: 100%; object-fit: cover; }
.logo-text {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 14px;
  color: #ffffff;
  letter-spacing: -.2px;
  line-height: 1.15;
}
.logo-badge {
  font-size: 10px;
  font-weight: 600;
  color: var(--text);
  background: var(--surface-mid);
  padding: 2px 6px;
  border-radius: 2px;
  border: 1px solid var(--border);
}
.nav-cta { display: flex; gap: 10px; }

/* PAGE HEADER: shared sub-page hero -------------------------------- */
.page-header {
  background: var(--navy);
  padding: 44px 0 52px;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 5px; height: 100%;
  background: var(--teal);
}
.page-header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40px;
  background: var(--bg);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.page-header-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
.page-header-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: 14px;
}
.page-header-eyebrow::before {
  content: '';
  display: block;
  width: 20px; height: 2px;
  background: var(--teal-light);
}
.page-header h1 {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
  color: white;
  letter-spacing: -1px;
  margin-bottom: 10px;
}
.page-header p {
  font-size: 15px;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
}

/* CONTAINER --------------------------------------------------------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* FOOTER: full (landing page) -------------------------------------- */
.footer-full {
  background: var(--navy);
  color: white;
  padding: 52px 0 0;
  border-top: 4px solid var(--teal);
}
.footer-full .footer-inner { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.footer-full .footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.footer-brand p {
  font-size: 13px;
  color: rgba(255,255,255,.45);
  line-height: 1.7;
  margin: 12px 0 16px;
}
.footer-col h4 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,.35);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,.6);
  margin-bottom: 9px;
}
.footer-col a:hover { color: var(--teal-light); }
.footer-contact { font-size: 13px; color: rgba(255,255,255,.5); margin-bottom: 6px; }
.footer-disclaimer {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
  font-size: 11.5px;
  color: rgba(255,255,255,.3);
  line-height: 1.6;
}

/* FOOTER: slim (inner pages) --------------------------------------- */
.footer-slim {
  background: var(--navy);
  color: white;
  padding: 28px 0;
  border-top: 3px solid var(--teal);
}
.footer-slim .footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}
.footer-brand-row { display: flex; align-items: center; gap: 10px; }
.footer-brand-text { font-size: 13px; font-weight: 700; color: white; }
.footer-sub { font-size: 12px; color: rgba(255,255,255,.4); }
.footer-links { display: flex; gap: 18px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,.45); }
.footer-links a:hover { color: var(--teal-light); }

/* ── RESPONSIVE ─────────────────────────────────────────────────── */
@media (max-width: 600px) {
  .topbar-right  { display: none; }
  .nav-cta .btn-outline { display: none; }
  .footer-full .footer-top { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 960px) {
  .footer-full .footer-top { grid-template-columns: 1fr 1fr; }
}
