:root {
  --pm-primary: #b34325;
  --pm-secondary: #2a3f33;
  --pm-accent: #a98b4d;
  --pm-dark: #1a1c1e;
  --pm-light: #f5f3ec;
  --pm-text: #25322a;
  --pm-white: #ffffff;
  --pm-container: min(1200px, 92vw);
  --pm-shadow: 0 12px 40px rgba(0, 0, 0, 0.14);
  --pm-radius: 18px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
  color: var(--pm-text);
  background: var(--pm-white);
  font-family: var(--pm-font-main, "Zalando Sans SemiExpanded"), sans-serif;
  font-weight: var(--pm-font-body-weight, 300);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

.pm-container {
  width: var(--pm-container);
  margin: 0 auto;
}

.pm-section {
  padding: 88px 0;
}

.pm-section-title {
  margin: 0 0 28px;
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  line-height: 1.15;
}

.pm-eyebrow {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--pm-accent);
}

.pm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  background: var(--pm-primary);
  color: var(--pm-white);
  padding: 12px 22px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.pm-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(179, 67, 37, 0.3);
}

.pm-btn-outline {
  background: transparent;
  color: var(--pm-white);
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.pm-link {
  font-weight: 700;
  color: var(--pm-secondary);
}

.pm-link:hover {
  color: var(--pm-primary);
}

.pm-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(26, 28, 30, 0.92);
  backdrop-filter: blur(6px);
}

body:not(.pm-has-sticky-header) .pm-header {
  position: relative;
}

.pm-header-inner {
  width: var(--pm-container);
  margin: 0 auto;
  min-height: 80px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
}

.pm-brand {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  color: var(--pm-white);
}

.pm-brand img {
  max-height: 54px;
  width: auto;
}

.pm-brand-text {
  font-weight: 800;
  letter-spacing: 0.03em;
  font-size: 1.2rem;
}

.pm-nav {
  justify-self: center;
}

.pm-menu {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 22px;
}

.pm-menu li {
  position: relative;
}

.pm-menu a {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.92rem;
  font-weight: 600;
}

.pm-menu a:hover,
.pm-menu .current-menu-item > a,
.pm-menu .current_page_item > a {
  color: var(--pm-accent);
}

.pm-header-meta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.pm-phone {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.86rem;
  font-weight: 600;
}

.pm-nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.pm-nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--pm-white);
}

.pm-hero {
  position: relative;
  min-height: clamp(540px, 70vh, 760px);
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  color: var(--pm-white);
}

.pm-hero .pm-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(26, 28, 30, 0.88) 0%, rgba(42, 63, 51, 0.72) 52%, rgba(42, 63, 51, 0.45) 100%);
}

.pm-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding: 56px 0;
}

.pm-hero h1 {
  margin: 0;
  font-size: clamp(2.2rem, 6vw, 4.8rem);
  line-height: 1.02;
}

.pm-hero-description {
  margin: 18px 0 30px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 2.1vw, 1.25rem);
  max-width: 65ch;
}

.pm-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.pm-hero-badge {
  margin: 24px 0 0;
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
}

.pm-services {
  background: var(--pm-light);
}

.pm-service-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pm-service-card {
  background: var(--pm-white);
  border-radius: var(--pm-radius);
  overflow: hidden;
  box-shadow: var(--pm-shadow);
}

.pm-service-media {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.pm-service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pm-service-content {
  padding: 22px;
}

.pm-service-content h3 {
  margin: 0 0 8px;
  font-size: 1.32rem;
}

.pm-service-content p {
  margin: 0 0 14px;
}

.pm-about-grid {
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  gap: 42px;
  align-items: center;
}

.pm-about-media img {
  width: 100%;
  border-radius: var(--pm-radius);
  box-shadow: var(--pm-shadow);
}

.pm-feature-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.pm-feature-list li {
  position: relative;
  padding-left: 20px;
}

.pm-feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--pm-primary);
}

.pm-stats-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.pm-stat-item {
  background: linear-gradient(150deg, rgba(199, 185, 141, 0.2), rgba(199, 185, 141, 0.05));
  border: 1px solid rgba(199, 185, 141, 0.45);
  border-radius: 14px;
  padding: 18px;
}

.pm-stat-item strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
  color: var(--pm-secondary);
}

.pm-projects {
  background: #f8f7f1;
}

.pm-project-grid,
.pm-blog-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pm-project-card,
.pm-blog-card {
  background: var(--pm-white);
  border-radius: var(--pm-radius);
  overflow: hidden;
  box-shadow: var(--pm-shadow);
}

.pm-project-media,
.pm-blog-thumb {
  display: block;
  aspect-ratio: 16/10;
}

.pm-project-media img,
.pm-blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pm-project-content,
.pm-blog-card-content {
  padding: 20px;
}

.pm-project-category,
.pm-blog-meta {
  margin: 0 0 8px;
  color: #6d736f;
  text-transform: uppercase;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.pm-project-content h3,
.pm-blog-card-content h3,
.pm-blog-card-content h2 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  line-height: 1.3;
}

.pm-testimonial {
  background: var(--pm-secondary);
  color: var(--pm-white);
}

.pm-testimonial-inner {
  max-width: 840px;
  text-align: center;
}

.pm-testimonial-avatar {
  width: 88px;
  height: 88px;
  border-radius: 999px;
  margin: 0 auto 16px;
  object-fit: cover;
  border: 4px solid rgba(255, 255, 255, 0.26);
}

.pm-testimonial blockquote {
  margin: 0;
  padding: 0;
  font-size: clamp(1.2rem, 3.2vw, 2rem);
  line-height: 1.32;
}

.pm-testimonial-author {
  margin: 20px 0 0;
  font-weight: 800;
}

.pm-testimonial-role {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.84);
}

.pm-newsletter {
  background: var(--pm-dark);
  color: var(--pm-white);
}

.pm-newsletter-inner {
  max-width: 760px;
  text-align: center;
}

.pm-newsletter-inner p {
  color: rgba(255, 255, 255, 0.88);
}

.pm-newsletter-form {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.pm-newsletter-form input {
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  padding: 0 18px;
  font: inherit;
}

.pm-newsletter-form button {
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  padding: 0 20px;
  background: var(--pm-primary);
  color: var(--pm-white);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.pm-footer {
  position: relative;
  background:
    radial-gradient(1200px 420px at -6% 0%, rgba(34, 77, 57, 0.5) 0%, rgba(10, 19, 17, 0) 68%),
    radial-gradient(1200px 420px at 110% 0%, rgba(34, 77, 57, 0.4) 0%, rgba(10, 19, 17, 0) 68%),
    linear-gradient(90deg, #122f25 0%, #11271f 24%, #102219 50%, #11271f 76%, #122f25 100%);
  color: rgba(238, 235, 224, 0.9);
  padding: 86px 0 0;
  overflow: hidden;
}

.pm-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at center, rgba(203, 184, 137, 0.08) 0, rgba(203, 184, 137, 0.08) 1px, transparent 1px);
  background-size: 220px 220px;
  opacity: 0.35;
  pointer-events: none;
}

.pm-footer-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 54px;
  align-items: start;
}

.pm-footer h4 {
  margin: 0 0 16px;
  color: #a98b4d;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 15px;
}

.pm-footer-branding .pm-brand img {
  max-height: 62px;
}

.pm-footer-branding p {
  margin: 14px 0 0;
  max-width: 34ch;
  color: rgba(241, 238, 228, 0.8);
  font-size: 14px;
  line-height: 1.6;
}

.pm-footer-menu,
.pm-social-links {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.pm-footer-menu a {
  position: relative;
  padding-left: 14px;
  color: rgba(243, 241, 233, 0.9);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.04em;
}

.pm-footer-menu a::before {
  content: ">";
  position: absolute;
  left: 0;
  opacity: 0.7;
}

.pm-social-links {
  margin-top: 18px;
  grid-auto-flow: column;
  grid-auto-columns: 36px;
  gap: 8px;
}

.pm-social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(199, 185, 141, 0.45);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(244, 241, 233, 0.9);
  font-size: 12px;
  text-transform: uppercase;
}

.pm-footer-contact-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.pm-footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(242, 239, 229, 0.88);
  font-size: 14px;
  line-height: 1.5;
}

.pm-meta-icon {
  color: #a98b4d;
  line-height: 1;
  margin-top: 2px;
}

.pm-footer a:hover {
  color: #fff;
}

.pm-copyright {
  position: relative;
  z-index: 1;
  margin-top: 52px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  text-align: center;
  padding: 18px 16px 20px;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(238, 235, 224, 0.86);
}

.pm-page-content {
  width: var(--pm-container);
  margin: 40px auto 70px;
}

.elementor-widget-shortcode .elementor-widget-container {
  line-height: 0;
}

.elementor-widget-shortcode .elementor-shortcode {
  line-height: normal;
}

.pm-article {
  background: var(--pm-white);
}

.pm-article-header h1 {
  margin: 0 0 10px;
}

.pm-article-thumb {
  margin: 22px 0;
}

.pm-article-body > * {
  max-width: 75ch;
}

@media (max-width: 1080px) {
  .pm-header-inner {
    grid-template-columns: auto auto;
    grid-template-areas:
      "brand toggle"
      "nav nav"
      "meta meta";
    gap: 12px;
    padding: 14px 0;
  }

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

  .pm-nav-toggle {
    grid-area: toggle;
    display: inline-flex;
    justify-self: end;
  }

  .pm-nav {
    grid-area: nav;
    width: 100%;
    display: none;
  }

  .pm-nav.is-open {
    display: block;
  }

  .pm-menu {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
  }

  .pm-header-meta {
    grid-area: meta;
    justify-content: space-between;
  }

  .pm-about-grid,
  .pm-service-grid,
  .pm-project-grid,
  .pm-blog-grid,
  .pm-footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .pm-section {
    padding: 70px 0;
  }

  .pm-header-meta {
    flex-wrap: wrap;
    gap: 8px;
  }

  .pm-phone {
    font-size: 0.78rem;
  }

  .pm-about-grid,
  .pm-service-grid,
  .pm-project-grid,
  .pm-blog-grid,
  .pm-stats-grid,
  .pm-footer-inner,
  .pm-newsletter-form {
    grid-template-columns: 1fr;
  }

  .pm-hero-inner {
    padding: 40px 0;
  }
}

/* ProMark Home Forestry top section clone */
body {
  font-family: var(--pm-font-main, "Zalando Sans SemiExpanded"), sans-serif;
}

body.admin-bar #pm-site-header.pm-header {
  top: 32px;
}

#wpadminbar {
  background: #1d2327 !important;
}

@media (max-width: 782px) {
  body.admin-bar #pm-site-header.pm-header {
    top: 46px;
  }
}

@media (max-width: 600px) {
  body.admin-bar #pm-site-header.pm-header {
    top: 46px;
  }
}

