:root {
  --color-yellow: #FFD54F;
  --color-yellow-hover: #FFC107;
  --color-grey-dark: #424242;
  --color-grey-light: #F5F5F5;
  --color-white: #FFFFFF;
  --color-border: #E0E0E0;
  --shadow-soft: 0 6px 24px rgba(0, 0, 0, 0.06);
  --radius-squircle: 20px;
  --space-xs: clamp(0.5rem, 1vw, 0.75rem);
  --space-sm: clamp(1rem, 2vw, 1.5rem);
  --space-md: clamp(1.5rem, 3vw, 2.5rem);
  --space-lg: clamp(3rem, 5vw, 5rem);
  --font-main: ui-sans-serif, system-ui, -apple-system, sans-serif;
}

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

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--color-yellow-hover);
}

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

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

.brand-logo {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-grey-dark);
}

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

.desktop-nav {
  display: none;
  flex: 1;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: var(--space-md);
}

.nav-list a {
  font-weight: 500;
  padding: var(--space-xs) 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex: 1;
  justify-content: flex-end;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-squircle);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-cta {
  background-color: var(--color-yellow);
  color: var(--color-grey-dark);
  border: 2px solid var(--color-yellow);
  box-shadow: var(--shadow-soft);
}

.btn-cta:hover {
  background-color: transparent;
  color: var(--color-grey-dark);
}

.menu-toggle {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-grey-dark);
}

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

/* Mobile Overlay */
.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--color-white);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.menu-close {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-md);
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-grey-dark);
}

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

.mobile-nav-list {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  font-size: 1.5rem;
}

.mobile-cta {
  margin-top: var(--space-sm);
  font-size: 1.125rem;
}

/* Footer Styles */
.site-footer {
  background-color: var(--color-white);
  border-top: 1px solid var(--color-border);
  padding: var(--space-lg) var(--space-md) var(--space-sm);
}

.footer-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  max-width: 1400px;
  margin: 0 auto;
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: var(--space-xs);
}

.footer-brand .footer-logo svg {
  height: 28px;
  width: auto;
}

.tagline {
  color: var(--color-grey-dark);
  opacity: 0.8;
}

.footer-title {
  font-size: 1.125rem;
  margin-bottom: var(--space-sm);
  font-weight: 600;
}

.contact-list, .legal-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.contact-list svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 4px;
  color: var(--color-yellow-hover);
}

.footer-bottom {
  max-width: 1400px;
  margin: var(--space-lg) auto 0;
  padding-top: var(--space-sm);
  border-top: 1px solid var(--color-border);
  text-align: center;
  font-size: 0.875rem;
  opacity: 0.7;
}

/* Responsive Grid: stack-at-md */
@media (min-width: 768px) {
  .header-container {
    justify-content: center;
  }
  .desktop-nav {
    display: block;
  }
  .brand-logo {
    margin: 0 var(--space-lg);
    flex: none;
  }
  .menu-toggle {
    display: none;
  }
  .footer-container {
    grid-template-columns: 2fr 1fr 1fr;
  }
}
/* 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;}
