/* ============================================
   BASE RESET & VARIABLES
   ============================================ */

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

:root {
  --green: #4ade80;
  --green-dark: #22c55e;
  --green-hover: #16a34a;
  --white: #ffffff;
  --off-white: #f0f4f0;
  --dark-bg: #0f1a14;
  --dark-surface: #162219;
  --dark-border: #243324;
  --text-light: rgba(255, 255, 255, 0.75);
  --text-muted: rgba(255, 255, 255, 0.45);

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --header-height: 80px;
  --container-max: 1200px;
  --radius-pill: 50px;
  --radius-md: 12px;

  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background: var(--dark-bg);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

/* ============================================
   HEADER / NAVBAR
   ============================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  height: var(--header-height);
  display: flex;
  align-items: center;
  padding: 0 2rem;
  background: transparent;
  transition: background var(--transition), backdrop-filter var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
  background: rgba(15, 26, 20, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
}

.navbar-container {
  max-width: var(--container-max);
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
}

/* --- Logo --- */
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon svg {
  width: 36px;
  height: 36px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-name {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
}

.logo-sub {
  font-size: 0.52rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--text-light);
  text-transform: uppercase;
}

/* --- Nav Links --- */
.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--white);
  text-transform: uppercase;
  position: relative;
  padding: 0.25rem 0;
  transition: color var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--green);
  transition: width var(--transition);
}

.nav-link:hover {
  color: var(--green);
}

.nav-link:hover::after {
  width: 100%;
}

/* --- Book Appointment Button --- */
.btn-book {
  flex-shrink: 0;
  display: inline-block;
  padding: 0.6rem 1.4rem;
  border: 1.5px solid var(--green);
  border-radius: var(--radius-pill);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--green);
  text-transform: uppercase;
  white-space: nowrap;
  background: transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform 0.2s;
}

.btn-book:hover {
  background: var(--green);
  color: var(--dark-bg);
  transform: translateY(-1px);
}

/* --- Hamburger --- */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px;
  height: 34px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.35s ease, opacity 0.25s ease;
  transform-origin: center;
}

.hamburger.open .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 580px;
  max-height: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-bg.png');
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
  transform: scale(1.04);
  transition: transform 8s ease-out;
}

.hero-bg.loaded {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(10, 18, 12, 0.55) 0%,
      rgba(10, 18, 12, 0.35) 40%,
      rgba(10, 18, 12, 0.65) 85%,
      rgba(10, 18, 12, 0.88) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1.5rem;
}

.hero-title {
  font-family: 'Geologica', sans-serif;
  font-size: clamp(2rem, 5.5vw, 60px);
  font-weight: 100;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 1rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
  animation: fadeUp 1.2s cubic-bezier(0.215, 0.61, 0.355, 1) both;
  animation-delay: 0.2s;
}

.hero-subtitle {
  font-size: clamp(0.62rem, 1.2vw, 0.78rem);
  font-weight: 400;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.82);
  text-transform: uppercase;
  margin-bottom: 2.2rem;
  animation: fadeUp 1.2s cubic-bezier(0.215, 0.61, 0.355, 1) both;
  animation-delay: 0.4s;
}

.btn-contact {
  display: inline-block;
  padding: 0.85rem 2.8rem;
  background: var(--green);
  color: var(--dark-bg);
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: background var(--transition), transform 0.2s, box-shadow var(--transition);
  box-shadow: 0 4px 24px rgba(74, 222, 128, 0.35);
  animation: fadeUp 1.2s cubic-bezier(0.215, 0.61, 0.355, 1) both;
  animation-delay: 0.6s;
}

.btn-contact:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(74, 222, 128, 0.5);
}

/* Hero Established badge */
.hero-established {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%) !important;
  z-index: 3;
  text-align: center;
  animation: fadeUp 1s ease both;
  animation-delay: 0.7s;
}

.hero-established span {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  color: rgba(255, 255, 255, 0.95);
  text-transform: uppercase;
}

/* Hero Wave */
.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 3;
  pointer-events: none;
  line-height: 0;
}

.hero-wave svg {
  width: 100%;
  height: 80px;
  display: block;
}