.pm-header-promark {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1200;
  min-height: var(--pm-header-height);
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: none;
  transition: min-height 0.28s ease, background-color 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.pm-header-promark.pm-header-scrolled {
  min-height: var(--pm-header-height-scrolled);
  background: var(--pm-header-bg-scrolled);
  border-bottom-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
  box-shadow: 0 10px 24px rgba(6, 14, 12, 0.24);
}

.pm-header-promark .pm-header-inner {
  width: min(1640px, 86vw);
  min-height: inherit;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: center;
  transition: padding 0.28s ease, gap 0.28s ease;
}

.pm-header-promark .pm-header-left {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.pm-header-promark .pm-header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
}

.pm-header-promark .pm-brand-center {
  justify-self: center;
  min-height: 40px;
}

.pm-header-promark .pm-brand-center img {
  max-height: 96px;
  width: auto;
  transition: max-height 0.28s ease;
}

.pm-header-promark .pm-nav {
  justify-self: start;
}

.pm-header-promark .pm-menu {
  gap: 14px;
  transition: gap 0.28s ease;
}

.pm-header-promark .pm-menu > li:not(:last-child) > a::after {
  content: ">";
  display: inline-block;
  margin-left: 8px;
  font-size: 10px;
  opacity: 0.78;
}

.pm-header-promark .pm-menu a {
  font-size: 12px;
  line-height: 25.6px;
  text-transform: uppercase;
  letter-spacing: 0;
  font-weight: 300;
  color: rgba(245, 245, 240, 0.95);
  transition: color 0.24s ease, font-size 0.24s ease;
}

.pm-header-promark .pm-menu > li {
  position: relative;
}

.pm-header-promark .pm-menu .sub-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  min-width: 260px;
  margin: 0;
  padding: 12px 0;
  list-style: none;
  background: rgba(20, 35, 30, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  box-shadow: 0 16px 34px rgba(8, 14, 12, 0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  z-index: 1220;
}

.pm-header-promark .pm-menu > li:hover > .sub-menu,
.pm-header-promark .pm-menu > li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.pm-header-promark .pm-menu .sub-menu li {
  margin: 0;
  padding: 0;
}

.pm-header-promark .pm-menu .sub-menu a {
  display: block;
  padding: 8px 16px;
  font-size: 11px;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(241, 241, 233, 0.92);
}

.pm-header-promark .pm-menu .sub-menu a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.pm-header-promark .pm-tool {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(245, 245, 240, 0.95);
  font-size: 12px;
  line-height: 25.6px;
  letter-spacing: 0;
  font-weight: 300;
  transition: font-size 0.24s ease, opacity 0.24s ease;
}

.pm-header-promark .pm-tool i {
  font-size: 13px;
  opacity: 0.9;
}

.pm-header-promark .pm-cart-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  margin-left: 2px;
  background: #d34c25;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
}

.pm-header-promark.pm-header-shrunk .pm-header-inner {
  gap: 10px;
}

.pm-header-promark.pm-header-shrunk .pm-brand-center img {
  max-height: 74px;
}

.pm-header-promark.pm-header-shrunk .pm-menu {
  gap: 12px;
}

.pm-header-promark.pm-header-shrunk .pm-menu a {
  font-size: 11px;
}

.pm-header-promark.pm-header-shrunk .pm-tool {
  font-size: 11px;
  opacity: 0.94;
}

body.pm-front-page .pm-hero-promark {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center center;
  color: #f7f7f4;
  padding-top: var(--pm-header-height);
}

body.pm-front-page .pm-hero-promark .pm-overlay {
  position: absolute;
  inset: 0;
  background: rgba(14, 20, 19, 0.52);
}

body.pm-front-page .pm-hero-promark .pm-container {
  width: min(1320px, 92vw);
}

body.pm-front-page .pm-hero-inner {
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 1540px;
  padding: 46px 0 106px;
}

body.pm-front-page .pm-hero-kicker {
  margin: 0 0 32px;
  color: rgba(243, 243, 236, 0.92);
  text-transform: uppercase;
  font-size: 12px;
  line-height: 12px;
  letter-spacing: 2px;
  font-weight: 500;
}

body.pm-front-page .pm-hero-promark h1 {
  margin: 0;
  font-size: clamp(62px, 7.2vw, 100px);
  line-height: 1;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0;
  color: rgba(248, 248, 242, 0.97);
  text-wrap: balance;
}

body.pm-front-page .pm-hero-actions {
  margin-top: 46px;
  justify-content: center;
}

body.pm-front-page .pm-btn-hero {
  min-width: 200px;
  height: 60px;
  border-radius: 999px;
  background: #c84b26;
  color: #fff;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 2px;
  font-weight: 500;
  padding: 0 32px;
}

body.pm-front-page .pm-btn-hero:hover {
  background: #d25730;
  box-shadow: 0 14px 24px rgba(200, 75, 38, 0.28);
}

body.pm-front-page .pm-hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(0, 0, 0, 0.08);
  color: rgba(255, 255, 255, 0.9);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  font-size: 22px;
  pointer-events: none;
}

body.pm-front-page .pm-hero-arrow-prev {
  left: 56px;
}

body.pm-front-page .pm-hero-arrow-next {
  right: 56px;
}

body.pm-front-page .pm-hero-benefits {
  position: relative;
  background-color: #1d3b31;
  background-image:
    linear-gradient(180deg, rgba(33, 72, 56, 0.96) 0%, rgba(28, 60, 49, 0.96) 100%),
    url('../images/promark/forest-line.jpg'),
    url('../images/promark/fog-line.png');
  background-size: cover, cover, cover;
  background-position: center center, center center, center center;
  padding: 92px 0 88px;
}

body.pm-front-page .pm-benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
}

body.pm-front-page .pm-benefit-item {
  text-align: center;
  color: #efe7d1;
  padding: 8px 12px;
}

body.pm-front-page .pm-benefit-item i {
  display: inline-block;
  font-size: 100px;
  line-height: 1;
  color: #a98b4d;
}

body.pm-front-page .pm-benefit-item h3 {
  margin: 32px 0 14px;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 18px;
  line-height: 18px;
  letter-spacing: 0;
  font-weight: 500;
}

body.pm-front-page .pm-benefit-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 22.4px;
  letter-spacing: 0;
}

@media (max-width: 1500px) {
  body.pm-front-page .pm-hero-promark {
    min-height: 88vh;
  }

  body.pm-front-page .pm-hero-kicker {
    font-size: 13px;
  }

  body.pm-front-page .pm-hero-promark h1 {
    font-size: clamp(56px, 6.4vw, 88px);
  }

  body.pm-front-page .pm-benefit-item i {
    font-size: 78px;
  }

  body.pm-front-page .pm-benefit-item h3 {
    font-size: 16px;
  }

  body.pm-front-page .pm-benefit-item p {
    font-size: 13px;
  }
}

@media (max-width: 1080px) {
  .pm-header-promark,
  .pm-header-promark.pm-header-scrolled {
    min-height: auto;
  }

  .pm-header-promark .pm-header-inner {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "brand toggle"
      "tools tools"
      "nav nav";
    padding: 14px 0;
    min-height: 0;
  }

  .pm-header-promark .pm-header-left {
    grid-area: nav;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
  }

  .pm-header-promark .pm-brand-center {
    grid-area: brand;
    justify-self: start;
  }

  .pm-header-promark .pm-nav-toggle {
    grid-area: toggle;
    display: inline-flex;
  }

  .pm-header-promark .pm-nav {
    display: none;
    margin-top: 8px;
  }

  .pm-header-promark .pm-nav.is-open {
    display: block;
  }

  .pm-header-promark .pm-menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    background: rgba(16, 30, 25, 0.86);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
  }

  .pm-header-promark .pm-menu .sub-menu {
    position: static;
    min-width: 0;
    width: 100%;
    margin-top: 6px;
    padding: 6px 0 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .pm-header-promark .pm-menu .sub-menu a {
    padding: 6px 0 6px 12px;
    font-size: 11px;
    color: rgba(245, 245, 240, 0.86);
  }

  .pm-header-promark .pm-menu > li:not(:last-child) > a::after {
    display: none;
  }

  .pm-header-promark .pm-header-right {
    grid-area: tools;
    justify-content: flex-start;
    gap: 16px;
    margin-top: 2px;
  }

  body.pm-front-page .pm-hero-promark {
    min-height: 760px;
    padding-top: 64px;
  }

  body.pm-front-page .pm-hero-inner {
    padding: 40px 0 80px;
  }

  body.pm-front-page .pm-hero-arrow {
    display: none;
  }

  body.pm-front-page .pm-benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

  .pm-page-hero {
    padding-top: 98px;
  }
}

@media (max-width: 760px) {
  .pm-header-promark {
    min-height: 112px;
  }

  .pm-header-promark.pm-header-scrolled {
    min-height: 86px;
  }

  .pm-header-promark .pm-header-right {
    flex-wrap: wrap;
    gap: 10px 12px;
  }

  .pm-header-promark .pm-tool {
    font-size: 11px;
  }

  .pm-header-promark .pm-brand-center img {
    max-height: 54px;
  }

  body.pm-front-page .pm-hero-promark {
    min-height: 640px;
    padding-top: 84px;
  }

  body.pm-front-page .pm-hero-inner {
    padding: 46px 0 72px;
  }

  body.pm-front-page .pm-hero-kicker {
    font-size: 11px;
    margin-bottom: 14px;
  }

  body.pm-front-page .pm-hero-promark h1 {
    font-size: clamp(39px, 10.2vw, 56px);
  }

  body.pm-front-page .pm-btn-hero {
    min-width: 178px;
    height: 52px;
    font-size: 12px;
  }

  body.pm-front-page .pm-hero-benefits {
    padding: 52px 0;
  }

  body.pm-front-page .pm-benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  body.pm-front-page .pm-benefit-item i {
    font-size: 52px;
  }

  body.pm-front-page .pm-benefit-item h3 {
    font-size: 18px;
  }

  body.pm-front-page .pm-benefit-item p {
    font-size: 14px;
  }

  .pm-page-hero {
    padding-top: 86px;
  }
}

@media (max-width: 480px) {
  .pm-header-promark {
    min-height: 100px;
  }

  .pm-header-promark.pm-header-scrolled {
    min-height: 76px;
  }

  body.pm-front-page .pm-hero-promark {
    min-height: 620px;
    padding-top: 72px;
  }

  body.pm-front-page .pm-hero-inner {
    padding: 34px 0 56px;
  }
}

/* ProMark page system and animation hooks */
.pm-page {
  background: var(--pm-white);
}

.pm-page-hero {
  position: relative;
  min-height: clamp(360px, 48vh, 560px);
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center center;
  color: #f4f1e9;
  padding-top: calc(var(--pm-header-height) + 28px);
}

.pm-page-hero .pm-overlay {
  position: absolute;
  inset: 0;
  background: rgba(16, 22, 20, 0.58);
}

.pm-page-hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 46px 0 26px;
}

.pm-page-hero-title {
  margin: 0;
  font-size: clamp(36px, 5vw, 74px);
  line-height: 1;
  text-transform: uppercase;
  color: #eeeee5;
}

.pm-page-hero-breadcrumbs {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: rgba(236, 234, 224, 0.88);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.02em;
  font-weight: 300;
}

.pm-page-hero-breadcrumbs li {
  position: relative;
}

.pm-page-hero-breadcrumbs li + li::before {
  content: "|";
  position: absolute;
  left: -11px;
  color: rgba(236, 234, 224, 0.7);
}

.pm-page-hero-breadcrumbs a {
  color: rgba(236, 234, 224, 0.88) !important;
}

.pm-page-block {
  background: #fff;
}

.pm-loop-grid {
  display: grid;
  gap: 24px;
}

.pm-loop-grid.pm-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pm-loop-grid.pm-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pm-loop-grid.pm-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pm-loop-card,
.pm-testimonial-card,
.pm-contact-card,
.pm-form-shell,
.pm-faq-item {
  background: #fff;
  border-radius: var(--pm-radius);
  box-shadow: var(--pm-shadow);
}

.pm-loop-media {
  border-top-left-radius: var(--pm-radius);
  border-top-right-radius: var(--pm-radius);
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.pm-loop-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pm-loop-content {
  padding: 20px;
}

.pm-loop-content h3,
.pm-testimonial-card h3 {
  margin: 0 0 8px;
  font-size: 24px;
  line-height: 1.1;
  text-transform: uppercase;
}

.pm-loop-role {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--pm-primary);
  margin-bottom: 10px;
}

.pm-testimonial-card {
  padding: 28px;
}

.pm-testimonial-card blockquote {
  margin: 0 0 20px;
  font-size: 20px;
  line-height: 1.45;
}

.pm-faq-list {
  display: grid;
  gap: 12px;
}

.pm-faq-item {
  padding: 0;
  overflow: hidden;
}

.pm-faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pm-faq-item summary::-webkit-details-marker {
  display: none;
}

.pm-faq-item summary::after {
  content: "+";
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--pm-primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
}

.pm-faq-item[open] summary::after {
  content: "-";
}

.pm-faq-answer {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding: 18px 22px 24px;
}

.pm-gallery-grid {
  gap: 16px;
}

.pm-gallery-card {
  border-radius: 18px;
  overflow: hidden;
  position: relative;
}

.pm-gallery-link {
  display: block;
  position: relative;
}

.pm-gallery-link::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.72) 100%);
  opacity: 0;
  transition: opacity 0.28s ease;
}

.pm-gallery-link img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.34s ease;
}

.pm-gallery-title {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 2;
  color: #f7f5ef;
  text-transform: uppercase;
  font-size: 14px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.pm-gallery-link:hover::after {
  opacity: 1;
}

.pm-gallery-link:hover img {
  transform: scale(1.04);
}

.pm-gallery-link:hover .pm-gallery-title {
  opacity: 1;
  transform: translateY(0);
}

.pm-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 26px;
}

.pm-contact-card,
.pm-form-shell {
  padding: 28px;
}

.pm-contact-list {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 9px;
}

.pm-contact-map {
  padding: 0 0 90px;
}

.pm-contact-form {
  display: grid;
  gap: 12px;
}

.pm-form-row {
  display: grid;
  gap: 6px;
}

.pm-form-row label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.pm-form-row input,
.pm-form-row textarea {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  min-height: 46px;
  padding: 10px 14px;
  font: inherit;
}

.pm-contact-form button {
  min-height: 46px;
}

.pm-form-notice {
  margin: 0 0 12px;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 14px;
}

.pm-form-success {
  background: rgba(42, 163, 102, 0.12);
  color: #135a3a;
}

.pm-form-error {
  background: rgba(179, 67, 37, 0.12);
  color: #6b1f0d;
}

.pm-map-embed iframe {
  width: 100%;
  min-height: 440px;
  border: 0;
}

