:root {
  --terracotta: #c45c26;
  --terracotta-dark: #9a4318;
  --sage: #3d5c4a;
  --sage-light: #5a7d68;
  --cream: #f7f1e8;
  --sand: #efe4d4;
  --ink: #2c241c;
  --muted: #6b5e52;
  --white: #fffdf9;
  --shadow: 0 18px 40px rgba(44, 36, 28, 0.12);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Nunito", system-ui, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
}

h1, h2, h3, h4, .display-font {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  letter-spacing: 0.01em;
}

a { color: var(--terracotta); text-decoration: none; }
a:hover { color: var(--terracotta-dark); }

.navbar {
  background: rgba(255, 253, 249, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(44, 36, 28, 0.06);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.45rem;
  color: var(--ink) !important;
  font-weight: 600;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(145deg, var(--terracotta), var(--sage));
  display: grid;
  place-items: center;
  color: white;
  font-size: 1.1rem;
}

.nav-link {
  color: var(--ink) !important;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.5rem 0.85rem !important;
}

.nav-link:hover, .nav-link.active { color: var(--terracotta) !important; }

.btn-primary {
  --bs-btn-bg: var(--terracotta);
  --bs-btn-border-color: var(--terracotta);
  --bs-btn-hover-bg: var(--terracotta-dark);
  --bs-btn-hover-border-color: var(--terracotta-dark);
  --bs-btn-active-bg: var(--terracotta-dark);
  border-radius: 999px;
  padding: 0.7rem 1.5rem;
  font-weight: 700;
}

.btn-outline-dark {
  border-radius: 999px;
  border-color: var(--ink);
  font-weight: 700;
  padding: 0.7rem 1.5rem;
}

.btn-sage {
  background: var(--sage);
  color: white;
  border-radius: 999px;
  padding: 0.7rem 1.5rem;
  font-weight: 700;
  border: none;
}
.btn-sage:hover { background: var(--sage-light); color: white; }

.hero {
  min-height: 88vh;
  background:
    linear-gradient(120deg, rgba(44, 36, 28, 0.62), rgba(61, 92, 74, 0.35)),
    url("../images/hero.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  color: white;
  position: relative;
}

.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.78rem;
  font-weight: 700;
  color: #f3d6c0;
}

.page-hero {
  padding: 8.5rem 0 4.5rem;
  background:
    linear-gradient(120deg, rgba(44, 36, 28, 0.7), rgba(196, 92, 38, 0.35)),
    url("../images/hero.jpg") center/cover no-repeat;
  color: white;
}

.section { padding: 5rem 0; }
.section-cream { background: var(--cream); }
.section-sage {
  background: var(--sage);
  color: white;
}

.eyebrow {
  color: var(--terracotta);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.75rem;
  font-weight: 800;
}

.service-card {
  background: white;
  border: 0;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 100%;
  transition: transform 0.25s ease;
}
.service-card:hover { transform: translateY(-8px); }
.service-card img {
  height: 210px;
  object-fit: cover;
  width: 100%;
}
.service-card .card-body { padding: 1.4rem 1.4rem 1.6rem; }

.blog-card {
  border: 0;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 100%;
  background: white;
}
.blog-card img { height: 220px; object-fit: cover; width: 100%; }

.footer {
  background: var(--ink);
  color: #e8ddd2;
  padding: 3.5rem 0 1.5rem;
}
.footer a { color: #f3d6c0; }
.footer h5 { color: white; font-family: "Cormorant Garamond", serif; }

.form-control, .form-select {
  border-radius: 0.75rem;
  padding: 0.85rem 1rem;
  border: 1px solid #ddd2c4;
  background: var(--white);
}
.form-control:focus {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 0.2rem rgba(196, 92, 38, 0.15);
}

.contact-panel {
  background: var(--cream);
  border-radius: 1.5rem;
  padding: 2rem;
}

.policy-content h2 { margin-top: 2rem; font-size: 1.7rem; }
.policy-content p, .policy-content li { color: var(--muted); }

.alert-success {
  border-radius: 1rem;
  background: #e7f0ea;
  border: none;
  color: var(--sage);
}

.map-wrap {
  border-radius: 1.5rem;
  overflow: hidden;
  min-height: 280px;
}

.map-wrap iframe {
  width: 100%;
  height: 320px;
  border: 0;
}

.quote-block {
  font-size: 1.6rem;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
}

@media (max-width: 991px) {
  .hero { min-height: 70vh; }
}
