/* =========================================================
   Ivan's Landscape & Construction — site stylesheet
   Foundation tokens for site-wide layout and brand colors
   ========================================================= */

/* --- Color palette (Ivan's actual usage) --- */
:root {
  /* Brand greens */
  --color-accent: #124a2f;
  --color-accent-bright: #61ce70;
  --color-accent-hover: #0f3d27;
  --color-accent-border: rgba(18, 74, 47, 0.1);

  /* Warm accents: CTAs/buttons #ff960b; card/section titles #f5910d (both in LiteSpeed) */
  --color-accent-orange: #ff960b;
  --color-accent-orange-hover: #e8870a;
  --color-accent-orange-title: #f5910d;
  --color-hero-panel: rgba(15, 14, 14, 0.7);

  /* Backgrounds */
  --color-bg-header-start: #231f20;
  --color-bg-header-end: #1a1415;
  --color-bg-bar: #111111;
  --color-bg-footer: #231f20;
  --color-bg-submenu: #1c1718;
  --color-bg-dark: #000000;
  --color-bg-light: #ffffff;
  --color-overlay: rgba(0, 0, 0, 0.6);

  /* Text */
  --color-text-light: #ffffff;
  --color-text-muted: #7a7a7a;
  --color-text-body: #54595f;

  /* Global brand tokens */
  --color-kit-primary: #6ec1e4;
  --color-kit-secondary: #54595f;
  --color-kit-text: #7a7a7a;
  --color-kit-accent: #61ce70;

  /* Typography */
  --font-heading: "Poppins", sans-serif;
  --font-body: "Poppins", sans-serif;
  --font-kit: "Roboto", sans-serif;

  /* Layout */
  --container-max: 1250px;
  --container-kit: 1140px;
  --border-radius: 2px;

  /* Sticky header clearance for in-page anchors (#Quote, #Estimate, sections) */
  --scroll-anchor-offset: 130px;
}

/* --- CSS reset / base --- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: var(--scroll-anchor-offset);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-text-body);
  background-color: var(--color-bg-light);
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 0.5em;
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

p {
  margin: 0 0 1em;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

/* --- Shared layout --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: 20px;
}

/* =========================================================
   site-header
   ========================================================= */
.site-header.dynamic-header {
  display: block;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
}

.site-header__bar,
.site-header-bar {
  width: 100%;
  background-image: linear-gradient(
    180deg,
    var(--color-bg-header-start) 29%,
    var(--color-bg-header-end) 89%
  );
  border-bottom: 1px solid var(--color-accent-border);
  padding: 10px 0 16px;
  box-sizing: border-box;
}

.site-header__inner {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.site-header__logo,
.site-header-logo-row {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.site-header__logo a {
  display: block;
  line-height: 0;
}

.site-header__logo-img {
  display: block;
  width: 125px;
  height: 90px;
  max-width: 100%;
  object-fit: contain;
}

.site-header__actions,
.site-header-action-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  flex: 1 1 auto;
  gap: 0;
}

.site-header__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
}

.site-header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  border-radius: var(--border-radius);
  white-space: nowrap;
  box-sizing: border-box;
  flex: 0 1 auto;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.site-header__cta--phone {
  color: #ffffff;
  background-color: transparent;
  border: none;
  padding: 0;
  margin-left: 40px;
  margin-right: 20px;
  transition: none;
}

.site-header__cta--phone:hover,
.site-header__cta--phone:focus,
.site-header__cta--phone:visited,
.site-header__cta--phone:active {
  color: #ffffff;
  background-color: transparent;
  border: none;
}

.site-header__cta--estimate {
  color: var(--color-text-light);
  background-color: #ff960b;
  border: 2px solid #ff960b;
  padding: 18px 40px;
}

.site-header__cta--estimate:hover,
.site-header__cta--estimate:focus {
  background-color: var(--color-accent-orange-hover);
  border-color: var(--color-accent-orange-hover);
}

/* --- Main menu (foundation) --- */
.main-menu,
.main-menu ul,
.main-menu li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-menu__toggle-input,
#menu-toggle-checkbox {
  display: none;
}

@media (min-width: 1025px) {
  .main-menu {
    display: flex;
    justify-content: center;
    position: relative;
  }

  .main-menu__toggle {
    display: none;
  }

  .main-menu__list {
    display: flex;
    flex-direction: row;
    justify-content: center;
  }

  .main-menu__list > .main-menu__item {
    position: relative;
  }

  .main-menu__list li a {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    color: var(--color-text-light);
    font-family: var(--font-heading);
    font-weight: 700;
    text-decoration: none;
  }

  .main-menu__list > .main-menu__item--has-children > a::after {
    content: "\25BE";
    margin-left: 8px;
    font-size: 14px;
    opacity: 0.8;
  }

  .main-menu__sublist .main-menu__item--has-children > a::after {
    content: "\25B8";
    margin-left: auto;
    padding-left: 15px;
    font-size: 14px;
    opacity: 0.8;
  }

  .main-menu__list .main-menu__sublist {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: max-content;
    min-width: 260px;
    max-width: none;
    background-color: var(--color-bg-submenu);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    z-index: 9999;
    padding: 10px 0;
  }

  .main-menu__list li:hover > .main-menu__sublist {
    display: block;
  }

  .main-menu__list .main-menu__sublist .main-menu__item {
    position: relative;
  }

  .main-menu__list .main-menu__sublist li a {
    white-space: nowrap;
    width: 100%;
    box-sizing: border-box;
    font-size: 14px;
    padding: 12.75px 17px; /* 15px 20px reduced 15% */
  }

  .main-menu__list .main-menu__sublist li a:hover {
    background-color: #333333;
  }

  .main-menu__list .main-menu__sublist .main-menu__sublist {
    top: -10px;
    left: 100%;
    margin-left: 1px;
    width: max-content;
    min-width: max-content;
  }
}

@media (max-width: 1024px) {
  .main-menu__toggle {
    display: block;
    position: relative;
    cursor: pointer;
    background: var(--color-bg-submenu);
    padding: 10px;
    width: 45px;
    height: 45px;
    border-radius: 4px;
    z-index: 1000001;
  }

  .main-menu__toggle-bar {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--color-text-light);
    margin: 5px auto;
    transition: 0.3s;
  }

  #menu-toggle-checkbox:checked + .main-menu__toggle {
    position: fixed;
    top: 20px;
    right: 20px;
  }

  #menu-toggle-checkbox:checked + .main-menu__toggle .main-menu__toggle-bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  #menu-toggle-checkbox:checked + .main-menu__toggle .main-menu__toggle-bar:nth-child(2) {
    opacity: 0;
  }

  #menu-toggle-checkbox:checked + .main-menu__toggle .main-menu__toggle-bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .main-menu__panel {
    display: none;
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background: var(--color-bg-submenu);
    z-index: 1000000;
    overflow-y: auto;
    padding-top: 80px;
  }

  #menu-toggle-checkbox:checked ~ .main-menu__panel {
    display: block;
  }

  .main-menu__list li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 25px;
    color: var(--color-text-light);
    font-family: var(--font-heading);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .main-menu__sublist {
    display: none;
    background: rgba(0, 0, 0, 0.2);
  }

  .main-menu__item.is-open > .main-menu__sublist {
    display: block;
  }

  .main-menu__item--has-children > a::after {
    content: "+";
    font-family: monospace;
    font-size: 26px;
    color: rgba(255, 255, 255, 0.4);
  }

  .main-menu__item.is-open > a::after {
    content: "−";
    color: var(--color-text-light);
  }
}

body.menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

/* Form / quote anchors — clear sticky header on every breakpoint */
.site-footer__quote-anchor,
.ppc-quote__form-anchor,
#Quote,
#Estimate {
  scroll-margin-top: var(--scroll-anchor-offset);
}

.site-footer__quote-anchor,
.ppc-quote__form-anchor {
  display: block;
  height: 0;
  overflow: hidden;
  pointer-events: none;
}

@media (max-width: 1024px) {
  :root {
    /* Full sticky header still present on tablet */
    --scroll-anchor-offset: 120px;
  }
}

/* --- Mobile sticky action bar --- */
@media (max-width: 767px) {
  :root {
    /* Pinned action-bar height (~60px) + breathing room */
    --scroll-anchor-offset: 76px;
  }

  /* Let the logo scroll away; only the CTA row pins (avoids sticky + fixed tear) */
  .site-header {
    position: relative;
    top: auto;
  }

  .site-header__logo-img {
    width: 112px; /* 140px − 20% */
    height: auto;
  }

  .site-header-action-row.is-pinned {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    background-color: var(--color-bg-bar);
    background-image: linear-gradient(
      180deg,
      var(--color-bg-header-start) 29%,
      var(--color-bg-header-end) 89%
    );
    border-bottom: 1px solid var(--color-accent-border);
    padding: 10px 15px;
    justify-content: flex-end;
    gap: 10px;
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }

  .site-header-bar.is-action-pinned {
    padding-bottom: var(--mobile-action-bar-height, 60px);
  }

  .site-header__cta {
    font-size: 12px;
    padding: 12px 16px;
    margin: 0;
  }

  .site-header__cta--phone {
    margin: 0;
  }
}

/* =========================================================
   site-footer
   ========================================================= */