.pm-coming-shell {
  min-height: 82vh;
  background: url('../images/promark/slide-01.jpg') center / cover no-repeat;
  position: relative;
  color: #f5f1e8;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pm-coming-shell .pm-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 21, 19, 0.62);
}

.pm-coming-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.pm-coming-inner h1 {
  margin: 0;
  text-transform: uppercase;
  font-size: clamp(44px, 8vw, 118px);
  line-height: 0.95;
}

.pm-coming-inner p {
  margin: 16px auto 0;
  max-width: 740px;
  font-size: 20px;
}

.pm-coming-countdown {
  margin-top: 26px;
  display: inline-grid;
  grid-template-columns: repeat(4, minmax(90px, 1fr));
  gap: 12px;
}

.pm-coming-countdown div {
  border-radius: 16px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
}

.pm-coming-countdown strong {
  display: block;
  font-size: 42px;
  line-height: 1;
}

.pm-coming-countdown span {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pm-404-shell {
  min-height: 70vh;
}

.pm-empty-state {
  margin: 0;
  padding: 22px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.03);
}

[data-pm-anim] {
  will-change: transform, opacity;
}

.pm-reduced-motion [data-pm-anim] {
  opacity: 1 !important;
  transform: none !important;
}

@media (max-width: 1199px) {
  .pm-loop-grid.pm-cols-4 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 992px) {
  .pm-loop-grid.pm-cols-3,
  .pm-loop-grid.pm-cols-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pm-contact-grid {
    grid-template-columns: 1fr;
  }

  .pm-coming-countdown {
    grid-template-columns: repeat(2, minmax(90px, 1fr));
  }
}

@media (max-width: 640px) {
  .pm-loop-grid.pm-cols-2,
  .pm-loop-grid.pm-cols-3,
  .pm-loop-grid.pm-cols-4 {
    grid-template-columns: 1fr;
  }

  .pm-loop-content h3,
  .pm-testimonial-card h3 {
    font-size: 22px;
  }

  .pm-faq-item summary {
    font-size: 16px;
    padding: 14px 16px;
  }

  .pm-faq-answer {
    padding: 14px 16px 18px;
  }

  .pm-coming-inner p {
    font-size: 16px;
  }

  .pm-coming-countdown strong {
    font-size: 30px;
  }
}

/* ProMark parity pass */
.pm-header-promark .pm-menu > li.current-menu-item > a,
.pm-header-promark .pm-menu > li.current-menu-ancestor > a,
.pm-header-promark .pm-menu > li > a:hover {
  color: #a98b4d;
}

.pm-header-promark .pm-menu .sub-menu .sub-menu {
  top: -8px;
  left: calc(100% + 8px);
}

.pm-page-hero {
  min-height: clamp(420px, 62vh, 620px);
  padding-top: var(--pm-header-height);
}

.pm-page-hero .pm-hero-kicker {
  margin: 0 0 22px;
  color: rgba(243, 243, 236, 0.92);
  text-transform: uppercase;
  font-size: 12px;
  line-height: 12px;
  letter-spacing: 2px;
  font-weight: 500;
}

.pm-page-hero-title {
  font-size: 60px !important;
  line-height: 90px !important;
  font-weight: 500 !important;
  color: #eeeee5 !important;
}

.pm-about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
}

.pm-about-years {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 22px;
}

.pm-about-years strong {
  font-size: 64px;
  line-height: 1;
  color: #1c2d66;
}

.pm-about-years span {
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.pm-about-gallery {
  background: #f7f6f1;
}

.pm-about-gallery-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.pm-about-services .pm-service-content h3 {
  font-size: 22px;
}

.pm-about-band {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  color: #efece0;
}

.pm-about-band .pm-overlay {
  position: absolute;
  inset: 0;
  background: rgba(12, 19, 17, 0.56);
}

.pm-about-band-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.pm-about-band-inner p {
  margin: 10px 0 0;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.pm-about-band-inner a {
  color: #fff;
}

.pm-about-metrics {
  background: #f2f1ea;
}

.pm-about-reviews {
  background: #fff;
}

.pm-about-reviews .pm-testimonial-card {
  text-align: center;
}

.pm-team-intro {
  background: #f4f3ee;
}

.pm-team-intro-image {
  width: 100%;
  border-radius: 16px;
  box-shadow: var(--pm-shadow);
  margin-top: 22px;
}

.pm-team-marquee {
  overflow: hidden;
  background: #151c19;
  color: #f2efe5;
}

.pm-team-marquee-track {
  display: flex;
  gap: 46px;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 18px 0;
  animation: pm-marquee 22s linear infinite;
}

.pm-team-marquee-track span {
  font-size: 30px;
  line-height: 1;
}

@keyframes pm-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-30%);
  }
}

.pm-faq-help {
  margin: 24px 0 34px;
}

.pm-faq-columns {
  align-items: start;
}

.pm-testimonial-form {
  background: #111714;
}

.pm-testimonial-form .pm-form-shell {
  max-width: 920px;
}

.pm-coming-shell {
  background-size: cover;
  background-position: center;
}

.pm-coming-logo {
  width: 90px;
  margin: 0 auto 22px;
}

.pm-contact-grid .pm-eyebrow {
  margin-bottom: 14px;
}

.pm-contact-card h2 {
  margin-top: 0;
}

.pm-contact-card li {
  line-height: 1.6;
}

.pm-404-shell .pm-coming-inner {
  max-width: 900px;
}

.pm-footer {
  background-image:
    radial-gradient(1000px 500px at -10% 0%, rgba(40, 96, 67, 0.5) 0%, rgba(16, 27, 22, 0) 66%),
    radial-gradient(1000px 500px at 110% 0%, rgba(35, 90, 63, 0.36) 0%, rgba(16, 27, 22, 0) 66%),
    linear-gradient(90deg, rgba(17, 43, 33, 0.98) 0%, rgba(16, 34, 27, 0.98) 38%, rgba(15, 28, 22, 0.98) 100%),
    url("../images/promark/wood_pattern_black_30.png");
  background-repeat: no-repeat, no-repeat, no-repeat, repeat;
  background-size: cover, cover, cover, auto;
}

.pm-footer-branding .pm-brand img {
  max-height: 96px;
}

.pm-social-links a span {
  font-weight: 600;
  font-size: 11px;
}

.pm-footer-contact-list strong {
  color: #a98b4d;
  margin-right: 6px;
  font-weight: 500;
}

.pm-copyright {
  text-transform: none;
}

@media (max-width: 1080px) {
  .pm-page-hero-title {
    font-size: 50px !important;
    line-height: 1.1 !important;
  }

  .pm-about-intro-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .pm-page-hero-title {
    font-size: 42px !important;
    line-height: 1.1 !important;
  }

  .pm-team-marquee-track span {
    font-size: 24px;
  }
}

/* Mobile header repair pass */
@media (max-width: 1080px) {
  .pm-header-promark,
  .pm-header-promark.pm-header-scrolled,
  .pm-header-promark.pm-header-shrunk {
    min-height: auto;
  }

  .pm-header-promark .pm-header-inner {
    width: min(1640px, 92vw);
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "brand toggle"
      "tools tools";
    gap: 10px;
    padding: 12px 0 10px;
  }

  .pm-header-promark .pm-brand-center {
    grid-area: brand;
    justify-self: start;
    min-height: 0;
  }

  .pm-header-promark .pm-brand-center img {
    max-height: 62px;
  }

  .pm-header-promark .pm-header-left {
    grid-area: toggle;
    width: auto;
    justify-self: end;
    display: flex;
    align-items: center;
  }

  .pm-header-promark .pm-nav-toggle {
    display: inline-flex;
    width: 44px;
    height: 44px;
  }

  .pm-header-promark .pm-header-right {
    grid-area: tools;
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 14px;
    margin-top: 0;
    padding-bottom: 2px;
  }

  .pm-header-promark .pm-tool {
    white-space: nowrap;
    font-size: 11px;
    line-height: 1;
  }

  .pm-header-promark .pm-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 4vw;
    right: 4vw;
    margin-top: 0;
    display: none;
    z-index: 1300;
  }

  .pm-header-promark .pm-nav.is-open {
    display: block;
  }

  .pm-header-promark .pm-menu {
    max-height: 70vh;
    overflow: auto;
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(10, 24, 20, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(6px);
  }

  .pm-header-promark .pm-menu > li {
    width: 100%;
  }

  .pm-header-promark .pm-menu > li > a {
    display: block;
    width: 100%;
    padding: 6px 0;
  }

  .pm-header-promark .pm-menu > li:not(:last-child) > a::after {
    display: none;
  }

  .pm-header-promark .pm-menu .sub-menu {
    padding: 2px 0 0 10px;
    margin-top: 4px;
  }

  .pm-header-promark .pm-menu .sub-menu .sub-menu {
    left: 0;
    top: 0;
    padding-left: 10px;
  }

  body.pm-front-page .pm-hero-promark {
    min-height: 680px;
    padding-top: 132px;
  }

  .pm-page-hero {
    min-height: 440px;
    padding-top: 126px;
  }
}

@media (max-width: 640px) {
  .pm-header-promark .pm-header-inner {
    padding: 10px 0 8px;
  }

  .pm-header-promark .pm-brand-center img {
    max-height: 52px;
  }

  .pm-header-promark .pm-header-right {
    gap: 10px;
  }

  .pm-header-promark .pm-tool span {
    display: none;
  }

  .pm-header-promark .pm-tool {
    font-size: 0;
    gap: 0;
  }

  .pm-header-promark .pm-tool i {
    font-size: 14px;
  }

  .pm-header-promark .pm-cart-count {
    margin-left: 4px;
  }

  body.pm-front-page .pm-hero-promark {
    min-height: 640px;
    padding-top: 116px;
  }

  body.pm-front-page .pm-hero-inner {
    padding: 34px 0 54px;
  }

  .pm-page-hero {
    padding-top: 110px;
  }
}

@media (max-width: 420px) {
  .pm-header-promark .pm-header-right {
    gap: 8px;
  }

  .pm-header-promark .pm-nav {
    left: 3vw;
    right: 3vw;
  }

  body.pm-front-page .pm-hero-promark h1 {
    font-size: clamp(36px, 11vw, 48px);
  }
}

/* Mobile header parity rebuild */
.pm-mobile-nav-top,
.pm-mobile-nav-tools,
.pm-mobile-nav-search,
.pm-submenu-toggle {
  display: none;
}

.pm-header-promark .pm-nav-toggle {
  -webkit-appearance: none;
  appearance: none;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  color: #f4f2e9;
}

