:root {
  --color-royal-blue: #4169E1;
  --color-royal-blue-dark: #274abb;
  --color-silver: #E5E7EB;
  --color-silver-light: #F3F4F6;
  --color-text-main: #020617;
  --color-text-muted: #475569;
  --color-white: #ffffff;
  
  --font-serif: 'Georgia', 'Times New Roman', serif;
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  --radius-pill: 9999px;
  --spacing-unit: 1rem;
  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--color-text-main);
  background-color: var(--color-silver-light);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-text-main);
}

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

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

.brand-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--color-royal-blue);
}

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

.brand-name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.main-nav {
  display: none;
}

@media (min-width: 768px) {
  .main-nav {
    display: block;
  }
}

.nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.5rem;
}

.nav-item {
  text-decoration: none;
  color: var(--color-text-main);
  font-weight: 600;
  padding: 0.5rem 1.5rem;
  border-radius: var(--radius-pill);
  transition: background-color 0.2s, color 0.2s;
}

.nav-item:hover,
.nav-item:focus {
  background-color: var(--color-silver);
  color: var(--color-royal-blue);
}

/* Mobile Toggle */
.mobile-toggle {
  display: block;
  background: none;
  border: none;
  color: var(--color-text-main);
  cursor: pointer;
  padding: 0.5rem;
}

@media (min-width: 768px) {
  .mobile-toggle {
    display: none;
  }
}

.main-nav.active {
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--color-white);
  padding: 1rem;
  box-shadow: 0 10px 10px rgba(0,0,0,0.05);
  text-align: center;
}

.main-nav.active .nav-list {
  flex-direction: column;
  gap: 1rem;
}

/* Footer Styles */
.site-footer {
  background-color: var(--color-silver);
  color: var(--color-text-main);
  padding: 4rem 0 2rem;
  margin-top: 4rem;
  border-top: 1px solid rgba(0,0,0,0.05);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-unit);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2.5rem;
}

.footer-brand-name {
  color: var(--color-royal-blue);
  font-size: 2rem;
  margin: 0 0 0.5rem;
  text-transform: uppercase;
}

.footer-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--color-text-muted);
  margin: 0;
}

.footer-contact-section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  background: var(--color-white);
  padding: 2rem;
  border-radius: 2rem;
  box-shadow: var(--shadow-soft);
  width: 100%;
  max-width: 600px;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--color-text-main);
  text-decoration: none;
  transition: color 0.2s;
  font-size: 0.95rem;
}

.contact-link:hover {
  color: var(--color-royal-blue);
}

.address-link {
  text-align: left;
  line-height: 1.4;
  align-items: flex-start;
}

.icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--color-royal-blue);
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

@media (min-width: 600px) {
  .contact-methods {
    flex-direction: row;
    justify-content: center;
    gap: 2rem;
  }
}

.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  border-top: 1px solid rgba(0,0,0,0.1);
  padding-top: 2rem;
}

.legal-nav {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.legal-nav a {
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  border-bottom: 1px solid transparent;
}

.legal-nav a:hover {
  color: var(--color-royal-blue);
  border-color: var(--color-royal-blue);
}

.copyright {
  color: var(--color-text-muted);
  font-size: 0.85rem;
  margin: 0;
}
/* 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;}