.site-footer.dynamic-footer {
  display: block;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.site-footer {
  background-color: var(--color-bg-footer);
  color: var(--color-text-light);
}

.site-footer__shell {
  width: 100%;
  padding: 40px 0 0;
}

.site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.site-footer__column {
  flex: 1 1 200px;
}

.site-footer__logo img {
  max-width: 180px;
  height: auto;
}

.site-footer__intro {
  padding-top: 20px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}

.site-footer__heading {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--color-accent-orange);
}

.site-footer__column--nav .site-footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer__column--nav .site-footer__nav-list li {
  margin: 0;
}

.site-footer__contact-item,
.site-footer__hours {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}

.site-footer__contact-item a:hover {
  color: var(--color-accent-bright);
}

.site-footer__bottom {
  display: block;
  border-top: 1px solid var(--color-accent-border);
  padding: 20px;
  text-align: center;
}

.site-footer__copyright {
  font-size: 14px;
  color: var(--color-text-muted);
}

@media (max-width: 767px) {
  .site-footer__inner {
    flex-direction: column;
  }

  .site-footer__column {
    flex: 1 1 auto;
    width: 100%;
  }
}

/* =========================================================
   quote-form (footer + in-page estimate forms)
   ========================================================= */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.quote-form__hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.quote-form {
  width: 100%;
}

.quote-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.quote-form__field {
  display: block;
  margin: 0;
}

.quote-form__field--full {
  grid-column: 1 / -1;
}

.quote-form__input,
.quote-form__select,
.quote-form__textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--border-radius);
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--color-text-light);
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.4;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.quote-form__input::placeholder,
.quote-form__textarea::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.quote-form__input:focus,
.quote-form__select:focus,
.quote-form__textarea:focus {
  outline: none;
  border-color: var(--color-accent-bright);
  background-color: rgba(255, 255, 255, 0.12);
}

.quote-form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23ffffff' d='M1.41 0 6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.quote-form__select option {
  color: var(--color-text-body);
  background: var(--color-bg-light);
}

.quote-form__textarea {
  min-height: 96px;
  resize: vertical;
}

.quote-form__recaptcha-note {
  margin: 10px 0 0;
  font-size: 11px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.55);
}

.quote-form__recaptcha-note a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: underline;
}

.quote-form__recaptcha-note a:hover {
  color: var(--color-accent-bright);
}

.quote-form__submit {
  display: inline-block;
  width: 100%;
  margin-top: 14px;
  padding: 14px 20px;
  border: none;
  border-radius: var(--border-radius);
  background-color: var(--color-accent-orange);
  color: var(--color-text-light);
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.quote-form__submit:hover,
.quote-form__submit:focus {
  background-color: var(--color-accent-orange-hover);
}

.quote-form__submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

/* Contact page form (orange card) */
.contact-page .quote-form__input,
.contact-page .quote-form__select,
.contact-page .quote-form__textarea {
  background-color: #ffffff;
  border-color: transparent;
  border-radius: 0;
  color: #000000;
}

.contact-page .quote-form__input::placeholder,
.contact-page .quote-form__textarea::placeholder {
  color: rgba(0, 0, 0, 0.45);
}

.contact-page .quote-form__select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23000000' d='M1.41 0 6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E");
}

.contact-page .quote-form__select option {
  color: #000000;
  background: #ffffff;
}

.contact-page .quote-form__recaptcha-note {
  color: rgba(255, 255, 255, 0.95);
}

.contact-page .quote-form__recaptcha-note a {
  color: #ffffff;
}

.contact-page .quote-form__submit {
  width: auto;
  min-width: 180px;
  margin-top: 12px;
  padding: 15px 70px;
  border-radius: 0;
  background-color: #151009;
  color: #ffffff;
}

.contact-page .quote-form__submit:hover,
.contact-page .quote-form__submit:focus {
  background-color: #000000;
  color: #ffffff;
}

@media (max-width: 767px) {
  .quote-form__grid {
    grid-template-columns: 1fr;
  }

  .quote-form__field--half {
    grid-column: 1 / -1;
  }
}

/* =========================================================
   Contact Us page
   ========================================================= */
.contact-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40vh;
  overflow: hidden;
  color: var(--color-text-light);
}

.contact-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.contact-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

.contact-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #000000;
  opacity: 0.72;
}

.contact-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: center;
  box-sizing: border-box;
}

.contact-hero__title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 3.7rem;
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
}

.contact-page {
  background-color: #231f20;
  color: #ffffff;
  overflow: hidden;
}

.contact-page__inner {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 80px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 7em 20px;
  box-sizing: border-box;
}

.contact-page__info {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-page__eyebrow {
  margin: 0 0 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
}

.contact-page__heading {
  margin: 0 0 1rem;
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 2.5vw, 2.25rem);
  font-weight: 700;
  line-height: 1.3;
  color: #ffffff;
}

.contact-page__intro {
  margin: 0 0 1.75rem;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: #ffffff;
}

.contact-page__details {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-page__detail {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin: 0;
  padding: 15px;
  border-radius: 20px;
}

.contact-page__detail-icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--color-accent-orange);
  color: #ffffff;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.contact-page__detail:hover .contact-page__detail-icon,
.contact-page__detail:focus-within .contact-page__detail-icon {
  background-color: var(--color-accent-orange-hover);
}

.contact-page__detail-body {
  min-width: 0;
}

.contact-page__detail-title {
  margin: 0 0 5px;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-accent-orange);
}

.contact-page__detail-title a {
  color: inherit;
  text-decoration: none;
}

.contact-page__detail:hover .contact-page__detail-title,
.contact-page__detail:focus-within .contact-page__detail-title {
  color: #ffffff;
}

.contact-page__detail-text {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.5;
  color: #ffffff;
}

.contact-page__detail-text a {
  color: inherit;
  text-decoration: none;
}

.contact-page__detail-text a:hover,
.contact-page__detail-text a:focus {
  text-decoration: underline;
}

.contact-page__form-card {
  flex: 1 1 0;
  min-width: 0;
  padding: 3em;
  border-radius: 25px;
  background-color: var(--color-accent-orange);
  box-sizing: border-box;
}

.contact-page__map {
  margin: 0;
}

@media (max-width: 1024px) {
  .contact-page__inner {
    flex-direction: column;
    gap: 48px;
  }
}

@media (max-width: 767px) {
  .contact-hero__title {
    font-size: 3.1rem;
  }

  .contact-page__inner {
    padding: 4em 16px;
    gap: 32px;
  }

  .contact-page__eyebrow,
  .contact-page__heading,
  .contact-page__intro {
    text-align: center;
  }

  .contact-page__detail {
    gap: 10px;
  }

  .contact-page__form-card {
    padding: 2em 1em;
  }

  .contact-page .quote-form__submit {
    width: 100%;
    padding: 15px 24px;
  }
}

/* =========================================================
   About / Who We Are page
   Source: litespeed/css/38a5b02d54c48d2f2408f6b3cdec0e0c.css
   ========================================================= */
.about-page {
  position: relative;
  margin: 0 0 10px;
  padding: 120px 100px;
  box-sizing: border-box;
  background-color: #ffffff;
}

.about-page::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
  background-image: linear-gradient(180deg, #ff960b 0%, #ffffff 19%);
}

.about-page__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: stretch;
  gap: 0;
  width: 100%;
  box-sizing: border-box;
}

.about-page__media {
  flex: 1 1 0;
  min-width: 0;
  min-height: 280px;
  background-image: url("/_assets/img/2023/07/image_50802177.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.about-page__copy {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 0 0 0 40px;
  box-sizing: border-box;
}

.about-page__title {
  margin: 0;
  padding: 30px 0 0;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.75rem, 2.5vw, 2.25rem);
  line-height: 1.25;
  color: #111;
}

.about-page__text {
  margin-top: 1rem;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: #111;
}

.about-page__text p {
  margin: 0 0 1em;
}

.about-page__text p:last-child {
  margin-bottom: 0;
}

@media (max-width: 1024px) {
  .about-page__inner {
    flex-direction: column;
  }

  .about-page__media {
    width: 100%;
    flex: none;
    min-height: 0;
    padding: 150px 0;
  }

  .about-page__copy {
    width: 100%;
    flex: none;
    padding-left: 40px;
  }
}

@media (max-width: 767px) {
  .about-page {
    padding: 0 5px;
  }

  .about-page__media {
    margin-top: 10px;
  }

  .about-page__copy {
    padding-left: 10px;
  }

  .about-page__text {
    font-size: 16px;
  }
}

/* =========================================================
   FAQ toggle section
   ========================================================= */
.faq-section {
  background-color: #231f20;
  color: #fff;
  padding: 60px 15px;
  box-sizing: border-box;
}

.faq-section__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  box-sizing: border-box;
}

.faq-section__title {
  margin: 0 0 10px;
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.2;
  color: #fff;
  text-align: center;
}

.faq-toggle__item + .faq-toggle__item {
  margin-top: 0;
}

.faq-toggle__heading {
  margin: 0;
}

.faq-toggle__trigger {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 15px 0;
  border: none;
  background: none;
  color: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.3em;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s ease;
}

.faq-toggle__question {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
}

.faq-toggle__icon {
  flex: 0 0 auto;
  width: 1em;
  height: 1em;
  position: relative;
  color: inherit;
}

.faq-toggle__icon::before,
.faq-toggle__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.7em;
  height: 2px;
  background-color: currentColor;
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.faq-toggle__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-toggle__item.is-open .faq-toggle__trigger {
  color: #f49b27;
}

.faq-toggle__item.is-open .faq-toggle__icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
  opacity: 0;
}