.pm-header-promark .pm-nav-toggle span {
  width: 24px !important;
  height: 2px !important;
  min-height: 2px;
  background: #f4f2e9 !important;
  border-radius: 999px;
  transform-origin: center;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

@media (max-width: 1080px) {
  .pm-header-promark,
  .pm-header-promark.pm-header-scrolled,
  .pm-header-promark.pm-header-shrunk {
    min-height: 84px !important;
  }

  .pm-header-promark.pm-header-scrolled,
  .pm-header-promark.pm-header-shrunk {
    background: rgba(17, 25, 33, 0.96);
    border-bottom-color: rgba(255, 255, 255, 0.1);
    box-shadow: none;
  }

  .pm-header-promark .pm-header-inner {
    width: min(1640px, 92vw);
    min-height: 88px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    padding: 10px 0 0;
    gap: 0;
    grid-template-columns: none;
    grid-template-areas: none;
  }

  .pm-header-promark .pm-header-left {
    position: absolute;
    left: 0;
    top: 22px;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    grid-area: auto !important;
  }

  .pm-header-promark .pm-nav-toggle {
    display: inline-flex;
    width: 36px;
    height: 36px;
    padding: 0;
    gap: 6px;
    border: 0;
    border-radius: 0;
    background: transparent;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    box-shadow: none !important;
    outline: none;
  }

  .pm-header-promark .pm-nav-toggle:focus,
  .pm-header-promark .pm-nav-toggle:focus-visible {
    outline: none;
    box-shadow: none;
    background: transparent !important;
  }

  .pm-header-promark .pm-brand-center {
    justify-self: auto;
    margin-top: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    grid-area: auto !important;
  }

  .pm-header-promark .pm-brand-center img {
    max-height: 74px;
    margin: 0 auto;
  }

  .pm-header-promark .pm-header-right {
    display: none !important;
    grid-area: auto !important;
  }

  .pm-header-promark .pm-nav {
    position: fixed;
    inset: 0 14px 0;
    z-index: 1500;
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-20px);
    transition: transform 0.28s ease, opacity 0.22s ease, visibility 0.22s ease;
    margin: 0;
    padding: 24px 18px 22px;
    overflow-y: auto;
    overflow-x: hidden;
    background: #10161d;
  }

  body.admin-bar .pm-header-promark .pm-nav {
    top: var(--pm-admin-offset-mobile);
  }

  .pm-header-promark .pm-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }

  .pm-header-promark .pm-mobile-nav-top {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 28px;
    padding-right: 58px;
  }

  .pm-header-promark .pm-brand-mobile img {
    max-height: 58px;
    width: auto;
  }

  .pm-header-promark .pm-menu {
    display: block;
    margin: 0;
    padding: 0;
    list-style: none;
    background: transparent;
    border: 0;
    border-radius: 0;
    max-height: none;
    overflow: visible;
  }

  .pm-header-promark .pm-menu > li {
    position: relative;
    width: 100%;
    margin: 0;
  }

  .pm-header-promark .pm-menu > li:not(:last-child) {
    margin-bottom: 6px;
  }

  .pm-header-promark .pm-menu > li > a {
    display: block;
    width: 100%;
    padding: 9px 34px 9px 0;
    color: #f5f4eb;
    font-size: 18px !important;
    line-height: 18px !important;
    font-weight: 500 !important;
    letter-spacing: 0;
    text-transform: none !important;
  }

  .pm-header-promark .pm-menu > li.current-menu-item > a,
  .pm-header-promark .pm-menu > li.current_page_item > a {
    color: #a98b4d;
  }

  .pm-header-promark .pm-menu > li > a::after,
  .pm-header-promark .pm-menu > li:not(:last-child) > a::after {
    display: none !important;
  }

  .pm-header-promark .pm-submenu-toggle {
    position: absolute;
    right: 0;
    top: 21px;
    display: inline-flex;
    width: 24px;
    height: 24px;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    cursor: pointer;
    align-items: center;
    justify-content: center;
  }

  .pm-header-promark .pm-submenu-toggle:focus,
  .pm-header-promark .pm-submenu-toggle:focus-visible {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    outline: none;
  }

  .pm-header-promark .pm-submenu-toggle span {
    position: absolute;
    width: 16px;
    height: 2px;
    border-radius: 999px;
    background: #f4f2e9;
    transition: transform 0.22s ease, opacity 0.22s ease;
  }

  .pm-header-promark .pm-submenu-toggle span:last-child {
    transform: rotate(90deg);
  }

  .pm-header-promark .pm-menu > li.is-expanded > .pm-submenu-toggle span:last-child {
    opacity: 0;
    transform: rotate(0deg);
  }

  .pm-header-promark .pm-menu .sub-menu {
    position: static;
    min-width: 0;
    max-height: 0;
    margin: 0;
    padding: 0 0 0 14px;
    overflow: hidden;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    transition: max-height 0.26s ease, padding 0.26s ease;
  }

  .pm-header-promark .pm-menu > li.is-expanded > .sub-menu {
    max-height: 520px;
    padding: 6px 0 4px 10px;
  }

  .pm-header-promark .pm-menu .sub-menu a {
    display: block;
    padding: 5px 0;
    color: rgba(245, 244, 235, 0.8);
    font-size: 18px !important;
    font-weight: 300 !important;
    line-height: 18px !important;
    letter-spacing: 0;
    text-transform: none !important;
    background: transparent;
  }

  .pm-header-promark .pm-menu .sub-menu a::before {
    content: "-";
    display: inline-block;
    margin-right: 10px;
    color: rgba(245, 244, 235, 0.9);
  }

  .pm-header-promark .pm-menu .sub-menu a:hover {
    color: #fff;
    background: transparent;
  }

  .pm-header-promark .pm-menu .sub-menu .current-menu-item > a,
  .pm-header-promark .pm-menu .sub-menu .current_page_item > a {
    color: #a98b4d;
  }

  .pm-header-promark .pm-mobile-nav-tools {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 28px;
    padding: 2px 2px 14px;
  }

  .pm-header-promark .pm-mobile-nav-tools .pm-tool {
    display: inline-flex;
    align-items: center;
    color: #fff;
    font-size: 0 !important;
    line-height: 1;
    gap: 0;
  }

  .pm-header-promark .pm-mobile-nav-tools .pm-tool-cart {
    gap: 8px;
  }

  .pm-header-promark .pm-mobile-nav-tools .pm-tool i {
    font-size: 30px;
  }

  .pm-header-promark .pm-mobile-nav-tools .pm-cart-count {
    display: inline-flex;
    width: 32px;
    height: 32px;
    margin: 0;
    font-size: 18px;
    font-weight: 500;
    background: #c84b26;
    color: #fff;
  }

  .pm-header-promark .pm-mobile-nav-search {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 70px;
    margin-top: 4px;
    padding: 0 18px;
    border: 1px solid rgba(245, 244, 235, 0.78);
    border-radius: 999px;
  }

  .pm-header-promark .pm-mobile-nav-search input {
    flex: 1 1 auto;
    border: 0;
    background: transparent;
    color: #f5f4eb;
    font-size: 16px !important;
    line-height: 1;
    font-weight: 300;
    outline: none;
  }

  .pm-header-promark .pm-mobile-nav-search input::placeholder {
    color: rgba(245, 244, 235, 0.5);
  }

  .pm-header-promark .pm-mobile-nav-search button {
    border: 0;
    background: transparent;
    color: #fff;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0;
  }

  .pm-header-promark .pm-mobile-nav-search button i {
    font-size: 26px;
    line-height: 1;
  }

  body.pm-nav-open {
    overflow: hidden;
  }

  html.pm-nav-open {
    overflow: hidden;
  }

  body.pm-nav-open .pm-header-promark {
    background: transparent;
    border-bottom-color: transparent;
    box-shadow: none;
  }

  body.pm-nav-open .pm-header-promark .pm-brand-center {
    opacity: 0;
    pointer-events: none;
  }

  body.pm-nav-open .pm-header-promark .pm-nav-toggle {
    position: fixed;
    top: 22px;
    right: 22px;
    z-index: 1505;
    width: 34px;
    height: 34px;
    background: transparent !important;
    border: 0 !important;
  }

  body.admin-bar.pm-nav-open .pm-header-promark .pm-nav-toggle {
    top: calc(var(--pm-admin-offset-mobile) + 12px);
  }

  body.pm-nav-open .pm-header-promark .pm-nav-toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  body.pm-nav-open .pm-header-promark .pm-nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  body.pm-nav-open .pm-header-promark .pm-nav-toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  body.pm-front-page .pm-hero-promark {
    min-height: 880px;
    padding-top: 92px;
  }

  body.pm-front-page .pm-hero-inner {
    padding: 40px 0 68px;
  }

  .pm-page-hero {
    padding-top: 108px;
    min-height: 420px;
  }
}

@media (max-width: 768px) {
  .pm-header-promark .pm-header-inner {
    min-height: 82px;
    padding: 8px 0 0;
  }

  .pm-header-promark .pm-brand-center img {
    max-height: 66px;
  }

  .pm-header-promark .pm-nav {
    inset: 0 14px 0;
    padding: 24px 18px 24px;
  }

  .pm-header-promark .pm-menu > li > a {
    font-size: 18px !important;
  }

  .pm-header-promark .pm-submenu-toggle {
    top: 18px;
  }

  body.pm-front-page .pm-hero-promark {
    min-height: 840px;
    padding-top: 88px;
  }
}

@media (max-width: 600px) {
  .pm-header-promark .pm-header-inner {
    min-height: 76px;
    padding: 8px 0 0;
  }

  .pm-header-promark .pm-brand-center img {
    max-height: 60px;
  }

  .pm-header-promark .pm-nav {
    inset: 0 14px 0;
    padding: 22px 18px 22px;
  }

  .pm-header-promark .pm-mobile-nav-top {
    margin-bottom: 20px;
  }

  .pm-header-promark .pm-menu > li > a {
    font-size: 18px !important;
    padding-right: 28px;
  }

  .pm-header-promark .pm-submenu-toggle {
    top: 16px;
  }

  .pm-header-promark .pm-mobile-nav-tools {
    margin-top: 26px;
    padding-bottom: 12px;
  }

  .pm-header-promark .pm-mobile-nav-tools .pm-tool i {
    font-size: 26px;
  }

  .pm-header-promark .pm-mobile-nav-tools .pm-cart-count {
    width: 30px;
    height: 30px;
    font-size: 16px;
    margin-top: 0;
  }

  .pm-header-promark .pm-mobile-nav-search {
    min-height: 58px;
  }

  .pm-header-promark .pm-mobile-nav-search input {
    font-size: 16px !important;
  }

  .pm-header-promark .pm-mobile-nav-search button i {
    font-size: 24px;
  }

  body.pm-front-page .pm-hero-promark {
    min-height: 780px;
    padding-top: 82px;
  }

  body.pm-front-page .pm-hero-inner {
    padding: 28px 0 48px;
  }

  .pm-page-hero {
    min-height: 360px;
    padding-top: 96px;
  }
}

/* Parity sprint: admin-bar gap removal and footer/newsletter matching */
html {
  margin-top: 0 !important;
}

body.admin-bar {
  margin-top: 0 !important;
}

#pm-site-header.pm-header-promark {
  border-top: 0;
}

body.admin-bar #pm-site-header.pm-header {
  top: var(--pm-admin-offset-current, var(--pm-admin-offset-desktop)) !important;
}

@media (max-width: 782px) {
  body.admin-bar #pm-site-header.pm-header {
    top: var(--pm-admin-offset-current, var(--pm-admin-offset-mobile)) !important;
  }
}

body.admin-bar .pm-header-promark .pm-nav {
  top: var(--pm-admin-offset-current, var(--pm-admin-offset-mobile));
}

body.admin-bar.pm-nav-open .pm-header-promark .pm-nav-toggle {
  top: calc(var(--pm-admin-offset-current, var(--pm-admin-offset-mobile)) + 12px);
}

.pm-newsletter {
  position: relative;
  color: #f6f3ea;
  padding: 132px 0;
  background:
    linear-gradient(180deg, rgba(12, 17, 16, 0.7) 0%, rgba(12, 17, 16, 0.76) 100%),
    url("../images/promark/subscribe_parallax-1.jpg") center center / cover no-repeat;
  overflow: hidden;
}

.pm-newsletter::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 13, 12, 0.34) 0%, rgba(8, 13, 12, 0.22) 38%, rgba(8, 13, 12, 0.46) 100%);
  pointer-events: none;
}

.pm-newsletter .pm-container {
  position: relative;
  z-index: 1;
}

.pm-newsletter-inner {
  max-width: 1040px;
  margin: 0 auto;
  text-align: center;
}

.pm-newsletter .pm-section-title {
  margin: 0 auto;
  max-width: 980px;
  color: #f4f2e9 !important;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: clamp(34px, 4.6vw, 72px);
  line-height: 1.04;
}

.pm-newsletter-inner p {
  margin: 22px auto 0;
  max-width: 780px;
  color: rgba(238, 235, 225, 0.88);
}

.pm-newsletter-form {
  margin: 36px auto 0;
  max-width: 640px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0;
}

.pm-newsletter-form input {
  min-height: 64px;
  border: 0;
  border-radius: 999px 0 0 999px;
  padding: 0 26px;
  font-size: 18px;
  color: #1f2322;
  background: #fff;
}

.pm-newsletter-form button {
  min-height: 64px;
  min-width: 220px;
  border: 0;
  border-radius: 0 999px 999px 0;
  padding: 0 28px;
  background: #c84b26;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  font-size: 10px;
  font-weight: 500;
}

.pm-footer {
  position: relative;
  color: rgba(238, 235, 226, 0.92);
  padding: 108px 0 0;
  background:
    linear-gradient(90deg, rgba(16, 43, 33, 0.96) 0%, rgba(16, 35, 27, 0.97) 52%, rgba(17, 45, 35, 0.96) 100%),
    url("../images/promark/wood_pattern_black_30.png");
  background-size: cover, auto;
  background-repeat: no-repeat, repeat;
}

.pm-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1100px 460px at -8% 0%, rgba(49, 112, 79, 0.35) 0%, rgba(0, 0, 0, 0) 72%),
    radial-gradient(1100px 460px at 108% 0%, rgba(49, 112, 79, 0.32) 0%, rgba(0, 0, 0, 0) 72%);
  pointer-events: none;
}

.pm-footer .pm-container.pm-footer-inner {
  width: min(1280px, 88vw);
}

.pm-footer-inner {
  position: relative;
  z-index: 1;
  grid-template-columns: 1.26fr 0.76fr 0.92fr;
  gap: 72px;
}

.pm-footer h4 {
  margin: 18px 0 26px;
  color: #a98b4d !important;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 42px;
  line-height: 1;
  font-weight: 500;
}

.pm-footer-branding .pm-brand img {
  max-height: 70px;
}

.pm-footer-brand-title {
  margin: 34px 0 18px;
  color: #f4f3ea !important;
  text-transform: uppercase;
  font-size: clamp(34px, 4.5vw, 58px);
  line-height: 0.98;
  letter-spacing: 0;
  font-weight: 500;
  max-width: 14ch;
}

