:root {
  --jcl-overlay: rgba(10, 20, 40, 0.36);
  --jcl-panel: rgba(174, 202, 174, 0.74);
  --jcl-green: #8caf2f;
  --jcl-logo-green: #a4bd6a;
  --jcl-dark-green: #335f20;
  --jcl-blue: #2463a8;
  --jcl-text: #ffffff;
  --jcl-offwhite: #f0f2c7;
}

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

html {
  overflow-x: hidden;
  overflow-y: auto;
  max-width: 100%;
}

body {
  margin: 0;
  font-family: "Roboto", "Segoe UI", Arial, sans-serif;
  color: var(--jcl-text);
  background: #0b1830;
  overflow-x: hidden;
  overflow-y: auto;
  max-width: 100%;
}

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

.jcl-hero {
  position: relative;
  min-height: 100vh;
  background-color: #0b1830;
  background-image: linear-gradient(var(--jcl-overlay), var(--jcl-overlay)), url("../images/hero/hero-bg.jpg");
  background-position: left center;
  background-size: cover;
  background-repeat: no-repeat;
}

@supports (background-image: image-set(url("x.avif") type("image/avif") 1x)) {
  .jcl-hero {
    background-image: linear-gradient(var(--jcl-overlay), var(--jcl-overlay)),
      image-set(
        url("../images/hero/hero-bg.avif") type("image/avif") 1x,
        url("../images/hero/hero-bg.webp") type("image/webp") 1x,
        url("../images/hero/hero-bg.jpg") type("image/jpeg") 1x
      );
  }
}

.jcl-hero__overlay {
  position: absolute;
  inset: 0;
}

.jcl-hero__inner {
  position: relative;
  z-index: 1;
  width: min(1280px, 92vw);
  margin: 0 auto;
  padding: 2rem 0 3rem;
}

.jcl-topbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem 2rem;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
}

.jcl-brand {
  display: inline-block;
}

.jcl-brand__logo {
  display: block;
  width: clamp(120px, 13vw, 200px);
  height: auto;
}

.jcl-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem 2.75rem;
  font-size: 1rem;
}

.jcl-nav a {
  font-family: "Oswald", Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0.04em;
  opacity: 0.95;
  transition: color 0.18s ease;
}

.jcl-nav a:hover,
.jcl-nav a:focus-visible {
  color: var(--jcl-dark-green);
}

/* ── Nav Dropdown ──────────────────────────────────────────────────── */
.jcl-nav__item {
  position: relative;
  display: flex;
  align-items: center;
}

.jcl-nav__item > a {
  display: inline-flex;
  align-items: center;
  gap: 0.3em;
}

.jcl-nav__caret {
  font-size: 0.6em;
  line-height: 1;
  transition: transform 0.2s ease;
}

.jcl-nav__item:hover .jcl-nav__caret,
.jcl-nav__item:focus-within .jcl-nav__caret {
  transform: rotate(180deg);
}

.jcl-nav__dropdown {
  position: absolute;
  top: 100%;                  /* flush to bottom of item — no gap */
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 230px;
  background: var(--jcl-dark-green);
  border-radius: 4px;
  list-style: none;
  margin: 0;
  padding: 0.75rem 0 0.4rem; /* top padding replaces the visual gap */
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 200;
}

.jcl-nav__item:hover .jcl-nav__dropdown,
.jcl-nav__item:focus-within .jcl-nav__dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.jcl-nav__dropdown a {
  display: block;
  padding: 0.55rem 1.25rem;
  color: #fff;
  font-size: 0.9rem;
  white-space: nowrap;
  opacity: 1;
}

.jcl-nav__dropdown a:hover,
.jcl-nav__dropdown a:focus-visible {
  color: var(--jcl-logo-green);
  background: rgba(255, 255, 255, 0.07);
}

.jcl-topbar__cta {
  display: flex;
  gap: 0.75rem;
}

/* Phone icon inherits currentColor so it always matches the button text */
.jcl-pill__icon {
  width: 1em;
  height: 1em;
  flex-shrink: 0;
}

.jcl-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border-radius: 999px;
  min-height: 2.9rem;
  padding: 0.55rem 1.5rem;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.jcl-pill--phone {
  background: transparent;
  color: #fff;
}

.jcl-pill--quote {
  background: var(--jcl-green);
  border-color: rgba(0, 0, 0, 0.16);
  color: #fff;
}

.jcl-pill--phone:hover,
.jcl-pill--phone:focus-visible {
  background: var(--jcl-green);
  border-color: rgba(0, 0, 0, 0.16);
  color: #fff;
}

.jcl-pill--quote:hover,
.jcl-pill--quote:focus-visible {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
}

.jcl-hero__content {
  margin-top: clamp(3rem, 8vw, 8rem);
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(300px, 420px);
  align-items: center;
  gap: 2rem;
}

.jcl-hero__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  gap: 0;
  max-width: 620px;
  padding-left: clamp(0px, 4vw, 3.5rem);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.55), 0 1px 3px rgba(0, 0, 0, 0.4);
}

.jcl-hero__eyebrow {
  font-size: clamp(0.95rem, 1.7vw, 1.5rem);
  margin: 0 0 1.1rem;
  color: var(--jcl-offwhite);
  font-weight: 700;
}

.jcl-hero h1 {
  margin: 0 0 1.4rem;
  text-transform: uppercase;
  font-family: "Oswald", "Roboto", Arial, sans-serif;
  font-size: clamp(2rem, 5vw, 51px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.02em;
}

.jcl-hero__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: clamp(1.35rem, 3vw, 2.35rem);
  font-weight: 700;
  margin-bottom: 1.4rem;
  color: #d6e1aa;
  border-radius: 999px;
  padding: 0.25rem 0.75rem;
  transition: background-color 0.18s ease, color 0.18s ease;
}

.jcl-hero__phone:hover,
.jcl-hero__phone:focus-visible {
  background: #145609;
  color: #fff;
}

.jcl-hero__phone-icon {
  width: 0.82em;
  height: 0.82em;
  flex-shrink: 0;
}

.jcl-hero__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  min-height: 2.8rem;
  padding: 0.55rem 1.5rem;
  font-size: 1.2rem;
  background: #d7e4a3;
  color: #2a450f;
  font-weight: 700;
  text-shadow: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.jcl-hero__button:hover,
.jcl-hero__button:focus-visible {
  background: #8eaa87;
  color: #fff;
}

.jcl-quote-panel {
  width: 100%;
  background: var(--jcl-panel);
  border: 1px solid rgba(111, 151, 93, 0.5);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.26);
  padding: 2rem;
}

.jcl-quote-panel h2 {
  margin: 0 0 1rem;
  color: #121212;
  font-size: clamp(1.6rem, 2.8vw, 2.3rem);
}

.jcl-quote-form {
  display: grid;
  gap: 0.95rem;
}

.jcl-field {
  display: grid;
  gap: 0.25rem;
}

.jcl-field label {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.jcl-field input,
.jcl-field textarea {
  width: 100%;
  border: 0;
  min-height: 3rem;
  padding: 0.8rem 1rem;
  font-size: 1.25rem;
}

.jcl-field input::placeholder,
.jcl-field textarea::placeholder {
  color: #9b9b9b;
  opacity: 1;
}

.jcl-field textarea {
  resize: vertical;
  min-height: 7rem;
}

.jcl-field.is-error input,
.jcl-field.is-error textarea {
  outline: 2px solid #d62929;
}

.jcl-quote-form__submit {
  justify-self: start;
  border: 0;
  padding: 0.7rem 1rem;
  min-width: 7.5rem;
  font-size: 1.5rem;
  background: #2563eb;
  color: #fff;
  cursor: pointer;
}

.jcl-quote-form__submit:hover,
.jcl-quote-form__submit:focus-visible {
  background: #1d4ed8;
}

.jcl-quote-form__submit:disabled {
  opacity: 0.6;
  cursor: wait;
}

.jcl-form-status {
  margin: 0;
  min-height: 1.2em;
  font-size: 1rem;
  color: #12211e;
  font-weight: 700;
}

.jcl-form-status.is-error {
  color: #651111;
}

.jcl-form-status.is-success {
  color: #153f15;
}

.jcl-fallback {
  min-height: 100vh;
  display: grid;
  place-content: center;
  padding: 2rem;
}

/* ── Badge Carousel ───────────────────────────────────────────────────── */

.jcl-badges {
  background: #fff;
  padding: 2.25rem 0;
  color: #111;
}

.jcl-badges__inner {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: min(1280px, 92vw);
  margin: 0 auto;
}

.jcl-badges__viewport {
  overflow: hidden;
  flex: 1;
  min-width: 0;
}

.jcl-badges__track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.4s ease;
  will-change: transform;
}

