:root {
  --color-steel: #263238;
  --color-steel-light: #455a64;
  --color-orange: #ff6f00;
  --color-orange-hover: #e65100;
  --color-bg: #ffffff;
  --color-surface: #f4f6f7;
  --color-text: #263238;
  --color-border: #cfd8dc;
  
  --font-main: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
  --radius-squircle: 16px;
  --spacing-unit: 1rem;
  --header-height: 80px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-main);
  font-stretch: condensed;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

/* Header Styles */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
  height: var(--header-height);
  transition: height 0.3s ease;
}

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

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--color-steel);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -0.5px;
}

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

.main-nav {
  display: none;
}

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

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

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.5rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-squircle);
  transition: all 0.2s ease;
  border: 2px solid transparent;
}

.btn-primary {
  background-color: transparent;
  color: var(--color-orange);
  border-color: var(--color-orange);
}

.btn-primary:hover {
  background-color: var(--color-orange);
  color: white;
}

.mobile-toggle {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-steel);
  padding: 0.5rem;
  display: block;
}

.mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.mobile-menu.is-active {
  max-height: 300px;
}

.mobile-nav-list {
  list-style: none;
  padding: 1.5rem;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-nav-list a {
  text-decoration: none;
  color: var(--color-steel);
  font-size: 1.25rem;
  font-weight: 600;
}

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

/* Footer Styles */
.site-footer {
  background-color: var(--color-steel);
  color: #ffffff;
  padding: 4rem 0 2rem;
  margin-top: auto;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-unit);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ffffff;
}

.footer-brand .footer-logo svg {
  color: var(--color-orange);
}

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

.footer-heading {
  color: var(--color-orange);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.875rem;
  margin-top: 0;
  margin-bottom: 1.5rem;
}

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

.contact-link {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: #ffffff;
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 0.2s;
  line-height: 1.4;
}

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

.contact-icon {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--color-orange);
}

.legal-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.legal-list a {
  color: #ffffff;
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.legal-list a:hover {
  opacity: 1;
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.875rem;
  opacity: 0.6;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1.5fr 1fr;
  }
  .footer-bottom {
    text-align: left;
  }
}
/* 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;}
