:root{
  --cs-shell-max: 1300px;
  --cs-marketing-shell-max: 1420px;

  --cs-bg-base: transparent;

  --cs-text: #223223;
  --cs-text-soft: rgba(34,50,35,.84);
  --cs-text-muted: rgba(34,50,35,.62);
  --cs-heading: #f7f8f2;

  --cs-accent: #4d8f2a;
  --cs-accent-hover: #3f7621;
  --cs-accent-strong: #2d5e19;
  --cs-accent-soft: #dbe7c4;
  --cs-accent-soft-2: #edf3df;

  --cs-border-soft: rgba(57,79,49,.12);
  --cs-border-mid: rgba(57,79,49,.18);

  --cs-panel-bg-top: rgba(243,243,236,.94);
  --cs-panel-bg-bottom: rgba(231,231,222,.96);

  --cs-panel-strong-top: rgba(241,241,234,.96);
  --cs-panel-strong-bottom: rgba(226,226,216,.98);

  --cs-card-bg-top: rgba(248,248,242,.96);
  --cs-card-bg-bottom: rgba(235,235,226,.98);

  --cs-marketing-panel-top: #2f641b;
  --cs-marketing-panel-bottom: #1f4810;
  --cs-marketing-panel-strong-top: #315f1f;
  --cs-marketing-panel-strong-bottom: #17390b;
  --cs-marketing-card-top: #f6f6ef;
  --cs-marketing-card-bottom: #ececdf;

  --cs-panel-radius: 18px;
  --cs-card-radius: 16px;
  --cs-pill-radius: 999px;

  --cs-blur: 8px;
  --cs-marketing-blur: 8px;

  --cs-shadow-panel:
    0 8px 18px rgba(0,0,0,.08),
    0 3px 8px rgba(0,0,0,.04);

  --cs-shadow-panel-strong:
    0 10px 24px rgba(0,0,0,.10),
    0 4px 10px rgba(0,0,0,.05);

  --cs-shadow-card:
    0 4px 12px rgba(0,0,0,.06);

  --cs-shadow-card-hover:
    0 8px 18px rgba(0,0,0,.08);

  --cs-marketing-shadow-panel:
    0 10px 24px rgba(0,0,0,.10),
    0 4px 10px rgba(0,0,0,.05);

  --cs-marketing-shadow-strong:
    0 14px 30px rgba(0,0,0,.12),
    0 6px 14px rgba(0,0,0,.06);

  --cs-marketing-shadow-card:
    0 4px 12px rgba(0,0,0,.06);

  --cs-shell-top: 150px;

  --cs-panel-pad-y: 22px;
  --cs-panel-pad-x: 24px;

  --cs-page-gutter: 20px;
  --cs-section-gap: 18px;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* =========================================================
   BASE
   ========================================================= */

html,
body{
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
  background: transparent !important;
  color: var(--cs-text);
  height: 100%;
}

body{
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.ss-page{
  flex: 1 0 auto;
}

.ss-footer{
  margin-top: auto;
}

/* =========================================================
   BACKGROUND
   ========================================================= */

body::before{
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("https://cushmanservicesvt.com/wp-content/uploads/2026/04/7.png");
  background-repeat: repeat;
  background-size: 400px;
  opacity: .05;
  pointer-events: none;
  z-index: -2;
}

body::after{
  content: "";
  position: fixed;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.04) 0%, rgba(255,255,255,0) 100%);
  pointer-events: none;
  z-index: -1;
}

/* =========================================================
   THEME WRAPPERS
   ========================================================= */

#page,
.site,
.site-content,
.content-area,
.entry-content,
.entry,
.site-main,
main{
}

.csp-work-empty-text{
  margin: 8px 0 0;
}

/* =========================================================
   GLOBAL SHELLS
   ========================================================= */

.csp-shell,
.csp-page-shell,
.csp-work-page-wrap,
.csp-work-single-wrap{
  max-width: var(--cs-shell-max);
  margin-left: auto;
  margin-right: auto;
  margin-top: var(--cs-shell-top);
  color: var(--cs-text);
  background: transparent;
  padding-left: var(--cs-page-gutter);
  padding-right: var(--cs-page-gutter);
}

