:root {
  --primary: #D2B48C;      /* warm khaki/beige */
  --secondary: #556B2F;    /* olive green */
  --accent: #C46210;       /* terracotta/sunset */
  --dark: #5C4033;         /* deep brown */
  --light: #F5F0E1;        /* off-white */
  --text: #333;
}

* { margin:0; padding:0; box-sizing:border-box; }
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.7;
  color: var(--text);
  background: var(--light);
}

header {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(92, 64, 51, 0.95);
  color: white;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
  max-width: 1400px;
  margin: 0 auto;
}

.logo { font-size: 1.8rem; font-weight: bold; color: var(--primary); }

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.8rem;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover, .nav-links a.active { color: var(--primary); }

main { margin-top: 90px; }

.hero {
  height: 80vh;
  min-height: 500px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 2rem;
}

.hero h1 { font-size: 3.8rem; margin-bottom: 1rem; }
.hero p { font-size: 1.5rem; margin-bottom: 2rem; }

.btn {
  background: var(--accent);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.btn:hover { background: #a34e0d; }

section {
  padding: 5rem 5%;
  max-width: 1400px;
  margin: 0 auto;
}

h2 {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 2.5rem;
  color: var(--dark);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
}

.card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
  transition: transform 0.3s;
}

.card:hover { transform: translateY(-12px); }

.card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.card-content { padding: 1.8rem; text-align: center; }

.gallery-grid {
  column-count: 4;
  column-gap: 1.2rem;
}

.gallery-grid img {
  width: 100%;
  margin-bottom: 1.2rem;
  border-radius: 10px;
  break-inside: avoid;
}

form {
  max-width: 700px;
  margin: 0 auto;
  display: grid;
  gap: 1.2rem;
}

input, textarea {
  padding: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
}

footer {
  background: var(--dark);
  color: white;
  text-align: center;
  padding: 2.5rem 5%;
  margin-top: 4rem;
}

@media (max-width: 768px) {
  .nav-links { gap: 1rem; font-size: 0.95rem; flex-wrap: wrap; justify-content: center; }
  .hero h1 { font-size: 2.8rem; }
  .gallery-grid { column-count: 2; }
}