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

  :root {
    --forest: #1a3a2a;
    --moss: #2d5a3d;
    --sage: #4a7c59;
    --teal: #2a6b6b;
    --teal-light: #3d8f8f;
    --earth: #c4a882;
    --sand: #e8dcc8;
    --cream: #f5f0e8;
    --warm-white: #faf8f4;
    --charcoal: #2a2a2a;
    --mid: #5a5a4a;
    --light-text: #8a8a7a;
    --accent: #b5722a;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--warm-white);
    color: var(--charcoal);
    overflow-x: hidden;
    cursor: none;
  }

  /* Custom cursor */
  .cursor {
    width: 8px; height: 8px;
    background: var(--sage);
    border-radius: 50%;
    position: fixed; top: 0; left: 0;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s, background 0.2s, width 0.2s, height 0.2s;
    mix-blend-mode: multiply;
  }
  .cursor-ring {
    width: 36px; height: 36px;
    border: 1.5px solid var(--sage);
    border-radius: 50%;
    position: fixed; top: 0; left: 0;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease, width 0.2s, height 0.2s, opacity 0.2s;
    opacity: 0.6;
  }
  a:hover ~ .cursor, button:hover ~ .cursor { width: 14px; height: 14px; }

  /* Pages */
  .page { display: none; min-height: 100vh; animation: fadeIn 0.5s ease; }
  .page.active { display: block; }
  @keyframes fadeIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 10px 60px;
    transition: background 0.4s, padding 0.3s, backdrop-filter 0.4s;
	background:#2C503D/*#F6EDE3#faf8f4eb*/;
	box-shadow: 0 1px 0 rgba(0,0,0,0.06);
	 border-bottom: 1px solid rgba(198,168,130,0.2);
  }
  nav.scrolled {
    /*background: rgba(250, 248, 244, 0.92);*/
    backdrop-filter: blur(12px);
    padding: 6px 60px;
    box-shadow: 0 1px 0 rgba(0,0,0,0.06);
  }
  .nav-logo {
    display: flex; flex-direction: column; gap: 2px; cursor: pointer;
  }
  .nav-logo-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px; font-weight: 600; color: var(--forest);
    letter-spacing: 0.02em; line-height: 1;
  }
  .nav-logo-tag {
    font-size: 9px; font-weight: 300; color: var(--sage);
    letter-spacing: 0.2em; text-transform: uppercase;
  }
  .nav-links {
    display: flex; gap: 36px; list-style: none; align-items: center;
  }
  .nav-links li {
	  position: relative;
	}
  .nav-links a {
    font-size: 12px; font-weight: 400; letter-spacing: 0.12em;
    text-transform: uppercase; color: #fff;/*var(--mid);*/
    text-decoration: none; cursor: pointer;
    position: relative; padding-bottom: 2px;
    transition: color 0.2s;
  }
  .nav-links a::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 0; height: 1px; background: var(--sage);
    transition: width 0.3s ease;
  }
  .nav-links a:hover, .nav-links a.active { color: #fff;/*var(--forest);*/ }
  .nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
  
  
  
  
  /********sub menu ***********/
		

			
			
			.nav-links .sub-menu {
			  position: absolute;
			  top: 100%;
			  left: 0;
              

			  background: #2C503D/*#728D74*/;
			  width: 280px;
			  min-width: 280px;
			  max-width: 280px;
			  padding: 14px 0;
			  /*border-radius: 0 0 14px 14px;
			  box-shadow: 0 1px 0 rgba(0, 0, 0, 1);*/
			  right: auto;
			  
			  margin: 0;
			  list-style: none;

			  
			  opacity: 0;
			  visibility: hidden;
			  transform: translateY(10px);

			  transition: all 0.25s ease;

			  /*border-radius: 10px;*/
			  box-shadow: 0 12px 30px rgba(0,0,0,0.9);
			  z-index: 9999;
			  
			  border-radius: 0 0 8px 8px;
			  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.18);
			  border-top: 3px solid #8fbf7a;
			  
			}

			/* Show dropdown on hover */
			.nav-links li:hover > .sub-menu {
			  opacity: 1;
			  visibility: visible;
			  transform: translateY(0);
			}

			/* Submenu items */
			.nav-links .sub-menu li {
			  width: 100%;
			}
			
			/* If Services dropdown is cutting from right */
			.nav-links > li.menu-item-has-children .sub-menu {
			  left: 0;
			  right: auto;
			}

			/* For last menu item dropdown */
			.nav-links > li:last-child .sub-menu {
			  left: auto;
			  right: 0;
			}
			

			.nav-links .sub-menu a {
			  display: block;
			  padding: 12px 22px;
			  font-size: 12px;
			  color: #fff;
			  line-height: 1.4;
			  letter-spacing: 1px;
			  text-decoration: none;
			  white-space: normal;
			  word-break: normal;
			  text-transform: uppercase;
  transition: all 0.3s ease;
			
			}

			/* Hover effect */
			.nav-links .sub-menu a:hover {
			  background: rgba(143, 191, 122, 0.54);
			  color: #fff;
			  padding-left: 36px;
			}
			
			.nav-links .sub-menu li a::before {
			  content: "";
			  position: absolute;
			  left: 20px;
			  top: 50%;
			  width: 0;
			  height: 2px;
			  background: #8fbf7a;
			  transform: translateY(-50%);
			  transition: all 0.3s ease;
			}

			.nav-links .sub-menu li a:hover::before {
			  width: 10px;
			}
			
			
			@media (max-width: 768px) {

			  .nav-links .sub-menu {
				position: static;
				opacity: 1;
				visibility: visible;
				transform: none;

				box-shadow: none;
				background: transparent;
				padding-left: 15px;
				padding-bottom: 0px !important;
			  }

			  .nav-links .sub-menu a {
				padding: 7px 0;
				font-size: 12px;
			  }

			}