.jcl-badges__item {
  flex: 0 0 calc((100% - 4 * 1.5rem) / 5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.jcl-badges__item img {
  height: 130px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.jcl-badges__arrow {
  flex-shrink: 0;
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid #ccc;
  background: #fff;
  color: #333;
  cursor: pointer;
  font-size: 1.6rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  transition: background-color 0.18s ease, color 0.18s ease;
}

.jcl-badges__arrow:hover {
  background: var(--jcl-dark-green);
  color: #fff;
  border-color: var(--jcl-dark-green);
}

@media (max-width: 768px) {
  .jcl-badges__item {
    flex: 0 0 calc((100% - 2 * 1.5rem) / 3);
  }
}

@media (max-width: 480px) {
  .jcl-badges__item {
    flex: 0 0 calc((100% - 1.5rem) / 2);
  }

  .jcl-badges__item img {
    height: 90px;
  }
}

/* ── Welcome Section ──────────────────────────────────────────────────── */

.jcl-welcome {
  background: #e8ede1;
  color: #1a1a1a;
  padding: 5rem 1rem;
  text-align: center;
}

.jcl-welcome__inner {
  max-width: 820px;
  margin: 0 auto;
}

.jcl-welcome__heading {
  margin: 0 0 0.6rem;
  font-family: "Oswald", Arial, sans-serif;
  font-size: clamp(1.9rem, 4.1vw, 2.95rem);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--jcl-dark-green);
  line-height: 1.15;
}

.jcl-welcome__sub {
  margin: 0 0 1.8rem;
  font-size: clamp(0.9rem, 2vw, 1.15rem);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #7a8f6a;
}

.jcl-welcome__body {
  margin: 0 0 2.2rem;
  font-size: clamp(0.95rem, 1.8vw, 1.08rem);
  line-height: 1.75;
  color: #333;
}

.jcl-welcome__body a {
  color: var(--jcl-dark-green);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.jcl-welcome__body a:hover {
  color: var(--jcl-green);
}

.jcl-welcome__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.7rem 2.2rem;
  font-size: 1rem;
  font-weight: 700;
  background: var(--jcl-dark-green);
  color: #fff;
  transition: background-color 0.2s ease;
}

.jcl-welcome__btn:hover {
  background: var(--jcl-green);
}

@media (max-width: 1200px) {
  .jcl-topbar {
    grid-template-columns: 1fr auto 1fr;
    grid-template-areas:
      ".    brand cta"
      "nav  nav   nav";
    gap: 0.5rem 1.5rem;
  }

  .jcl-brand {
    grid-area: brand;
  }

  .jcl-nav {
    grid-area: nav;
    justify-content: center;
  }

  .jcl-topbar__cta {
    grid-area: cta;
    justify-content: flex-end;
    align-self: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 900px) {
  .jcl-hero__content {
    grid-template-columns: 1fr;
    margin-top: 2rem;
    gap: 1.5rem;
  }

  .jcl-hero__copy {
    text-align: center;
    align-items: center;
    padding-left: 0;
    margin: 0 auto;
  }

  .jcl-hero__button {
    margin: 0 auto;
  }

  .jcl-quote-panel {
    max-width: 560px;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .jcl-hero {
    background-image: linear-gradient(var(--jcl-overlay), var(--jcl-overlay)), url("../images/hero/hero-bg-mobile.jpg");
  }

  @supports (background-image: image-set(url("x.avif") type("image/avif") 1x)) {
    .jcl-hero {
      background-image: linear-gradient(var(--jcl-overlay), var(--jcl-overlay)),
        image-set(
          url("../images/hero/hero-bg-mobile.avif") type("image/avif") 1x,
          url("../images/hero/hero-bg-mobile.webp") type("image/webp") 1x,
          url("../images/hero/hero-bg-mobile.jpg") type("image/jpeg") 1x
        );
    }
  }

  .jcl-hero__inner {
    width: 94vw;
    padding-top: 1rem;
  }

  .jcl-nav {
    gap: 0.7rem 1rem;
    font-size: 0.95rem;
  }

  .jcl-pill {
    min-height: 2.45rem;
    padding: 0.45rem 1rem;
    font-size: 0.95rem;
  }

  .jcl-quote-panel {
    padding: 1rem;
  }

  .jcl-field input,
  .jcl-field textarea {
    font-size: 1rem;
  }

  .jcl-quote-form__submit {
    font-size: 1.1rem;
  }
}

/* ── About Section ────────────────────────────────────────────────────── */

.jcl-about {
  background: #fff;
  color: #1a1a1a;
  padding: 5rem 1rem;
}

.jcl-about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.jcl-about__image {
  position: relative;
}

.jcl-about__image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.jcl-about__label {
  position: absolute;
  top: -1rem;
  left: -1rem;
  background: var(--jcl-green);
  color: #fff;
  font-family: "Oswald", Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.5rem 1.25rem;
  z-index: 1;
}

.jcl-about__heading {
  font-family: "Oswald", Arial, sans-serif;
  font-size: clamp(1.7rem, 3.1vw, 2.55rem);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--jcl-dark-green);
  margin: 0 0 1.4rem;
  line-height: 1.15;
}

.jcl-about__content p {
  font-size: clamp(0.9rem, 1.6vw, 1rem);
  line-height: 1.8;
  color: #444;
  margin: 0 0 1rem;
}

.jcl-about__btn {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.65rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  background: var(--jcl-dark-green);
  color: #fff;
  margin-top: 0.5rem;
  transition: background-color 0.2s ease;
}

.jcl-about__btn:hover {
  background: var(--jcl-green);
}

@media (max-width: 860px) {
  .jcl-about__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .jcl-about__label {
    top: 0.5rem;
    left: 0.5rem;
  }
}

/* ── Features Strip ──────────────────────────────────────────────────── */

.jcl-features {
  background: var(--jcl-dark-green);
  color: #fff;
  padding: 4rem 1rem;
}

.jcl-features__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.jcl-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.6rem;
}

.jcl-feature__icon {
  color: var(--jcl-logo-green);
  margin-bottom: 0.25rem;
}

.jcl-feature__title {
  font-family: "Oswald", Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0;
}

.jcl-feature__text {
  margin: 0;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .jcl-features__inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .jcl-features__inner {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin: 0 auto;
  }
}

/* ── Services Section ─────────────────────────────────────────────────── */

.jcl-services {
  background: #fff;
  color: #1a1a1a;
  padding: 5rem 1rem;
}

.jcl-services__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.jcl-services__heading {
  font-family: "Oswald", Arial, sans-serif;
  font-size: clamp(1.6rem, 3.1vw, 2.35rem);
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 3rem;
  line-height: 1.2;
  color: var(--jcl-dark-green);
}

.jcl-services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.jcl-service-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 300px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
}

/* Zooming background via pseudo-element */
.jcl-service-card::before {
  content: '';
  position: absolute;
  inset: -6%;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  transition: transform 0.55s ease;
  z-index: 0;
}

.jcl-service-card:hover::before {
  transform: scale(1.1);
}

.jcl-service-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
  transition: background 0.4s ease;
  z-index: 1;
}

.jcl-service-card:hover .jcl-service-card__overlay {
  background: rgba(12, 40, 5, 0.9);
}

.jcl-service-card__name {
  position: relative;
  z-index: 2;
  font-family: "Oswald", Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  padding: 0 0.75rem 1.5rem;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
  transition: padding-bottom 0.4s ease;
}

.jcl-service-card:hover .jcl-service-card__name {
  padding-bottom: 2.8rem;
}

/* "View Service →" fades up on hover */
.jcl-service-card__name::after {
  content: 'View Service →';
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  color: var(--jcl-logo-green);
  font-weight: 400;
  opacity: 0;
  margin-top: 0.6rem;
  transform: translateY(8px);
  transition: opacity 0.3s ease 0.1s, transform 0.3s ease 0.1s;
  text-shadow: none;
}

.jcl-service-card:hover .jcl-service-card__name::after {
  opacity: 1;
  transform: translateY(0);
}

.jcl-services__viewall {
  display: block;
  width: fit-content;
  margin: 2.5rem auto 0;
  border-radius: 999px;
  padding: 0.7rem 2.2rem;
  font-size: 1rem;
  font-weight: 700;
  background: var(--jcl-dark-green);
  border: 2px solid var(--jcl-dark-green);
  color: #fff;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.jcl-services__viewall:hover {
  background: var(--jcl-green);
  border-color: var(--jcl-green);
  color: #fff;
}

@media (max-width: 768px) {
  .jcl-services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .jcl-services__grid {
    grid-template-columns: 1fr;
  }

  .jcl-service-card {
    height: 240px;
  }
}

/* ── CTA Banner ───────────────────────────────────────────────────────── */

.jcl-cta {
  position: relative;
  background-color: #0b1830;
  background-image: linear-gradient(rgba(10, 30, 20, 0.78), rgba(10, 30, 20, 0.78)),
    url("../images/hero/hero-bg.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 6rem 1rem;
  text-align: center;
  color: #fff;
}

@supports (background-image: image-set(url("x.avif") type("image/avif") 1x)) {
  .jcl-cta {
    background-image: linear-gradient(rgba(10, 30, 20, 0.78), rgba(10, 30, 20, 0.78)),
      image-set(
        url("../images/hero/hero-bg.avif") type("image/avif") 1x,
        url("../images/hero/hero-bg.webp") type("image/webp") 1x,
        url("../images/hero/hero-bg.jpg") type("image/jpeg") 1x
      );
  }
}

.jcl-cta__overlay {
  display: none;
}

.jcl-cta__inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.jcl-cta__eyebrow {
  font-family: "Oswald", Arial, sans-serif;
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--jcl-logo-green);
  margin: 0 0 1rem;
}

.jcl-cta__heading {
  font-family: "Oswald", Arial, sans-serif;
  font-size: clamp(1.9rem, 4.6vw, 3.15rem);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.1;
  margin: 0 0 1rem;
}

.jcl-cta__sub {
  font-size: clamp(0.9rem, 1.8vw, 1.1rem);
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 2.2rem;
}

.jcl-cta__btn {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.8rem 2.4rem;
  font-size: 1.1rem;
  font-weight: 700;
  background: var(--jcl-green);
  color: #fff;
  transition: background-color 0.2s ease;
}

.jcl-cta__btn:hover {
  background: var(--jcl-dark-green);
}

/* ── Testimonials ─────────────────────────────────────────────────────── */

.jcl-testimonials {
  background-color: #1c2f20;
  background-image: linear-gradient(rgba(10, 24, 14, 0.58), rgba(10, 24, 14, 0.58)),
    url("https://jerseycitylandscapers.com/wp-content/uploads/2024/05/2.jpg");
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat;
  color: #1a1a1a;
  padding: 5rem 1rem;
}

.jcl-testimonials__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.jcl-testimonials__heading {
  font-family: "Oswald", Arial, sans-serif;
  font-size: clamp(1.6rem, 3.1vw, 2.35rem);
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  margin: 0 0 3rem;
}

.jcl-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.jcl-testimonial {
  background: #fff;
  border-radius: 4px;
  padding: 2rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.jcl-testimonial__stars {
  color: #f5a623;
  font-size: 1.3rem;
  letter-spacing: 0.1em;
}

.jcl-testimonial__quote {
  margin: 0;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  line-height: 1.75;
  color: #444;
  flex: 1;
}

.jcl-testimonial__author {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  border-top: 1px solid #e5e5e5;
  padding-top: 1rem;
}

.jcl-testimonial__author strong {
  font-size: 1rem;
  color: var(--jcl-dark-green);
}

.jcl-testimonial__author span {
  font-size: 0.875rem;
  color: #888;
}

@media (max-width: 860px) {
  .jcl-testimonials__grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
  }
}

