:root {
  --navy: #0A192F;
  --navy-dark: #050d18;
  --white: #FFFFFF;
  --icy-blue: #00B4D8;
  --icy-blue-hover: #0096B4;
  --text-main: #1A202C;
  --text-light: #718096;
  --font-body: system-ui, -apple-system, sans-serif;
  --font-heading: 'Arial Narrow', 'Helvetica Neue', Helvetica, sans-serif;
  --font-accent: Georgia, serif;
  --radius-pill: 9999px;
  --shadow-soft: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --spacing-base: 1rem;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background-color: var(--white);
  background-image: url('data:image/svg+xml;utf8,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noise"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.85" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noise)" opacity="0.03"/%3E%3C/svg%3E');
  line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-stretch: condensed;
  font-weight: 700;
  letter-spacing: -0.02em;
}

a {
  color: var(--navy);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--icy-blue);
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: var(--shadow-soft);
}

.btn-cta {
  background-color: var(--icy-blue);
  color: var(--navy-dark);
}

.btn-cta:hover {
  background-color: var(--icy-blue-hover);
  color: var(--navy-dark);
  transform: translateY(-2px);
}

.centered-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
}

.brand-logo svg {
  height: 32px;
  width: auto;
  color: var(--icy-blue);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

.nav-link {
  color: var(--white);
  font-weight: 500;
}

.nav-link:hover {
  color: var(--icy-blue);
}

.burger-menu {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
}

.burger-menu svg {
  width: 28px;
  height: 28px;
}

/* Mobile Overlay */
.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--navy);
  color: var(--white);
  z-index: 1000;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  padding: 1rem 2rem;
}

.mobile-overlay.active {
  transform: translateX(0);
}

.mobile-overlay-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
}

.close-menu {
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
}

.close-menu svg {
  width: 32px;
  height: 32px;
}

.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}

.mobile-nav-link {
  color: var(--white);
  font-size: 1.5rem;
  font-family: var(--font-heading);
}

.mobile-cta {
  width: 100%;
}

/* Footer */
.site-footer {
  background-color: var(--navy-dark);
  color: var(--white);
  padding: 4rem 2rem 2rem;
}

.footer-container {
  max-width: 800px;
  margin: 0 auto;
  gap: 3rem;
}

.footer-brand .footer-heading {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.footer-brand .tagline {
  font-family: var(--font-accent);
  color: var(--icy-blue);
  font-style: italic;
}

.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: center;
}

.contact-list svg {
  width: 20px;
  height: 20px;
  color: var(--icy-blue);
  flex-shrink: 0;
}

.contact-list a {
  color: var(--white);
}

.contact-list a:hover {
  color: var(--icy-blue);
  text-decoration: underline;
}

.footer-legal {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
}

.legal-list {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1rem;
}

.legal-list a {
  color: var(--text-light);
  font-size: 0.875rem;
}

.legal-list a:hover {
  color: var(--white);
}

.copyright {
  color: var(--text-light);
  font-size: 0.875rem;
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .burger-menu {
    display: block;
  }
}
/* footer extras */
.footer__extras{margin-top:16px;}
.footer__extrasInner{display:flex;flex-wrap:wrap;gap:12px;align-items:flex-start;justify-content:space-between;}
.footer__social{display:flex;gap:10px;align-items:center;}
.footer-social{display:inline-flex;gap:8px;align-items:center;text-decoration:none;}
.footer-social__icon{display:block;}
.footer__poemWrap{max-width:520px;}
.footer-poem{opacity:0.9;font-size:0.95em;line-height:1.35;}


body.no-scroll {
  overflow: hidden;
}

.nav-link.is-active,
.nav-link[aria-current="page"],
.mobile-nav-link.is-active,
.mobile-nav-link[aria-current="page"] {
  color: var(--icy-blue);
  font-weight: 700;
}

.mobile-overlay {
  visibility: hidden;
  pointer-events: none;
}

.mobile-overlay.active {
  visibility: visible;
  pointer-events: auto;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  min-height: calc(100vh - 8rem);
}

.form-privacy {
  font-size: 0.95rem;
}

.privacy-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  line-height: 1.5;
}

.privacy-label input {
  margin-top: 0.2rem;
  flex: 0 0 auto;
}

.privacy-label a {
  color: inherit;
  text-decoration: underline;
}

.wrap,
.card {
  width: 100%;
}

@media (max-width: 768px) {
  .header-container {
    padding: 1rem 1.25rem;
  }

  .mobile-overlay {
    padding: 1rem 1.25rem 2rem;
  }

  .legal-list {
    flex-direction: column;
    gap: 0.75rem;
  }
}