.pm-footer-branding p {
  margin: 0;
  max-width: 34ch;
  color: rgba(236, 232, 221, 0.86);
  font-size: 18px;
  line-height: 1.45;
}

.pm-footer-menu {
  gap: 14px;
}

.pm-footer-menu a {
  color: rgba(242, 239, 229, 0.94) !important;
  padding-left: 16px;
  text-transform: uppercase;
  font-size: 18px;
  letter-spacing: 0;
  font-weight: 500;
}

.pm-footer-menu a::before {
  content: ">";
  left: 0;
  opacity: 0.78;
}

.pm-social-links {
  margin-top: 44px;
  display: flex;
  gap: 24px;
}

.pm-social-links a {
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #a98b4d;
  font-size: 17px;
  line-height: 1;
}

.pm-social-links a span {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.pm-footer-contact-list {
  gap: 22px;
}

.pm-footer-contact-list li {
  gap: 14px;
  color: rgba(242, 239, 229, 0.94) !important;
  font-size: 18px;
  line-height: 1.42;
}

.pm-meta-icon {
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  margin-top: 0;
  border-radius: 999px;
  background: #a98b4d;
  color: #18201b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.pm-footer-contact-list strong {
  display: block;
  margin: 0 0 4px;
  color: #a98b4d !important;
  font-weight: 500;
  text-transform: uppercase;
}

.pm-footer a {
  color: inherit;
}

.pm-copyright {
  margin-top: 96px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding: 22px 0 24px;
  text-align: left;
  width: min(1280px, 88vw);
  margin-left: auto;
  margin-right: auto;
  color: rgba(238, 235, 225, 0.85);
  font-size: 13px;
  letter-spacing: 0;
}

@media (max-width: 1180px) {
  .pm-footer .pm-container.pm-footer-inner {
    width: min(1280px, 92vw);
  }

  .pm-footer-inner {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .pm-footer h4 {
    font-size: 30px;
    margin: 0 0 18px;
  }

  .pm-footer-brand-title {
    font-size: clamp(32px, 8vw, 46px);
  }

  .pm-copyright {
    width: min(1280px, 92vw);
    margin-top: 46px;
  }
}

@media (max-width: 767px) {
  .pm-newsletter {
    padding: 94px 0 92px;
  }

  .pm-newsletter .pm-section-title {
    font-size: clamp(30px, 10vw, 44px);
  }

  .pm-newsletter-form {
    max-width: 100%;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .pm-newsletter-form input,
  .pm-newsletter-form button {
    border-radius: 999px;
    min-height: 58px;
    width: 100%;
  }

  .pm-newsletter-form input {
    font-size: 16px;
    padding: 0 20px;
  }

  .pm-newsletter-form button {
    min-width: 0;
  }

  .pm-footer {
    padding-top: 86px;
  }

  .pm-footer-menu a,
  .pm-footer-contact-list li {
    font-size: 16px;
  }

  .pm-social-links {
    gap: 20px;
    margin-top: 30px;
  }
}

/* Cornerstone launch overrides */
html,
body,
body.admin-bar {
  margin-top: 0 !important;
  border-top: 0 !important;
}

#wpadminbar {
  border-top: 0 !important;
  box-shadow: none !important;
}

.pm-brand-logo {
  display: none;
  line-height: 0;
}

.pm-brand-logo img {
  display: block;
  width: auto;
  height: auto;
}

.pm-brand-logo-light {
  display: inline-flex;
}

.pm-header-promark .pm-brand-center .pm-brand-logo img {
  width: min(360px, 24vw);
  max-width: 100%;
}

.pm-header-promark .pm-brand-mobile .pm-brand-logo img {
  width: 74px;
  max-width: 74px;
}

.pm-header-promark.pm-header-scrolled,
.pm-header-promark.pm-header-shrunk {
  background: rgba(246, 244, 239, 0.97) !important;
  border-bottom-color: rgba(22, 37, 32, 0.15) !important;
  box-shadow: 0 10px 24px rgba(11, 30, 24, 0.14) !important;
}

.pm-header-promark.pm-header-scrolled .pm-brand-center .pm-brand-logo-light,
.pm-header-promark.pm-header-shrunk .pm-brand-center .pm-brand-logo-light {
  display: none;
}

.pm-header-promark.pm-header-scrolled .pm-brand-center .pm-brand-logo-dark,
.pm-header-promark.pm-header-shrunk .pm-brand-center .pm-brand-logo-dark {
  display: inline-flex;
}

.pm-header-promark.pm-header-scrolled .pm-menu > li > a,
.pm-header-promark.pm-header-shrunk .pm-menu > li > a,
.pm-header-promark.pm-header-scrolled .pm-tool,
.pm-header-promark.pm-header-shrunk .pm-tool {
  color: #152620;
}

.pm-header-promark.pm-header-scrolled .pm-nav-toggle span,
.pm-header-promark.pm-header-shrunk .pm-nav-toggle span {
  background: #152620 !important;
}

.pm-header-promark .pm-header-right {
  gap: 18px;
}

.pm-header-promark .pm-tool-phone {
  letter-spacing: 0.02em;
}

.pm-header-promark .pm-header-cta {
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
}

.pm-front-page .pm-hero-description {
  max-width: 760px;
  margin: 22px auto 0;
  font-size: clamp(16px, 1.3vw, 22px);
  line-height: 1.45;
  color: rgba(246, 245, 238, 0.88);
}

.pm-page-about .pm-loop-card,
.pm-page-services .pm-service-card {
  border-radius: 18px;
}

.pm-footer {
  background: #f6f4ef;
  color: #172723;
  padding-top: 94px;
}

.pm-footer::before,
.pm-footer::after {
  display: none;
}

.pm-footer-brand-title,
.pm-footer h4 {
  color: #132520;
}

.pm-footer-branding p,
.pm-footer-menu a,
.pm-footer-contact-list li,
.pm-footer a,
.pm-copyright {
  color: rgba(24, 39, 34, 0.86) !important;
}

.pm-footer-menu a::before {
  color: #0b5f47;
}

.pm-social-links a {
  color: #0b5f47;
}

.pm-meta-icon {
  background: #0b5f47;
  color: #f7f5ef;
}

.pm-footer-contact-list strong {
  color: #0b5f47 !important;
}

.pm-copyright {
  border-top-color: rgba(18, 36, 31, 0.12);
}

@media (max-width: 1080px) {
  .pm-header-promark .pm-brand-center .pm-brand-logo-light {
    display: inline-flex !important;
  }

  .pm-header-promark .pm-brand-center .pm-brand-logo-dark {
    display: none !important;
  }

  .pm-header-promark .pm-brand-center .pm-brand-logo img {
    width: 84px;
    max-width: 84px;
  }

  .pm-header-promark .pm-nav {
    background: #10161d;
  }

  .pm-header-promark .pm-mobile-nav-tools .pm-tool i {
    font-size: 24px;
  }

  .pm-header-promark .pm-mobile-nav-tools .pm-tool span {
    display: none;
  }
}

@media (max-width: 600px) {
  .pm-header-promark .pm-brand-center .pm-brand-logo img {
    width: 74px;
    max-width: 74px;
  }

  .pm-header-promark .pm-mobile-nav-search {
    min-height: 56px;
  }
}

/* Cornerstone design system v2 */
:root {
  --pm-ui-bg: #f4f0e7;
  --pm-ui-ink: #1c3029;
  --pm-ui-panel: #0f1a23;
  --pm-ui-panel-border: rgba(246, 244, 235, 0.18);
  --pm-ui-gold: #cfc09a;
  --pm-ui-clay: #c96533;
  --pm-ui-radius-btn: 14px;
}

body {
  font-size: 17px;
  line-height: 1.65;
  color: var(--pm-ui-ink);
}

h1,
h2,
h3,
h4,
h5,
h6,
.pm-section-title {
  letter-spacing: -0.01em;
  color: #10241d;
}

.pm-section-title {
  font-size: clamp(30px, 4.2vw, 46px);
  line-height: 1.05;
}

body .pm-btn.pm-btn,
body .pm-btn.pm-btn-hero {
  min-height: 54px;
  border-radius: var(--pm-ui-radius-btn) !important;
  padding: 0 26px;
  font-size: 14px !important;
  font-weight: 700;
  letter-spacing: 0.01em !important;
  text-transform: none !important;
}

body .pm-btn.pm-btn:hover,
body .pm-btn.pm-btn-hero:hover {
  transform: translateY(-1px);
}

body .pm-btn.pm-btn-outline {
  border-width: 1.5px;
}

body.pm-front-page .pm-hero-promark .pm-hero-inner h1 {
  font-size: clamp(42px, 6vw, 76px) !important;
  line-height: 0.96 !important;
  letter-spacing: -0.015em;
  text-wrap: balance;
}

body.pm-front-page .pm-hero-description {
  max-width: 64ch;
  font-size: clamp(18px, 1.55vw, 24px);
  line-height: 1.5;
}

body.pm-front-page .pm-hero-actions {
  gap: 14px;
}

#pm-site-header.pm-header-promark {
  border-top: 0;
  border-bottom: 1px solid rgba(246, 244, 235, 0.22);
}

#pm-site-header.pm-header-promark .pm-header-inner {
  width: min(1560px, 92vw);
  grid-template-columns: 1fr auto 1fr;
  gap: 18px;
  align-items: center;
}

#pm-site-header.pm-header-promark .pm-brand-center {
  min-height: 90px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

#pm-site-header.pm-header-promark .pm-brand-center .pm-brand-logo-horizontal {
  display: inline-flex;
}

#pm-site-header.pm-header-promark .pm-brand-center .pm-brand-logo-square {
  display: none;
}

#pm-site-header.pm-header-promark .pm-brand-center .pm-brand-logo-horizontal img {
  width: auto !important;
  height: auto !important;
  max-height: 82px;
  max-width: min(380px, 26vw);
  object-fit: contain;
}

#pm-site-header.pm-header-promark.pm-header-scrolled,
#pm-site-header.pm-header-promark.pm-header-shrunk {
  background: rgba(246, 244, 239, 0.98) !important;
  border-bottom-color: rgba(20, 38, 31, 0.16) !important;
  box-shadow: 0 10px 20px rgba(18, 39, 31, 0.12) !important;
}

#pm-site-header.pm-header-promark.pm-header-scrolled .pm-brand-center .pm-brand-logo-horizontal img,
#pm-site-header.pm-header-promark.pm-header-shrunk .pm-brand-center .pm-brand-logo-horizontal img {
  max-height: 64px;
}

#pm-site-header.pm-header-promark .pm-brand-center .pm-brand-logo-dark.pm-brand-logo-horizontal {
  display: none;
}

#pm-site-header.pm-header-promark.pm-header-scrolled .pm-brand-center .pm-brand-logo-light.pm-brand-logo-horizontal,
#pm-site-header.pm-header-promark.pm-header-shrunk .pm-brand-center .pm-brand-logo-light.pm-brand-logo-horizontal {
  display: none;
}

#pm-site-header.pm-header-promark.pm-header-scrolled .pm-brand-center .pm-brand-logo-dark.pm-brand-logo-horizontal,
#pm-site-header.pm-header-promark.pm-header-shrunk .pm-brand-center .pm-brand-logo-dark.pm-brand-logo-horizontal {
  display: inline-flex;
}

#pm-site-header.pm-header-promark .pm-menu > li > a {
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 0.06em;
}

#pm-site-header.pm-header-promark .pm-tool-phone {
  font-size: 15px;
  font-weight: 500;
}

#pm-site-header.pm-header-promark .pm-header-cta {
  min-height: 48px;
  border-radius: var(--pm-ui-radius-btn) !important;
  padding: 0 24px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase !important;
}

.pm-header-promark .pm-mobile-nav-tools,
.pm-header-promark .pm-mobile-nav-search {
  display: none !important;
}

.pm-mobile-nav-actions {
  display: none;
  margin-top: 30px;
  gap: 10px;
}

.pm-mobile-nav-actions .pm-btn {
  width: 100%;
  min-height: 50px;
}

.pm-btn-mobile-primary {
  background: var(--pm-ui-clay) !important;
  color: #fff !important;
}

.pm-btn-mobile-secondary {
  background: transparent !important;
  color: rgba(245, 243, 233, 0.98) !important;
  border: 1px solid rgba(245, 243, 233, 0.52);
}

.pm-mobile-nav-contact {
  display: none;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(245, 243, 233, 0.22);
  gap: 10px;
}

.pm-mobile-contact-item {
  margin: 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.45;
  color: rgba(245, 243, 233, 0.88);
}

.pm-mobile-contact-item i {
  color: var(--pm-ui-gold);
  margin-top: 2px;
}

.pm-mobile-contact-item a,
.pm-mobile-contact-item span {
  color: inherit;
}