/* ── Blog Preview ─────────────────────────────────────────────────────── */

.jcl-blog {
  background: #fff;
  color: #1a1a1a;
  padding: 5rem 1rem;
}

.jcl-blog__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.jcl-blog__heading {
  font-family: "Oswald", Arial, sans-serif;
  font-size: clamp(1.6rem, 3.1vw, 2.35rem);
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  color: var(--jcl-dark-green);
  margin: 0 0 3rem;
}

.jcl-blog__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.jcl-blog-card {
  border: 1px solid #e5e9dc;
  overflow: hidden;
  border-radius: 2px;
}

.jcl-blog-card__image-wrap {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.jcl-blog-card__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}

.jcl-blog-card:hover .jcl-blog-card__image-wrap img {
  transform: scale(1.04);
}

.jcl-blog-card__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.jcl-blog-card__cat {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--jcl-green);
}

.jcl-blog-card__title {
  margin: 0;
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.4;
}

.jcl-blog-card__title a {
  color: #1a1a1a;
  transition: color 0.18s ease;
}

.jcl-blog-card__title a:hover {
  color: var(--jcl-dark-green);
}

.jcl-blog-card__link {
  display: inline-flex;
  align-items: center;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--jcl-dark-green);
  transition: color 0.18s ease;
  margin-top: 0.25rem;
}

.jcl-blog-card__link:hover {
  color: var(--jcl-green);
}

.jcl-blog__cta {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.jcl-blog__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  min-height: 2.8rem;
  padding: 0.55rem 1.8rem;
  font-size: 1rem;
  font-weight: 700;
  background: var(--jcl-dark-green);
  color: #fff;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.jcl-blog__btn:hover,
.jcl-blog__btn:focus-visible {
  background: var(--jcl-green);
  color: #fff;
}

@media (max-width: 640px) {
  .jcl-blog__grid {
    grid-template-columns: 1fr;
  }
}

/* ── Gallery ──────────────────────────────────────────────────────────── */

.jcl-gallery {
  background: #e8f5de;
  padding: 5rem 1rem;
}

.jcl-gallery__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.jcl-gallery__heading {
  font-family: "Oswald", Arial, sans-serif;
  font-size: clamp(1.6rem, 3.1vw, 2.35rem);
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  color: var(--jcl-dark-green);
  margin: 0 0 3rem;
}

.jcl-gallery__cta {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.jcl-gallery__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  min-height: 2.8rem;
  padding: 0.55rem 1.8rem;
  font-size: 1rem;
  font-weight: 700;
  background: var(--jcl-dark-green);
  color: #fff;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.jcl-gallery__btn:hover,
.jcl-gallery__btn:focus-visible {
  background: var(--jcl-green);
  color: #fff;
}

.jcl-gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}

.jcl-gallery__item {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

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

.jcl-gallery__item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 60, 10, 0);
  transition: background 0.3s ease;
}

.jcl-gallery__item:hover img {
  transform: scale(1.06);
}

.jcl-gallery__item:hover .jcl-gallery__item-overlay {
  background: rgba(10, 60, 10, 0.35);
}

@media (max-width: 768px) {
  .jcl-gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── Contact Section ──────────────────────────────────────────────────── */

.jcl-contact {
  position: relative;
  background-color: #2d5a1e;
  background-image: url("https://jerseycitylandscapers.com/wp-content/uploads/2024/05/Garden.jpg");
  background-size: cover;
  background-position: top left;
  background-repeat: no-repeat;
  padding: 5rem 1rem;
}

.jcl-contact__panels {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 70px 1fr 1.3fr;
  align-items: stretch;
}

.jcl-contact__social-box {
  background: #95ae90;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.6rem;
  padding: 1.5rem 0;
  margin: 2.2rem 0;
}

.jcl-contact__social-box a {
  color: rgba(39, 59, 35, 0.75);
  line-height: 0;
  transition: color 0.18s ease, transform 0.18s ease;
}

.jcl-contact__social-box a:hover,
.jcl-contact__social-box a:focus-visible {
  color: #223e1f;
  transform: translateY(-1px);
}

/* ── Left info panel ── */
.jcl-contact__info {
  background: rgb(61, 97, 71);
  color: #fff;
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  min-height: 640px;
  position: relative;
  z-index: 2;
  margin-top: -22px;
  margin-bottom: -22px;
  box-shadow: 0 18px 28px rgba(0, 0, 0, 0.28);
}

.jcl-contact__heading {
  font-family: "Oswald", Arial, sans-serif;
  font-size: clamp(1.7rem, 3.1vw, 2.55rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
  margin: 0 0 1rem;
}

.jcl-contact__divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
  margin: 0 0 2rem;
}

.jcl-contact-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2.8rem;
  flex: 1 1 0;
}

.jcl-contact-item:last-child {
  margin-bottom: 0;
}

.jcl-contact-item__icon {
  flex-shrink: 0;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(61, 97, 71);
}

.jcl-contact-item__icon-link {
  color: inherit;
  line-height: 0;
}

.jcl-contact-item__icon-link:hover .jcl-contact-item__icon,
.jcl-contact-item__icon-link:focus-visible .jcl-contact-item__icon {
  background: #dcebd4;
}

.jcl-contact-item__label {
  font-family: "Oswald", Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #fff;
  margin: 0 0 0.3rem;
}

.jcl-contact-item__label-link {
  color: #fff;
  text-decoration: none;
  transition: color 0.18s ease;
}

.jcl-contact-item__label-link:hover,
.jcl-contact-item__label-link:focus-visible {
  color: #dcebd4;
}

.jcl-contact-item__text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}

.jcl-contact-item__text a {
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.18s ease;
}

.jcl-contact-item__text a:hover {
  color: #fff;
}

/* ── Right form panel ── */
.jcl-contact__form-wrap {
  background: #92ac8e;
  padding: 3rem 2.5rem;
  position: relative;
  z-index: 1;
  box-shadow: inset 0 20px 22px -20px rgba(28, 47, 24, 0.55), inset 0 -20px 22px -20px rgba(28, 47, 24, 0.55);
}

.jcl-contact__form-heading {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 1.5rem;
}

.jcl-quote-form input,
.jcl-quote-form textarea {
  display: block;
  width: 100%;
  padding: 0.8rem 1rem;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 3px;
  font-size: 0.95rem;
  color: #555;
  font-family: inherit;
  box-sizing: border-box;
  margin-bottom: 0.9rem;
}

.jcl-quote-form textarea {
  resize: vertical;
}

.jcl-quote-form input::placeholder,
.jcl-quote-form textarea::placeholder {
  color: #aaa;
}

.jcl-contact__submit {
  justify-self: start;
  background: #2563eb;
  color: #fff;
  padding: 0.75rem 2.5rem;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s ease;
}

.jcl-contact__submit:hover {
  background: #1d4ed8;
}

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

  .jcl-contact__social-box {
    flex-direction: row;
    gap: 1.1rem;
    margin: 0;
    padding: 0.9rem 0.75rem;
  }

  .jcl-contact__info {
    min-height: 0;
    margin-top: 0;
    margin-bottom: 0;
  }

  .jcl-contact-item {
    margin-bottom: 2rem;
  }
}

/* ── Services Page ────────────────────────────────────────────────────── */

.jcl-page-hero {
  position: relative;
  background-color: #1a2e1a;
  background-image: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
    url("https://jerseycitylandscapers.com/wp-content/uploads/2024/05/bushes.webp");
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
}

.jcl-page-hero__inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.5rem 2rem 0;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.jcl-page-hero__content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1rem 4rem;
}

.jcl-page-hero__title {
  font-family: "Oswald", Arial, sans-serif;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 400;
  letter-spacing: 0.06em;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  margin: 0;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.jcl-page-hero__sub {
  display: block;
  font-size: 0.45em;
  letter-spacing: 0.12em;
  opacity: 0.85;
  margin-top: 0.2em;
}

.jcl-svc-item__back {
  font-family: "Oswald", Arial, sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  color: var(--jcl-dark-green);
  text-decoration: none;
  text-transform: uppercase;
  transition: opacity 0.18s ease;
}

.jcl-svc-item__back:hover {
  opacity: 0.7;
}

/* Clickable image + heading links on services overview page */

.jcl-svc-item__image a {
  display: block;
  height: 100%;
}

.jcl-svc-item__image a img {
  transition: transform 0.4s ease, opacity 0.3s ease;
}

.jcl-svc-item__image a:hover img {
  transform: scale(1.04);
  opacity: 0.9;
}

.jcl-svc-item__heading a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.jcl-svc-item__heading a:hover {
  color: var(--jcl-dark-green);
}

/* "Learn More →" arrow link on services overview page */

.jcl-svc-item__more {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1.4rem;
  font-family: "Oswald", Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--jcl-dark-green);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  padding-bottom: 1px;
  transition: color 0.2s ease, border-color 0.2s ease, gap 0.2s ease;
}

.jcl-svc-item__more:hover {
  color: var(--jcl-green);
  border-color: var(--jcl-green);
  gap: 0.7rem;
}

/* Service item rows */
.jcl-svc-item {
  padding: 5rem 1rem;
  background: #fff;
  color: #333;
}

.jcl-svc-item--alt {
  background: #e8f0e0;
}

.jcl-svc-item__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3.5rem;
  align-items: stretch;
}

.jcl-svc-item__image {
  min-height: 420px;
}

.jcl-svc-item__image img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 4px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.14);
  object-fit: cover;
  object-position: center;
}

.jcl-svc-item__heading {
  font-family: "Oswald", Arial, sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 700;
  color: var(--jcl-dark-green);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 1.25rem;
}

.jcl-svc-item__content p {
  color: #444;
  line-height: 1.75;
  margin: 0 0 1rem;
}

.jcl-svc-item__list {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.jcl-svc-item__list li {
  color: #444;
  line-height: 1.65;
  padding-left: 1.2rem;
  position: relative;
}

.jcl-svc-item__list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--jcl-dark-green);
  font-weight: bold;
}

/* CTA variant for services page */
.jcl-cta--services {
  background-image: linear-gradient(rgba(10, 30, 20, 0.78), rgba(10, 30, 20, 0.78)),
    url("https://jerseycitylandscapers.com/wp-content/uploads/2024/05/Hardscaping00034-scaled.webp");
}

