/* ===== GLOBAL ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: #f8f7f4;
  color: #1a1a1a;
  line-height: 1.75;
  font-size: 17px;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== HEADER ===== */
header {
  background: #ffffff;
  border-bottom: 3px solid #D4AF37;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

.logo {
  height: 52px;
  width: auto;
  display: block;
}

/* ===== NAVIGATION ===== */
nav ul {
  list-style: none;
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

nav a {
  text-decoration: none;
  color: #1a1a1a;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 4px;
  transition: all 0.2s;
}

nav a:hover,
nav a.active {
  background: #1a5f2a;
  color: #fff;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  min-width: 220px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  z-index: 100;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu a {
  display: block;
  padding: 10px 16px;
  white-space: nowrap;
}

.dropdown-menu a:hover {
  background: #1a5f2a;
  color: #fff;
}

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: #1a5f2a;
  border-radius: 2px;
}

/* ===== MAIN CONTENT ===== */
main {
  padding: 40px 0 60px;
}

h1 {
  font-size: 2.1rem;
  color: #1a5f2a;
  margin-bottom: 12px;
  font-weight: 700;
}

h2 {
  font-size: 1.45rem;
  color: #1a5f2a;
  margin: 32px 0 12px;
  border-bottom: 2px solid #D4AF37;
  padding-bottom: 6px;
}

.content-placeholder {
  margin-bottom: 18px;
  background: #fff;
  border-left: 4px solid #D4AF37;
  padding: 16px 20px;
  border-radius: 0 6px 6px 0;
}

/* ===== CONTACT FORM ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 30px;
}

.contact-info p {
  margin-bottom: 12px;
}

form label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  color: #1a5f2a;
}

form input,
form textarea,
form select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  margin-bottom: 18px;
  background: #fff;
}

form textarea {
  min-height: 140px;
  resize: vertical;
}

form button {
  background: #1a5f2a;
  color: #fff;
  border: none;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s;
}

form button:hover {
  background: #144a21;
}

/* ===== FOOTER ===== */
footer {
  background: #1a5f2a;
  color: #f0f0e8;
  padding: 30px 0;
  margin-top: 40px;
  font-size: 0.95rem;
}

footer a {
  color: #D4AF37;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hamburger {
    display: flex;
  }

  nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 3px solid #D4AF37;
    padding: 15px 20px;
    gap: 4px;
  }

  nav ul.active {
    display: flex;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    display: none;
  }

  .dropdown.open .dropdown-menu {
    display: block;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}