/* ============================================
   ASSISTING YOU SECTION
   ============================================ */

.assisting-section {
  position: relative;
  background-color: var(--white);
  padding: 6.5rem 1.5rem 25rem;
  text-align: center;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.assisting-container {
  max-width: 860px;
  width: 100%;
  position: relative;
  z-index: 5;
}

.assisting-title {
  font-family: 'Geologica', sans-serif;
  font-size: clamp(2rem, 4vw, 42px);
  font-weight: 300;
  color: #162219;
  margin-bottom: 2.2rem;
  letter-spacing: -0.01em;
}

.assisting-text {
  font-family: 'Geologica', sans-serif;
  font-size: clamp(0.95rem, 1.15vw, 1.1rem);
  font-weight: 300;
  line-height: 1.8;
  color: #4a554e;
  margin-bottom: 2.8rem;
  text-align: center;
}

.assisting-text strong {
  font-weight: 600;
  color: #162219;
}

.assisting-btn-wrapper {
  margin-top: 1rem;
}

.btn-help {
  display: inline-block;
  padding: 0.85rem 3rem;
  background: transparent;
  color: #162219;
  border: 2px solid #2ecc71;
  border-radius: var(--radius-pill);
  font-family: 'Geologica', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform 0.2s, box-shadow var(--transition);
  cursor: pointer;
}

.btn-help:hover {
  background: #2ecc71;
  color: var(--white);
  border-color: #2ecc71;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(46, 204, 113, 0.25);
}

.assisting-waves {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  line-height: 0;
  z-index: 1;
  pointer-events: none;
}

.waves-bg-img {
  width: 100%;
  min-width: 1200px;
  height: auto;
  display: block;
}

.assisting-circle {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  opacity: 0.85;
}

.assisting-circle-left {
  bottom: 3.5rem;
  left: 10%;
}

.assisting-circle-right {
  bottom: 5.5rem;
  right: 12%;
}



/* ============================================
   OUR TEAM SECTION
   ============================================ */

.team-section {
  position: relative;
  background-color: var(--white);
  padding: 6rem 1.5rem 12rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.team-container {
  max-width: var(--container-max);
  width: 100%;
  position: relative;
  z-index: 5;
}

.team-grid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: clamp(2rem, 8vw, 7.5rem);
  flex-wrap: wrap;
  padding-bottom: 5rem;
}

.team-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform var(--transition);
}

.team-card-renee {
  transform: translateY(80px);
}

.team-card-renee.reveal {
  transform: translateY(110px);
  opacity: 0;
}

.team-card-renee.reveal.active {
  transform: translateY(80px);
  opacity: 1;
}

.team-card-renee.reveal.active:hover {
  transform: translateY(75px);
}

.team-image-wrapper {
  position: relative;
  width: 240px;
  height: 240px;
  margin-bottom: 1.8rem;
}

.team-photo-circle {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 5px solid #2ecc71;
  overflow: hidden;
  background: var(--dark-bg);
  z-index: 3;
  box-shadow: 0 8px 32px rgba(15, 26, 20, 0.08);
}

.team-photo-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-outline-circle {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 1px solid #c2cfc7;
  border-radius: 50%;
  z-index: 2;
  transition: transform var(--transition);
}

.team-card-brent .team-outline-circle,
.team-card-renee .team-outline-circle {
  bottom: -12px;
  right: -12px;
}

.team-card-sam .team-outline-circle {
  bottom: -12px;
  left: -12px;
}

.team-name {
  font-family: 'Geologica', sans-serif;
  font-size: 1.35rem;
  font-weight: 300;
  color: #162219;
  letter-spacing: -0.01em;
  margin-top: 0.5rem;
}

.team-bg-circle {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  opacity: 0.8;
}

.team-bg-circle img {
  width: 100%;
  height: 100%;
  display: block;
}

.team-bg-circle-1 {
  top: 40%;
  left: -40px;
  width: 120px;
  height: 120px;
}

.team-bg-circle-2 {
  top: 38%;
  left: 33%;
  width: 90px;
  height: 90px;
}