/* Responsive */
@media (max-width: 768px) {
  .jcl-svc-item__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .jcl-page-hero__inner {
    padding: 1rem;
  }
}

/* ── Footer ───────────────────────────────────────────────────────────── */

.jcl-footer {
  background: #24412b;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
}

.jcl-footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
  gap: 2rem 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1rem 3rem;
}

.jcl-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.jcl-footer__brand img {
  width: clamp(120px, 14vw, 180px);
  height: auto;
}

.jcl-footer__social {
  display: flex;
  gap: 0.75rem;
}

.jcl-footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  transition: background-color 0.2s ease, color 0.2s ease;
}

.jcl-footer__social-link:hover {
  background: var(--jcl-green);
  color: #fff;
}

.jcl-footer__col-title {
  font-family: "Oswald", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 1rem;
}

.jcl-footer__col-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.18s ease;
}

.jcl-footer__col-title a:hover {
  color: var(--jcl-logo-green);
}

.jcl-footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.jcl-footer__list a {
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.18s ease;
}

.jcl-footer__list a:hover {
  color: var(--jcl-logo-green);
}

.jcl-footer__contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
}

.jcl-footer__contact-list svg {
  flex-shrink: 0;
  margin-top: 0.2em;
  color: var(--jcl-logo-green);
}

.jcl-footer__contact-list a {
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.18s ease;
}

.jcl-footer__contact-list a:hover {
  color: var(--jcl-logo-green);
}

.jcl-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  background: #1e3624;
  text-align: center;
  padding: 1.25rem 1rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
}

.jcl-footer__bottom p {
  margin: 0;
}

@media (max-width: 1024px) {
  .jcl-footer__inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .jcl-footer__inner {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   SINGLE SERVICE PAGE
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Service Hero ─────────────────────────────────────────────────────── */

.jcl-svc-hero {
  position: relative;
  background-color: #1a2e1a;
  background-size: cover;
  background-position: center top;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.jcl-svc-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(8, 20, 10, 0.78) 0%,
    rgba(10, 30, 15, 0.55) 100%
  );
  pointer-events: none;
}

.jcl-svc-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.5rem 2rem 0;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 100vh;
}

.jcl-svc-hero__content {
  flex: 1;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 3rem 0 4rem;
}

.jcl-svc-hero__copy {
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.jcl-svc-hero__eyebrow {
  font-family: "Oswald", Arial, sans-serif;
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--jcl-logo-green);
  margin: 0;
}

.jcl-svc-hero__title {
  font-family: "Oswald", Arial, sans-serif;
  font-size: clamp(2.4rem, 5.5vw, 4.8rem);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: 0.04em;
  color: #fff;
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.45);
  margin: 0;
}

.jcl-svc-hero__sub {
  font-size: clamp(0.9rem, 1.8vw, 1.15rem);
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
  line-height: 1.55;
}

.jcl-svc-hero__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: "Oswald", Arial, sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: color 0.2s ease;
}

.jcl-svc-hero__phone:hover {
  color: var(--jcl-logo-green);
}

.jcl-svc-hero__phone svg {
  width: 1.2em;
  height: 1.2em;
  flex-shrink: 0;
  color: var(--jcl-logo-green);
}

/* ── Service Intro ────────────────────────────────────────────────────── */

.jcl-svc-intro {
  background: #eef4e8;
  padding: 5rem 1rem 4rem;
}

.jcl-svc-intro__inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.jcl-svc-intro__eyebrow {
  font-family: "Oswald", Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--jcl-dark-green);
  margin: 0 0 0.75rem;
}

.jcl-svc-intro__heading {
  font-family: "Oswald", Arial, sans-serif;
  font-size: clamp(1.7rem, 3.8vw, 2.8rem);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.15;
  color: #1a2e1a;
  margin: 0 0 2.5rem;
}

.jcl-svc-intro__img-wrap {
  width: 100%;
  max-width: 820px;         /* constrained to match the old text column width */
  margin: 0 auto 2.5rem;   /* centred below the heading */
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 6px 32px rgba(0, 0, 0, 0.14);
  max-height: 500px;
}

.jcl-svc-intro__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.jcl-svc-intro__para {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: #444;
  line-height: 1.75;
  /* full container width — no max-width cap */
  width: 100%;
  margin: 0;
  text-align: left;
}

/* ── Cards Band ───────────────────────────────────────────────────────── */

.jcl-cards-band {
  position: relative;
  background-color: #1a2e1a;
  background-size: cover;
  background-position: center;
  padding: 4.5rem 1rem;
  text-align: center;
}

.jcl-cards-band__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 24, 12, 0.72);
  pointer-events: none;
}

.jcl-cards-band__inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.jcl-cards-band__heading {
  font-family: "Oswald", Arial, sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 0.05em;
  margin: 0;
}

/* ── Service Image Cards ──────────────────────────────────────────────── */

.jcl-svc-cards {
  background: #fff;
  padding: 4rem 1rem 5rem;
}

.jcl-svc-cards__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.jcl-svc-cards__grid {
  display: grid;
  gap: 1.75rem;
}

.jcl-svc-cards__grid--2col {
  grid-template-columns: repeat(2, 1fr);
}

.jcl-svc-cards__grid--3col {
  grid-template-columns: repeat(3, 1fr);
}

.jcl-svc-card {
  display: flex;
  flex-direction: column;
}

.jcl-svc-card__media {
  position: relative;
  overflow: hidden;
  border-radius: 4px 4px 0 0;
  flex: 1;
  min-height: 200px;
  background: #1a2e1a;
}

.jcl-svc-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.45s ease;
}

.jcl-svc-card:hover .jcl-svc-card__media img {
  transform: scale(1.06);
}

.jcl-svc-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 40, 18, 0.82);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.jcl-svc-card:hover .jcl-svc-card__overlay {
  opacity: 1;
}

.jcl-svc-card__desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.6;
  text-align: center;
  margin: 0;
}

.jcl-svc-card__title {
  font-family: "Oswald", Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
  background: var(--jcl-green);
  padding: 0.9rem 1.2rem;
  margin: 0;
  text-align: center;
  border-radius: 0 0 4px 4px;
  transition: background-color 0.2s ease;
}

.jcl-svc-card:hover .jcl-svc-card__title {
  background: var(--jcl-dark-green);
}

@media (max-width: 900px) {
  .jcl-svc-cards__grid--3col {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .jcl-svc-cards__grid--2col,
  .jcl-svc-cards__grid--3col {
    grid-template-columns: 1fr;
  }
}

/* ── Lawn Maintenance Icon Grid ───────────────────────────────────────── */

.jcl-svc-icons {
  background: #f0f6ea;
  padding: 4.5rem 1rem 5rem;
}

.jcl-svc-icons__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.jcl-svc-icons__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem 2.5rem;
}

.jcl-svc-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  padding: 2rem 1rem;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.jcl-svc-icon:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
}

.jcl-svc-icon__img-wrap {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.jcl-svc-icon__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.jcl-svc-icon__title {
  font-family: "Oswald", Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #1a2e1a;
  margin: 0;
}

.jcl-svc-icon__desc {
  font-size: 0.875rem;
  color: #555;
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 900px) {
  .jcl-svc-icons__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .jcl-svc-icons__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}

/* ── Design Process ───────────────────────────────────────────────────── */

.jcl-process {
  background: #1a2e1a;
  color: #fff;
  padding: 5rem 1rem;
}

.jcl-process__inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.jcl-process__eyebrow {
  font-family: "Oswald", Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--jcl-logo-green);
  margin: 0 0 0.6rem;
}

.jcl-process__heading {
  font-family: "Oswald", Arial, sans-serif;
  font-size: clamp(1.7rem, 3.6vw, 2.8rem);
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 3.5rem;
}

.jcl-process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.jcl-process__step {
  position: relative;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.jcl-process__step-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--jcl-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Oswald", Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

/* Connecting line between steps */
.jcl-process__step-connector {
  position: absolute;
  top: 32px;
  left: calc(50% + 32px);
  right: calc(-50% + 32px);
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
}

.jcl-process__step-title {
  font-family: "Oswald", Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  margin: 0 0 0.75rem;
}

.jcl-process__step-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 860px) {
  .jcl-process__steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 2rem;
  }
  .jcl-process__step-connector {
    display: none;
  }
}

@media (max-width: 500px) {
  .jcl-process__steps {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* ── Why Choose ───────────────────────────────────────────────────────── */

.jcl-why {
  background: #fff;
  padding: 5rem 1rem;
}

.jcl-why__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: 4rem;
  align-items: start;
}

.jcl-why__image {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 8px 36px rgba(0, 0, 0, 0.14);
  position: sticky;
  top: 2rem;
}

.jcl-why__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.jcl-why__content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.jcl-why__eyebrow {
  font-family: "Oswald", Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--jcl-dark-green);
  margin: 0 0 0.6rem;
}

.jcl-why__heading {
  font-family: "Oswald", Arial, sans-serif;
  font-size: clamp(1.5rem, 3.2vw, 2.4rem);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.15;
  color: #1a2e1a;
  margin: 0 0 2.5rem;
}

.jcl-why__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 2.5rem;
}

.jcl-why__item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.jcl-why__item-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #eef4e8;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.1rem;
  color: var(--jcl-dark-green);
}

.jcl-why__item-title {
  font-family: "Oswald", Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #1a2e1a;
  margin: 0 0 0.4rem;
}

.jcl-why__item-desc {
  font-size: 0.875rem;
  color: #555;
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 900px) {
  .jcl-why__inner {
    grid-template-columns: 1fr;
  }
  .jcl-why__image {
    position: static;
    max-height: 420px;
  }
}

@media (max-width: 600px) {
  .jcl-why__grid {
    grid-template-columns: 1fr;
  }
}

/* ── CTA override for service pages (inline bg-image) ────────────────── */