/***************/
  
  
  
  #menu-item-19, .nav-cta {
    background: var(--forest) !important; color: var(--cream) !important;
    padding: 10px 22px !important; letter-spacing: 0.1em !important;
    transition: background 0.2s !important;
	border: 1px #fff solid;
  }
  #menu-item-19 a {
   color: var(--cream) !important;
  }
  
  #menu-item-19::after, .nav-cta::after { display: none !important; }
  #menu-item-19:ahover, .nav-cta:hover { background: var(--moss) !important; color: white !important; text-decoration:none !important }











  /* ===================== HOME PAGE ===================== */
  .hero {
    position: relative; min-height: 100vh;
    display: grid; grid-template-columns: 1fr 1fr;
    overflow: hidden;
  }
  .hero-left {
    background: var(--forest);
    display: flex; flex-direction: column; justify-content: center;
    padding: 160px 80px 80px 80px;
    position: relative; overflow: hidden;
  }
  .hero-left::before {
    content: '';
    position: absolute; top: -200px; left: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(74,124,89,0.25) 0%, transparent 70%);
    pointer-events: none;
  }
  .hero-eyebrow {
    font-size: 10px; font-weight: 400; letter-spacing: 0.25em;
    text-transform: uppercase; color: var(--earth);
    margin-bottom: 28px; display: flex; align-items: center; gap: 12px;
  }
  .hero-eyebrow::before {
    content: ''; width: 32px; height: 1px; background: var(--earth);
  }
  .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(44px, 5.5vw, 72px);
    font-weight: 300; line-height: 1.1;
    color: var(--cream); margin-bottom: 28px;
    letter-spacing: -0.01em;
  }
  .hero-title em { font-style: italic; color: var(--earth); }
  .hero-sub {
    font-size: 15px; font-weight: 300; line-height: 1.7;
    color: rgba(245, 240, 232, 0.65); max-width: 420px;
    margin-bottom: 48px;
  }
  .btn-primary {
    display: inline-flex; align-items: center; gap: 12px;
    background: transparent; border: 1px solid var(--earth);
    color: var(--earth); padding: 14px 28px;
    font-family: 'DM Sans', sans-serif;
    font-size: 11px; font-weight: 400; letter-spacing: 0.15em;
    text-transform: uppercase; cursor: pointer;
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
  }
  .btn-primary:hover { background: var(--earth); color: var(--forest); }
  .btn-primary .arrow { transition: transform 0.3s; }
  .btn-primary:hover .arrow { transform: translateX(4px); }
  .hero-right {
    position: relative; overflow: hidden;
    background: var(--cream);
  }
  .hero-right-inner {
    position: absolute; inset: 0;
    /*background:
      linear-gradient(180deg, transparent 40%, var(--cream) 100%),
      url('https://images.unsplash.com/photo-1518173946687-a4c8892bbd9f?w=900&q=80') center/cover no-repeat;*/
  }
  .hero-stat-block {
    position: absolute; bottom: 60px; left: 40px; right: 40px;
    display: grid; grid-template-columns: 1fr 1fr 1fr;
    gap: 1px; background: rgba(74,124,89,0.15);
  }
  .hero-stat {
    background: rgba(245,240,232,0.92); backdrop-filter: blur(8px);
    padding: 24px 20px;
  }
  .hero-stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px; font-weight: 300;
    color: var(--forest); line-height: 1;
    margin-bottom: 6px;
  }
  .hero-stat-label {
    font-size: 10px; font-weight: 400; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--mid);
  }
  .hero-scroll {
    position: absolute; bottom: 32px; left: 80px;
    display: flex; align-items: center; gap: 10px;
    font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase;
    color: rgba(245,240,232,0.4);
  }
  .scroll-line {
    width: 1px; height: 48px; background: rgba(245,240,232,0.2);
    position: relative; overflow: hidden;
  }
  .scroll-line::after {
    content: ''; position: absolute; top: -48px; left: 0;
    width: 1px; height: 48px; background: var(--earth);
    animation: scrollAnim 2s ease-in-out infinite;
  }
  @keyframes scrollAnim {
    0% { top: -48px; } 100% { top: 48px; }
  }

  /* What we do section */
  .section { padding: 120px 80px; }
  .section-sm { padding: 80px 80px; }
  .section-label {
    font-size: 9px; font-weight: 400; letter-spacing: 0.3em;
    text-transform: uppercase; color: var(--sage);
    margin-bottom: 20px; display: flex; align-items: center; gap: 12px;
  }
  .section-label::before { content: ''; width: 24px; height: 1px; background: var(--sage); }
  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 3.5vw, 52px);
    font-weight: 300; line-height: 1.15;
    color: var(--forest); margin-bottom: 20px;
  }
  .section-title em { font-style: italic; }
  .section-body {
    font-size: 15px; font-weight: 300; line-height: 1.8;
    color: var(--mid); max-width: 560px;
  }

  .focus-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 1px; background: var(--sand);
    border: 1px solid var(--sand);
    margin-top: 64px;
  }
  .focus-card {
    background: var(--warm-white); padding: 40px 32px;
    transition: background 0.3s;
    position: relative; overflow: hidden;
  }
  .focus-card::before {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 100%; height: 3px;
    background: var(--sage); transform: scaleX(0);
    transform-origin: left; transition: transform 0.4s ease;
  }
  .focus-card:hover { background: var(--cream); }
  .focus-card:hover::before { transform: scaleX(1); }
  .focus-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px; font-weight: 300;
    color: var(--sand); line-height: 1;
    margin-bottom: 16px;
  }
  .focus-title {
    font-size: 13px; font-weight: 500; letter-spacing: 0.05em;
    color: var(--forest); margin-bottom: 12px;
    text-transform: uppercase;
  }
  .focus-body {
    font-size: 13px; font-weight: 300; line-height: 1.7;
    color: var(--mid);
	margin-bottom:20px;
  }

  /* Clients strip */
  .clients-strip {
    background: var(--forest); padding: 64px 80px;
  }
  .clients-label {
    font-size: 9px; font-weight: 400; letter-spacing: 0.3em;
    text-transform: uppercase; color: var(--earth);
    margin-bottom: 40px; text-align: center;
  }
  .clients-grid {
    display: flex; flex-wrap: wrap; gap: 0;
    justify-content: center;
  }
  .client-item {
    padding: 20px 48px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px; font-weight: 400;
    color: rgba(245,240,232,0.35);
    letter-spacing: 0.05em;
    transition: color 0.3s;
    border-right: 1px solid rgba(255,255,255,0.06);
    white-space: nowrap;
  }
  .client-item:last-child { border-right: none; }
  .client-item:hover { color: var(--earth); }

  /* Featured services preview */
  .services-preview {
    display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1px;
    background: var(--sand);
    border: 1px solid var(--sand);
    margin-top: 64px;
  }
  .service-card {
    background: var(--warm-white); padding: 48px 36px;
    cursor: pointer; transition: background 0.3s;
    position: relative;
  }
  .service-card:hover { background: var(--forest); }
  .service-card:hover .sc-num,
  .service-card:hover .sc-title,
  .service-card:hover .sc-body,
  .service-card:hover .sc-link { color: var(--cream) !important; }
  .service-card:hover .sc-link { opacity: 1; }
  .sc-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 13px; font-weight: 300;
    color: var(--sage); margin-bottom: 24px;
    letter-spacing: 0.1em;
  }
  .sc-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px; font-weight: 400;
    color: var(--forest); margin-bottom: 16px;
    line-height: 1.2;
    transition: color 0.3s;
  }
  .sc-body {
    font-size: 13px; font-weight: 300; line-height: 1.7;
    color: var(--mid); margin-bottom: 28px;
    transition: color 0.3s;
  }
  .sc-link {
    font-size: 10px; font-weight: 400; letter-spacing: 0.15em;
    text-transform: uppercase; color: var(--sage);
    opacity: 0.6; transition: opacity 0.3s, color 0.3s;
  }
  .sc-link a{
    color: #4a7c59 !important;
	text-decoration:none;
  }
  .sc-link a:hover{
    text-decoration:underline;
  }

  /* ===================== ABOUT PAGE ===================== */
  .about-hero {
    padding: 160px 80px 80px;
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
    align-items: start;
    background: var(--warm-white);
    position: relative;
  }
  .about-hero::after {
    content: ''; position: absolute;
    top: 0; right: 0; width: 40%;
    height: 100%; background: var(--cream);
    z-index: 0;
  }
  .about-hero > * { position: relative; z-index: 1; }
  .about-img {
    width: 100%; aspect-ratio: 3/4;
    object-fit: cover; display: block;
  }
  .about-text-block { padding-top: 60px; }
  .about-mission {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(20px, 2.2vw, 28px);
    font-weight: 300; line-height: 1.5;
    color: var(--forest); margin-bottom: 32px;
    font-style: italic;
  }
  .divider {
    width: 48px; height: 1px;
    background: var(--sage); margin: 32px 0;
  }

  .values-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
    padding: 80px; background: var(--cream);
  }
  .value-item {align-content: flex-end;}
  .value-icon {
    width: 32px; height: 32px; margin-bottom: 16px;
    color: var(--sage);
  }
  .value-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px; font-weight: 400;
    color: var(--forest); margin-bottom: 10px;
  }
  .value-body {
    font-size: 13px; font-weight: 300; line-height: 1.8;
    color: var(--mid);
  }

  .team-section {
    padding: 100px 80px; background: var(--warm-white);
  }
  .team-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 2px; background: var(--sand);
    margin-top: 60px;
  }
  .team-card {
    background: var(--warm-white); padding: 36px;
    transition: background 0.3s;
  }
  .team-card:hover { background: var(--cream); }
  .team-initial {
    width: 52px; height: 52px;
    background: var(--forest);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px; font-weight: 300;
    color: var(--earth); margin-bottom: 20px;
  }
  .team-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px; font-weight: 400;
    color: var(--forest); margin-bottom: 4px;
  }
  .team-role {
    font-size: 10px; font-weight: 400; letter-spacing: 0.15em;
    text-transform: uppercase; color: var(--sage); margin-bottom: 16px;
  }
  .team-bio {
    font-size: 13px; font-weight: 300; line-height: 1.7;
    color: var(--mid);
  }

  /* ===================== SERVICES PAGE ===================== */
  .services-hero {
    background: var(--forest); padding: 160px 80px 100px;
    position: relative; overflow: hidden;
  }
  .services-hero::before {
    content: '';
    position: absolute; bottom: -100px; right: -100px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(45,90,61,0.5) 0%, transparent 70%);
  }
  .services-hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(48px, 6vw, 80px);
    font-weight: 300; color: var(--cream);
    line-height: 1.05; max-width: 700px;
    position: relative; z-index: 1;
  }
  .services-hero-title em { font-style: italic; color: var(--earth); }

  .services-list { padding: 100px 80px; }
  .service-item {
    display: grid; grid-template-columns: 80px 1fr 1fr;
    gap: 48px; align-items: start;
    padding: 60px 0;
    border-bottom: 1px solid var(--sand);
    transition: padding-left 0.3s;
  }
  .service-item:first-child { border-top: 1px solid var(--sand); }
  .service-item:hover { padding-left: 12px; }
  .svc-idx {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px; font-weight: 300;
    color: var(--sand); padding-top: 6px;
  }
  .svc-header {}
  .svc-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px; font-weight: 400;
    color: var(--forest); margin-bottom: 12px;
  }
  .svc-tagline {
    font-size: 13px; font-weight: 300; line-height: 1.7;
    color: var(--mid);
  }
  .svc-list { padding-top: 6px; }
  .svc-list-title {
    font-size: 9px; font-weight: 500; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--sage);
    margin-bottom: 16px;
  }
  .svc-list ul {
    list-style: none; display: flex; flex-direction: column; gap: 10px;
  }
  .svc-list li {
    font-size: 13px; font-weight: 300; color: var(--mid);
    display: flex; align-items: flex-start; gap: 10px;
  }
  .svc-list li::before {
    content: '→'; color: var(--sage); flex-shrink: 0; font-size: 12px; margin-top: 1px;
  }

  /* ===================== INSIGHTS PAGE ===================== */
  .insights-hero {
    padding: 160px 80px 60px;
    background: var(--cream);
  }
 /* .insights-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
    background: var(--sand); border: 1px solid var(--sand);
    padding: 0 80px 100px;
    background: transparent;
  }
  .insight-featured {
    grid-column: 1 / -1;
    background: var(--forest);
    display: grid; grid-template-columns: 1fr 1fr; gap: 0;
    margin-bottom: 2px;
    cursor: pointer;
    transition: opacity 0.3s;
  }
  .insight-featured:hover { opacity: 0.92; }
  .insight-featured-img {
    background: url('https://images.unsplash.com/photo-1504711434969-e33886168f5c?w=800&q=80') center/cover;
    min-height: 400px;
  }
  .insight-featured-text {
    padding: 60px 48px;
    display: flex; flex-direction: column; justify-content: center;
  }
.insight-img {
    min-height: 100px;  
    overflow: hidden;
	margin: -40px ;
}

.insight-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;  
	display: block;
}
  .insight-tag {
    font-size: 9px; font-weight: 400; letter-spacing: 0.25em;
    text-transform: uppercase; color: var(--earth);
    margin-bottom: 20px;
  }
  .insight-featured-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px; font-weight: 300;
    color: var(--cream); line-height: 1.2;
    margin-bottom: 16px;
  }
  .insight-excerpt {
    font-size: 13px; font-weight: 300; line-height: 1.7;
    color: rgba(245,240,232,0.65); margin-bottom: 28px;
  }
  .insight-meta {
    font-size: 10px; color: rgba(245,240,232,0.4);
    letter-spacing: 0.1em;
  }
  .insight-card {
    background: var(--warm-white); padding: 40px 40px;
    cursor: pointer; transition: background 0.3s;
    border: 1px solid var(--sand);
  }
  .insight-card:hover { background: var(--cream); }
  .insight-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px; font-weight: 400;
    color: var(--forest); line-height: 1.2;
    margin-bottom: 12px; margin-top: 12px;
  }
  .insight-card-excerpt {
    font-size: 13px; font-weight: 300; line-height: 1.7;
    color: var(--mid); margin-bottom: 20px;
  }
  .read-more {
    font-size: 10px; font-weight: 400; letter-spacing: 0.15em;
    text-transform: uppercase; color: var(--sage);
    display: flex; align-items: center; gap: 8px;
  }
  .read-more::after { content: '→'; transition: transform 0.2s; }
  .insight-card:hover .read-more::after { transform: translateX(4px); }
  
  */
  
  
  .insights-section {
  padding: 70px 0;
  background: #f7f9f5;
}
/*
.insights-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}*/
.insights-container {
  width: 100%;
  padding: 0 80px; /* optional spacing */
}
.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.insight-card {
  background: #fff;
  padding: 24px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.insight-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

.insight-img {
  height: 280px;
  margin: -24px -24px 22px -24px;
  overflow: hidden;
}

.insight-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: all 0.4s ease;
}

