*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green: #2d6a4f;
  --green-light: #74c69d;
  --green-pale: #d8f3dc;
  --cream: #f1e3d6;
  --sand: #ead8bc;
  --sky: #c7d8d0;
  --brown: #5c4033;
  --dark: #111111;
  --text: #1a1a1a;
  --text-light: #f3e5d1;
  --muted: #5f5f5f;
  --border: #c8b6a0;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  font-size: 16px;
  line-height: 1.75;
}

/* NAV */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--dark);
  border-bottom: 1px solid var(--border);
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-logo {
  font-family: 'Fraunces', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-light);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.nav-logo span { color: #d8b891; }

nav ul {
  list-style: none;
  display: flex;
  gap: 1.75rem;
  align-items: center;
  flex-wrap: wrap;
}

nav ul a {
  text-decoration: none;
  color: #f3e5d1;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s;
}

nav ul a:hover { color: var(--green-light); }

.nav-btn {
  background: var(--brown);
  color: var(--cream);
  padding: 0.85rem 1.65rem;
  border-radius: 0;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform 0.2s, background 0.2s;
}

.nav-btn:hover { background: #462f22; transform: translateY(-1px); }

/* HERO */
#home {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1.5rem 4rem;
  background: var(--sand);
  position: relative;
  overflow: hidden;
}

.hero-inner {
  max-width: 680px;
  position: relative;
  background: var(--cream);
  border: 1px solid #c7b28f;
  border-radius: 0;
  padding: 2.5rem 2rem;
}

.hero-tag {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 0;
  margin-bottom: 1.4rem;
}

h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.8rem, 6vw, 4.4rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 1.25rem;
}

h1 em {
  font-style: italic;
  color: var(--green);
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 460px;
  margin: 0 auto 1.5rem;
}

.hero-highlights {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.highlight {
  background: var(--cream);
  border: 1px solid #74c69d;
  border-radius: 0;
  padding: 1rem 1.2rem;
  min-width: 190px;
}

.highlight strong {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.95rem;
  color: var(--brown);
}

.highlight span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.btn {
  display: inline-block;
  background: var(--green);
  color: var(--cream);
  text-decoration: none;
  padding: 0.95rem 2.4rem;
  border-radius: 0;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s, transform 0.15s;
  border: none;
  cursor: pointer;
}

.btn:hover { background: #1f5438; transform: translateY(-1px); }

/* SECTIONS */
section { padding: 3rem 1.2rem; position: relative; }

.section-inner { max-width: 1000px; margin: 0 auto; position: relative; z-index: 1; }

.section-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.8rem;
}

h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 0.85rem;
  color: var(--text);
}

.section-intro {
  color: var(--muted);
  max-width: 580px;
  margin-bottom: 3rem;
  font-size: 1.05rem;
}

#about { background: #dcc29c; }

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.2rem;
  margin-top: 1.5rem;
}

.about-card {
  background: #f3e1c4;
  border: 1px solid #c8ae8e;
  border-radius: 0;
  padding: 2rem;
}

.about-card h3 {
  font-family: 'Fraunces', serif;
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
}

.about-card p { color: var(--muted); line-height: 1.75; }

#services { background: #dfe4bc; }

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

.service-card {
  background: var(--sand);
  border-left: 5px solid var(--green-light);
  border-radius: 0;
  padding: 1.5rem;
  transition: transform 0.25s;
}

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

.service-icon {
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.9rem;
  border-radius: 0;
  background: var(--green-pale);
  color: var(--green);
  font-size: 1.15rem;
  font-weight: 700;
}

h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.55rem;
  color: var(--text);
}

.service-card p { color: var(--muted); font-size: 0.97rem; line-height: 1.75; }

#team { background: #e8d8bc; }

.team-intro-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.team-text p { color: var(--muted); margin-bottom: 1rem; }

.team-members {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.member {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--sand);
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 1rem 1.2rem;
}

.member-avatar {
  width: 52px;
  height: 52px;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-pale);
  font-weight: 700;
  color: var(--green);
  flex-shrink: 0;
}

.member-info strong { display: block; font-weight: 600; font-size: 0.97rem; }
.member-info span { font-size: 0.88rem; color: var(--muted); }

#reviews { background: #ecd6b0; }

.review-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem;
  margin-top: 1.5rem;
}

.review-card {
  position: relative;
  background: var(--sand);
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 2rem;
}

.review-card p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.85;
}

.review-card strong {
  display: block;
  margin-top: 1.5rem;
  color: var(--green);
  font-size: 0.95rem;
}

#contact { background: #e2cbad; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #ead2b3;
  padding: 2rem;
  border: 1px solid #c3a887;
  border-radius: 0;
}

.form-group { display: flex; flex-direction: column; gap: 0.45rem; }

label { font-size: 0.9rem; font-weight: 600; color: var(--muted); }

input, textarea {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  border-radius: 0;
  background: #f8f3e9;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
  resize: vertical;
}

input:focus, textarea:focus { border-color: var(--green-light); }

textarea { min-height: 140px; }

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background: #e6cda9;
  padding: 2rem;
  border: 1px solid #c3a887;
  border-radius: 0;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-detail-icon {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 0;
  background: var(--green-pale);
  flex-shrink: 0;
}

.contact-detail strong { display: block; font-weight: 600; font-size: 0.95rem; }
.contact-detail span { font-size: 0.95rem; color: var(--muted); }

.map-frame {
  border-radius: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  margin-top: 0.75rem;
}

footer {
  background: #111111;
  color: #f1e3d6;
  text-align: center;
  padding: 2rem;
  font-size: 0.9rem;
}

footer a { color: #f1e3d6; text-decoration: none; margin: 0 0.5rem; }
footer a:hover { color: #f6e7d6; }

@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  .hero-inner { padding: 2.2rem 1.5rem; }
  section { padding: 4rem 1.2rem; }
}

@media (max-width: 700px) {
  nav { flex-direction: column; align-items: stretch; }
  nav ul { justify-content: center; gap: 1rem; }
  .hero-highlights { flex-direction: column; align-items: stretch; }
  .team-intro-block, .contact-grid, .about-grid, .review-cards { grid-template-columns: 1fr; }
  .hero-inner { padding: 2rem 1.4rem; }
  .nav-btn { width: 100%; text-align: center; }
}