.faq-toggle__panel {
  padding: 0 0 15px 1.7em;
  border: none;
}

.faq-toggle__answer {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4em;
  color: #fff;
}

.faq-toggle__answer p {
  margin: 0 0 0.75em;
}

.faq-toggle__answer p:last-child {
  margin-bottom: 0;
}

@media (max-width: 1024px) {
  .faq-section {
    padding-top: 40px;
    padding-bottom: 60px;
  }

  .faq-section__title {
    font-size: 1.8rem;
    line-height: 1.4em;
  }
}

@media (max-width: 767px) {
  .faq-section__title {
    font-size: 1.6rem;
    line-height: 1.3em;
    padding: 20px 0 30px;
    margin-bottom: 0;
  }
}

/* =========================================================
   page-hero / ppc-hero — Ivan's panel-over-image heroes
   ========================================================= */
.page-hero,
.ppc-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 540px;
  overflow: hidden;
  color: var(--color-text-light);
}

.page-hero__bg,
.ppc-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.page-hero__img,
.ppc-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

.page-hero__img,
.ppc-hero__img {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover;
  object-position: center;
}

.page-hero__bg::after,
.ppc-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.page-hero__inner,
.ppc-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-hero__panel,
.ppc-hero__panel {
  display: inline-flex;
  flex-direction: column;
  gap: 0;
  width: 70%;
  max-width: none;
  padding: 56px 40px;
  background-color: var(--color-hero-panel);
}

.page-hero__title-wrap,
.ppc-hero__title-wrap {
  margin: 0 0 1rem;
  padding-left: 32px;
  border-left: 4px solid var(--color-accent-orange);
}

.page-hero__promo,
.ppc-hero__promo {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.5rem 1rem;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text-light);
  background-color: var(--color-accent-orange);
  border-radius: var(--border-radius);
}

.page-hero__title,
.ppc-hero__title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-text-light);
}

.page-hero__subtitle,
.ppc-hero__subtitle {
  margin: 0 0 1.5rem;
  padding-left: 32px;
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: 400;
  line-height: 1.35;
  color: var(--color-text-light);
}

.page-hero__desc,
.ppc-hero__desc {
  max-width: 720px;
  margin: 0 0 1.5rem;
  padding-left: 32px;
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
}

.page-hero__actions,
.ppc-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  padding-left: 32px;
}

.page-hero__cta,
.ppc-hero__cta,
.page-hero__phone,
.ppc-hero__phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  border-radius: var(--border-radius);
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.page-hero__cta,
.ppc-hero__cta {
  padding: 16px 64px;
  color: var(--color-text-light);
  background-color: #ff960b;
  border: 2px solid #ff960b;
}

.page-hero__cta:hover,
.page-hero__cta:focus,
.ppc-hero__cta:hover,
.ppc-hero__cta:focus {
  background-color: var(--color-accent-orange-hover);
  border-color: var(--color-accent-orange-hover);
}

.page-hero__phone,
.ppc-hero__phone {
  padding: 16px 40px;
  color: var(--color-accent-orange);
  background-color: transparent;
  border: 2px solid var(--color-accent-orange);
}

.page-hero__phone:hover,
.page-hero__phone:focus,
.ppc-hero__phone:hover,
.ppc-hero__phone:focus {
  color: var(--color-text-light);
  background-color: var(--color-accent-orange);
}

@media (max-width: 767px) {
  .page-hero,
  .ppc-hero {
    min-height: 420px;
  }

  .page-hero__inner,
  .ppc-hero__inner {
    padding: 0 16px;
  }

  .page-hero__panel,
  .ppc-hero__panel {
    width: 100%;
    max-width: none;
    padding: 40px 24px;
  }

  .page-hero__title-wrap,
  .ppc-hero__title-wrap,
  .page-hero__subtitle,
  .ppc-hero__subtitle,
  .page-hero__desc,
  .ppc-hero__desc,
  .page-hero__actions,
  .ppc-hero__actions {
    padding-left: 20px;
  }

  .page-hero__actions,
  .ppc-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .page-hero__cta,
  .ppc-hero__cta,
  .page-hero__phone,
  .ppc-hero__phone {
    width: 100%;
    text-align: center;
  }
}

/* =========================================================
   Recent projects carousel (service + PPC pages)
   ========================================================= */
.recent-projects {
  position: relative;
  padding: 80px 15px 60px;
  background-color: #14100a;
  box-sizing: border-box;
}

/* Extra top gap on sections that have a divider arrow */
[class*="__shape"]:not([class*="--bottom"]) + * {
  margin-top: 20px;
}

.recent-projects__shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  line-height: 0;
  pointer-events: none;
}

.recent-projects__shape svg {
  display: block;
  width: calc(180% + 1.3px);
  height: 35px;
  margin-left: 50%;
  transform: translateX(-50%);
}

.recent-projects__shape path {
  fill: var(--section-arrow-fill, #231f20);
}

.recent-projects__inner {
  max-width: var(--container-max);
  margin: 0 auto;
}

.recent-projects__title {
  margin: 0 0 24px;
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.2;
  color: #fff;
  text-align: center;
}

.recent-projects__carousel {
  position: relative;
}

.recent-projects__viewport {
  overflow: hidden;
  touch-action: pan-y;
  cursor: grab;
}

.recent-projects__viewport:active {
  cursor: grabbing;
}

.recent-projects__track {
  display: flex;
  gap: 1rem;
  transition: transform 0.45s ease;
  will-change: transform;
}

/* 4 slides on desktop (matches --e-image-carousel-slides-to-show:4) */
.recent-projects__slide {
  flex: 0 0 calc((100% - 3rem) / 4);
  margin: 0;
}

.recent-projects__link {
  display: block;
  overflow: hidden;
  border-radius: 2px;
  background: transparent;
}

.recent-projects__image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  border-radius: 2px;
  border-style: none;
}

.recent-projects__nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: #f49b27;
  background: transparent;
  transform: translateY(-50%);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.recent-projects__nav--prev {
  left: 0;
}

.recent-projects__nav--next {
  right: 0;
}

.recent-projects__nav span {
  font-size: 34px;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.recent-projects__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.recent-projects__dot {
  width: 0.65rem;
  height: 0.65rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #aa7d7d;
  opacity: 1;
  cursor: pointer;
}

.recent-projects__dot.is-active {
  background: #f49b27;
}

/* Static project photo grid (city pages + homepage) */
.recent-projects__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.recent-projects__item {
  margin: 0;
  overflow: hidden;
  border-radius: 2px;
}

.recent-projects__item .recent-projects__link {
  display: block;
  overflow: hidden;
  border-radius: 2px;
}

.recent-projects__item .recent-projects__image {
  display: block;
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center;
  border-radius: 2px;
}

@media (max-width: 1024px) {
  .recent-projects {
    padding: 60px 12px;
  }

  .recent-projects__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .recent-projects__title {
    font-size: 1.8rem;
    line-height: 1.4em;
    margin-bottom: 32px;
  }

  .recent-projects__shape svg {
    width: calc(300% + 1.3px);
  }

  .recent-projects__slide {
    flex-basis: calc((100% - 2rem) / 3);
  }
}

@media (max-width: 767px) {
  .recent-projects__title {
    font-size: 1.6rem;
    line-height: 1.3em;
    padding: 20px 0 30px;
    margin-bottom: 0;
  }

  .recent-projects__shape svg {
    width: calc(600% + 1.3px);
  }

  .recent-projects__grid {
    grid-template-columns: 1fr;
  }

  .recent-projects__item .recent-projects__image {
    height: 280px;
  }

  /* 1 slide on mobile */
  .recent-projects__slide {
    flex-basis: 100%;
  }

  .recent-projects__nav--prev {
    left: 0;
  }

  .recent-projects__nav--next {
    right: 0;
  }
}

/* --- Service offerings (post-hero icon grid on service pages) --- */
.service-offerings {
  background-color: #231f20;
  padding: 60px 15px;
}

.service-offerings__inner {
  max-width: var(--container-max);
  margin: 0 auto;
}

.service-offerings__title {
  margin: 0 0 44px;
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -1px;
  text-align: center;
  color: #ffffff;
}

.service-offerings__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 40px 60px;
}