.insight-card:hover .insight-img img {
  transform: scale(1.06);
}

.insight-tag {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 600;
  color: #2f6f4e;
  background: #e8f4ed;
  padding: 6px 12px;
  border-radius: 50px;
}

.insight-card-title {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.25;
  color: #1f2d1f;
}

.insight-card-excerpt {
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.7;
  color: #5f6f62;
}

.insight-meta {
  font-size: 12px;
  color: #8a958c;
  margin-bottom: 18px;
}

.read-more {
  display: inline-block;
  color: #2f6f4e;
  font-weight: 700;
  text-decoration: none;
}

.read-more:hover {
  text-decoration: underline;
}

/* Mobile */
@media (max-width: 768px) {
	
	
  .insights-grid {
    grid-template-columns: 1fr;
  }
  
  .insights-container {
  width: 100%;
  padding: 0 0px !important;  /* optional spacing */
}

  .insight-img {
    height: 220px;
  }

  .insight-card-title {
    font-size: 21px;
  }
}
  
  
  
  
  
  
  
  

  /* ===================== CONTACT PAGE ===================== */
  .contact-page {
    display: grid; grid-template-columns: 1fr 1fr; min-height: 100vh;
  }
  .contact-left {
    background: var(--forest); padding: 160px 80px 80px;
    position: relative; overflow: hidden;
  }
  .contact-left::before {
    content: '';
    position: absolute; bottom: -150px; left: -150px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(42,107,107,0.3) 0%, transparent 70%);
  }
  .contact-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(40px, 4.5vw, 64px);
    font-weight: 300; color: var(--cream);
    line-height: 1.1; margin-bottom: 32px;
    position: relative; z-index: 1;
  }
  .contact-title em { font-style: italic; color: var(--earth); }
  .contact-sub {
    font-size: 14px; font-weight: 300; line-height: 1.8;
    color: rgba(245,240,232,0.6); max-width: 380px;
    margin-bottom: 60px; position: relative; z-index: 1;
  }
  .contact-details { position: relative; z-index: 1; }
  .contact-detail {
    display: flex; flex-direction: column; gap: 4px;
    padding: 24px 0; border-top: 1px solid rgba(255,255,255,0.08);
  }
  .contact-detail:last-child { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .cd-label {
    font-size: 9px; font-weight: 400; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--earth);
  }
  .cd-value {
    font-size: 15px; font-weight: 300; color: var(--cream);
  }
  .contact-right {
    background: var(--cream); padding: 160px 80px 80px;
    display: flex; flex-direction: column; justify-content: center;
  }
  .form-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px; font-weight: 300;
    color: var(--forest); margin-bottom: 48px;
  }
  .form-group { margin-bottom: 32px; }
  .form-label {
    display: block; font-size: 9px; font-weight: 400;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--sage); margin-bottom: 10px;
  }
  .form-input, .form-textarea {
    width: 100%; background: transparent;
    border: none; border-bottom: 1px solid var(--sand);
    padding: 12px 0; font-family: 'DM Sans', sans-serif;
    font-size: 15px; font-weight: 300; color: var(--charcoal);
    outline: none; transition: border-color 0.3s;
    resize: none;
  }
  .form-input:focus, .form-textarea:focus {
    border-bottom-color: var(--sage);
  }
  .form-textarea { height: 100px; }
  .form-select {
    width: 100%; background: transparent;
    border: none; border-bottom: 1px solid var(--sand);
    padding: 12px 0; font-family: 'DM Sans', sans-serif;
    font-size: 15px; font-weight: 300; color: var(--mid);
    outline: none; cursor: pointer; appearance: none;
  }
  .btn-submit {
    background: var(--forest); color: var(--cream);
    border: none; padding: 16px 40px;
    font-family: 'DM Sans', sans-serif;
    font-size: 11px; font-weight: 400; letter-spacing: 0.15em;
    text-transform: uppercase; cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    margin-top: 8px;
  }
  .btn-submit:hover { background: var(--sage); transform: translateY(-1px); }
  .form-success {
    display: none; text-align: center; padding: 40px;
    background: rgba(74,124,89,0.08); border: 1px solid var(--sage);
  }
  .form-success.show { display: block; }
  .form-success-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px; color: var(--forest); margin-bottom: 12px;
  }

  /* FOOTER */
  footer {
    background: var(--charcoal); padding: 80px;
    display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
  }
  .footer-brand-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px; font-weight: 400;
    color: var(--cream); margin-bottom: 8px;
  }
  .footer-brand-tag {
    font-size: 9px; letter-spacing: 0.2em;
    text-transform: uppercase; color: rgba(255,255,255,0.3);
    margin-bottom: 20px;
  }
  .footer-desc {
    font-size: 12px; font-weight: 300; line-height: 1.7;
    color: rgba(255,255,255,0.35); max-width: 220px;
  }
  .footer-col-title {
    font-size: 9px; font-weight: 400; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--earth);
    margin-bottom: 20px;
  }
  .footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
  .footer-links a {
    font-size: 12px; font-weight: 300;
    color: rgba(255,255,255,0.45); text-decoration: none;
    cursor: pointer; transition: color 0.2s;
  }
  .footer-links a:hover { color: var(--earth); }
  .footer-bottom {
    background: var(--charcoal); padding: 24px 80px;
    border-top: 1px solid rgba(255,255,255,0.06);
    display: flex; align-items: center; justify-content: space-between;
  }
  .footer-copy {
    font-size: 11px; color: rgba(255,255,255,0.2);
    letter-spacing: 0.05em;
  }
  .footer-legal {
    display: flex; gap: 24px;
    list-style: none;
  }
  .footer-legal a {
    font-size: 11px; color: rgba(255,255,255,0.2);
    text-decoration: none; cursor: pointer;
    transition: color 0.2s;
  }
  .footer-legal a:hover { color: rgba(255,255,255,0.5); }

  /* CTA Banner */
  .cta-banner {
    background: var(--teal); padding: 100px 80px;
    display: grid; grid-template-columns: 1fr auto;
    align-items: center; gap: 60px;
  }
  .cta-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(28px, 3vw, 44px);
    font-weight: 300; color: var(--cream); line-height: 1.2;
  }
  .cta-title em { font-style: italic; color: rgba(232,220,200,0.8); }
  .btn-cta {
    background: var(--cream); color: var(--teal);
    border: none; padding: 16px 36px;
    font-family: 'DM Sans', sans-serif;
    font-size: 11px; font-weight: 500; letter-spacing: 0.15em;
    text-transform: uppercase; cursor: pointer;
    white-space: nowrap;
    transition: background 0.3s, transform 0.2s;
  }
  .btn-cta:hover { background: var(--earth); color: var(--forest); transform: translateY(-2px); }

  /* Mobile hamburger */
  .hamburger { display: none; }

  @media (max-width: 900px) {
    nav { padding: 20px 24px; }
    nav.scrolled { padding: 14px 24px; }
    .nav-links { display: none; }
    .hamburger {
      display: flex; flex-direction: column; gap: 5px;
      background: none; border: none; cursor: pointer; padding: 4px;
    }
    .hamburger span {
      display: block; width: 22px; height: 1.5px;
      background: #fff;/*var(--forest);*/
    }
    .hero { grid-template-columns: 1fr; }
    .hero-right { display: none; }
    .hero-left { padding: 140px 24px 80px; }
    .section, .section-sm { padding: 80px 24px; }
    .focus-grid { grid-template-columns: 1fr 1fr; }
    .services-preview { grid-template-columns: 1fr; }
    .clients-strip { padding: 60px 24px; }
    .client-item { padding: 16px 24px; font-size: 15px; }
    .about-hero { grid-template-columns: 1fr; padding: 140px 24px 60px; }
    .about-hero::after { display: none; }
    .values-grid { grid-template-columns: 1fr; padding: 60px 24px; }
    .team-grid { grid-template-columns: 1fr; }
    .team-section { padding: 60px 24px; }
    .services-hero { padding: 140px 24px 80px; }
    .services-list { padding: 60px 24px; }
    .service-item { grid-template-columns: 40px 1fr; gap: 24px; }
    .svc-list { grid-column: 2 / 3; }
    .insights-hero { padding: 140px 24px 40px; }
    .insights-grid { padding: 0 24px 80px; }
    .insight-featured { grid-template-columns: 1fr; }
    .insight-featured-img { min-height: 200px; }
    .contact-page { grid-template-columns: 1fr; }
    .contact-left { padding: 140px 24px 60px; }
    .contact-right { padding: 60px 24px 80px; }
    footer { grid-template-columns: 1fr 1fr; padding: 60px 24px; gap: 40px; }
    .footer-bottom { padding: 20px 24px; flex-direction: column; gap: 12px; text-align: center; }
    .cta-banner { grid-template-columns: 1fr; padding: 80px 24px; gap: 32px; }
    body { cursor: auto; }
    .cursor, .cursor-ring { display: none; }
  }