.jcl-cta--svc-page {
  background-image: none; /* inline style takes over */
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.jcl-cta--svc-page .jcl-cta__overlay {
  display: block;
  position: absolute;
  inset: 0;
  background: rgba(8, 24, 12, 0.75);
  pointer-events: none;
}

/* ── Service Hero Responsive ──────────────────────────────────────────── */

@media (max-width: 900px) {
  .jcl-svc-hero__content {
    grid-template-columns: 1fr;
  }
  .jcl-svc-hero__inner {
    padding: 1.25rem 1.25rem 0;
  }
}

@media (max-width: 600px) {
  .jcl-svc-hero__title {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }
  .jcl-svc-hero__content {
    padding: 2rem 0 3rem;
  }
}

/* ── Narrow quote panel inside the service hero ───────────────────────── */

.jcl-svc-hero .jcl-quote-panel {
  max-width: 384px; /* ≈ 4 inches at 96 dpi */
  width: 100%;
  justify-self: end;
}

/* ── Gallery CTA button ───────────────────────────────────────────────── */

.jcl-gallery__cta {
  text-align: center;
  margin-top: 2.5rem;
}

.jcl-gallery__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.8rem 2.4rem;
  font-family: "Oswald", Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--jcl-green);
  color: #fff;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.jcl-gallery__cta-btn:hover {
  background: var(--jcl-dark-green);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════════════════════════════
   ABOUT PAGE
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── About Hero ───────────────────────────────────────────────────────────── */

.jcl-about-hero {
  position: relative;
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
}

.jcl-about-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 24, 12, 0.68);
  pointer-events: none;
}

.jcl-about-hero__inner {
  position: relative;
  z-index: 1;
  width: min(1280px, 92vw);
  margin: 0 auto;
  padding: 2rem 0 5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.jcl-about-hero__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1rem 3rem;
  max-width: 860px;
  margin: 0 auto;
}

.jcl-about-hero__eyebrow {
  font-family: "Oswald", Arial, sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--jcl-logo-green);
  margin: 0 0 1.1rem;
}

.jcl-about-hero__title {
  font-family: "Oswald", Arial, sans-serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.15;
  color: #fff;
  margin: 0 0 1.4rem;
}

.jcl-about-hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.65;
  margin: 0;
  max-width: 680px;
}

/* ── Company Story ────────────────────────────────────────────────────────── */

.jcl-about-story {
  background: #fff;
  color: #1a1a1a;
  padding: 5rem 0;
}

.jcl-about-story__inner {
  width: min(860px, 90vw);
  margin: 0 auto;
  text-align: center;
}

.jcl-about-story__eyebrow {
  font-family: "Oswald", Arial, sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--jcl-green);
  margin: 0 0 0.7rem;
}

.jcl-about-story__heading {
  font-family: "Oswald", Arial, sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 600;
  text-transform: uppercase;
  color: var(--jcl-dark-green);
  margin: 0 0 2.2rem;
  line-height: 1.2;
}

.jcl-about-story__body {
  text-align: left;
  display: grid;
  gap: 1.3rem;
}

.jcl-about-story__body p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #333;
  margin: 0;
}

/* ── Stats Row ────────────────────────────────────────────────────────────── */

.jcl-about-stats {
  background: var(--jcl-dark-green);
  padding: 3.5rem 0;
}

.jcl-about-stats__inner {
  width: min(1100px, 90vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.jcl-about-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
}

.jcl-about-stat__num {
  font-family: "Oswald", Arial, sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--jcl-logo-green);
  line-height: 1;
}

.jcl-about-stat__label {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 700px) {
  .jcl-about-stats__inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── Mission / Vision / Values ───────────────────────────────────────────── */

.jcl-about-mvv {
  background: #f7f8f4;
  padding: 5rem 0;
  color: #1a1a1a;
}

.jcl-about-mvv__inner {
  width: min(1100px, 90vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.jcl-about-mvv__card {
  background: #fff;
  border-radius: 12px;
  padding: 2.4rem 2rem;
  text-align: center;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.jcl-about-mvv__icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: #eef3e6;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--jcl-dark-green);
  flex-shrink: 0;
}

.jcl-about-mvv__title {
  font-family: "Oswald", Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--jcl-dark-green);
  margin: 0;
}

.jcl-about-mvv__text {
  font-size: 0.97rem;
  line-height: 1.7;
  color: #444;
  margin: 0;
}

@media (max-width: 780px) {
  .jcl-about-mvv__inner {
    grid-template-columns: 1fr;
    max-width: 520px;
  }
}

/* ── Feature Image ────────────────────────────────────────────────────────── */

.jcl-about-feature {
  background: #fff;
  padding: 4rem 0 3rem;
}

.jcl-about-feature__inner {
  width: min(940px, 90vw);
  margin: 0 auto;
  text-align: center;
}

.jcl-about-feature__inner img {
  width: 100%;
  height: auto;
  max-height: 580px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

.jcl-about-feature__cta {
  margin-top: 2rem;
}

/* ── 15-Year Banner ───────────────────────────────────────────────────────── */

.jcl-about-banner {
  background: var(--jcl-dark-green);
  padding: 4.5rem 0;
}

.jcl-about-banner__inner {
  width: min(1100px, 90vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.jcl-about-banner__eyebrow {
  font-family: "Oswald", Arial, sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--jcl-logo-green);
  margin: 0 0 0.8rem;
}

.jcl-about-banner__heading {
  font-family: "Oswald", Arial, sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.2;
  margin: 0;
}

.jcl-about-banner__right p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 1.8rem;
}

.jcl-about-banner__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.8rem 2.2rem;
  font-family: "Oswald", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--jcl-green);
  color: #fff;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.jcl-about-banner__btn:hover {
  background: #a4c235;
  transform: translateY(-2px);
}

@media (max-width: 760px) {
  .jcl-about-banner__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ── About Hero Responsive ────────────────────────────────────────────────── */

@media (max-width: 700px) {
  .jcl-about-hero__title {
    font-size: clamp(1.8rem, 8vw, 2.4rem);
  }
  .jcl-about-hero__content {
    padding: 2.5rem 0 2rem;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   CONTACT PAGE HERO
   ═══════════════════════════════════════════════════════════════════════════ */

.jcl-contact-hero {
  position: relative;
  min-height: 55vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
}

.jcl-contact-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 24, 12, 0.65);
  pointer-events: none;
}

.jcl-contact-hero__inner {
  position: relative;
  z-index: 1;
  width: min(1280px, 92vw);
  margin: 0 auto;
  padding: 2rem 0 4rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.jcl-contact-hero__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1rem 2rem;
  gap: 1rem;
}

.jcl-contact-hero__eyebrow {
  font-family: "Oswald", Arial, sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--jcl-logo-green);
  margin: 0;
}

.jcl-contact-hero__title {
  font-family: "Oswald", Arial, sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.1;
  color: #fff;
  margin: 0;
}

.jcl-contact-hero__sub {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin: 0;
  max-width: 560px;
}

.jcl-contact-hero__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(140, 175, 47, 0.25);
  border: 2px solid var(--jcl-logo-green);
  border-radius: 999px;
  padding: 0.65rem 1.8rem;
  font-family: "Oswald", Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: #fff;
  text-decoration: none;
  transition: background 0.2s ease;
}

.jcl-contact-hero__phone svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.jcl-contact-hero__phone:hover {
  background: var(--jcl-green);
  border-color: var(--jcl-green);
}

/* ═══════════════════════════════════════════════════════════════════════════
   GALLERY PAGE HERO
   ═══════════════════════════════════════════════════════════════════════════ */

.jcl-gallery-hero {
  position: relative;
  min-height: 60vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
}

.jcl-gallery-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 24, 12, 0.55);
  pointer-events: none;
}

.jcl-gallery-hero__inner {
  position: relative;
  z-index: 1;
  width: min(1280px, 92vw);
  margin: 0 auto;
  padding: 2rem 0 4rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.jcl-gallery-hero__content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 0 2rem;
}

.jcl-gallery-hero__title {
  font-family: "Oswald", Arial, sans-serif;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.05;
  color: #fff;
  margin: 0;
  text-align: center;
}

/* ═══════════════════════════════════════════════════════════════════════════
   FULL GALLERY MASONRY
   ═══════════════════════════════════════════════════════════════════════════ */

.jcl-full-gallery {
  background: #fff;
  padding: 3rem 0 4rem;
}

.jcl-full-gallery__inner {
  width: min(1280px, 96vw);
  margin: 0 auto;
}

.jcl-full-gallery__masonry {
  column-count: 2;
  column-gap: 6px;
}

.jcl-full-gallery__item {
  display: block;
  break-inside: avoid;
  margin-bottom: 6px;
  position: relative;
  overflow: hidden;
  line-height: 0; /* remove gap below inline images */
}

.jcl-full-gallery__item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.jcl-full-gallery__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 40, 8, 0.0);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background 0.3s ease;
}

