:root {
  --cwmh-green-990: #021513;
  --cwmh-green-980: #031c18;
  --cwmh-green-950: #05271f;
  --cwmh-green-925: #082f28;
  --cwmh-green-900: #073a31;
  --cwmh-green-850: #0b463c;
  --cwmh-green-800: #0f5549;
  --cwmh-green-700: #147260;
  --cwmh-accent: #752f40;
  --cwmh-accent-dark: #5f2332;
  --cwmh-accent-soft: #f4e6ea;
  --cwmh-cream: #fbf5e6;
  --cwmh-paper: #fffdf6;
  --cwmh-paper-soft: #f7f1df;
  --cwmh-ink: #09231f;
  --cwmh-muted: #60736e;
  --cwmh-line: rgba(9, 35, 31, .12);
  --cwmh-white-line: rgba(255, 255, 255, .16);
  --cwmh-shadow: 0 32px 90px rgba(0, 0, 0, .20);
  --cwmh-shadow-soft: 0 18px 52px rgba(4, 33, 28, .13);
  --cwmh-radius-xl: 42px;
  --cwmh-radius-lg: 30px;
  --cwmh-radius-md: 18px;
  --cwmh-max: 1220px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.cwmh-theme {
  margin: 0;
  font-family: Poppins, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--cwmh-cream);
  color: var(--cwmh-ink);
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}
body.cwmh-theme a { color: inherit; text-decoration: none; }
body.cwmh-theme img { max-width: 100%; height: auto; }
body.cwmh-theme h1,
body.cwmh-theme h2,
body.cwmh-theme h3,
body.cwmh-theme h4,
body.cwmh-theme p { margin-top: 0; }
body.cwmh-theme p { line-height: 1.68; }
.cwmh-container { width: min(var(--cwmh-max), calc(100% - 48px)); margin: 0 auto; position: relative; z-index: 2; }
.screen-reader-text,
.skip-link:not(:focus) { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link:focus { position: fixed; top: 16px; left: 16px; z-index: 9999; background: #fff; color: var(--cwmh-green-950); padding: 10px 14px; border-radius: 999px; font-weight: 800; }

.cwmh-site-header {
  position: sticky;
  top: 18px;
  z-index: 90;
  padding-top: 18px;
  pointer-events: none;
}
.admin-bar .cwmh-site-header { top: 50px; }
.cwmh-nav-pill {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 76px;
  padding: 11px;
  border-radius: 999px;
  background: rgba(255,253,246,.96);
  border: 1px solid rgba(255,255,255,.72);
  box-shadow: 0 18px 70px rgba(0,0,0,.16);
  backdrop-filter: blur(22px);
  pointer-events: auto;
}
.cwmh-brand { display: flex; align-items: center; gap: 12px; min-width: 235px; padding-left: 10px; }
.cwmh-brand-logo img { width: auto; max-height: 54px; display: block; }
.cwmh-brand-mark {
  width: 46px; height: 46px; border-radius: 999px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--cwmh-green-700), var(--cwmh-green-950));
  color: #fff; font-weight: 900; letter-spacing: -.08em;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.24);
}
.cwmh-brand-title { display: flex; flex-direction: column; line-height: 1.02; font-weight: 900; letter-spacing: -.035em; font-size: 16px; }
.cwmh-brand-title small { margin-top: 4px; color: var(--cwmh-muted); font-size: 10px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.cwmh-navigation { flex: 1; display: flex; justify-content: center; }
.cwmh-nav-menu { display: flex; align-items: center; justify-content: center; gap: 2px; flex: 1; margin: 0; padding: 0; list-style: none; }
.cwmh-nav-menu li { margin: 0; padding: 0; list-style: none; }
.cwmh-nav-menu > .menu-item { position: static; }
.cwmh-nav-menu > .menu-item > a {
  display: inline-flex; align-items: center; gap: 8px;
  min-height: 46px; padding: 0 13px;
  border-radius: 999px;
  color: rgba(9,35,31,.82);
  font-weight: 850; font-size: 13px;
  transition: background .2s ease, color .2s ease, transform .2s ease;
  white-space: nowrap;
}
.cwmh-nav-menu > .menu-item-has-children > a:after {
  content: ""; width: 6px; height: 6px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg); margin-top: -4px; opacity: .72;
}
.cwmh-nav-menu > .menu-item > a:hover,
.cwmh-nav-menu > .current-menu-item > a,
.cwmh-nav-menu > .current-menu-ancestor > a { background: var(--cwmh-accent-soft); color: var(--cwmh-accent); transform: translateY(-1px); }
.cwmh-nav-menu > .menu-item > .sub-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 14px);
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 20px;
  border-radius: 32px;
  background: rgba(255,253,246,.985);
  border: 1px solid rgba(255,255,255,.82);
  box-shadow: var(--cwmh-shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
  list-style: none;
}
.cwmh-nav-menu > .menu-item > .sub-menu:before { content: ""; position: absolute; inset: -18px 0 auto 0; height: 18px; }
.cwmh-nav-menu > .menu-item:hover > .sub-menu,
.cwmh-nav-menu > .menu-item:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.cwmh-nav-menu > .menu-item > .sub-menu > .menu-item {
  padding: 20px;
  border-radius: 24px;
  background: rgba(247,241,223,.86);
  border: 1px solid rgba(9,35,31,.08);
}
.cwmh-nav-menu > .menu-item > .sub-menu > .menu-item:first-child {
  background: linear-gradient(135deg, var(--cwmh-green-950), var(--cwmh-green-800));
  color: #fff;
}
.cwmh-nav-menu > .menu-item > .sub-menu > .menu-item > a {
  display: block;
  margin-bottom: 12px;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--cwmh-accent);
  font-weight: 900;
}
.cwmh-nav-menu > .menu-item > .sub-menu > .menu-item:first-child > a { color: #fff; opacity: .72; }
.cwmh-nav-menu .sub-menu .sub-menu { position: static; display: block; margin: 0; padding: 0; list-style: none; }
.cwmh-nav-menu .sub-menu .sub-menu a,
.cwmh-nav-menu > .menu-item > .sub-menu > .menu-item:not(.menu-item-has-children) > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  color: rgba(9,35,31,.82);
  font-weight: 760;
  font-size: 14px;
  border-bottom: 1px solid rgba(9,35,31,.08);
  letter-spacing: normal;
  text-transform: none;
  margin-bottom: 0;
}
.cwmh-nav-menu .sub-menu .sub-menu a:after,
.cwmh-nav-menu > .menu-item > .sub-menu > .menu-item:not(.menu-item-has-children) > a:after { content: "›"; font-size: 20px; line-height: 1; }
.cwmh-nav-menu > .menu-item > .sub-menu > .menu-item:first-child .sub-menu a { color: rgba(255,255,255,.88); border-bottom-color: rgba(255,255,255,.14); }
.cwmh-nav-menu .sub-menu a:hover { color: var(--cwmh-accent); }
.cwmh-nav-menu > .menu-item > .sub-menu > .menu-item:first-child .sub-menu a:hover { color: #fff; }
.cwmh-nav-actions { min-width: 160px; display: flex; justify-content: flex-end; }
.cwmh-mobile-toggle { display: none; }

.cwmh-button,
.gform_wrapper.gravity-theme .gform_footer input[type="submit"],
.gform_wrapper .gform_button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  font-size: 14px;
  white-space: nowrap;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease, color .2s ease;
}
.cwmh-button:hover,
.gform_wrapper.gravity-theme .gform_footer input[type="submit"]:hover,
.gform_wrapper .gform_button:hover { transform: translateY(-2px); }
.cwmh-button-primary { background: var(--cwmh-green-900); color: #fff; box-shadow: 0 14px 30px rgba(5,38,31,.22); }
.cwmh-button-primary:hover { background: var(--cwmh-green-950); color: #fff; }
.cwmh-button-accent,
.gform_wrapper.gravity-theme .gform_footer input[type="submit"],
.gform_wrapper .gform_button { background: var(--cwmh-accent); color: #fff; box-shadow: 0 14px 30px rgba(117,47,64,.24); }
.cwmh-button-accent:hover,
.gform_wrapper.gravity-theme .gform_footer input[type="submit"]:hover,
.gform_wrapper .gform_button:hover { background: var(--cwmh-accent-dark); color: #fff; }
.cwmh-button-light { background: var(--cwmh-paper); color: var(--cwmh-green-950); }
.cwmh-button-outline { color: #fff; border-color: rgba(255,255,255,.25); background: rgba(255,255,255,.10); }
.cwmh-button-outline:hover { background: rgba(255,255,255,.16); color: #fff; }
.cwmh-text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--cwmh-accent); font-weight: 900; }
.cwmh-text-link:after { content: "›"; font-size: 19px; }

.cwmh-home-main {
  background:
    radial-gradient(circle at 92% 0%, rgba(117, 47, 64, .15), transparent 23rem),
    linear-gradient(180deg, var(--cwmh-green-950) 0%, var(--cwmh-green-900) 820px, var(--cwmh-cream) 820px, var(--cwmh-cream) 100%);
  position: relative;
  margin-top: -112px;
  padding-top: 112px;
}
.cwmh-home-main:before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 650px;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(180deg, black, transparent 90%);
  pointer-events: none;
}
.cwmh-home-hero { padding: 120px 0 82px; color: #fff; position: relative; }
.cwmh-home-hero-grid { display: grid; grid-template-columns: minmax(0, .95fr) minmax(430px, .72fr); gap: 54px; align-items: center; }
.cwmh-hero-copy-panel { position: relative; min-height: 420px; }
.cwmh-hero-copy-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px);
  transition: opacity .5s ease, visibility .5s ease, transform .6s ease;
}
.cwmh-hero-copy-slide.is-active { opacity: 1; visibility: visible; transform: translateY(0); }
.cwmh-home-hero h1 { max-width: 880px; margin: 0 0 20px; font-size: clamp(48px, 7.2vw, 94px); line-height: .9; letter-spacing: -.078em; text-wrap: balance; }
.cwmh-home-hero p { max-width: 740px; margin-bottom: 30px; color: rgba(255,255,255,.84); font-size: 19px; }
.cwmh-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.cwmh-slider-controls { display: flex; align-items: center; justify-content: space-between; gap: 18px; max-width: 710px; margin-top: 18px; pointer-events: auto; }
.cwmh-slider-dots { display: flex; gap: 9px; pointer-events: auto; }
.cwmh-slider-dot {
  width: 11px; height: 11px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.45);
  background: rgba(255,255,255,.18);
  cursor: pointer;
  transition: width .2s ease, background .2s ease, border-color .2s ease;
}
.cwmh-slider-dot.is-active { width: 34px; background: var(--cwmh-accent); border-color: var(--cwmh-accent); }
.cwmh-slider-arrows { display: flex; gap: 10px; pointer-events: auto; }
.cwmh-slider-arrow {
  width: 42px; height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.10);
  color: #fff;
  font: inherit;
  font-size: 22px;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}
