/* Reset + Base */
*,
*::before,
*::after { box-sizing: border-box; }
body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: #3b2f2f;
  background: #f7f1e3;
}
img { max-width: 100%; height: auto; display: block; }

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

/* Header */
.site-header {
  background: #7b4b2a;
  color: #fff;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 50;
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo-area {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.logo {
  height: 50px;
}
.company-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.company-name {
  font-size: 1.2rem;
  margin: 0;
}
.tagline {
  font-size: 0.85rem;
  margin: 0;
  opacity: 0.9;
}

/* Nav */
.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1rem;
}
.main-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}
.main-nav a:hover {
  text-decoration: underline;
}

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
}

/* Hero */
.hero {
  position: relative;
  text-align: center;
  color: #fff;
  padding: 5rem 0;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.5) saturate(1.1);
}
.hero .container {
  position: relative;
  z-index: 1;
}

/* Sections */
.section {
  padding: 4rem 0;
  text-align: center;
}
.section:nth-child(even) { background: #f1e6d1; }
.section:nth-child(odd) { background: #fff8ee; }
.section h2 {
  color: #7b4b2a;
  margin-bottom: 1rem;
}
.section p {
  color: #4a3a2a;
  max-width: 800px;
  margin: 0 auto 1rem;
  line-height: 1.6;
}

/* Footer */
.site-footer {
  background: #7b4b2a;
  color: #fff;
  text-align: center;
  padding: 1rem;
}
.site-footer .small {
  font-size: 0.8rem;
  opacity: 0.85;
}

/* Responsive: Mobile first adjustments */
@media (max-width: 768px) {
  .header-inner {
    flex-wrap: wrap;
  }
  .nav-toggle {
    display: block;
  }
  .main-nav {
    width: 100%;
    display: none;
    flex-direction: column;
    background: #6a3e21;
    padding: 1rem 0;
  }
  .main-nav.open {
    display: flex;
  }
  .main-nav ul {
    flex-direction: column;
    gap: 0.5rem;
  }
  .main-nav a {
    padding: 0.5rem;
  }
}