.jcl-full-gallery__overlay svg {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.jcl-full-gallery__item:hover img {
  transform: scale(1.04);
}

.jcl-full-gallery__item:hover .jcl-full-gallery__overlay {
  background: rgba(10, 40, 8, 0.45);
}

.jcl-full-gallery__item:hover .jcl-full-gallery__overlay svg {
  opacity: 1;
  transform: scale(1);
}

@media (max-width: 600px) {
  .jcl-full-gallery__masonry {
    column-count: 1;
  }
}

/* ── Full Quote Form (Contact page) ────────────────────────────────────── */
.jcl-quote-section {
  background: #8aaa72;
  padding: 3rem 1.5rem 4.5rem;
}

.jcl-quote-section__inner {
  max-width: 920px;
  width: 100%;
  margin: 0 auto;
}

.jcl-quote-section__heading {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  text-align: center;
  color: #2a2a2a;
  margin: 0 0 2rem;
}

/* Name row */
.jcl-qff__name-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

/* City/State row */
.jcl-qff__city-state-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

/* Fields */
.jcl-qff__field {
  margin-bottom: 1.25rem;
}

.jcl-qff__field label,
.jcl-qff__checkgroup legend {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #1e1e1e;
  margin-bottom: 0.35rem;
  line-height: 1.3;
}

.jcl-qff__hidden-label {
  visibility: hidden;
  pointer-events: none;
}

.jcl-qff__sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.jcl-qff__req {
  color: #c0392b;
  margin-left: 1px;
}

/* Inputs */
.jcl-qff__field input[type="text"],
.jcl-qff__field input[type="email"],
.jcl-qff__field input[type="tel"],
.jcl-qff__field textarea {
  display: block;
  width: 100%;
  padding: 0.6rem 0.75rem;
  border: 1px solid #ccc;
  border-radius: 3px;
  font-size: 0.9rem;
  background: #fff;
  color: #333;
  box-sizing: border-box;
  font-family: inherit;
  transition: border-color 0.15s ease;
}

.jcl-qff__field input[type="text"]:focus,
.jcl-qff__field input[type="email"]:focus,
.jcl-qff__field input[type="tel"]:focus,
.jcl-qff__field textarea:focus {
  outline: none;
  border-color: #3b7d44;
}

.jcl-qff__field textarea {
  resize: vertical;
  min-height: 140px;
}

.jcl-qff__field--zip {
  max-width: 200px;
}

/* Select */
.jcl-qff__select-wrap {
  position: relative;
}

.jcl-qff__select-wrap::after {
  content: '';
  position: absolute;
  right: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #555;
  pointer-events: none;
}

.jcl-qff__field select {
  display: block;
  width: 100%;
  padding: 0.6rem 2.25rem 0.6rem 0.75rem;
  border: 1px solid #ccc;
  border-radius: 3px;
  font-size: 0.9rem;
  background: #fff;
  color: #333;
  box-sizing: border-box;
  font-family: inherit;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  transition: border-color 0.15s ease;
}

.jcl-qff__field select:focus {
  outline: none;
  border-color: #3b7d44;
}

/* Sublabels */
.jcl-qff__sublabel {
  display: block;
  font-size: 0.72rem;
  color: #333;
  margin-top: 0.2rem;
}

/* Checkboxes */
.jcl-qff__checkgroup {
  border: none;
  padding: 0;
  margin: 0;
  min-width: 0;
  width: 100%;
}

.jcl-qff__checkgroup legend {
  margin-bottom: 0.6rem;
}

.jcl-qff__check {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.875rem;
  font-weight: 400;
  color: #1e1e1e;
  margin-bottom: 0.45rem;
  cursor: pointer;
}

.jcl-qff__check input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  accent-color: #3b7d44;
  cursor: pointer;
}

/* File upload */
.jcl-qff__file-wrap {
  position: relative;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 3px;
  padding: 2rem 1rem 1.5rem;
  text-align: center;
  cursor: pointer;
  overflow: hidden;
}

.jcl-qff__file-wrap svg {
  display: block;
  margin: 0 auto 0.6rem;
  color: #888;
}

.jcl-qff__file-text {
  font-size: 0.875rem;
  color: #444;
  margin: 0 0 0.25rem;
}

.jcl-qff__file-link {
  color: #1a56db;
  text-decoration: underline;
  font-weight: 400;
  font-size: inherit;
  cursor: pointer;
  display: inline;
}

.jcl-qff__file-note {
  font-size: 0.78rem;
  color: #666;
  margin: 0;
}

.jcl-qff__file-input {
  position: absolute;
  inset: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  font-size: 0;
}

/* File name tags shown after selection */
.jcl-qff__file-names {
  margin-top: 0.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.jcl-qff__file-tag {
  background: rgba(0,0,0,0.08);
  border-radius: 3px;
  padding: 0.2rem 0.5rem;
  font-size: 0.78rem;
  color: #222;
}

/* Submit */
.jcl-qff__submit {
  display: inline-block;
  background: #1a56db;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 0.7rem 2.25rem;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s ease;
  margin-top: 0.5rem;
}

.jcl-qff__submit:hover {
  background: #1245b5;
}

/* Responsive */
@media (max-width: 640px) {
  .jcl-qff__name-row,
  .jcl-qff__city-state-row {
    grid-template-columns: 1fr;
  }

  .jcl-qff__field--zip {
    max-width: 100%;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   BLOG PAGE
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Hero ─────────────────────────────────────────────────────────────────── */
.jcl-blog-hero {
  position: relative;
  min-height: 52vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
}

.jcl-blog-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(10,34,10,0.72) 0%, rgba(10,34,10,0.45) 100%);
}

.jcl-blog-hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 0 2rem 3.5rem;
  max-width: 1380px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.jcl-blog-hero__content {
  margin-top: auto;
  text-align: center;
  padding-top: 1.5rem;
}

.jcl-blog-hero__eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--jcl-lime);
  margin: 0 0 0.75rem;
  font-weight: 600;
}

.jcl-blog-hero__title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 0.75rem;
}

.jcl-blog-hero__sub {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.82);
  margin: 0;
}

/* ── Breadcrumb ───────────────────────────────────────────────────────────── */
.jcl-breadcrumb {
  background: #f7f8f4;
  border-bottom: 1px solid #e8eae2;
}

.jcl-breadcrumb__inner {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0.65rem 2rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: #666;
}

.jcl-breadcrumb__inner a {
  color: var(--jcl-green);
  text-decoration: none;
  font-weight: 500;
}

.jcl-breadcrumb__inner a:hover { text-decoration: underline; }

.jcl-breadcrumb__sep { color: #bbb; }

.jcl-breadcrumb__current { color: #888; }

/* ── Layout ───────────────────────────────────────────────────────────────── */
.jcl-blog-layout {
  background: #f7f8f4;
  color: #2a2a2a;
  padding: 3rem 0 4rem;
}

.jcl-blog-layout__inner {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 2.5rem;
  align-items: start;
}

/* ── Featured post ────────────────────────────────────────────────────────── */
.jcl-bpost--featured {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 380px;
  margin-bottom: 2rem;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.jcl-bpost--featured:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  transform: translateY(-2px);
}

.jcl-bpost--featured .jcl-bpost__img-wrap {
  display: block;
  position: relative;
  overflow: hidden;
}

.jcl-bpost--featured .jcl-bpost__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.jcl-bpost--featured:hover .jcl-bpost__img-wrap img {
  transform: scale(1.04);
}

.jcl-bpost--featured .jcl-bpost__body {
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.jcl-bpost--featured .jcl-bpost__title {
  font-size: clamp(1.3rem, 2.2vw, 1.65rem);
  line-height: 1.3;
  margin: 0.6rem 0 1rem;
}

.jcl-bpost--featured .jcl-bpost__excerpt {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

/* ── Card grid ────────────────────────────────────────────────────────────── */
.jcl-blog-main {
  display: contents; /* let featured be full-width, cards flow after */
}

/* We need a wrapper for the cards — achieved via CSS trick */
/* The featured post is full-width by being a direct child.
   Cards are wrapped in a grid. We achieve this by styling .jcl-bpost--card
   within the main element after a grid reset */

.jcl-blog-main {
  display: block; /* override */
}

.jcl-blog-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.jcl-bpost--card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.jcl-bpost--card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.11);
  transform: translateY(-3px);
}

.jcl-bpost--card .jcl-bpost__img-wrap {
  display: block;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.jcl-bpost--card .jcl-bpost__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.jcl-bpost--card:hover .jcl-bpost__img-wrap img {
  transform: scale(1.05);
}

.jcl-bpost--card .jcl-bpost__body {
  padding: 1.4rem 1.5rem 1.6rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.jcl-bpost--card .jcl-bpost__title {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  line-height: 1.35;
  margin: 0.5rem 0 0.75rem;
}

.jcl-bpost--card .jcl-bpost__excerpt {
  font-size: 0.875rem;
  color: #666;
  line-height: 1.65;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

/* ── Shared post styles ───────────────────────────────────────────────────── */
.jcl-bpost__img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,40,10,0);
  transition: background 0.3s ease;
  pointer-events: none;
}

.jcl-bpost:hover .jcl-bpost__img-overlay {
  background: rgba(10,40,10,0.12);
}

.jcl-bpost__meta-top {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.jcl-bpost__cat {
  display: inline-block;
  background: var(--jcl-green);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25em 0.75em;
  border-radius: 20px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.jcl-bpost__cat:hover { background: var(--jcl-dark-green); }

.jcl-bpost__read-time {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.72rem;
  color: #888;
}

.jcl-bpost__title {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  color: #1a1a1a;
  margin: 0;
}

.jcl-bpost__title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.jcl-bpost__title a:hover { color: var(--jcl-green); }

.jcl-bpost__meta-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.78rem;
  color: #888;
  margin-bottom: 0.75rem;
}

.jcl-bpost__author,
.jcl-bpost__date,
.jcl-bpost__comments {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.jcl-bpost__readmore {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--jcl-green);
  text-decoration: none;
  letter-spacing: 0.02em;
  margin-top: auto;
  transition: gap 0.2s ease, color 0.2s ease;
}

.jcl-bpost__readmore:hover {
  color: var(--jcl-dark-green);
  gap: 0.65rem;
}

/* ── Pagination ───────────────────────────────────────────────────────────── */
.jcl-blog-pagination {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
  padding-top: 1.5rem;
  border-top: 1px solid #e2e5da;
}

.jcl-blog-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 0.6rem;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  color: #444;
  background: #fff;
  border: 1px solid #ddd;
  transition: all 0.18s ease;
}

.jcl-blog-pagination .page-numbers:hover {
  background: var(--jcl-green);
  color: #fff;
  border-color: var(--jcl-green);
}

.jcl-blog-pagination .page-numbers.current {
  background: var(--jcl-green);
  color: #fff;
  border-color: var(--jcl-green);
}

/* ── Empty state ──────────────────────────────────────────────────────────── */
.jcl-blog-empty {
  background: #fff;
  border-radius: 10px;
  padding: 3rem 2rem;
  text-align: center;
  color: #666;
  font-size: 1rem;
}

/* ═══════════════════════════════════════════════════════════════════════════
   SIDEBAR
   ═══════════════════════════════════════════════════════════════════════════ */

.jcl-blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: sticky;
  top: 1.5rem;
}

.jcl-sidebar-widget {
  background: #fff;
  border-radius: 10px;
  padding: 1.6rem 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.jcl-sidebar-widget__title {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--jcl-dark-green);
  margin: 0 0 1.1rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--jcl-lime);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Search widget */
.jcl-sidebar-search {
  display: flex;
  border-radius: 6px;
  overflow: hidden;
  border: 1.5px solid #ddd;
  transition: border-color 0.18s ease;
}

.jcl-sidebar-search:focus-within {
  border-color: var(--jcl-green);
}

.jcl-sidebar-search__input {
  flex: 1;
  border: none;
  outline: none;
  padding: 0.6rem 0.85rem;
  font-size: 0.875rem;
  font-family: inherit;
  background: transparent;
  color: #333;
  min-width: 0;
}

.jcl-sidebar-search__btn {
  background: var(--jcl-green);
  border: none;
  padding: 0 0.85rem;
  cursor: pointer;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.jcl-sidebar-search__btn:hover { background: var(--jcl-dark-green); }

/* CTA widget */
.jcl-sidebar-widget--cta {
  background: var(--jcl-dark-green);
  color: #fff;
  text-align: center;
  padding: 2rem 1.5rem;
}

.jcl-sidebar-cta__icon {
  color: var(--jcl-lime);
  margin-bottom: 0.75rem;
}

.jcl-sidebar-cta__heading {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 0.6rem;
  line-height: 1.3;
}

.jcl-sidebar-cta__text {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.8);
  margin: 0 0 1.25rem;
  line-height: 1.6;
}

.jcl-sidebar-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--jcl-lime);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.65rem 1.4rem;
  border-radius: 5px;
  transition: background 0.2s ease, gap 0.2s ease;
  letter-spacing: 0.02em;
}