.cwmh-slider-arrow:hover { transform: translateY(-2px); background: rgba(255,255,255,.18); }
.cwmh-hero-media { position: relative; min-height: 520px; }
.cwmh-hero-photo {
  position: absolute;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(255,255,255,.14);
  background-image: linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.55)), url('../img/project-bg-clean.png');
  background-size: cover;
  background-position: center;
  box-shadow: var(--cwmh-shadow);
  filter: saturate(.15) contrast(1.08);
}
.cwmh-hero-photo-large { inset: 34px 24px 32px 62px; }
.cwmh-hero-photo-small-top { width: 220px; height: 170px; left: 0; top: 0; background-position: 28% center; }
.cwmh-hero-photo-small-bottom { width: 230px; height: 190px; right: 0; bottom: 0; background-position: 58% center; }

.cwmh-section { padding: 84px 0; position: relative; }
.cwmh-section-head { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 32px; }
.cwmh-section-head h2 { margin-bottom: 0; max-width: 760px; font-size: clamp(36px, 5vw, 66px); line-height: .95; letter-spacing: -.065em; color: var(--cwmh-green-950); }
.cwmh-section-head p { max-width: 430px; margin-bottom: 0; color: var(--cwmh-muted); font-weight: 560; }
.cwmh-section-label { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 18px; padding: 8px 12px; border-radius: 999px; background: var(--cwmh-accent-soft); color: var(--cwmh-accent); font-weight: 900; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; }
.cwmh-section-label:before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--cwmh-accent); }
.cwmh-card,
.cwmh-content-card { border-radius: var(--cwmh-radius-lg); background: var(--cwmh-paper); border: 1px solid rgba(9,35,31,.08); box-shadow: var(--cwmh-shadow-soft); }

.cwmh-about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 24px; align-items: stretch; }
.cwmh-about-copy { padding: clamp(28px, 4vw, 46px); }
.cwmh-about-copy h2 { margin-bottom: 22px; font-size: clamp(34px, 4.5vw, 58px); line-height: .96; letter-spacing: -.065em; color: var(--cwmh-green-950); }
.cwmh-about-copy p { color: var(--cwmh-muted); font-size: 16px; }
.cwmh-feature-list { display: grid; gap: 10px; margin: 24px 0 0; padding: 0; list-style: none; }
.cwmh-feature-list li { display: flex; align-items: center; gap: 10px; padding: 12px 14px; border-radius: 999px; background: var(--cwmh-paper-soft); color: var(--cwmh-green-950); font-weight: 850; }
.cwmh-feature-list li:before { content: ""; width: 8px; height: 8px; flex: 0 0 8px; border-radius: 50%; background: var(--cwmh-accent); }
.cwmh-video-card {
  min-height: 440px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  border-radius: var(--cwmh-radius-lg);
  background-image: linear-gradient(180deg, rgba(5,39,31,.12), rgba(5,39,31,.72)), url('../img/project-bg-clean.png');
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(9,35,31,.08);
  box-shadow: var(--cwmh-shadow-soft);
}
.cwmh-video-card:after { content: ""; position: absolute; inset: 24px; border-radius: 26px; border: 1px solid rgba(255,255,255,.20); pointer-events: none; }
.cwmh-play-button { position: relative; z-index: 2; width: 92px; height: 92px; border-radius: 50%; border: 1px solid rgba(255,255,255,.34); background: rgba(255,253,246,.92); color: var(--cwmh-green-950); display: grid; place-items: center; box-shadow: 0 24px 70px rgba(0,0,0,.28); }
.cwmh-play-button:before { content: ""; margin-left: 6px; width: 0; height: 0; border-top: 15px solid transparent; border-bottom: 15px solid transparent; border-left: 23px solid currentColor; }
.cwmh-video-label { position: absolute; left: 42px; bottom: 42px; z-index: 2; color: #fff; }
.cwmh-video-label small { display: block; color: #fff; opacity: .72; font-size: 12px; letter-spacing: .16em; text-transform: uppercase; font-weight: 900; margin-bottom: 7px; }
.cwmh-video-label strong { font-size: 24px; line-height: 1.05; letter-spacing: -.04em; }

.cwmh-involved-section { padding-top: 20px; }
.cwmh-involved-card { border-radius: var(--cwmh-radius-xl); padding: clamp(30px, 4vw, 54px); background: var(--cwmh-green-950); color: #fff; display: grid; grid-template-columns: .95fr 1fr; gap: clamp(24px, 5vw, 70px); box-shadow: var(--cwmh-shadow); }
.cwmh-involved-card h2 { margin-bottom: 0; font-size: clamp(36px, 5vw, 70px); line-height: .92; letter-spacing: -.07em; }
.cwmh-involved-card h3 { margin: 0 0 8px; color: #fff; font-size: 22px; letter-spacing: -.035em; }
.cwmh-involved-card p { color: rgba(255,255,255,.74); }
.cwmh-involved-copy { display: grid; gap: 16px; align-content: center; }

.cwmh-projects-section { overflow: hidden; }
.cwmh-project-tile-row { display: grid; grid-template-columns: repeat(5, minmax(220px, 1fr)); gap: 24px; overflow-x: auto; padding-bottom: 12px; scroll-snap-type: x mandatory; }
.cwmh-project-tile {
  min-height: 330px;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 26px;
  color: #fff;
  background-image: linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.72)), url('../img/project-tile-bg.png');
  background-size: cover;
  background-position: center;
  box-shadow: 0 22px 52px rgba(4,33,28,.20);
  scroll-snap-align: start;
  transition: transform .22s ease, box-shadow .22s ease;
}
.cwmh-project-tile:before { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,.16); transition: background .2s ease; }
.cwmh-project-tile-logo { position: absolute; inset: 26px auto auto 26px; z-index: 2; text-transform: uppercase; letter-spacing: .13em; font-weight: 700; font-size: 14px; opacity: .9; }
.cwmh-project-tile-logo small { display: block; font-size: 8px; margin-top: 4px; }
.cwmh-project-tile strong { position: relative; z-index: 2; font-size: 24px; line-height: 1.04; letter-spacing: -.04em; }
.cwmh-project-tile:hover { transform: translateY(-5px); box-shadow: 0 28px 70px rgba(4,33,28,.28); }
.cwmh-project-tile:hover:before { background: rgba(117,47,64,.18); }

.cwmh-news-section { padding-top: 40px; }
.cwmh-news-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.cwmh-news-card { border-radius: 30px; overflow: hidden; background: var(--cwmh-paper); border: 1px solid rgba(9,35,31,.08); box-shadow: var(--cwmh-shadow-soft); }
.cwmh-news-image { display: block; min-height: 220px; background-size: cover; background-position: center; filter: saturate(.75); }
.cwmh-news-card-body { padding: 26px; }
.cwmh-news-card time { display: inline-flex; margin-bottom: 14px; padding: 8px 11px; border-radius: 999px; background: var(--cwmh-accent-soft); color: var(--cwmh-accent); font-size: 12px; font-weight: 900; letter-spacing: .04em; }
.cwmh-news-card h3 { margin: 0 0 10px; font-size: 25px; line-height: 1.06; letter-spacing: -.045em; color: var(--cwmh-green-950); }
.cwmh-news-card p { color: var(--cwmh-muted); font-size: 15px; }
.cwmh-empty-state { grid-column: 1 / -1; padding: 30px; border-radius: 24px; background: var(--cwmh-paper); border: 1px solid var(--cwmh-line); color: var(--cwmh-muted); }

.cwmh-mailing-section { padding-top: 30px; }
.cwmh-mailing-card { display: grid; grid-template-columns: .7fr 1fr; gap: 28px; align-items: stretch; border-radius: var(--cwmh-radius-xl); padding: clamp(28px, 4vw, 52px); background: var(--cwmh-green-900); color: #fff; box-shadow: var(--cwmh-shadow); overflow: hidden; position: relative; }
.cwmh-mailing-card:before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px); background-size: 38px 38px; opacity: .35; }
.cwmh-mailing-copy, .cwmh-mailing-form { position: relative; z-index: 1; }
.cwmh-mailing-copy h2 { margin-bottom: 18px; font-size: clamp(42px, 5.8vw, 76px); line-height: .9; letter-spacing: -.07em; }
.cwmh-mailing-copy p { color: rgba(255,255,255,.76); font-size: 17px; }
.cwmh-mailing-form { padding: 26px; border-radius: 28px; background: rgba(255,253,246,.10); border: 1px solid rgba(255,255,255,.15); display: grid; gap: 14px; backdrop-filter: blur(16px); }
.cwmh-mailing-form input[type="email"],
.cwmh-mailing-form input[type="text"] { width: 100%; min-height: 58px; border-radius: 18px; border: 1px solid rgba(255,255,255,.20); background: rgba(255,253,246,.94); padding: 0 18px; font: inherit; font-weight: 650; color: var(--cwmh-green-950); }
.cwmh-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.cwmh-mailing-form fieldset { margin: 0; padding: 18px; border-radius: 20px; border: 1px solid rgba(255,255,255,.16); }
.cwmh-mailing-form legend { padding: 0 8px; font-weight: 900; }
.cwmh-check-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 20px; margin-top: 10px; }
.cwmh-check-grid label { display: flex; align-items: center; gap: 10px; font-weight: 800; color: rgba(255,255,255,.86); }
.cwmh-check-grid input { width: 18px; height: 18px; accent-color: var(--cwmh-accent); }