.csp-work-single-wrap{
  max-width: 1100px;
}

.csp-marketing-page-wrap{
  max-width: var(--cs-marketing-shell-max);
  margin: var(--cs-shell-top) auto 40px;
  color: var(--cs-text);
  background: transparent;
  position: relative;
  z-index: 1;
  padding-left: var(--cs-page-gutter);
  padding-right: var(--cs-page-gutter);
}

.csp-marketing-page-wrap > * + *{
  margin-top: var(--cs-section-gap);
}

/* =========================================================
   SHARED PANELS
   ========================================================= */

.csp-home-panel,
.csp-phase3-panel,
.csp-card,
.csp-glass,
.csp-form-wrap,
.csp-glass-panel,
.csp-work-single-panel,
.csp-panel{
  position: relative;
  overflow: hidden;
  color: var(--cs-text);
  border-radius: var(--cs-panel-radius);
  border: 1px solid var(--cs-border-soft);
  background: linear-gradient(
    180deg,
    var(--cs-panel-bg-top) 0%,
    var(--cs-panel-bg-bottom) 100%
  );
  box-shadow: var(--cs-shadow-panel);
  backdrop-filter: blur(var(--cs-blur));
  -webkit-backdrop-filter: blur(var(--cs-blur));
}

.csp-home-panel::before,
.csp-phase3-panel::before,
.csp-card::before,
.csp-glass::before,
.csp-form-wrap::before,
.csp-glass-panel::before,
.csp-work-single-panel::before,
.csp-panel::before{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,.22),
    rgba(255,255,255,.06)
  );
  pointer-events: none;
}

.csp-home-panel-inner,
.csp-glass-panel__inner,
.csp-work-single-panel__inner{
  position: relative;
  z-index: 1;
  padding: var(--cs-panel-pad-y) var(--cs-panel-pad-x);
}

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

.csp-work-hero-panel,
.csp-marketing-hero{
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(92,128,58,.28);
  background:
    radial-gradient(circle at 85% 45%, rgba(8,38,8,.20) 0%, rgba(8,38,8,0) 28%),
    linear-gradient(135deg, #386f20 0%, #2b5e16 48%, #1d4510 100%);
  box-shadow: var(--cs-marketing-shadow-strong);
  color: #fff;
  min-height: clamp(220px, 20vw, 230px);
  display: flex;
  align-items: flex-start;
}

.csp-work-hero-panel::before,
.csp-marketing-hero::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,0)),
    radial-gradient(circle at 90% 50%, rgba(255,255,255,.04), transparent 35%);
  pointer-events: none;
}

.csp-work-hero-panel__inner,
.csp-marketing-hero__inner{
  position: relative;
  z-index: 1;
  padding: 22px 22px 18px;
  border-radius: 14px;
  background: transparent;
  width: 100%;
}

.csp-work-hero-panel__inner .csp-work-eyebrow,
.csp-marketing-eyebrow{
  margin: 0 0 18px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #dbea88;
}

.csp-marketing-hero::after{
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 280px;
  height: 260px;
  opacity: 0.60;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  pointer-events: none;
}

.csp-marketing-leaf{
  position: absolute;
  top: 52%;
  right: -20px;
  transform: translateY(-50%);
  width: 260px;
  height: 260px;
  opacity: 0.45;
  pointer-events: none;
}

.csp-marketing-leaf svg{
  width: 100%;
  height: 100%;
  stroke: #1a3d10;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

/* =========================================================
   WORK / MARKETING PANELS
   ========================================================= */

.csp-work-panel{
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(80,102,67,.18);
  background: linear-gradient(
    180deg,
    var(--cs-panel-strong-top) 0%,
    var(--cs-panel-strong-bottom) 100%
  );
  box-shadow: var(--cs-shadow-panel-strong);
  backdrop-filter: blur(var(--cs-blur));
  -webkit-backdrop-filter: blur(var(--cs-blur));
  padding: 18px;
}

.csp-work-panel::before{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,.24),
    rgba(255,255,255,.05)
  );
  pointer-events: none;
}

