/**
 * Shared top navigation for legacy tool HTML — matches marketing site-header
 * (light bar, full links, coral CTA). Loaded via MarketingController::injectLegacyToolHead.
 */
.wv-site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 22px;
  background: rgba(250, 246, 240, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid #e4ddd4;
  font-family: "DM Sans", system-ui, sans-serif;
}
.wv-site-nav-check {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.wv-site-logo {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: #1a1510;
  letter-spacing: 0.02em;
  text-decoration: none;
}
.wv-site-logo span {
  color: #d4622a;
}
.wv-site-nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.9rem;
}
.wv-site-nav-links a {
  color: #6b5b45;
  text-decoration: none;
  white-space: nowrap;
}
.wv-site-nav-links a:hover {
  color: #d4622a;
}
.wv-site-nav-links a.is-active {
  color: #4a7a6a;
  font-weight: 600;
}
.wv-nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 18px;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 500;
  background: #d4622a;
  color: #fff !important;
  text-decoration: none !important;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s, transform 0.15s;
}
.wv-nav-cta:hover {
  background: #b5521f;
  transform: translateY(-1px);
}
.wv-nav-cta .wv-cta-icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  display: block;
}
.wv-site-nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0 11px;
  border: 1px solid #e4ddd4;
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  flex-shrink: 0;
  box-sizing: border-box;
}
.wv-site-nav-burger span {
  display: block;
  height: 2px;
  background: #1a1510;
  border-radius: 1px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.wv-site-nav-check:checked ~ .wv-site-nav-burger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.wv-site-nav-check:checked ~ .wv-site-nav-burger span:nth-child(2) {
  opacity: 0;
}
.wv-site-nav-check:checked ~ .wv-site-nav-burger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (min-width: 721px) {
  .wv-site-nav {
    flex-wrap: nowrap;
    gap: 0;
    padding: 14px 28px;
  }
  .wv-site-logo {
    order: 1;
  }
  .wv-site-nav-links {
    order: 2;
    flex: 1;
    justify-content: center;
    flex-wrap: wrap;
  }
  .wv-nav-cta {
    order: 3;
  }
  .wv-site-nav-burger {
    display: none !important;
  }
}

@media (max-width: 720px) {
  .wv-site-nav {
    padding: 12px 20px;
  }
  .wv-site-logo {
    order: 1;
    flex: 1;
    min-width: 0;
  }
  .wv-nav-cta {
    order: 2;
    padding: 10px 14px;
    font-size: 0.78rem;
  }
  .wv-site-nav-burger {
    order: 3;
    display: inline-flex;
  }
  .wv-site-nav-links {
    order: 4;
    display: none;
    flex-basis: 100%;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 4px 0 12px;
    margin-top: 4px;
    border-top: 1px solid #e4ddd4;
  }
  .wv-site-nav-links a {
    padding: 14px 4px;
    border-bottom: 1px solid #e4ddd4;
  }
  .wv-site-nav-links a:last-child {
    border-bottom: none;
  }
  .wv-site-nav-check:checked ~ .wv-site-nav-links {
    display: flex;
  }
}

/* ─── Footer (matches app.css .site-footer for Blade-rendered HTML on legacy tools) ─── */
.site-footer {
  margin-top: 3rem;
  padding: 40px 22px 36px;
  border-top: 1px solid #e4ddd4;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.55) 0%, #faf6f0 100%);
  font-size: 0.88rem;
  color: #6b5b45;
  font-family: "DM Sans", system-ui, sans-serif;
}
.site-footer-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}
.site-footer-primary,
.site-footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 6px 4px;
  line-height: 1.5;
}
.site-footer-primary a,
.site-footer-legal a {
  color: #d4622a;
  text-decoration: none;
  font-weight: 500;
  padding: 2px 2px;
}
.site-footer-primary a:hover,
.site-footer-legal a:hover {
  color: #b5521f;
}
.site-footer-brand {
  display: inline-flex;
  align-items: center;
  color: #1a1510 !important;
}
.site-footer-brand img {
  height: 55px;
  width: auto;
  display: block;
}
.site-footer-sep {
  color: #a89888;
  user-select: none;
  padding: 0 2px;
}
.site-footer-tagline {
  font-size: 0.86rem;
  color: #a89888;
  max-width: 36rem;
  margin: 0;
  line-height: 1.5;
}
.site-footer-copy {
  margin: 4px 0 0;
  font-size: 0.8rem;
  color: #a89888;
}
.site-footer-cookie-settings {
  border: none;
  background: transparent;
  color: #d4622a;
  text-decoration: none;
  font-weight: 500;
  padding: 2px 2px;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
}
.site-footer-cookie-settings:hover {
  color: #b5521f;
}
.site-footer-identity {
  max-width: 760px;
}
.site-footer-identity p {
  margin: 0;
  color: #6b5b45;
  font-size: 12px;
  line-height: 1.55;
}
.site-footer-identity a {
  color: #6b5b45;
  text-decoration: underline;
}
@media (max-width: 640px) {
  .site-footer {
    padding: 32px 20px 28px;
    font-size: 0.82rem;
  }
  .site-footer-inner {
    gap: 12px;
  }
  .site-footer-primary,
  .site-footer-legal {
    gap: 4px 2px;
  }
  .site-footer-copy {
    font-size: 0.78rem;
  }
}