.cwmh-inner-hero-shell {
  padding: 34px 0 0;
  background:
    radial-gradient(circle at 0% 0%, rgba(117,47,64,.09), transparent 26rem),
    linear-gradient(180deg, #fffdf6 0%, var(--cwmh-cream) 100%);
}
.cwmh-inner-hero {
  position: relative;
  min-height: 380px;
  border-radius: 38px;
  overflow: hidden;
  background: var(--cwmh-green-900);
  box-shadow: var(--cwmh-shadow-soft);
  isolation: isolate;
  color: #fff;
}
.cwmh-inner-slides { position: absolute; inset: 0; z-index: 1; }
.cwmh-inner-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity .9s ease, transform 1.5s ease;
  filter: saturate(.78) contrast(1.02);
}
.cwmh-inner-slide.is-active { opacity: 1; transform: scale(1); }
.cwmh-inner-hero-green {
  background-image:
    linear-gradient(90deg, rgba(5,38,31,.78), rgba(5,38,31,.34)),
    radial-gradient(circle at 82% 24%, rgba(117,47,64,.30), transparent 18rem),
    linear-gradient(135deg, #0a4a39, #126348 48%, #05261f);
}
.cwmh-inner-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background-image:
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, black, transparent 90%);
  pointer-events: none;
}
.cwmh-inner-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(90deg, rgba(5,38,31,.80), rgba(5,38,31,.46), rgba(5,38,31,.20));
}
.cwmh-inner-hero:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  background: linear-gradient(180deg, rgba(0,0,0,0) 38%, rgba(0,0,0,.16));
  pointer-events: none;
}
.cwmh-inner-hero-content {
  position: relative;
  z-index: 6;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(28px, 5vw, 52px);
}
.cwmh-breadcrumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 9px; margin-bottom: 16px; color: rgba(255,255,255,.74); font-size: 14px; font-weight: 800; }
.cwmh-breadcrumbs a { color: rgba(255,255,255,.84); }
.cwmh-breadcrumbs a:hover { color: #fff; }
.cwmh-breadcrumbs span[aria-hidden="true"] { color: var(--cwmh-accent); }
.cwmh-inner-hero h1 { max-width: 780px; margin: 0; color: #fff; font-size: clamp(50px, 7vw, 86px); line-height: .92; letter-spacing: -.075em; }
.cwmh-inner-dots { position: absolute; right: 34px; bottom: 34px; z-index: 9; display: flex; gap: 8px; }
.cwmh-inner-dot { width: 9px; height: 9px; border-radius: 999px; border: 0; padding: 0; background: rgba(255,255,255,.42); cursor: pointer; transition: width .2s ease, background .2s ease; }
.cwmh-inner-dot.is-active { width: 28px; background: var(--cwmh-accent); }

.cwmh-content-wrap { padding: 46px 0 78px; background: var(--cwmh-cream); }
.cwmh-inner-layout { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 30px; align-items: start; }
.cwmh-entry-content { padding: clamp(28px, 4vw, 52px); }
.cwmh-entry-content > *:first-child { margin-top: 0; }
.cwmh-entry-content h2 { margin: 34px 0 14px; font-size: clamp(30px, 4vw, 48px); line-height: 1; letter-spacing: -.055em; color: var(--cwmh-green-950); }
.cwmh-entry-content h3 { margin: 26px 0 12px; font-size: 26px; line-height: 1.08; letter-spacing: -.04em; color: var(--cwmh-green-900); }
.cwmh-entry-content p,
.cwmh-entry-content li { color: var(--cwmh-muted); font-size: 17px; }
.cwmh-entry-content a { color: var(--cwmh-accent); font-weight: 850; }
.cwmh-entry-content ul { list-style: none; padding: 0; margin: 20px 0; display: grid; gap: 12px; }
.cwmh-entry-content ul li { position: relative; padding-left: 34px; }
.cwmh-entry-content ul li:before { content: ""; position: absolute; left: 0; top: .48em; width: 18px; height: 18px; border-radius: 7px 7px 7px 2px; background: var(--cwmh-accent); box-shadow: 0 8px 18px rgba(117,47,64,.18); transform: rotate(-8deg); }
.cwmh-entry-content ol { padding-left: 28px; }
.cwmh-inner-sidebar { position: sticky; top: 112px; }
.cwmh-sidebar-widget { border-radius: 28px; background: var(--cwmh-green-950); color: #fff; padding: 20px; box-shadow: 0 22px 60px rgba(5,38,31,.18); }
.cwmh-sidebar-widget + .cwmh-sidebar-widget { margin-top: 18px; }
.cwmh-sidebar-title { margin: 0 0 14px; font-size: 22px; line-height: 1.05; letter-spacing: -.04em; text-transform: none; color: #fff; }
.cwmh-sidebar-widget ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 8px; }
.cwmh-sidebar-widget li a { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 13px 14px; border-radius: 16px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.10); color: rgba(255,255,255,.84); font-weight: 820; font-size: 14px; }

.cwmh-sidebar-widget li a:after { content: "›"; font-size: 20px; }
.cwmh-sidebar-widget li.is-current > a,
.cwmh-sidebar-widget li.current_page_item > a,
.cwmh-sidebar-widget li.current-menu-item > a { background: var(--cwmh-accent); color: #fff; border-color: rgba(255,255,255,.14); }
.cwmh-sidebar-widget li a:hover { background: rgba(255,255,255,.13); color: #fff; }

.cwmh-archive-wrap,
.cwmh-news-page { padding-top: 90px; }
.cwmh-archive-header h1 { margin: 0 0 32px; color: var(--cwmh-green-950); font-size: clamp(48px, 7vw, 88px); line-height: .9; letter-spacing: -.075em; }
.cwmh-news-grid-archive { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.cwmh-page-intro { margin-bottom: 28px; }
.cwmh-pagination,
.pagination { margin-top: 34px; display: flex; justify-content: center; }
.cwmh-pagination ul,
.pagination .nav-links { display: flex; align-items: center; gap: 8px; margin: 0; padding: 0; list-style: none; }
.cwmh-pagination a,
.cwmh-pagination span,
.pagination a,
.pagination span { min-width: 42px; height: 42px; display: grid; place-items: center; border-radius: 999px; background: var(--cwmh-paper); border: 1px solid var(--cwmh-line); color: var(--cwmh-green-950); font-weight: 900; }
.cwmh-pagination .current,
.pagination .current { background: var(--cwmh-accent); color: #fff; border-color: var(--cwmh-accent); }
.cwmh-single-container { max-width: 900px; }
.cwmh-single-header time { display: inline-flex; margin-bottom: 16px; padding: 8px 11px; border-radius: 999px; background: var(--cwmh-accent-soft); color: var(--cwmh-accent); font-size: 12px; font-weight: 900; }
.cwmh-single-header h1 { margin: 0 0 22px; font-size: clamp(44px, 7vw, 78px); line-height: .92; letter-spacing: -.07em; color: var(--cwmh-green-950); }
.cwmh-single-image img { width: 100%; border-radius: 24px; margin-bottom: 28px; }

.cwmh-contact-panel { margin-bottom: 28px; padding: clamp(26px, 4vw, 46px); border-radius: var(--cwmh-radius-lg); background: var(--cwmh-green-950); color: #fff; }
.cwmh-contact-panel h2 { margin-bottom: 14px; color: #fff; }
.cwmh-contact-panel p { color: rgba(255,255,255,.76); }
.gform_wrapper.gravity-theme input[type="text"],
.gform_wrapper.gravity-theme input[type="email"],
.gform_wrapper.gravity-theme input[type="tel"],
.gform_wrapper.gravity-theme textarea,
.gform_wrapper.gravity-theme select,
.gform_wrapper input[type="text"],
.gform_wrapper input[type="email"],
.gform_wrapper input[type="tel"],
.gform_wrapper textarea,
.gform_wrapper select { border-radius: 16px !important; border: 1px solid var(--cwmh-line) !important; padding: 14px 16px !important; font: inherit !important; box-shadow: none !important; background: #fff !important; }
.gform_wrapper.gravity-theme .gfield_label,
.gform_wrapper .gfield_label { color: var(--cwmh-green-950) !important; font-weight: 900 !important; }
.gform_wrapper.gravity-theme .gform_footer,
.gform_wrapper .gform_footer { margin-top: 18px !important; }

.cwmh-testimonials-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.cwmh-testimonials-grid blockquote { margin: 0; padding: 24px; border-radius: 24px; background: var(--cwmh-paper-soft); color: var(--cwmh-green-950); }
.cwmh-testimonials-grid p { color: var(--cwmh-green-950); font-weight: 760; }
.cwmh-testimonials-grid cite { color: var(--cwmh-accent); font-style: normal; font-weight: 900; }

.cwmh-site-footer { background: var(--cwmh-green-990); color: #fff; padding: 70px 0 32px; }
.cwmh-footer-panel { border-radius: var(--cwmh-radius-xl); background: linear-gradient(135deg, var(--cwmh-green-950), var(--cwmh-green-900)); border: 1px solid rgba(255,255,255,.10); padding: clamp(28px, 4vw, 52px); box-shadow: var(--cwmh-shadow); }
.cwmh-footer-main { display: grid; grid-template-columns: 1.1fr .9fr .7fr; gap: 32px; align-items: start; }
.cwmh-footer-brand .cwmh-brand { min-width: 0; padding-left: 0; color: #fff; margin-bottom: 22px; }
.cwmh-footer-brand .cwmh-brand-title small { color: rgba(255,255,255,.66); }
.cwmh-footer-brand p,
.cwmh-footer-address address { color: rgba(255,255,255,.72); font-style: normal; }
.cwmh-footer-address h2,
.cwmh-footer-links h2 { margin: 0 0 14px; font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.62); }
.cwmh-footer-address a { color: #fff; font-weight: 850; }
.cwmh-footer-menu { margin: 0; padding: 0; list-style: none; display: grid; gap: 10px; }
.cwmh-footer-menu a { color: rgba(255,255,255,.78); font-weight: 760; }
.cwmh-footer-menu a:hover { color: #fff; }
.cwmh-footer-logo-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; margin-top: 36px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.12); }
.cwmh-footer-logo { min-height: 78px; display: grid; place-items: center; padding: 14px; border-radius: 18px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.10); }
.cwmh-footer-logo img { max-height: 52px; width: auto; object-fit: contain; filter: none; }
.cwmh-footer-logo span { color: rgba(255,255,255,.54); font-size: 12px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.cwmh-footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 28px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.54); font-size: 13px; font-weight: 750; }

@media (max-width: 1120px) {
  .cwmh-brand { min-width: 195px; }
  .cwmh-nav-actions { min-width: auto; }
  .cwmh-nav-menu > .menu-item > a { padding: 0 10px; font-size: 12px; }
  .cwmh-home-hero-grid { grid-template-columns: 1fr; }
  .cwmh-hero-media { min-height: 440px; max-width: 680px; }
  .cwmh-project-tile-row { grid-template-columns: repeat(5, 260px); }
}
@media (max-width: 920px) {
  .admin-bar .cwmh-site-header { top: 46px; }
  .cwmh-nav-pill { border-radius: 32px; align-items: center; flex-wrap: wrap; }
  .cwmh-mobile-toggle { display: grid; width: 46px; height: 46px; border: 0; border-radius: 999px; background: var(--cwmh-green-950); place-items: center; padding: 10px; }
  .cwmh-mobile-toggle span:not(.screen-reader-text) { width: 22px; height: 2px; background: #fff; display: block; margin: 2px 0; }
  .cwmh-navigation { display: none; flex-basis: 100%; order: 3; justify-content: stretch; }
  .cwmh-nav-pill.is-open .cwmh-navigation { display: block; }
  .cwmh-nav-menu { display: grid; gap: 6px; }
  .cwmh-nav-menu > .menu-item > a { width: 100%; justify-content: space-between; padding: 13px 16px; min-height: auto; }
  .cwmh-nav-menu > .menu-item > .sub-menu { position: static; width: 100%; display: none; opacity: 1; visibility: visible; transform: none; grid-template-columns: 1fr; box-shadow: none; margin: 4px 0 8px; border-radius: 22px; }
  .cwmh-nav-menu > .menu-item.is-open > .sub-menu { display: grid; }
  .cwmh-nav-actions { display: none; }
  .cwmh-about-grid,
  .cwmh-involved-card,
  .cwmh-mailing-card,
  .cwmh-inner-layout,
  .cwmh-footer-main { grid-template-columns: 1fr; }
  .cwmh-inner-sidebar { position: static; order: -1; }
  .cwmh-news-grid,
  .cwmh-news-grid-archive,
  .cwmh-testimonials-grid { grid-template-columns: 1fr; }
  .cwmh-footer-logo-row { grid-template-columns: repeat(2, 1fr); }
  .cwmh-section-head { align-items: start; flex-direction: column; }
}
@media (max-width: 640px) {
  .cwmh-container { width: min(100% - 28px, var(--cwmh-max)); }
  .cwmh-site-header { top: 8px; padding-top: 8px; }
  .admin-bar .cwmh-site-header { top: 54px; }
  .cwmh-brand { min-width: 0; }
  .cwmh-brand-title { font-size: 14px; }
  .cwmh-home-main { margin-top: -92px; padding-top: 92px; }
  .cwmh-home-hero { padding-top: 86px; }
  .cwmh-home-hero h1 { font-size: clamp(42px, 14vw, 62px); }
  .cwmh-home-hero p { font-size: 16px; }
  .cwmh-hero-copy-panel { min-height: 510px; }
  .cwmh-hero-media { min-height: 310px; }
  .cwmh-hero-photo-large { inset: 20px 0 20px 42px; }
  .cwmh-hero-photo-small-top { width: 160px; height: 122px; }
  .cwmh-hero-photo-small-bottom { width: 160px; height: 130px; }
  .cwmh-form-row,
  .cwmh-check-grid { grid-template-columns: 1fr; }
  .cwmh-inner-hero-shell { padding-top: 22px; }
  .cwmh-inner-hero { min-height: 310px; border-radius: 28px; }
  .cwmh-inner-hero-content { min-height: 310px; padding: 28px; }
  .cwmh-inner-hero h1 { font-size: clamp(44px, 16vw, 72px); }
  .cwmh-inner-dots { right: 24px; bottom: 24px; }
  .cwmh-entry-content { padding: 24px; }
  .cwmh-footer-logo-row { grid-template-columns: 1fr; }
  .cwmh-footer-bottom { flex-direction: column; }
}

/* v1.0.3 refinements */
.cwmh-site-header .cwmh-container {
  width: min(1680px, calc(100% - 64px));
}
.cwmh-nav-pill {
  justify-content: flex-start;
  padding-left: 16px;
  padding-right: 16px;
}
.cwmh-brand {
  flex: 0 0 auto;
  min-width: 215px;
  padding-left: 8px;
}
.cwmh-navigation {
  flex: 1 1 auto;
  justify-content: center;
}
.cwmh-nav-actions {
  flex: 0 0 auto;
}
.cwmh-nav-actions a.cwmh-button-primary,
.cwmh-nav-actions .cwmh-button-primary,
.cwmh-button.cwmh-button-primary {
  color: #fff !important;
}
.cwmh-nav-menu > .menu-item > .sub-menu {
  left: 0;
  right: 0;
  width: 100%;
}

.cwmh-elementor-safe-wrap {
  padding-top: 90px;
  padding-bottom: 90px;
}
.cwmh-elementor-content-card {
  min-height: 420px;
}
.elementor-editor-active .cwmh-site-header,
.elementor-editor-preview .cwmh-site-header {
  position: relative;
  top: auto;
}

.cwmh-sidebar-widget {
  padding: 24px;
}
.cwmh-sidebar-widget ul,
.cwmh-sidebar-widget .advanced-sidebar-menu,
.cwmh-sidebar-widget .advanced-sidebar-menu ul {
  gap: 14px;
}
.cwmh-sidebar-widget li,
.cwmh-sidebar-widget .advanced-sidebar-menu li {
  margin: 0 0 14px !important;
}
.cwmh-sidebar-widget li:last-child,
.cwmh-sidebar-widget .advanced-sidebar-menu li:last-child {
  margin-bottom: 0 !important;
}
.cwmh-sidebar-widget li a,
.cwmh-sidebar-widget .advanced-sidebar-menu a,
.cwmh-sidebar-widget .child-sidebar-menu a,
.cwmh-sidebar-widget .parent-sidebar-menu a {
  min-height: 64px;
  padding: 18px 20px !important;
  border-radius: 22px;
  font-size: 17px;
  line-height: 1.2;
}
.cwmh-sidebar-widget ul ul,
.cwmh-sidebar-widget .advanced-sidebar-menu ul ul {
  margin-top: 12px !important;
  padding-left: 0 !important;
}
.cwmh-sidebar-widget ul ul li a,
.cwmh-sidebar-widget .advanced-sidebar-menu ul ul a {
  min-height: 52px;
  padding: 14px 16px !important;
  border-radius: 18px;
  font-size: 15px;
  background: rgba(255,255,255,.055);
}

.cwmh-site-footer {
  background: var(--cwmh-green-990);
  color: #fff;
  padding: 78px 0 36px;
}
.cwmh-site-footer .cwmh-container.cwmh-footer-panel {
  width: min(var(--cwmh-max), calc(100% - 48px));
  margin: 0 auto;
}
.cwmh-footer-panel {
  border-radius: var(--cwmh-radius-xl);
  background: linear-gradient(135deg, var(--cwmh-green-950), var(--cwmh-green-900));
  border: 1px solid rgba(255,255,255,.12);
  padding: clamp(34px, 5vw, 64px);
  box-shadow: var(--cwmh-shadow);
}
.cwmh-footer-main {
  display: grid;
  grid-template-columns: 1.15fr .7fr;
  gap: 58px;
  align-items: start;
}
.cwmh-footer-cta-area p {
  max-width: 720px;
  margin-bottom: 24px;
  color: rgba(255,255,255,.70);
  font-size: 17px;
}
.cwmh-footer-brand {
  display: flex;
  align-items: center;
  margin-bottom: 28px;
}
.cwmh-footer-brand .cwmh-brand {
  min-width: 0;
  padding-left: 0;
  color: #fff;
  margin-bottom: 0;
}
.cwmh-footer-brand .cwmh-brand-logo img {
  max-height: 70px;
}
.cwmh-footer-brand .cwmh-brand-title small {
  color: rgba(255,255,255,.58);
}
.cwmh-footer-panel h2 {
  max-width: 780px;
  margin: 0 0 22px;
  color: #fff;
  font-size: clamp(40px, 6vw, 78px);
  line-height: .91;
  letter-spacing: -.075em;
}
.cwmh-footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.cwmh-footer-explore {
  padding: 26px 28px;
  border-radius: 28px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.13);
}
.cwmh-footer-explore > strong,
.cwmh-footer-logo-area > strong,
.cwmh-footer-address > strong {
  display: block;
  margin-bottom: 16px;
  color: rgba(255,255,255,.66);
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 900;
}
.cwmh-footer-menu {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0;
}
.cwmh-footer-menu a {
  display: block;
  padding: 10px 0;
  color: rgba(255,255,255,.78);
  font-size: 18px;
  font-weight: 840;
}
.cwmh-footer-menu a:hover {
  color: #fff;
}
.cwmh-footer-extra {
  margin-top: 36px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,.14);
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 28px;
  align-items: stretch;
}
.cwmh-footer-logo-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  border-top: 0;
}
.cwmh-footer-logo {
  min-height: 86px;
  border-radius: 22px;
  background: rgba(255,255,255,.075);
  border: 1px solid rgba(255,255,255,.14);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  text-align: center;
}
.cwmh-footer-logo span {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  color: rgba(255,255,255,.62);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.cwmh-footer-logo span:before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--cwmh-accent);
  box-shadow: 0 0 0 8px rgba(117,47,64,.18);
}
.cwmh-footer-logo img {
  max-height: 58px;
  width: auto;
  object-fit: contain;
}
.cwmh-footer-address-card {
  min-height: 120px;
  padding: 22px 24px;
  border-radius: 24px;
  background: rgba(255,255,255,.075);
  border: 1px solid rgba(255,255,255,.14);
}
.cwmh-footer-address-card address {
  margin: 0 0 14px;
  color: rgba(255,255,255,.84);
  font-style: normal;
  font-weight: 760;
  line-height: 1.62;
}
.cwmh-footer-address-card a {
  color: #fff;
  font-weight: 900;
}
.cwmh-footer-bottom {
  width: min(var(--cwmh-max), calc(100% - 48px));
  margin: 26px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 0;
  border-top: 0;
  color: rgba(255,255,255,.44);
  font-weight: 760;
  font-size: 14px;
}

@media (max-width: 1120px) {
  .cwmh-site-header .cwmh-container { width: min(100% - 36px, 1680px); }
  .cwmh-brand { min-width: 190px; }
}
@media (max-width: 920px) {
  .cwmh-site-header .cwmh-container,
  .cwmh-site-footer .cwmh-container.cwmh-footer-panel,
  .cwmh-footer-bottom { width: min(100% - 28px, var(--cwmh-max)); }
  .cwmh-footer-main,
  .cwmh-footer-extra { grid-template-columns: 1fr; }
  .cwmh-footer-logo-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .cwmh-sidebar-widget li a,
  .cwmh-sidebar-widget .advanced-sidebar-menu a,
  .cwmh-sidebar-widget .child-sidebar-menu a,
  .cwmh-sidebar-widget .parent-sidebar-menu a {
    min-height: 56px;
    padding: 15px 16px !important;
    font-size: 15px;
  }
  .cwmh-footer-logo-row { grid-template-columns: 1fr; }
  .cwmh-footer-bottom { align-items: flex-start; flex-direction: column; }
  .cwmh-footer-panel { border-radius: 30px; }
}

/* v1.0.4 navigation, footer and mobile refinements */
.cwmh-site-header .cwmh-container {
  width: min(var(--cwmh-max), calc(100% - 48px));
}
.cwmh-nav-pill {
  min-height: 76px;
  padding: 11px;
  gap: 14px;
  border-radius: 999px;
  justify-content: space-between;
  align-items: center;
}
.cwmh-brand {
  flex: 0 0 auto;
  min-width: 235px;
  max-width: 265px;
  padding-left: 10px;
  justify-content: flex-start;
  overflow: hidden;
}
.cwmh-brand-logo {
  display: block;
  line-height: 0;
  max-width: 100%;
}
.cwmh-brand-logo img,
.cwmh-custom-logo {
  display: block;
  width: auto !important;
  height: auto !important;
  max-width: 220px !important;
  max-height: 50px !important;
  object-fit: contain;
}
.cwmh-navigation {
  flex: 1 1 auto;
  justify-content: center;
}
.cwmh-nav-menu > .menu-item > a {
  min-height: 46px;
  padding: 0 13px;
  font-size: 13px;
}
.cwmh-nav-actions {
  flex: 0 0 auto;
  min-width: 160px;
  display: flex;
  justify-content: flex-end;
}
.cwmh-nav-actions .cwmh-button {
  min-height: 46px;
  padding: 0 18px;
  font-size: 14px;
}
.cwmh-nav-menu > .menu-item > .sub-menu {
  left: 0;
  right: 0;
  width: 100%;
}
.cwmh-site-footer .cwmh-brand {
  max-width: none;
  min-width: 0;
}
.cwmh-footer-actions a {
  pointer-events: auto;
  position: relative;
  z-index: 2;
}
.cwmh-footer-actions .cwmh-button-light {
  color: var(--cwmh-green-950) !important;
}
.cwmh-footer-actions .cwmh-button-outline {
  color: #fff !important;
}

@media (max-width: 1120px) {
  .cwmh-site-header .cwmh-container { width: min(100% - 36px, var(--cwmh-max)); }
  .cwmh-brand { min-width: 205px; max-width: 230px; }
  .cwmh-brand-logo img,
  .cwmh-custom-logo { max-width: 190px !important; max-height: 46px !important; }
  .cwmh-nav-menu > .menu-item > a { padding: 0 10px; font-size: 12px; }
  .cwmh-nav-actions { min-width: 140px; }
}

@media (max-width: 920px) {
  .cwmh-site-header {
    top: 10px;
    padding-top: 10px;
  }
  .admin-bar .cwmh-site-header { top: 56px; }
  .cwmh-site-header .cwmh-container { width: min(100% - 28px, var(--cwmh-max)); }
  .cwmh-nav-pill {
    min-height: 66px;
    padding: 9px;
    border-radius: 30px;
    flex-wrap: nowrap;
    align-items: center;
    gap: 10px;
  }
  .cwmh-brand {
    min-width: 0;
    max-width: calc(100% - 62px);
    flex: 1 1 auto;
    padding-left: 8px;
  }
  .cwmh-brand-logo img,
  .cwmh-custom-logo {
    max-width: 190px !important;
    max-height: 46px !important;
  }
  .cwmh-mobile-toggle {
    display: inline-flex;
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    margin-left: auto;
    border: 0;
    border-radius: 999px;
    background: var(--cwmh-green-950);
    align-items: center;
    justify-content: center;
    padding: 0;
  }
  .cwmh-mobile-toggle span:not(.screen-reader-text) {
    width: 22px;
    height: 2px;
    background: #fff;
    display: block;
    margin: 3px 0;
    border-radius: 999px;
  }
  .cwmh-navigation {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 10px);
    z-index: 100;
    flex-basis: auto;
    order: initial;
    padding: 18px;
    border-radius: 30px;
    background: rgba(255,253,246,.985);
    border: 1px solid rgba(255,255,255,.76);
    box-shadow: 0 24px 70px rgba(0,0,0,.18);
    backdrop-filter: blur(18px);
  }
  .cwmh-nav-pill.is-open .cwmh-navigation {
    display: block;
  }
  .cwmh-nav-menu {
    display: grid;
    gap: 8px;
    width: 100%;
  }
  .cwmh-nav-menu > .menu-item > a {
    width: 100%;
    min-height: 54px;
    justify-content: space-between;
    padding: 0 18px;
    border-radius: 20px;
    font-size: 16px;
  }
  .cwmh-nav-menu > .menu-item > .sub-menu {
    position: static;
    width: 100%;
    display: none;
    grid-template-columns: 1fr;
    gap: 10px;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    margin: 8px 0 4px;
    padding: 12px;
    border-radius: 24px;
    background: rgba(247,241,223,.78);
  }
  .cwmh-nav-menu > .menu-item.is-open > .sub-menu {
    display: grid;
  }
  .cwmh-nav-menu > .menu-item > .sub-menu > .menu-item {
    padding: 16px;
    border-radius: 20px;
  }
  .cwmh-nav-menu .sub-menu .sub-menu a,
  .cwmh-nav-menu > .menu-item > .sub-menu > .menu-item:not(.menu-item-has-children) > a {
    font-size: 15px;
    padding: 12px 0;
  }
  .cwmh-nav-actions {
    display: none;
  }
}

@media (max-width: 520px) {
  .cwmh-site-header .cwmh-container { width: min(100% - 20px, var(--cwmh-max)); }
  .cwmh-nav-pill { border-radius: 26px; }
  .cwmh-brand-logo img,
  .cwmh-custom-logo { max-width: 160px !important; max-height: 42px !important; }
  .cwmh-brand-mark { width: 42px; height: 42px; }
  .cwmh-mobile-toggle { width: 46px; height: 46px; flex-basis: 46px; }
  .cwmh-navigation { border-radius: 26px; padding: 14px; }
  .cwmh-nav-menu > .menu-item > a { min-height: 50px; font-size: 15px; }
}


/* v1.0.5 Elementor, nav and sidebar refinements */
.cwmh-site-header .cwmh-container {
  width: min(1180px, calc(100% - 40px)) !important;
  max-width: 1180px !important;
}
.cwmh-nav-pill {
  min-height: 72px !important;
  padding: 10px 12px !important;
  gap: 12px !important;
}
.cwmh-brand {
  min-width: 230px !important;
  max-width: 230px !important;
  padding-left: 6px !important;
  justify-content: flex-start !important;
}
.cwmh-brand-logo img,
.cwmh-custom-logo {
  max-width: 205px !important;
  max-height: 50px !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
  object-position: left center !important;
}
.cwmh-navigation { justify-content: center !important; }
.cwmh-nav-menu > .menu-item > a {
  min-height: 44px !important;
  padding: 0 12px !important;
  font-size: 13px !important;
}
.cwmh-nav-actions { min-width: 148px !important; }
.cwmh-nav-actions .cwmh-button {
  min-height: 44px !important;
  padding: 0 18px !important;
  font-size: 13px !important;
}
.cwmh-nav-menu > .menu-item > .sub-menu {
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  max-width: none !important;
}

.cwmh-elementor-safe-home {
  padding: 0;
  margin: 0;
}
.cwmh-elementor-safe-home > .elementor,
.cwmh-elementor-safe-home > .elementor-section-wrap {
  width: 100%;
}
.elementor-editor-active .cwmh-elementor-safe-home .cwmh-home-main,
.elementor-editor-preview .cwmh-elementor-safe-home .cwmh-home-main {
  margin-top: 0;
  padding-top: 0;
}

.cwmh-sidebar-widget {
  padding: 20px !important;
  border-radius: 28px !important;
}
.cwmh-sidebar-title {
  margin: 0 0 14px !important;
  font-size: 22px !important;
  line-height: 1.05 !important;
}
.cwmh-sidebar-widget ul,
.cwmh-sidebar-widget .advanced-sidebar-menu,
.cwmh-sidebar-widget .advanced-sidebar-menu ul,
.cwmh-sidebar-widget .child-sidebar-menu,
.cwmh-sidebar-widget .parent-sidebar-menu {
  display: grid !important;
  gap: 8px !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}
.cwmh-sidebar-widget li,
.cwmh-sidebar-widget .advanced-sidebar-menu li,
.cwmh-sidebar-widget .child-sidebar-menu li,
.cwmh-sidebar-widget .parent-sidebar-menu li {
  margin: 0 !important;
  padding: 0 !important;
}
.cwmh-sidebar-widget li + li,
.cwmh-sidebar-widget .advanced-sidebar-menu li + li,
.cwmh-sidebar-widget .child-sidebar-menu li + li,
.cwmh-sidebar-widget .parent-sidebar-menu li + li {
  margin-top: 8px !important;
}
.cwmh-sidebar-widget li a,
.cwmh-sidebar-widget .advanced-sidebar-menu a,
.cwmh-sidebar-widget .child-sidebar-menu a,
.cwmh-sidebar-widget .parent-sidebar-menu a {
  min-height: 0 !important;
  padding: 13px 14px !important;
  border-radius: 16px !important;
  font-size: 14px !important;
  line-height: 1.2 !important;
  font-weight: 820 !important;
}
.cwmh-sidebar-widget ul ul,
.cwmh-sidebar-widget .advanced-sidebar-menu ul ul {
  margin-top: 8px !important;
  padding-left: 0 !important;
}
.cwmh-sidebar-widget ul ul li a,
.cwmh-sidebar-widget .advanced-sidebar-menu ul ul a {
  padding: 11px 13px !important;
  border-radius: 14px !important;
  font-size: 13px !important;
}

@media (max-width: 1120px) {
  .cwmh-site-header .cwmh-container { width: min(100% - 32px, 1180px) !important; }
  .cwmh-brand { min-width: 190px !important; max-width: 190px !important; }
  .cwmh-brand-logo img,
  .cwmh-custom-logo { max-width: 176px !important; max-height: 46px !important; }
  .cwmh-nav-menu > .menu-item > a { padding: 0 9px !important; font-size: 12px !important; }
}
@media (max-width: 920px) {
  .cwmh-site-header .cwmh-container { width: min(100% - 28px, 1180px) !important; }
  .cwmh-nav-pill {
    min-height: 66px !important;
    border-radius: 30px !important;
    padding: 9px !important;
  }
  .cwmh-brand {
    min-width: 0 !important;
    max-width: calc(100% - 62px) !important;
    flex: 1 1 auto !important;
  }
  .cwmh-brand-logo img,
  .cwmh-custom-logo { max-width: 172px !important; max-height: 44px !important; }
  .cwmh-navigation {
    left: 0 !important;
    right: 0 !important;
    top: calc(100% + 10px) !important;
    padding: 14px !important;
    border-radius: 26px !important;
  }
  .cwmh-nav-menu { gap: 6px !important; }
  .cwmh-nav-menu > .menu-item > a {
    min-height: 50px !important;
    padding: 0 16px !important;
    border-radius: 18px !important;
    font-size: 15px !important;
  }
  .cwmh-nav-menu > .menu-item > .sub-menu {
    padding: 10px !important;
    margin: 6px 0 4px !important;
    border-radius: 22px !important;
  }
  .cwmh-nav-menu > .menu-item > .sub-menu > .menu-item { padding: 14px !important; }
}
@media (max-width: 520px) {
  .cwmh-site-header .cwmh-container { width: min(100% - 20px, 1180px) !important; }
  .cwmh-brand-logo img,
  .cwmh-custom-logo { max-width: 150px !important; max-height: 40px !important; }
  .cwmh-mobile-toggle { width: 46px !important; height: 46px !important; flex-basis: 46px !important; }
}

/* v1.0.6 exact HTML matching, Elementor homepage, mobile nav and news sidebar fixes */
.cwmh-site-header .cwmh-container {
  width: min(var(--cwmh-max), calc(100% - 48px)) !important;
  max-width: var(--cwmh-max) !important;
}
.cwmh-nav-pill {
  width: 100% !important;
  min-height: 76px !important;
  padding: 11px !important;
  border-radius: 999px !important;
  gap: 14px !important;
}
.cwmh-brand {
  flex: 0 0 auto !important;
  min-width: 220px !important;
  max-width: 235px !important;
  padding-left: 8px !important;
  justify-content: flex-start !important;
}
.cwmh-brand-logo img,
.cwmh-custom-logo {
  max-width: 205px !important;
  max-height: 46px !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
  object-position: left center !important;
}
.cwmh-nav-menu { gap: 2px !important; }
.cwmh-nav-menu > .menu-item > a {
  min-height: 46px !important;
  padding: 0 13px !important;
  font-size: 13px !important;
}
.cwmh-nav-actions { min-width: 160px !important; }
.cwmh-nav-actions .cwmh-button {
  min-height: 46px !important;
  padding: 0 18px !important;
  font-size: 14px !important;
}
.cwmh-nav-menu > .menu-item > .sub-menu {
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  max-width: none !important;
}

.cwmh-elementor-built-section,
.cwmh-elementor-built-section > .elementor-container,
.cwmh-elementor-built-section > .elementor-container > .elementor-column,
.cwmh-elementor-built-section .elementor-widget-wrap,
.cwmh-elementor-built-section .elementor-widget,
.cwmh-elementor-built-section .elementor-widget-container {
  margin: 0 !important;
  padding: 0 !important;
}
.cwmh-elementor-built-section .elementor-container {
  max-width: none !important;
}
.cwmh-elementor-home-hero { background: var(--cwmh-green-950); }
.cwmh-home-main-elementor { display: block; }

.cwmh-home-main,
.cwmh-home-main-elementor {
  background:
    radial-gradient(circle at 92% 0%, rgba(117, 47, 64, .15), transparent 23rem),
    linear-gradient(180deg, var(--cwmh-green-950) 0%, var(--cwmh-green-900) 820px, var(--cwmh-cream) 820px, var(--cwmh-cream) 100%) !important;
  position: relative !important;
  margin-top: -112px !important;
  padding-top: 112px !important;
  overflow: hidden;
}
.cwmh-home-main:before,
.cwmh-home-main-elementor:before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 650px;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(180deg, black, transparent 90%);
  pointer-events: none;
}
.cwmh-home-hero {
  padding: 94px 0 82px !important;
  color: #fff !important;
  position: relative;
}
.cwmh-home-hero-grid {
  display: grid !important;
  grid-template-columns: minmax(0, .95fr) minmax(430px, .72fr) !important;
  gap: 54px !important;
  align-items: center !important;
}
.cwmh-hero-copy-panel {
  position: relative !important;
  min-height: 380px !important;
  min-width: 0;
}
.cwmh-hero-copy-slide {
  position: absolute !important;
  inset: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transform: translateY(18px) !important;
  transition: opacity .5s ease, visibility .5s ease, transform .6s ease !important;
}
.cwmh-hero-copy-slide.is-active,
.cwmh-hero-copy-slide.active {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
}
.cwmh-hero-copy-slide h1,
.cwmh-home-hero h1 {
  max-width: 860px !important;
  margin: 0 0 20px !important;
  color: #fff !important;
  font-size: clamp(50px, 7.2vw, 94px) !important;
  line-height: .9 !important;
  letter-spacing: -.078em !important;
  text-wrap: balance;
}
.cwmh-hero-copy-slide p,
.cwmh-home-hero p {
  max-width: 710px !important;
  margin: 0 0 30px !important;
  color: rgba(255,255,255,.84) !important;
  font-size: 19px !important;
  line-height: 1.64 !important;
}
.cwmh-hero-actions { display: flex !important; flex-wrap: wrap !important; gap: 12px !important; align-items: center !important; }
.cwmh-slider-controls {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 18px !important;
  max-width: 710px !important;
  margin-top: 18px !important;
  pointer-events: auto !important;
}
.cwmh-slider-dots { display: flex !important; gap: 9px !important; pointer-events: auto !important; }
.cwmh-slider-dot {
  width: 11px !important;
  height: 11px !important;
  padding: 0 !important;
  border-radius: 999px !important;
  border: 1px solid rgba(255,255,255,.45) !important;
  background: rgba(255,255,255,.18) !important;
  cursor: pointer !important;
  transition: width .2s ease, background .2s ease, border-color .2s ease !important;
}
.cwmh-slider-dot.is-active,
.cwmh-slider-dot.active { width: 34px !important; background: var(--cwmh-accent) !important; border-color: var(--cwmh-accent) !important; }
.cwmh-slider-arrows { display: flex !important; gap: 10px !important; pointer-events: auto !important; }
.cwmh-slider-arrow {
  width: 42px !important;
  height: 42px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(255,255,255,.22) !important;
  background: rgba(255,255,255,.10) !important;
  color: #fff !important;
  font: inherit !important;
  font-size: 22px !important;
  cursor: pointer !important;
}
.cwmh-hero-media { position: relative !important; min-height: 520px !important; }
.cwmh-hero-photo {
  position: absolute !important;
  overflow: hidden !important;
  border-radius: 34px !important;
  border: 1px solid rgba(255,255,255,.14) !important;
  background-image: linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.55)), url('../img/project-bg-clean.png') !important;
  background-size: cover !important;
  background-position: center !important;
  box-shadow: var(--cwmh-shadow) !important;
  filter: saturate(.15) contrast(1.08) !important;
}
.cwmh-hero-photo-large { inset: 34px 24px 32px 62px !important; }
.cwmh-hero-photo-small-top { width: 220px !important; height: 170px !important; left: 0 !important; top: 0 !important; background-position: 28% center !important; }
.cwmh-hero-photo-small-bottom { width: 230px !important; height: 190px !important; right: 0 !important; bottom: 0 !important; background-position: 58% center !important; }

.cwmh-inner-sidebar .cwmh-sidebar-widget {
  padding: 22px !important;
  border-radius: 30px !important;
}
.cwmh-sidebar-widget ul,
.cwmh-sidebar-widget .advanced-sidebar-menu,
.cwmh-sidebar-widget .advanced-sidebar-menu ul,
.cwmh-sidebar-widget .child-sidebar-menu,
.cwmh-sidebar-widget .parent-sidebar-menu {
  display: flex !important;
  flex-direction: column !important;
  gap: 18px !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}
.cwmh-sidebar-widget li,
.cwmh-sidebar-widget .advanced-sidebar-menu li,
.cwmh-sidebar-widget .child-sidebar-menu li,
.cwmh-sidebar-widget .parent-sidebar-menu li,
.cwmh-sidebar-widget li + li,
.cwmh-sidebar-widget .advanced-sidebar-menu li + li,
.cwmh-sidebar-widget .child-sidebar-menu li + li,
.cwmh-sidebar-widget .parent-sidebar-menu li + li {
  margin: 0 !important;
  padding: 0 !important;
}
.cwmh-sidebar-widget li a,
.cwmh-sidebar-widget .advanced-sidebar-menu a,
.cwmh-sidebar-widget .child-sidebar-menu a,
.cwmh-sidebar-widget .parent-sidebar-menu a {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  min-height: 64px !important;
  padding: 18px 22px !important;
  border-radius: 18px !important;
  font-size: 17px !important;
  line-height: 1.15 !important;
  font-weight: 900 !important;
}
.cwmh-sidebar-widget ul ul,
.cwmh-sidebar-widget .advanced-sidebar-menu ul ul {
  margin-top: 18px !important;
  gap: 12px !important;
  padding-left: 0 !important;
}
.cwmh-sidebar-widget ul ul li a,
.cwmh-sidebar-widget .advanced-sidebar-menu ul ul a {
  min-height: 50px !important;
  padding: 14px 18px !important;
  border-radius: 15px !important;
  font-size: 14px !important;
}
.cwmh-news-sidebar-list a {
  gap: 12px !important;
  justify-content: flex-start !important;
}
.cwmh-news-sidebar-thumb {
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  overflow: hidden;
  border-radius: 14px;
  background: rgba(255,255,255,.12);
}
.cwmh-news-sidebar-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cwmh-news-sidebar-list time {
  display: block;
  margin-bottom: 4px;
  color: rgba(255,255,255,.62);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.cwmh-news-sidebar-list strong {
  display: block;
  color: #fff;
  font-size: 14px;
  line-height: 1.25;
}

@media (max-width: 1120px) {
  .cwmh-site-header .cwmh-container { width: min(100% - 36px, var(--cwmh-max)) !important; }
  .cwmh-brand { min-width: 190px !important; max-width: 200px !important; }
  .cwmh-brand-logo img,
  .cwmh-custom-logo { max-width: 178px !important; max-height: 42px !important; }
  .cwmh-nav-menu > .menu-item > a { padding: 0 9px !important; font-size: 12px !important; }
  .cwmh-nav-actions { min-width: 140px !important; }
}
@media (max-width: 920px) {
  .cwmh-site-header .cwmh-container { width: min(100% - 28px, var(--cwmh-max)) !important; }
  .cwmh-nav-pill {
    min-height: 66px !important;
    padding: 9px !important;
    border-radius: 30px !important;
    align-items: center !important;
  }
  .cwmh-brand {
    min-width: 0 !important;
    max-width: calc(100% - 62px) !important;
    flex: 1 1 auto !important;
    padding-left: 8px !important;
  }
  .cwmh-brand-logo img,
  .cwmh-custom-logo { max-width: 178px !important; max-height: 42px !important; }
  .cwmh-mobile-toggle {
    display: inline-flex !important;
    position: relative !important;
    flex: 0 0 50px !important;
    width: 50px !important;
    height: 50px !important;
    margin-left: auto !important;
    border: 0 !important;
    border-radius: 999px !important;
    background: var(--cwmh-green-950) !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    overflow: hidden !important;
  }
  .cwmh-mobile-toggle span:not(.screen-reader-text) { display: none !important; }
  .cwmh-mobile-toggle:before {
    content: "" !important;
    width: 24px !important;
    height: 18px !important;
    display: block !important;
    background:
      linear-gradient(#fff, #fff) 0 0 / 24px 2px no-repeat,
      linear-gradient(#fff, #fff) 0 8px / 24px 2px no-repeat,
      linear-gradient(#fff, #fff) 0 16px / 24px 2px no-repeat !important;
    border-radius: 0 !important;
  }
  .cwmh-navigation {
    left: 0 !important;
    right: 0 !important;
    top: calc(100% + 12px) !important;
    max-height: calc(100vh - 110px) !important;
    overflow-y: auto !important;
    padding: 22px !important;
    border-radius: 30px !important;
  }
  .cwmh-nav-menu {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 12px !important;
  }
  .cwmh-nav-menu > .menu-item > a {
    width: 100% !important;
    min-height: 58px !important;
    justify-content: space-between !important;
    padding: 0 22px !important;
    border-radius: 22px !important;
    font-size: 17px !important;
  }
  .cwmh-nav-menu > .menu-item > .sub-menu {
    position: static !important;
    display: none !important;
    grid-template-columns: 1fr !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    box-shadow: none !important;
    margin: 10px 0 2px !important;
    padding: 12px !important;
    border-radius: 24px !important;
  }
  .cwmh-nav-menu > .menu-item.is-open > .sub-menu { display: grid !important; }
  .cwmh-nav-menu > .menu-item > .sub-menu > .menu-item { padding: 16px !important; border-radius: 20px !important; }
  .cwmh-nav-actions { display: none !important; }
  .cwmh-home-main,
  .cwmh-home-main-elementor { margin-top: -86px !important; padding-top: 86px !important; }
  .cwmh-home-hero { padding-top: 58px !important; }
  .cwmh-home-hero-grid { grid-template-columns: 1fr !important; }
  .cwmh-hero-copy-panel { min-height: 420px !important; }
  .cwmh-hero-media { min-height: 430px !important; }
}
@media (max-width: 720px) {
  .cwmh-container { width: min(100% - 26px, var(--cwmh-max)) !important; }
  .cwmh-home-hero h1,
  .cwmh-hero-copy-slide h1 { font-size: 46px !important; }
  .cwmh-home-hero p,
  .cwmh-hero-copy-slide p { font-size: 17px !important; }
  .cwmh-slider-arrows { display: none !important; }
  .cwmh-hero-media { display: none !important; }
  .cwmh-hero-copy-panel { min-height: 470px !important; }
  .cwmh-nav-pill { border-radius: 28px !important; }
  .cwmh-brand-logo img,
  .cwmh-custom-logo { max-width: 160px !important; max-height: 40px !important; }
  .cwmh-sidebar-widget li a,
  .cwmh-sidebar-widget .advanced-sidebar-menu a,
  .cwmh-sidebar-widget .child-sidebar-menu a,
  .cwmh-sidebar-widget .parent-sidebar-menu a {
    min-height: 58px !important;
    padding: 16px 18px !important;
    font-size: 15px !important;
  }
}