.csp-marketing-panel{
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(80,102,67,.14);
  background: linear-gradient(
    180deg,
    rgba(245,245,238,.96) 0%,
    rgba(234,234,225,.98) 100%
  );
  box-shadow:
    0 8px 18px rgba(0,0,0,.06),
    0 2px 6px rgba(0,0,0,.03);
  padding: 18px;

}

.csp-marketing-panel::before{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,.20),
    rgba(255,255,255,.04)
  );
  pointer-events: none;
}

.csp-marketing-panel__inner{
  position: relative;
  z-index: 1;
}

.csp-marketing-panel__inner > *:first-child{
  margin-top: 0;
}

.csp-marketing-panel__inner h2,
.csp-marketing-panel__inner h3,
.csp-marketing-panel__inner p{
  margin-top: 0;
}

.csp-marketing-panel2{
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(86,106,70,.12);
  background: linear-gradient(180deg, #e7ecd6 0%, #dfe5cb 100%);
  box-shadow:
    0 10px 20px rgba(0,0,0,.10),
    0 4px 8px rgba(0,0,0,.04);
  padding: 18px;

}

.csp-marketing-panel2::before{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,.14) 0%, rgba(255,255,255,.04) 100%);
  pointer-events: none;
}

.csp-marketing-panel__inner2{
  position: relative;
  z-index: 1;
  padding-right: 200px;
}

.csp-marketing-panel2 .csp-marketing-actions{
  position: absolute;
  top: 23px;
  right: 18px;
  z-index: 2;
  display: flex;
  gap: 10px;
}

.csp-marketing-panel__inner2 h2{
  margin-top: 0;
  margin-bottom: 6px;
}

.csp-marketing-panel__inner2 p{
  margin-top: 0;
}

/* =========================================================
   MARKETING CONTENT RHYTHM
   ========================================================= */

.csp-marketing-section{
  margin-top: 10px;
}

.csp-marketing-section-title{
  color: #386f20;
  font-weight: 700;
  letter-spacing: -0.2px;
  margin: 0 0 20px;
  display: inline-block;
}

.csp-marketing-section .csp-marketing-section-text{
  margin-top: 20px;
}

.csp-marketing-grid{
  display: grid;
  gap: 18px;
  margin-top: 10px;
}