.service-offerings__grid[data-columns="3"] {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* Special case: two cards spanning full container (e.g. water-feature-design) */
.service-offerings__grid[data-columns="2"] {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-offerings__card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px;
  border-radius: 2px;
  background-color: #2e2e2e;
  box-sizing: border-box;
  text-decoration: none;
  color: inherit;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

a.service-offerings__card:hover,
a.service-offerings__card:focus {
  background-color: #383838;
}

.service-offerings__icon {
  flex: 0 0 auto;
}

.service-offerings__icon img {
  display: block;
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.service-offerings__card-title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: left;
  color: var(--color-accent-orange-title);
}

.service-offerings__card-text {
  margin: 0;
  font-family: var(--font-kit);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #ffffff;
}

.service-offerings__card-text p {
  margin: 0 0 0.75rem;
}

.service-offerings__card-text p:last-child {
  margin-bottom: 0;
}

.service-offerings__list {
  margin: 0.5rem 0 0;
  padding: 0;
  list-style: none;
}

.service-offerings__list li {
  position: relative;
  margin: 0 0 0.4rem;
  padding-left: 1.35rem;
  font-family: var(--font-kit);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.45;
  color: #7a7a7a;
}

.service-offerings__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 0.55em;
  height: 0.55em;
  border-radius: 50%;
  background-color: var(--color-accent-orange-title);
}

.service-offerings__list li:last-child {
  margin-bottom: 0;
}

.service-offerings__list strong {
  font-weight: 700;
  color: #cfcfcf;
}

@media (max-width: 1024px) {
  .service-offerings__title {
    margin-bottom: 44px;
    font-size: 1.8rem;
    line-height: 1.4;
  }

  .service-offerings__grid,
  .service-offerings__grid[data-columns="3"],
  .service-offerings__grid[data-columns="2"] {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .service-offerings {
    padding: 60px 12px 20px;
  }

  .service-offerings__title {
    margin: 20px 0 44px;
    font-size: 1.6rem;
    line-height: 1.3;
  }

  .service-offerings__grid,
  .service-offerings__grid[data-columns="3"],
  .service-offerings__grid[data-columns="2"] {
    grid-template-columns: 1fr;
  }

  .service-offerings__card {
    gap: 20px;
  }

  .service-offerings__card-title {
    font-size: 1.2rem;
  }
}

/* --- Content feature (two-column text + image) --- */
.content-feature {
  position: relative;
  background-color: #14110f;
  padding: 60px 15px;
}

.content-feature--warm {
  background-color: #231f20;
}

.content-feature__shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  line-height: 0;
  pointer-events: none;
}

.content-feature__shape svg {
  display: block;
  width: 100%;
  height: 42px;
}

.content-feature__shape path {
  fill: var(--section-arrow-fill, #14110f);
}

.content-feature__inner {
  display: flex;
  gap: 60px;
  max-width: var(--container-max);
  margin: 0 auto;
  align-items: stretch;
}

.content-feature__copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.content-feature__title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 600;
  line-height: 1.25;
  color: #e8e7e7;
}

.content-feature__text {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.6;
  color: #e8e7e7;
}

.content-feature__text p {
  margin: 0 0 1rem;
}

.content-feature__text p:last-child {
  margin-bottom: 0;
}

.content-feature__copy > .install-areas__lists {
  width: 100%;
}

.install-areas__content > .content-feature__text {
  width: 100%;
  margin-bottom: 28px;
}

.content-feature__cta {
  display: inline-block;
  align-self: flex-start;
  width: auto;
  max-width: 100%;
  box-sizing: border-box;
  margin-top: 0.5rem;
  padding: 16px 64px;
  border: none;
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  color: #ffffff;
  background-color: #ff960b;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.content-feature__cta:hover,
.content-feature__cta:focus {
  background-color: #ffffff;
  color: #151009;
}

.content-feature__media {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
  padding-top: 20px;
}

.content-feature__media img {
  display: block;
  max-height: 460px;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--border-radius);
}

.content-feature--reversed .content-feature__inner {
  flex-direction: row-reverse;
}

@media (max-width: 1024px) {
  .content-feature__inner {
    flex-direction: column-reverse;
    gap: 20px;
  }

  .content-feature--reversed .content-feature__inner {
    flex-direction: column-reverse;
  }

  .content-feature__media {
    padding-top: 0;
  }

  .content-feature__cta {
    padding: 16px 48px;
  }
}

@media (max-width: 767px) {
  .content-feature__title {
    font-size: 1.5rem;
  }

  .content-feature__cta {
    font-size: 0.9rem;
    padding: 16px 40px;
  }
}

/* --- Phone CTA bar --- */
.phone-cta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 220px;
  padding: 80px 15px;
  background-color: #000;
  box-sizing: border-box;
  overflow: hidden;
}

.phone-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: #000;
  background-image: url("/_assets/img/2024/03/Rock-Garden-Background-Photo-CTA.jpg");
  background-position: center left;
  background-repeat: no-repeat;
  background-size: cover;
  filter: brightness(22%) contrast(110%);
}

.phone-cta__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px 20px;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  box-sizing: border-box;
}

.phone-cta__text {
  flex: 1 1 280px;
  margin: 0;
  font-family: var(--font-heading);
  font-size: 28.8px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -1px;
  text-align: left;
  text-transform: uppercase;
  color: var(--color-text-light);
}

.phone-cta__link {
  flex: 0 0 auto;
  display: inline-block;
  padding: 20px 64px;
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  color: var(--color-text-light) !important;
  background-color: #ff960b;
  border: none;
  border-radius: var(--border-radius);
  transition: background-color 0.2s ease, color 0.2s ease;
}

.phone-cta__link:hover,
.phone-cta__link:focus {
  color: #151009 !important;
  background-color: var(--color-text-light);
}

@media (max-width: 1024px) {
  .phone-cta {
    min-height: 180px;
    padding: 40px 12px;
  }

  .phone-cta__text {
    font-size: 27.2px;
    text-align: center;
  }
}

@media (max-width: 767px) {
  .phone-cta {
    min-height: 0;
    padding: 40px 12px;
    align-items: stretch;
  }

  .phone-cta__inner {
    flex-direction: column;
    align-items: center;
    gap: 60px;
  }

  .phone-cta__text {
    flex: 0 1 auto;
    width: 100%;
    font-size: 25.6px;
    text-align: center;
  }

  .phone-cta__link {
    width: 100%;
    max-width: 320px;
    padding: 18px 32px;
  }
}

/* =========================================================
   Install / service areas (image left, city lists right)
   ========================================================= */
.install-areas {
  background-color: #14100a;
  padding: 40px 15px;
  box-sizing: border-box;
}

.install-areas__inner {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 60px;
  max-width: var(--container-max);
  margin: 0 auto;
  box-sizing: border-box;
}

.install-areas__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  flex: 1 1 0;
  width: 50%;
  min-width: 0;
  box-sizing: border-box;
}

.install-areas__title {
  margin: 0 0 24px;
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.2;
  color: #fff;
  text-align: left;
}

.install-areas__lists {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 60px;
  width: 100%;
}

.install-areas__list {
  margin: 0;
  list-style: none;
}

.install-areas__list:last-child {
  padding-right: 0;
}

.install-areas__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
  padding: 4px 0;
}

.install-areas__item + .install-areas__item {
  margin-top: 4px;
}

.install-areas__check {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  color: #ff960b;
}

.install-areas__check svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.install-areas__label,
.install-areas__label a {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.install-areas__label a:hover,
.install-areas__label a:focus {
  color: #ff960b;
}

.install-areas__media {
  flex: 0 0 50%;
  width: 50%;
  max-width: 50%;
  height: 400px;
  margin: 50px 0;
  border-radius: 2px;
  overflow: hidden;
  box-sizing: border-box;
}

.install-areas__image {
  display: block;
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.8);
}

@media (max-width: 1024px) {
  .install-areas {
    padding: 60px 15px;
  }

  .install-areas__inner {
    flex-direction: column-reverse;
    gap: 20px;
  }

  .install-areas__content,
  .install-areas__media {
    width: 100%;
    max-width: 100%;
    flex: 1 1 auto;
  }

  .install-areas__media {
    margin: 0;
    height: 325px;
  }

  .install-areas__image {
    height: 325px;
  }

  .install-areas__title {
    font-size: 1.8rem;
    line-height: 1.4em;
  }

  .install-areas__content {
    padding-top: 20px;
  }

  .install-areas__list {
    padding: 0;
  }

  .install-areas__list:first-child {
    padding-right: 20px;
  }
}

@media (max-width: 767px) {
  .install-areas__title {
    font-size: 1.6rem;
    line-height: 1.3em;
    margin: 0 0 1.5rem;
    padding-top: 0;
  }

  .install-areas__content {
    padding-top: 0;
  }

  .install-areas__lists {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 0.75rem;
    row-gap: 0;
    align-items: start;
  }

  .install-areas__list,
  .install-areas__list:first-child,
  .install-areas__list:last-child {
    padding: 0;
  }

  .install-areas__label,
  .install-areas__label a {
    font-size: 14px;
  }
}

/* --- Map embed (Google iframe) --- */
.map-embed {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0;
  padding: 0;
}

.map-embed__frame {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 450px;
  min-height: 450px;
  border: 0;
}

/* --- Why Choose section --- */
.why-choose {
  position: relative;
  background-color: #231f20;
  padding: 60px 15px 40px;
}

.why-choose__inner {
  max-width: var(--container-max);
  margin: 0 auto;
}

.why-choose__title {
  margin: 0;
  padding-bottom: 60px;
  font-family: var(--font-heading);
  font-size: 31px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  color: #e8e7e7;
}

.why-choose__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 60px 60px;
  max-width: 1100px;
  margin: 0 auto;
}

.why-choose__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  min-height: 0;
  padding: 0;
  border-radius: 0;
  background-color: transparent;
  box-shadow: none;
  text-align: center;
}

.why-choose__icon {
  margin: 0;
  text-align: center;
}

.why-choose__icon img {
  display: block;
  width: 60px;
  height: 60px;
  margin: 0 auto;
  object-fit: contain;
  max-width: none;
}

.why-choose__card[data-icon-size='30'] .why-choose__icon img {
  width: 30px;
  height: 30px;
}

.why-choose__card[data-icon-size='80'] .why-choose__icon,
.why-choose__card[data-icon-size='90'] .why-choose__icon {
  margin: 0;
}

.why-choose__card-title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 19.2px;
  font-weight: 600;
  line-height: 1.1;
  color: var(--color-accent-orange-title);
}

.why-choose__card-text {
  margin: 0;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #e8e7e7;
}

@media (max-width: 1024px) {
  .why-choose {
    padding: 60px 40px 40px;
  }

  .why-choose__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 60px 60px;
  }
}

