:root {
  --cream: #f6f1e7;
  --sage: #8fca8f;
  --forest: #2b4b3f;
  --clay: #c87a5a;
  --ink: #1c1b1a;
  --mist: #e9efe6;
  --sand: #f2e4d6;
  --radius: 18px;
  --shadow: 0 20px 40px rgba(27, 42, 33, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 20% 20%, #fef7ee 0%, #f4efe6 45%, #eef3ec 100%);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

a:hover {
  color: var(--forest);
}

ul {
  padding-left: 20px;
  margin: 12px 0;
}

li {
  margin-bottom: 6px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: -999px;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
  background: #fff;
  padding: 10px 14px;
  border-radius: 8px;
  z-index: 1000;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(246, 241, 231, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(43, 75, 63, 0.1);
}

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

.logo {
  font-family: "Fraunces", "Georgia", serif;
  font-size: 26px;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  align-items: center;
  font-size: 15px;
}

.nav-links .button {
  background: var(--forest);
  color: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
}

.nav-links .button:hover {
  background: var(--clay);
  color: #fff;
}

.site-main {
  padding: 0 24px 80px;
}

.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 0;
}

.section h2 {
  font-family: "Fraunces", "Georgia", serif;
  font-size: clamp(28px, 3.6vw, 44px);
  margin: 0 0 18px;
  color: var(--forest);
}

.section h3 {
  font-family: "Fraunces", "Georgia", serif;
  font-size: 24px;
  margin: 0 0 12px;
}

.hero {
  background: linear-gradient(rgba(26, 39, 34, 0.65), rgba(26, 39, 34, 0.55)),
    url("../images/hero/hero.jpg");
  background-size: cover;
  background-position: center;
  border-radius: calc(var(--radius) * 1.5);
  min-height: 70vh;
  color: #fff;
  display: flex;
  align-items: center;
  padding: 80px 60px;
  box-shadow: var(--shadow);
  margin-top: 28px;
}

.hero h1 {
  font-family: "Fraunces", "Georgia", serif;
  font-size: clamp(40px, 6vw, 80px);
  margin: 0 0 12px;
}

.hero p {
  font-size: clamp(18px, 2.4vw, 26px);
  max-width: 620px;
  line-height: 1.4;
}

.hero .cta {
  margin-top: 26px;
  display: inline-block;
  padding: 14px 26px;
  border-radius: 999px;
  background: var(--sage);
  color: #0d2a1c;
  font-weight: 600;
}

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

.card {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.card strong {
  color: var(--forest);
}

.callout {
  background: linear-gradient(120deg, var(--mist), #fff);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
}

.testimonial {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  border-left: 6px solid var(--sage);
  box-shadow: var(--shadow);
}

.services-list a {
  text-decoration: underline;
}

.eyebrow {
  color: var(--clay);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.not-found {
  max-width: 980px;
}

.not-found > p {
  max-width: 720px;
  line-height: 1.7;
}

.not-found-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 36px;
}

.not-found-actions .cta {
  background: var(--forest);
  border-radius: 999px;
  color: #fff;
  display: inline-block;
  font-weight: 600;
  padding: 13px 22px;
}

.not-found-actions .cta.secondary {
  background: var(--sage);
  color: #0d2a1c;
}

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

.contact-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

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

.contact-form input,
.contact-form textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(28, 27, 26, 0.2);
  font-family: inherit;
}

.contact-form button {
  background: var(--forest);
  color: #fff;
  border: none;
  padding: 12px 18px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
}

.contact-form button:hover {
  background: var(--clay);
}

.site-footer {
  background: var(--forest);
  color: #fff;
  padding: 40px 24px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.footer-bottom {
  text-align: center;
  margin-top: 24px;
  opacity: 0.7;
}

.fade-up {
  animation: fadeUp 0.9s ease-out both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 760px) {
  .hero {
    padding: 50px 28px;
    min-height: 60vh;
  }
  .nav-links {
    font-size: 14px;
  }
}