@media (max-width: 1080px) {
  #pm-site-header.pm-header-promark,
  #pm-site-header.pm-header-promark.pm-header-scrolled,
  #pm-site-header.pm-header-promark.pm-header-shrunk {
    min-height: 88px !important;
  }

  #pm-site-header.pm-header-promark .pm-header-inner {
    width: min(1200px, 92vw);
    min-height: 88px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
  }

  #pm-site-header.pm-header-promark .pm-header-left {
    position: absolute;
    top: 26px;
    left: 0;
  }

  #pm-site-header.pm-header-promark .pm-header-right {
    display: none !important;
  }

  #pm-site-header.pm-header-promark .pm-nav-toggle {
    width: 34px;
    height: 34px;
  }

  #pm-site-header.pm-header-promark .pm-brand-center {
    min-height: 88px;
  }

  #pm-site-header.pm-header-promark .pm-brand-center .pm-brand-logo-horizontal {
    display: none !important;
  }

  #pm-site-header.pm-header-promark .pm-brand-center .pm-brand-logo-square {
    display: inline-flex;
  }

  #pm-site-header.pm-header-promark .pm-brand-center .pm-brand-logo-light.pm-brand-logo-square {
    display: inline-flex;
  }

  #pm-site-header.pm-header-promark .pm-brand-center .pm-brand-logo-dark.pm-brand-logo-square {
    display: none;
  }

  #pm-site-header.pm-header-promark.pm-header-scrolled .pm-brand-center .pm-brand-logo-light.pm-brand-logo-square,
  #pm-site-header.pm-header-promark.pm-header-shrunk .pm-brand-center .pm-brand-logo-light.pm-brand-logo-square {
    display: none;
  }

  #pm-site-header.pm-header-promark.pm-header-scrolled .pm-brand-center .pm-brand-logo-dark.pm-brand-logo-square,
  #pm-site-header.pm-header-promark.pm-header-shrunk .pm-brand-center .pm-brand-logo-dark.pm-brand-logo-square {
    display: inline-flex;
  }

  #pm-site-header.pm-header-promark .pm-brand-center .pm-brand-logo-square img {
    width: auto !important;
    height: auto !important;
    max-height: 52px;
    max-width: 52px;
  }

  #pm-site-header.pm-header-promark .pm-nav {
    position: fixed;
    inset: 0 auto 0 0;
    width: min(360px, calc(100vw - 28px));
    max-width: min(360px, calc(100vw - 28px));
    margin: 0;
    padding: 24px 22px 24px;
    background: var(--pm-ui-panel) !important;
    border-right: 1px solid var(--pm-ui-panel-border);
    transform: translateX(-105%);
    opacity: 1;
    visibility: visible;
    transition: transform 0.28s ease;
    z-index: 1500;
  }

  body.admin-bar #pm-site-header.pm-header-promark .pm-nav {
    top: var(--pm-admin-offset-current, var(--pm-admin-offset-mobile));
    height: calc(100dvh - var(--pm-admin-offset-current, var(--pm-admin-offset-mobile)));
  }

  #pm-site-header.pm-header-promark .pm-nav.is-open {
    transform: translateX(0);
  }

  body.pm-nav-open::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 1490;
    background: rgba(4, 10, 13, 0.62);
  }

  #pm-site-header.pm-header-promark .pm-mobile-nav-top {
    margin-bottom: 24px;
    padding-right: 56px;
  }

  #pm-site-header.pm-header-promark .pm-brand-mobile .pm-brand-logo img {
    max-width: 72px !important;
    max-height: 72px;
  }

  #pm-site-header.pm-header-promark .pm-menu > li {
    margin: 0;
  }

  #pm-site-header.pm-header-promark .pm-menu > li:not(:last-child) {
    margin-bottom: 8px;
  }

  #pm-site-header.pm-header-promark .pm-menu > li > a {
    padding: 8px 34px 8px 0;
    font-size: 34px !important;
    line-height: 1.08 !important;
    font-weight: 600 !important;
    letter-spacing: -0.01em;
    text-transform: none !important;
    color: rgba(247, 245, 236, 0.98);
  }

  #pm-site-header.pm-header-promark .pm-submenu-toggle {
    top: 16px;
  }

  #pm-site-header.pm-header-promark .pm-menu > li.current-menu-item > a,
  #pm-site-header.pm-header-promark .pm-menu > li.current_page_item > a {
    color: var(--pm-ui-gold);
  }

  #pm-site-header.pm-header-promark .pm-menu .sub-menu a {
    font-size: 18px !important;
    font-weight: 400 !important;
    letter-spacing: 0;
  }

  .pm-mobile-nav-actions {
    display: grid;
  }

  .pm-mobile-nav-contact {
    display: grid;
  }

  body.pm-nav-open #pm-site-header.pm-header-promark .pm-nav-toggle {
    position: fixed;
    top: 18px;
    right: 18px;
    z-index: 1510;
    width: 36px;
    height: 36px;
    background: transparent !important;
    border: 0 !important;
  }

  body.admin-bar.pm-nav-open #pm-site-header.pm-header-promark .pm-nav-toggle {
    top: calc(var(--pm-admin-offset-current, var(--pm-admin-offset-mobile)) + 10px);
  }
}

@media (max-width: 600px) {
  body.pm-front-page .pm-hero-promark .pm-hero-inner h1 {
    font-size: clamp(36px, 12.4vw, 42px) !important;
    line-height: 1.02 !important;
  }

  #pm-site-header.pm-header-promark .pm-menu > li > a {
    font-size: 30px !important;
  }

  .pm-mobile-nav-actions .pm-btn {
    min-height: 48px;
    font-size: 13px !important;
  }
}

/* Final plan pass: unified header/menu + typography + testimonials */
:root {
  --pm-site-evergreen: #0f5b43;
  --pm-site-forest: #183128;
  --pm-site-stone: #f3eee4;
  --pm-site-clay: #c96533;
  --pm-site-olive: #7c8b72;
  --pm-header-top-desktop: 136px;
  --pm-header-top-scrolled: 96px;
  --pm-header-top-mobile: 88px;
  --pm-logo-desktop: 82px;
  --pm-logo-desktop-scrolled: 64px;
  --pm-logo-tablet: 56px;
  --pm-logo-mobile-closed: 52px;
  --pm-logo-mobile-open: 72px;
}

html {
  margin-top: 0 !important;
}

body,
body.admin-bar {
  margin-top: 0 !important;
  padding-top: 0 !important;
  background: var(--pm-site-stone);
  color: var(--pm-site-forest);
}

#wpadminbar {
  border-top: 0 !important;
  box-shadow: none !important;
}

p,
li,
input,
textarea,
label {
  font-family: var(--pm-font-main, "Manrope"), sans-serif !important;
  font-size: 17px;
  line-height: 1.65;
}

h1,
h2,
h3,
h4,
h5,
h6,
.pm-section-title,
.pm-page-hero-title {
  font-family: var(--pm-font-headings, "Cormorant Garamond"), serif !important;
  color: var(--pm-site-forest);
}

.pm-section-title {
  font-size: clamp(30px, 3.8vw, 46px);
  line-height: 1.04;
  max-width: 20ch;
}

body .pm-btn.pm-btn,
body .pm-btn.pm-btn-hero,
body .pm-btn.pm-header-cta {
  min-height: 54px;
  border-radius: 14px !important;
  padding: 0 24px;
  font-family: var(--pm-font-main, "Manrope"), sans-serif !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  letter-spacing: 0.01em !important;
  text-transform: none !important;
}

body .pm-btn.pm-btn-outline {
  border-width: 1.5px;
}

body.pm-front-page .pm-hero-promark .pm-hero-inner h1 {
  font-size: clamp(42px, 6vw, 76px) !important;
  line-height: 0.96 !important;
}

body.pm-front-page .pm-hero-benefits {
  background:
    linear-gradient(140deg, rgba(14, 50, 39, 0.94) 0%, rgba(16, 79, 60, 0.87) 100%),
    url("../images/landscaping/landscape-03-xl.webp") center center / cover no-repeat !important;
}

body.pm-front-page .pm-newsletter {
  background:
    linear-gradient(140deg, rgba(10, 28, 24, 0.92) 0%, rgba(16, 48, 39, 0.9) 100%),
    url("../images/landscaping/landscape-11-xl.webp") center center / cover no-repeat !important;
}

/* Header states */
#pm-site-header.pm-header-promark {
  min-height: var(--pm-header-top-desktop) !important;
  border-top: 0 !important;
  border-bottom: 1px solid rgba(243, 238, 228, 0.24) !important;
  box-shadow: none !important;
}

body.admin-bar #pm-site-header.pm-header-promark {
  top: var(--pm-admin-offset-current, 0px) !important;
}

#pm-site-header.pm-header-promark .pm-header-inner {
  width: min(1560px, 92vw) !important;
  min-height: var(--pm-header-top-desktop) !important;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

#pm-site-header.pm-header-promark .pm-brand-center {
  min-height: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

#pm-site-header.pm-header-promark .pm-brand-center .pm-brand-logo-horizontal {
  display: inline-flex !important;
}

#pm-site-header.pm-header-promark .pm-brand-center .pm-brand-logo-square {
  display: none !important;
}

#pm-site-header.pm-header-promark .pm-brand-center .pm-brand-logo-horizontal img {
  width: auto !important;
  height: auto !important;
  max-height: var(--pm-logo-desktop) !important;
  max-width: min(430px, 30vw);
  object-fit: contain !important;
}

#pm-site-header.pm-header-promark .pm-brand-center .pm-brand-logo-light.pm-brand-logo-horizontal {
  display: inline-flex !important;
}

#pm-site-header.pm-header-promark .pm-brand-center .pm-brand-logo-dark.pm-brand-logo-horizontal {
  display: none !important;
}

#pm-site-header.pm-header-promark.pm-header-scrolled,
#pm-site-header.pm-header-promark.pm-header-shrunk {
  min-height: var(--pm-header-top-scrolled) !important;
  background: rgba(243, 238, 228, 0.98) !important;
  border-bottom: 1px solid rgba(24, 49, 40, 0.15) !important;
  box-shadow: 0 10px 22px rgba(12, 32, 26, 0.1) !important;
}

#pm-site-header.pm-header-promark.pm-header-scrolled .pm-header-inner,
#pm-site-header.pm-header-promark.pm-header-shrunk .pm-header-inner {
  min-height: var(--pm-header-top-scrolled) !important;
}

#pm-site-header.pm-header-promark.pm-header-scrolled .pm-brand-center .pm-brand-logo-horizontal img,
#pm-site-header.pm-header-promark.pm-header-shrunk .pm-brand-center .pm-brand-logo-horizontal img {
  max-height: var(--pm-logo-desktop-scrolled) !important;
}

#pm-site-header.pm-header-promark.pm-header-scrolled .pm-brand-center .pm-brand-logo-light.pm-brand-logo-horizontal,
#pm-site-header.pm-header-promark.pm-header-shrunk .pm-brand-center .pm-brand-logo-light.pm-brand-logo-horizontal {
  display: none !important;
}

#pm-site-header.pm-header-promark.pm-header-scrolled .pm-brand-center .pm-brand-logo-dark.pm-brand-logo-horizontal,
#pm-site-header.pm-header-promark.pm-header-shrunk .pm-brand-center .pm-brand-logo-dark.pm-brand-logo-horizontal {
  display: inline-flex !important;
}

#pm-site-header.pm-header-promark .pm-menu > li > a,
#pm-site-header.pm-header-promark .pm-tool {
  font-family: var(--pm-font-main, "Manrope"), sans-serif !important;
}

#pm-site-header.pm-header-promark .pm-menu > li > a {
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

#pm-site-header.pm-header-promark .pm-header-cta {
  background: var(--pm-site-evergreen) !important;
}

.pm-mobile-nav-tools,
.pm-mobile-nav-search,
.pm-header-search {
  display: none !important;
}

body.pm-nav-open {
  overflow: hidden !important;
}