@media (max-width: 767px) {
  .why-choose {
    padding: 40px 20px;
  }

  .why-choose__title {
    font-size: 1.6rem;
  }

  .why-choose__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 60px 60px;
  }
}

/* Homepage benefits — slightly taller padding */
.home .why-choose {
  padding: 80px 15px 60px;
}

/* --- Home services card grid (homepage) --- */
.home-services {
  position: relative;
  padding: 5rem 0.75rem 6.25rem;
  background-color: #231f20;
  color: var(--color-text-light);
}

.home-services__shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  line-height: 0;
}

.home-services__shape svg {
  display: block;
  width: 100%;
  height: 42px;
}

.home-services__shape path {
  fill: var(--section-arrow-fill, #14110f);
}

.home-services__inner {
  max-width: var(--container-max);
  margin: 0 auto;
}

.home-services__title {
  margin: 0 0 2.5rem;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 600;
  line-height: 1.25;
  color: var(--color-text-light);
  text-align: center;
}

.home-services__grid {
  display: grid;
  gap: 40px 60px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-services__card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: var(--border-radius);
  background-color: #2e2e2e;
  color: inherit;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.home-services__card:hover,
.home-services__card:focus-visible {
  transform: translateY(-2px);
  background-color: #14100a;
}

.home-services__card-media {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
  flex-shrink: 0;
  height: 150px;
}

@media (min-width: 768px) {
  .home-services__card-media {
    height: 225px;
  }
}

.home-services__card-media img {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

.home-services__card-icon {
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background-color: var(--color-accent-orange);
  color: #231f20;
  font-size: 1rem;
}

.home-services__card-icon svg {
  display: block;
  width: 1rem;
  height: 1rem;
}

.home-services__card-title {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-accent-orange-title);
}

.home-services__card-text {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.85);
}

/* --- Services section card grid (city pages) --- */
.services-section {
  position: relative;
  padding: 5rem 0.75rem 6.25rem;
  background-color: #231f20;
  color: var(--color-text-light);
}

.services-section__shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  line-height: 0;
}

.services-section__shape svg {
  display: block;
  width: 100%;
  height: 42px;
}

.services-section__shape path {
  fill: var(--section-arrow-fill, #14110f);
}

.services-section__inner {
  max-width: var(--container-max);
  margin: 0 auto;
}

.services-section__title {
  margin: 0 0 2.5rem;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 600;
  line-height: 1.25;
  color: var(--color-text-light);
  text-align: center;
}

.services-section__grid {
  display: grid;
  gap: 40px 60px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.services-section__grid[data-columns='3'] {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: var(--border-radius);
  background-color: #2e2e2e;
  color: inherit;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.service-card:hover,
.service-card:focus-visible {
  transform: translateY(-2px);
  background-color: #14100a;
}

.service-card__media {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
  flex-shrink: 0;
  height: 150px;
}

@media (min-width: 768px) {
  .service-card__media {
    height: 225px;
  }
}

.service-card__media img {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

.service-card__icon {
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background-color: var(--color-accent-orange);
  color: #231f20;
  font-size: 1rem;
}

.service-card__icon svg {
  display: block;
  width: 1rem;
  height: 1rem;
}

.service-card__title {
  position: relative;
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-accent-orange-title);
}

.service-card__title-suffix {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  white-space: nowrap;
  font-weight: 400;
}

.service-card__body {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.85);
}

.service-card__body p {
  margin: 0;
}

@media (max-width: 1024px) {
  .home-services__grid,
  .services-section__grid,
  .services-section__grid[data-columns='3'],
  .services-section__grid[data-columns='4'] {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .home-services,
  .services-section {
    padding: 2.5rem 1rem 3.5rem;
  }

  .home-services__grid,
  .services-section__grid,
  .services-section__grid[data-columns='3'],
  .services-section__grid[data-columns='4'] {
    grid-template-columns: 1fr;
  }
}

/* --- City page intro --- */
.city-intro {
  position: relative;
  background-color: #14110f;
  padding: 60px 15px;
}

.city-intro__inner {
  display: flex;
  gap: 60px;
  max-width: var(--container-max);
  margin: 0 auto;
  align-items: stretch;
}

.city-intro__copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
}

.city-intro__title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 600;
  line-height: 1.25;
  color: #e8e7e7;
}

.city-intro__text {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.6;
  color: #e8e7e7;
}

.city-intro__text p {
  margin: 0 0 1rem;
}

.city-intro__text p:last-child {
  margin-bottom: 0;
}

.city-intro__text a {
  color: var(--color-accent-orange);
}

.city-intro__phone {
  display: inline-block;
  align-self: flex-start;
  width: auto;
  max-width: 100%;
  box-sizing: border-box;
  margin-top: 0.5rem;
  padding: 16px 64px;
  border: none;
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  color: #ffffff !important;
  background-color: #ff960b;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.city-intro__phone:hover,
.city-intro__phone:focus {
  background-color: #ffffff;
  color: #151009 !important;
}

.city-intro__media {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
  padding-top: 20px;
  min-width: 0;
}

.city-intro__media img {
  display: block;
  max-height: 460px;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--border-radius);
}

@media (max-width: 1024px) {
  .city-intro__inner {
    flex-direction: column-reverse;
    gap: 20px;
  }

  .city-intro__media {
    padding-top: 0;
  }

  .city-intro__phone {
    padding: 16px 48px;
  }
}

@media (max-width: 767px) {
  .city-intro__title {
    font-size: 1.5rem;
  }

  .city-intro__phone {
    font-size: 0.9rem;
    padding: 16px 40px;
  }
}

/* --- Review showcase (city pages) --- */
.review-showcase {
  position: relative;
  padding: 3rem 1.25rem 2.5rem;
  background-color: #14110f;
}

.review-showcase__shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  line-height: 0;
}

.review-showcase__shape svg {
  display: block;
  width: 100%;
  height: 42px;
}

.review-showcase__shape path {
  fill: var(--section-arrow-fill, #231f20);
}

.review-showcase__inner {
  max-width: var(--container-max);
  margin: 0 auto;
}

.review-showcase__title {
  margin: 0 0 1.75rem;
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  color: #e8e7e7;
}

.review-showcase .recent-projects__carousel {
  margin-bottom: 1.5rem;
}

.review-showcase .recent-projects__slide {
  flex: 0 0 calc((100% - 3rem) / 4);
}

.review-showcase .recent-projects__link {
  display: block;
  height: 100%;
  background: transparent;
}

.review-showcase .recent-projects__image {
  display: block;
  width: 100%;
  height: 280px;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center;
}

.review-showcase .recent-projects__nav {
  color: #ffffff;
  background: rgba(18, 74, 47, 0.92);
}

.review-showcase .recent-projects__dot {
  background: rgba(255, 255, 255, 0.35);
}

.review-showcase .recent-projects__dot.is-active {
  background: #ff960b;
}

.review-showcase__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 12rem;
  margin: 0 auto;
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--color-text-light) !important;
  background-color: #ff960b;
  border-radius: var(--border-radius);
}

.review-showcase__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.review-showcase__cta:hover,
.review-showcase__cta:focus {
  color: var(--color-text-light) !important;
  background-color: var(--color-accent-orange-hover);
}

@media (max-width: 1024px) {
  .review-showcase .recent-projects__slide {
    flex: 0 0 calc((100% - 2rem) / 3);
  }
}

@media (max-width: 767px) {
  .review-showcase .recent-projects__slide {
    flex: 0 0 100%;
  }

  .review-showcase .recent-projects__image {
    height: auto;
    max-height: none;
    aspect-ratio: auto;
    object-fit: contain;
  }
}

/* Free Quote CTAs — orange brand button */
.page-hero__cta,
.ppc-hero__cta,
.review-showcase__cta,
.content-feature__cta[href="#Quote"] {
  background-color: #ff960b !important;
  border-color: #ff960b !important;
  color: #ffffff !important;
}

.content-feature__cta[href="#Quote"]:hover,
.content-feature__cta[href="#Quote"]:focus {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #151009 !important;
}

.why-choose__shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  line-height: 0;
}

.why-choose__shape svg {
  display: block;
  width: 100%;
  height: 42px;
}

.why-choose__shape path {
  fill: var(--section-arrow-fill, #14110f);
}

/* --- County list (icon-list migration) --- */
.county-list {
  padding: 3rem 1.25rem;
  background-color: var(--color-bg-light);
}

.county-list__inner {
  max-width: 915px;
  margin: 0 auto;
}

.county-list__title {
  margin: 0;
  padding-bottom: 60px;
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  color: var(--color-accent);
}

.county-list__columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem 2rem;
}

.county-list__col {
  margin: 0;
  padding: 0;
  list-style: none;
}

.county-list__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.county-list__icon {
  flex: 0 0 auto;
  width: 1rem;
  color: #ff960b;
}

.county-list__icon svg {
  display: block;
  width: 100%;
  height: auto;
  fill: currentColor;
}

.county-list__label,
.county-list__label a {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  text-decoration: none;
}

.county-list__label a:hover,
.county-list__label a:focus {
  color: var(--color-accent);
}