body{cursor:auto}.cursor,.cursor-ring{display:none!important}.page{display:block;min-height:auto}.site-content-anchor{scroll-margin-top:90px}nav .menu,nav .nav-links{display:flex;gap:36px;list-style:none;align-items:center}.nav-logo{text-decoration:none}.projects-grid-section{background:var(--warm-white)}.projects-grid{margin-top:64px;display:grid;grid-template-columns:repeat(3,1fr);gap:28px}.project-grid-card{background:var(--cream);border:1px solid var(--sand);border-radius:22px;overflow:hidden;min-height:100%;transition:transform .3s ease,box-shadow .3s ease}.project-grid-card:hover{transform:translateY(-6px);box-shadow:0 20px 45px rgba(0,0,0,.08)}.project-grid-image img{width:100%;height:250px;object-fit:cover;display:block}.project-grid-content{padding:28px}.project-grid-type{font-size:11px;text-transform:uppercase;letter-spacing:.14em;color:var(--earth);margin-bottom:14px;font-weight:500}.project-grid-content h3{font-family:'Cormorant Garamond',serif;font-size:28px;color:var(--forest);margin-bottom:12px;line-height:1.18;font-weight:400}.project-grid-location{font-size:14px;color:var(--mid);margin-bottom:16px;font-weight:500}.project-grid-content p{font-size:14px;line-height:1.75;color:var(--mid);font-weight:300}.project-empty-card{max-width:420px}@media(max-width:1100px){.projects-grid{grid-template-columns:repeat(2,1fr)}}@media(max-width:700px){.projects-grid{grid-template-columns:1fr}.project-grid-content{padding:24px}}@media(max-width:900px){nav .menu,nav .nav-links{position:absolute;top:70px;left:24px;right:24px;display:none;flex-direction:column;align-items:flex-start;gap:18px;background:#2C503D/*rgba(250,248,244,.98)*/;padding:24px;box-shadow:0 12px 30px rgba(0,0,0,.08)}nav.menu-open .menu,nav.menu-open .nav-links{display:flex}.hamburger{display:flex}.contact-right>div[style*="grid-template-columns"]{grid-template-columns:1fr!important;gap:0!important}}


/*
.projects-showcase {
  position: relative;
  background: #0f241c;
  padding: 80px 0;
}
.projects-main-slider {
  width: 100%;
  height: 680px;
}

.project-hero-slide {
  position: relative;
  background-size: cover;
  background-position: center;
  border-radius: 28px;
  overflow: hidden;
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0.72) 0%,
    rgba(0,0,0,0.45) 45%,
    rgba(0,0,0,0.15) 100%
  );
}

.project-hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding: 100px 70px;
  color: #fff;
}

.project-label {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.project-hero-content h2 {
  font-size: 56px;
  line-height: 1.05;
  margin-bottom: 24px;
  color: #fff;
}

.project-hero-content p {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255,255,255,0.9);
  margin-bottom: 32px;
}

.project-hero-btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 50px;
  background: #fff;
  color: #173f2f;
  font-weight: 700;
  text-decoration: none;
}

.project-arrow {
  position: absolute;
  top: 50%;
  z-index: 10;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #faf8f4;
  color: #2a2a2a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  cursor: pointer;
}

.project-prev {
  left: 10px;
}

.project-next {
  right: 10px;
}

.projects-thumb-slider {
  margin-top: 24px;
  padding: 0 60px;
}

.project-thumb {
  cursor: pointer;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  opacity: 0.55;
  transition: 0.3s;
}

.project-thumb.swiper-slide-thumb-active {
  opacity: 1;
  transform: translateY(-6px);
}

.project-thumb img {
  width: 100%;
  height: 120px;
  object-fit: cover;
}

.project-thumb h4 {
  padding: 12px;
  font-size: 15px;
  margin: 0;
  color: #173f2f;
}

.project-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  padding: 100px 70px;
  color: #fff;
}


.project-left {
  max-width: 55%;
}

.project-left h2 {
  font-size: 56px;
  line-height: 1.05;
  margin-bottom: 20px;
}

.project-left p {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255,255,255,0.9);
}


.project-right {
  text-align: right;
  max-width: 35%;
}

.project-label {
  display: block;
  font-size: 14px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.project-meta {
  margin-bottom: 20px;
  font-weight: 600;
}

.project-hero-btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 50px;
  background: #fff;
  color: #173f2f;
  text-decoration: none;
}

@media (max-width: 768px) {
  .project-hero-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .project-left,
  .project-right {
    max-width: 100%;
    text-align: left;
  }
}

*/

/* ================================
   Projects Hero Slider Section
================================ */

.projects-showcase {
  position: relative;
  /*background: #0f241c;
  padding: 80px 0;*/
  overflow: hidden;
}

.projects-main-slider {
  width: 100%;
  height: 650px;
  /*padding: 0 60px;*/
}

.project-hero-slide {
  position: relative;
  
  height: 650px;
  background-size: cover;
  background-position: center;
  border-radius: 28px;
  overflow: hidden;
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0.78) 0%,
    rgba(0,0,0,0.48) 45%,
    rgba(0,0,0,0.18) 100%
  );
}

