:root {
  --color-blue: #0a2342;
  --color-blue-dark: #051426;
  --color-yellow: #f4d35e;
  --color-white: #ffffff;
  --color-charcoal: #1a1a1a;
  --color-gray-light: #f5f7fa;
  --color-text: #2c2c2c;
  
  --font-heading: 'Georgia', 'Times New Roman', serif;
  --font-body: system-ui, -apple-system, sans-serif;
  
  --radius-pill: 9999px;
  --radius-card: 16px;
  
  --spacing-unit: 8px;
  --shadow-soft: 0 4px 24px rgba(0, 0, 0, 0.08);
  
  --header-height: 80px;
}

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

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-gray-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* --- Header --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: var(--color-white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  z-index: 1000;
  display: flex;
  align-items: center;
}

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

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

.logo-icon svg {
  width: 32px;
  height: 32px;
  color: var(--color-yellow);
}

.brand-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 24px;
}

.nav-link {
  text-decoration: none;
  color: var(--color-charcoal);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

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

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: var(--color-yellow);
  color: var(--color-blue);
  font-weight: 700;
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(244, 211, 94, 0.4);
}

.burger-menu {
  display: none;
  background: none;
  border: none;
  color: var(--color-blue);
  cursor: pointer;
  padding: 8px;
}

/* --- Mobile Menu --- */
.mobile-nav-overlay {
  position: fixed;
  top: var(--header-height);
  left: 0;
  width: 100%;
  height: calc(100vh - var(--header-height));
  background-color: var(--color-white);
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
  display: flex;
  flex-direction: column;
  padding: 40px 24px;
}

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

.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: 2rem;
  text-decoration: none;
  color: var(--color-blue);
  font-weight: 700;
}

.mobile-cta {
  width: 100%;
  padding: 16px;
  font-size: 1.1rem;
}

/* --- Footer --- */
.site-footer {
  background-color: var(--color-blue);
  color: var(--color-white);
  padding: 64px 24px 24px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 0.8fr 1.2fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: var(--color-yellow);
}

.footer-tagline {
  font-size: 0.95rem;
  opacity: 0.9;
  max-width: 300px;
  line-height: 1.5;
}

.footer-heading {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--color-yellow);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a {
  color: var(--color-white);
  text-decoration: none;
  font-size: 0.95rem;
  opacity: 0.8;
  transition: opacity 0.2s;
}

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

.contact-details {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-link {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--color-white);
  text-decoration: none;
  font-size: 0.9rem;
  opacity: 0.8;
  transition: opacity 0.2s;
  line-height: 1.5;
}

.contact-link:hover {
  opacity: 1;
}

.contact-link svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--color-yellow);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.6;
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .desktop-nav {
    display: none;
  }
  
  .burger-menu {
    display: block;
  }
  
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .footer-brand-section {
    margin-bottom: 16px;
  }
}
/* 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;}