@media (max-width: 767px) {
  .county-list {
    padding: 2rem 1rem;
  }

  .county-list__title {
    padding-bottom: 1.5rem;
  }

  .county-list__columns {
    grid-template-columns: 1fr;
  }

  .county-list__columns--quad {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem 0.75rem;
    align-items: start;
  }

  .county-list__columns--quad .county-list__item {
    margin-bottom: 0.5rem;
    gap: 0.5rem;
  }

  .county-list__columns--quad .county-list__item:last-child {
    margin-bottom: 0;
  }

  .county-list__columns--quad .county-list__label,
  .county-list__columns--quad .county-list__label a {
    font-size: calc(1rem - 2px);
  }
}

.county-list--dark {
  background-color: #2b2627;
}

.county-list--dark .county-list__title {
  color: #e8e7e7;
}

.county-list--dark .county-list__label,
.county-list--dark .county-list__label a {
  color: #e8e7e7;
}

.county-list--dark .county-list__label a:hover,
.county-list--dark .county-list__label a:focus {
  color: #ff960b;
}

.county-list__columns--quad {
  grid-template-columns: repeat(4, max-content);
  justify-content: center;
  gap: 1.5rem 60px;
}

/* =========================================================
   Gallery intro
   Source: litespeed/css/afe94e43d32aee0633cdf97fb74b65d2.css
   ========================================================= */
.gallery-intro {
  padding: 40px 12px 20px;
  box-sizing: border-box;
  background-color: #ffffff;
}

.gallery-intro__inner {
  max-width: 1400px;
  margin: 0 auto;
  box-sizing: border-box;
}

.gallery-intro__title {
  margin: 0 0 1rem;
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 600;
  line-height: 1.3;
  color: #111;
  text-align: center;
}

.gallery-intro__text {
  max-width: 48rem;
  margin: 0 auto;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: #333;
  text-align: center;
}

.gallery-intro__text p {
  margin: 0 0 1em;
}

.gallery-intro__text p:last-child {
  margin-bottom: 0;
}

/* =========================================================
   Photo gallery grids
   Live widget: 4 / 2 / 1 columns, 10px gap, masonry, hover overlay
   ========================================================= */
.photo-gallery {
  padding: 40px 12px;
  box-sizing: border-box;
  background-color: #231f20;
}

.photo-gallery__inner {
  max-width: 1400px;
  margin: 0 auto;
  box-sizing: border-box;
}

.photo-gallery__title {
  margin: 0;
  padding: 20px 0 40px;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.6;
  text-align: center;
  color: #ffffff;
}

.photo-gallery__grid {
  column-count: 4;
  column-gap: 10px;
}

.photo-gallery__item {
  position: relative;
  display: block;
  break-inside: avoid;
  margin: 0 0 10px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}

.photo-gallery__item img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
  transition: transform 800ms ease, filter 800ms ease;
}

.photo-gallery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgb(0 0 0 / 0.5);
  opacity: 0;
  transition: opacity 800ms ease;
  pointer-events: none;
}

.photo-gallery__item:hover::after,
.photo-gallery__item:focus::after {
  opacity: 1;
}

.photo-gallery__item:hover img,
.photo-gallery__item:focus img {
  filter: brightness(0.95);
}

.photo-gallery__item:focus {
  outline: 2px solid #ff960b;
  outline-offset: 2px;
}

@media (max-width: 1024px) {
  .photo-gallery__grid {
    column-count: 2;
  }
}

@media (max-width: 767px) {
  .photo-gallery__title {
    font-size: 1.6rem;
  }

  .photo-gallery__grid {
    column-count: 1;
  }
}

/* =========================================================
   Gallery hub
   Source: litespeed/css/d02d8abb9998dc66086c54d12273e087.css
   ========================================================= */
.gallery-hub {
  position: relative;
  padding: 80px 12px 100px;
  box-sizing: border-box;
  background-color: #231f20;
}

.gallery-hub__shape {
  position: absolute;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 1;
  pointer-events: none;
}

.gallery-hub__shape--top {
  top: 0;
}

.gallery-hub__shape--bottom {
  bottom: 0;
  transform: rotate(180deg);
}

.gallery-hub__shape svg {
  display: block;
  width: calc(200% + 1.3px);
  height: 30px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.gallery-hub__shape path {
  fill: var(--section-arrow-fill, #ff960b);
}

.gallery-hub__inner {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  box-sizing: border-box;
}

.gallery-hub__title {
  margin: 0;
  padding: 20px 0 40px;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.6;
  text-align: center;
  color: #ffffff;
}

.gallery-hub__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 0;
  padding: 0;
}

.gallery-hub__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 16px 12px;
  box-sizing: border-box;
  text-decoration: none;
  color: inherit;
  background-color: transparent;
  transition: background-color 0.3s ease;
}

.gallery-hub__card:hover,
.gallery-hub__card:focus {
  background-color: #2b2627;
  outline: none;
}

.gallery-hub__image {
  display: block;
  width: 225px;
  height: 225px;
  max-width: 100%;
  object-fit: cover;
  object-position: center center;
  border-radius: 50%;
}

.gallery-hub__label {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  color: var(--color-accent-orange-title);
}

@media (max-width: 1024px) {
  .gallery-hub__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .gallery-hub__title {
    font-size: 1.6rem;
  }

  .gallery-hub__grid {
    grid-template-columns: 1fr;
  }

  .gallery-hub__image {
    width: 200px;
    height: 200px;
  }

  .gallery-hub__label {
    font-size: 1.25rem;
  }
}

/* --- Project gallery (homepage static grid) --- */
.project-gallery {
  position: relative;
  padding: 60px 15px;
  background-color: #14100a;
}

.project-gallery__shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  line-height: 0;
}

.project-gallery__shape svg {
  display: block;
  width: 100%;
  height: 42px;
}

.project-gallery__shape path {
  fill: var(--section-arrow-fill, #231f20);
}

.project-gallery__inner {
  max-width: var(--container-max);
  margin: 0 auto;
}

.project-gallery__title {
  margin: 0 0 1.75rem;
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  color: #e8e7e7;
}

.project-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.project-gallery__item {
  margin: 0;
  overflow: hidden;
  border-radius: 2px;
}

.project-gallery__link {
  display: block;
  overflow: hidden;
  border-radius: 2px;
}

.project-gallery__image {
  display: block;
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center;
  border-radius: 2px;
}

@media (max-width: 1024px) {
  .project-gallery__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .project-gallery {
    padding: 2.5rem 12px;
  }

  .project-gallery__grid {
    grid-template-columns: 1fr;
  }

  .project-gallery__image {
    height: 320px;
  }
}

/* --- Site lightbox (review / recent-projects slider) --- */
body.site-lightbox-open {
  overflow: hidden;
}

.site-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 4rem;
  background: rgba(20, 17, 15, 0.92);
  box-sizing: border-box;
}

.site-lightbox[hidden] {
  display: none;
}

.site-lightbox__figure {
  margin: 0;
  max-width: min(1100px, 100%);
  max-height: 100%;
}

.site-lightbox__image {
  display: block;
  max-width: 100%;
  max-height: calc(100vh - 6rem);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--border-radius);
}

.site-lightbox__close,
.site-lightbox__nav {
  position: absolute;
  z-index: 1;
  display: grid;
  place-items: center;
  padding: 0;
  border: none;
  color: #ffffff;
  background: rgba(35, 31, 32, 0.85);
  cursor: pointer;
  line-height: 1;
}

.site-lightbox__close {
  top: 1rem;
  right: 1rem;
  width: 2.75rem;
  height: 2.75rem;
  font-size: 1.75rem;
  border-radius: 50%;
}

.site-lightbox__nav {
  top: 50%;
  width: 2.75rem;
  height: 2.75rem;
  font-size: 2rem;
  border-radius: 50%;
  transform: translateY(-50%);
}

.site-lightbox__nav--prev {
  left: 1rem;
}

.site-lightbox__nav--next {
  right: 1rem;
}

.site-lightbox__close:hover,
.site-lightbox__close:focus,
.site-lightbox__nav:hover,
.site-lightbox__nav:focus {
  background: #ff960b;
  outline: none;
}

@media (max-width: 767px) {
  .site-lightbox {
    padding: 3.5rem 1rem;
  }

  .site-lightbox__nav--prev {
    left: 0.35rem;
  }

  .site-lightbox__nav--next {
    right: 0.35rem;
  }
}

/* =========================================================
   Blog layout tokens. Layout: 75% main / 25% sidebar (stacks at ≤1024px).
   ========================================================= */

.blog-layout {
  padding: 60px 0 80px;
}

.blog-layout__inner {
  display: grid;
  grid-template-columns: minmax(0, 75%) minmax(260px, 25%);
  gap: 60px;
  align-items: start;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-inline: 20px;
  width: 100%;
}

.blog-layout__main {
  min-width: 0;
}

.blog-layout__sidebar {
  min-width: 0;
}

/* --- Hub title --- */
.blog-hub__title {
  margin: 0 0 20px;
  padding: 20px 0;
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1.15;
  color: var(--color-accent-orange);
}

/* --- Post hero (h1 + featured image) --- */
.blog-post__hero {
  margin: 0 0 12px;
}

.blog-post__title {
  margin: 0 0 16px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2.5em;
  line-height: 1.1;
  color: var(--color-accent-orange);
}

.blog-post__hero-media {
  margin: 0 0 12px;
  overflow: hidden;
  border-radius: 4px;
}

.blog-post__hero-media img {
  width: 100%;
  max-width: 100%;
  max-height: 400px;
  height: 400px;
  display: block;
  object-fit: cover;
}

/* --- Table of contents --- */
.blog-toc {
  margin: 12px 0 24px;
  background-color: #f8b51e;
  border-radius: 3px;
  color: #fff;
  overflow: hidden;
}

