* {
  box-sizing: border-box;
}

:root {
  --bg: #f6f3ee;
  --surface: #ffffff;
  --surface-alt: #efe7db;
  --text: #2f2a24;
  --color: #7a6e60;font-size: 0.9rem;
  --primary: #6b4f36;
  --primary-dark: #4d3825;
  --border: #ddd0c0;
  --shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.hero,
.subpage-header {
  background: linear-gradient(135deg, #e9dfd2, #f8f5f0);
  border-bottom: 1px solid var(--border);
}

.nav {
  max-width: 1150px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: inline-flex;
  align-items: center;
}

.logo img {
  height: 90px;
  width: auto;
  display: block;
}

.nav ul {
  list-style: none;
  display: flex;
  gap: 18px;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}

.nav a {
  padding: 8px 12px;
  border-radius: 999px;
}

.nav a.active,
.nav a:hover {
  background: rgba(107, 79, 54, 0.12);
}

.hero-content,
.subpage-intro,
.section {
  max-width: 1150px;
  margin: 0 auto;
  padding: 32px 24px;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  align-items: center;
  gap: 32px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 1.6px;
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 6px;
}

h1, h2, h3 {
  line-height: 1.2;
  margin-top: 0;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.6rem);
  margin-bottom: 16px;
}

h2 {
  font-size: 2rem;
  margin-bottom: 14px;
}

.lead {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 760px;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.btn {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 700;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
  opacity: 0.96;
}

.btn.primary {
  background: var(--primary);
  color: #fff;
}

.btn.secondary {
  background: var(--surface);
  border: 1px solid var(--border);
}

.card,
.info-box,
.gallery-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 22px;
}

.highlight {
  background: var(--surface-alt);
}

.two-columns,
.contact-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 24px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.callout {
  text-align: center;
  padding-top: 10px;
  padding-bottom: 48px;
}

.checklist {
  margin: 0;
  padding-left: 18px;
}

.footer {
  text-align: center;
  color: var(--muted);
  padding: 30px 20px 40px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 24px;
}
.gallery-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 16px;
  border: 1px solid var(--border);
}
.placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  background: linear-gradient(135deg, #dbc6ab, #efe5d8);
  display: grid;
  place-items: center;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 16px;
  border: 1px dashed #b89e82;
}

.contact-form {
  display: grid;
  gap: 10px;
}

input,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
  font: inherit;
}

.form-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.95rem;
}

.message {
  padding: 14px 16px;
  border-radius: 12px;
  margin-bottom: 18px;
  font-weight: 600;
}

.message.success {
  background: #e8f7e8;
  border: 1px solid #a7d7a7;
  color: #215c21;
}

.message.error {
  background: #fdeaea;
  border: 1px solid #e0a9a9;
  color: #8a1f1f;
}

@media (max-width: 900px) {
  .hero-content,
  .two-columns,
  .contact-layout,
  .cards,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
  }
}
