* {
  box-sizing: border-box;
}

.row::after {
  content: "";
  clear: both;
  display: block;
}

[class*="col-"] {
  float: left;
  padding: 15px;
}

/* For mobile phones: */

[class*="col-"] {
  width: 100%;
}

@media only screen and (min-width: 640px) {
  /* For tablets: */
  .col-m-1  { width: 8.33%; }
  .col-m-2  { width: 16.66%; }
  .col-m-3  { width: 25%; }
  .col-m-4  { width: 33.33%; }
  .col-m-5  { width: 41.66%; }
  .col-m-6  { width: 50%; }
  .col-m-7  { width: 58.33%; }
  .col-m-8  { width: 66.66%; }
  .col-m-9  { width: 75%; }
  .col-m-10 { width: 83.33%; }
  .col-m-11 { width: 91.66%; }
  .col-m-12 { width: 100%; }
}

@media only screen and (min-width: 1200px) {
  /* For desktop: */
  .col-1  { width: 8.33%; }
  .col-2  { width: 16.66%; }
  .col-3  { width: 25%; }
  .col-4  { width: 33.33%; }
  .col-5  { width: 41.66%; }
  .col-6  { width: 50%; }
  .col-7  { width: 58.33%; }
  .col-8  { width: 66.66%; }
  .col-9  { width: 75%; }
  .col-10 { width: 83.33%; }
  .col-11 { width: 91.66%; }
  .col-12 { width: 100%; }
}

img {
  width: 100%;
  height: auto;
}

.text-right  { text-align: right  !important; }

.text-left   { text-align: left   !important; }

.text-center { text-align: center !important; }

.right  { float: right !important; }

.left   { float: left  !important; }

.center {
  margin-left:  auto !important;
  margin-right: auto !important;
  float:        none !important;
}

.inverted {
  transform: scaleX(-1);
}

:root {
/* Background	#F9F9F6	Soft off-white with warmth — very clean base */
/* Primary	#4E6E5D	Modern forest green — grounding but clear */
/* Accent	#7BA29E	Calming muted teal — soft and professional */
/* Highlight	#A17C6B	Earthy rose-tan — adds warmth and depth subtly */
/* Text	#2E2E2E */

  --soft-off-white: #F9F9F6;
  --forest-green: #4E6E5D;
  --muted-teal: #7BA29E;
  --rose-tan: #A17C6B;
  --black: #2E2E2E;
  --teal: #B8E2DC;
  --white:       #ffffff;

  --background-color: var(--soft-off-white);
  --foreground-color: var(--black);
  --primary-color:  var(--forest-green);
  --accent-color:  var(--muted-teal);
  --highlight-color:  var(--rose-tan);

  --font-heading: 'Work Sans', sans-serif;
  --font-body: 'Inter', sans-serif;

  --font-size-base: 22px;
  --font-size-lg: 24px;
  --font-size-h1: 3rem;
  --font-size-h2: 2.4rem;
  --font-size-h3: 2rem;
}

.site-header {
  background-color: #ffffff;
  background-color: var(--white);
  padding: 1rem 0;
}

.site-header .header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }

.site-header .header-inner .logo {
      font-size: 1.8rem;
      font-weight: bold;
      color: #4E6E5D;
      color: var(--primary-color);
    }

.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 75%;
  max-width: 300px;
  height: 100%;
  background-color: #ffffff;
  background-color: var(--white);
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  padding: 2rem 1rem;
  gap: 1.5rem;
  transition: right 0.3s ease-in-out;
  z-index: 1000;
}

.mobile-drawer a {
    font-size: 1.2rem;
    letter-spacing: 0.5px;
    color: #2E2E2E;
    color: var(--foreground-color);
  }

.mobile-drawer a.active {
    color: #A17C6B !important;
    color: var(--highlight-color) !important;
  }

.mobile-drawer a:hover {
    color: #4E6E5D;
    color: var(--primary-color);
  }

.mobile-drawer.open {
    right: 0;
  }

.nav-toggle {
  background: none;
  border: none;
  font-size: 1.125rem;
  cursor: pointer;
  color: #4E6E5D;
  color: var(--primary-color);
  z-index: 1001;
}