.team-bg-circle-3 {
  top: 25%;
  right: 36%;
  width: 70px;
  height: 70px;
}

.team-bg-circle-4 {
  top: 15%;
  right: 8%;
  width: 60px;
  height: 60px;
}

.team-bg-circle-5 {
  bottom: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  border: 4px solid #2ecc71;
  border-radius: 50%;
  opacity: 0.9;
}

.team-card:hover {
  transform: translateY(-5px);
}

.team-card-renee:hover {
  transform: translateY(75px);
}

.team-card:hover .team-outline-circle {
  transform: scale(1.05);
}

.team-card-brent:hover .team-outline-circle,
.team-card-renee:hover .team-outline-circle {
  transform: translate(6px, 6px) scale(1.03);
}

.team-card-sam:hover .team-outline-circle {
  transform: translate(-6px, 6px) scale(1.03);
}



/* ============================================
   SERVICES AND SPECIALTIES SECTION
   ============================================ */

.services-section {
  position: relative;
  background-color: var(--white);
  padding: 10rem 1.5rem 15rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

.services-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.services-bg-wave {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.services-container {
  max-width: var(--container-max);
  width: 100%;
  position: relative;
  z-index: 5;
}

.services-main-title {
  font-family: 'Geologica', sans-serif;
  font-size: clamp(2.2rem, 5vw, 48px);
  font-weight: 300;
  color: #b3c2b9;
  margin-bottom: 5.5rem;
  letter-spacing: -0.015em;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 5rem 0rem;
}

.service-card-1 {
  grid-column: 1;
  grid-row: 1;
}

.service-card-2 {
  grid-column: 2;
  grid-row: 1;
}

.service-card-3 {
  grid-column: 1;
  grid-row: 2;
}

.service-card-4 {
  grid-column: 2;
  grid-row: 2;
}

.service-card-5 {
  grid-column: 3;
  grid-row: 2;
}

.service-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.service-title {
  font-family: 'Geologica', sans-serif;
  font-size: clamp(1.4rem, 2vw, 1.78rem);
  font-weight: 400;
  color: #162219;
  margin-bottom: 1.1rem;
  line-height: 1.25;
}

.service-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #5c6860;
  margin-bottom: 1.4rem;
  max-width: 320px;
}

.service-link {
  font-family: 'Geologica', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: #2ecc71;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: color var(--transition), transform var(--transition);
}

.service-link::after {
  content: ' →';
  font-size: 0.9rem;
  transition: transform var(--transition);
}

.service-link:hover {
  color: var(--green-hover);
}

.service-link:hover::after {
  transform: translateX(4px);
}

.services-tree {
  position: absolute;
  right: -18%;
  top: -10%;
  height: 84%;
  width: auto;
  z-index: 2;
  pointer-events: none;
  opacity: 0.95;
}

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

.services-waves {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  line-height: 0;
  z-index: 3;
  pointer-events: none;
}

.services-wave-img {
  width: 100%;
  height: auto;
  display: block;
}




/* ============================================
   CONTACT US SECTION
   ============================================ */

.contact-section {
  position: relative;
  background-color: var(--white);
  padding: 8rem 1.5rem 10rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-container {
  max-width: var(--container-max);
  width: 100%;
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-subtitle {
  font-family: 'Geologica', sans-serif;
  font-size: 1.05rem;
  font-weight: 400;
  color: #4a554e;
  margin-bottom: 0.5rem;
}

.contact-main-title {
  font-family: 'Geologica', sans-serif;
  font-size: clamp(2rem, 4.5vw, 42px);
  font-weight: 300;
  color: #b3c2b9;
  margin-bottom: 5rem;
  letter-spacing: -0.01em;
  text-align: center;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 3rem 4rem;
  width: 100%;
  max-width: 1100px;
  margin-bottom: 5.5rem;
}

.contact-info-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.contact-icon-wrapper {
  width: 48px;
  height: 48px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition);
}

.contact-info-item:hover .contact-icon-wrapper {
  transform: translateY(-4px) scale(1.05);
}

.contact-icon {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.contact-text {
  font-family: 'Geologica', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.6;
  color: #5c6860;
  max-width: 280px;
}

.contact-link-item {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

.contact-link-item:hover {
  color: #2ecc71;
}

.contact-map-container {
  width: 100%;
  max-width: 1100px;
  height: 450px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(15, 26, 20, 0.05);
  background: var(--off-white);
  border: 1px solid rgba(15, 26, 20, 0.05);
}

.contact-map {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.contact-waves {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  opacity: 0.25;
  width: 45%;
}

.contact-waves-left {
  left: -20%;
  bottom: 5%;
}

.contact-waves-right {
  right: -20%;
  top: 10%;
  transform: scaleX(-1);
}



/* ============================================
   FOOTER
   ============================================ */

.site-footer {
  position: relative;
  background-color: #4b5a58;
  padding: 5rem 1.5rem 6rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-top: none;
}

.footer-bg-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  line-height: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.8;
}

.footer-bg-wave img {
  width: 100%;
  height: auto;
  display: block;
}

.footer-container {
  max-width: var(--container-max);
  width: 100%;
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-gap: 3rem 4rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.footer-logo {
  display: block;
  margin-bottom: 2rem;
  width: 190px;
}

.footer-logo img {
  width: 100%;
  height: auto;
  display: block;
}

.footer-social-row {
  display: flex;
  gap: 1.8rem;
  margin-bottom: 2.2rem;
  align-items: center;
}

.footer-social-icon-link {
  display: block;
  width: 38px;
  height: 38px;
  transition: transform var(--transition), opacity var(--transition);
}

.footer-social-icon-link img {
  width: 100%;
  height: 100%;
  display: block;
}

.footer-social-icon-link:hover {
  transform: scale(1.1);
}

.footer-copyright-block {
  font-family: 'Geologica', sans-serif;
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
}

.footer-legal-link {
  color: inherit;
  text-decoration: underline;
  transition: color var(--transition);
}

.footer-legal-link:hover {
  color: var(--white);
}

.footer-col-title {
  font-family: 'Geologica', sans-serif;
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 1.8rem;
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu-link {
  font-family: 'Geologica', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color var(--transition), padding-left var(--transition);
}

.footer-menu-link:hover {
  color: var(--white);
  padding-left: 4px;
}



/* ============================================
   ANIMATIONS
   ============================================ */

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

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

/* Floating Animations for Background Accent Elements */
@keyframes floatUp {
  0% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-15px) rotate(3deg);
  }

  100% {
    transform: translateY(0px) rotate(0deg);
  }
}

@keyframes floatDown {
  0% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(15px) rotate(-3deg);
  }

  100% {
    transform: translateY(0px) rotate(0deg);
  }
}

.assisting-circle-left {
  animation: floatUp 7s ease-in-out infinite;
}

.assisting-circle-right {
  animation: floatDown 9s ease-in-out infinite;
}

.team-bg-circle-1 {
  animation: floatUp 8s ease-in-out infinite;
}

.team-bg-circle-2 {
  animation: floatDown 6s ease-in-out infinite;
}

.team-bg-circle-3 {
  animation: floatUp 10s ease-in-out infinite;
}

.team-bg-circle-4 {
  animation: floatDown 7s ease-in-out infinite;
}

/* ============================================
   REVEAL ON SCROLL ANIMATIONS
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s cubic-bezier(0.215, 0.61, 0.355, 1),
    transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Delay modifiers for staggered reveals */
.reveal-delay-1 {
  transition-delay: 0.15s;
}

.reveal-delay-2 {
  transition-delay: 0.3s;
}

.reveal-delay-3 {
  transition-delay: 0.45s;
}

.reveal-delay-4 {
  transition-delay: 0.6s;
}

/* ============================================
   ARCHIVE & SINGLE DETAIL PAGES STYLES
   ============================================ */

/* Archive Hero & Breadcrumb */
.archive-hero {
  height: auto;
  min-height: 400px;
  max-height: 520px;
  padding-top: calc(var(--header-height) + 3rem);
  padding-bottom: 5rem;
}

.breadcrumb-nav {
  font-family: 'Geologica', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 1.2rem;
}

.breadcrumb-nav a {
  color: var(--green);
  transition: color var(--transition);
}

.breadcrumb-nav a:hover {
  color: var(--white);
}

.breadcrumb-nav span {
  color: rgba(255, 255, 255, 0.85);
}

/* Archive Grid */
.archive-services-section {
  padding-top: 6rem;
  padding-bottom: 8rem;
}

.services-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem 2.5rem;
  width: 100%;
}

.archive-service-card {
  background: var(--white);
  border: 1px solid rgba(22, 34, 25, 0.08);
  border-radius: var(--radius-md);
  padding: 2.2rem;
  box-shadow: 0 10px 30px rgba(15, 26, 20, 0.04);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.archive-service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(15, 26, 20, 0.09);
  border-color: rgba(46, 204, 113, 0.3);
}

.service-card-thumbnail {
  width: 100%;
  height: 200px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 1.4rem;
}

.service-card-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.archive-service-card:hover .service-card-thumbnail img {
  transform: scale(1.05);
}

.archive-service-card .service-title a {
  color: #162219;
  transition: color var(--transition);
}

.archive-service-card .service-title a:hover {
  color: var(--green-dark);
}

.archive-service-card .service-desc {
  flex-grow: 1;
}

.no-posts-found {
  font-family: 'Geologica', sans-serif;
  font-size: 1.1rem;
  color: #5c6860;
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem 0;
}

/* Single Detail Layout */
.single-detail-section {
  position: relative;
  background-color: var(--white);
  padding: 6rem 1.5rem 8rem;
  overflow: hidden;
}

.single-container {
  max-width: var(--container-max);
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 5;
}

.single-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 4rem;
  align-items: start;
}

/* Main Content */
.single-main-content {
  background: var(--white);
  padding: 3rem 3.5rem;
  border-radius: 24px;
  box-shadow: 0 12px 40px rgba(15, 26, 20, 0.05);
  border: 1px solid rgba(22, 34, 25, 0.06);
}

.single-featured-image {
  width: 100%;
  max-height: 450px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 2.5rem;
  box-shadow: 0 12px 35px rgba(15, 26, 20, 0.08);
}

.single-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.entry-content {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 1.125rem;
  line-height: 1.95;
  color: #334137;
}

.entry-content > p:first-of-type {
  font-size: 1.22rem;
  line-height: 1.9;
  color: #1f2e24;
  font-weight: 400;
}

.entry-content p {
  margin-bottom: 2.2rem;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
  font-family: 'Geologica', sans-serif;
  color: #162219;
  font-weight: 400;
  margin-top: 2.8rem;
  margin-bottom: 1.4rem;
  letter-spacing: -0.015em;
}

.entry-content h2 {
  font-size: clamp(1.65rem, 2.5vw, 2.2rem);
  line-height: 1.3;
}

.entry-content h3 {
  font-size: clamp(1.35rem, 2vw, 1.65rem);
  line-height: 1.35;
}

/* Styled Content Lists */
.entry-content ul {
  list-style: none;
  background: #f7faf8;
  border-left: 4px solid #2ecc71;
  border-radius: 0 16px 16px 0;
  padding: 2.2rem 2.4rem;
  margin: 2.8rem 0;
  box-shadow: 0 6px 24px rgba(15, 26, 20, 0.03);
}

.entry-content ul li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: 1.2rem;
  font-family: 'Geologica', sans-serif;
  font-weight: 300;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #27362c;
}

