* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #1f2937;
  background: #ffffff;
  line-height: 1.6;
}

.container {
  width: min(1100px, 90%);
  margin: 0 auto;
}

.site-header {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  font-size: 1.25rem;
  font-weight: 700;
  text-decoration: none;
  color: #111827;
}

nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

nav a {
  color: #374151;
  text-decoration: none;
}

nav a:hover {
  color: #000000;
}

.hero {
  padding: 120px 0;
  background: #f3f4f6;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  font-weight: 700;
}

h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 1;
  margin: 12px 0 24px;
}

h2 {
  font-size: 2rem;
  margin-top: 0;
}

.intro {
  max-width: 700px;
  font-size: 1.2rem;
}

.button {
  display: inline-block;
  margin-top: 18px;
  padding: 12px 20px;
  background: #111827;
  color: white;
  text-decoration: none;
  border-radius: 6px;
}

.section {
  padding: 80px 0;
}

.alternate {
  background: #f9fafb;
}

.map-placeholder {
  min-height: 360px;
  display: grid;
  place-items: center;
  border: 2px dashed #9ca3af;
  border-radius: 10px;
  background: #ffffff;
}

footer {
  padding: 30px 0;
  border-top: 1px solid #e5e7eb;
  color: #6b7280;
}

@media (max-width: 700px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 18px 0;
  }

  .hero {
    padding: 80px 0;
  }
}