/* Mobile header + off-canvas panel */
@media (max-width: 1080px) {
  #pm-site-header.pm-header-promark,
  #pm-site-header.pm-header-promark.pm-header-scrolled,
  #pm-site-header.pm-header-promark.pm-header-shrunk {
    min-height: var(--pm-header-top-mobile) !important;
  }

  #pm-site-header.pm-header-promark .pm-header-inner {
    min-height: var(--pm-header-top-mobile) !important;
    width: min(1220px, 92vw) !important;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
  }

  #pm-site-header.pm-header-promark .pm-header-left {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  #pm-site-header.pm-header-promark .pm-header-right {
    display: none !important;
  }

  #pm-site-header.pm-header-promark .pm-nav-toggle {
    width: 38px;
    height: 38px;
    border: 0 !important;
    background: transparent !important;
  }

  #pm-site-header.pm-header-promark .pm-nav-toggle span {
    width: 24px;
    height: 2px;
    background: rgba(247, 244, 236, 0.95) !important;
  }

  #pm-site-header.pm-header-promark.pm-header-scrolled .pm-nav-toggle span,
  #pm-site-header.pm-header-promark.pm-header-shrunk .pm-nav-toggle span {
    background: rgba(24, 49, 40, 0.95) !important;
  }

  #pm-site-header.pm-header-promark .pm-brand-center {
    min-height: var(--pm-header-top-mobile) !important;
  }

  #pm-site-header.pm-header-promark .pm-brand-center .pm-brand-logo-horizontal {
    display: inline-flex !important;
  }

  #pm-site-header.pm-header-promark .pm-brand-center .pm-brand-logo-square {
    display: none !important;
  }

  #pm-site-header.pm-header-promark .pm-brand-center .pm-brand-logo-light.pm-brand-logo-horizontal {
    display: inline-flex !important;
  }

  #pm-site-header.pm-header-promark .pm-brand-center .pm-brand-logo-dark.pm-brand-logo-horizontal {
    display: none !important;
  }

  #pm-site-header.pm-header-promark.pm-header-scrolled .pm-brand-center .pm-brand-logo-light.pm-brand-logo-horizontal,
  #pm-site-header.pm-header-promark.pm-header-shrunk .pm-brand-center .pm-brand-logo-light.pm-brand-logo-horizontal {
    display: none !important;
  }

  #pm-site-header.pm-header-promark.pm-header-scrolled .pm-brand-center .pm-brand-logo-dark.pm-brand-logo-horizontal,
  #pm-site-header.pm-header-promark.pm-header-shrunk .pm-brand-center .pm-brand-logo-dark.pm-brand-logo-horizontal {
    display: inline-flex !important;
  }

  #pm-site-header.pm-header-promark .pm-brand-center .pm-brand-logo-horizontal img {
    width: auto !important;
    height: auto !important;
    max-height: var(--pm-logo-tablet) !important;
    max-width: min(300px, 62vw);
    object-fit: contain !important;
  }

  #pm-site-header.pm-header-promark .pm-nav {
    position: fixed !important;
    left: 14px;
    top: 0;
    height: 100dvh;
    max-height: 100dvh;
    width: min(360px, calc(100vw - 28px)) !important;
    max-width: min(360px, calc(100vw - 28px)) !important;
    margin: 0;
    padding: 22px 18px 24px !important;
    background: #0f1a23 !important;
    border-right: 1px solid rgba(246, 244, 235, 0.2);
    transform: translateX(calc(-100% - 14px));
    opacity: 1;
    visibility: visible;
    overflow-y: auto;
    transition: transform 0.24s ease;
    z-index: 1500;
  }

  body.admin-bar #pm-site-header.pm-header-promark .pm-nav {
    top: var(--pm-admin-offset-current, 0px) !important;
    height: calc(100dvh - var(--pm-admin-offset-current, 0px));
  }

  #pm-site-header.pm-header-promark .pm-nav.is-open {
    transform: translateX(0);
  }

  body.pm-nav-open::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 1100;
    background: rgba(6, 12, 17, 0.62);
  }

  #pm-site-header.pm-header-promark .pm-mobile-nav-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 24px;
    padding-right: 0;
  }

  #pm-site-header.pm-header-promark .pm-brand-mobile .pm-brand-logo-light {
    display: inline-flex !important;
  }

  #pm-site-header.pm-header-promark .pm-brand-mobile .pm-brand-logo-dark {
    display: none !important;
  }

  #pm-site-header.pm-header-promark .pm-brand-mobile .pm-brand-logo img {
    width: auto !important;
    height: auto !important;
    max-height: var(--pm-logo-mobile-open) !important;
    max-width: var(--pm-logo-mobile-open) !important;
  }

  #pm-site-header.pm-header-promark .pm-mobile-nav-close {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    border: 0;
    border-radius: 0;
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
  }

  #pm-site-header.pm-header-promark .pm-mobile-nav-close span {
    position: absolute;
    width: 22px;
    height: 2px;
    border-radius: 2px;
    background: rgba(247, 245, 236, 0.95);
  }

  #pm-site-header.pm-header-promark .pm-mobile-nav-close span:first-child {
    transform: rotate(45deg);
  }

  #pm-site-header.pm-header-promark .pm-mobile-nav-close span:last-child {
    transform: rotate(-45deg);
  }

  #pm-site-header.pm-header-promark .pm-menu > li {
    margin: 0;
  }

  #pm-site-header.pm-header-promark .pm-menu > li:not(:last-child) {
    margin-bottom: 8px;
  }

  #pm-site-header.pm-header-promark .pm-menu > li > a {
    display: block;
    padding: 8px 34px 8px 0;
    color: rgba(247, 245, 236, 0.98) !important;
    font-family: var(--pm-font-main, "Manrope"), sans-serif !important;
    font-size: 40px !important;
    line-height: 1.08 !important;
    font-weight: 600 !important;
    letter-spacing: -0.01em;
    text-transform: none !important;
  }

  #pm-site-header.pm-header-promark .pm-menu > li.current-menu-item > a,
  #pm-site-header.pm-header-promark .pm-menu > li.current_page_item > a {
    color: #a98b4d !important;
  }

  #pm-site-header.pm-header-promark .pm-menu .sub-menu {
    margin-top: 8px;
    padding: 4px 0 2px 14px;
    border-left: 1px solid rgba(216, 205, 183, 0.35);
  }

  #pm-site-header.pm-header-promark .pm-menu .sub-menu a {
    font-size: 18px !important;
    font-weight: 500 !important;
    letter-spacing: 0;
    color: rgba(223, 220, 206, 0.88) !important;
  }

  #pm-site-header.pm-header-promark .pm-submenu-toggle {
    top: 14px;
  }

  .pm-mobile-nav-actions {
    display: grid !important;
    gap: 10px;
    margin-top: 26px;
  }

  .pm-mobile-nav-actions .pm-btn {
    width: 100%;
    min-height: 50px;
    border-radius: 12px !important;
    font-size: 14px !important;
  }

  .pm-btn-mobile-primary {
    background: var(--pm-site-evergreen) !important;
    color: #ffffff !important;
  }

  .pm-btn-mobile-secondary {
    background: transparent !important;
    color: rgba(246, 244, 235, 0.98) !important;
    border: 1px solid rgba(246, 244, 235, 0.45);
  }

  .pm-mobile-nav-contact {
    display: grid !important;
    gap: 10px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(246, 244, 235, 0.22);
  }

  .pm-mobile-contact-item {
    margin: 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(233, 230, 219, 0.9);
    font-size: 14px;
    line-height: 1.45;
  }

  .pm-mobile-contact-item i {
    margin-top: 2px;
    color: #a98b4d;
  }

  .pm-mobile-contact-item a,
  .pm-mobile-contact-item span {
    color: inherit;
  }

  body.pm-nav-open #pm-site-header.pm-header-promark .pm-nav-toggle {
    opacity: 0;
    pointer-events: none;
  }

  body.pm-nav-open #pm-site-header.pm-header-promark .pm-nav-toggle span {
    background: rgba(247, 245, 236, 0.98) !important;
  }

  body.admin-bar.pm-nav-open #pm-site-header.pm-header-promark .pm-nav-toggle {
    top: auto;
  }
}

@media (max-width: 782px) {
  body.admin-bar #pm-site-header.pm-header-promark {
    top: var(--pm-admin-offset-current, 0px) !important;
  }
}

@media (max-width: 600px) {
  body.pm-front-page .pm-hero-promark .pm-hero-inner h1 {
    font-size: clamp(36px, 12.4vw, 42px) !important;
    line-height: 1.02 !important;
  }

  #pm-site-header.pm-header-promark .pm-menu > li > a {
    font-size: 34px !important;
  }

  #pm-site-header.pm-header-promark .pm-brand-center .pm-brand-logo-horizontal img {
    max-height: var(--pm-logo-mobile-closed) !important;
    max-width: min(260px, 66vw);
  }

  .pm-mobile-nav-actions .pm-btn {
    min-height: 50px;
  }
}

/* Home testimonials */
.pm-testimonial {
  background: linear-gradient(180deg, rgba(243, 238, 228, 0.68) 0%, rgba(243, 238, 228, 1) 100%);
}

.pm-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.pm-testimonial-card {
  background: #ffffff;
  border: 1px solid rgba(24, 49, 40, 0.12);
  border-radius: 18px;
  padding: 24px 24px 22px;
  box-shadow: 0 14px 30px rgba(16, 33, 27, 0.08);
}

.pm-testimonial-stars {
  margin: 0 0 12px;
  color: #d08d1f;
  font-size: 20px;
  letter-spacing: 0.08em;
}

.pm-testimonial-card blockquote {
  margin: 0 0 16px;
  color: rgba(24, 49, 40, 0.95);
  font-family: var(--pm-font-main, "Manrope"), sans-serif !important;
  font-size: 18px;
  line-height: 1.55;
}

.pm-testimonial-author {
  margin: 0;
  color: var(--pm-site-forest);
  font-family: var(--pm-font-main, "Manrope"), sans-serif !important;
  font-size: 16px;
  font-weight: 700;
}

.pm-testimonial-role {
  margin: 4px 0 0;
  color: rgba(24, 49, 40, 0.72);
  font-family: var(--pm-font-main, "Manrope"), sans-serif !important;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

@media (max-width: 1100px) {
  .pm-testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 740px) {
  .pm-testimonial-grid {
    grid-template-columns: 1fr;
  }

  .pm-testimonial-card {
    border-radius: 16px;
    padding: 22px 20px;
  }

  .pm-testimonial-card blockquote {
    font-size: 17px;
  }
}

/* Unified mobile menu + admin-bar offset system */
:root {
  --pm-admin-offset-current: 0px;
  --pm-mobile-vh: 100dvh;
}

html {
  margin-top: 0 !important;
}

body.admin-bar {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

html,
body {
  overflow-x: clip;
}

#pm-site-header.pm-header-promark {
  top: var(--pm-admin-offset-current, 0px) !important;
}

body.pm-front-page .pm-hero-benefits {
  background:
    linear-gradient(140deg, rgba(14, 50, 39, 0.94) 0%, rgba(16, 79, 60, 0.87) 100%),
    url("../images/landscaping/landscape-03-xl.webp") center center / cover no-repeat !important;
}

body.pm-front-page .pm-newsletter {
  background:
    linear-gradient(140deg, rgba(10, 28, 24, 0.92) 0%, rgba(16, 48, 39, 0.9) 100%),
    url("../images/landscaping/landscape-11-xl.webp") center center / cover no-repeat !important;
}

@media (max-width: 1080px) {
  #pm-site-header.pm-header-promark,
  #pm-site-header.pm-header-promark.pm-header-scrolled,
  #pm-site-header.pm-header-promark.pm-header-shrunk {
    top: var(--pm-admin-offset-current, 0px) !important;
  }

  #pm-site-header.pm-header-promark .pm-header-left {
    position: static !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
  }

  #pm-site-header.pm-header-promark .pm-nav-toggle {
    position: absolute !important;
    left: 0 !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
  }

  #pm-site-header.pm-header-promark .pm-nav {
    position: fixed !important;
    inset: var(--pm-admin-offset-current, 0px) 0 0 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100vw !important;
    max-width: 100vw !important;
    height: calc(var(--pm-mobile-vh, 100dvh) - var(--pm-admin-offset-current, 0px)) !important;
    max-height: calc(var(--pm-mobile-vh, 100dvh) - var(--pm-admin-offset-current, 0px)) !important;
    margin: 0 !important;
    padding: calc(14px + env(safe-area-inset-top, 0px)) 24px calc(28px + env(safe-area-inset-bottom, 0px)) !important;
    border: 0 !important;
    border-left: 0 !important;
    border-right: 0 !important;
    box-shadow: none !important;
    background: #081522 !important;
    transform: translate3d(-100%, 0, 0) !important;
    transition: transform 0.24s ease !important;
    opacity: 1 !important;
    visibility: visible !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    overscroll-behavior: contain;
    z-index: 1510 !important;
  }

  #pm-site-header.pm-header-promark .pm-nav.is-open {
    transform: translate3d(0, 0, 0) !important;
  }

  body.pm-nav-open #pm-site-header.pm-header-promark {
    z-index: 1600 !important;
  }

  body.pm-nav-open::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 1590 !important;
    background: rgba(5, 12, 18, 0.58);
  }

  #pm-site-header.pm-header-promark .pm-mobile-nav-top {
    position: sticky;
    top: 0;
    z-index: 3;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin: 0 0 18px;
    padding: 2px 0 16px;
    background: #081522;
  }

  #pm-site-header.pm-header-promark .pm-brand-mobile .pm-brand-logo img {
    width: auto !important;
    height: auto !important;
    max-height: 72px !important;
    max-width: 72px !important;
    object-fit: contain !important;
  }

  #pm-site-header.pm-header-promark .pm-mobile-nav-close {
    width: 44px !important;
    height: 44px !important;
    flex: 0 0 44px !important;
    margin-right: 2px;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }

  #pm-site-header.pm-header-promark .pm-mobile-nav-close span {
    width: 24px !important;
    height: 2px !important;
  }

  #pm-site-header.pm-header-promark .pm-menu {
    padding-top: 2px;
  }

  #pm-site-header.pm-header-promark .pm-menu > li > a {
    padding: 8px 42px 8px 0 !important;
    font-size: clamp(42px, 10vw, 52px) !important;
    line-height: 1.06 !important;
  }

  #pm-site-header.pm-header-promark .pm-submenu-toggle {
    right: 0 !important;
    top: 12px !important;
  }

  .pm-mobile-nav-actions {
    margin-top: 24px !important;
    gap: 12px !important;
  }

  .pm-mobile-nav-actions .pm-btn {
    min-height: 52px !important;
    border-radius: 12px !important;
  }

  .pm-mobile-nav-contact {
    margin-top: 18px !important;
    padding-top: 16px !important;
  }

  body.pm-nav-open #pm-site-header.pm-header-promark .pm-nav-toggle {
    opacity: 0 !important;
    pointer-events: none !important;
  }
}