.entry-content ul li:last-child {
  margin-bottom: 0;
}

.entry-content ul li::first-letter,
.entry-content ol li::first-letter {
  text-transform: capitalize;
}

.entry-content ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: -2px;
  color: #2ecc71;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1;
}

.entry-content ol {

  margin-bottom: 2.2rem;
  padding-left: 1.8rem;
}

.entry-content ol li {
  margin-bottom: 0.8rem;
  font-size: 1.08rem;
  line-height: 1.8;
  color: #27362c;
}

.entry-content blockquote {
  border-left: 5px solid #2ecc71;
  padding: 2rem 2.4rem;
  background: linear-gradient(135deg, #f0f7f3 0%, #e8f4ed 100%);
  border-radius: 0 16px 16px 0;
  font-family: 'Geologica', sans-serif;
  font-weight: 300;
  font-size: 1.18rem;
  line-height: 1.8;
  color: #1a291f;
  margin: 2.8rem 0;
  box-shadow: 0 6px 24px rgba(46, 204, 113, 0.08);
}


/* Post Navigation */
.single-post-navigation {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(22, 34, 25, 0.1);
}

.nav-previous,
.nav-next {
  max-width: 48%;
}

.nav-previous a,
.nav-next a {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.nav-label {
  font-family: 'Geologica', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #2ecc71;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
  transition: color var(--transition);
}

.nav-title {
  font-family: 'Geologica', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  color: #162219;
  transition: color var(--transition);
}

.nav-previous a:hover .nav-title,
.nav-next a:hover .nav-title {
  color: var(--green-dark);
}

/* Single Sidebar Widgets */
.single-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
}

.sidebar-widget {
  background: var(--dark-bg);
  color: var(--white);
  padding: 2.2rem 1.8rem;
  border-radius: 16px;
  box-shadow: 0 12px 35px rgba(15, 26, 20, 0.08);
}

.widget-title {
  font-family: 'Geologica', sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 1.2rem;
  position: relative;
  padding-bottom: 0.8rem;
}

.widget-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2px;
  background: var(--green);
}

