:root {
  --font-main:
    system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --bg-tint: #eaf4f8;
  --bg-white: #ffffff;
  --text-dark: #001424;
  --pastel-accent: linear-gradient(135deg, #a1c4fd 0%, #c2e9fb 100%);
  --shadow-hard: 3px 3px 0px #001424;
  --radius-tiny: 4px;
  --space-10: 10px;
  --space-20: 20px;
  --space-40: 40px;
}

body {
  margin: 0;
  font-family: var(--font-main);
  font-weight: 600;
  background-color: var(--bg-tint);
  color: var(--text-dark);
}

h1,
h2,
h3,
h4,
.brand-text {
  font-weight: 800;
  margin: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--bg-white);
  border-bottom: 2px solid var(--text-dark);
  box-shadow: 0 3px 0px var(--text-dark);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-10) var(--space-20);
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: var(--space-10);
  text-decoration: none;
  color: var(--text-dark);
}

.brand-logo svg {
  width: 32px;
  height: 32px;
}

.brand-text {
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.desktop-nav {
  display: flex;
  gap: var(--space-20);
}

.desktop-nav a {
  text-decoration: none;
  color: var(--text-dark);
  font-size: 1rem;
  transition: transform 0.2s;
}

.desktop-nav a:hover {
  transform: translateY(-2px);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-20);
}

.cta-button {
  background: var(--pastel-accent);
  color: var(--text-dark);
  padding: var(--space-10) var(--space-20);
  text-decoration: none;
  font-weight: 800;
  border: 2px solid var(--text-dark);
  border-radius: var(--radius-tiny);
  box-shadow: var(--shadow-hard);
  transition:
    transform 0.1s,
    box-shadow 0.1s;
}

.cta-button:active {
  transform: translate(3px, 3px);
  box-shadow: 0px 0px 0px var(--text-dark);
}

.burger-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  color: var(--text-dark);
}

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

.mobile-menu-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 20, 36, 0.9);
  z-index: 2000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.mobile-menu-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background-color: var(--bg-white);
  padding: var(--space-40);
  border-radius: var(--radius-tiny);
  border: 2px solid var(--text-dark);
  box-shadow: var(--shadow-hard);
  position: relative;
  width: 90%;
  max-width: 400px;
  text-align: center;
}

.close-btn {
  position: absolute;
  top: var(--space-10);
  right: var(--space-10);
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-dark);
}

.close-btn svg {
  width: 24px;
  height: 24px;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: var(--space-20);
}

.mobile-nav a {
  text-decoration: none;
  color: var(--text-dark);
  font-size: 1.25rem;
  font-weight: 800;
}

.mobile-cta {
  margin-top: var(--space-10);
}

.site-footer {
  background-color: var(--bg-tint);
  border-top: 2px solid var(--text-dark);
  padding: var(--space-40) var(--space-20);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-20);
}

.footer-card {
  background: var(--bg-white);
  border: 2px solid var(--text-dark);
  border-radius: var(--radius-tiny);
  padding: var(--space-20);
  box-shadow: var(--shadow-hard);
}

.footer-heading {
  background: var(--pastel-accent);
  display: inline-block;
  padding: 5px var(--space-10);
  border: 2px solid var(--text-dark);
  border-radius: var(--radius-tiny);
  margin-bottom: var(--space-20);
  box-shadow: 2px 2px 0px var(--text-dark);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: var(--space-10);
}

.footer-nav a {
  text-decoration: none;
  color: var(--text-dark);
}

.footer-nav a:hover {
  text-decoration: underline;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-10);
}

.contact-link {
  display: flex;
  align-items: center;
  gap: var(--space-10);
  text-decoration: none;
  color: var(--text-dark);
  word-break: break-word;
}

.contact-link svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.contact-link:hover {
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  margin-top: var(--space-40);
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }
  .burger-btn {
    display: block;
  }
  .header-actions {
    gap: var(--space-10);
  }
  .cta-button {
    padding: 8px 12px;
    font-size: 0.9rem;
  }
  .footer-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .brand-text {
    display: none;
  }
}
/* 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;
}
