
:root {
  --ww-bg: #0f172a;
  --ww-surface: rgba(15, 23, 42, 0.82);
  --ww-surface-border: rgba(255,255,255,0.10);
  --ww-text: #e5e7eb;
  --ww-muted: #94a3b8;
  --ww-accent: #10b981;
  --ww-accent-rgb: 16,185,129;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: linear-gradient(180deg, #020617 0%, #0f172a 100%);
  color: var(--ww-text);
}
.ww-shell-root { min-height: 100vh; }
.ww-shell-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(18px);
  background: rgba(2, 6, 23, 0.82);
  border-bottom: 1px solid var(--ww-surface-border);
}
.ww-shell-header-inner,
.ww-shell-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.ww-shell-header-inner {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.ww-shell-brand {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.ww-shell-header-cta {
  margin-left: auto;
  padding: 10px 14px;
  border-radius: 999px;
  text-decoration: none;
  color: #fff;
  border: 1px solid rgba(var(--ww-accent-rgb), 0.32);
  background: rgba(var(--ww-accent-rgb), 0.18);
}
.ww-shell-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.ww-shell-link,
.ww-shell-footer-nav a,
.ww-shell-drawer-link {
  color: var(--ww-muted);
  text-decoration: none;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
}
.ww-shell-link {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid transparent;
}
.ww-shell-link:hover,
.ww-shell-link.is-active {
  color: #fff;
  border-color: rgba(var(--ww-accent-rgb), 0.34);
  background: rgba(var(--ww-accent-rgb), 0.12);
}
.ww-shell-menu {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--ww-surface-border);
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.78);
  padding: 10px;
}
.ww-shell-menu span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: #fff;
  border-radius: 999px;
}
.ww-shell-drawer {
  display: none;
  padding: 0 20px 16px;
  max-width: 1200px;
  margin: 0 auto;
}
.ww-shell-drawer-link {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.ww-shell-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 20px 56px;
}
.ww-shell-page { display: none; }
.ww-shell-page.is-active { display: block; }
.ww-shell-page [id="gjs"] { min-height: auto; }
.ww-shell-footer {
  border-top: 1px solid var(--ww-surface-border);
  background: rgba(2, 6, 23, 0.92);
}
.ww-shell-footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  padding: 24px 20px 36px;
}
.ww-shell-footer-brand strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
}
.ww-shell-footer-brand p {
  margin: 0;
  color: var(--ww-muted);
  line-height: 1.7;
}
.ww-shell-footer-contact {
  margin-top: 12px;
  display: grid;
  gap: 6px;
  color: var(--ww-muted);
}
.ww-shell-footer-meta {
  display: grid;
  gap: 18px;
  justify-items: end;
}
.ww-shell-footer-nav {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  align-items: flex-start;
  flex-wrap: wrap;
}
.ww-shell-footer-hours {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
  min-width: 260px;
}
.ww-shell-footer-hours li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--ww-muted);
}
.ww-shell-footer-hours strong { color: #fff; }
.ww-shell-footer-social {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.ww-shell-footer-social a {
  color: var(--ww-muted);
  text-decoration: none;
}
@media (max-width: 768px) {
  .ww-shell-nav { display: none; }
  .ww-shell-header-cta { display: none; }
  .ww-shell-menu { display: inline-block; }
  .ww-shell-drawer[data-open="true"] { display: block; }
  .ww-shell-footer-inner { grid-template-columns: 1fr; }
  .ww-shell-footer-meta { justify-items: start; }
  .ww-shell-footer-nav { justify-content: flex-start; }
  .ww-shell-main { padding-top: 16px; }
}