.widget-desc {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1.6rem;
}

.sidebar-btn {
  width: 100%;
  text-align: center;
}

.widget-list {
  background: #f7faf8;
  border: 1px solid rgba(22, 34, 25, 0.08);
  color: #162219;
}

.widget-list .widget-title {
  color: #162219;
}

.widget-list .widget-title::after {
  background: #2ecc71;
}

.sidebar-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.sidebar-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  background: var(--white);
  color: #223326;
  font-family: 'Geologica', sans-serif;
  font-size: 0.88rem;
  font-weight: 400;
  transition: background var(--transition), color var(--transition), transform var(--transition);
  border: 1px solid rgba(22, 34, 25, 0.04);
}

.sidebar-link:hover {
  background: #2ecc71;
  color: var(--white);
  transform: translateX(4px);
}

.sidebar-link-arrow {
  transition: transform var(--transition);
}

.sidebar-link:hover .sidebar-link-arrow {
  transform: translateX(3px);
}

.widget-contact {
  background: var(--dark-surface);
  border: 1px solid var(--dark-border);
}

.sidebar-contact-item {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 0.8rem;
}

.sidebar-contact-item strong {
  color: var(--white);
}

.sidebar-contact-item a {
  color: var(--green);
  transition: color var(--transition);
}

.sidebar-contact-item a:hover {
  color: var(--white);
}

