:root {
  --brand-dark: #1a1f1d;
  --brand-burgundy: #6f1d32;
  --brand-burgundy-dark: #551425;
  --brand-burgundy-soft: #f4e8ec;
  --brand-sand: #f7f3eb;
  --brand-gold: #c6a86b;
  --brand-muted: #6c757d;
  --brand-border: rgba(0,0,0,.08);
}

body {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--brand-dark);
  background: #fff;
}

h1, h2, h3, h4, .display-font {
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: -.02em;
}

.site-header {
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--brand-border);
}

.navbar-brand {
  font-weight: 700;
  letter-spacing: .02em;
}

.nav-link {
  font-weight: 500;
}

.nav-link.active, .nav-link:hover {
  color: var(--brand-burgundy) !important;
}

.hero {
  padding: 7rem 0 4rem;
  background: linear-gradient(rgba(20,20,20,.52), rgba(20,20,20,.52)), url('https://images.unsplash.com/photo-1504052434569-70ad5836ab65?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  color: #fff;
  min-height: 78vh;
  display: flex;
  align-items: center;
}

.hero-kicker, .section-kicker {
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .8rem;
  font-weight: 700;
  color: var(--brand-burgundy);
}

.hero-kicker {
  color: var(--brand-gold);
}

.btn-brand {
  background: var(--brand-burgundy);
  border-color: var(--brand-burgundy);
  color: #fff;
}

.btn-brand:hover, .btn-brand:focus {
  background: var(--brand-burgundy-dark);
  border-color: var(--brand-burgundy-dark);
  color: #fff;
}

.quick-links-card, .feature-card, .resource-card, .testimonial-card, .cta-box, .bio-box {
  border: 1px solid var(--brand-border);
  border-radius: 1.25rem;
  background: #fff;
  box-shadow: 0 1rem 2rem rgba(0,0,0,.04);
}

.quick-links-card {
  margin-top: -4rem;
  position: relative;
  z-index: 5;
}

.feature-card, .resource-card, .testimonial-card {
  height: 100%;
}

.icon-badge {
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(111,29,50,.10);
  color: var(--brand-burgundy);
  font-weight: 700;
}

.section-space {
  padding: 5rem 0;
}

.bg-sand {
  background: var(--brand-sand);
}

.bg-burgundy-soft {
  background: var(--brand-burgundy-soft);
}

.project-thumb {
  aspect-ratio: 4/3;
  border-radius: 1rem;
  object-fit: cover;
  width: 100%;
}

.testimonial-avatar {
  width: 4.5rem;
  height: 4.5rem;
  object-fit: cover;
  border-radius: 50%;
}

.page-hero {
  background: linear-gradient(135deg, #faf1f3, #f2e4e8);
  border-bottom: 1px solid var(--brand-border);
  padding-top: 7rem;
}

.small-muted {
  color: var(--brand-muted);
  font-size: .95rem;
}

.list-clean {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.list-clean li + li {
  margin-top: .85rem;
}

.footer {
  background: #141715;
  color: rgba(255,255,255,.82);
}

.footer a {
  color: rgba(255,255,255,.82);
  text-decoration: none;
}

.footer a:hover {
  color: #fff;
}

.resource-link {
  text-decoration: none;
  color: inherit;
}

@media (max-width: 991.98px) {
  .hero {
    min-height: auto;
    padding: 6rem 0 5rem;
  }
}

@media (max-width: 991.98px) {
  .quick-links-card {
    margin-top: 1.5rem;
  }
}