/* 2 Column Content */
.project-hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  padding: 50px 80px;
  color: #fff;
}

 .project-content-full{
	color: #000;
    background-color: rgba(245, 240, 232, 0.75);/*#FCFBF8;*/
    padding: 12px;
	width:100%;
	  
  }
  
   

.project-content-full h2 {
  font-size: 34px;
  line-height: 1.05;
  font-weight: 700;
  /*margin: 0 0 22px;*/
  color: #000;
}

.project-content-full p {
  font-size: 18px;
  line-height: 1.3;
  margin: 0;
  color: #000;
  padding-bottom:12px;
  
}

.project-content-full p span{
	   /* color: #000;
    font-weight: bold;
    opacity: 0.5;
    background-color: #FCFBF8;
    padding: 2px 4px 2px 4px;*/
	 font-weight: bold;
	 
	
}

/* Left Content */
.project-left {
  max-width: 58%;
}

.project-left h2 {
  font-size: 58px;
  line-height: 1.05;
  font-weight: 700;
  margin: 0 0 22px;
  color: #fff;
}

.project-right h3 {
  font-size: 35px;
  line-height: 1.05;
  font-weight: 700;
  margin: 0 0 22px;
  color: #c4a882;
}

.project-left p {
  max-width: 620px;
  font-size: 18px;
  line-height: 1.7;
  margin: 0;
  color: rgba(255,255,255,0.9);
}

