:root {
  --terra: #b44d2a;
  --white: #f8f4ef;
  --menu-bg: rgba(248, 244, 239, 0.95);
  --text-dark: #7d3218;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", "Segoe UI", sans-serif;
  background: var(--terra);
  color: var(--white);
}

.menu-toggle {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 30;
  border: 2px solid var(--white);
  background: transparent;
  color: var(--white);
  padding: 0.55rem 1rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-family: inherit;
  cursor: pointer;
}

.menu {
  position: fixed;
  top: 4.25rem;
  right: 1rem;
  z-index: 25;
  display: grid;
  gap: 0.6rem;
  min-width: 180px;
  padding: 0.85rem;
  border: 2px solid var(--white);
  background: var(--menu-bg);
}

.menu a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-align: center;
  padding: 5rem 1rem 2rem;
}

.hero-image {
  display: block;
  width: auto;
  height: auto;
  max-width: min(95vw, 1200px);
  max-height: 80vh;
  object-fit: contain;
  border: 0;
  margin-inline: auto;
}

.content {
  min-height: 50vh;
  padding: 4rem 1.25rem;
  background: #a94524;
}

.content.alt {
  background: #943f20;
}

.content h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.6rem, 4vw, 2.25rem);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.content p {
  margin: 0;
  font-size: 1rem;
}

@media (max-width: 700px) {
  .hero {
    padding-top: 4.5rem;
  }
}