@media (max-width: 600px) {
  #pm-site-header.pm-header-promark .pm-header-inner {
    width: calc(100vw - 32px) !important;
  }

  #pm-site-header.pm-header-promark .pm-brand-center .pm-brand-logo-horizontal img {
    max-height: 56px !important;
    max-width: min(272px, 72vw) !important;
  }
}

/* ProMark readability + layout refinements */
body.pm-front-page .pm-hero-promark .pm-overlay {
  background: linear-gradient(
    180deg,
    rgba(5, 14, 16, 0.76) 0%,
    rgba(7, 16, 18, 0.58) 52%,
    rgba(5, 14, 16, 0.78) 100%
  ) !important;
}

.pm-page-hero .pm-overlay {
  background: linear-gradient(
    180deg,
    rgba(6, 14, 17, 0.74) 0%,
    rgba(8, 17, 20, 0.62) 50%,
    rgba(6, 14, 17, 0.8) 100%
  ) !important;
}

.pm-page-services .pm-newsletter {
  padding: clamp(72px, 8vw, 110px) 0 !important;
}

.pm-page-services .pm-newsletter .pm-section-title {
  font-size: clamp(2.1rem, 4.8vw, 4rem) !important;
  line-height: 1.06 !important;
  margin: 0 0 18px !important;
}

.pm-page-services .pm-newsletter-inner p {
  font-size: clamp(1rem, 1.6vw, 1.5rem) !important;
  line-height: 1.45 !important;
  margin: 0 auto 28px !important;
  max-width: 920px;
}

.pm-page-services .pm-newsletter .pm-btn {
  margin-top: 8px !important;
}

@media (max-width: 1080px) {
  #pm-site-header.pm-header-promark .pm-brand-mobile {
    width: min(220px, 58vw) !important;
    max-width: 220px !important;
  }

  #pm-site-header.pm-header-promark .pm-brand-mobile .pm-brand-logo img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    max-height: 86px !important;
    object-fit: contain !important;
  }
}

@media (max-width: 600px) {
  #pm-site-header.pm-header-promark .pm-brand-mobile {
    width: min(196px, 60vw) !important;
    max-width: 196px !important;
  }

  #pm-site-header.pm-header-promark .pm-brand-mobile .pm-brand-logo img {
    max-height: 74px !important;
  }
}

/* Header gap + footer logo sizing final pass */
html,
body {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

body:not(.admin-bar) #pm-site-header.pm-header-promark {
  top: 0 !important;
}

body.admin-bar #pm-site-header.pm-header-promark {
  top: var(--pm-admin-offset-current, 32px) !important;
}

@media (max-width: 782px) {
  body.admin-bar #pm-site-header.pm-header-promark {
    top: var(--pm-admin-offset-current, 46px) !important;
  }
}

.pm-front-page .pm-hero-promark {
  margin-top: 0 !important;
}

.pm-footer-branding .pm-brand img {
  max-height: 130px !important;
}

/* Darker accent pass */
:root {
  --pm-accent: #a98b4d !important;
  --pm-site-gold-deep: #a98b4d;
}

#pm-site-header.pm-header-promark .pm-menu > li.current-menu-item > a,
#pm-site-header.pm-header-promark .pm-menu > li.current-menu-ancestor > a,
#pm-site-header.pm-header-promark .pm-menu > li > a:hover,
#pm-site-header.pm-header-promark .pm-menu .current_page_item > a,
#pm-site-header.pm-header-promark .pm-menu .current-menu-parent > a {
  color: var(--pm-site-gold-deep) !important;
}

.pm-header-promark .pm-menu .sub-menu .current-menu-item > a,
.pm-header-promark .pm-menu .sub-menu a:hover {
  color: var(--pm-site-gold-deep) !important;
}

.pm-benefit-item i,
.pm-footer h4,
.pm-footer-contact-list strong,
.pm-footer-menu a::before,
.pm-social-links a,
.pm-mobile-contact-item i,
.pm-meta-icon {
  color: var(--pm-site-gold-deep) !important;
}

.pm-meta-icon {
  background: var(--pm-site-gold-deep) !important;
  color: #fff7e8 !important;
}

.pm-page-hero-breadcrumbs,
.pm-page-hero-breadcrumbs a {
  color: rgba(224, 211, 182, 0.95) !important;
}

/* Home header fade/gap quick fix */
body.pm-front-page #pm-site-header.pm-header-promark:not(.pm-header-scrolled):not(.pm-header-shrunk),
body.home #pm-site-header.pm-header-promark:not(.pm-header-scrolled):not(.pm-header-shrunk) {
  background: linear-gradient(
    180deg,
    rgba(6, 16, 19, 0.72) 0%,
    rgba(6, 16, 19, 0.48) 55%,
    rgba(6, 16, 19, 0) 100%
  ) !important;
  border-bottom-color: transparent !important;
  box-shadow: none !important;
}

@media (max-width: 1080px) {
  body.pm-front-page #pm-site-header.pm-header-promark .pm-header-inner,
  body.home #pm-site-header.pm-header-promark .pm-header-inner {
    padding: 0 !important;
    align-items: center !important;
  }

  body.pm-front-page #pm-site-header.pm-header-promark .pm-header-left,
  body.home #pm-site-header.pm-header-promark .pm-header-left {
    top: 50% !important;
    transform: translateY(-50%) !important;
  }

  body.pm-front-page,
  body.home {
    background-color: #081116 !important;
  }

  body.pm-front-page #pm-site-header.pm-header-promark:not(.pm-header-scrolled):not(.pm-header-shrunk),
  body.home #pm-site-header.pm-header-promark:not(.pm-header-scrolled):not(.pm-header-shrunk) {
    background: linear-gradient(
      180deg,
      rgba(6, 16, 19, 0.82) 0%,
      rgba(6, 16, 19, 0.58) 56%,
      rgba(6, 16, 19, 0) 100%
    ) !important;
  }
}

/* Form hardening UI + hero subtitle balance */
.pm-form-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

body.pm-front-page .pm-hero-description {
  max-width: 56ch !important;
  margin-top: 18px !important;
  font-size: clamp(14px, 1.1vw, 18px) !important;
  line-height: 1.45 !important;
}

@media (max-width: 600px) {
  body.pm-front-page .pm-hero-description {
    font-size: clamp(14px, 4.1vw, 16px) !important;
    line-height: 1.42 !important;
  }
}


/* Mobile menu hard lock fix (2026-03-28) */
@media (max-width: 1080px) {
  html.pm-nav-open,
  body.pm-nav-open {
    overflow: hidden !important;
    overscroll-behavior: contain !important;
  }

  #pm-site-header.pm-header-promark .pm-nav {
    position: fixed !important;
    inset: 0 !important;
    width: 100vw !important;
    max-width: 100vw !important;
    height: 100dvh !important;
    max-height: 100dvh !important;
    margin: 0 !important;
    padding: calc(var(--pm-admin-offset-current, 0px) + 20px) 20px calc(20px + env(safe-area-inset-bottom, 0px)) !important;
    border: 0 !important;
    border-right: 0 !important;
    box-shadow: none !important;
    background: #081522 !important;
    transform: translate3d(-104%, 0, 0) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
    z-index: 2001 !important;
  }

  #pm-site-header.pm-header-promark .pm-nav.is-open {
    transform: translate3d(0, 0, 0) !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  body.pm-nav-open::before {
    content: none !important;
    display: none !important;
  }

  #pm-site-header.pm-header-promark .pm-mobile-nav-top {
    position: relative !important;
    top: auto !important;
    z-index: 3;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 12px !important;
    margin: 0 0 18px !important;
    padding: 0 0 12px !important;
    border-bottom: 1px solid rgba(236, 232, 221, 0.18);
    background: transparent !important;
  }

  #pm-site-header.pm-header-promark .pm-brand-mobile {
    display: inline-flex !important;
    width: min(268px, 72vw) !important;
    max-width: 268px !important;
  }

  #pm-site-header.pm-header-promark .pm-brand-mobile .pm-brand-logo-light {
    display: inline-flex !important;
  }

  #pm-site-header.pm-header-promark .pm-brand-mobile .pm-brand-logo-dark {
    display: none !important;
  }

  #pm-site-header.pm-header-promark .pm-brand-mobile .pm-brand-logo img {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    max-height: 84px !important;
    object-fit: contain !important;
  }

  #pm-site-header.pm-header-promark .pm-mobile-nav-close {
    display: inline-flex !important;
    width: 42px !important;
    height: 42px !important;
    flex: 0 0 42px !important;
    align-items: center !important;
    justify-content: center !important;
    border: 0 !important;
    background: transparent !important;
    margin: 0 !important;
    padding: 0 !important;
    cursor: pointer;
  }

  #pm-site-header.pm-header-promark .pm-mobile-nav-close span {
    width: 24px !important;
    height: 2px !important;
    background: rgba(247, 245, 236, 0.95) !important;
  }

  #pm-site-header.pm-header-promark .pm-menu {
    margin: 0 !important;
    padding: 0 !important;
  }

  #pm-site-header.pm-header-promark .pm-menu > li > a {
    font-size: clamp(28px, 9vw, 52px) !important;
    line-height: 1.06 !important;
  }

  body.pm-nav-open #pm-site-header.pm-header-promark .pm-nav-toggle {
    opacity: 0 !important;
    pointer-events: none !important;
  }
}

@media (max-width: 600px) {
  #pm-site-header.pm-header-promark .pm-nav {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }

  #pm-site-header.pm-header-promark .pm-brand-mobile {
    width: min(228px, 74vw) !important;
    max-width: 228px !important;
  }

  #pm-site-header.pm-header-promark .pm-brand-mobile .pm-brand-logo img {
    max-height: 72px !important;
  }
}

/* Mobile nav anchor fix: prevent transformed parent from offsetting fixed panel */
@media (max-width: 1080px) {
  body.pm-nav-open::before {
    content: none !important;
    display: none !important;
    pointer-events: none !important;
  }

  #pm-site-header.pm-header-promark .pm-header-left,
  body.pm-front-page #pm-site-header.pm-header-promark .pm-header-left,
  body.home #pm-site-header.pm-header-promark .pm-header-left {
    position: static !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
  }

  #pm-site-header.pm-header-promark .pm-nav-toggle {
    position: absolute !important;
    left: 0 !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
  }
}

/* Mobile readability pass for homepage About section */
@media (max-width: 720px) {
  .pm-about {
    background:
      linear-gradient(180deg, rgba(7, 17, 23, 0.98) 0%, rgba(8, 20, 27, 0.98) 100%) !important;
  }

  .pm-about .pm-about-content .pm-section-title {
    color: #f2eee2 !important;
  }

  .pm-about .pm-about-content > p:not(.pm-eyebrow) {
    color: rgba(229, 235, 227, 0.92) !important;
  }

  .pm-about .pm-feature-list li {
    color: rgba(223, 231, 223, 0.9) !important;
  }

  .pm-about .pm-feature-list li::before {
    background: #0f8b68 !important;
  }

  .pm-about .pm-stat-item {
    background: rgba(255, 248, 230, 0.08) !important;
    border-color: rgba(169, 139, 77, 0.56) !important;
    box-shadow: none !important;
  }

  .pm-about .pm-stat-item strong {
    color: #f4efe1 !important;
  }

  .pm-about .pm-stat-item span,
  .pm-about .pm-stat-item p,
  .pm-about .pm-stat-item {
    color: rgba(228, 233, 224, 0.88) !important;
  }
}