/* Related Services Section */
.related-services-section {
  position: relative;
  background-color: var(--white);
  padding: 5rem 1.5rem 8rem;
  border-top: 1px solid rgba(22, 34, 25, 0.06);
}

/* Single Intro Callout Box */
.single-intro-box {
  background: #f0f7f3;
  border-left: 4px solid #2ecc71;
  border-radius: 0 12px 12px 0;
  padding: 1.6rem 2rem;
  margin-bottom: 2.5rem;
  font-family: 'Geologica', sans-serif;
  font-size: 1.08rem;
  font-weight: 300;
  line-height: 1.75;
  color: #223326;
}

.single-intro-box p:last-child {
  margin-bottom: 0;
}

/* Archive Pagination */
.archive-pagination {
  margin-top: 4rem;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.archive-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 0.8rem;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid rgba(22, 34, 25, 0.1);
  color: #162219;
  font-family: 'Geologica', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.archive-pagination .page-numbers.current,
.archive-pagination .page-numbers:hover {
  background: #2ecc71;
  color: var(--white);
  border-color: #2ecc71;
}

/* ============================================
   ABOUT US PAGE STYLES
   ============================================ */
.about-story-section {
  position: relative;
  background-color: var(--white);
  padding: 6rem 1.5rem 8rem;
  overflow: hidden;
}

.about-container {
  max-width: 980px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 5;
}

.about-narrative-card {
  background: var(--white);
  border: 1px solid rgba(22, 34, 25, 0.08);
  border-radius: 24px;
  padding: 3.5rem 3.8rem;
  box-shadow: 0 15px 45px rgba(15, 26, 20, 0.05);
  margin-bottom: 5rem;
}

.about-badge {
  display: inline-block;
  font-family: 'Geologica', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #2ecc71;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.about-main-title {
  font-family: 'Geologica', sans-serif;
  font-size: clamp(2rem, 4vw, 38px);
  font-weight: 300;
  color: #162219;
  margin-bottom: 2.2rem;
  letter-spacing: -0.015em;
  line-height: 1.25;
}

.about-text-content {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1.125rem;
  line-height: 1.95;
  color: #334137;
}

.about-lead-paragraph {
  font-size: 1.25rem;
  line-height: 1.9;
  color: #1f2e24;
  margin-bottom: 2.5rem;
}

.about-quote-box {
  position: relative;
  background: linear-gradient(135deg, #f0f7f3 0%, #e6f4ec 100%);
  border-left: 5px solid #2ecc71;
  border-radius: 0 20px 20px 0;
  padding: 2.4rem 2.8rem;
  margin: 3rem 0;
  box-shadow: 0 8px 30px rgba(46, 204, 113, 0.1);
}

.quote-mark {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 4rem;
  line-height: 1;
  color: rgba(46, 204, 113, 0.4);
  position: absolute;
  top: 1rem;
  left: 1.2rem;
}

.quote-text {
  font-family: 'Geologica', sans-serif;
  font-size: 1.22rem;
  font-weight: 300;
  line-height: 1.8;
  color: #16261c;
  position: relative;
  z-index: 2;
  margin-bottom: 0;
}

.about-welcome-text {
  font-family: 'Geologica', sans-serif;
  font-size: 1.18rem;
  font-weight: 400;
  color: #162219;
  margin-top: 2rem;
}

/* About Pillars Grid */
.about-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 2rem;
}

.pillar-card {
  background: #f7faf8;
  border: 1px solid rgba(22, 34, 25, 0.08);
  border-radius: 20px;
  padding: 2.4rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 35px rgba(15, 26, 20, 0.07);
}

.pillar-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pillar-title {
  font-family: 'Geologica', sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: #162219;
  margin-bottom: 0.9rem;
}

.pillar-desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #5c6860;
}

