/* Velorra header, footer, navigation shell */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.header-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; height: 72px;
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-display); font-size: 1.4rem; font-weight: 600;
  color: var(--ink); text-decoration: none; letter-spacing: -0.01em;
}
.brand-dot {
  width: 14px; height: 14px; border-radius: 4px;
  background: linear-gradient(135deg, var(--ocean) 0%, var(--coral) 100%);
}

.nav-primary { display: none; gap: 28px; }
.nav-primary a {
  color: var(--ink); text-decoration: none; font-size: 15px;
  padding: 6px 0; position: relative;
}
.nav-primary a:hover { color: var(--ocean); }
.nav-primary a[aria-current="page"]::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -22px;
  height: 2px; background: var(--coral);
}
@media (min-width: 1024px) { .nav-primary { display: flex; } }

.header-cta { display: none; }
@media (min-width: 768px) { .header-cta { display: inline-flex; } }

.burger {
  width: 44px; height: 44px; border: 0; background: transparent;
  cursor: pointer; padding: 0;
  display: inline-flex; align-items: center; justify-content: center;
}
.burger span { display: block; width: 22px; height: 2px; background: var(--ink); position: relative; }
.burger span::before, .burger span::after {
  content: ""; position: absolute; left: 0; width: 22px; height: 2px; background: var(--ink);
}
.burger span::before { top: -7px; }
.burger span::after { top: 7px; }
@media (min-width: 1024px) { .burger { display: none; } }

.mobile-overlay {
  position: fixed; inset: 0; z-index: 60;
  background: var(--paper);
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 300ms var(--ease);
}
.mobile-overlay.is-open { transform: translateX(0); }
.mobile-overlay__top {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; padding: 0 var(--pad); border-bottom: 1px solid var(--line);
}
.mobile-close {
  width: 44px; height: 44px; background: transparent; border: 0; cursor: pointer;
  font-size: 26px; color: var(--ink); line-height: 1;
}
.mobile-overlay nav {
  display: flex; flex-direction: column; padding: 32px var(--pad);
  gap: 24px; overflow-y: auto;
}
.mobile-overlay nav a {
  font-family: var(--f-display); font-size: 1.5rem; color: var(--ink); text-decoration: none;
}
.mobile-overlay nav a:hover { color: var(--coral); }
.mobile-overlay__cta { margin-top: auto; padding: 24px var(--pad); border-top: 1px solid var(--line); }

/* Footer */
.site-footer {
  background: var(--ink); color: rgba(255,255,255,0.78);
  padding: 72px 0 32px; margin-top: 96px;
}
.site-footer h4 { color: #fff; margin-bottom: 18px; font-family: var(--f-display); font-weight: 600; }
.footer-grid {
  display: grid; gap: 40px; grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}
.footer-brand { font-family: var(--f-display); color: #fff; font-size: 1.3rem; }
.footer-grid a { color: rgba(255,255,255,0.78); text-decoration: none; display: block; padding: 4px 0; }
.footer-grid a:hover { color: var(--sun); }
.footer-bar {
  margin-top: 56px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.12);
  display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between;
  font-size: 14px; color: rgba(255,255,255,0.55);
}

/* Breadcrumbs */
.crumbs {
  font-size: 14px; color: var(--mute); padding: 24px 0 0;
}
.crumbs a { color: var(--mute); text-decoration: none; }
.crumbs a:hover { color: var(--ocean); }
.crumbs span[aria-current] { color: var(--ink-soft); }
.crumbs li { display: inline; }
.crumbs ol { list-style: none; padding: 0; margin: 0; }
.crumbs li + li::before { content: " / "; color: var(--line); margin: 0 6px; }
