:root {
  --primary-blue: #005bb5;
  --primary-yellow: #ffcc00;
  --bg-white: #ffffff;
  --bg-soft: #f4f9ff;
  --text-dark: #333333;
  --radius-tiny: 4px;
  --space-sm: clamp(0.5rem, 1vw, 1rem);
  --space-md: clamp(1rem, 2vw, 2rem);
  --space-lg: clamp(2rem, 4vw, 4rem);
  --header-height: 72px;
}

body {
  margin: 0;
  font-family:
    "Roboto Condensed", "Arial Narrow", "Helvetica Condensed", system-ui,
    sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-soft);
  line-height: 1.5;
}

h1,
h2,
h3,
.footer-heading,
.brand-name {
  font-stretch: condensed;
  font-weight: 700;
  margin: 0 0 var(--space-sm) 0;
}

.site-header {
  position: sticky;
  top: 0;
  background-color: var(--bg-white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  z-index: 1000;
  height: var(--header-height);
  display: flex;
  align-items: center;
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--primary-blue);
}

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

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

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

.main-nav {
  display: flex;
  gap: var(--space-md);
}

.main-nav a,
.drawer-nav a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 1.1rem;
  transition: color 0.2s;
  position: relative;
}

.main-nav a:hover,
.drawer-nav a:hover {
  color: var(--primary-blue);
  text-decoration: underline;
  text-decoration-color: var(--primary-yellow);
  text-decoration-thickness: 3px;
  text-underline-offset: 6px;
}

.btn-primary {
  background-color: var(--primary-yellow);
  color: var(--text-dark);
  text-decoration: none !important;
  padding: 8px 20px;
  border-radius: var(--radius-tiny);
  font-weight: 700;
  font-size: 1.1rem;
  display: inline-block;
  transition:
    background-color 0.2s,
    transform 0.2s;
  box-shadow: 0 3px 0 var(--primary-blue);
  border: none;
}

.btn-primary:hover {
  background-color: #ffd633;
  transform: translateY(-1px);
}

.btn-primary:active {
  transform: translateY(2px);
  box-shadow: 0 1px 0 var(--primary-blue);
}

.mobile-only {
  display: none;
}

.burger-menu,
.close-menu {
  background: none;
  border: none;
  color: var(--primary-blue);
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.nav-drawer {
  position: fixed;
  top: 0;
  left: -320px;
  width: 300px;
  max-width: 80vw;
  height: 100vh;
  background-color: var(--bg-white);
  box-shadow: 4px 0 15px rgba(0, 0, 0, 0.1);
  z-index: 1002;
  padding: var(--space-lg) var(--space-md);
  transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.nav-drawer.open {
  left: 0;
}

.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 50, 100, 0.5);
  z-index: 1001;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.drawer-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.close-menu {
  align-self: flex-end;
}

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

.drawer-nav a:not(.btn-primary) {
  font-size: 1.3rem;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--bg-soft);
}

.drawer-btn {
  text-align: center;
  margin-top: var(--space-sm);
}

.site-footer {
  background-color: var(--primary-blue);
  color: var(--bg-white);
  padding: var(--space-lg) var(--space-md) var(--space-md);
}

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

.footer-brand {
  font-size: 1.8rem;
  font-weight: 700;
  font-stretch: condensed;
  display: block;
  margin-bottom: var(--space-sm);
  color: var(--primary-yellow);
  text-transform: uppercase;
}

.footer-heading {
  font-size: 1.3rem;
  color: var(--primary-yellow);
  margin-bottom: var(--space-sm);
}

.tagline {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.4;
}

.contact-info,
.legal-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-style: normal;
}

.contact-info a,
.legal-nav a {
  color: var(--bg-white);
  text-decoration: none;
  font-size: 1.1rem;
  display: inline-block;
  width: fit-content;
  background-image: linear-gradient(
    var(--primary-yellow),
    var(--primary-yellow)
  );
  background-size: 0% 2px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.3s;
  padding-bottom: 2px;
}

.contact-info a:hover,
.legal-nav a:hover {
  background-size: 100% 2px;
}

.footer-bottom {
  max-width: 1200px;
  margin: var(--space-lg) auto 0;
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  font-size: 1rem;
}

.footer-bottom p {
  margin: 0;
}

@media (max-width: 768px) {
  .desktop-only {
    display: none;
  }
  .mobile-only {
    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;
}
/* --- injected by logo step --- */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.brand-logo {
  width: 28px;
  height: 28px;
  display: inline-block;
  flex: 0 0 auto;
}
.brand-logo * {
  vector-effect: non-scaling-stroke;
}
/* --- /injected by logo step --- */
