/* Legally Yours – Matching Google Sites nav */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: Arial, Helvetica, sans-serif;
  color: #1f2937;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  margin: 0;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* Nav – matches Google Sites header */
.site-header {
  display: flex;
  align-items: center;
  padding: 12px 24px;
  border-bottom: 1px solid #e0e0e0;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
}
.site-header .logo img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}
.site-header .logo span {
  font-size: 18px;
  color: #3c4043;
  font-weight: 400;
}
.site-header nav {
  display: flex;
  align-items: center;
  gap: 8px;
}
.site-header nav a {
  font-size: 14px;
  color: #3c4043;
  padding: 8px 12px;
  border-radius: 4px;
  font-weight: 400;
  transition: background .15s;
}
.site-header nav a:hover {
  background: rgba(0,0,0,.06);
}
.site-header nav a.active {
  font-weight: 600;
}

/* Mobile hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px; background: #3c4043; margin: 4px 0;
}

@media (max-width: 768px) {
  .site-header nav { display: none; }
  .site-header nav.open {
    display: flex; flex-direction: column;
    position: absolute; top: 56px; right: 12px;
    background: #fff; border-radius: 8px;
    padding: 12px 16px; box-shadow: 0 8px 24px rgba(0,0,0,.15);
    z-index: 200; gap: 4px;
    border: 1px solid #e0e0e0;
  }
  .nav-toggle { display: block; }
}