/* Right Content */
.project-right {
  max-width: 34%;
  text-align: right;
  padding-top:25px;
  padding-right:25px;
}

.project-label {
  display: block;
  font-size: 14px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: rgba(255,255,255,0.85);
}

.project-meta {
  margin-bottom: 24px;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 600;
  color: #fff;
}

.project-meta span {
  display: block;
}

.project-hero-btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 50px;
  background: #fff;
  color: #173f2f;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.project-hero-btn:hover {
  background: #d9f2c7;
  color: #173f2f;
}

/* Arrows */
.project-arrow {
  position: absolute;
  top: 50%;
  z-index: 20;
  width: 52px;
  height: 52px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: #faf8f4;
  color: #2a2a2a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(0,0,0,0.18);
  transition: all 0.3s ease;
}

.project-arrow:hover {
  background: #f5f0e8;
}

.project-prev {
  left: 12px;
}

.project-next {
  right: 12px;
}

/* Thumbnail Slider */
.projects-thumb-slider {
  margin-top: 50px;
  padding: 0 60px;
}

.project-thumb {
  cursor: pointer;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  opacity: 0.55;
  transition: all 0.3s ease;
}

.project-thumb.swiper-slide-thumb-active {
  opacity: 1;
  transform: translateY(-6px);
}

.project-thumb img {
  width: 100%;
  height: 125px;
  object-fit: cover;
  display: block;
}