.about-team-section {
  padding-top: 4rem;
}

/* ============================================
   BLOG / RESOURCES LISTING STYLES
   ============================================ */
.blog-list-section {
  position: relative;
  background-color: var(--white);
  padding: 6rem 1.5rem 8rem;
  overflow: hidden;
}

.blog-list-container {
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 5;
}

.blog-post-card {
  margin-bottom: 4.5rem;
  padding-bottom: 1.5rem;
}

.blog-post-card:last-child {
  margin-bottom: 2rem;
}

.blog-post-title {
  font-family: 'Geologica', sans-serif;
  font-size: clamp(1.65rem, 2.8vw, 2.1rem);
  font-weight: 300;
  line-height: 1.35;
  color: #162219;
  margin-bottom: 0.85rem;
  letter-spacing: -0.015em;
}

.blog-post-title a {
  color: #162219;
  transition: color var(--transition);
}

.blog-post-title a:hover {
  color: var(--green-dark);
}

.blog-post-date {
  font-family: 'Geologica', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: #b9975b;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}

.blog-post-excerpt {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.85;
  color: #4a554e;
  margin-bottom: 1.8rem;
}

.blog-post-excerpt p {
  margin-bottom: 1rem;
}

.blog-post-excerpt p:last-child {
  margin-bottom: 0;
}

.blog-post-action {
  margin-top: 1.5rem;
}

.blog-read-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-family: 'Geologica', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: #2ecc71;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  background: none;
  padding: 0;
  border: none;
  cursor: pointer;
  transition: color var(--transition), transform var(--transition);
}

.blog-read-more-btn::after {
  content: ' →';
  font-size: 0.9rem;
  transition: transform var(--transition);
}

.blog-read-more-btn:hover {
  color: var(--green-hover);
}

