:root {
  --c-white: #FFFFFF;
  --c-blue-light: #ADD8E6;
  --c-yellow: #FFFF00;
  --c-dark: #0f172a;
  --c-dark-blue: #1e293b;
  
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: system-ui, -apple-system, sans-serif;
  --font-condensed: 'Oswald', 'Roboto Condensed', sans-serif;

  --shadow-soft: 0 10px 30px -10px rgba(0,0,0,0.1);
  --shadow-hover: 0 20px 40px -12px rgba(173, 216, 230, 0.4);
  --radius-lg: 24px;
  --radius-md: 12px;
  
  --spacing-section: 4rem;
  --spacing-element: 1.5rem;
  
  --z-header: 1000;
  --z-overlay: 999;
}

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

body {
  font-family: var(--font-sans);
  background-color: var(--c-white);
  color: var(--c-dark);
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: var(--font-condensed);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--c-dark);
}

/* Header Styles */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: var(--z-header);
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
  border-bottom: 1px solid rgba(173, 216, 230, 0.3);
  transition: all 0.3s ease;
}

.site-header.scrolled {
  height: 70px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--c-dark);
  transition: transform 0.2s;
}

.brand-logo:hover {
  transform: scale(1.02);
}

.logo-icon svg {
  width: 40px;
  height: 40px;
  color: var(--c-blue-light);
  stroke: var(--c-dark);
}

.brand-name {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -0.03em;
  color: var(--c-dark-blue);
}

.desktop-nav .nav-list {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-link {
  text-decoration: none;
  color: var(--c-dark);
  font-weight: 500;
  font-size: 1rem;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--c-yellow);
  transition: width 0.3s ease;
}

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

.nav-link:hover::after {
  width: 100%;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--c-dark);
  padding: 8px;
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: rgba(255, 255, 255, 0.98);
  z-index: var(--z-overlay);
  transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  display: flex;
  justify-content: center;
  align-items: center;
}

.mobile-nav-overlay.active {
  right: 0;
}

.mobile-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--c-dark);
  padding: 8px;
}

.mobile-nav-list {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.mobile-link {
  font-family: var(--font-condensed);
  font-size: 2rem;
  text-decoration: none;
  color: var(--c-dark);
  font-weight: 700;
  transition: color 0.3s;
}

.mobile-link:hover {
  color: var(--c-blue-light);
}

/* Footer Styles */
.site-footer {
  background-color: var(--c-dark-blue);
  color: var(--c-white);
  padding: 4rem 2rem 2rem;
  margin-top: 4rem;
  border-top: 4px solid var(--c-blue-light);
}

.footer-top {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .brand-name-footer {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--c-white);
}

.footer-tagline {
  margin-top: 1rem;
  font-size: 1.1rem;
  color: var(--c-blue-light);
  font-style: italic;
  max-width: 300px;
}

.footer-heading {
  color: var(--c-yellow);
  font-family: var(--font-condensed);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-style: normal;
}

.contact-link {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #cbd5e1;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.contact-link:hover {
  color: var(--c-yellow);
}

.contact-link svg {
  flex-shrink: 0;
  stroke: var(--c-blue-light);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s;
}

.footer-links a:hover {
  color: var(--c-yellow);
  padding-left: 5px;
}

.footer-bottom {
  max-width: 1280px;
  margin: 2rem auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}

.disclaimer-box {
  background: rgba(255,255,255,0.05);
  padding: 1rem 2rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  border: 1px solid rgba(255, 255, 0, 0.2);
}

.disclaimer-box p {
  font-size: 0.9rem;
  color: #e2e8f0;
  font-weight: 500;
}

.icon-warning {
  width: 24px;
  height: 24px;
  stroke: var(--c-yellow);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.copyright {
  font-size: 0.85rem;
  color: #94a3b8;
}

/* SVG Utilities */
.icon-sm {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .contact-link {
    justify-content: center;
  }
  
  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .footer-links a:hover {
    padding-left: 0;
  }
}

@media (min-width: 769px) {
  .mobile-nav-overlay {
    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;}