.blog-toc__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
}

.blog-toc__title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
}

.blog-toc__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.blog-toc__chevron {
  display: block;
  width: 0.65rem;
  height: 0.65rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.blog-toc.is-collapsed .blog-toc__chevron {
  transform: rotate(-135deg);
  translate: 0 3px;
}

.blog-toc__body {
  padding: 0 20px 20px;
}

.blog-toc.is-collapsed .blog-toc__body {
  display: none;
}

.blog-toc__list {
  margin: 0;
  padding-left: 1.25rem;
  list-style: decimal;
}

.blog-toc__item {
  margin-bottom: 0.5em;
  font-family: var(--font-heading);
  font-weight: 400;
  color: #fff;
}

.blog-toc__link {
  color: #fff;
  text-decoration: none;
}

.blog-toc__link:hover,
.blog-toc__link:focus {
  text-decoration: underline;
}

/* --- Post cards (hub + recent) --- */
.blog-card-grid {
  display: grid;
  gap: 35px 30px;
}

.blog-card-grid--hub {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.blog-card-grid--sidebar {
  grid-template-columns: 1fr;
  margin-top: 0;
}

.blog-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: #111;
  border-radius: 3px;
  box-shadow: 0 0 10px 0 rgb(0 0 0 / 0.15);
  overflow: hidden;
  transition: box-shadow 0.25s ease;
}

.blog-card:hover {
  box-shadow: 0 0 30px 0 rgb(0 0 0 / 0.15);
}

.blog-card-grid--sidebar .blog-card {
  background-color: #1b1818;
}

.blog-card__media-link {
  display: block;
  position: relative;
  overflow: hidden;
}

.blog-card__media {
  position: relative;
  padding-bottom: 66%;
  overflow: hidden;
  background: #000;
}

.blog-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgb(0 0 0 / 0.35), transparent 75%);
  opacity: 0;
  transition: opacity 0.3s ease-out;
  pointer-events: none;
}

.blog-card:hover .blog-card__media::after {
  opacity: 0.5;
}

.blog-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 20px 30px 0;
  color: #fff;
}

.blog-card__title {
  margin: 0 0 12px;
  font-family: var(--font-heading);
  font-size: 1.3125rem;
  font-weight: 700;
  line-height: 1.3;
}

.blog-card__title a {
  color: var(--color-accent-orange);
  text-decoration: none;
}

.blog-card__title a:hover,
.blog-card__title a:focus {
  text-decoration: underline;
}

.blog-card__excerpt {
  flex: 1;
  margin: 0 0 12px;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #fff;
}

.blog-card__excerpt p {
  margin: 0;
}

.blog-card__more {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--color-accent-orange);
  font-weight: 600;
  text-decoration: none;
}

.blog-card__more:hover,
.blog-card__more:focus {
  text-decoration: underline;
}

.blog-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  margin-top: auto;
  padding: 15px 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.875rem;
  color: #fff;
}

.blog-card__date::after {
  content: "•";
  margin-left: 0.5rem;
  opacity: 0.7;
}

/* --- Sidebar --- */
.blog-sidebar {
  background-color: #111;
  border-radius: 4px;
  box-shadow: 0 10px 20px -8px rgb(0 0 0 / 0.5);
  padding: 40px;
  color: #fff;
}

.blog-sidebar__logo {
  display: block;
  width: 50%;
  max-width: 220px;
}

.blog-sidebar__logo img {
  width: 100%;
  height: auto;
}

.blog-sidebar__intro {
  margin: 20px 0 0;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
  color: #fff;
}

.blog-sidebar__heading {
  margin: 40px 0 20px;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-accent-orange);
}

.blog-sidebar__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.blog-sidebar__list li {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
}

.blog-sidebar__list a,
.blog-sidebar__list span {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-sidebar__list a:hover,
.blog-sidebar__list a:focus {
  color: var(--color-accent-orange);
}

.blog-sidebar .quote-form {
  margin-top: 0;
}

.blog-sidebar .quote-form__input,
.blog-sidebar .quote-form__select,
.blog-sidebar .quote-form__textarea {
  background-color: #fff;
  color: #111;
  border: 1px solid #ddd;
}

.blog-sidebar .quote-form__input::placeholder,
.blog-sidebar .quote-form__textarea::placeholder {
  color: #888;
}

.blog-sidebar .quote-form__recaptcha-note {
  color: rgba(255, 255, 255, 0.75);
}

.blog-sidebar .quote-form__recaptcha-note a {
  color: var(--color-accent-orange);
}

.blog-sidebar .quote-form__submit {
  padding: 15px 40px;
  background-color: var(--color-accent-orange);
  color: #fff;
}

.blog-sidebar .quote-form__submit:hover,
.blog-sidebar .quote-form__submit:focus {
  background-color: #151009;
  color: var(--color-accent-orange);
}

/* --- Article body --- */
.blog-post__content {
  padding-top: 8px;
  color: #000;
  font-family: var(--font-body);
  line-height: 1.6;
}

.blog-post__content.styled-container,
.styled-container {
  font-size: 16px;
}

.styled-container * {
  box-sizing: border-box;
}

.styled-container h2,
.styled-container h3,
.styled-container h4,
.styled-container h5,
.styled-container h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-accent-orange);
}

.styled-container h2 {
  font-size: 2em;
  line-height: 1.5em;
  margin: 1.25em 0 0.6em;
}

.styled-container h3 {
  font-size: 1.5em;
  margin: 1em 0 0.5em;
  line-height: 1.1em;
}

.styled-container h4 {
  font-size: 1.25em;
  margin: 0.85em 0 0.4em;
}

.styled-container p,
.styled-container ul,
.styled-container ol {
  margin-bottom: 1.25em;
}

.styled-container p {
  font-size: 1em;
  line-height: 1.6em;
  color: #000;
}

.styled-container a:not([class]) {
  color: var(--color-accent-orange);
  font-weight: 700;
  text-decoration: none;
}

.styled-container a:not([class]):hover {
  text-decoration: underline;
}

.styled-container img {
  width: 100%;
  max-width: 100%;
  max-height: 400px;
  height: 400px;
  display: block;
  margin: 0 0 1rem;
  object-fit: cover;
}

.styled-container ul {
  list-style: disc;
  padding-left: 40px;
}

.styled-container ol {
  list-style: decimal;
  padding-left: 40px;
}

.styled-container ul ul {
  list-style: circle;
}

.styled-container ul ul ul {
  list-style: square;
}

.styled-container li {
  margin-bottom: 0.35em;
}

.styled-container .custom-list ul,
.styled-container .custom-list ol,
.styled-container ul.custom-list,
.styled-container ol.custom-list {
  list-style: none;
  padding-left: 0;
}

.styled-container .custom-list li {
  padding: 10px 0 10px 25px;
  position: relative;
  margin-bottom: 10px;
  border-bottom: 1px solid #eee;
}

.styled-container .custom-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--color-accent-orange);
}

.styled-container .list-numbers {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

.styled-container .list-numbers li {
  counter-increment: list-counter;
  position: relative;
  padding: 10px 0 10px 45px;
  margin-bottom: 15px;
}

.styled-container .list-numbers li::before {
  content: counter(list-counter);
  position: absolute;
  left: 0;
  top: 8px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--color-accent-orange);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.styled-container .two-columns,
.styled-container .three-columns {
  display: grid;
  gap: 30px;
  margin: 20px 0;
}

.styled-container .two-columns {
  grid-template-columns: 1fr 1fr;
}

.styled-container .three-columns {
  grid-template-columns: 1fr 1fr 1fr;
}

.styled-container .column-card {
  height: 100%;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgb(0 0 0 / 0.1);
  padding: 20px;
}

.styled-container .pros-cons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 25px 0;
}

.styled-container .pros,
.styled-container .cons {
  flex: 1;
  min-width: 260px;
  padding: 20px;
  border-radius: 8px;
}

.styled-container .pros {
  background: #e9f7ef;
  border: 1px solid #d5f5e3;
}

.styled-container .cons {
  background: #fdedec;
  border: 1px solid #f5b7b1;
}

.styled-container .pros-title,
.styled-container .cons-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0 0 15px;
  color: #333;
}

.styled-container .highlight-box,
.styled-container .info-box,
.styled-container .warning-box {
  padding: 20px;
  margin: 20px 0;
  border-radius: 0 4px 4px 0;
}

.styled-container .highlight-box {
  background: #fff8e1;
  border-left: 5px solid #ffc107;
}

.styled-container .info-box {
  background: #e3f2fd;
  border-left: 4px solid var(--color-accent-orange);
}

.styled-container .warning-box {
  background: #fff3e0;
  border-left: 5px solid #ff9800;
}

.styled-container .blockquote {
  margin: 25px 0;
  padding: 20px 30px;
  border-left: 4px solid var(--color-accent-orange);
  background: #f8f9fa;
  font-size: 1.125rem;
  font-style: italic;
  color: #555;
}

.styled-container .blockquote-author {
  display: block;
  margin-top: 12px;
  font-weight: 600;
  font-style: normal;
  color: #333;
}

.styled-container .cta-block {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 30px;
  margin: 30px 0;
  text-align: center;
  border: 1px solid #e9ecef;
}

.styled-container .cta-block-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 15px;
  color: #333;
}

.styled-container .cta-block-text {
  margin: 0 0 16px;
  color: #555;
}