.jcl-sidebar-cta__btn:hover {
  background: #6ab832;
  gap: 0.75rem;
}

.jcl-sidebar-cta__sub {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  margin: 0.8rem 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
}

.jcl-sidebar-cta__sub a {
  color: var(--jcl-lime);
  text-decoration: none;
}

.jcl-sidebar-cta__sub a:hover { text-decoration: underline; }

/* Recent Posts widget */
.jcl-sidebar-recent {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.jcl-sidebar-recent__item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.jcl-sidebar-recent__thumb {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 6px;
  overflow: hidden;
  display: block;
}

.jcl-sidebar-recent__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.jcl-sidebar-recent__item:hover .jcl-sidebar-recent__thumb img {
  transform: scale(1.08);
}

.jcl-sidebar-recent__info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 0;
}

.jcl-sidebar-recent__title {
  font-size: 0.85rem;
  font-weight: 600;
  color: #1a1a1a;
  text-decoration: none;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s ease;
}

.jcl-sidebar-recent__title:hover { color: var(--jcl-green); }

.jcl-sidebar-recent__date {
  font-size: 0.72rem;
  color: #999;
}

/* Categories widget */
.jcl-sidebar-cats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.jcl-sidebar-cats__item a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0.65rem;
  border-radius: 5px;
  text-decoration: none;
  font-size: 0.875rem;
  color: #333;
  transition: background 0.18s ease, color 0.18s ease;
}

.jcl-sidebar-cats__item a:hover {
  background: #f0f4ec;
  color: var(--jcl-green);
}

.jcl-sidebar-cats__name { font-weight: 500; }

.jcl-sidebar-cats__count {
  background: #f0f4ec;
  color: var(--jcl-green);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.15em 0.55em;
  border-radius: 20px;
  min-width: 22px;
  text-align: center;
  transition: background 0.18s ease;
}

.jcl-sidebar-cats__item a:hover .jcl-sidebar-cats__count {
  background: var(--jcl-green);
  color: #fff;
}

/* Photo gallery widget */
.jcl-sidebar-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 0.8rem;
}

.jcl-sidebar-gallery__item {
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
}

.jcl-sidebar-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.jcl-sidebar-gallery__item:hover img { transform: scale(1.12); }

.jcl-sidebar-gallery__link {
  display: block;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--jcl-green);
  text-decoration: none;
  padding: 0.1rem 0;
  transition: color 0.2s ease;
}

.jcl-sidebar-gallery__link:hover { color: var(--jcl-dark-green); }

/* Tags widget */
.jcl-sidebar-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.jcl-sidebar-tag {
  display: inline-block;
  background: #f0f4ec;
  color: #3a5c38;
  border: 1px solid #d4e2ce;
  border-radius: 4px;
  padding: 0.3em 0.75em;
  font-size: 0.78rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.jcl-sidebar-tag:hover {
  background: var(--jcl-green);
  color: #fff;
  border-color: var(--jcl-green);
}

/* Newsletter widget */
.jcl-sidebar-widget--newsletter {
  background: linear-gradient(135deg, #f0f7ec 0%, #e8f2e3 100%);
  border: 1px solid #d4e8cc;
}

.jcl-sidebar-newsletter__text {
  font-size: 0.85rem;
  color: #4a6b47;
  margin: 0 0 1rem;
  line-height: 1.55;
}

.jcl-sidebar-newsletter {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.jcl-sidebar-newsletter__input {
  border: 1.5px solid #c2dcba;
  border-radius: 5px;
  padding: 0.6rem 0.85rem;
  font-size: 0.875rem;
  font-family: inherit;
  background: #fff;
  color: #333;
  width: 100%;
  box-sizing: border-box;
  transition: border-color 0.18s ease;
}

.jcl-sidebar-newsletter__input:focus {
  outline: none;
  border-color: var(--jcl-green);
}

.jcl-sidebar-newsletter__btn {
  background: var(--jcl-green);
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 0.65rem 1rem;
  font-size: 0.875rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s ease;
}

.jcl-sidebar-newsletter__btn:hover { background: var(--jcl-dark-green); }

/* ── CTA Banner ───────────────────────────────────────────────────────────── */
.jcl-blog-cta-banner {
  background: var(--jcl-green);
  padding: 3rem 2rem;
}

.jcl-blog-cta-banner__inner {
  max-width: 1380px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.jcl-blog-cta-banner__heading {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 600;
  color: #fff;
  margin: 0 0 0.3rem;
}

.jcl-blog-cta-banner__sub {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  margin: 0;
}

.jcl-blog-cta-banner__btn {
  flex-shrink: 0;
  display: inline-block;
  background: #fff;
  color: var(--jcl-dark-green);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85rem 2.25rem;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
  letter-spacing: 0.02em;
}

.jcl-blog-cta-banner__btn:hover {
  background: var(--jcl-lime);
  color: #fff;
  transform: translateY(-1px);
}

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .jcl-blog-layout__inner {
    grid-template-columns: 1fr 300px;
    gap: 2rem;
  }
}

@media (max-width: 900px) {
  .jcl-blog-layout__inner {
    grid-template-columns: 1fr;
  }

  .jcl-blog-sidebar {
    position: static;
  }

  .jcl-bpost--featured {
    grid-template-columns: 1fr;
  }

  .jcl-bpost--featured .jcl-bpost__img-wrap {
    aspect-ratio: 16/7;
    height: auto;
  }

  .jcl-blog-cards-grid {
    grid-template-columns: 1fr;
  }

  .jcl-blog-cta-banner__inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .jcl-blog-layout {
    padding: 2rem 0 3rem;
  }

  .jcl-blog-layout__inner {
    padding: 0 1rem;
  }

  .jcl-blog-hero__title {
    font-size: 3rem;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   PRIVACY POLICY PAGE
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Hero ─────────────────────────────────────────────────────────────────── */
.jcl-pp-hero {
  position: relative;
  min-height: 44vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
}

.jcl-pp-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(10,34,10,0.78) 0%, rgba(10,34,10,0.55) 100%);
}

.jcl-pp-hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 0 2rem 3rem;
  max-width: 1380px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.jcl-pp-hero__content {
  margin-top: auto;
  text-align: center;
  padding-top: 1.5rem;
}

.jcl-pp-hero__eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--jcl-lime);
  margin: 0 0 0.6rem;
  font-weight: 600;
}

.jcl-pp-hero__title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.jcl-pp-hero__sub {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  margin: 0;
  letter-spacing: 0.04em;
}

/* ── Layout ───────────────────────────────────────────────────────────────── */
.jcl-pp-layout {
  background: #f7f8f4;
  padding: 3.5rem 0 5rem;
}

.jcl-pp-layout__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 3rem;
  align-items: start;
}

/* ── TOC Sidebar ──────────────────────────────────────────────────────────── */
.jcl-pp-toc {
  position: sticky;
  top: 2rem;
}

.jcl-pp-toc__inner {
  background: #fff;
  border-radius: 10px;
  padding: 1.6rem 1.5rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border-top: 4px solid var(--jcl-green);
}

.jcl-pp-toc__heading {
  font-family: 'Oswald', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--jcl-dark-green);
  margin: 0 0 1rem;
}

.jcl-pp-toc__list {
  margin: 0;
  padding-left: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.jcl-pp-toc__list li {
  font-size: 0.82rem;
  line-height: 1.4;
}

.jcl-pp-toc__list a {
  color: #444;
  text-decoration: none;
  padding: 0.3rem 0.25rem;
  display: block;
  border-radius: 3px;
  transition: color 0.18s ease, background 0.18s ease;
}

.jcl-pp-toc__list a:hover {
  color: var(--jcl-green);
  background: #f0f4ec;
  padding-left: 0.5rem;
}

.jcl-pp-toc__cta {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid #eee;
  text-align: center;
}

.jcl-pp-toc__cta p {
  font-size: 0.8rem;
  color: #666;
  margin: 0 0 0.75rem;
  line-height: 1.45;
}

.jcl-pp-toc__cta-btn {
  display: inline-block;
  background: var(--jcl-green);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.55rem 1.2rem;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.jcl-pp-toc__cta-btn:hover { background: var(--jcl-dark-green); }

/* ── Main Content ─────────────────────────────────────────────────────────── */
.jcl-pp-content {
  min-width: 0;
}

.jcl-pp-intro {
  background: #fff;
  border-radius: 10px;
  padding: 2rem 2.25rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  border-left: 4px solid var(--jcl-lime);
}

.jcl-pp-intro p {
  font-size: 0.975rem;
  color: #444;
  line-height: 1.75;
  margin: 0 0 0.75rem;
}

.jcl-pp-intro p:last-child { margin: 0; }

.jcl-pp-intro a {
  color: var(--jcl-green);
  text-decoration: none;
  font-weight: 500;
}

.jcl-pp-intro a:hover { text-decoration: underline; }

/* ── Section ──────────────────────────────────────────────────────────────── */
.jcl-pp-section {
  background: #fff;
  border-radius: 10px;
  padding: 2rem 2.25rem 2.25rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  scroll-margin-top: 2rem;
}

.jcl-pp-section__heading {
  font-family: 'Oswald', sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--jcl-dark-green);
  margin: 0 0 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #edf2e8;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.jcl-pp-section__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--jcl-green);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  min-width: 36px;
  height: 28px;
  padding: 0 0.5rem;
  border-radius: 4px;
  flex-shrink: 0;
}

.jcl-pp-section__body {
  font-size: 0.925rem;
  color: #444;
  line-height: 1.75;
}

.jcl-pp-section__body p {
  margin: 0 0 1rem;
}

.jcl-pp-section__body p:last-child { margin: 0; }

.jcl-pp-section__body h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #222;
  margin: 1.5rem 0 0.5rem;
  letter-spacing: 0.02em;
}