.close-drawer {
  background: none;
  border: none;
  font-size: 2rem;
  color: #4E6E5D;
  color: var(--primary-color);
  align-self: flex-end;
  margin-bottom: 1rem;
  cursor: pointer;
}

/* Desktop Navigation */

.nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.nav a {
    font-weight: 500;
    letter-spacing: 0.5px;
  }

.nav a.active {
    color: #A17C6B !important;
    color: var(--highlight-color) !important;
  }

/* Responsive styles */

@media (min-width: 769px) {
  .nav-toggle {
    display: none;
  }

  .mobile-drawer {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .nav-toggle {
    display: block;
  }
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  font-family: var(--font-body);
  font-size: 22px;
  font-size: var(--font-size-base);
  line-height: 1.7;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "liga" on;
  background-color: #F9F9F6;
  background-color: var(--background-color);
  color: #2E2E2E;
  color: var(--foreground-color);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Work Sans', sans-serif;
  font-family: var(--font-heading);
  line-height: 1.2;
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: #4E6E5D;
  color: var(--primary-color);
}

h1 { font-size: 3rem; font-size: var(--font-size-h1); }

h2 { font-size: 2.4rem; font-size: var(--font-size-h2); }

h3 { font-size: 2rem; font-size: var(--font-size-h3); }

a {
  color: #7BA29E;
  color: var(--accent-color);
  -webkit-text-decoration: none;
  text-decoration: none;
  margin-left: 1rem;

}

a:hover {
    color: #4E6E5D;
    color: var(--primary-color);
    -webkit-text-decoration: underline;
    text-decoration: underline;
  }

.button {
  background: #4E6E5D;
  background: var(--primary-color);
  color: #F9F9F6;
  color: var(--soft-off-white);
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  -webkit-text-decoration: none;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: background 0.2s ease;
}

.button:hover {
    background: #A17C6B;
    background: var(--highlight-color);
  }

.container {
  max-width: 900px;
  margin: auto;
  padding: 2rem;
}

.hero {
  background: url(images/hero.jpg) center center / cover no-repeat;
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(52, 81, 9, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 4rem 2rem;
    z-index: 1;
  }

.hero .hero-content h2 {
      color: #F9F9F6;
      color: var(--soft-off-white);
    }

.about, .services {
  padding: 4rem 2rem;
  background-color: #F9F9F6;
  background-color: var(--soft-off-white);
}

.about h2, .services h2 {
  color: #4E6E5D;
  color: var(--primary-color);
  margin-bottom: 3rem;
}

/* Decorative accent under section titles */

.about h2::after,
.services h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: #A17C6B;
  background-color: var(--highlight-color);
  margin: 0.5rem 0;
  border-radius: 2px;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.service-card {
  flex: 1 1 250px;
  background-color: #ffffff;
  background-color: var(--white);
  border-left: 4px solid #A17C6B;
  border-left: 4px solid var(--highlight-color);
  padding: 1rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);

  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  /* border-radius: 12px; */
  /* cursor: pointer; */
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  }

.service-card h3 {
    margin-top: 0;
    color: #4E6E5D;
    color: var(--primary-color);
  }

.footer {
  background-color: #4E6E5D;
  background-color: var(--primary-color);
  color: #F9F9F6;
  color: var(--soft-off-white);
  text-align: center;
  padding: 2rem;
  margin-top: 4rem;
}

.footer a {
    color: #F9F9F6;
    color: var(--soft-off-white);
    margin: 0 0.5rem;
  }

/* blog styles */

.blog-list {
  padding: 4rem 2rem;
}

.section-title {
  font-size: 2rem;
  color: #4E6E5D;
  margin-bottom: 2rem;
}

.posts {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.post-summary h2 {
  margin: 0;
  color: #4E6E5D;
}

.post-summary p.summary {
  color: #2E2E2E;
  font-size: 1rem;
}

.post-summary .meta {
  font-size: 0.85rem;
  color: #999;
}

.blog-post h1 {
  color: #4E6E5D;
}

.blog-post .meta {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 1rem;
}

.blog-post .content {
  line-height: 1.8;
  font-size: 1.125rem;
}