.styled-container .cta-btn {
  display: inline-block;
  width: fit-content;
  padding: 12px 24px;
  background: var(--color-accent-orange);
  color: #fff !important;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  border-radius: 4px;
  box-shadow: 0 4px 6px rgb(0 0 0 / 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.styled-container .cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 8px rgb(0 0 0 / 0.15);
}

.styled-container .faq-item {
  margin-bottom: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
}

.styled-container .faq-question {
  margin: 0;
  padding: 15px 20px;
  background: #f8f9fa;
  font-weight: 600;
  color: #333;
  border-bottom: 1px solid #e0e0e0;
}

.styled-container .faq-answer {
  padding: 20px;
  background: #fff;
}

.styled-container .faq-answer p {
  margin: 0;
}

.styled-container table {
  width: 100%;
  margin: 12px 0;
  border-collapse: collapse;
  font-size: 15px;
  background: #fff;
}

.styled-container th,
.styled-container td {
  padding: 12px 15px;
  border-bottom: 1px solid #ddd;
  text-align: left;
}

.styled-container thead tr,
.styled-container th {
  background: #cf181f;
  color: #fff;
}

.styled-container .responsive-table {
  width: 100%;
  overflow-x: auto;
  margin-bottom: 20px;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .blog-layout {
    padding: 60px 15px 80px;
  }

  .blog-layout__inner {
    padding-inline: 0;
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .blog-sidebar__heading {
    font-size: 1.5rem;
  }

  .blog-toc {
    /* minimize on tablet like live */
  }

  .blog-toc.is-collapsed-tablet .blog-toc__body {
    display: none;
  }
}

@media (max-width: 767px) {
  .blog-layout__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .blog-card-grid--hub {
    grid-template-columns: 1fr;
  }

  .blog-card__media {
    padding-bottom: 50%;
  }

  .blog-card__body {
    padding: 16px 20px 0;
  }

  .blog-card__meta {
    padding: 12px 20px;
  }

  .blog-post__title {
    font-size: 1.75rem;
  }

  .blog-sidebar {
    padding: 28px 20px;
  }

  .blog-sidebar__logo {
    width: 60%;
    margin-inline: auto;
  }

  .blog-sidebar__heading {
    font-size: 25px;
    margin-top: 28px;
  }

  .styled-container .two-columns,
  .styled-container .three-columns {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .styled-container .pros-cons {
    flex-direction: column;
  }

  .styled-container ul,
  .styled-container ol {
    padding-left: 24px;
  }
}

/* =========================================================
   PPC pages — reviews grid, about/quote, footer variant
   ========================================================= */

/* PPC: Servicing counties sit under the benefits list in the content column */
.install-areas__servicing {
  padding-top: 20px;
  padding-bottom: 40px;
  width: 100%;
  box-sizing: border-box;
}

.install-areas__content > .install-areas__title {
  margin-bottom: 0;
  padding-bottom: 24px;
}

.install-areas__servicing .install-areas__title {
  margin-top: 20px;
  margin-bottom: 0;
  padding-bottom: 24px;
}

.install-areas__servicing .install-areas__lists {
  grid-template-columns: 1fr;
}

/* Why-choose Free Quote CTA (PPC) */
.why-choose__cta {
  display: inline-block;
  margin: 40px auto 0;
  padding: 16px 40px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  color: var(--color-text-light) !important;
  background-color: var(--color-accent-orange);
  border-radius: 25px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.why-choose__inner:has(.why-choose__cta) {
  text-align: center;
}

.why-choose__inner:has(.why-choose__cta) .why-choose__title {
  text-align: center;
}

.why-choose__cta:hover,
.why-choose__cta:focus {
  color: #151009 !important;
  background-color: var(--color-text-light);
}

@media (max-width: 767px) {
  .why-choose__cta {
    width: 100%;
    max-width: 320px;
    padding: 16px 20px;
  }
}

/* PPC reviews image grid */
.ppc-reviews {
  padding: 60px 15px;
  background-color: #000;
  box-sizing: border-box;
}

.ppc-reviews__inner {
  max-width: var(--container-max);
  margin: 0 auto;
}

.ppc-reviews__title {
  margin: 0 0 32px;
  font-family: var(--font-heading);
  font-size: 2.1rem;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  color: #fff;
}

.ppc-reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.ppc-reviews__item {
  margin: 0;
  border-radius: 5px;
  overflow: hidden;
  background-color: #14110f;
}

.ppc-reviews__item img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 1024px) {
  .ppc-reviews {
    padding: 40px 12px;
  }

  .ppc-reviews__title {
    font-size: 1.8rem;
  }

  .ppc-reviews__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .ppc-reviews {
    padding: 30px 12px 60px;
  }

  .ppc-reviews__title {
    font-size: 1.6rem;
    margin-bottom: 24px;
  }

  .ppc-reviews__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .ppc-reviews__item img {
    min-height: 200px;
  }
}

/* PPC about story — 2-col image + copy */
.ppc-about {
  padding: 80px 100px 40px;
  background-color: #000;
  box-sizing: border-box;
}

.ppc-about__inner {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 0;
  max-width: var(--container-max);
  margin: 0 auto;
  box-sizing: border-box;
}

.ppc-about__media {
  flex: 1 1 0;
  min-width: 0;
  min-height: 280px;
  background-image: url("/_assets/img/2023/07/image_50802177.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.ppc-about__story {
  flex: 1 1 0;
  min-width: 0;
  padding: 0 0 0 40px;
  box-sizing: border-box;
}

.ppc-about__title {
  margin: 0 0 24px;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1.2;
  color: #fffaf3;
}

.ppc-about__body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #fff;
}

.ppc-about__body p {
  margin: 0 0 1rem;
}

.ppc-about__body p:last-child {
  margin-bottom: 0;
}

@media (max-width: 1024px) {
  .ppc-about {
    padding: 60px 24px 24px;
  }

  .ppc-about__inner {
    flex-direction: column;
  }

  .ppc-about__media {
    width: 100%;
    flex: none;
    min-height: 0;
    padding: 150px 0;
  }

  .ppc-about__story {
    width: 100%;
    flex: none;
    padding-left: 40px;
  }

  .ppc-about__title {
    font-size: 1.8rem;
  }
}

@media (max-width: 767px) {
  .ppc-about {
    padding: 40px 12px 16px;
  }

  .ppc-about__media {
    margin-top: 10px;
  }

  .ppc-about__story {
    padding-left: 10px;
  }

  .ppc-about__title {
    font-size: 1.6rem;
  }
}

/* PPC quote / pitch + form card — Rock Garden bg matches phone-cta */
.ppc-quote {
  position: relative;
  overflow: hidden;
  padding: 40px 15px 80px;
  background-color: #14100a;
  box-sizing: border-box;
}

.ppc-quote::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: #000;
  background-image: url("/_assets/img/2024/03/Rock-Garden-Background-Photo-CTA.jpg");
  background-position: center left;
  background-repeat: no-repeat;
  background-size: cover;
  filter: brightness(22%) contrast(110%);
}

.ppc-quote__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 80px;
  max-width: var(--container-max);
  margin: 0 auto;
  box-sizing: border-box;
}

.ppc-quote__copy {
  flex: 1 1 0;
  width: 50%;
  min-width: 0;
  padding: 40px 15px;
  box-sizing: border-box;
}

.ppc-quote__heading {
  margin: 0 0 16px;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
  text-transform: capitalize;
  color: #fff;
}

.ppc-quote__intro {
  margin: 0 0 24px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #fff;
}

.ppc-quote__intro p {
  margin: 0;
}

.ppc-quote__expect-title {
  margin: 0 0 12px;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
  text-transform: capitalize;
  color: #fff;
}

.ppc-quote__expect {
  margin: 0;
  padding: 0 0 0 1.25rem;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #fff;
}

.ppc-quote__expect li + li {
  margin-top: 6px;
}

.ppc-quote__card {
  flex: 1 1 0;
  width: 50%;
  min-width: 0;
  padding: 40px;
  border-radius: 25px;
  background-color: #111;
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.25);
  box-sizing: border-box;
}

.ppc-quote__title {
  margin: 0 0 24px;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
}

@media (max-width: 1024px) {
  .ppc-quote__inner {
    flex-direction: column;
    gap: 20px;
  }

  .ppc-quote__copy,
  .ppc-quote__card {
    width: 100%;
    padding: 30px;
  }

  .ppc-quote__heading {
    font-size: 1.8rem;
  }
}

@media (max-width: 767px) {
  .ppc-quote {
    padding: 40px 12px 60px;
  }

  .ppc-quote__copy {
    padding: 20px 0 0;
  }

  .ppc-quote__card {
    padding: 30px 20px;
    border-radius: 16px;
  }

  .ppc-quote__heading {
    font-size: 1.6rem;
  }

  .ppc-quote__expect-title {
    font-size: 1.6rem;
  }
}

/* PPC compact footer with social icons */
.site-footer--ppc .site-footer__shell {
  padding: 0;
}

.site-footer--ppc .site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px 24px;
  padding: 24px 20px;
}

.site-footer__social-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer__social-item {
  margin: 0;
}

.site-footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--color-text-light);
  transition: color 0.2s ease;
}

.site-footer__social-link:hover,
.site-footer__social-link:focus {
  color: var(--color-accent-orange);
}

.site-footer__social-link svg {
  display: block;
  width: 18px;
  height: 18px;
  fill: currentColor;
}

@media (max-width: 767px) {
  .site-footer--ppc .site-footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}