.jcl-pp-section__body ul,
.jcl-pp-section__body ol {
  margin: 0 0 1rem 1.25rem;
  padding: 0;
}

.jcl-pp-section__body li {
  margin-bottom: 0.4rem;
}

.jcl-pp-section__body a {
  color: var(--jcl-green);
  text-decoration: none;
  font-weight: 500;
}

.jcl-pp-section__body a:hover { text-decoration: underline; }

.jcl-pp-section__body strong { color: #222; }

/* Info box */
.jcl-pp-info-box {
  background: #f0f7ec;
  border: 1px solid #d4e8cc;
  border-radius: 6px;
  padding: 1.1rem 1.25rem;
  margin-top: 1rem;
}

.jcl-pp-info-box strong {
  display: block;
  color: var(--jcl-dark-green);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.6rem;
}

.jcl-pp-info-box ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.jcl-pp-info-box li {
  font-size: 0.875rem;
  margin-bottom: 0.3rem;
  color: #333;
}

.jcl-pp-info-box a {
  color: var(--jcl-green);
}

/* Cookie table */
.jcl-pp-table-wrap {
  overflow-x: auto;
  margin: 1rem 0;
  border-radius: 6px;
  border: 1px solid #e0e8d8;
}

.jcl-pp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.jcl-pp-table thead {
  background: var(--jcl-dark-green);
  color: #fff;
}

.jcl-pp-table th {
  padding: 0.75rem 1rem;
  text-align: left;
  font-weight: 600;
  letter-spacing: 0.04em;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.jcl-pp-table td {
  padding: 0.7rem 1rem;
  border-bottom: 1px solid #edf2e8;
  color: #444;
}

.jcl-pp-table tbody tr:last-child td { border-bottom: none; }

.jcl-pp-table tbody tr:nth-child(even) { background: #f7fbf4; }

/* Contact card at bottom */
.jcl-pp-contact-card {
  background: #f0f7ec;
  border: 1px solid #d4e8cc;
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  margin: 1.25rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.jcl-pp-contact-card__row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: #333;
}

.jcl-pp-contact-card__row svg {
  flex-shrink: 0;
  color: var(--jcl-green);
}

.jcl-pp-contact-card__row a {
  color: var(--jcl-green);
  text-decoration: none;
  font-weight: 500;
}

.jcl-pp-contact-card__row a:hover { text-decoration: underline; }

.jcl-pp-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--jcl-green);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.7rem 1.75rem;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.2s ease;
  margin-top: 0.5rem;
}

.jcl-pp-contact-btn:hover { background: var(--jcl-dark-green); }

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .jcl-pp-layout__inner {
    grid-template-columns: 1fr;
  }

  .jcl-pp-toc {
    position: static;
  }

  .jcl-pp-toc__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }
}

@media (max-width: 600px) {
  .jcl-pp-section,
  .jcl-pp-intro {
    padding: 1.5rem 1.25rem;
  }

  .jcl-pp-toc__list {
    grid-template-columns: 1fr;
  }

  .jcl-pp-layout__inner {
    padding: 0 1rem;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   NAV LIST FIX (blog & single-post pages)
   ════════════════════════════════════════════════════════════════════════════
   page-blog.php / single.php wrap nav items in <ul class="jcl-nav__list">.
   Make that <ul> a flex row to match the default .jcl-nav flex layout.   */

.jcl-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem 2.75rem;
}

/* Flex container for phone + quote + hamburger in blog/single topbar */
.jcl-topbar__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* ═══════════════════════════════════════════════════════════════════════════
   HAMBURGER BUTTON
   ═══════════════════════════════════════════════════════════════════════════ */

.jcl-hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 8px;
  padding: 0.48rem 0.6rem;
  color: #fff;
  cursor: pointer;
  line-height: 0;
  transition: background 0.18s ease, border-color 0.18s ease;
}

.jcl-hamburger:hover {
  background: rgba(255, 255, 255, 0.14);
}

/* ═══════════════════════════════════════════════════════════════════════════
   MOBILE HEADER — blog & single-post pages  (≤ 768 px)
   ═══════════════════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
  /* Show the hamburger button */
  .jcl-hamburger {
    display: flex;
  }

  /* Phone pill → icon-only (hide the number text) */
  .jcl-pill__label {
    display: none;
  }

  .jcl-pill--phone {
    padding: 0.55rem 0.75rem;
    min-width: unset;
  }

  /* Blog/Single hero topbar: two-row grid
     Row 1 → logo … actions
     Row 2 → nav (full width, hidden by default)              */
  .jcl-blog-hero .jcl-topbar {
    grid-template-columns: auto 1fr auto;
    grid-template-areas:
      "logo . actions"
      "nav  nav nav";
    row-gap: 0;
  }

  .jcl-blog-hero .jcl-topbar__logo   { grid-area: logo; }
  .jcl-blog-hero .jcl-topbar .jcl-nav { grid-area: nav; display: none; justify-content: flex-start; }
  .jcl-blog-hero .jcl-topbar .jcl-topbar__actions { grid-area: actions; gap: 0.4rem; }

  /* Hide desktop dropdowns (Services link still works) */
  .jcl-blog-hero .jcl-topbar .jcl-nav__dropdown {
    display: none !important;
  }

  /* ── Open state (toggled by JS) ────────────────────────────────────── */
  .jcl-blog-hero .jcl-topbar.is-nav-open .jcl-nav {
    display: flex;
  }

  .jcl-blog-hero .jcl-topbar.is-nav-open .jcl-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.4rem 0 0.25rem;
    margin-top: 0.5rem;
  }

  .jcl-blog-hero .jcl-topbar.is-nav-open .jcl-nav__item {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .jcl-blog-hero .jcl-topbar.is-nav-open .jcl-nav__link {
    display: block;
    padding: 0.7rem 0.25rem;
    width: 100%;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   SINGLE POST ARTICLE
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Article wrapper ─────────────────────────────────────────────────────── */
.jcl-single-article {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  margin-bottom: 2rem;
}

/* ── Featured image ──────────────────────────────────────────────────────── */
.jcl-single-article__hero-img {
  width: 100%;
  max-height: 420px;
  overflow: hidden;
}

.jcl-single-article__hero-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

/* ── Meta row (category · read-time · author · date) ────────────────────── */
.jcl-single-article__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1rem;
  padding: 1.1rem 2rem;
  border-bottom: 1px solid #e8eae2;
  font-size: 0.82rem;
  color: #666;
}

/* ── Body padding ────────────────────────────────────────────────────────── */
.jcl-single-article__content {
  padding: 2rem;
}

/* ── Prose typography (WP post_content) ─────────────────────────────────── */
.jcl-prose {
  color: #2a2a2a;
  font-size: 1rem;
  line-height: 1.8;
  max-width: 74ch;
}

.jcl-prose h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  font-weight: 400;
  color: var(--jcl-dark-green);
  margin: 2rem 0 0.65rem;
  line-height: 1.2;
}

.jcl-prose h3 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 400;
  color: #2a450f;
  margin: 1.6rem 0 0.5rem;
}

.jcl-prose h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 1.25rem 0 0.4rem;
}

.jcl-prose p { margin: 0 0 1.1rem; }
.jcl-prose p:last-child { margin-bottom: 0; }

.jcl-prose ul,
.jcl-prose ol {
  margin: 0 0 1.1rem 1.5rem;
  padding: 0;
}

.jcl-prose li { margin-bottom: 0.35rem; }

.jcl-prose blockquote {
  border-left: 4px solid var(--jcl-green);
  margin: 1.5rem 0;
  padding: 0.75rem 1.25rem;
  background: rgba(140, 175, 47, 0.07);
  border-radius: 0 5px 5px 0;
  font-style: italic;
  color: #555;
}

.jcl-prose a { color: var(--jcl-green); text-decoration: underline; }
.jcl-prose a:hover { color: var(--jcl-dark-green); }

.jcl-prose img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  margin: 1.25rem 0;
  display: block;
}

.jcl-prose strong { font-weight: 700; color: #1a1a1a; }
.jcl-prose hr { border: 0; border-top: 1px solid #e8eae2; margin: 2rem 0; }

/* ── Tags ────────────────────────────────────────────────────────────────── */
.jcl-single-article__tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  padding: 1.1rem 2rem;
  border-top: 1px solid #e8eae2;
  font-size: 0.85rem;
  color: #555;
}

.jcl-single-article__tags strong { margin-right: 0.25rem; }

/* ── Prev / Next navigation ──────────────────────────────────────────────── */
.jcl-post-nav {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 2rem;
  border-top: 1px solid #e8eae2;
  background: #fafbf7;
}

.jcl-post-nav__link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--jcl-dark-green);
  font-size: 0.9rem;
  font-weight: 600;
  max-width: 48%;
  text-decoration: none;
  transition: color 0.18s ease;
}

.jcl-post-nav__link:hover { color: var(--jcl-green); }

.jcl-post-nav__link span { display: flex; flex-direction: column; }

.jcl-post-nav__link small {
  font-size: 0.72rem;
  font-weight: 400;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.jcl-post-nav__link--next { margin-left: auto; text-align: right; }

@media (max-width: 560px) {
  .jcl-post-nav { flex-direction: column; gap: 0.75rem; }
  .jcl-post-nav__link { max-width: 100%; }
  .jcl-post-nav__link--next { margin-left: 0; text-align: left; }
  .jcl-single-article__meta,
  .jcl-single-article__content,
  .jcl-single-article__tags,
  .jcl-post-nav { padding-left: 1rem; padding-right: 1rem; }
}
