:root {
  --navy: #1a2b4c;
  --navy-light: #243a63;
  --navy-dark: #111d33;
  --bronze: #d49a6a;
  --bronze-hover: #b8865d;
  --bronze-light: #e8c4a0;
  --pearl: #fdfbf7;
  --pearl-alt: #f5f1eb;
  --surface: #ffffff;
  --text-primary: #1f2937;
  --text-secondary: #4b5563;
  --text-muted: #9ca3af;
  --border: #e5e1db;
  --max-width: 1200px;
  --nav-height: 72px;
  --shadow-sm: 0 1px 3px rgba(26, 43, 76, 0.06);
  --shadow-md:
    0 4px 6px -1px rgba(26, 43, 76, 0.07), 0 2px 4px -1px rgba(26, 43, 76, 0.04);
  --radius: 12px;
}
*,
::after,
::before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}
body {
  background: var(--pearl);
  color: var(--text-secondary);
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  font-size: 1.125rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1,
h2,
h3,
h4 {
  font-family: "Playfair Display", Georgia, serif;
  color: var(--text-primary);
  line-height: 1.2;
}
h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.eyebrow {
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bronze);
  display: block;
  margin-bottom: 12px;
}
a {
  color: var(--navy);
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
}
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2rem);
}
section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(253, 251, 247, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(229, 225, 219, 0.6);
  transition: box-shadow 0.3s ease;
}
#navbar.scrolled {
  box-shadow: var(--shadow-md);
}
.be-logo,
.nav-container {
  display: flex;
  align-items: center;
}
.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2rem);
  height: 100%;
  justify-content: space-between;
  gap: 24px;
}
.be-logo {
  gap: 10px;
  cursor: pointer;
  flex-shrink: 0;
}
.be-logo-icon {
  width: 32px;
  height: auto;
}
.be-logotext {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  color: var(--navy);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-link {
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 8px 14px;
  border-radius: 6px;
  transition: all 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}
.nav-link:hover {
  color: var(--navy);
  background: rgba(26, 43, 76, 0.04);
}
.nav-link.active {
  color: var(--navy);
  font-weight: 600;
}
.nav-btn-primary,
.nav-cta {
  display: flex;
  align-items: center;
}
.nav-cta {
  flex-shrink: 0;
}
.nav-btn-primary {
  font-family: "Inter", sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 10px 24px;
  background: var(--bronze);
  color: #fff;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
  gap: 8px;
}
.nav-btn-primary:hover {
  background: var(--bronze-hover);
}
#mobile-overlay,
.nav-btn-arrow {
  align-items: center;
  justify-content: center;
}
.nav-btn-arrow {
  display: inline-flex;
  width: 24px;
  height: 24px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  font-size: 0.85rem;
  transition: transform 0.2s ease;
}
.nav-btn-primary:hover .nav-btn-arrow {
  transform: translateX(2px);
}
.mobile-close,
.mobile-toggle {
  background: 0 0;
  border: 0;
  color: var(--navy);
  cursor: pointer;
}
.mobile-toggle {
  display: none;
  font-size: 1.4rem;
  padding: 8px;
}
#mobile-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--pearl);
  z-index: 1001;
  flex-direction: column;
  gap: 8px;
  padding: 24px;
}
.mobile-close {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 2rem;
}
.mobile-link {
  font-family: "Inter", sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 8px;
  transition: all 0.2s ease;
}
.mobile-active,
.mobile-link:hover {
  color: var(--navy);
  font-weight: 600;
  background: rgba(26, 43, 76, 0.04);
}
.blog-hero {
  padding: calc(var(--nav-height) + clamp(3rem, 6vw, 5rem)) 0
    clamp(2rem, 4vw, 3rem);
  background: var(--navy);
  color: #fff;
  text-align: center;
}
.blog-hero .eyebrow {
  color: var(--bronze-light);
}
.blog-hero h1 {
  color: #fff;
  margin-bottom: 16px;
}
.blog-hero p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.7;
}
.blog-widget-section {
  background: var(--pearl);
  padding: clamp(2rem, 4vw, 3rem) 0 clamp(4rem, 8vw, 7rem);
}
.blog-widget-section .container,
.footer-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2rem);
}
#be-footer {
  background: var(--navy-dark);
  padding: clamp(3rem, 6vw, 5rem) 0 0;
  color: rgba(255, 255, 255, 0.6);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  margin-bottom: 12px;
}
.footer-logo-icon {
  width: 36px;
  height: auto;
}
.footer-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.footer-business {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: var(--bronze-light);
}
.footer-edified {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.5);
}
.footer-tagline {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}
.footer-heading {
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bronze-light);
  display: block;
  margin-bottom: 16px;
}
.footer-nav-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-nav-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 32px;
}
.footer-nav-subcol {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-link {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s ease;
  display: block;
  padding: 4px 0;
}
.footer-link:hover {
  color: #fff;
}
.footer-link-accent {
  color: var(--bronze-light);
}
.footer-link-accent:hover {
  color: var(--bronze);
}
.footer-sdg {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 32px 0;
}
.footer-sdg-icon {
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-sdg-title {
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--bronze-light);
  display: block;
  margin-bottom: 10px;
}
.footer-sdg-text {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
}
.footer-bottom-link {
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-bottom-link:hover {
  color: rgba(255, 255, 255, 0.6);
}
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 768px) {
  .mobile-toggle {
    display: block;
  }
  .nav-cta,
  .nav-links {
    display: none;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
