:root {
  --bg: #f5f3f2;
  --surface: #ffffff;
  --text: #141414;
  --muted: #6f6a67;
  --border: rgba(20, 20, 20, 0.1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--text);
  background: var(--bg);
}

.site-header,
.site-footer {
  background: rgba(245, 243, 242, 0.96);
  backdrop-filter: blur(8px);
}
.site-header {background: #fff;}
.navbar {
  border-bottom: 1px solid var(--border);
}

.brand-logo {
  width: 190px;
  max-width: 100%;
  height: auto;
}

.nav-link {
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text);
}

.nav-link:hover,
.nav-link:focus {
  color: var(--muted);
}

.hero-section {
  background: #ece9e7;
}

.hero-image {
  width: 100%;
  min-height: 280px;
  max-height: 78vh;
  object-fit: cover;
  object-position: center;
}

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

.eyebrow {
  margin-bottom: 0.9rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--muted);
}

.intro-section .lead {
  max-width: 52rem;
  margin-inline: auto;
}

.maker-image {
  border-radius: 1rem;
  width: min(100%, 460px);
}

.signature {
  font-weight: 600;
  letter-spacing: 0.04em;
}

.info-card,
.footer-note {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.75rem;
}

.info-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
}

.footer-note a {
  color: var(--text);
  text-decoration: none;
}

.footer-note a:hover,
.footer-note a:focus {
  text-decoration: underline;
}

.footer-rule {
  margin: 3rem 0 1.5rem;
  border-color: var(--border);
}

.btn-dark,
.btn-outline-dark {
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
}

@media (max-width: 991.98px) {
  .section-padding {
    padding: 4rem 0;
  }

  .navbar-collapse {
    padding-top: 1rem;
  }
}

@media (max-width: 575.98px) {
  .brand-logo {
    width: 160px;
  }

  .section-padding {
    padding: 3.5rem 0;
  }

  .display-5 {
    font-size: 2rem;
  }
}