.project-thumb h4 {
  margin: 0;
  padding: 13px 14px;
  font-size: 9px;
  line-height: 1.3;
  font-weight: 700;
  color: #173f2f;
  background: #fff;
}

/* Tablet */
@media (max-width: 1024px) {
  .projects-main-slider {
    height: 600px;
    padding: 0 30px;
  }

  .project-hero-slide {
    height: 600px;
  }

  .project-hero-content {
    padding: 70px 50px;
  }
  
  .project-content-full h2 {
	font-size: 25px;
  }

  .project-content-full p {
	  font-size: 17px;
  }
  
  .project-left h2 {
    font-size: 46px;
  }

  .project-left p {
    font-size: 17px;
  }

  .project-prev {
    left: 15px;
  }

  .project-next {
    right: 15px;
  }

  .projects-thumb-slider {
    padding: 0 30px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .projects-showcase {
    padding: 50px 0;
  }
  .projects-showcase .section-label{padding-left:30px;}
  .projects-showcase .section-title{padding-left:60px}
  .projects-main-slider {
    height: auto;
    padding: 0 20px;
  }

  .project-hero-slide {
    height: 560px;
    border-radius: 22px;
  }
  
  .project-hero-content {
    /*flex-direction: column;
    justify-content: space-between;
    align-items: center;*/
    gap: 24px;
    padding: 45px 28px;
  }

  .project-left,
  .project-right {
    max-width: 100%;
    text-align: left;
  }
  
  .project-content-full h2 {
	font-size: 20px;
  }

  .project-content-full p {
	  font-size: 14px;
  }
  

  .project-left h2 {
    font-size: 34px;
  }

  .project-left p {
    font-size: 14px;
  }
  
  

  .project-meta {
    font-size: 16px;
  }

  .project-arrow {
    width: 42px;
    height: 42px;
    font-size: 28px;
  }

  .project-prev {
    left: 8px;
  }

  .project-next {
    right: 8px;
  }

  .projects-thumb-slider {
    padding: 0 20px;
  }

  .project-thumb img {
    height: 95px;
  }
  
  .project-thumb h4 {
    margin: 0;
    padding: 10px 6px;
    font-size: 7px;
    line-height: 1.2;
    
}
  
  
}

/* Small Mobile */
@media (max-width: 480px) {
  .project-hero-slide {
    height: 520px;
  }

  .project-hero-content {
    padding: 35px 22px;
  }
  
  .project-content-full h2 {
	font-size: 18px;
  }

  .project-content-full p {
	  font-size: 11px;
  }

  .project-left h2 {
    font-size: 18px;
  }

  .project-left p {
    font-size: 12px;
  }

  .project-hero-btn {
    padding: 12px 24px;
    font-size: 14px;
  }
  
  .project-arrow {
    width: 22px;
    height: 22px;
    font-size: 18px;
  }

  .project-prev {
    left: 10px;
  }

  .project-next {
    right: 10px;
  }

  
}


.hero-slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-slider .swiper-wrapper,
.hero-slider .swiper-slide {
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: relative;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 90%, var(--cream) 100%);
  pointer-events: none;
}

.hero-slide-content {
  position: absolute;
  left: 40px;
  right: 40px;
  bottom: 60px;
  z-index: 2;
  background: rgba(245, 240, 232, 0.92);
  padding: 24px;
}

.hero-slide-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  color: var(--forest);
  margin-bottom: 8px;
}

.hero-slide-content p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--mid);
}

.hero-slider-pagination {
  bottom: 24px !important;
  z-index: 3;
}


@media (max-width: 900px) {

  .hero {
    display: flex;
    flex-direction: column;
  }

  .hero-right {
    display: block;
    width: 100%;
    min-height: 300px;
  }

  .hero-right-inner {
    position: relative !important;
    height: 280px;
  }

  .hero-slider {
    position: relative !important;
    width: 100%;
    height: 100%;
  }

  .hero-slide img {
    height: 100%;
    object-fit: cover;
  }

  .hero-slide-content {
    bottom: 16px;
    left: 16px;
    right: 16px;
    padding: 16px;
  }

}

.custom-logo {
    max-height: 60px;
	width: auto;
	margin-top:5px;
	margin-bottom:5px;
	border-radius: 8px 8px 8px 8px;
	/*border:2px #618C5E solid;*/
}

.nav-logo a {
    display: flex;
    align-items: center;
}


/* =========================
   Common Container
========================= */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* =========================
   Page Banner
========================= */



.page-banner-inner {
  position: relative;
  text-align: center;
  color: #fff;
  z-index: 2;
  padding-top:90px;
}

.page-banner-inner h1 {
  font-size: 52px;
  align:center;
  /*margin-bottom: 12px;*/
  text-transform:uppercase;
  background: rgba(246,237,227,0.52);
   padding: 15px 20px;
  /*border-radius: 12px;*/
  color:#000;
 
}

.page-banner-inner p {
  font-size: 18px;
  opacity: 0.9;
}

/* =========================
   Page Content
========================= */


/* Content Block */
.content-block {
  margin-bottom: 60px;
}

.content-block h2 {
  font-size: 26px;
  margin-bottom: 5px;
  color: #173f2f;
}

.content-block h3 {
  font-size: 20px;
  margin-bottom: 5px;
  color: #173f2f;
}

.content-block p {
  font-size: 16px;
  line-height: 1.5;
  color: #555;
  margin-bottom: 15px;
}

/* Two Column Layout */
.two-col {
  display: flex;
  gap: 40px;
}

.two-col .col {
  flex: 1;
  background: #f7f9f8;
  padding: 30px;
  border-radius: 16px;
}

.page-banner {
  position: relative;
  height: 560px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}

.page-banner-inner {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
}

.page-content img.wp-post-image {
  display: none;
}

/* =========================
   Responsive
========================= */
@media (max-width: 768px) {
  .page-banner {
    height: 300px;
  }

  .page-banner-inner h1 {
    font-size: 34px;
  }

  .page-banner-inner p {
    font-size: 16px;
  }

  .two-col {
    flex-direction: column;
  }

  .content-block h2 {
    font-size: 28px;
  }
}

/* ---------------------------------------- */

.page-content {
  padding: 80px 0;
  background: #FCFBF8; /*#f7f9f5;*/
}


.page-intro {
  max-width: 760px;
  margin-bottom: 55px;
}