.blog-read-more-btn:hover::after {
  transform: translateX(4px);
}

/* Blog Pagination */
.blog-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.4rem;
  margin-top: 5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(22, 34, 25, 0.08);
}

.blog-pagination .page-numbers {
  font-family: 'Geologica', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: #666666;
  text-decoration: none;
  padding: 0.4rem 0.6rem;
  transition: color var(--transition);
}

.blog-pagination .page-numbers:hover {
  color: #111111;
}

.blog-pagination .page-numbers.current {
  color: #111111;
  font-weight: 700;
  position: relative;
}

.blog-pagination .page-numbers.current::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0.6rem;
  right: 0.6rem;
  height: 2px;
  background-color: #111111;
}


/* ============================================
   OUR TEAM ARCHIVE & SINGLE PAGE STYLES
   ============================================ */

/* Portrait-style photo for team cards */
.team-member-photo {
  height: 260px !important;
  border-radius: 12px 12px 0 0 !important;
  margin-bottom: 0 !important;
}

/* Wrapper for card text content below the photo */
.team-card-body {
  padding: 1.4rem 0 0.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

/* Team member name inside card */
.team-member-name {
  font-size: clamp(1.1rem, 1.8vw, 1.35rem) !important;
  margin-bottom: 0.4rem !important;
}

/* Position / credentials badge */
.team-member-role {
  font-family: 'Geologica', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #2ecc71;
  margin-bottom: 1rem;
}

/* Card footer: VIEW PROFILE + LinkedIn icon */
.team-card-footer {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1rem;
}

/* LinkedIn icon link in card footer */
.team-linkedin-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--dark-bg);
  color: var(--white);
  transition: background var(--transition), transform var(--transition);
  flex-shrink: 0;
}

.team-linkedin-link:hover {
  background: #0a66c2;
  transform: scale(1.1);
}

/* Override service-desc max-width inside team cards */
.team-member-card .service-desc {
  max-width: 100%;
}

/* ---- Single Team Member Detail ---- */

/* Wider portrait-style image on single page */
.team-member-detail-photo {
  max-height: 520px !important;
  position: relative;
}

/* Caption overlay at the bottom of the feature photo */
.team-photo-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.4rem 1.8rem;
  background: linear-gradient(to top, rgba(15, 26, 20, 0.85) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.team-caption-name {
  font-family: 'Geologica', sans-serif;
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--white);
}

.team-caption-role {
  font-family: 'Geologica', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.06em;
}

.team-caption-credentials {
  font-family: 'Geologica', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--green);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* LinkedIn link inside the photo caption */
.team-detail-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.4rem;
  font-family: 'Geologica', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  transition: color var(--transition);
  width: fit-content;
}

.team-detail-linkedin:hover {
  color: #0a66c2;
}

/* Meta strip: License, Education, Specializes In */
.team-member-meta-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem 2rem;
  background: #f7faf8;
  border: 1px solid rgba(22, 34, 25, 0.08);
  border-radius: 12px;
  padding: 1.5rem 2rem;
  margin-bottom: 2.5rem;
}

.team-meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 140px;
}

.team-meta-label {
  font-family: 'Geologica', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #2ecc71;
}

.team-meta-value {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: #223326;
  line-height: 1.4;
}

/* "View All Team Members" CTA below the related team grid */
.team-view-all-wrap {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

.team-view-all-btn {
  padding: 0.9rem 2.2rem;
  border: 2px solid #2ecc71;
  border-radius: 50px;
  font-size: 0.78rem !important;
  color: #2ecc71 !important;
  transition: background var(--transition), color var(--transition) !important;
}

.team-view-all-btn:hover {
  background: #2ecc71;
  color: var(--white) !important;
}

.team-view-all-btn::after {
  display: none !important;
}

/* Sidebar small text for position below member name */
.sidebar-link-title small {
  display: block;
  font-size: 0.72rem;
  color: #5c6860;
  font-weight: 400;
  margin-top: 0.15rem;
  letter-spacing: 0;
  text-transform: none;
}

.sidebar-link:hover .sidebar-link-title small {
  color: rgba(255, 255, 255, 0.75);
}