.csp-marketing-grid--2{
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.csp-marketing-grid--3{
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.csp-marketing-grid--cards{
  margin-top: 18px;
}

.csp-marketing-pill-wrap{
  display: flex;
  flex-wrap: wrap;
  gap: 5px 5px;
  margin-top: 6px;
}

.csp-section-divider{
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 8px;
  margin-bottom: -30px;
  border-radius: 2px;
  background: linear-gradient(90deg, #2e7d32, #4caf50);
}

/* =========================================================
   TYPOGRAPHY
   ========================================================= */

.csp-title,
.csp-home-panel-title,
.csp-page-title,
.csp-work-title,
.csp-work-single-title,
.csp-marketing-title{
  text-align: left;
}

.csp-title,
.csp-home-panel-title,
.csp-page-title,
.csp-work-title,
.csp-marketing-title{
  margin: 0 0 12px;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.03em;
  font-weight: 400;
}

.csp-work-title,
.csp-marketing-title{
  color: #f6f7f2 !important;
}

.csp-work-single-title{
  margin: 0 0 14px;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.02;
  letter-spacing: -.03em;
  font-weight: 600;
  color: #20311b !important;
}

.csp-home-panel-kicker,
.csp-page-eyebrow,
.csp-work-eyebrow,
.csp-pill{
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.csp-page-eyebrow{
  color: var(--cs-accent);
}

.csp-home-panel-text,
.csp-page-text,
.csp-work-subtitle,
.csp-work-single-content,
.csp-meta,
.csp-help,
.csp-marketing-subtitle,
.csp-marketing-section-text{
  color: var(--cs-text-soft) !important;
}

.csp-work-subtitle,
.csp-marketing-subtitle{
  margin: 0;
  max-width: 1100px;
  font-size: 16px;
  line-height: 1.6;
}

.csp-work-hero-panel .csp-work-subtitle,
.csp-marketing-hero .csp-marketing-subtitle{
  color: rgba(255,255,255,.90) !important;
}

.csp-work-single-content{
  font-size: 16px;
  line-height: 1.7;
}

/* =========================================================
   BUTTONS / PILLS
   ========================================================= */

.csp-btn,
.csp-btn:link,
.csp-btn:visited,
.csp-marketing-btn,
.csp-marketing-btn:link,
.csp-marketing-btn:visited{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: linear-gradient(180deg, #4e972d 0%, #3f7d23 100%);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
  transition: all .18s ease;
  box-shadow: 0 6px 14px rgba(61,116,30,.18);
}

.csp-btn:hover,
.csp-marketing-btn:hover{
  background: linear-gradient(180deg, #458727 0%, #366b1d 100%);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(61,116,30,.22);
}

.csp-btn--soft,
.csp-btn--ghost,
.csp-marketing-btn--ghost,
.csp-marketing-btn--ghost:link,
.csp-marketing-btn--ghost:visited{
  background: linear-gradient(180deg, #f6f4e8 0%, #e9e7d7 100%) !important;
  border: 1px solid rgba(97,121,75,.18) !important;
  color: #2d4722 !important;
  box-shadow: none !important;
}

.csp-btn--soft:hover,
.csp-btn--ghost:hover,
.csp-marketing-btn--ghost:hover{
  background: linear-gradient(180deg, #efeddc 0%, #e2e0cf 100%) !important;
  color: #21361a !important;
  transform: none;
}

.csp-work-pill,
.csp-pill,
.csp-marketing-pill{
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: var(--cs-pill-radius);
  border: 1px solid rgba(108,134,84,.16);
  background: linear-gradient(180deg, #e6edd1 0%, #d8e3bf 100%);
  color: #365425;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  text-transform: none;
  letter-spacing: 0;
}

/* =========================================================
   FILTERS
   ========================================================= */

.csp-work-filter-row{
  position: relative;
  z-index: 1;
  margin: 0 0 16px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.csp-work-filters{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.csp-work-filters a{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(108,134,84,.18);
  background: linear-gradient(180deg, #e6edd1 0%, #d8e3bf 100%);
  color: #365425;
  font-weight: 700;
  text-decoration: none;
  transition: all .18s ease;
}

.csp-work-filters a:hover,
.csp-work-filters a.is-active{
  background: linear-gradient(180deg, #4e972d 0%, #3f7d23 100%);
  border-color: transparent;
  color: #fff;
}

/* =========================================================
   WORK GRID / EMPTY
   ========================================================= */

.csp-work-grid{
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.csp-work-empty{
  margin: 0;
  border-radius: 16px;
  border: 1px solid rgba(87,108,72,.16);
  background: linear-gradient(180deg, #f6f5ee 0%, #ecebdf 100%);
  padding: 24px;
  color: #2b3c24;
}

/* =========================================================
   CARDS
   ========================================================= */

.csp-item,
.csp-work-card,
.csp-marketing-card{
  position: relative;
  overflow: hidden;
  border-radius: var(--cs-card-radius);
  border: 1px solid rgba(86,106,70,.14);
  background: linear-gradient(
    180deg,
    var(--cs-card-bg-top),
    var(--cs-card-bg-bottom)
  );
  box-shadow: var(--cs-shadow-card);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.csp-item img,
.csp-work-card__media img{
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.csp-work-card__media{
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: rgba(84,112,60,.08);
  border-radius: 12px;
}

.csp-work-card__placeholder{
  width: 100%;
  height: 100%;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(54,74,41,.62);
  font-weight: 600;
}

.csp-work-card__body{
  padding: 14px 14px 12px;
}

.csp-work-card__topline{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 10px;
}

.csp-work-card__title,
.csp-marketing-card__title{
  margin: 0 0 8px;
  font-size: 24px;
  line-height: 1.1;
  font-weight: 700;
  color: #23371b;
}

.csp-work-card__title a{
  color: #23371b;
  text-decoration: none;
}

.csp-work-card__title a:hover{
  color: var(--cs-accent-strong);
}

.csp-work-card__highlight{
  margin: 0 0 10px;
  color: #2f4923;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 600;
}

.csp-work-card__excerpt,
.csp-marketing-card__text{
  margin: 0;
  color: rgba(34,50,35,.82);
  font-size: 15px;
  line-height: 1.6;
}

.csp-work-card__footer{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
}

.csp-work-card__date{
  color: var(--cs-text-muted);
  font-size: 13px;
  line-height: 1.3;
}

.csp-work-card__link{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cs-accent);
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.csp-work-card__link:hover{
  color: var(--cs-accent-strong);
}

.csp-marketing-card{
  border-radius: 16px;
}

.csp-marketing-card::before{
  content: "";
  position: absolute;
  left: 12px;
  top: 16px;
  bottom: 16px;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, #59a52d 0%, #3f7d23 100%);
  box-shadow: none;
  pointer-events: none;
}

.csp-marketing-card__body{
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  align-items: start;
  column-gap: 20px;
  padding: 18px 22px 18px 28px;
  min-height: 136px;
}

.csp-marketing-card__icon{
  width: 80px;
  height: 80px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: start;
  margin-top: 2px;
  background: linear-gradient(180deg, #edf2de 0%, #dfe7c8 100%);
  border: 1px solid rgba(100,122,80,.14);
  box-shadow: 0 4px 10px rgba(0,0,0,.05);
}

.csp-marketing-card__icon svg{
  width: 40px;
  height: 40px;
  stroke: #447124;
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.csp-marketing-card__content{
  min-width: 0;
  padding-top: 2px;
}

.csp-marketing-card__body .csp-marketing-card__title{
  color: #1b4332 !important;
  font-weight: 700 !important;
  letter-spacing: -0.2px !important;
}

/* services page cards without icons */
.csp-services-page .csp-marketing-card__body{
  display: block;
  padding: 18px 22px 18px 28px;
  min-height: 0;
}

.csp-services-page .csp-marketing-card__title{
  margin: 0 0 8px;
  line-height: 1.1;
}

.csp-services-page .csp-marketing-card__text{
  margin: 0;
}

.csp-services-page .csp-marketing-card__content{
  padding-top: 0;
}

/* =========================================================
   SINGLE PROJECT
   ========================================================= */

.csp-work-single-media{
  margin: 0 0 20px;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(87,108,72,.16);
  background: linear-gradient(180deg, #f8f8f2 0%, #ececdf 100%);
  box-shadow: 0 8px 18px rgba(0,0,0,.08);
}

.csp-work-single-media img{
  width: 100%;
  height: auto;
  display: block;
}

.csp-work-single-panel{
  padding: 18px;
}

.csp-work-single-panel__inner{
  padding: 18px 18px 16px;
  border-radius: 16px;
  border: 1px solid rgba(87,108,72,.14);
  background: linear-gradient(180deg, #f8f8f2 0%, #ececdf 100%);
}

.csp-work-single-meta{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
}

.csp-work-single-gallery{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.csp-work-single-gallery img{
  display: block;
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(87,108,72,.14);
}

.csp-work-back-link{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  color: #2d4722;
  font-weight: 700;
  text-decoration: none;
}

.csp-work-back-link:hover{
  color: var(--cs-accent-strong);
}

/* =========================================================
   FORMS
   ========================================================= */

.csp-input,
.csp-select,
.csp-textarea,
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="date"],
textarea,
select{
  border-radius: 12px;
  background: rgba(255,255,255,.72);
  color: #23341e;
}

input,
textarea,
select{
  border: 1px solid rgba(91,114,72,.18);
}

.csp-marketing-form{
  display: block;
}

.csp-marketing-form-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 18px;
  margin-top: 22px;
  margin-bottom: 16px;
}

.csp-marketing-form-grid > div,
.csp-marketing-form > div{
  min-width: 0;
}

.csp-marketing-label{
  display: block;
  margin: 0 0 6px;
  font-weight: 600;
  color: #2b3c24;
}

.csp-marketing-input,
.csp-marketing-select,
.csp-marketing-textarea{
  display: block;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
  min-height: 46px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid rgba(91,114,72,.18);
  background: rgba(255,255,255,.72);
  color: #23341e;
  font-size: 15px;
}

.csp-marketing-textarea{
  min-height: 140px;
  padding: 12px 14px;
  resize: vertical;
}

.csp-marketing-form > div{
  margin-bottom: 16px;
}

.csp-marketing-form .csp-marketing-actions{
  position: static;
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
}

.csp-marketing-form .csp-marketing-btn{
  min-width: 160px;
}

.csp-marketing-note{
  margin-top: 16px;
}

.csp-marketing-select{
  height: 46px;
  line-height: 46px;
  padding: 0 14px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

/* =========================================================
   CTA
   ========================================================= */

.csp-marketing-cta{
  position: relative;
  overflow: hidden;
  margin-top: 0;
  border-radius: 16px;
  border: 1px solid rgba(86,106,70,.12);
  background: linear-gradient(180deg, #e7ecd6 0%, #dfe5cb 100%);
  box-shadow:
    0 10px 20px rgba(0,0,0,.10),
    0 4px 8px rgba(0,0,0,.04);
}

.csp-marketing-cta::before{
  display: none;
}

.csp-marketing-cta__inner{
  position: relative;
  z-index: 1;
  padding: 20px 22px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.csp-marketing-cta__text{
  margin: 0;
  color: rgba(34,50,35,.86);
  font-size: 15px;
  line-height: 1.6;
}

.csp-marketing-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
  margin-left: auto;
}

/* =========================================================
   QUOTE FORM ALERTS
   ========================================================= */

.csp-quote-alert{
  margin: 0 0 18px;
  padding: 14px 16px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.5;
}

.csp-quote-alert--error{
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
}

.csp-marketing-consent-row{
  margin-top: 16px;
}

.csp-marketing-checkbox{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
  color: #374151;
}

.csp-marketing-checkbox input[type="checkbox"]{
  margin-top: 3px;
  flex: 0 0 auto;
}

/* =========================================================
   QUOTE SUCCESS MODAL
   ========================================================= */

.csp-quote-modal{
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
}

.csp-quote-modal.is-open{
  display: block;
}

.csp-quote-modal[aria-hidden="true"]{
  display: none;
}

.csp-quote-modal__backdrop{
  position: absolute;
  inset: 0;
  background: rgba(15,23,42,0.52);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.csp-quote-modal__dialog{
  position: relative;
  z-index: 2;
  width: min(92vw, 560px);
  margin: 10vh auto 0;
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(255,255,255,0.78);
  border-radius: 24px;
  box-shadow: 0 24px 70px rgba(15,23,42,0.22);
  padding: 28px 24px 24px;
  text-align: center;
}

.csp-quote-modal__close{
  position: absolute;
  top: 12px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 999px;
  background: rgba(15,23,42,0.06);
  color: #1f2937;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.csp-quote-modal__close:hover{
  background: rgba(15,23,42,0.10);
}

.csp-quote-modal__icon{
  width: 68px;
  height: 68px;
  margin: 0 auto 16px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 800;
  color: #ffffff;
  background: linear-gradient(135deg, #3f8a2f 0%, #2d6a1f 100%);
  box-shadow: 0 14px 30px rgba(63,138,47,0.28);
}

.csp-quote-modal__title{
  margin: 0 0 10px;
  font-size: 30px;
  line-height: 1.1;
  color: #234125;
}

.csp-quote-modal__text{
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: #374151;
}

.csp-quote-modal__actions{
  margin-top: 22px;
  display: flex;
  justify-content: center;
}

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

.csp-footer,
.site-footer,
footer{
  background: rgba(22,22,20,.94);
  color: rgba(255,255,255,.84);
}

.csp-footer a,
.site-footer a,
footer a{
  color: rgba(255,255,255,.84);
}

.csp-footer a:hover,
.site-footer a:hover,
footer a:hover{
  color: #fff;
}

/* =========================================================
   BOTTOM SPACING
   ========================================================= */

.csp-work-page-wrap > .csp-work-panel{
  margin-bottom: 40px;
}

.csp-work-single-wrap > .csp-work-single-panel{
  margin-bottom: 40px;
}

.csp-marketing-page-wrap > *:last-child{
  margin-bottom: 0;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1100px){
  .csp-marketing-panel__inner2{
    padding-right: 0;
  }

  .csp-marketing-panel2 .csp-marketing-actions{
    position: static;
    margin-top: 16px;
  }

  .csp-marketing-grid--3{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px){
  :root{
    --cs-page-gutter: 16px;
  }

  .csp-marketing-grid--2,
  .csp-marketing-grid--3,
  .csp-marketing-form-grid{
    grid-template-columns: 1fr;
  }

  .csp-marketing-cta__inner{
    align-items: flex-start;
  }

  .csp-marketing-card__body{
    grid-template-columns: 74px minmax(0, 1fr);
    column-gap: 16px;
    padding: 16px 18px 16px 26px;
    min-height: 0;
  }

  .csp-marketing-card__icon{
    width: 74px;
    height: 74px;
  }

  .csp-marketing-card__icon svg{
    width: 36px;
    height: 36px;
  }

  .csp-marketing-card__title{
    font-size: 22px;
  }
}

@media (max-width: 900px){
  :root{
    --cs-shell-top: 150px;
  }

  .csp-work-panel,
  .csp-marketing-panel,
  .csp-marketing-panel2{
    padding: 14px;
  }

  .csp-home-panel-inner,
  .csp-glass-panel__inner,
  .csp-work-hero-panel__inner,
  .csp-work-single-panel__inner{
    padding: 16px;
  }

  .csp-title,
  .csp-home-panel-title,
  .csp-page-title,
  .csp-work-title,
  .csp-marketing-title{
    font-size: clamp(32px, 9vw, 46px);
  }

  .csp-list,
  .csp-work-grid{
    grid-template-columns: 1fr;
  }

  .csp-marketing-form .csp-marketing-actions{
    justify-content: flex-start;
  }

  .csp-marketing-actions{
    margin-left: 0;
    justify-content: flex-start;
  }
}

@media (max-width: 767px){
  .csp-quote-modal__dialog{
    width: min(94vw, 560px);
    margin: 8vh auto 0;
    padding: 24px 18px 20px;
    border-radius: 20px;
  }

  .csp-quote-modal__title{
    font-size: 26px;
  }
}

@media (max-width: 640px){
  :root{
    --cs-shell-top: 138px;
  }

  body::before{
    background-size: 76px;
  }

  .csp-work-card__footer{
    flex-direction: column;
    align-items: flex-start;
  }

  .csp-work-single-gallery{
    grid-template-columns: 1fr;
  }

  .csp-work-single-gallery img{
    height: 220px;
  }

  .csp-marketing-card__body{
    grid-template-columns: 1fr;
    row-gap: 14px;
    padding: 16px 16px 16px 24px;
  }

  .csp-marketing-card__icon{
    width: 72px;
    height: 72px;
  }

  .csp-marketing-hero,
  .csp-marketing-panel,
  .csp-marketing-cta,
  .csp-marketing-panel2{
    margin-bottom: 18px;
  }

  .csp-marketing-form .csp-marketing-actions{
    margin-top: 18px;
  }
}

/* ========================================
   MOBILE PORTRAIT WIDTH FIX
   Force marketing panels/forms to fill phone width
======================================== */
@media (max-width: 640px){

  .csp-marketing-page-wrap,
  .csp-marketing-page-wrap > *,
  .csp-marketing-panel,
  .csp-marketing-panel::before,
  .csp-marketing-panel__inner,
  .csp-marketing-panel2,
  .csp-marketing-panel__inner2,
  .csp-marketing-cta,
  .csp-marketing-cta__inner,
  .csp-marketing-form,
  .csp-marketing-form-grid,
  .csp-marketing-form-grid > div,
  .csp-marketing-form > div{
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  .csp-marketing-page-wrap{
    padding-left: 14px !important;
    padding-right: 14px !important;
  }

  .csp-marketing-panel,
  .csp-marketing-panel2,
  .csp-marketing-cta{
    display: block;
    margin-left: 0;
    margin-right: 0;
  }

  .csp-marketing-form-grid{
    grid-template-columns: 1fr !important;
    gap: 14px;
  }

  .csp-marketing-input,
  .csp-marketing-select,
  .csp-marketing-textarea,
  .csp-marketing-form input[type="text"],
  .csp-marketing-form input[type="email"],
  .csp-marketing-form input[type="tel"],
  .csp-marketing-form input[type="url"],
  .csp-marketing-form select,
  .csp-marketing-form textarea{
    display: block;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0;
    box-sizing: border-box;
  }

  .csp-marketing-title,
  .csp-marketing-section-title,
  .csp-marketing-subtitle,
  .csp-marketing-section-text,
  .csp-marketing-label{
    max-width: 100%;
    word-break: normal;
    overflow-wrap: break-word;
  }

  .csp-marketing-actions,
  .csp-marketing-form .csp-marketing-actions{
    width: 100%;
    justify-content: stretch;
  }

  .csp-marketing-actions .csp-marketing-btn,
  .csp-marketing-form .csp-marketing-btn{
    width: 100%;
    max-width: 100%;
  }
}
/* ========================================
   FORCE SPACE BETWEEN QUOTE PAGE PANELS
======================================== */

/* reset any old spacing that may fight this */
.csp-marketing-hero,
.csp-marketing-panel,
.csp-marketing-panel2,
.csp-marketing-cta{
  margin-top: 0 !important;
}

/* add real vertical space between stacked panels */
.csp-marketing-hero{
  margin-bottom: 22px !important;
}

.csp-marketing-panel{
  margin-bottom: 22px !important;
}

.csp-marketing-panel2{
  margin-bottom: 22px !important;
}

.csp-marketing-cta{
  margin-bottom: 0 !important;
}

/* mobile slightly tighter */
@media (max-width: 640px){
  .csp-marketing-hero,
  .csp-marketing-panel,
  .csp-marketing-panel2{
    margin-bottom: 16px !important;
  }
}




/*CONTACT PAGE*/
/* ========================================
   CONTACT BLOCK UPGRADE
======================================== */

/* ========================================
   CONTACT — ICON LAYOUT
======================================== */

.csp-contact-person{
  display:flex;
  gap:14px;
  align-items:flex-start;
  padding:16px 0;
}

.csp-contact-person + .csp-contact-person{
  border-top:1px solid rgba(0,0,0,.08);
}

.csp-contact-avatar{
  width:52px;
  height:52px;
  min-width:52px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
  background:linear-gradient(180deg,#edf2de,#dfe7c8);
  border:1px solid rgba(100,122,80,.14);
}

.csp-contact-info{
  display:flex;
  flex-direction:column;
  gap:6px;
}

.csp-contact-name{
  font-size:20px;
  font-weight:700;
  color:#1b4332;
}

.csp-contact-line{
  font-size:15px;
  color:#2d3e2d;
}
/* ========================================
   SERVICE PILLS — INTERACTIVE
======================================== */

.csp-marketing-pill-wrap{
  display:flex;
  flex-wrap:wrap;
  gap:14px; /* ← horizontal + vertical spacing */
  margin-top:16px;
}

.csp-marketing-pill{
  padding:10px 20px;
  font-size:15px;
  font-weight:700;
  border-radius:999px;
  border:1px solid rgba(108,134,84,.16);
  background:linear-gradient(180deg,#e6edd1,#d8e3bf);
  color:#365425;
  cursor:pointer;
  transition:all .18s ease;
}

/* hover */
.csp-marketing-pill:hover{
  transform:translateY(-1px);
  background:linear-gradient(180deg,#4e972d,#3f7d23);
  color:#fff;
}

/* active (click state) */
.csp-marketing-pill.is-active{
  background:linear-gradient(180deg,#4e972d,#3f7d23);
  color:#fff;
  border-color:transparent;
}

/* ========================================
   CONTACT + SERVICE AREA SECTION BORDERS
======================================== */

.csp-contact-page .csp-marketing-section{
  border:1px solid rgba(0,0,0,.08);
  border-radius:14px;
  padding:18px;
  background:transparent;
}

/* spacing between the two columns */
.csp-contact-page .csp-marketing-grid{
  gap:22px;
}
/* ========================================
   CONTACT AVATAR — CLEAN GREEN ICON
======================================== */

.csp-contact-avatar{
  background:linear-gradient(180deg,#edf2de,#dfe7c8);
  border:1px solid rgba(100,122,80,.14);
}

.csp-contact-avatar::before,
.csp-contact-avatar::after{
  background:#4e972d;
}