.page-intro .eyebrow {
  color: #6f8f3f;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.page-intro h2 {
  font-size: 42px;
  line-height: 1.15;
  color: #063b2b;
  margin: 12px 0 18px;
}

.page-intro p {
  font-size: 18px;
  line-height: 1.7;
  color: #4d5a56;
}

.page-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 28px;
}

.page-service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.page-card {
  background: #FEFEFD;
  border-radius: 22px;
  padding: 34px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.05);
}
.page-card:hover {
  background: var(--cream);
}


.page-number {
  display: inline-flex;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: #e7f0d6;
  color: #063b2b;
  font-weight: 700;
  margin-bottom: 22px;
}

.page-card h3 {
  font-size: 24px;
  line-height: 1.25;
  color: #063b2b;
  margin-bottom: 14px;
  
}

.page-card p {
  font-size: 16px;
  line-height: 1.75;
  color: #4d5a56;
  padding-bottom:10px;
}

.page-card ul {
  padding-left:30px;
}

.page-card li {
  font-size: 16px;
  line-height: 1.75;
  color: #4d5a56;
}

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

  .page-intro h2 {
    font-size: 32px;
  }
  
  .page-service-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 18px;
}
  
}

/*
.blog-pagination {
  margin-top: 45px;
}

.blog-pagination .nav-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.blog-pagination a,
.blog-pagination span {
  padding: 10px 14px;
  background: #fff;
  color: #2f6f4e;
  text-decoration: none;
  border-radius: 6px;
}

.blog-pagination .current {
  background: #2f6f4e;
  color: #fff;
}*/

/* Wrapper */
.blog-pagination {
  margin-top: 40px;
  text-align: center;
  clear: both;
}

.blog-pagination nav{
	position:relative !important;
	background:none  !important;
	box-shadow:none !important;
	
}
/* Target ONLY WordPress pagination */
.blog-pagination nav.pagination {
  display: block;
}

/* Main container */
.blog-pagination .nav-links {
  display: inline-flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

/* Page numbers */
.blog-pagination .page-numbers {
  display: inline-block;
  padding: 10px 14px;
  background: #fff;
  border: 1px solid #ddd;
  color: #2f6f4e;
  text-decoration: none;
  border-radius: 6px;
  font-size: 14px;
  transition: all 0.3s ease;
}

/* Hover */
.blog-pagination .page-numbers:hover {
  background: #2f6f4e;
  color: #fff;
  border-color: #2f6f4e;
}

/* Active page */
.blog-pagination .page-numbers.current {
  background: #2f6f4e;
  color: #fff;
  border-color: #2f6f4e;
}

/* Prev / Next buttons */
.blog-pagination .prev,
.blog-pagination .next {
  font-weight: bold;
}

@media (max-width: 768px) {
 .blog-pagination nav{
	position:relative !important;
	background:none  !important;
	box-shadow:none !important;
	
  }
  .blog-pagination {
    margin-top: 30px;
    padding: 0 15px;
    text-align: center;
  }

  .blog-pagination .nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
  }

  .blog-pagination .page-numbers {
    min-width: 38px;
    height: 38px;
    padding: 0 10px;
    font-size: 13px;
    line-height: 38px;
    border-radius: 6px;
  }

  .blog-pagination .prev,
  .blog-pagination .next {
    min-width: auto;
    padding: 0 12px;
    font-size: 13px;
  }

}

@media (max-width: 480px) {
  .blog-pagination nav{
	position:relative !important;
	background:none  !important;
	box-shadow:none !important;
	
  }
  .blog-pagination .nav-links {
    gap: 5px;
  }

  .blog-pagination .page-numbers {
    min-width: 34px;
    height: 34px;
    font-size: 12px;
    line-height: 34px;
    padding: 0 8px;
  }

}






/* Main slider */
.projects-main-slider {
  overflow: hidden;
}

.projects-main-slider .swiper-slide {
  height: auto;
}

/* Split slide card */
.project-hero-split {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 60px;
  background: #f7f9f5;
  border-radius: 24px;
  overflow: hidden;
  height: 600px;
  transition: all 0.35s ease;
}

.project-hero-split:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.12);
  /*background: #eef3ef;*/
}

.project-image img {
  transition: transform 0.6s ease;
}

.project-hero-split:hover .project-image img {
  transform: scale(1.05);
}

/* Left text */
.project-text {
  flex: 1;
  /*max-width: 560px;*/
}

.project-text .tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #6f8f3f;
  margin-bottom: 16px;
}

.project-text h2 {
  font-size: 28px;
  line-height: 1.15;
  color: #063b2b;
  margin: 0 0 22px;
}

.project-text p {
  font-size: 15px;
  line-height: 1.4;
  color: #4d5a56;
  margin: 0 0 18px;
}

/* Button */
.project-text .btn,
.project-hero-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 12px 26px;
  border-radius: 40px;
  background: #173f2f;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.project-text .btn:hover,
.project-hero-btn:hover {
  background: #2f6f4f;
}

/* Right image */
.project-image {
  flex: 1;
}

.project-image img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}

/* Arrows */
.project-prev,
.project-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  color: #173f2f;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0,0,0,0.12);
}

.project-prev {
  left: 10px;
}

.project-next {
  right: 10px;
}

/* Tablet */
@media (max-width: 1400px) {
  .project-hero-split {
    gap: 35px;
    padding: 45px;
	height: 600px;
  }

  .project-text h2 {
    font-size: 20px;
  }
  
  .project-text p {
    font-size: 13px;
  }

  
}

@media (max-width: 1024px) {
  .project-hero-split {
    gap: 35px;
    padding: 45px;
	height: 600px;
  }

  .project-text h2 {
    font-size: 16px;
	margin: 0 0 12px;
  }
   .project-text p {
    font-size: 12px;
	margin: 0 0 12px;
	
  }


  .project-image img {
    height: 380px;
  }
}

/* Mobile */
@media (max-width: 850px) {
  .project-hero-split {
    flex-direction: column;
    padding: 28px;
    gap: 12px;
    height: auto;
  }

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

  .project-text h2 {
    font-size: 18px;
  }
  
  .project-text p {
    font-size: 13px;
  }

  .project-image {
    width: 100%;
  }

  .project-image img {
    height: 260px;
  }

  .project-prev {
    left: 0px;
  }

  .project-next {
    right: 0px;
  }
}




