/* Unified site chrome: header (wordmark + 4 links) + footer (full sitemap) */
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,600;0,9..40,700;1,9..40,400&display=swap");

.site-global-header {
  position: sticky;
  top: 0;
  z-index: 10000;
  background: rgba(11, 13, 20, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  font-family: "DM Sans", system-ui, sans-serif;
}

.site-global-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.site-global-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.site-global-logo-text {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #f9fafb;
  line-height: 1.15;
  transition: color 0.2s;
}

.site-global-logo:hover .site-global-logo-text {
  color: #5eead4;
}

.site-global-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.site-global-nav li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-global-nav a {
  color: #9ca3af;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 999px;
  transition: background 0.2s, color 0.2s;
}

.site-global-nav a:hover {
  color: #f9fafb;
  background: rgba(255, 255, 255, 0.08);
}

.site-global-nav a.is-active {
  color: #0b0d14;
  background: #5eead4;
}

.site-global-footer {
  margin-top: auto;
  background: #0b0d14;
  color: #9ca3af;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.site-global-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 36px 22px 40px;
}

.site-footer-heading {
  margin: 0 0 14px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #6b7280;
  font-weight: 700;
}

.site-footer-sitemap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-bottom: 22px;
}

.site-footer-sitemap a {
  color: #e5e7eb;
  text-decoration: none;
  font-weight: 500;
}

.site-footer-sitemap a:hover {
  color: #5eead4;
}

.site-footer-legal {
  margin: 0 0 10px;
}

.site-footer-legal a {
  color: #9ca3af;
  text-decoration: none;
}

.site-footer-legal a:hover {
  color: #5eead4;
}

.site-footer-copy {
  margin: 0;
  font-size: 0.8rem;
  color: #6b7280;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link:focus {
  left: 12px;
  top: 12px;
  width: auto;
  height: auto;
  padding: 8px 14px;
  background: #000;
  color: #fff;
  z-index: 100001;
  border-radius: 8px;
}

#cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  display: none;
  pointer-events: none;
}
#cookie-banner.show {
  display: block;
}
#cookie-banner .cookie-inner {
  pointer-events: all;
  margin: 14px auto;
  width: min(100% - 24px, 860px);
  background: #fff;
  color: #1e1e1e;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.14);
  padding: 16px 18px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px 16px;
  align-items: center;
}
#cookie-banner .cookie-content {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
#cookie-banner p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: #5f6368;
}
.cookie-actions,
#cookie-banner .actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
#cookie-banner button {
  cursor: pointer;
  border-radius: 10px;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 600;
  border: none;
}
#cookie-banner .cookie-yes,
#cookie-banner button.yes {
  background: #111827;
  color: #fff;
}
#cookie-banner .cookie-no,
#cookie-banner button.no {
  background: #fff;
  color: #111827;
  border: 1px solid rgba(0, 0, 0, 0.12);
}
@media (max-width: 640px) {
  #cookie-banner .cookie-inner {
    grid-template-columns: 1fr;
  }
  .cookie-actions,
  #cookie-banner .actions {
    justify-content: stretch;
  }
  .cookie-actions button,
  #cookie-banner .actions button {
    flex: 1;
  }
}

body.u-body {
  padding-top: 0;
}

/* Inline CTA strip (custom pages + optional use) */
.site-cta-strip {
  background: linear-gradient(135deg, #0d9488 0%, #115e59 100%);
  color: #ecfdf5;
  padding: 40px 22px;
  text-align: center;
  font-family: "DM Sans", system-ui, sans-serif;
  margin-top: 0;
}
.site-cta-strip h2 {
  margin: 0 0 10px;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.site-cta-strip p {
  margin: 0 auto 18px;
  max-width: 520px;
  opacity: 0.95;
  line-height: 1.55;
  font-size: 0.95rem;
}
.site-cta-strip a {
  display: inline-block;
  padding: 10px 22px;
  background: #ffffff;
  color: #0f766e;
  font-weight: 700;
  text-decoration: none;
  border-radius: 999px;
  font-size: 0.9rem;
}
.site-cta-strip a:hover {
  opacity: 0.92;
}
