* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #FDFBF8;
  color: #3b241d;
}

h1, h2, h3 {
  font-family: Georgia, serif;
  color: #3b241d;
  margin: 0;
}

p {
  line-height: 1.7;
}

.site-header {
  height: 90px;
  padding: 0 8%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #FDFBF8;
  border-bottom: 1px solid #ead8c8;
}

.logo {
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  gap: 9px;
}

.logo-main {
  font-family: Georgia, serif;
  font-size: 26px;
  letter-spacing: -1px;
  color: #c95f3f;
}

.logo-text span {
  display: block;
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: bold;
}

.logo-text em {
  display: block;
  font-family: Georgia, serif;
  font-size: 20px;
  color: #4d6f4a;
}

nav {
  display: flex;
  gap: 30px;
}

nav a {
  color: #3b241d;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
}

.hero {
  padding: 70px 8%;
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 60px;
  align-items: center;
  background: #fbf3eb;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  font-weight: bold;
  color: #4d6f4a;
  margin-bottom: 16px;
}

.hero h1 {
  font-size: 44px;
  line-height: 1.08;
  max-width: 520px;
}

.hero-description {
  font-size: 17px;
  max-width: 560px;
  margin: 24px 0;
}

.button {
  display: inline-block;
  background: #c95f3f;
  color: white;
  padding: 14px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
}

.hero-card {
  background: #fffaf5;
  border: 1px solid #ead8c8;
  border-radius: 24px;
  padding: 42px;
  box-shadow: 0 18px 45px rgba(70, 45, 30, 0.08);
}

.hero-card h3 {
  font-size: 28px;
  margin-bottom: 20px;
}

.hero-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero-card li {
  padding: 13px 0;
  border-bottom: 1px solid #ead8c8;
  font-size: 17px;
}

.hero-card li:last-child {
  border-bottom: none;
}

.intro-grid {
  padding: 90px 8%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px;
}

.content-card {
  background: white;
  border: 1px solid #ead8c8;
  border-radius: 22px;
  padding: 36px;
}

.content-card h2,
.services-preview h2 {
  font-size: 36px;
  margin-bottom: 18px;
}

.services-preview {
  padding: 40px 8% 80px;
  text-align: center;
}

.service-list {
  margin: 32px auto;
  max-width: 900px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-list div {
  background: white;
  border: 1px solid #ead8c8;
  border-radius: 16px;
  padding: 22px;
  font-weight: bold;
}

.text-link {
  color: #c95f3f;
  font-weight: bold;
  text-decoration: none;
}

footer {
  padding: 34px 8%;
  text-align: center;
  border-top: 1px solid #ead8c8;
  background: #FDFBF8;
}

.footer-logo span {
  font-family: Georgia, serif;
  font-size: 28px;
  color: #c95f3f;
}

.footer-logo em {
  font-family: Georgia, serif;
  color: #4d6f4a;
  font-size: 20px;
  margin-left: 6px;
}

@media (max-width: 850px) {
  .site-header {
    height: auto;
    padding: 22px 6%;
    flex-direction: column;
    gap: 18px;
  }

  nav {
    gap: 18px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 52px 6%;
  }

  .hero h1 {
    font-size: 38px;
  }

  .intro-grid,
  .service-list {
    grid-template-columns: 1fr;
  }
}
.page-hero {
  text-align: center;
  padding: 70px 8% 35px;
}
.page-hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.page-intro {
  max-width: 700px;
  margin: auto;
}

.service-banner {
  max-width: 1200px;
  margin: -10px auto 60px;
  padding: 0 8%;
}

.service-banner img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 24px;
}

