/* Shared Advanced Agritek v3 site chrome: nav header, mobile panel, footer. */

.site-chrome-header,
.site-chrome-header * ,
.site-chrome-panel,
.site-chrome-panel *,
.site-chrome-footer,
.site-chrome-footer * {
  box-sizing: border-box;
}

.site-chrome-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 1.05rem 5.5%;
  color: #fff;
  background: rgba(10, 12, 18, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.site-chrome-inner {
  max-width: 1540px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.site-chrome-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  color: inherit;
  text-decoration: none;
}

.site-chrome-logo img {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  display: block;
}

.site-chrome-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 0.2rem;
}

.site-chrome-wordmark strong,
.site-chrome-wordmark em {
  font-family: 'Sora', system-ui, sans-serif;
  font-style: normal;
  font-weight: 650;
}

.site-chrome-wordmark strong {
  font-size: 1.02rem;
  color: #fff;
  letter-spacing: 0.18em;
}

.site-chrome-wordmark em {
  font-size: 0.9rem;
  color: var(--aa-accent, #06B6D4);
  letter-spacing: 0.20em;
}

.site-chrome-links {
  display: flex;
  align-items: center;
  gap: 2.05rem;
}

.site-chrome-links > a:not(.site-chrome-cta) {
  color: rgba(255, 255, 255, 0.76);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 180ms ease;
}

.site-chrome-links > a:not(.site-chrome-cta):hover,
.site-chrome-links > a[aria-current="page"] {
  color: #fff;
}

.site-chrome-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 46px;
  padding: 0.78rem 1.25rem;
  border: 1.5px solid transparent;
  border-radius: 8px;
  background: var(--aa-accent, #06B6D4);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.site-chrome-cta:hover {
  background: var(--aa-accent-hover, #0891B2);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(6, 182, 212, 0.30);
}

.site-chrome-menu {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.site-chrome-menu span {
  width: 19px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}

.site-chrome-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: min(330px, 88vw);
  height: 100dvh;
  padding: 1.1rem;
  background: rgba(10, 12, 18, 0.98);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: -18px 0 48px rgba(0, 0, 0, 0.38);
  transform: translateX(100%);
  transition: transform 260ms ease;
  display: flex;
  flex-direction: column;
  z-index: 80;
}

.site-chrome-panel.active {
  transform: translateX(0);
}

.site-chrome-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-chrome-panel .site-chrome-logo {
  gap: 0.74rem;
}

.site-chrome-panel .site-chrome-logo img {
  width: 34px;
  height: 34px;
  border-radius: 7px;
}

.site-chrome-panel .site-chrome-wordmark strong {
  font-size: 0.82rem;
}

.site-chrome-panel .site-chrome-wordmark em {
  font-size: 0.74rem;
}

.site-chrome-close {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.site-chrome-panel-links {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-top: 1.25rem;
}

.site-chrome-panel-links > a:not(.site-chrome-cta) {
  color: rgba(255, 255, 255, 0.84);
  text-decoration: none;
  font-weight: 600;
  padding: 0.95rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-chrome-panel-links .site-chrome-cta {
  margin-top: 1.35rem;
  justify-content: center;
}

.site-chrome-footer {
  padding: 4rem 5% 2rem;
  background: #0A0C12;
  color: rgba(255, 255, 255, 0.65);
}

.site-chrome-footer-inner {
  width: min(1240px, 90vw);
  margin: 0 auto;
}

.site-chrome-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.site-chrome-footer-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1rem;
}

.site-chrome-footer-brand img {
  width: 32px;
  height: 32px;
  border-radius: 6px;
}

.site-chrome-footer-brand .site-chrome-wordmark strong {
  font-size: 0.86rem;
  font-weight: 600;
}

.site-chrome-footer-brand .site-chrome-wordmark em {
  font-size: 0.78rem;
  font-weight: 600;
}

.site-chrome-footer p,
.site-chrome-footer a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
  line-height: 1.65;
}

.site-chrome-footer p {
  max-width: 36ch;
  margin: 0;
}

.site-chrome-footer a {
  display: block;
  margin: 0.55rem 0;
  text-decoration: none;
}

.site-chrome-footer a:hover {
  color: #fff;
}

.site-chrome-footer h4 {
  margin: 0 0 1rem;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: #fff;
}

.site-chrome-footer-contact {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.site-chrome-footer-contact span,
.site-chrome-footer-contact a {
  margin: 0;
}

.site-chrome-footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.8rem;
}

.site-chrome-footer-bottom-links {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

.site-chrome-footer-bottom-links a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
}

@media (max-width: 980px) {
  .site-chrome-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .site-chrome-header {
    padding: 1rem 5%;
  }

  .site-chrome-logo img {
    width: 36px;
    height: 36px;
    border-radius: 7px;
  }

  .site-chrome-wordmark strong {
    font-size: 0.92rem;
  }

  .site-chrome-wordmark em {
    font-size: 0.82rem;
  }

  .site-chrome-links {
    display: none;
  }

  .site-chrome-menu {
    display: inline-flex;
  }

  .site-chrome-panel {
    width: 100vw;
    max-width: 100vw;
  }

  .site-chrome-footer-grid {
    grid-template-columns: 1fr;
  }

  .site-chrome-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