.services-page {
  padding: 0 8% 80px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.service-card {
  background: white;
  border: 1px solid #ead8c8;
  border-radius: 22px;
  padding: 35px;
}

.service-card h2 {
  font-size: 30px;
  margin-bottom: 15px;
}

.cta-section {
  background: #fbf3eb;
  text-align: center;
  padding: 80px 8%;
}

@media (max-width: 850px) {
  .services-page {
    grid-template-columns: 1fr;
  }

  .page-hero h1 {
    font-size: 38px;
  }
}
```css
.green-text {
  color: #6B8F71;
}

.service-card h2 {
  color: #6B8F71;
}

.page-hero {
  background: #fbf3eb;
  border-radius: 0 0 30px 30px;
}

/* Logo image */

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

.footer-logo img {
  height: 70px;
  width: auto;
  display: block;
  margin: 0 auto 15px;
}

.logo {
  text-decoration: none;
}
```
.about-banner {
  max-width: 1200px;
  margin: 0 auto 30px;
  padding: 0 8%;
}

.about-banner {
  max-width: 1200px;
  margin: 0 auto 30px;
  padding: 0 8%;
  text-align: center;
}

.about-banner img {
  width: 100%;
  max-width: 900px;
  height: 320px;
  object-fit: cover;
  object-position: center;
  border-radius: 24px;
  display: block;
  margin: 0 auto;
}
/* Soft page entrance animation */
main,
.page-hero,
.hero {
  animation: fadeUp 0.8s ease forwards;
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Card hover effect */
.service-card,
.content-card {
  transition: all 0.3s ease;
}

.service-card:hover,
.content-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 35px rgba(70, 45, 30, 0.08);
}

/* Button hover effect */
.button {
  transition: all 0.3s ease;
}

.button:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

/* Image hover effect */
.service-banner img,
.about-banner img {
  transition: transform 0.5s ease;
}

.service-banner img:hover,
.about-banner img:hover {
  transform: scale(1.02);
}
nav a.active {
  color: #6B8F71;
}
.logo img {
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.03);
}
.content-card h2 {
  color: #6B8F71;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 14px;
  border: 1px solid #d8d2c8;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
}

.contact-form button {
  background: #6f8b6d;
  color: white;
  border: none;
  padding: 14px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
}

.contact-form button:hover {
  opacity: 0.9;
}
.services-intro {
  max-width: 850px;
  margin: 45px auto 60px;
  text-align: center;
}

.services-intro h2 {
  color: #6B8F71;
  font-size: 36px;
  margin-bottom: 18px;
}

.services-intro p {
  font-size: 20px;
  line-height: 1.8;
  color: #3b241d;
  margin-bottom: 10px;
}
.hero-image img {
  width: 100%;
  border-radius: 24px;
  display: block;
  object-fit: cover;
  height: 420px;
}
.hero {
  padding: 70px 8%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 55px;
  align-items: center;
  background: #fbf3eb;
}

.hero-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center;
  border-radius: 24px;
  display: block;
}

.hero h1 {
  font-size: 58px;
  line-height: 1.1;
  max-width: 600px;
}
/* Mobile fixes */
@media (max-width: 850px) {
  .site-header {
    height: auto;
    padding: 18px 6%;
    flex-direction: column;
    gap: 14px;
  }

  .logo img {
    height: 70px;
  }

  nav {
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
  }

  nav a {
    font-size: 13px;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 42px 6%;
    gap: 28px;
    text-align: center;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero h1 {
    font-size: 38px;
    line-height: 1.1;
    max-width: 100%;
  }

  .hero-description {
    font-size: 16px;
    max-width: 100%;
  }

  .hero-image {
    order: -1;
  }

  .hero-image img {
    height: 280px;
    width: 100%;
    object-fit: cover;
    object-position: center;
  }

  .page-hero {
    padding: 50px 6% 30px;
  }

  .page-hero h1 {
    font-size: 34px;
    line-height: 1.15;
  }

  .about-banner,
  .service-banner {
    padding: 0 6%;
    margin-bottom: 35px;
  }

  .about-banner img,
  .service-banner img {
    height: 260px;
    width: 100%;
    max-width: 100%;
  }

  .intro-grid,
  .services-page,
  .service-list {
    grid-template-columns: 1fr;
    padding-left: 6%;
    padding-right: 6%;
  }

  .content-card,
  .service-card {
    padding: 28px;
  }

  .services-intro {
    margin: 30px 6% 45px;
    padding: 0;
  }

  .services-intro h2 {
    font-size: 30px;
  }

  .services-intro p {
    font-size: 17px;
  }
}
.contact-info .btn {
  display: inline-block;
  margin-top: 10px;
}
.intake-button {
  display: inline-block;
  background: #6f8b6d;
  color: white;
  padding: 14px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
}

.intake-button:hover {
  opacity: 0.9;
}
