:root {
  --rook-orange: #f04a02;
  --rook-black: #000;
  --rook-cream: #f7e6d3;
  --rook-white: #fff;
  --rook-soft: #fff8ef;
  --rook-line: rgba(0, 0, 0, 0.12);
  --rook-text: #111;
  --rook-muted: #555;
  --rook-shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
  --rook-radius: 8px;
  --rook-button-radius: 4px;
  --rook-page-width: 1440px;
  --rook-body-font: "Barlow Condensed", Arial, sans-serif;
  --rook-heading-font: "Bebas Neue", Impact, sans-serif;
  --rook-body-size: 20px;
  --rook-body-weight: 400;
  --rook-heading-weight: 400;
  --rook-nav-size: 18px;
  --rook-button-size: 24px;
  --rook-hero-title-size: 116px;
  --rook-hero-title-mobile-size: 52px;
  --rook-section-title-size: 46px;
  --rook-card-title-size: 28px;
}

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

html {
  scroll-behavior: smooth;
}

body.rook-site {
  margin: 0;
  background: var(--rook-cream);
  color: var(--rook-text);
  font-family: var(--rook-body-font);
  font-size: var(--rook-body-size);
  font-weight: var(--rook-body-weight);
  line-height: 1.25;
}

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

img,
svg {
  max-width: 100%;
}

button,
input,
textarea {
  font: inherit;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.rook-page {
  width: 100%;
  max-width: 1440px;
  min-width: 0;
  margin: 0 auto;
  background: var(--rook-white);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.04);
  overflow: clip;
}

.rook-main {
  background: var(--rook-white);
}

.rook-svg {
  width: 1em;
  height: 1em;
  display: inline-block;
  vertical-align: middle;
}

.rook-header {
  --rook-header-pad-y: 18px;
  --rook-header-content-height: 96px;
  min-height: 96px;
  padding: var(--rook-header-pad-y) 44px;
  background: var(--rook-black);
  color: var(--rook-white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  z-index: 20;
}

.rook-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  color: var(--rook-white);
}

.rook-logo__mark {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: var(--rook-orange);
}

.rook-logo__mark svg {
  width: 100%;
  height: 100%;
}

.rook-logo__mark img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  display: block;
}

.rook-header .rook-logo__mark {
  width: clamp(82px, 7vw, 118px);
  height: clamp(82px, 7vw, 118px);
  margin-top: calc(var(--rook-header-pad-y) * -1);
  margin-bottom: calc(var(--rook-header-pad-y) * -1);
  overflow: hidden;
}

.rook-header .rook-logo__mark img {
  width: 106%;
  height: 106%;
  max-width: none;
  object-position: center bottom;
  transform: translateY(5px);
}

.rook-logo__text {
  display: block;
  line-height: 0;
  flex: 0 0 auto;
}

.rook-logo__wordmark {
  display: block;
  width: clamp(138px, 9vw, 178px);
  height: auto;
}

.rook-logo--footer .rook-logo__wordmark {
  width: clamp(155px, 11vw, 200px);
}

.rook-logo__name {
  display: block;
  color: var(--rook-orange);
  font-family: var(--rook-heading-font);
  font-weight: var(--rook-heading-weight);
  font-size: 54px;
  line-height: 0.82;
}

.rook-logo__name sup {
  font-size: 12px;
  top: -1em;
  position: relative;
}

.rook-logo__tag {
  display: block;
  color: var(--rook-white);
  font-size: 18px;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 700;
}

.rook-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 34px;
  flex: 1 1 auto;
}

.rook-nav a,
.rook-call-link {
  color: var(--rook-white);
  text-transform: uppercase;
  font-weight: 800;
  font-size: var(--rook-nav-size);
  line-height: 1;
  padding: 16px 0 12px;
  border-bottom: 4px solid transparent;
}

.rook-nav a.is-active,
.rook-nav a:hover {
  color: var(--rook-orange);
  border-bottom-color: var(--rook-orange);
}

.rook-header__actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.rook-call-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 0;
}

.rook-call-link svg {
  color: var(--rook-orange);
}

.rook-button,
.rook-quote-card button,
.rook-quote-band__form button,
.rook-contact-form button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 2px solid transparent;
  border-radius: var(--rook-button-radius);
  padding: 16px 24px 14px;
  background: var(--rook-black);
  color: var(--rook-white);
  font-family: var(--rook-heading-font);
  font-weight: var(--rook-heading-weight);
  font-size: var(--rook-button-size);
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
}

.rook-button--small {
  min-height: 48px;
  font-size: 20px;
  padding: 14px 22px 12px;
}

.rook-button--orange {
  background: var(--rook-orange);
  border-color: var(--rook-orange);
  color: var(--rook-white);
}

.rook-button--black {
  background: var(--rook-black);
  color: var(--rook-white);
}

.rook-button--outline,
.rook-button--outline-orange {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.75);
  color: var(--rook-white);
}

.rook-button--outline-orange {
  border-color: var(--rook-orange);
  color: var(--rook-orange);
}

.rook-button--outline-dark {
  background: var(--rook-white);
  border-color: var(--rook-black);
  color: var(--rook-black);
}

.rook-button--outline-light {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--rook-white);
}

.rook-menu-toggle {
  display: none;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: transparent;
  color: var(--rook-white);
  border-radius: var(--rook-button-radius);
  place-items: center;
  padding: 11px;
}

.rook-menu-toggle span:not(.screen-reader-text) {
  display: block;
  width: 24px;
  height: 3px;
  background: currentColor;
  margin: 3px auto;
}

.rook-mobile-menu {
  display: none;
  background: var(--rook-black);
  color: var(--rook-white);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 8px 24px 22px;
}

.rook-mobile-menu a {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  text-transform: uppercase;
  font-weight: 800;
}

.rook-hero {
  min-height: 500px;
  display: grid;
  grid-template-columns: minmax(420px, 590px) minmax(0, 1fr);
  background: var(--rook-white);
  position: relative;
  overflow: hidden;
}

.rook-hero__copy {
  position: relative;
  z-index: 2;
  background: var(--rook-orange);
  color: var(--rook-white);
  padding: 72px 100px 68px 64px;
  clip-path: polygon(0 0, 92% 0, 76% 100%, 0 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  grid-column: 1 / 2;
  grid-row: 1;
}

.rook-hero__copy h1 {
  margin: 0;
  color: var(--rook-white);
  font-family: var(--rook-heading-font);
  font-weight: var(--rook-heading-weight);
  font-size: clamp(76px, 7vw, var(--rook-hero-title-size));
  line-height: 0.9;
  text-transform: uppercase;
}

.rook-hero__copy h1 span {
  color: var(--rook-black);
}

.rook-title-mark--black {
  color: var(--rook-black) !important;
}

.rook-title-mark--orange {
  color: var(--rook-orange) !important;
}

.rook-main h1,
.rook-main h2,
.rook-main h3,
.rook-logo__name,
.rook-button,
.rook-quote-card button,
.rook-quote-band__form button,
.rook-contact-form button {
  font-weight: var(--rook-heading-weight);
}

.rook-hero__copy p:not(.rook-eyebrow) {
  max-width: 430px;
  margin: 22px 0 0;
  color: var(--rook-white);
  font-size: 30px;
  font-weight: 600;
}

.rook-eyebrow {
  margin: 0 0 20px;
  color: var(--rook-black);
  font-family: var(--rook-heading-font);
  font-size: var(--rook-card-title-size);
  line-height: 1;
  text-transform: uppercase;
}

.rook-rule {
  display: block;
  width: 120px;
  height: 3px;
  background: currentColor;
  opacity: 0.85;
  margin: 22px 0 0;
}

.rook-hero__actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.rook-hero__media {
  grid-column: 1 / -1;
  grid-row: 1;
  z-index: 1;
  min-width: 0;
}

.rook-image {
  min-height: 100%;
  width: 100%;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.85);
  background:
    linear-gradient(120deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.38)),
    linear-gradient(145deg, #19331c 0%, #edb779 46%, #724020 100%);
}

.rook-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 20%, rgba(255, 255, 255, 0.35) 0 2%, transparent 8%),
    linear-gradient(90deg, transparent 0 20%, rgba(0, 0, 0, 0.28) 20% 21%, transparent 21% 42%, rgba(0, 0, 0, 0.18) 42% 43%, transparent 43%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.08) 0 2px, transparent 2px 26px);
  opacity: 0.65;
}

.rook-image span {
  position: relative;
  z-index: 1;
  padding: 10px 14px;
  background: rgba(0, 0, 0, 0.64);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--rook-white);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
}

.rook-image img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.rook-image--roof,
.rook-image--roof-cleaning,
.rook-image--soft-wash {
  background:
    linear-gradient(rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.36)),
    repeating-linear-gradient(105deg, #c44b1a 0 20px, #6b1d0a 20px 34px, #e56526 34px 50px);
}

.rook-image--driveway,
.rook-image--pricing-hero,
.rook-image--complete-package-home {
  background:
    linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.28)),
    linear-gradient(135deg, #5c7f4a, #e5c49b 40%, #f6f3e7 58%, #8d5a35);
}

.rook-image--walkway,
.rook-image--pressure-cleaning {
  background:
    linear-gradient(rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.32)),
    repeating-linear-gradient(45deg, #b18563 0 22px, #d5b392 22px 44px);
}

.rook-image--patio,
.rook-image--home-hero {
  background:
    radial-gradient(circle at 60% 48%, #56a8b9 0 12%, transparent 13%),
    linear-gradient(145deg, #172714, #c58c54 38%, #f2d8b6 54%, #23351d);
}

.rook-image--wall,
.rook-image--services-hero,
.rook-image--about-hero,
.rook-image--contact-hero,
.rook-image--hoa-hero,
.rook-image--hoa-community {
  background:
    linear-gradient(rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.3)),
    linear-gradient(120deg, #29351f, #dfc6a0 36%, #f8f0e3 54%, #8b522c);
}

.rook-image--how-hero,
.rook-image--terms-hero {
  background:
    linear-gradient(rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.4)),
    linear-gradient(135deg, #0a0a0a, #f04a02 28%, #e9d8c4 48%, #1c1c1c);
}

.rook-image--prep-hero {
  background:
    linear-gradient(120deg, #f04a02 0 34%, #f3e1cb 34% 56%, #3b2419 56% 100%);
}

.rook-hero__quote {
  position: absolute;
  z-index: 4;
  right: 84px;
  top: 50%;
  transform: translateY(-50%);
  width: min(420px, 34vw);
}

.rook-quote-card {
  background: var(--rook-black);
  color: var(--rook-white);
  padding: 26px;
  box-shadow: var(--rook-shadow);
}

.rook-quote-card h2 {
  margin: 0 0 18px;
  font-family: var(--rook-heading-font);
  font-size: 36px;
  line-height: 1;
  text-transform: uppercase;
}

.rook-quote-card label,
.rook-quote-band__form label {
  position: relative;
  display: block;
}

.rook-quote-card input,
.rook-quote-band__form input,
.rook-contact-form input,
.rook-contact-form textarea {
  width: 100%;
  min-height: 58px;
  border: 1px solid var(--rook-line);
  border-radius: var(--rook-button-radius);
  background: var(--rook-white);
  padding: 14px 16px 12px 48px;
  color: var(--rook-text);
}

.rook-contact-form textarea {
  padding-left: 16px;
  resize: vertical;
}

.rook-input-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--rook-orange);
  font-size: 22px;
}

.rook-quote-card button {
  width: 100%;
  margin-top: 12px;
  background: var(--rook-orange);
}

.rook-quote-card p {
  margin: 16px 0 0;
  text-align: center;
  font-size: 18px;
}

.rook-service-row {
  padding: 28px 56px 34px;
  background: var(--rook-white);
}

.rook-service-row h2,
.rook-simple-process h2,
.rook-section-heading h2,
.rook-prep-preview h2,
.rook-pricing__header h2,
.rook-policies h2,
.rook-method h2 {
  margin: 0;
  font-family: var(--rook-heading-font);
  font-size: var(--rook-section-title-size);
  line-height: 1;
  text-transform: uppercase;
  text-align: center;
}

.rook-service-row__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 28px;
}

.rook-service-row__grid a {
  min-height: 150px;
  padding: 10px 28px;
  display: grid;
  justify-items: center;
  align-content: start;
  text-align: center;
  border-right: 2px solid rgba(240, 74, 2, 0.35);
}

.rook-service-row__grid a:last-child {
  border-right: 0;
}

.rook-service-row__grid svg {
  width: 62px;
  height: 62px;
  color: var(--rook-orange);
  margin-bottom: 10px;
}

.rook-service-row__grid strong,
.rook-service-cards h3,
.rook-step-mini strong,
.rook-process-cards h3,
.rook-price-item h3,
.rook-bundle-price h3,
.rook-prep-grid h3 {
  font-family: var(--rook-heading-font);
  font-size: var(--rook-card-title-size);
  line-height: 1;
  text-transform: uppercase;
}

.rook-service-row__grid span {
  margin-top: 8px;
  font-size: 18px;
  line-height: 1.2;
}

.rook-simple-process {
  padding: 30px 70px;
  background: var(--rook-white);
  border-top: 1px solid var(--rook-line);
  border-bottom: 1px solid var(--rook-line);
}

.rook-simple-process--orange {
  background: var(--rook-orange);
  color: var(--rook-white);
  border: 0;
}

.rook-simple-process--orange h2 {
  color: var(--rook-white);
}

.rook-simple-process__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 24px;
}

.rook-step-mini {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 18px;
}

.rook-step-mini__icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--rook-black);
  color: var(--rook-white);
  font-size: 34px;
}

.rook-simple-process:not(.rook-simple-process--orange) .rook-step-mini__icon {
  background: var(--rook-soft);
  color: var(--rook-black);
}

.rook-step-mini__number,
.rook-process-cards__number,
.rook-prep-card__number {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: var(--rook-orange);
  color: var(--rook-white);
  font-weight: 800;
}

.rook-step-mini p {
  margin: 5px 0 0;
}

.rook-package {
  padding: 48px 56px;
  display: grid;
  grid-template-columns: minmax(320px, 430px) 1fr;
  gap: 42px;
  align-items: stretch;
  background: var(--rook-soft);
}

.rook-package__copy h2,
.rook-hoa-teaser h2,
.rook-exact-price h2,
.rook-pricing-package h2,
.rook-one-visit h2,
.rook-contact-help h2,
.rook-contact-form h2,
.rook-help-panel h3 {
  margin: 0;
  font-family: var(--rook-heading-font);
  font-size: 54px;
  line-height: 0.95;
  text-transform: uppercase;
}

.rook-package__copy h3,
.rook-hoa-teaser h3,
.rook-exact-price h2 span,
.rook-pricing-package h3,
.rook-one-visit h3 {
  margin: 10px 0 0;
  color: var(--rook-orange);
  font-family: var(--rook-heading-font);
  font-size: 36px;
  line-height: 1;
  text-transform: uppercase;
}

.rook-check-list {
  list-style: none;
  margin: 24px 0;
  padding: 0;
}

.rook-check-list li {
  position: relative;
  margin: 8px 0;
  padding-left: 28px;
  font-weight: 600;
}

.rook-check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.25em;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--rook-orange);
}

.rook-check-list li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 0.48em;
  width: 7px;
  height: 4px;
  border-left: 2px solid var(--rook-white);
  border-bottom: 2px solid var(--rook-white);
  transform: rotate(-45deg);
}

.rook-package--home .rook-package__copy > p:not(.rook-eyebrow),
.rook-package--wide .rook-package__copy > p:not(.rook-eyebrow),
.rook-package--compact .rook-package__copy > p:not(.rook-eyebrow) {
  font-size: 20px;
  line-height: 1.28;
}

.rook-package--home .rook-check-list li,
.rook-package--wide .rook-check-list li,
.rook-package--compact .rook-check-list li {
  font-size: 20px;
}

.rook-package--home,
.rook-package--wide,
.rook-package--compact {
  grid-template-columns: minmax(360px, 460px) 1fr;
  gap: 36px;
  align-items: center;
}

.rook-package--home .rook-package__copy,
.rook-package--wide .rook-package__copy,
.rook-package--compact .rook-package__copy {
  align-self: center;
}

.rook-package--home .rook-eyebrow,
.rook-package--wide .rook-eyebrow,
.rook-package--compact .rook-eyebrow {
  margin-bottom: 14px;
}

.rook-package--home .rook-package__copy h2,
.rook-package--wide .rook-package__copy h2,
.rook-package--compact .rook-package__copy h2 {
  font-size: 56px;
  line-height: 0.92;
}

.rook-package--home .rook-package__copy h3,
.rook-package--wide .rook-package__copy h3,
.rook-package--compact .rook-package__copy h3 {
  margin-top: 8px;
  font-size: 38px;
}

.rook-package--home .rook-package__copy > p:not(.rook-eyebrow),
.rook-package--wide .rook-package__copy > p:not(.rook-eyebrow),
.rook-package--compact .rook-package__copy > p:not(.rook-eyebrow) {
  margin: 16px 0 0;
}

.rook-package--home .rook-check-list,
.rook-package--wide .rook-check-list,
.rook-package--compact .rook-check-list {
  margin: 14px 0 18px;
}

.rook-package--home .rook-check-list li,
.rook-package--wide .rook-check-list li,
.rook-package--compact .rook-check-list li {
  margin: 6px 0;
  padding-left: 31px;
  font-weight: 700;
}

.rook-package--home .rook-check-list li::before,
.rook-package--wide .rook-check-list li::before,
.rook-package--compact .rook-check-list li::before {
  top: 0.18em;
  width: 20px;
  height: 20px;
}

.rook-package--home .rook-check-list li::after,
.rook-package--wide .rook-check-list li::after,
.rook-package--compact .rook-check-list li::after {
  left: 7px;
  top: 0.42em;
}

.rook-package__mosaic {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-auto-rows: 190px;
  gap: 8px;
  transform: skewX(-6deg);
  overflow: hidden;
}

.rook-mosaic-card {
  position: relative;
  overflow: hidden;
  min-height: 160px;
}

.rook-mosaic-card:first-child {
  grid-row: span 2;
}

.rook-mosaic-card .rook-image {
  transform: skewX(6deg) scale(1.08);
  min-height: 100%;
}

.rook-mosaic-card span {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 2;
  padding: 8px 10px;
  background: rgba(0, 0, 0, 0.78);
  color: var(--rook-white);
  font-family: var(--rook-heading-font);
  font-size: var(--rook-button-size);
  line-height: 1;
  text-transform: uppercase;
}

.rook-why {
  padding: 34px 56px;
  display: grid;
  grid-template-columns: 170px 1fr;
  align-items: stretch;
  gap: 26px;
  background: var(--rook-white);
  color: var(--rook-black);
}

.rook-why--orange {
  padding: 0 56px 0 0;
  grid-template-columns: 250px 130px 1fr;
  align-items: stretch;
  gap: 24px;
  background: var(--rook-orange);
  color: var(--rook-white);
  min-height: 150px;
  overflow: hidden;
}

.rook-why__bear {
  display: grid;
  place-items: center;
  min-height: 112px;
  color: var(--rook-white);
}

.rook-why__bear img,
.rook-why__bear svg {
  width: 150px;
  height: 112px;
  max-width: 100%;
  object-fit: contain;
}

.rook-why--orange .rook-why__bear {
  min-height: 150px;
  place-items: end center;
  overflow: hidden;
}

.rook-why--orange .rook-why__bear img,
.rook-why--orange .rook-why__bear svg {
  width: 238px;
  height: auto;
  max-width: none;
  object-fit: contain;
  transform: translateY(10px);
}

.rook-why--orange .rook-why__title,
.rook-why--orange .rook-why__items {
  align-self: center;
}

.rook-why__title {
  margin: 0;
  color: var(--rook-white);
  font-family: var(--rook-heading-font);
  font-size: 34px;
  line-height: 0.95;
  text-transform: uppercase;
}

.rook-why__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.rook-why article {
  padding: 14px 24px;
  border-left: 2px solid rgba(240, 74, 2, 0.3);
}

.rook-why--orange article {
  position: relative;
  border-left: 0;
}

.rook-why--orange article::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 2px;
  height: 50%;
  max-height: 92px;
  background: rgba(255, 255, 255, 0.48);
  transform: translateY(-50%);
}

.rook-why--orange .rook-svg {
  width: 46px;
  height: 46px;
  display: block;
  margin: 0 0 14px;
}

.rook-why--orange .rook-svg g {
  stroke-width: 3.25;
}

.rook-why--cards {
  grid-template-columns: 1fr;
  padding-top: 0;
  background: var(--rook-white);
  color: var(--rook-black);
}

.rook-why--cards .rook-why__bear {
  display: none;
}

.rook-why--cards .rook-why__items {
  gap: 18px;
}

.rook-why--cards article {
  min-height: 250px;
  border: 1px solid var(--rook-line);
  border-radius: var(--rook-radius);
  padding: 32px;
}

.rook-why svg {
  color: var(--rook-orange);
  font-size: 56px;
}

.rook-why--orange svg {
  color: currentColor;
}

.rook-why h3,
.rook-feature-cards h3,
.rook-info-panel h3,
.rook-policy-grid h3,
.rook-pricing-why h3 {
  margin: 12px 0 8px;
  font-family: var(--rook-heading-font);
  font-size: var(--rook-card-title-size);
  line-height: 1;
  text-transform: uppercase;
}

.rook-why p {
  margin: 0;
  font-size: 18px;
}

.rook-hoa-teaser {
  display: grid;
  grid-template-columns: 390px 1fr;
  gap: 32px;
  align-items: center;
  padding: 34px 56px;
  background: var(--rook-white);
}

.rook-hoa-teaser .rook-image {
  min-height: 260px;
  clip-path: polygon(6% 0, 100% 0, 100% 100%, 0 100%);
}

.rook-method {
  padding: 36px 56px 42px;
  background: var(--rook-black);
  color: var(--rook-white);
}

.rook-method--orange {
  background: var(--rook-orange);
}

.rook-method h2 {
  color: var(--rook-orange);
}

.rook-method--orange h2 {
  color: var(--rook-white);
}

.rook-method__grid {
  margin: 24px auto 0;
  max-width: 880px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 34px;
  align-items: center;
}

.rook-method article {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 22px;
  align-items: center;
}

.rook-method article svg {
  width: 90px;
  height: 90px;
  padding: 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.rook-method h3 {
  margin: 0 0 6px;
  font-family: var(--rook-heading-font);
  font-size: 34px;
  line-height: 1;
  text-transform: uppercase;
}

.rook-method p {
  margin: 0;
}

.rook-method__vs {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--rook-orange);
  color: var(--rook-white);
  font-family: var(--rook-heading-font);
  font-size: 40px;
}

.rook-quote-band {
  padding: 26px 56px;
  background: var(--rook-orange);
  color: var(--rook-white);
  display: grid;
  grid-template-columns: minmax(280px, 480px) 1fr;
  gap: 38px;
  align-items: center;
}

.rook-quote-band__intro {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 20px;
  align-items: center;
}

.rook-quote-band__intro svg {
  font-size: 76px;
}

.rook-quote-band h2 {
  margin: 0;
  font-family: var(--rook-heading-font);
  font-size: 42px;
  line-height: 1;
  text-transform: uppercase;
}

.rook-quote-band p {
  margin: 4px 0 0;
}

.rook-quote-band__form {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto;
  gap: 18px;
}

.rook-quote-band__form button {
  background: var(--rook-black);
  min-width: 260px;
}

.rook-prep-preview {
  padding: 34px 56px 42px;
}

.rook-prep-preview > div {
  display: grid;
  grid-template-columns: repeat(3, 1fr) auto;
  gap: 20px;
  align-items: stretch;
  margin-top: 24px;
}

.rook-prep-preview article {
  display: grid;
  grid-template-columns: 52px 34px 1fr;
  gap: 14px;
  align-items: center;
  padding: 18px;
  border-left: 2px solid rgba(240, 74, 2, 0.4);
  background: var(--rook-white);
  box-shadow: inset 0 0 0 1px var(--rook-line);
}

.rook-prep-preview svg {
  color: var(--rook-orange);
  font-size: 48px;
}

.rook-prep-preview h3 {
  margin: 0;
  font-family: var(--rook-heading-font);
  font-size: 26px;
  text-transform: uppercase;
}

.rook-prep-preview p {
  margin: 2px 0 0;
  font-size: 17px;
}

.rook-final-slogan {
  background: var(--rook-orange);
  color: var(--rook-white);
  padding: 22px 56px 18px;
  text-align: center;
}

.rook-final-slogan h2 {
  margin: 0;
  font-family: var(--rook-heading-font);
  font-size: 58px;
  line-height: 1;
  text-transform: uppercase;
}

.rook-footer {
  position: relative;
  padding: 44px 56px 24px;
  background: var(--rook-black);
  color: var(--rook-white);
  display: grid;
  grid-template-columns: minmax(220px, 300px) 1fr minmax(150px, 210px);
  gap: 44px;
}

.rook-logo--footer .rook-logo__name {
  font-size: 60px;
}

.rook-footer p {
  margin: 9px 0;
}

.rook-footer__pending {
  color: #bbb;
}

.rook-footer__columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: 26px 38px;
}

.rook-footer__mobile-links {
  display: none;
}

.rook-footer-group {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  padding-left: 22px;
}

.rook-footer-group summary {
  list-style: none;
  color: var(--rook-orange);
  font-family: var(--rook-heading-font);
  font-size: var(--rook-button-size);
  text-transform: uppercase;
  cursor: default;
}

.rook-footer-group summary::-webkit-details-marker {
  display: none;
}

.rook-footer-group a {
  display: block;
  color: #ddd;
  font-size: 18px;
  margin: 7px 0;
}

.rook-socials {
  display: flex;
  gap: 12px;
  margin: 18px 0;
}

.rook-socials a {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  color: var(--rook-orange);
  font-weight: 800;
  text-transform: uppercase;
}

.rook-socials svg {
  width: 32px;
  height: 32px;
}

.rook-footer__domain {
  color: var(--rook-orange);
  font-size: 28px;
  font-weight: 700;
}

.rook-footer__copyright {
  grid-column: 1 / -1;
  text-align: center;
  color: #aaa;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 18px;
}

.rook-sticky-actions {
  display: none;
}

.rook-default-content {
  max-width: 960px;
  margin: 0 auto;
  padding: 70px 32px;
}

.rook-service-cards {
  padding: 20px 56px 42px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.rook-service-cards article {
  min-height: 520px;
  display: grid;
  grid-template-rows: 240px auto auto auto 1fr auto;
  text-align: center;
  background: var(--rook-soft);
  border-radius: var(--rook-button-radius);
  overflow: hidden;
}

.rook-service-cards .rook-image {
  min-height: 240px;
}

.rook-service-cards__icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  margin: -36px auto 14px;
  border-radius: 999px;
  background: var(--rook-black);
  color: var(--rook-white);
  position: relative;
  z-index: 2;
  font-size: 38px;
}

.rook-service-cards h3 {
  margin: 0 20px 12px;
}

.rook-service-cards p,
.rook-service-cards small {
  margin: 0 24px 12px;
}

.rook-service-cards small {
  color: var(--rook-muted);
  font-style: italic;
}

.rook-service-cards strong {
  margin: 18px 24px 28px;
  color: var(--rook-orange);
  font-family: var(--rook-heading-font);
  font-size: 28px;
  text-transform: uppercase;
}

.rook-exact-price {
  margin: 28px 56px 0;
  display: grid;
  grid-template-columns: 430px 110px 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 26px;
  border: 1px solid var(--rook-line);
  border-radius: var(--rook-radius);
  background: var(--rook-white);
}

.rook-exact-price__image .rook-image {
  min-height: 210px;
  border-radius: var(--rook-radius);
}

.rook-exact-price__icon {
  width: 112px;
  height: 112px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--rook-black);
  color: var(--rook-orange);
  font-size: 68px;
  margin-left: -68px;
  z-index: 2;
}

.rook-exact-price p {
  margin: 10px 0;
}

.rook-pricing-steps {
  margin: 16px 56px 0;
  padding: 18px 24px 26px;
  border: 1px solid var(--rook-line);
  border-radius: var(--rook-radius);
}

.rook-pricing-steps h2 {
  margin: 0 0 18px;
  font-family: var(--rook-heading-font);
  text-transform: uppercase;
  text-align: center;
}

.rook-pricing-steps > div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.rook-pricing-steps article {
  display: grid;
  grid-template-columns: 42px 68px 1fr;
  gap: 14px;
  align-items: center;
  border-right: 1px solid var(--rook-line);
}

.rook-pricing-steps article:last-child {
  border-right: 0;
}

.rook-pricing-steps article > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--rook-orange);
  color: var(--rook-white);
  font-weight: 800;
}

.rook-pricing-steps svg {
  color: var(--rook-black);
  font-size: 58px;
  padding: 10px;
  border-radius: 999px;
  background: var(--rook-soft);
}

.rook-pricing-steps h3 {
  margin: 0;
  font-family: var(--rook-heading-font);
  font-size: var(--rook-card-title-size);
  text-transform: uppercase;
}

.rook-pricing-steps p {
  margin: 3px 0 0;
  font-size: 17px;
}

.rook-pricing {
  padding: 28px 56px 16px;
}

.rook-pricing__header {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 14px;
}

.rook-pricing__header h2 {
  text-align: left;
}

.rook-pricing__header p,
.rook-pricing__header a {
  margin: 4px 0 0;
  color: var(--rook-orange);
  font-weight: 800;
  text-transform: uppercase;
}

.rook-pricing-tabs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}

.rook-pricing-tabs button {
  min-height: 70px;
  border: 1px solid var(--rook-line);
  background: var(--rook-white);
  cursor: pointer;
}

.rook-pricing-tabs button.is-active {
  background: var(--rook-black);
  color: var(--rook-white);
}

.rook-pricing-tabs strong {
  display: block;
  font-family: var(--rook-heading-font);
  font-size: 28px;
  line-height: 1;
}

.rook-pricing-tabs span {
  display: block;
  font-weight: 700;
}

.rook-pricing-panel {
  display: none;
  padding: 28px 0 0;
}

.rook-pricing-panel.is-active {
  display: block;
}

.rook-pricing-panel__grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(4, 1fr) 1.45fr;
  border: 1px solid var(--rook-line);
  border-top: 0;
  border-radius: 0 0 var(--rook-radius) var(--rook-radius);
  overflow: hidden;
}

.rook-pricing-panel__grid article {
  min-height: 225px;
  padding: 28px 20px;
  text-align: center;
  border-right: 1px solid var(--rook-line);
  background: var(--rook-white);
}

.rook-pricing-panel__grid article:last-child {
  border-right: 0;
}

.rook-pricing-roof {
  text-align: left !important;
}

.rook-pricing-roof svg,
.rook-price-item svg {
  color: var(--rook-black);
  font-size: var(--rook-hero-title-mobile-size);
}

.rook-pricing-roof svg {
  color: var(--rook-orange);
}

.rook-pricing-roof h3,
.rook-pricing-roof p {
  margin: 8px 0;
  font-family: var(--rook-heading-font);
  font-size: 34px;
}

.rook-pricing-roof a {
  display: inline-block;
  margin-top: 14px;
  color: var(--rook-orange);
  font-weight: 800;
  text-transform: uppercase;
}

.rook-price-item p {
  min-height: 48px;
  margin: 8px 0 18px;
  font-size: 17px;
}

.rook-price-item strong,
.rook-bundle-price strong {
  color: var(--rook-orange);
  font-family: var(--rook-heading-font);
  font-size: var(--rook-section-title-size);
  line-height: 1;
}

.rook-bundle-price {
  background: #fff3eb !important;
  box-shadow: inset 0 0 0 2px rgba(240, 74, 2, 0.16);
}

.rook-bundle-price > span,
.rook-badge {
  display: inline-block;
  background: var(--rook-black);
  color: var(--rook-orange);
  padding: 8px 14px 6px;
  border-radius: var(--rook-button-radius);
  font-family: var(--rook-heading-font);
  font-size: 20px;
  text-transform: uppercase;
}

.rook-pricing-note {
  margin: 18px 0 0;
  text-align: center;
  color: var(--rook-muted);
}

.rook-pricing-mobile {
  display: none;
}

.rook-pricing-package {
  margin: 0 56px 24px;
  display: grid;
  grid-template-columns: minmax(300px, 500px) 1fr 270px;
  background: var(--rook-orange);
  color: var(--rook-white);
}

.rook-pricing-package .rook-image {
  min-height: 250px;
}

.rook-pricing-package > div:nth-child(2),
.rook-pricing-package aside {
  padding: 34px;
}

.rook-pricing-package h2,
.rook-pricing-package h3 {
  color: var(--rook-white);
}

.rook-pricing-package__icons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 22px;
}

.rook-pricing-package__icons span {
  display: grid;
  justify-items: center;
  text-align: center;
  font-weight: 700;
}

.rook-pricing-package__icons svg {
  font-size: 38px;
}

.rook-pricing-package aside {
  border-left: 1px solid rgba(255, 255, 255, 0.35);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.rook-pricing-why {
  padding: 12px 56px 34px;
}

.rook-pricing-why h2 {
  margin: 0 0 18px;
  text-align: center;
  font-family: var(--rook-heading-font);
  text-transform: uppercase;
}

.rook-pricing-why > div {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.rook-pricing-why article {
  padding: 18px;
  border: 1px solid var(--rook-line);
  border-radius: var(--rook-radius);
}

.rook-pricing-why svg {
  color: var(--rook-orange);
  font-size: 42px;
}

.rook-process-cards {
  padding: 46px 70px 36px;
}

.rook-section-heading {
  text-align: center;
  margin-bottom: 32px;
}

.rook-section-heading p {
  color: var(--rook-orange);
  font-family: var(--rook-heading-font);
  font-size: 22px;
  text-transform: uppercase;
}

.rook-section-heading h2 span {
  color: var(--rook-orange);
}

.rook-section-heading__body {
  max-width: 780px;
  margin: 12px auto 0;
  color: var(--rook-text) !important;
  font-family: var(--rook-body-font) !important;
  font-size: 22px !important;
  text-transform: none !important;
}

.rook-process-cards__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 38px;
}

.rook-process-cards article {
  min-height: 285px;
  padding: 36px 24px;
  border: 1px solid var(--rook-line);
  border-radius: var(--rook-radius);
  text-align: center;
  position: relative;
}

.rook-process-cards__number {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
}

.rook-process-cards svg {
  width: 92px;
  height: 92px;
  margin: 20px auto;
  padding: 18px;
  border-radius: 999px;
  background: var(--rook-soft);
}

.rook-info-panels {
  padding: 0 70px 50px;
  display: grid;
  grid-template-columns: 1.25fr 0.8fr;
  gap: 34px;
}

.rook-info-panel {
  padding: 28px;
  border: 1px solid var(--rook-line);
  border-radius: var(--rook-radius);
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  align-items: center;
}

.rook-info-panel--warm {
  background: #fff3eb;
}

.rook-info-panel > svg {
  color: var(--rook-orange);
  font-size: 100px;
}

.rook-check-list--two {
  columns: 2;
}

.rook-hoa-intro {
  padding: 36px 70px 24px;
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 34px;
  align-items: center;
}

.rook-hoa-intro > svg {
  color: var(--rook-orange);
  font-size: 150px;
}

.rook-hoa-intro h2 {
  margin: 0;
  font-family: var(--rook-heading-font);
  font-size: 44px;
  line-height: 1;
  text-transform: uppercase;
}

.rook-hoa-intro h3 {
  margin: 8px 0;
  color: var(--rook-orange);
  font-size: 26px;
}

.rook-feature-cards {
  padding: 0 70px 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.rook-feature-cards article {
  padding: 24px;
  border: 1px solid var(--rook-line);
  border-radius: var(--rook-radius);
}

.rook-feature-cards svg {
  color: var(--rook-orange);
  font-size: 48px;
}

.rook-method-compare,
.rook-one-visit,
.rook-policies,
.rook-prep,
.rook-contact-section {
  padding: 44px 70px;
}

.rook-method-compare h2 {
  text-align: center;
  font-family: var(--rook-heading-font);
  font-size: 42px;
  text-transform: uppercase;
}

.rook-method-compare > div {
  display: grid;
  grid-template-columns: 1fr 1fr auto 1fr 1fr;
  gap: 24px;
  align-items: center;
  padding: 24px;
  border: 1px solid var(--rook-line);
  border-radius: var(--rook-radius);
}

.rook-method-compare .rook-image {
  min-height: 180px;
  border-radius: var(--rook-radius);
}

.rook-method-compare article svg {
  color: var(--rook-orange);
  font-size: 62px;
}

.rook-method-compare article:nth-of-type(2) svg {
  color: #2785d8;
}

.rook-method-compare h3 {
  margin: 0 0 10px;
  font-family: var(--rook-heading-font);
  font-size: 34px;
  text-transform: uppercase;
}

.rook-method-compare > div > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--rook-line);
  border-radius: 999px;
  color: var(--rook-orange);
  font-size: 28px;
}

.rook-one-visit {
  margin: 0 70px 44px;
  padding: 28px;
  border: 1px solid var(--rook-line);
  border-radius: var(--rook-radius);
  display: grid;
  grid-template-columns: minmax(220px, 320px) 1fr auto;
  gap: 30px;
  align-items: center;
}

.rook-one-visit__services {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  text-align: center;
}

.rook-one-visit__services span {
  display: grid;
  justify-items: center;
  font-family: var(--rook-heading-font);
  font-size: 22px;
  line-height: 1;
  text-transform: uppercase;
}

.rook-one-visit__services svg {
  color: var(--rook-orange);
  font-size: 44px;
  margin-bottom: 8px;
}

.rook-contact-section {
  display: grid;
  grid-template-columns: 430px 1fr;
  gap: 36px;
  border-top: 4px solid var(--rook-orange);
}

.rook-contact-help article {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--rook-line);
  border-radius: var(--rook-radius);
  margin-top: 12px;
}

.rook-contact-help svg {
  color: var(--rook-orange);
  font-size: 64px;
}

.rook-contact-help h3,
.rook-contact-form label {
  font-weight: 800;
  text-transform: uppercase;
}

.rook-contact-form {
  display: grid;
  gap: 18px;
}

.rook-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.rook-contact-form label {
  display: grid;
  gap: 8px;
}

.rook-contact-form button {
  width: fit-content;
  min-width: 210px;
}

.rook-prep {
  background: var(--rook-white);
}

.rook-prep-group {
  margin-top: 40px;
}

.rook-prep-group > h2 {
  margin: 0 0 24px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  color: var(--rook-black);
  font-family: var(--rook-heading-font);
  font-size: 42px;
  text-transform: uppercase;
}

.rook-prep-group > h2::after {
  content: "";
  height: 2px;
  background: rgba(240, 74, 2, 0.45);
}

.rook-prep-group > h2 svg {
  color: var(--rook-orange);
  font-size: 56px;
  padding: 12px;
  border-radius: 999px;
  background: var(--rook-soft);
}

.rook-prep-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.rook-prep-grid--single {
  grid-template-columns: 1fr;
}

.rook-prep-grid article {
  display: grid;
  grid-template-columns: 42px 88px 1fr;
  gap: 20px;
  align-items: center;
  padding: 28px;
  border: 1px solid var(--rook-line);
  border-radius: var(--rook-radius);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.rook-prep-grid article > svg {
  color: var(--rook-orange);
  font-size: 82px;
}

.rook-prep-note {
  margin-top: 36px;
  padding: 28px;
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 22px;
  align-items: center;
  background: #fff3eb;
  border-radius: var(--rook-radius);
}

.rook-prep-note svg {
  color: var(--rook-orange);
  font-size: 70px;
}

.rook-prep-note h3 {
  margin: 0;
  font-family: var(--rook-heading-font);
  font-size: 34px;
  text-transform: uppercase;
}

.rook-policies {
  text-align: center;
}

.rook-policy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  max-width: 1060px;
  margin: 0 auto;
}

.rook-policy-grid article {
  padding: 52px 46px;
  border: 1px solid var(--rook-line);
  border-radius: var(--rook-radius);
}

.rook-policy-grid svg {
  width: 104px;
  height: 104px;
  padding: 22px;
  border-radius: 999px;
  background: var(--rook-soft);
  color: var(--rook-orange);
}

.rook-policy-grid h3 {
  font-size: 42px;
}

.rook-policy-grid a {
  display: inline-block;
  margin-top: 20px;
  color: var(--rook-orange);
  font-weight: 800;
  text-transform: uppercase;
}

.rook-help-panel {
  max-width: 1260px;
  margin: 28px auto 0;
  padding: 24px 46px;
  display: grid;
  grid-template-columns: 160px 1fr auto;
  gap: 34px;
  align-items: center;
  text-align: left;
  background: var(--rook-soft);
  border: 1px solid var(--rook-line);
  border-radius: var(--rook-radius);
}

.rook-help-panel > img,
.rook-help-panel > svg {
  width: 138px;
  height: 118px;
  max-width: 100%;
  object-fit: contain;
}

.rook-help-panel > svg {
  font-size: 130px;
}

@media (max-width: 1180px) {
  .rook-header {
    padding: 16px 26px;
  }

  .rook-nav,
  .rook-call-link span {
    display: none;
  }

  .rook-menu-toggle {
    display: block;
  }

  .rook-mobile-menu.is-open {
    display: block;
  }

  .rook-hero__quote {
    right: 30px;
  }

  .rook-service-cards,
  .rook-pricing-why > div {
    grid-template-columns: repeat(2, 1fr);
  }

  .rook-pricing-panel__grid,
  .rook-pricing-package,
  .rook-contact-section,
  .rook-info-panels,
  .rook-method-compare > div,
  .rook-one-visit {
    grid-template-columns: 1fr;
  }

  .rook-pricing-desktop {
    display: none;
  }

  .rook-pricing-mobile {
    display: block;
  }

  .rook-pricing-mobile details {
    border: 1px solid var(--rook-line);
    margin-bottom: 10px;
    border-radius: var(--rook-radius);
    overflow: hidden;
  }

  .rook-pricing-mobile summary {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 22px;
    background: var(--rook-black);
    color: var(--rook-white);
    font-family: var(--rook-heading-font);
    font-size: 26px;
    cursor: pointer;
  }

  .rook-pricing-mobile summary em {
    color: var(--rook-orange);
    font-style: normal;
  }

  .rook-pricing-panel__grid article {
    border-right: 0;
    border-bottom: 1px solid var(--rook-line);
  }

  .rook-method-compare > div > span {
    margin: 0 auto;
  }

  .rook-one-visit {
    margin-left: 56px;
    margin-right: 56px;
  }
}

@media (max-width: 780px) {
  body.rook-site {
    font-size: 18px;
  }

  .rook-page {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .rook-header {
    --rook-header-pad-y: 10px;
    --rook-header-content-height: 64px;
    min-height: 64px;
    padding: var(--rook-header-pad-y) 18px;
  }

  .rook-logo__mark {
    width: 38px;
    height: 38px;
  }

  .rook-header .rook-logo__mark {
    width: clamp(52px, 16vw, 76px);
    height: clamp(52px, 16vw, 76px);
    margin-top: calc(var(--rook-header-pad-y) * -1);
    margin-bottom: calc(var(--rook-header-pad-y) * -1);
  }

  .rook-logo__name {
    font-size: 34px;
  }

  .rook-logo__tag {
    font-size: 11px;
  }

  .rook-logo__wordmark {
    width: clamp(112px, 32vw, 152px);
  }

  .rook-logo--footer .rook-logo__wordmark {
    width: clamp(132px, 38vw, 175px);
  }

  .rook-header__actions .rook-button {
    display: none;
  }

  .rook-call-link {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 0;
  }

  .rook-menu-toggle {
    width: 42px;
    height: 42px;
    border: 0;
  }

  .rook-hero {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .rook-hero__copy {
    min-height: 260px;
    padding: 30px 96px 28px 28px;
    clip-path: polygon(0 0, 72% 0, 62% 100%, 0 100%);
    grid-row: 1;
    grid-column: 1;
  }

  .rook-hero__copy h1 {
    font-size: var(--rook-hero-title-mobile-size);
  }

  .rook-hero__copy p:not(.rook-eyebrow) {
    font-size: 20px;
    max-width: 210px;
  }

  .rook-eyebrow {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .rook-rule {
    width: 70px;
    margin-top: 12px;
  }

  .rook-hero__actions {
    margin-top: 18px;
  }

  .rook-hero__actions .rook-button {
    min-height: 42px;
    font-size: 18px;
    padding: 12px 18px 10px;
  }

  .rook-hero__media {
    grid-row: 1;
    grid-column: 1;
  }

  .rook-hero__media .rook-image {
    min-height: 260px;
    padding-left: 42%;
  }

  .rook-hero__media .rook-image span {
    display: none;
  }

  .rook-hero__quote {
    position: static;
    width: auto;
    transform: none;
  }

  .rook-quote-card {
    padding: 18px;
  }

  .rook-quote-card h2 {
    font-size: 30px;
  }

  .rook-service-row,
  .rook-simple-process,
  .rook-package,
  .rook-why,
  .rook-hoa-teaser,
  .rook-method,
  .rook-quote-band,
  .rook-prep-preview,
  .rook-service-cards,
  .rook-exact-price,
  .rook-pricing-steps,
  .rook-pricing,
  .rook-process-cards,
  .rook-info-panels,
  .rook-hoa-intro,
  .rook-feature-cards,
  .rook-method-compare,
  .rook-policies,
  .rook-prep,
  .rook-contact-section,
  .rook-pricing-why {
    padding-left: 24px;
    padding-right: 24px;
  }

  .rook-service-row h2,
  .rook-simple-process h2,
  .rook-section-heading h2,
  .rook-prep-preview h2,
  .rook-pricing__header h2,
  .rook-policies h2,
  .rook-method h2 {
    font-size: 34px;
    text-align: left;
  }

  .rook-service-row__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .rook-service-row__grid a {
    min-height: 88px;
    grid-template-columns: 58px 1fr auto;
    align-items: center;
    justify-items: start;
    text-align: left;
    gap: 16px;
    border-right: 0;
    border-bottom: 1px solid var(--rook-line);
    padding: 15px 0;
  }

  .rook-service-row__grid a::after {
    content: ">";
    color: var(--rook-orange);
    font-size: 34px;
    font-weight: 800;
  }

  .rook-service-row__grid svg {
    width: 48px;
    height: 48px;
    margin: 0;
    grid-row: span 2;
  }

  .rook-service-row__grid span {
    grid-column: 2;
    margin: -20px 0 0;
  }

  .rook-simple-process__grid,
  .rook-package,
  .rook-why__items,
  .rook-hoa-teaser,
  .rook-method__grid,
  .rook-quote-band,
  .rook-prep-preview > div,
  .rook-service-cards,
  .rook-exact-price,
  .rook-pricing-steps > div,
  .rook-process-cards__grid,
  .rook-info-panels,
  .rook-hoa-intro,
  .rook-feature-cards,
  .rook-prep-grid,
  .rook-policy-grid,
  .rook-help-panel,
  .rook-form-grid,
  .rook-footer,
  .rook-footer__columns {
    grid-template-columns: 1fr;
  }

  .rook-step-mini {
    grid-template-columns: 44px 1fr;
    padding: 18px;
    background: var(--rook-white);
    color: var(--rook-black);
  }

  .rook-step-mini__icon {
    display: none;
  }

  .rook-step-mini__number {
    width: 44px;
    height: 44px;
    grid-row: span 2;
    background: var(--rook-black);
  }

  .rook-package__copy h2,
  .rook-hoa-teaser h2,
  .rook-exact-price h2,
  .rook-pricing-package h2,
  .rook-one-visit h2,
  .rook-contact-help h2,
  .rook-contact-form h2,
  .rook-help-panel h3 {
    font-size: 42px;
  }

  .rook-package__mosaic {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 140px;
    transform: none;
  }

  .rook-mosaic-card .rook-image {
    transform: none;
  }

  .rook-why--orange {
    padding: 24px;
    grid-template-columns: 1fr;
    gap: 16px;
    background: var(--rook-orange);
    color: var(--rook-white);
  }

  .rook-why__title {
    font-size: 34px;
  }

  .rook-why__bear {
    display: none;
  }

  .rook-why article,
  .rook-why--cards article {
    background: var(--rook-white);
    color: var(--rook-black);
    border: 1px solid var(--rook-line);
    padding: 20px;
    min-height: auto;
  }

  .rook-why--orange article::before {
    display: none;
  }

  .rook-why--orange .rook-svg {
    width: 42px;
    height: 42px;
  }

  .rook-method__grid {
    gap: 18px;
  }

  .rook-method article {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .rook-method__vs {
    margin: 0 auto;
  }

  .rook-quote-band__intro {
    grid-template-columns: 56px 1fr;
  }

  .rook-quote-band__intro svg {
    font-size: 54px;
  }

  .rook-quote-band__form {
    grid-template-columns: 1fr;
  }

  .rook-quote-band__form button {
    width: 100%;
    min-width: 0;
  }

  .rook-prep-preview > div {
    gap: 10px;
  }

  .rook-prep-preview article {
    grid-template-columns: 44px 1fr auto;
  }

  .rook-prep-preview article::after {
    content: ">";
    color: var(--rook-orange);
    font-size: 28px;
  }

  .rook-prep-preview article svg {
    display: none;
  }

  .rook-final-slogan h2 {
    font-size: 44px;
  }

  .rook-exact-price {
    margin: 24px;
  }

  .rook-exact-price__icon {
    margin: -72px 0 0;
  }

  .rook-pricing-steps {
    margin: 16px 24px;
  }

  .rook-pricing__header {
    display: block;
  }

  .rook-pricing-panel__grid {
    grid-template-columns: 1fr;
  }

  .rook-pricing-package {
    margin: 0 24px 24px;
  }

  .rook-pricing-package__icons,
  .rook-one-visit__services {
    grid-template-columns: repeat(2, 1fr);
  }

  .rook-info-panel,
  .rook-contact-help article,
  .rook-prep-grid article,
  .rook-prep-note {
    grid-template-columns: 1fr;
  }

  .rook-info-panel > svg,
  .rook-hoa-intro > svg {
    font-size: 82px;
  }

  .rook-method-compare .rook-image {
    display: none;
  }

  .rook-one-visit {
    margin: 0 24px 36px;
  }

  .rook-prep-grid article > svg {
    font-size: 64px;
  }

  .rook-policy-grid article {
    padding: 34px 24px;
  }

  .rook-help-panel {
    padding: 22px;
    text-align: center;
  }

  .rook-help-panel > img,
  .rook-help-panel > svg {
    margin: 0 auto;
    width: 118px;
    height: 102px;
  }

  .rook-help-panel > svg {
    font-size: 100px;
  }

  .rook-footer {
    padding: 32px 24px 86px;
    gap: 22px;
  }

  .rook-footer__brand {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px 20px;
  }

  .rook-footer__brand p,
  .rook-socials,
  .rook-footer__domain {
    grid-column: 1 / -1;
  }

  .rook-footer-group {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    padding: 0;
  }

  .rook-footer-group summary {
    padding: 14px 0;
    position: relative;
  }

  .rook-footer-group summary::after {
    content: "+";
    position: absolute;
    right: 0;
  }

  .rook-footer-group:not([open]) a {
    display: none;
  }

  .rook-footer__contact {
    display: none;
  }

  .rook-sticky-actions {
    position: fixed;
    z-index: 50;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--rook-black);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }

  .rook-sticky-actions a {
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--rook-white);
    font-family: var(--rook-heading-font);
    font-size: 20px;
    text-transform: uppercase;
  }

  .rook-sticky-actions a:last-child {
    background: var(--rook-orange);
  }
}


/* v1.1.10: home Why ROOK strip separator + icon cleanup only */
.rook-why--orange .rook-why__items article {
  border-left: 0 !important;
}

.rook-why--orange .rook-why__items article::before {
  top: 50%;
  height: 72px !important;
  max-height: 72px !important;
  min-height: 0 !important;
  transform: translateY(-50%);
}

.rook-why--orange .rook-svg--star {
  width: 44px;
  height: 44px;
}


/* v1.1.14: home method supporting text contrast refinement only */
.rook-method--dark {
  padding-top: 40px;
  padding-bottom: 46px;
}

.rook-method--dark .rook-method__grid {
  width: min(100%, 1060px);
  max-width: 1060px;
  grid-template-columns: minmax(0, 1fr) 78px minmax(0, 1fr);
  gap: clamp(28px, 4vw, 52px);
  justify-items: stretch;
}

.rook-method--dark .rook-method__grid > article {
  width: min(100%, 430px);
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 24px;
}

.rook-method--dark .rook-method__grid > article:first-of-type {
  justify-self: end;
}

.rook-method--dark .rook-method__grid > article:last-of-type {
  justify-self: start;
}

.rook-method--dark article svg,
.rook-method--dark .rook-method__vs {
  width: 78px;
  height: 78px;
  background: var(--rook-orange);
  color: var(--rook-white);
}

.rook-method--dark article svg {
  padding: 17px;
}

.rook-method--dark .rook-method__vs {
  justify-self: center;
  align-self: center;
  font-size: 40px;
}

.rook-method--dark h3 {
  font-size: clamp(34px, 2.6vw, 42px);
  margin-bottom: 8px;
}

.rook-method--dark p {
  max-width: 360px;
  color: var(--rook-white);
  font-size: clamp(18px, 1.25vw, 21px);
  line-height: 1.18;
  font-weight: 400;
  letter-spacing: 0.01em;
}

@media (max-width: 900px) {
  .rook-method--dark .rook-method__grid {
    max-width: 520px;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .rook-method--dark .rook-method__grid > article,
  .rook-method--dark .rook-method__grid > article:first-of-type,
  .rook-method--dark .rook-method__grid > article:last-of-type {
    width: 100%;
    justify-self: stretch;
    grid-template-columns: 74px 1fr;
    gap: 18px;
  }

  .rook-method--dark article svg,
  .rook-method--dark .rook-method__vs {
    width: 64px;
    height: 64px;
  }

  .rook-method--dark article svg {
    padding: 14px;
  }

  .rook-method--dark .rook-method__vs {
    margin: 0;
    justify-self: center;
    font-size: 32px;
  }

  .rook-method--dark h3 {
    font-size: 34px;
  }

  .rook-method--dark p {
    font-size: 18px;
  }
}

/* v1.1.12: home Right Method balance and icon refinement only */
.rook-method--dark .rook-method__grid {
  width: min(100%, 1240px);
  max-width: 1240px;
  grid-template-columns: minmax(0, 1fr) 96px minmax(0, 1fr);
  gap: clamp(38px, 4.2vw, 64px);
  justify-items: stretch;
  align-items: center;
}

.rook-method--dark .rook-method__grid > article {
  width: min(100%, 510px);
  grid-template-columns: clamp(100px, 7.3vw, 126px) minmax(0, 1fr);
  gap: clamp(24px, 2.2vw, 34px);
  align-items: center;
}

.rook-method--dark .rook-method__grid > article:first-of-type {
  justify-self: end;
}

.rook-method--dark .rook-method__grid > article:last-of-type {
  justify-self: start;
}

.rook-method--dark article svg {
  width: clamp(100px, 7.3vw, 126px);
  height: clamp(100px, 7.3vw, 126px);
  padding: clamp(24px, 1.9vw, 30px);
  background: var(--rook-orange);
  color: var(--rook-white);
  border-radius: 999px;
}

.rook-method--dark .rook-method__vs {
  width: 96px;
  height: auto;
  min-height: 0;
  padding: 0;
  background: transparent;
  color: var(--rook-orange);
  border-radius: 0;
  justify-self: center;
  align-self: center;
  font-size: clamp(42px, 3.2vw, 56px);
  line-height: .9;
}

.rook-method--dark h3 {
  font-size: clamp(42px, 3.2vw, 56px);
  margin-bottom: 12px;
}

.rook-method--dark p {
  max-width: 420px;
  font-size: clamp(21px, 1.45vw, 26px);
  line-height: 1.16;
  font-weight: 600;
}

@media (max-width: 900px) {
  .rook-method--dark .rook-method__grid {
    width: min(100%, 560px);
    max-width: 560px;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .rook-method--dark .rook-method__grid > article,
  .rook-method--dark .rook-method__grid > article:first-of-type,
  .rook-method--dark .rook-method__grid > article:last-of-type {
    width: 100%;
    justify-self: stretch;
    grid-template-columns: 86px 1fr;
    gap: 18px;
  }

  .rook-method--dark article svg {
    width: 78px;
    height: 78px;
    padding: 18px;
  }

  .rook-method--dark .rook-method__vs {
    width: auto;
    font-size: 38px;
    margin: -2px 0 0;
  }

  .rook-method--dark h3 {
    font-size: 36px;
    margin-bottom: 8px;
  }

  .rook-method--dark p {
    font-size: 19px;
    max-width: 100%;
  }
}

/* v1.1.13: method SVG asset replacement */
:where(.rook-method) article .rook-method__icon {
  width: 90px;
  height: 90px;
  padding: 18px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--rook-white);
  flex: 0 0 auto;
}

:where(.rook-method) article .rook-method__icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* v1.1.13: home method SVG asset replacement only */
.rook-method--dark article .rook-method__icon {
  width: clamp(112px, 7.8vw, 140px);
  height: clamp(112px, 7.8vw, 140px);
  padding: clamp(22px, 1.65vw, 28px);
  display: inline-grid;
  place-items: center;
  background: var(--rook-orange);
  color: var(--rook-white);
  border-radius: 999px;
  flex: 0 0 auto;
}

.rook-method--dark article .rook-method__icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.rook-method--dark article .rook-method__icon--soft-wash img {
  width: 92%;
  height: 92%;
}

.rook-method--dark article .rook-method__icon--pressure-wash img {
  width: 88%;
  height: 88%;
}

.rook-method--dark article > .rook-method__icon + div {
  min-width: 0;
}

@media (max-width: 900px) {
  .rook-method--dark article .rook-method__icon {
    width: 82px;
    height: 82px;
    padding: 17px;
  }

  .rook-method--dark article .rook-method__icon--soft-wash img {
    width: 92%;
    height: 92%;
  }

  .rook-method--dark article .rook-method__icon--pressure-wash img {
    width: 88%;
    height: 88%;
  }
}

.rook-method--dark .rook-method__grid > article {
  grid-template-columns: clamp(112px, 7.8vw, 140px) minmax(0, 1fr);
}

@media (max-width: 900px) {
  .rook-method--dark .rook-method__grid > article,
  .rook-method--dark .rook-method__grid > article:first-of-type,
  .rook-method--dark .rook-method__grid > article:last-of-type {
    grid-template-columns: 82px minmax(0, 1fr);
  }
}

/* v1.1.14: home method supporting text contrast only */
.rook-method--dark p {
  font-weight: 400;
  letter-spacing: 0.005em;
}


/* v1.1.15: home method supporting copy size reduction only */
.rook-method--dark p {
  font-size: clamp(17px, 1.16vw, 21px);
  line-height: 1.2;
}

@media (max-width: 900px) {
  .rook-method--dark p {
    font-size: 16px;
  }
}


/* v1.1.16: supplied service SVG icon alignment only */
.rook-svg--asset {
  overflow: visible;
}

.rook-service-row__grid .rook-svg--asset {
  width: 64px;
  height: 64px;
}

@media (max-width: 780px) {
  .rook-service-row__grid .rook-svg--asset {
    width: 48px;
    height: 48px;
  }
}


/* v1.1.17: service row exterior wall SVG + icon/title breathing room only */
.rook-service-row__grid svg {
  margin-bottom: 20px;
}

@media (max-width: 780px) {
  .rook-service-row__grid svg {
    margin-bottom: 14px;
  }
}

/* Home How ROOK Works refinement: larger icons/numbers and more balanced left-aligned composition */
@media (min-width: 901px) {
  .rook-simple-process--orange .rook-simple-process__grid {
    align-items: stretch;
    gap: clamp(28px, 3.2vw, 56px);
    margin-top: 32px;
  }

  .rook-simple-process--orange .rook-step-mini {
    grid-template-columns: clamp(100px, 7vw, 124px) minmax(0, 1fr);
    grid-template-rows: auto auto;
    grid-template-areas:
      "icon number"
      "icon copy";
    align-items: center;
    column-gap: clamp(20px, 2vw, 30px);
    row-gap: 10px;
    text-align: left;
  }

  .rook-simple-process--orange .rook-step-mini__icon {
    grid-area: icon;
    align-self: center;
    width: clamp(92px, 6.8vw, 116px);
    height: clamp(92px, 6.8vw, 116px);
    font-size: clamp(44px, 3vw, 54px);
  }

  .rook-simple-process--orange .rook-step-mini__icon svg {
    width: clamp(42px, 2.6vw, 52px);
    height: clamp(42px, 2.6vw, 52px);
  }

  .rook-simple-process--orange .rook-step-mini__number {
    grid-area: number;
    width: auto;
    height: auto;
    display: block;
    justify-self: start;
    align-self: end;
    border-radius: 0;
    background: transparent;
    color: var(--rook-white);
    font-family: var(--rook-heading-font);
    font-size: clamp(42px, 2.9vw, 58px);
    font-weight: 400;
    line-height: 0.82;
    letter-spacing: 0.03em;
  }

  .rook-simple-process--orange .rook-step-mini > div {
    grid-area: copy;
    align-self: start;
    text-align: left;
  }

  .rook-simple-process--orange .rook-step-mini strong {
    display: block;
    text-align: left;
    font-size: clamp(28px, 2vw, 40px);
    line-height: 0.95;
  }

  .rook-simple-process--orange .rook-step-mini p {
    margin-top: 12px;
    font-size: clamp(20px, 1.22vw, 26px);
    font-weight: 400;
    line-height: 1.16;
  }
}

/* v1.1.44: Secondary page hero button crop fix */
@media (min-width: 781px) {
  .rook-hero--services-hero .rook-hero__actions,
  .rook-hero--how-hero .rook-hero__actions,
  .rook-hero--hoa-hero .rook-hero__actions,
  .rook-hero--about-hero .rook-hero__actions {
    gap: 14px;
    flex-wrap: nowrap;
    max-width: 430px;
  }

  .rook-hero--services-hero .rook-hero__actions .rook-button,
  .rook-hero--how-hero .rook-hero__actions .rook-button,
  .rook-hero--hoa-hero .rook-hero__actions .rook-button,
  .rook-hero--about-hero .rook-hero__actions .rook-button {
    min-height: 52px;
    padding: 15px 20px 13px;
    font-size: clamp(20px, 1.55vw, 24px);
  }

  .rook-hero--services-hero .rook-hero__actions .rook-button--outline,
  .rook-hero--how-hero .rook-hero__actions .rook-button--outline,
  .rook-hero--hoa-hero .rook-hero__actions .rook-button--outline,
  .rook-hero--about-hero .rook-hero__actions .rook-button--outline {
    padding-left: 18px;
    padding-right: 18px;
  }
}

@media (min-width: 781px) and (max-width: 1100px) {
  .rook-hero--services-hero .rook-hero__actions,
  .rook-hero--how-hero .rook-hero__actions,
  .rook-hero--hoa-hero .rook-hero__actions,
  .rook-hero--about-hero .rook-hero__actions {
    max-width: 360px;
    flex-wrap: wrap;
  }
}

/* v1.1.44: Secondary page hero body text clip fix */
@media (min-width: 781px) {
  .rook-hero--services-hero .rook-hero__copy p:not(.rook-eyebrow),
  .rook-hero--how-hero .rook-hero__copy p:not(.rook-eyebrow),
  .rook-hero--hoa-hero .rook-hero__copy p:not(.rook-eyebrow),
  .rook-hero--about-hero .rook-hero__copy p:not(.rook-eyebrow) {
    max-width: 370px;
    line-height: 1.18;
  }
}

@media (min-width: 1200px) {
  .rook-hero--services-hero .rook-hero__copy p:not(.rook-eyebrow),
  .rook-hero--how-hero .rook-hero__copy p:not(.rook-eyebrow),
  .rook-hero--hoa-hero .rook-hero__copy p:not(.rook-eyebrow),
  .rook-hero--about-hero .rook-hero__copy p:not(.rook-eyebrow) {
    max-width: 390px;
  }
}



/* v1.1.28: Home page subtle hover/micro-interaction effects only */
@media (hover: hover) and (pointer: fine) {
  .home .rook-button,
  .home .rook-quote-card button,
  .home .rook-quote-band__form button {
    transition:
      transform 180ms ease,
      box-shadow 180ms ease,
      background-color 180ms ease,
      border-color 180ms ease,
      color 180ms ease;
    will-change: transform;
  }

  .home .rook-button span[aria-hidden="true"],
  .home .rook-quote-card button span[aria-hidden="true"],
  .home .rook-quote-band__form button span[aria-hidden="true"] {
    display: inline-block;
    transition: transform 180ms ease;
  }

  .home .rook-button:hover,
  .home .rook-quote-card button:hover,
  .home .rook-quote-band__form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.22);
  }

  .home .rook-button:hover span[aria-hidden="true"],
  .home .rook-quote-card button:hover span[aria-hidden="true"],
  .home .rook-quote-band__form button:hover span[aria-hidden="true"] {
    transform: translateX(4px);
  }

  .home .rook-button--black:hover {
    background: var(--rook-white);
    border-color: var(--rook-white);
    color: var(--rook-black);
  }

  .home .rook-button--orange:hover,
  .home .rook-quote-card button:hover {
    background: #d94102;
    border-color: #d94102;
  }

  .home .rook-quote-band__form button:hover {
    background: var(--rook-white);
    border-color: var(--rook-white);
    color: var(--rook-black);
  }

  .home .rook-button--outline:hover,
  .home .rook-button--outline-light:hover {
    background: var(--rook-white);
    border-color: var(--rook-white);
    color: var(--rook-black);
  }

  .home .rook-quote-card input,
  .home .rook-quote-band__form input {
    transition: box-shadow 180ms ease, border-color 180ms ease;
  }

  .home .rook-quote-card input:focus,
  .home .rook-quote-band__form input:focus {
    outline: none;
    border-color: var(--rook-orange);
    box-shadow: 0 0 0 3px rgba(240, 74, 2, 0.22);
  }

  .home .rook-service-row__grid a {
    position: relative;
    transition: transform 180ms ease, background-color 180ms ease;
    will-change: transform;
  }

  .home .rook-service-row__grid a svg,
  .home .rook-service-row__grid a strong,
  .home .rook-service-row__grid a span {
    transition: transform 180ms ease, color 180ms ease, opacity 180ms ease;
  }

  .home .rook-service-row__grid a:hover {
    transform: translateY(-5px);
    background: rgba(240, 74, 2, 0.035);
  }

  .home .rook-service-row__grid a:hover svg {
    transform: translateY(-4px) scale(1.06);
  }

  .home .rook-service-row__grid a:hover strong {
    color: var(--rook-orange);
  }

  .home .rook-simple-process--orange .rook-step-mini,
  .home .rook-simple-process--orange .rook-step-mini__icon,
  .home .rook-simple-process--orange .rook-step-mini__number {
    transition: transform 180ms ease, box-shadow 180ms ease;
  }

  .home .rook-simple-process--orange .rook-step-mini:hover {
    transform: translateY(-4px);
  }

  .home .rook-simple-process--orange .rook-step-mini:hover .rook-step-mini__icon {
    transform: scale(1.04);
    box-shadow: 0 14px 24px rgba(0, 0, 0, 0.2);
  }

  .home .rook-simple-process--orange .rook-step-mini:hover .rook-step-mini__number {
    transform: translateY(-2px);
  }

  .home .rook-why--orange article,
  .home .rook-why--orange .rook-svg {
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .home .rook-why--orange article:hover {
    transform: translateY(-4px);
  }

  .home .rook-why--orange article:hover .rook-svg {
    transform: translateY(-3px) scale(1.05);
  }

  .rook-method--dark article,
  .rook-method--dark article .rook-method__icon,
  .rook-method--dark article .rook-method__icon img {
    transition: transform 180ms ease, box-shadow 180ms ease;
  }

  .rook-method--dark article:hover {
    transform: translateY(-4px);
  }

  .rook-method--dark article:hover .rook-method__icon {
    transform: scale(1.045);
    box-shadow: 0 14px 28px rgba(240, 74, 2, 0.24);
  }

  .rook-method--dark article:hover .rook-method__icon img {
    transform: scale(1.04);
  }

  .home .rook-mosaic-card .rook-image,
  .home .rook-mosaic-card span {
    transition: transform 220ms ease, opacity 220ms ease, background-color 220ms ease;
    will-change: transform;
  }

  .home .rook-mosaic-card:hover .rook-image {
    transform: skewX(6deg) scale(1.14);
  }

  .home .rook-mosaic-card:hover span {
    transform: translateY(-3px);
    background: rgba(240, 74, 2, 0.92);
  }
}

.home .rook-button:focus-visible,
.home .rook-quote-card button:focus-visible,
.home .rook-quote-band__form button:focus-visible,
.home .rook-service-row__grid a:focus-visible {
  outline: 3px solid rgba(240, 74, 2, 0.45);
  outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
  .home .rook-button,
  .home .rook-button *,
  .home .rook-quote-card button,
  .home .rook-quote-band__form button,
  .home .rook-service-row__grid a,
  .home .rook-service-row__grid a *,
  .home .rook-simple-process--orange .rook-step-mini,
  .home .rook-simple-process--orange .rook-step-mini *,
  .home .rook-why--orange article,
  .home .rook-why--orange article *,
  .rook-method--dark article,
  .rook-method--dark article *,
  .home .rook-mosaic-card .rook-image,
  .home .rook-mosaic-card span {
    transition: none !important;
    transform: none !important;
  }
}


/* v1.1.29: Site-wide subtle hover/micro-interaction effects, matching Home page motion system */
@media (hover: hover) and (pointer: fine) {
  .rook-button,
  .rook-quote-card button,
  .rook-quote-band__form button,
  .rook-contact-form button,
  .rook-pricing-tabs button,
  .rook-nav a,
  .rook-call-link,
  .rook-mobile-menu a {
    transition:
      transform 180ms ease,
      box-shadow 180ms ease,
      background-color 180ms ease,
      border-color 180ms ease,
      color 180ms ease,
      opacity 180ms ease;
    will-change: transform;
  }

  .rook-button span[aria-hidden="true"],
  .rook-quote-card button span[aria-hidden="true"],
  .rook-quote-band__form button span[aria-hidden="true"],
  .rook-contact-form button span[aria-hidden="true"] {
    display: inline-block;
    transition: transform 180ms ease;
  }

  .rook-button:hover,
  .rook-quote-card button:hover,
  .rook-quote-band__form button:hover,
  .rook-contact-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.22);
  }

  .rook-button:hover span[aria-hidden="true"],
  .rook-quote-card button:hover span[aria-hidden="true"],
  .rook-quote-band__form button:hover span[aria-hidden="true"],
  .rook-contact-form button:hover span[aria-hidden="true"] {
    transform: translateX(4px);
  }

  .rook-button--black:hover {
    background: var(--rook-white);
    border-color: var(--rook-white);
    color: var(--rook-black);
  }

  .rook-button--orange:hover,
  .rook-quote-card button:hover,
  .rook-quote-band__form button:hover,
  .rook-contact-form button:hover {
    background: #d94102;
    border-color: #d94102;
  }

  .rook-button--outline:hover,
  .rook-button--outline-light:hover {
    background: var(--rook-white);
    border-color: var(--rook-white);
    color: var(--rook-black);
  }

  .rook-button--outline-orange:hover {
    background: var(--rook-orange);
    border-color: var(--rook-orange);
    color: var(--rook-white);
  }

  .rook-nav a:hover,
  .rook-call-link:hover,
  .rook-mobile-menu a:hover {
    transform: translateY(-2px);
    color: var(--rook-orange);
  }

  .rook-quote-card input,
  .rook-quote-band__form input,
  .rook-contact-form input,
  .rook-contact-form textarea {
    transition: box-shadow 180ms ease, border-color 180ms ease, background-color 180ms ease;
  }

  .rook-quote-card input:focus,
  .rook-quote-band__form input:focus,
  .rook-contact-form input:focus,
  .rook-contact-form textarea:focus {
    outline: none;
    border-color: var(--rook-orange);
    box-shadow: 0 0 0 3px rgba(240, 74, 2, 0.22);
  }

  .rook-service-row__grid a,
  .rook-service-cards article,
  .rook-pricing-steps article,
  .rook-pricing-panel__grid article,
  .rook-pricing-package,
  .rook-pricing-why article,
  .rook-process-cards article,
  .rook-feature-cards article,
  .rook-prep-preview article,
  .rook-contact-help article,
  .rook-prep-grid article,
  .rook-policy-grid article,
  .rook-pricing-mobile details {
    transition:
      transform 180ms ease,
      box-shadow 180ms ease,
      border-color 180ms ease,
      background-color 180ms ease;
    will-change: transform;
  }

  .rook-service-row__grid a svg,
  .rook-service-row__grid a strong,
  .rook-service-row__grid a span,
  .rook-service-cards__icon,
  .rook-service-cards .rook-image,
  .rook-pricing-steps svg,
  .rook-pricing-panel__grid svg,
  .rook-pricing-package .rook-image,
  .rook-pricing-package__icons svg,
  .rook-pricing-why svg,
  .rook-process-cards svg,
  .rook-feature-cards svg,
  .rook-prep-preview svg,
  .rook-contact-help svg,
  .rook-prep-grid article > svg,
  .rook-policy-grid svg {
    transition: transform 180ms ease, color 180ms ease, opacity 180ms ease, box-shadow 180ms ease;
    will-change: transform;
  }

  .rook-service-row__grid a:hover,
  .rook-service-cards article:hover,
  .rook-pricing-steps article:hover,
  .rook-pricing-panel__grid article:hover,
  .rook-pricing-package:hover,
  .rook-pricing-why article:hover,
  .rook-process-cards article:hover,
  .rook-feature-cards article:hover,
  .rook-prep-preview article:hover,
  .rook-contact-help article:hover,
  .rook-prep-grid article:hover,
  .rook-policy-grid article:hover,
  .rook-pricing-mobile details:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
  }

  .rook-service-row__grid a:hover {
    background: rgba(240, 74, 2, 0.035);
  }

  .rook-service-row__grid a:hover svg,
  .rook-service-cards article:hover .rook-service-cards__icon,
  .rook-pricing-steps article:hover svg,
  .rook-pricing-panel__grid article:hover svg,
  .rook-pricing-package:hover .rook-pricing-package__icons svg,
  .rook-pricing-why article:hover svg,
  .rook-process-cards article:hover svg,
  .rook-feature-cards article:hover svg,
  .rook-prep-preview article:hover svg,
  .rook-contact-help article:hover svg,
  .rook-prep-grid article:hover > svg,
  .rook-policy-grid article:hover svg {
    transform: translateY(-4px) scale(1.06);
  }

  .rook-service-row__grid a:hover strong,
  .rook-service-cards article:hover h3,
  .rook-pricing-steps article:hover h3,
  .rook-pricing-panel__grid article:hover h3,
  .rook-pricing-why article:hover h3,
  .rook-process-cards article:hover h3,
  .rook-feature-cards article:hover h3,
  .rook-prep-preview article:hover h3,
  .rook-contact-help article:hover h3,
  .rook-prep-grid article:hover h3,
  .rook-policy-grid article:hover h3 {
    color: var(--rook-orange);
  }

  .rook-service-cards article:hover .rook-image,
  .rook-pricing-package:hover .rook-image {
    transform: scale(1.045);
  }

  .rook-mosaic-card .rook-image,
  .rook-mosaic-card span {
    transition: transform 220ms ease, opacity 220ms ease, background-color 220ms ease;
    will-change: transform;
  }

  .rook-mosaic-card:hover .rook-image {
    transform: skewX(6deg) scale(1.14);
  }

  .rook-mosaic-card:hover span {
    transform: translateY(-3px);
    background: rgba(240, 74, 2, 0.92);
  }

  .rook-pricing-tabs button:hover {
    transform: translateY(-2px);
  }
}

.rook-button:focus-visible,
.rook-quote-card button:focus-visible,
.rook-quote-band__form button:focus-visible,
.rook-contact-form button:focus-visible,
.rook-service-row__grid a:focus-visible,
.rook-nav a:focus-visible,
.rook-call-link:focus-visible,
.rook-mobile-menu a:focus-visible,
.rook-pricing-tabs button:focus-visible,
.rook-pricing-roof a:focus-visible,
.rook-policy-grid a:focus-visible {
  outline: 3px solid rgba(240, 74, 2, 0.45);
  outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
  .rook-button,
  .rook-button *,
  .rook-quote-card button,
  .rook-quote-card button *,
  .rook-quote-band__form button,
  .rook-quote-band__form button *,
  .rook-contact-form button,
  .rook-contact-form button *,
  .rook-nav a,
  .rook-call-link,
  .rook-mobile-menu a,
  .rook-service-row__grid a,
  .rook-service-row__grid a *,
  .rook-service-cards article,
  .rook-service-cards article *,
  .rook-pricing-steps article,
  .rook-pricing-steps article *,
  .rook-pricing-panel__grid article,
  .rook-pricing-panel__grid article *,
  .rook-pricing-package,
  .rook-pricing-package *,
  .rook-pricing-why article,
  .rook-pricing-why article *,
  .rook-process-cards article,
  .rook-process-cards article *,
  .rook-feature-cards article,
  .rook-feature-cards article *,
  .rook-prep-preview article,
  .rook-prep-preview article *,
  .rook-contact-help article,
  .rook-contact-help article *,
  .rook-prep-grid article,
  .rook-prep-grid article *,
  .rook-policy-grid article,
  .rook-policy-grid article *,
  .rook-pricing-mobile details,
  .rook-mosaic-card .rook-image,
  .rook-mosaic-card span {
    transition: none !important;
    transform: none !important;
  }
}

/* v1.1.30: Site-wide scroll reveal and gentle parallax motion */
.rook-motion-ready .rook-scroll-reveal {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  transition:
    opacity 520ms ease,
    transform 520ms ease;
  transition-delay: var(--rook-reveal-delay, 0ms);
  will-change: opacity, transform;
}

.rook-motion-ready .rook-scroll-reveal--hero {
  transform: translate3d(0, 14px, 0);
}

.rook-motion-ready .rook-scroll-reveal--stagger {
  transform: translate3d(0, 16px, 0);
}

.rook-motion-ready .rook-scroll-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.rook-parallax-soft {
  transform: translate3d(0, var(--rook-parallax-y, 0), 0);
  transition: transform 120ms linear;
  will-change: transform;
}

@media (max-width: 780px) {
  .rook-parallax-soft {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .rook-motion-ready .rook-scroll-reveal,
  .rook-motion-ready .rook-scroll-reveal--hero,
  .rook-motion-ready .rook-scroll-reveal--stagger,
  .rook-parallax-soft {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* v1.1.32: Home Customer Preparation Preview card alignment only */
@media (min-width: 781px) {
  .home .rook-prep-preview {
    padding-top: 42px;
  }

  .home .rook-prep-preview > div {
    margin-top: 34px;
  }

  .home .rook-prep-preview article {
    grid-template-columns: 132px minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: 26px;
    row-gap: 2px;
    align-items: center;
    padding: 26px 28px;
    min-height: 156px;
  }

  .home .rook-prep-preview article > svg {
    grid-column: 1;
    grid-row: 1 / 3;
    width: 108px;
    height: 108px;
    font-size: 108px;
    justify-self: center;
  }

  .home .rook-prep-preview article > span {
    grid-column: 2;
    grid-row: 1;
    display: block;
    font-family: var(--rook-heading-font);
    font-size: 48px;
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: 0;
    color: var(--rook-black);
  }

  .home .rook-prep-preview article > div {
    grid-column: 2;
    grid-row: 2;
    align-self: start;
  }

  .home .rook-prep-preview h3 {
    font-size: 24px;
  }

  .home .rook-prep-preview p {
    margin-top: 4px;
  }
}

/* v1.1.34: Header/hero join correction only */
.rook-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 4px;
  background: var(--rook-black);
  pointer-events: none;
}

.rook-motion-ready .rook-hero.rook-scroll-reveal,
.rook-motion-ready .rook-hero.rook-scroll-reveal--hero,
.rook-motion-ready .rook-hero.rook-scroll-reveal.is-visible {
  transform: none;
}


/* v1.1.45: Mobile hero image height match only */
@media (max-width: 780px) {
  .rook-hero__media {
    align-self: stretch;
    height: 100%;
  }

  .rook-hero__media .rook-image {
    height: 100%;
    min-height: 100%;
  }
}

/* v1.1.49: Services page Why ROOK white background + black text only */
.rook-why--services-dark {
  background: var(--rook-white);
  color: var(--rook-black);
}

.rook-why--services-dark .rook-why__title,
.rook-why--services-dark h3,
.rook-why--services-dark p {
  color: var(--rook-black);
}

.rook-why--services-dark svg {
  color: var(--rook-orange);
}

.rook-why--services-dark .rook-why__items article::before {
  background: rgba(240, 74, 2, 0.34);
}

@media (hover: hover) and (pointer: fine) {
  .rook-why--services-dark article,
  .rook-why--services-dark .rook-svg {
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .rook-why--services-dark article:hover {
    transform: translateY(-4px);
  }

  .rook-why--services-dark article:hover .rook-svg {
    transform: translateY(-3px) scale(1.05);
  }
}

@media (prefers-reduced-motion: reduce) {
  .rook-why--services-dark article,
  .rook-why--services-dark article *,
  .rook-why--services-dark .rook-svg {
    transition: none !important;
    transform: none !important;
  }
}


/* v1.1.50: Pricing page exterior service pricing alignment only */
.rook-pricing .rook-price-item {
  display: flex;
  flex-direction: column;
}

.rook-pricing .rook-price-item strong {
  margin-top: auto;
}

.rook-pricing .rook-pricing-roof small {
  display: block;
  font-size: clamp(18px, 1.05vw, 21px);
  line-height: 1.22;
}

.rook-pricing .rook-pricing-roof a {
  font-size: clamp(18px, 1.05vw, 21px);
  line-height: 1.1;
}


/* v1.1.51: Pricing page tier icon centering + ordered reveal only */
.rook-pricing .rook-pricing-panel__grid article > svg {
  display: block;
  width: 56px;
  height: 56px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 22px;
}

.rook-pricing .rook-pricing-panel__grid .rook-pricing-roof > svg {
  margin-left: auto;
  margin-right: auto;
}

.rook-pricing .rook-pricing-panel__grid .rook-price-item > svg {
  justify-self: center;
  align-self: center;
}

/* v1.1.52: Pricing page Driveway + Exterior Wall icons switched to approved home-page SVG assets only */

/* v1.1.54: Services page service-card subtitle text slight size reduction only */
body.page-template-page-services .rook-service-cards p {
  font-size: 22px;
}

body.page-template-page-services .rook-service-cards small {
  font-size: 18px;
  line-height: 1.2;
}

/* v1.1.56: Pricing page exterior services header note size + remove view-all link only */
.rook-pricing__header p {
  font-size: 22px;
}


/* v1.1.57: Pricing page How ROOK Pricing Works layout refinement only */
.rook-pricing-steps {
  margin-top: 18px;
  padding: 24px clamp(28px, 3.4vw, 54px) 34px;
  background: var(--rook-white);
  border-color: rgba(0, 0, 0, 0.14);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.035);
}

.rook-pricing-steps h2 {
  margin-bottom: 22px;
  line-height: 1;
}

.rook-pricing-steps > div {
  gap: 0;
}

.rook-pricing-steps article {
  position: relative;
  grid-template-columns: clamp(88px, 6vw, 108px) minmax(0, 1fr);
  grid-template-rows: auto auto;
  grid-template-areas:
    "visual title"
    "visual body";
  column-gap: clamp(24px, 2.4vw, 40px);
  row-gap: 12px;
  align-items: start;
  min-height: 178px;
  padding: 14px clamp(24px, 3vw, 48px) 14px clamp(16px, 2vw, 30px);
}

.rook-pricing-steps article > span {
  position: absolute;
  top: -10px;
  left: clamp(22px, 2.4vw, 42px);
  z-index: 2;
  width: 44px;
  height: 44px;
  font-size: 20px;
  line-height: 1;
  box-shadow: 0 0 0 6px var(--rook-white);
}

.rook-pricing-steps svg {
  grid-area: visual;
  justify-self: center;
  align-self: start;
  width: 92px;
  height: 92px;
  margin-top: 22px;
  padding: 22px;
  color: var(--rook-black);
  background: var(--rook-white);
  border: 1px solid rgba(240, 74, 2, 0.32);
  box-sizing: border-box;
}

.rook-pricing-steps h3 {
  grid-area: title;
  align-self: end;
  margin-top: 14px;
  line-height: 0.98;
}

.rook-pricing-steps p {
  grid-area: body;
  width: auto;
  max-width: 380px;
  margin: 0;
  font-size: clamp(19px, 1.18vw, 23px);
  line-height: 1.22;
}

@media (max-width: 900px) {
  .rook-pricing-steps {
    padding: 24px;
  }

  .rook-pricing-steps article {
    min-height: auto;
    padding: 18px 0 24px;
    border-right: 0;
    border-bottom: 1px solid var(--rook-line);
  }

  .rook-pricing-steps article:last-child {
    border-bottom: 0;
  }

  .rook-pricing-steps article > span {
    left: 18px;
  }
}

/* v1.1.58: Pricing page pricing-steps number/icon centering + title size only */
.rook-pricing-steps h2 {
  font-size: 32px;
}

.rook-pricing-steps article > span {
  position: relative;
  top: 0;
  left: auto;
  grid-area: visual;
  justify-self: center;
  align-self: start;
  margin-top: 0;
}

.rook-pricing-steps svg {
  margin-top: 28px;
}

@media (max-width: 900px) {
  .rook-pricing-steps article > span {
    left: auto;
  }
}

/* v1.1.59: Pricing intro title line break + intro text size only */
.rook-exact-price h2 .rook-title-mark--orange {
  display: block;
  white-space: nowrap;
}

.rook-exact-price__copy p,
.rook-exact-price__copy strong {
  font-size: 18px;
}

/* v1.1.60: Pricing intro supporting copy corrected to subtle 1px increase only */


/* v1.1.61: Pricing intro supporting copy size + button breathing room only */
.rook-exact-price {
  column-gap: 36px;
}

.rook-exact-price__copy {
  max-width: 610px;
}

.rook-exact-price__copy p,
.rook-exact-price__copy strong {
  font-size: 16px;
  line-height: 1.24;
}


/* v1.1.62: Pricing page ROOK Complete Package banner cleanup only */
@media (min-width: 1181px) {
  .rook-pricing-package {
    grid-template-columns: minmax(380px, 38%) minmax(430px, 1fr) minmax(320px, 360px);
    align-items: stretch;
    min-height: 340px;
    overflow: hidden;
  }

  .rook-pricing-package > div:first-child {
    display: flex;
    min-width: 0;
  }

  .rook-pricing-package .rook-image {
    height: 100%;
    min-height: 340px;
  }

  .rook-pricing-package > div:nth-child(2) {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    padding: 42px clamp(34px, 3.2vw, 58px);
  }

  .rook-pricing-package__icons {
    align-items: end;
    gap: clamp(16px, 2vw, 28px);
    margin-top: 30px;
  }

  .rook-pricing-package__icons span {
    gap: 6px;
    min-width: 0;
    font-size: 16px;
    line-height: 1.05;
  }

  .rook-pricing-package__icons svg {
    width: 56px;
    height: 56px;
    margin-bottom: 4px;
  }

  .rook-pricing-package aside {
    min-width: 0;
    align-items: flex-start;
    gap: 22px;
    padding: 42px clamp(26px, 2.4vw, 42px);
  }

  .rook-pricing-package aside p {
    max-width: 300px;
    margin: 0;
    font-size: 17px;
    line-height: 1.18;
  }

  .rook-pricing-package aside .rook-button {
    width: 100%;
    max-width: 320px;
    min-width: 0;
    padding-left: 18px;
    padding-right: 18px;
    font-size: clamp(20px, 1.25vw, 25px);
  }
}

@media (max-width: 1180px) {
  .rook-pricing-package > div:first-child {
    display: flex;
  }

  .rook-pricing-package .rook-image {
    min-height: 300px;
  }

  .rook-pricing-package aside {
    gap: 18px;
  }

  .rook-pricing-package aside .rook-button {
    align-self: flex-start;
    max-width: 100%;
  }
}


/* v1.1.63: Pricing package banner badge and icon alignment only */
@media (min-width: 1181px) {
  .rook-pricing-package .rook-badge {
    align-self: flex-start;
    display: inline-flex;
    width: auto;
    max-width: max-content;
    white-space: nowrap;
    padding-left: 18px;
    padding-right: 18px;
  }

  .rook-pricing-package__icons span {
    grid-template-rows: 68px auto;
    align-content: start;
    align-items: start;
  }

  .rook-pricing-package__icons svg {
    align-self: start;
    justify-self: center;
    margin-bottom: 0;
  }
}


/* v1.1.64: Pricing package banner Driveway icon vertical alignment only */
@media (min-width: 1181px) {
  .rook-pricing-package__icons span:first-child svg {
    margin-top: -14px;
  }
}


/* v1.1.65: How It Works page hero size match only */
@media (min-width: 781px) {
  .rook-hero--how-hero {
    min-height: 500px;
    grid-template-columns: minmax(420px, 590px) minmax(0, 1fr);
  }

  .rook-hero--how-hero .rook-hero__copy,
  .rook-hero--how-hero .rook-hero__media,
  .rook-hero--how-hero .rook-hero__media .rook-image {
    min-height: 500px;
  }
}


/* v1.1.66: How It Works hero body copy only */
.rook-hero--how-hero .rook-hero__copy p:not(.rook-eyebrow) {
  white-space: pre-line;
}


/* v1.1.67: How It Works hero media height fill correction only */
@media (min-width: 781px) {
  .rook-hero--how-hero .rook-hero__media {
    align-self: stretch;
    height: 100%;
  }

  .rook-hero--how-hero .rook-hero__media .rook-image {
    height: 100%;
    min-height: 100%;
  }
}


/* v1.1.68: How It Works page simple process icon arrangement match only */
.rook-simple-process--how-style {
  padding: 38px clamp(48px, 5vw, 96px);
}

.rook-simple-process--how-style .rook-simple-process__grid {
  align-items: center;
  gap: clamp(36px, 5vw, 90px);
  margin-top: 28px;
}

.rook-simple-process--how-style .rook-step-mini {
  grid-template-columns: 104px 44px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.rook-simple-process--how-style .rook-step-mini__icon {
  width: 104px;
  height: 104px;
  background: var(--rook-soft);
  color: var(--rook-black);
  border-radius: 999px;
}

.rook-simple-process--how-style .rook-step-mini__icon svg {
  width: 40px;
  height: 40px;
}

.rook-simple-process--how-style .rook-step-mini__number {
  width: 44px;
  height: 44px;
  align-self: center;
  justify-self: center;
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
}

.rook-simple-process--how-style .rook-step-mini > div {
  min-width: 0;
}

.rook-simple-process--how-style .rook-step-mini strong {
  display: block;
  font-size: clamp(31px, 2.05vw, 40px);
  line-height: 0.96;
}

.rook-simple-process--how-style .rook-step-mini p {
  max-width: 430px;
  margin-top: 12px;
  font-size: clamp(18px, 1vw, 22px);
  line-height: 1.2;
}

@media (max-width: 1100px) {
  .rook-simple-process--how-style .rook-simple-process__grid {
    gap: 30px;
  }

  .rook-simple-process--how-style .rook-step-mini {
    grid-template-columns: 88px 38px minmax(0, 1fr);
    gap: 14px;
  }

  .rook-simple-process--how-style .rook-step-mini__icon {
    width: 88px;
    height: 88px;
  }

  .rook-simple-process--how-style .rook-step-mini__number {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }
}

@media (max-width: 900px) {
  .rook-simple-process--how-style {
    padding: 30px 24px;
  }

  .rook-simple-process--how-style .rook-simple-process__grid {
    gap: 22px;
  }

  .rook-simple-process--how-style .rook-step-mini {
    grid-template-columns: 76px 34px minmax(0, 1fr);
  }

  .rook-simple-process--how-style .rook-step-mini__icon {
    width: 76px;
    height: 76px;
  }

  .rook-simple-process--how-style .rook-step-mini__icon svg {
    width: 32px;
    height: 32px;
  }
}

/* v1.1.69: How It Works process section icon/number alignment + mobile repair only */
.rook-simple-process--how-style .rook-simple-process__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
}

.rook-simple-process--how-style .rook-step-mini {
  display: grid;
  grid-template-columns: clamp(112px, 7vw, 136px) minmax(0, 1fr);
  grid-template-areas: "visual copy";
  column-gap: clamp(20px, 2.4vw, 36px);
  align-items: center;
  padding: 0;
  background: transparent;
  color: var(--rook-black);
}

.rook-simple-process--how-style .rook-step-mini__icon {
  grid-area: visual;
  display: grid;
  place-items: center;
  justify-self: center;
  align-self: center;
  width: 112px;
  height: 112px;
  margin-top: 26px;
  position: relative;
  z-index: 1;
  background: var(--rook-soft);
  color: var(--rook-black);
  border-radius: 999px;
}

.rook-simple-process--how-style .rook-step-mini__number {
  grid-area: visual;
  justify-self: center;
  align-self: start;
  width: 44px;
  height: 44px;
  margin: 0;
  transform: translateY(0);
  position: relative;
  z-index: 3;
  background: var(--rook-orange);
  color: var(--rook-white);
}

.rook-simple-process--how-style .rook-step-mini > div {
  grid-area: copy;
  min-width: 0;
}

@media (max-width: 1100px) {
  .rook-simple-process--how-style .rook-step-mini {
    grid-template-columns: 104px minmax(0, 1fr);
    column-gap: 22px;
  }

  .rook-simple-process--how-style .rook-step-mini__icon {
    width: 96px;
    height: 96px;
    margin-top: 24px;
  }

  .rook-simple-process--how-style .rook-step-mini__number {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}

@media (max-width: 900px) {
  .rook-simple-process--how-style {
    padding: 34px 24px;
  }

  .rook-simple-process--how-style .rook-simple-process__grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .rook-simple-process--how-style .rook-step-mini {
    grid-template-columns: 106px minmax(0, 1fr);
    grid-template-areas: "visual copy";
    column-gap: 24px;
    align-items: center;
    padding: 0 0 30px;
    background: transparent;
    color: var(--rook-black);
  }

  .rook-simple-process--how-style .rook-step-mini:not(:last-child) {
    border-bottom: 1px solid var(--rook-line);
  }

  .rook-simple-process--how-style .rook-step-mini__icon {
    display: grid;
    width: 92px;
    height: 92px;
    margin-top: 24px;
  }

  .rook-simple-process--how-style .rook-step-mini__icon svg {
    width: 36px;
    height: 36px;
  }

  .rook-simple-process--how-style .rook-step-mini__number {
    display: grid;
    width: 40px;
    height: 40px;
    grid-row: auto;
    font-size: 16px;
    background: var(--rook-orange);
    color: var(--rook-white);
  }

  .rook-simple-process--how-style .rook-step-mini strong {
    font-size: clamp(30px, 8vw, 38px);
    line-height: 0.98;
  }

  .rook-simple-process--how-style .rook-step-mini p {
    width: auto;
    max-width: none;
    margin-top: 12px;
    font-size: 21px;
    line-height: 1.22;
  }
}

@media (max-width: 480px) {
  .rook-simple-process--how-style .rook-step-mini {
    grid-template-columns: 94px minmax(0, 1fr);
    column-gap: 20px;
  }

  .rook-simple-process--how-style .rook-step-mini__icon {
    width: 82px;
    height: 82px;
  }

  .rook-simple-process--how-style .rook-step-mini strong {
    font-size: 30px;
  }

  .rook-simple-process--how-style .rook-step-mini p {
    font-size: 19px;
  }
}

/* v1.1.70: HOA + Neighborhood Service simple process section matches How It Works icon arrangement */


/* v1.1.72: How ROOK Works mobile number badge stays on top of icon circle */
@media (max-width: 900px) {
  .rook-simple-process--how-style .rook-step-mini {
    position: relative;
    grid-template-columns: 112px minmax(0, 1fr);
  }

  .rook-simple-process--how-style .rook-step-mini__icon {
    grid-area: visual;
    justify-self: center;
    align-self: start;
    margin-top: 28px;
  }

  .rook-simple-process--how-style .rook-step-mini__number {
    position: absolute;
    top: 8px;
    left: 56px;
    transform: translateX(-50%);
    z-index: 5;
    grid-area: auto;
    grid-row: auto;
  }
}

@media (max-width: 480px) {
  .rook-simple-process--how-style .rook-step-mini {
    grid-template-columns: 100px minmax(0, 1fr);
  }

  .rook-simple-process--how-style .rook-step-mini__icon {
    justify-self: center;
  }

  .rook-simple-process--how-style .rook-step-mini__number {
    left: 50px;
    top: 6px;
  }
}


/* v1.1.73: How It Works page THE ROOK Process icon/number arrangement only */
.rook-process-cards article {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 46px;
}

.rook-process-cards__number {
  width: 44px;
  height: 44px;
  top: 44px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  font-size: 16px;
  line-height: 1;
}

.rook-process-cards article > svg {
  box-sizing: border-box;
  width: 116px;
  height: 116px;
  margin: 20px auto 58px;
  padding: 30px;
  border-radius: 999px;
  background: var(--rook-soft);
  color: var(--rook-black);
}

.rook-process-cards article > h3 {
  margin-top: 0;
}

@media (max-width: 900px) {
  .rook-process-cards article {
    min-height: auto;
    padding: 44px 24px 32px;
  }

  .rook-process-cards__number {
    top: 42px;
    width: 42px;
    height: 42px;
    font-size: 16px;
  }

  .rook-process-cards article > svg {
    width: 110px;
    height: 110px;
    margin: 19px auto 36px;
    padding: 29px;
  }

  .rook-process-cards article > h3,
  .rook-process-cards article > p {
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 480px) {
  .rook-process-cards article {
    padding-top: 42px;
  }

  .rook-process-cards__number {
    top: 40px;
  }

  .rook-process-cards article > svg {
    width: 102px;
    height: 102px;
    margin-top: 19px;
    padding: 27px;
  }
}

/* v1.1.75: How It Works page THE ROOK Process copy size correction only */
.rook-process-cards article > p {
  font-size: 18px;
}


/* v1.1.76: How It Works quick ROOK review panel icon cleanup + readable copy only */
.rook-info-panels--how .rook-info-panel--warm {
  grid-template-columns: 170px 1fr;
  gap: 40px;
  padding: 42px 54px;
  align-items: center;
}

.rook-info-panels--how .rook-info-panel--warm > svg {
  width: 132px;
  height: 132px;
  padding: 28px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--rook-orange);
  justify-self: center;
}

.rook-info-panels--how .rook-info-panel--warm > div {
  max-width: 980px;
}

.rook-info-panels--how .rook-info-panel--warm h3 {
  margin-bottom: 16px;
}

.rook-info-panels--how .rook-info-panel--warm p,
.rook-info-panels--how .rook-info-panel--warm strong,
.rook-info-panels--how .rook-info-panel--warm .rook-check-list--two li {
  font-size: 16px;
  line-height: 1.38;
}

.rook-info-panels--how .rook-info-panel--warm p {
  margin: 0 0 22px;
}

.rook-info-panels--how .rook-info-panel--warm strong {
  display: block;
  margin-top: 24px;
  font-weight: 600;
}

.rook-info-panels--how .rook-check-list--two {
  columns: initial;
  display: grid;
  grid-template-columns: repeat(2, minmax(230px, 1fr));
  gap: 12px 50px;
  margin: 18px 0 24px;
}

.rook-info-panels--how .rook-check-list--two li {
  display: flex;
  align-items: center;
  min-height: 30px;
  margin: 0;
  padding-left: 40px;
  font-weight: 700;
}

.rook-info-panels--how .rook-check-list--two li::before {
  top: 50%;
  left: 0;
  width: 28px;
  height: 28px;
  transform: translateY(-50%);
}

.rook-info-panels--how .rook-check-list--two li::after {
  top: 50%;
  left: 9px;
  width: 9px;
  height: 5px;
  transform: translateY(-68%) rotate(-45deg);
}

@media (max-width: 780px) {
  .rook-info-panels--how .rook-info-panel--warm {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 30px 24px;
  }

  .rook-info-panels--how .rook-info-panel--warm > svg {
    width: 108px;
    height: 108px;
    padding: 24px;
    margin: 0 auto;
  }

  .rook-info-panels--how .rook-check-list--two {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

/* v1.1.77: HOA gated-community access gate icon path cleanup only */


/* v1.1.78: HOA + Neighborhood Service feature-card copy size only */
.rook-feature-cards article p {
  font-size: 16px;
  line-height: 1.38;
}


/* v1.1.79: HOA + Neighborhood Service intro paragraph copy size only */
.rook-hoa-intro p {
  font-size: 16px;
  line-height: 1.38;
}

/* v1.1.80: Customer Preparation clear fragile outdoor items SVG icon replacement only */

/* v1.1.81: About ROOK Why cards use same icon choices as Home Why strip only */


/* v1.1.82: About ROOK heading breathing room only */
body.page-template-page-about-rook .rook-hero--about-hero + .rook-section-heading,
body.page-id-0 .rook-hero--about-hero + .rook-section-heading {
  padding-top: clamp(34px, 4vw, 58px);
  padding-left: 24px;
  padding-right: 24px;
  margin-bottom: 30px;
}

/* v1.1.83: About ROOK method comparison supporting copy size only */
body.page-template-page-about-rook .rook-method-compare article p,
body.page-id-0 .rook-method-compare article p {
  font-size: 16px;
  line-height: 1.42;
}


/* v1.1.84: About ROOK method comparison icon style cleanup only */
body.page-template-page-about-rook .rook-method-compare article .rook-method__icon,
body.page-id-0 .rook-method-compare article .rook-method__icon {
  width: 74px;
  height: 74px;
  border-radius: 999px;
  background: var(--rook-orange);
  display: grid;
  place-items: center;
  margin: 0 0 18px;
  color: #fff;
}

body.page-template-page-about-rook .rook-method-compare article .rook-method__icon img,
body.page-id-0 .rook-method-compare article .rook-method__icon img {
  display: block;
  width: 43px;
  height: 43px;
  object-fit: contain;
}

body.page-template-page-about-rook .rook-method-compare article .rook-method__icon--soft-wash img,
body.page-id-0 .rook-method-compare article .rook-method__icon--soft-wash img {
  width: 46px;
  height: 38px;
}

body.page-template-page-about-rook .rook-method-compare article .rook-method__icon--pressure-wash img,
body.page-id-0 .rook-method-compare article .rook-method__icon--pressure-wash img {
  width: 42px;
  height: 48px;
}

body.page-template-page-about-rook .rook-method-compare article:nth-of-type(2) svg,
body.page-id-0 .rook-method-compare article:nth-of-type(2) svg {
  color: var(--rook-orange);
}
/* v1.1.87: Pricing page Property-Based Quote card uses shield icon to match ROOK style */

/* v1.1.88: Contact page hero copy crop and bottom orange line fix only */
@media (min-width: 781px) {
  .rook-hero--contact-hero .rook-hero__copy p:not(.rook-eyebrow) {
    max-width: 370px;
    line-height: 1.18;
  }
}

@media (min-width: 1200px) {
  .rook-hero--contact-hero .rook-hero__copy p:not(.rook-eyebrow) {
    max-width: 390px;
  }
}

.rook-hero--contact-hero + .rook-contact-section {
  border-top: 0;
}


/* v1.1.89: Contact page section small copy and form text readability fix only */
body.page-template-page-contact .rook-contact-help article p,
body.page-template-page-contact .rook-contact-form label,
body.page-template-page-contact .rook-contact-form input,
body.page-template-page-contact .rook-contact-form textarea,
body.page-template-page-contact .rook-contact-form small {
  font-size: 16px;
  line-height: 1.38;
}

body.page-template-page-contact .rook-contact-form input::placeholder,
body.page-template-page-contact .rook-contact-form textarea::placeholder {
  font-size: 16px;
}

/* v1.1.90: Restore Contact page help card titles after 16px body copy readability update */
body.page-template-page-contact .rook-contact-help article h3 {
  font-size: 22px;
  line-height: 1.05;
}

/* v1.1.91: Contact page help card titles reduced from global card title size for better balance */


/* v1.1.94: Customer Preparation page body copy readability update only */
body.page-template-page-customer-preparation .rook-prep .rook-section-heading__body,
body.page-template-page-customer-preparation .rook-prep-grid article p,
body.page-template-page-customer-preparation .rook-prep-note p {
  font-size: 16px;
  line-height: 1.38;
}

/* v1.1.95: Terms + Policies help panel uses the ROOK logo mark asset instead of the simple bear placeholder icon */


/* v1.1.96: Terms + Policies help panel bear sits on panel edge + body copy only set to 16px */
body.page-template-page-terms-policies .rook-policies p {
  font-size: 16px;
  line-height: 1.55;
}

body.page-template-page-terms-policies .rook-help-panel--terms {
  align-items: center;
  overflow: hidden;
  padding-bottom: 0;
}

body.page-template-page-terms-policies .rook-help-panel--terms > img,
body.page-template-page-terms-policies .rook-help-panel--terms > svg {
  align-self: end;
  display: block;
  width: 155px;
  height: 155px;
  max-width: none;
  max-height: none;
  object-fit: contain;
  object-position: left bottom;
  margin: 0;
  transform: translateY(10px);
}

@media (max-width: 767px) {
  body.page-template-page-terms-policies .rook-help-panel--terms {
    padding-bottom: 0;
  }

  body.page-template-page-terms-policies .rook-help-panel--terms > img,
  body.page-template-page-terms-policies .rook-help-panel--terms > svg {
    width: 126px;
    height: 126px;
    margin-left: auto;
    margin-right: auto;
    transform: translateY(8px);
  }
}


/* v1.1.97: Terms + Policies help panel balance correction only */
body.page-template-page-terms-policies .rook-help-panel--terms {
  align-items: center;
}

body.page-template-page-terms-policies .rook-help-panel--terms > div {
  align-self: center;
}

body.page-template-page-terms-policies .rook-help-panel--terms .rook-button {
  align-self: center;
  width: auto;
  min-height: 0;
}

body.page-template-page-terms-policies .rook-help-panel--terms > img,
body.page-template-page-terms-policies .rook-help-panel--terms > svg {
  align-self: end;
  width: 155px;
  height: 155px;
  transform: translateY(10px);
}

body.page-template-page-terms-policies .rook-help-panel--terms p {
  font-size: 16px;
  line-height: 1.55;
}

@media (max-width: 767px) {
  body.page-template-page-terms-policies .rook-help-panel--terms .rook-button {
    justify-self: center;
  }

  body.page-template-page-terms-policies .rook-help-panel--terms > img,
  body.page-template-page-terms-policies .rook-help-panel--terms > svg {
    width: 126px;
    height: 126px;
    transform: translateY(8px);
  }
}


/* v1.1.98: Terms + Policies help panel body copy spacing tightened only */
body.page-template-page-terms-policies .rook-help-panel--terms p {
  margin-top: 8px;
  margin-bottom: 0;
}


/* v1.1.100: Home mobile hero image visibility refinement only */
@media (max-width: 780px) {
  .rook-hero--home .rook-hero__copy {
    padding-right: 82px;
    clip-path: polygon(0 0, 68% 0, 57% 100%, 0 100%);
  }

  .rook-hero--home .rook-hero__media .rook-image {
    padding-left: 36%;
  }

  .rook-hero--home .rook-hero__media .rook-image img {
    object-position: 58% center;
  }
}


/* v1.1.101: Inner page mobile hero image visibility refinement only */
@media (max-width: 780px) {
  .rook-hero--services-hero .rook-hero__copy,
  .rook-hero--pricing-hero .rook-hero__copy,
  .rook-hero--how-hero .rook-hero__copy,
  .rook-hero--hoa-hero .rook-hero__copy,
  .rook-hero--about-hero .rook-hero__copy,
  .rook-hero--contact-hero .rook-hero__copy,
  .rook-hero--prep-hero .rook-hero__copy,
  .rook-hero--terms-hero .rook-hero__copy {
    padding-right: 82px;
    clip-path: polygon(0 0, 68% 0, 57% 100%, 0 100%);
  }

  .rook-hero--services-hero .rook-hero__media .rook-image,
  .rook-hero--pricing-hero .rook-hero__media .rook-image,
  .rook-hero--how-hero .rook-hero__media .rook-image,
  .rook-hero--hoa-hero .rook-hero__media .rook-image,
  .rook-hero--about-hero .rook-hero__media .rook-image,
  .rook-hero--contact-hero .rook-hero__media .rook-image,
  .rook-hero--prep-hero .rook-hero__media .rook-image,
  .rook-hero--terms-hero .rook-hero__media .rook-image {
    padding-left: 36%;
  }

  .rook-hero--services-hero .rook-hero__media .rook-image img,
  .rook-hero--pricing-hero .rook-hero__media .rook-image img,
  .rook-hero--how-hero .rook-hero__media .rook-image img,
  .rook-hero--hoa-hero .rook-hero__media .rook-image img,
  .rook-hero--about-hero .rook-hero__media .rook-image img,
  .rook-hero--contact-hero .rook-hero__media .rook-image img,
  .rook-hero--prep-hero .rook-hero__media .rook-image img,
  .rook-hero--terms-hero .rook-hero__media .rook-image img {
    object-position: 58% center;
  }
}


/* v1.1.102: Customer Preparation mobile hero image focal point shifted left only */
@media (max-width: 780px) {
  body.page-template-page-customer-preparation .rook-hero--prep-hero .rook-hero__media .rook-image img {
    object-position: 34% center;
  }
}


/* v1.1.103: Customer Preparation mobile hero image visibility refined to reveal more of the door-hanger tag only */
@media (max-width: 780px) {
  body.page-template-page-customer-preparation .rook-hero--prep-hero .rook-hero__copy {
    padding-right: 68px;
    clip-path: polygon(0 0, 64% 0, 54% 100%, 0 100%);
  }

  body.page-template-page-customer-preparation .rook-hero--prep-hero .rook-hero__media .rook-image {
    padding-left: 30%;
  }

  body.page-template-page-customer-preparation .rook-hero--prep-hero .rook-hero__media .rook-image img {
    object-position: 40% center;
  }
}


/* v1.1.104: Customer Preparation mobile hero image shifted right to reveal the door-hanger tag */
@media (max-width: 780px) {
  .rook-hero--prep-hero .rook-hero__copy {
    padding-right: 58px !important;
    clip-path: polygon(0 0, 60% 0, 49% 100%, 0 100%) !important;
  }

  .rook-hero--prep-hero .rook-hero__media .rook-image {
    padding-left: 24% !important;
  }

  .rook-hero--prep-hero .rook-hero__media .rook-image img {
    width: 112% !important;
    max-width: none !important;
    transform: translateX(14%) !important;
    object-position: 0% center !important;
  }
}


/* v1.1.105: HOA + Neighborhood Service mobile hero image shifted right to reveal more of the hero subject */
@media (max-width: 780px) {
  .rook-hero--hoa-hero .rook-hero__copy {
    padding-right: 58px !important;
    clip-path: polygon(0 0, 60% 0, 49% 100%, 0 100%) !important;
  }

  .rook-hero--hoa-hero .rook-hero__media .rook-image {
    padding-left: 24% !important;
  }

  .rook-hero--hoa-hero .rook-hero__media .rook-image img {
    width: 112% !important;
    max-width: none !important;
    transform: translateX(14%) !important;
    object-position: 0% center !important;
  }
}


/* v1.1.106: HOA + Neighborhood Service mobile hero image right-shift fix with correct asset version */
@media (max-width: 780px) {
  body.page-template-page-hoa-services .rook-hero--hoa-hero .rook-hero__copy,
  body.page-template-page-hoa-services-php .rook-hero--hoa-hero .rook-hero__copy,
  .page-template-page-hoa-services .rook-hero--hoa-hero .rook-hero__copy,
  .page-template-page-hoa-services-php .rook-hero--hoa-hero .rook-hero__copy {
    padding-right: 58px !important;
    clip-path: polygon(0 0, 60% 0, 49% 100%, 0 100%) !important;
  }

  body.page-template-page-hoa-services .rook-hero--hoa-hero .rook-hero__media .rook-image,
  body.page-template-page-hoa-services-php .rook-hero--hoa-hero .rook-hero__media .rook-image,
  .page-template-page-hoa-services .rook-hero--hoa-hero .rook-hero__media .rook-image,
  .page-template-page-hoa-services-php .rook-hero--hoa-hero .rook-hero__media .rook-image {
    padding-left: 24% !important;
    overflow: hidden !important;
  }

  body.page-template-page-hoa-services .rook-hero--hoa-hero .rook-hero__media .rook-image img,
  body.page-template-page-hoa-services-php .rook-hero--hoa-hero .rook-hero__media .rook-image img,
  .page-template-page-hoa-services .rook-hero--hoa-hero .rook-hero__media .rook-image img,
  .page-template-page-hoa-services-php .rook-hero--hoa-hero .rook-hero__media .rook-image img {
    width: 112% !important;
    max-width: none !important;
    transform: translateX(14%) !important;
    object-position: 0% center !important;
  }
}


/* v1.1.113: Sitewide correction pass footer/mobile sticky CTA safety */
@media (max-width: 780px) {
  .rook-page {
    padding-bottom: calc(78px + env(safe-area-inset-bottom));
  }

  .rook-main {
    padding-bottom: 28px;
  }

  .rook-footer {
    padding-bottom: calc(130px + env(safe-area-inset-bottom));
  }

  .rook-footer__columns + .rook-footer__columns,
  .rook-footer-group + .rook-footer-group[data-duplicate="true"] {
    display: none !important;
  }

  .rook-sticky-actions {
    bottom: 0;
    min-height: calc(58px + env(safe-area-inset-bottom));
    padding-bottom: env(safe-area-inset-bottom);
  }

  .rook-sticky-actions a {
    min-height: 58px;
  }
}


/* v1.1.114: ROOK Complete Package mosaic image corner coverage fix */
@media (min-width: 901px) {
  .rook-package__mosaic .rook-mosaic-card .rook-image {
    transform: skewX(6deg) scale(1.14);
  }

  .rook-package__mosaic .rook-mosaic-card:hover .rook-image {
    transform: skewX(6deg) scale(1.16);
  }
}


/* v1.1.115: Pricing page mobile hero title crop fix and moderate right image shift only */
@media (max-width: 780px) {
  body.page-template-page-pricing .rook-hero--pricing-hero .rook-hero__copy,
  body.page-template-page-pricing-php .rook-hero--pricing-hero .rook-hero__copy,
  .page-template-page-pricing .rook-hero--pricing-hero .rook-hero__copy,
  .page-template-page-pricing-php .rook-hero--pricing-hero .rook-hero__copy {
    padding-right: 54px !important;
    clip-path: polygon(0 0, 64% 0, 52% 100%, 0 100%) !important;
  }

  body.page-template-page-pricing .rook-hero--pricing-hero .rook-hero__copy h1,
  body.page-template-page-pricing-php .rook-hero--pricing-hero .rook-hero__copy h1,
  .page-template-page-pricing .rook-hero--pricing-hero .rook-hero__copy h1,
  .page-template-page-pricing-php .rook-hero--pricing-hero .rook-hero__copy h1 {
    font-size: 47px !important;
    line-height: 0.92 !important;
    max-width: 260px !important;
  }

  body.page-template-page-pricing .rook-hero--pricing-hero .rook-hero__copy p:not(.rook-eyebrow),
  body.page-template-page-pricing-php .rook-hero--pricing-hero .rook-hero__copy p:not(.rook-eyebrow),
  .page-template-page-pricing .rook-hero--pricing-hero .rook-hero__copy p:not(.rook-eyebrow),
  .page-template-page-pricing-php .rook-hero--pricing-hero .rook-hero__copy p:not(.rook-eyebrow) {
    max-width: 270px !important;
  }

  body.page-template-page-pricing .rook-hero--pricing-hero .rook-hero__media .rook-image,
  body.page-template-page-pricing-php .rook-hero--pricing-hero .rook-hero__media .rook-image,
  .page-template-page-pricing .rook-hero--pricing-hero .rook-hero__media .rook-image,
  .page-template-page-pricing-php .rook-hero--pricing-hero .rook-hero__media .rook-image {
    padding-left: 26% !important;
    overflow: hidden !important;
  }

  body.page-template-page-pricing .rook-hero--pricing-hero .rook-hero__media .rook-image img,
  body.page-template-page-pricing-php .rook-hero--pricing-hero .rook-hero__media .rook-image img,
  .page-template-page-pricing .rook-hero--pricing-hero .rook-hero__media .rook-image img,
  .page-template-page-pricing-php .rook-hero--pricing-hero .rook-hero__media .rook-image img {
    width: 110% !important;
    max-width: none !important;
    transform: translateX(10%) !important;
    object-position: 18% center !important;
  }
}


/* v1.1.116: Remove mobile footer white gap above sticky CTA site-wide */
@media (max-width: 780px) {
  .rook-page {
    padding-bottom: 0 !important;
    background: var(--rook-black);
  }

  .rook-main {
    background: var(--rook-white);
  }

  .rook-footer {
    margin-bottom: 0 !important;
    padding-bottom: calc(92px + env(safe-area-inset-bottom)) !important;
  }

  .rook-sticky-actions {
    bottom: 0 !important;
  }
}


/* v1.1.117: HOA label, mobile footer cleanup, sticky CTA, pricing mobile hero heading fix */
@media (max-width: 780px) {
  .rook-footer__columns {
    display: none !important;
  }

  .rook-footer__mobile-links {
    display: grid;
    grid-column: 1 / -1;
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }

  .rook-footer__mobile-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 58px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    color: var(--rook-orange);
    font-family: var(--rook-heading-font);
    font-size: 28px;
    line-height: 1;
    text-transform: uppercase;
  }

  .rook-footer__mobile-links a::after {
    content: "+";
    color: var(--rook-orange);
    font-size: 26px;
    line-height: 1;
  }

  .rook-sticky-actions a:last-child {
    white-space: nowrap;
    font-size: 18px;
    line-height: 1;
  }

  body.page-template-page-pricing .rook-hero--pricing-hero .rook-hero__copy,
  body.page-template-page-pricing-php .rook-hero--pricing-hero .rook-hero__copy,
  .page-template-page-pricing .rook-hero--pricing-hero .rook-hero__copy,
  .page-template-page-pricing-php .rook-hero--pricing-hero .rook-hero__copy {
    padding-right: 66px !important;
    clip-path: polygon(0 0, 72% 0, 60% 100%, 0 100%) !important;
  }

  body.page-template-page-pricing .rook-hero--pricing-hero .rook-hero__copy h1,
  body.page-template-page-pricing-php .rook-hero--pricing-hero .rook-hero__copy h1,
  .page-template-page-pricing .rook-hero--pricing-hero .rook-hero__copy h1,
  .page-template-page-pricing-php .rook-hero--pricing-hero .rook-hero__copy h1 {
    font-size: 43px !important;
    line-height: 0.94 !important;
    max-width: 292px !important;
  }

  body.page-template-page-pricing .rook-hero--pricing-hero .rook-hero__copy p:not(.rook-eyebrow),
  body.page-template-page-pricing-php .rook-hero--pricing-hero .rook-hero__copy p:not(.rook-eyebrow),
  .page-template-page-pricing .rook-hero--pricing-hero .rook-hero__copy p:not(.rook-eyebrow),
  .page-template-page-pricing-php .rook-hero--pricing-hero .rook-hero__copy p:not(.rook-eyebrow) {
    max-width: 250px !important;
  }
}


/* v1.1.118: Desktop header navigation alignment and spacing correction only */
@media (min-width: 1181px) {
  .rook-nav {
    gap: clamp(22px, 1.7vw, 34px);
    align-items: center;
    min-width: 0;
  }

  .rook-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 0 0 12px;
    line-height: 0.96;
    text-align: center;
    white-space: nowrap;
    flex: 0 0 auto;
  }

  .rook-nav a[href*="hoa-services"] {
    width: 174px;
    white-space: normal;
  }
}

@media (min-width: 1181px) and (max-width: 1500px) {
  .rook-nav {
    gap: 18px;
  }

  .rook-nav a,
  .rook-call-link {
    font-size: 16px;
  }

  .rook-nav a[href*="hoa-services"] {
    width: 156px;
  }
}


/* v1.1.119: Desktop header nav top-align wrapped label while keeping underline baseline */
@media (min-width: 1181px) {
  .rook-nav {
    align-items: center;
  }

  .rook-nav a {
    align-items: flex-start;
    padding-top: 12px;
    padding-bottom: 10px;
    min-height: 62px;
  }

  .rook-nav a[href*="hoa-services"] {
    align-items: flex-start;
  }
}


/* v1.1.120: Desktop header nav size and HOA item spacing refinement only */
@media (min-width: 1181px) {
  .rook-nav {
    gap: clamp(18px, 1.25vw, 28px) !important;
  }

  .rook-nav a,
  .rook-call-link {
    font-size: calc(var(--rook-nav-size) - 2px) !important;
  }

  .rook-nav a {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .rook-nav a[href*="hoa-services"] {
    width: auto !important;
    max-width: 188px !important;
    min-width: 0 !important;
    white-space: normal !important;
    line-height: 0.96 !important;
  }
}

@media (min-width: 1181px) and (max-width: 1500px) {
  .rook-nav {
    gap: 16px !important;
  }

  .rook-nav a[href*="hoa-services"] {
    max-width: 172px !important;
  }
}


/* v1.1.121: Desktop header nav and CTA vertical centering refinement only */
@media (min-width: 1181px) {
  .rook-header {
    align-items: center !important;
  }

  .rook-nav,
  .rook-header__actions {
    align-self: center !important;
    align-items: center !important;
  }

  .rook-nav a {
    min-height: 58px !important;
    padding-top: 18px !important;
    padding-bottom: 0 !important;
    display: inline-flex !important;
    align-items: flex-start !important;
  }

  .rook-call-link {
    min-height: 54px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
  }

  .rook-header__actions .rook-button {
    align-self: center !important;
  }
}


/* v1.1.122: How It Works correction pass only */
body.page-template-page-how-it-works .rook-hero--how-hero,
body.page-template-page-how-it-works-php .rook-hero--how-hero,
.page-template-page-how-it-works .rook-hero--how-hero,
.page-template-page-how-it-works-php .rook-hero--how-hero {
  grid-template-columns: minmax(430px, 560px) minmax(0, 1fr);
}

body.page-template-page-how-it-works .rook-hero--how-hero .rook-hero__copy p:not(.rook-eyebrow),
body.page-template-page-how-it-works-php .rook-hero--how-hero .rook-hero__copy p:not(.rook-eyebrow),
.page-template-page-how-it-works .rook-hero--how-hero .rook-hero__copy p:not(.rook-eyebrow),
.page-template-page-how-it-works-php .rook-hero--how-hero .rook-hero__copy p:not(.rook-eyebrow) {
  max-width: 26ch;
}

body.page-template-page-how-it-works .rook-hero--how-hero .rook-hero__media .rook-image img,
body.page-template-page-how-it-works-php .rook-hero--how-hero .rook-hero__media .rook-image img,
.page-template-page-how-it-works .rook-hero--how-hero .rook-hero__media .rook-image img,
.page-template-page-how-it-works-php .rook-hero--how-hero .rook-hero__media .rook-image img {
  object-position: 60% center;
}

body.page-template-page-how-it-works .rook-process-cards .rook-section-heading__body,
body.page-template-page-how-it-works-php .rook-process-cards .rook-section-heading__body,
.page-template-page-how-it-works .rook-process-cards .rook-section-heading__body,
.page-template-page-how-it-works-php .rook-process-cards .rook-section-heading__body {
  max-width: 760px;
}

body.page-template-page-how-it-works .rook-info-panel--prep-link,
body.page-template-page-how-it-works-php .rook-info-panel--prep-link,
.page-template-page-how-it-works .rook-info-panel--prep-link,
.page-template-page-how-it-works-php .rook-info-panel--prep-link {
  grid-template-columns: 110px 1fr;
  align-items: center;
}

body.page-template-page-how-it-works .rook-info-panel--prep-link > svg,
body.page-template-page-how-it-works-php .rook-info-panel--prep-link > svg,
.page-template-page-how-it-works .rook-info-panel--prep-link > svg,
.page-template-page-how-it-works-php .rook-info-panel--prep-link > svg {
  justify-self: center;
}

body.page-template-page-how-it-works .rook-info-panel--prep-link .rook-button,
body.page-template-page-how-it-works-php .rook-info-panel--prep-link .rook-button,
.page-template-page-how-it-works .rook-info-panel--prep-link .rook-button,
.page-template-page-how-it-works-php .rook-info-panel--prep-link .rook-button {
  margin-top: 14px;
}

body.page-template-page-how-it-works .rook-info-panels--how .rook-info-panel:empty,
body.page-template-page-how-it-works-php .rook-info-panels--how .rook-info-panel:empty,
.page-template-page-how-it-works .rook-info-panels--how .rook-info-panel:empty,
.page-template-page-how-it-works-php .rook-info-panels--how .rook-info-panel:empty,
body.page-template-page-how-it-works .rook-info-panels--how .rook-info-panel > *:empty,
body.page-template-page-how-it-works-php .rook-info-panels--how .rook-info-panel > *:empty,
.page-template-page-how-it-works .rook-info-panels--how .rook-info-panel > *:empty,
.page-template-page-how-it-works-php .rook-info-panels--how .rook-info-panel > *:empty {
  display: none;
}

@media (max-width: 780px) {
  body.page-template-page-how-it-works .rook-hero--how-hero .rook-hero__copy,
  body.page-template-page-how-it-works-php .rook-hero--how-hero .rook-hero__copy,
  .page-template-page-how-it-works .rook-hero--how-hero .rook-hero__copy,
  .page-template-page-how-it-works-php .rook-hero--how-hero .rook-hero__copy {
    padding-right: 18px;
  }

  body.page-template-page-how-it-works .rook-hero--how-hero .rook-hero__copy h1,
  body.page-template-page-how-it-works-php .rook-hero--how-hero .rook-hero__copy h1,
  .page-template-page-how-it-works .rook-hero--how-hero .rook-hero__copy h1,
  .page-template-page-how-it-works-php .rook-hero--how-hero .rook-hero__copy h1 {
    font-size: clamp(52px, 14vw, 74px);
  }

  body.page-template-page-how-it-works .rook-hero--how-hero .rook-hero__copy p:not(.rook-eyebrow),
  body.page-template-page-how-it-works-php .rook-hero--how-hero .rook-hero__copy p:not(.rook-eyebrow),
  .page-template-page-how-it-works .rook-hero--how-hero .rook-hero__copy p:not(.rook-eyebrow),
  .page-template-page-how-it-works-php .rook-hero--how-hero .rook-hero__copy p:not(.rook-eyebrow) {
    max-width: none;
    font-size: 18px;
    line-height: 1.3;
  }

  body.page-template-page-how-it-works .rook-hero--how-hero .rook-hero__media .rook-image img,
  body.page-template-page-how-it-works-php .rook-hero--how-hero .rook-hero__media .rook-image img,
  .page-template-page-how-it-works .rook-hero--how-hero .rook-hero__media .rook-image img,
  .page-template-page-how-it-works-php .rook-hero--how-hero .rook-hero__media .rook-image img {
    object-position: 58% center;
  }

  body.page-template-page-how-it-works .rook-hero--how-hero .rook-hero__actions .rook-button,
  body.page-template-page-how-it-works-php .rook-hero--how-hero .rook-hero__actions .rook-button,
  .page-template-page-how-it-works .rook-hero--how-hero .rook-hero__actions .rook-button,
  .page-template-page-how-it-works-php .rook-hero--how-hero .rook-hero__actions .rook-button {
    width: 100%;
    max-width: 340px;
  }

  body.page-template-page-how-it-works .rook-simple-process--how-style,
  body.page-template-page-how-it-works-php .rook-simple-process--how-style,
  .page-template-page-how-it-works .rook-simple-process--how-style,
  .page-template-page-how-it-works-php .rook-simple-process--how-style {
    padding-top: 28px;
    padding-bottom: 28px;
  }

  body.page-template-page-how-it-works .rook-simple-process--how-style .rook-simple-process__grid,
  body.page-template-page-how-it-works-php .rook-simple-process--how-style .rook-simple-process__grid,
  .page-template-page-how-it-works .rook-simple-process--how-style .rook-simple-process__grid,
  .page-template-page-how-it-works-php .rook-simple-process--how-style .rook-simple-process__grid {
    gap: 24px;
    margin-top: 20px;
  }

  body.page-template-page-how-it-works .rook-simple-process--how-style .rook-step-mini,
  body.page-template-page-how-it-works-php .rook-simple-process--how-style .rook-step-mini,
  .page-template-page-how-it-works .rook-simple-process--how-style .rook-step-mini,
  .page-template-page-how-it-works-php .rook-simple-process--how-style .rook-step-mini {
    padding-bottom: 22px;
  }

  body.page-template-page-how-it-works .rook-simple-process--how-style .rook-step-mini strong,
  body.page-template-page-how-it-works-php .rook-simple-process--how-style .rook-step-mini strong,
  .page-template-page-how-it-works .rook-simple-process--how-style .rook-step-mini strong,
  .page-template-page-how-it-works-php .rook-simple-process--how-style .rook-step-mini strong {
    font-size: clamp(24px, 7.2vw, 30px);
    line-height: 1;
  }

  body.page-template-page-how-it-works .rook-simple-process--how-style .rook-step-mini p,
  body.page-template-page-how-it-works-php .rook-simple-process--how-style .rook-step-mini p,
  .page-template-page-how-it-works .rook-simple-process--how-style .rook-step-mini p,
  .page-template-page-how-it-works-php .rook-simple-process--how-style .rook-step-mini p {
    font-size: 18px;
    line-height: 1.28;
    margin-top: 10px;
  }

  body.page-template-page-how-it-works .rook-process-cards,
  body.page-template-page-how-it-works-php .rook-process-cards,
  .page-template-page-how-it-works .rook-process-cards,
  .page-template-page-how-it-works-php .rook-process-cards {
    padding-top: 32px;
    padding-bottom: 24px;
  }

  body.page-template-page-how-it-works .rook-process-cards .rook-section-heading,
  body.page-template-page-how-it-works-php .rook-process-cards .rook-section-heading,
  .page-template-page-how-it-works .rook-process-cards .rook-section-heading,
  .page-template-page-how-it-works-php .rook-process-cards .rook-section-heading {
    margin-bottom: 22px;
  }

  body.page-template-page-how-it-works .rook-process-cards__grid,
  body.page-template-page-how-it-works-php .rook-process-cards__grid,
  .page-template-page-how-it-works .rook-process-cards__grid,
  .page-template-page-how-it-works-php .rook-process-cards__grid {
    gap: 18px;
  }

  body.page-template-page-how-it-works .rook-process-cards article,
  body.page-template-page-how-it-works-php .rook-process-cards article,
  .page-template-page-how-it-works .rook-process-cards article,
  .page-template-page-how-it-works-php .rook-process-cards article {
    padding: 38px 18px 22px;
    min-height: 0;
  }

  body.page-template-page-how-it-works .rook-process-cards article > svg,
  body.page-template-page-how-it-works-php .rook-process-cards article > svg,
  .page-template-page-how-it-works .rook-process-cards article > svg,
  .page-template-page-how-it-works-php .rook-process-cards article > svg {
    margin-bottom: 24px;
  }

  body.page-template-page-how-it-works .rook-process-cards article > h3,
  body.page-template-page-how-it-works-php .rook-process-cards article > h3,
  .page-template-page-how-it-works .rook-process-cards article > h3,
  .page-template-page-how-it-works-php .rook-process-cards article > h3 {
    font-size: 24px;
    line-height: 1.02;
    margin-bottom: 10px;
  }

  body.page-template-page-how-it-works .rook-process-cards article > p,
  body.page-template-page-how-it-works-php .rook-process-cards article > p,
  .page-template-page-how-it-works .rook-process-cards article > p,
  .page-template-page-how-it-works-php .rook-process-cards article > p {
    font-size: 17px;
    line-height: 1.32;
  }

  body.page-template-page-how-it-works .rook-info-panels--how,
  body.page-template-page-how-it-works-php .rook-info-panels--how,
  .page-template-page-how-it-works .rook-info-panels--how,
  .page-template-page-how-it-works-php .rook-info-panels--how {
    gap: 16px;
    padding-bottom: 28px;
  }

  body.page-template-page-how-it-works .rook-info-panels--how .rook-info-panel--warm,
  body.page-template-page-how-it-works-php .rook-info-panels--how .rook-info-panel--warm,
  .page-template-page-how-it-works .rook-info-panels--how .rook-info-panel--warm,
  .page-template-page-how-it-works-php .rook-info-panels--how .rook-info-panel--warm {
    padding: 24px 20px;
    gap: 16px;
  }

  body.page-template-page-how-it-works .rook-info-panels--how .rook-info-panel--warm h3,
  body.page-template-page-how-it-works-php .rook-info-panels--how .rook-info-panel--warm h3,
  .page-template-page-how-it-works .rook-info-panels--how .rook-info-panel--warm h3,
  .page-template-page-how-it-works-php .rook-info-panels--how .rook-info-panel--warm h3 {
    margin-bottom: 10px;
    font-size: 24px;
    line-height: 1.04;
  }

  body.page-template-page-how-it-works .rook-info-panels--how .rook-info-panel--warm p,
  body.page-template-page-how-it-works-php .rook-info-panels--how .rook-info-panel--warm p,
  .page-template-page-how-it-works .rook-info-panels--how .rook-info-panel--warm p,
  .page-template-page-how-it-works-php .rook-info-panels--how .rook-info-panel--warm p {
    margin-bottom: 14px;
  }

  body.page-template-page-how-it-works .rook-info-panels--how .rook-info-panel--warm strong,
  body.page-template-page-how-it-works-php .rook-info-panels--how .rook-info-panel--warm strong,
  .page-template-page-how-it-works .rook-info-panels--how .rook-info-panel--warm strong,
  .page-template-page-how-it-works-php .rook-info-panels--how .rook-info-panel--warm strong {
    margin-top: 16px;
    font-size: 16px;
    line-height: 1.35;
  }

  body.page-template-page-how-it-works .rook-info-panel--prep-link,
  body.page-template-page-how-it-works-php .rook-info-panel--prep-link,
  .page-template-page-how-it-works .rook-info-panel--prep-link,
  .page-template-page-how-it-works-php .rook-info-panel--prep-link {
    grid-template-columns: 64px 1fr;
    gap: 14px;
    padding: 20px;
    align-items: center;
  }

  body.page-template-page-how-it-works .rook-info-panel--prep-link > svg,
  body.page-template-page-how-it-works-php .rook-info-panel--prep-link > svg,
  .page-template-page-how-it-works .rook-info-panel--prep-link > svg,
  .page-template-page-how-it-works-php .rook-info-panel--prep-link > svg {
    font-size: 56px;
    width: 56px;
    height: 56px;
    justify-self: start;
  }

  body.page-template-page-how-it-works .rook-info-panel--prep-link h3,
  body.page-template-page-how-it-works-php .rook-info-panel--prep-link h3,
  .page-template-page-how-it-works .rook-info-panel--prep-link h3,
  .page-template-page-how-it-works-php .rook-info-panel--prep-link h3 {
    margin-bottom: 8px;
    font-size: 22px;
    line-height: 1.04;
  }

  body.page-template-page-how-it-works .rook-info-panel--prep-link p,
  body.page-template-page-how-it-works-php .rook-info-panel--prep-link p,
  .page-template-page-how-it-works .rook-info-panel--prep-link p,
  .page-template-page-how-it-works-php .rook-info-panel--prep-link p {
    margin: 0 0 12px;
    font-size: 16px;
    line-height: 1.35;
  }

  body.page-template-page-how-it-works .rook-info-panel--prep-link .rook-button,
  body.page-template-page-how-it-works-php .rook-info-panel--prep-link .rook-button,
  .page-template-page-how-it-works .rook-info-panel--prep-link .rook-button,
  .page-template-page-how-it-works-php .rook-info-panel--prep-link .rook-button {
    width: auto;
    max-width: 100%;
    min-height: 50px;
    padding: 14px 18px 12px;
    font-size: 22px;
    line-height: 1;
    justify-self: start;
  }

  body.page-template-page-how-it-works .rook-quote-band,
  body.page-template-page-how-it-works-php .rook-quote-band,
  .page-template-page-how-it-works .rook-quote-band,
  .page-template-page-how-it-works-php .rook-quote-band {
    gap: 18px;
  }

  body.page-template-page-how-it-works .rook-quote-band__form button,
  body.page-template-page-how-it-works-php .rook-quote-band__form button,
  .page-template-page-how-it-works .rook-quote-band__form button,
  .page-template-page-how-it-works-php .rook-quote-band__form button {
    width: 100%;
    min-height: 52px;
    padding: 14px 18px 12px;
    font-size: clamp(22px, 5.8vw, 28px);
    line-height: 1;
    white-space: nowrap;
  }
}


/* v1.1.123: How It Works follow-up mobile alignment fixes */
@media (max-width: 780px) {
  body.page-template-page-how-it-works .rook-hero--how-hero .rook-hero__actions .rook-button,
  body.page-template-page-how-it-works-php .rook-hero--how-hero .rook-hero__actions .rook-button,
  .page-template-page-how-it-works .rook-hero--how-hero .rook-hero__actions .rook-button,
  .page-template-page-how-it-works-php .rook-hero--how-hero .rook-hero__actions .rook-button {
    width: auto;
    max-width: 100%;
    min-width: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 22px 12px;
    font-size: clamp(18px, 4.8vw, 24px);
    white-space: nowrap;
  }

  body.page-template-page-how-it-works .rook-process-cards .rook-section-heading,
  body.page-template-page-how-it-works-php .rook-process-cards .rook-section-heading,
  .page-template-page-how-it-works .rook-process-cards .rook-section-heading,
  .page-template-page-how-it-works-php .rook-process-cards .rook-section-heading,
  body.page-template-page-how-it-works .rook-process-cards .rook-section-heading h2,
  body.page-template-page-how-it-works-php .rook-process-cards .rook-section-heading h2,
  .page-template-page-how-it-works .rook-process-cards .rook-section-heading h2,
  .page-template-page-how-it-works-php .rook-process-cards .rook-section-heading h2,
  body.page-template-page-how-it-works .rook-process-cards .rook-section-heading__body,
  body.page-template-page-how-it-works-php .rook-process-cards .rook-section-heading__body,
  .page-template-page-how-it-works .rook-process-cards .rook-section-heading__body,
  .page-template-page-how-it-works-php .rook-process-cards .rook-section-heading__body {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  body.page-template-page-how-it-works .rook-info-panels--how,
  body.page-template-page-how-it-works-php .rook-info-panels--how,
  .page-template-page-how-it-works .rook-info-panels--how,
  .page-template-page-how-it-works-php .rook-info-panels--how {
    padding-left: 24px;
    padding-right: 24px;
    box-sizing: border-box;
  }

  body.page-template-page-how-it-works .rook-info-panel--prep-link,
  body.page-template-page-how-it-works-php .rook-info-panel--prep-link,
  .page-template-page-how-it-works .rook-info-panel--prep-link,
  .page-template-page-how-it-works-php .rook-info-panel--prep-link {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    grid-template-columns: 56px minmax(0, 1fr);
    overflow: hidden;
  }

  body.page-template-page-how-it-works .rook-info-panel--prep-link > div,
  body.page-template-page-how-it-works-php .rook-info-panel--prep-link > div,
  .page-template-page-how-it-works .rook-info-panel--prep-link > div,
  .page-template-page-how-it-works-php .rook-info-panel--prep-link > div {
    min-width: 0;
  }

  body.page-template-page-how-it-works .rook-info-panel--prep-link .rook-button,
  body.page-template-page-how-it-works-php .rook-info-panel--prep-link .rook-button,
  .page-template-page-how-it-works .rook-info-panel--prep-link .rook-button,
  .page-template-page-how-it-works-php .rook-info-panel--prep-link .rook-button {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    font-size: clamp(18px, 4.7vw, 22px);
    white-space: nowrap;
  }
}


/* v1.1.124: How It Works customer preparation desktop panel right-edge alignment fix */
@media (min-width: 781px) {
  body.page-template-page-how-it-works .rook-info-panels--how,
  body.page-template-page-how-it-works-php .rook-info-panels--how,
  .page-template-page-how-it-works .rook-info-panels--how,
  .page-template-page-how-it-works-php .rook-info-panels--how {
    padding-right: 120px;
  }
}


/* v1.1.125: How It Works customer preparation desktop panel aligned to the four-card grid above */
@media (min-width: 781px) {
  body.page-template-page-how-it-works .rook-info-panels--how,
  body.page-template-page-how-it-works-php .rook-info-panels--how,
  .page-template-page-how-it-works .rook-info-panels--how,
  .page-template-page-how-it-works-php .rook-info-panels--how {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 38px;
    padding-left: 70px;
    padding-right: 70px;
  }

  body.page-template-page-how-it-works .rook-info-panels--how .rook-info-panel--warm,
  body.page-template-page-how-it-works-php .rook-info-panels--how .rook-info-panel--warm,
  .page-template-page-how-it-works .rook-info-panels--how .rook-info-panel--warm,
  .page-template-page-how-it-works-php .rook-info-panels--how .rook-info-panel--warm {
    grid-column: 1 / span 3;
  }

  body.page-template-page-how-it-works .rook-info-panels--how .rook-info-panel--prep-link,
  body.page-template-page-how-it-works-php .rook-info-panels--how .rook-info-panel--prep-link,
  .page-template-page-how-it-works .rook-info-panels--how .rook-info-panel--prep-link,
  .page-template-page-how-it-works-php .rook-info-panels--how .rook-info-panel--prep-link {
    grid-column: 4 / span 1;
    width: auto;
    max-width: none;
    min-width: 0;
    align-self: stretch;
  }
}


/* v1.1.126: How It Works customer preparation panel content fit inside aligned right column */
@media (min-width: 781px) {
  body.page-template-page-how-it-works .rook-info-panels--how .rook-info-panel--prep-link,
  body.page-template-page-how-it-works-php .rook-info-panels--how .rook-info-panel--prep-link,
  .page-template-page-how-it-works .rook-info-panels--how .rook-info-panel--prep-link,
  .page-template-page-how-it-works-php .rook-info-panels--how .rook-info-panel--prep-link {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    gap: 18px !important;
    padding: 30px 20px !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  body.page-template-page-how-it-works .rook-info-panels--how .rook-info-panel--prep-link > svg,
  body.page-template-page-how-it-works-php .rook-info-panels--how .rook-info-panel--prep-link > svg,
  .page-template-page-how-it-works .rook-info-panels--how .rook-info-panel--prep-link > svg,
  .page-template-page-how-it-works-php .rook-info-panels--how .rook-info-panel--prep-link > svg {
    width: 68px !important;
    height: 68px !important;
    font-size: 68px !important;
    margin: 0 auto !important;
    justify-self: center !important;
    flex: 0 0 auto !important;
  }

  body.page-template-page-how-it-works .rook-info-panels--how .rook-info-panel--prep-link > div,
  body.page-template-page-how-it-works-php .rook-info-panels--how .rook-info-panel--prep-link > div,
  .page-template-page-how-it-works .rook-info-panels--how .rook-info-panel--prep-link > div,
  .page-template-page-how-it-works-php .rook-info-panels--how .rook-info-panel--prep-link > div {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  body.page-template-page-how-it-works .rook-info-panels--how .rook-info-panel--prep-link h3,
  body.page-template-page-how-it-works-php .rook-info-panels--how .rook-info-panel--prep-link h3,
  .page-template-page-how-it-works .rook-info-panels--how .rook-info-panel--prep-link h3,
  .page-template-page-how-it-works-php .rook-info-panels--how .rook-info-panel--prep-link h3 {
    font-size: 24px !important;
    line-height: 1 !important;
    margin: 0 0 10px !important;
    white-space: normal !important;
  }

  body.page-template-page-how-it-works .rook-info-panels--how .rook-info-panel--prep-link p,
  body.page-template-page-how-it-works-php .rook-info-panels--how .rook-info-panel--prep-link p,
  .page-template-page-how-it-works .rook-info-panels--how .rook-info-panel--prep-link p,
  .page-template-page-how-it-works-php .rook-info-panels--how .rook-info-panel--prep-link p {
    max-width: 220px !important;
    margin: 0 auto 16px !important;
    font-size: 13px !important;
    line-height: 1.28 !important;
  }

  body.page-template-page-how-it-works .rook-info-panels--how .rook-info-panel--prep-link .rook-button,
  body.page-template-page-how-it-works-php .rook-info-panels--how .rook-info-panel--prep-link .rook-button,
  .page-template-page-how-it-works .rook-info-panels--how .rook-info-panel--prep-link .rook-button,
  .page-template-page-how-it-works-php .rook-info-panels--how .rook-info-panel--prep-link .rook-button {
    width: 100% !important;
    max-width: 238px !important;
    min-width: 0 !important;
    min-height: 48px !important;
    padding: 13px 8px 11px !important;
    font-size: 18px !important;
    line-height: 1 !important;
    gap: 7px !important;
    white-space: nowrap !important;
    box-sizing: border-box !important;
  }
}


/* v1.1.127: How It Works desktop review/prep row final alignment and fit correction */
@media (min-width: 781px) {
  body.page-template-page-how-it-works .rook-info-panels--how,
  body.page-template-page-how-it-works-php .rook-info-panels--how,
  .page-template-page-how-it-works .rook-info-panels--how,
  .page-template-page-how-it-works-php .rook-info-panels--how {
    display: grid !important;
    grid-template-columns: repeat(12, minmax(0, 1fr)) !important;
    gap: 38px !important;
    padding-left: 70px !important;
    padding-right: 70px !important;
    box-sizing: border-box !important;
  }

  body.page-template-page-how-it-works .rook-info-panels--how .rook-info-panel--warm,
  body.page-template-page-how-it-works-php .rook-info-panels--how .rook-info-panel--warm,
  .page-template-page-how-it-works .rook-info-panels--how .rook-info-panel--warm,
  .page-template-page-how-it-works-php .rook-info-panels--how .rook-info-panel--warm {
    grid-column: 1 / 9 !important;
    width: auto !important;
    max-width: none !important;
    min-width: 0 !important;
  }

  body.page-template-page-how-it-works .rook-info-panels--how .rook-info-panel--prep-link,
  body.page-template-page-how-it-works-php .rook-info-panels--how .rook-info-panel--prep-link,
  .page-template-page-how-it-works .rook-info-panels--how .rook-info-panel--prep-link,
  .page-template-page-how-it-works-php .rook-info-panels--how .rook-info-panel--prep-link {
    grid-column: 9 / 13 !important;
    width: auto !important;
    max-width: none !important;
    min-width: 0 !important;
    align-self: stretch !important;
    box-sizing: border-box !important;
    display: grid !important;
    grid-template-columns: 82px minmax(0, 1fr) !important;
    gap: 20px !important;
    padding: 28px 26px !important;
    overflow: hidden !important;
  }

  body.page-template-page-how-it-works .rook-info-panels--how .rook-info-panel--prep-link > svg,
  body.page-template-page-how-it-works-php .rook-info-panels--how .rook-info-panel--prep-link > svg,
  .page-template-page-how-it-works .rook-info-panels--how .rook-info-panel--prep-link > svg,
  .page-template-page-how-it-works-php .rook-info-panels--how .rook-info-panel--prep-link > svg {
    width: 74px !important;
    height: 74px !important;
    font-size: 74px !important;
    justify-self: center !important;
  }

  body.page-template-page-how-it-works .rook-info-panels--how .rook-info-panel--prep-link > div,
  body.page-template-page-how-it-works-php .rook-info-panels--how .rook-info-panel--prep-link > div,
  .page-template-page-how-it-works .rook-info-panels--how .rook-info-panel--prep-link > div,
  .page-template-page-how-it-works-php .rook-info-panels--how .rook-info-panel--prep-link > div {
    min-width: 0 !important;
    max-width: 100% !important;
    overflow: hidden !important;
  }

  body.page-template-page-how-it-works .rook-info-panels--how .rook-info-panel--prep-link h3,
  body.page-template-page-how-it-works-php .rook-info-panels--how .rook-info-panel--prep-link h3,
  .page-template-page-how-it-works .rook-info-panels--how .rook-info-panel--prep-link h3,
  .page-template-page-how-it-works-php .rook-info-panels--how .rook-info-panel--prep-link h3 {
    font-size: 25px !important;
    line-height: 1 !important;
    margin: 0 0 10px !important;
    white-space: normal !important;
  }

  body.page-template-page-how-it-works .rook-info-panels--how .rook-info-panel--prep-link p,
  body.page-template-page-how-it-works-php .rook-info-panels--how .rook-info-panel--prep-link p,
  .page-template-page-how-it-works .rook-info-panels--how .rook-info-panel--prep-link p,
  .page-template-page-how-it-works-php .rook-info-panels--how .rook-info-panel--prep-link p {
    font-size: 14px !important;
    line-height: 1.24 !important;
    margin: 0 0 14px !important;
    max-width: 100% !important;
  }

  body.page-template-page-how-it-works .rook-info-panels--how .rook-info-panel--prep-link .rook-button,
  body.page-template-page-how-it-works-php .rook-info-panels--how .rook-info-panel--prep-link .rook-button,
  .page-template-page-how-it-works .rook-info-panels--how .rook-info-panel--prep-link .rook-button,
  .page-template-page-how-it-works-php .rook-info-panels--how .rook-info-panel--prep-link .rook-button {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    min-height: 48px !important;
    box-sizing: border-box !important;
    padding: 13px 14px 11px !important;
    font-size: clamp(18px, 1.22vw, 22px) !important;
    line-height: 1 !important;
    white-space: nowrap !important;
  }
}


/* v1.1.128: How It Works customer preparation text alignment and GET INSTANT QUOTE hover fix */
@media (min-width: 781px) {
  body.page-template-page-how-it-works .rook-info-panels--how .rook-info-panel--prep-link > div,
  body.page-template-page-how-it-works-php .rook-info-panels--how .rook-info-panel--prep-link > div,
  .page-template-page-how-it-works .rook-info-panels--how .rook-info-panel--prep-link > div,
  .page-template-page-how-it-works-php .rook-info-panels--how .rook-info-panel--prep-link > div {
    text-align: left !important;
    justify-self: stretch !important;
  }

  body.page-template-page-how-it-works .rook-info-panels--how .rook-info-panel--prep-link h3,
  body.page-template-page-how-it-works-php .rook-info-panels--how .rook-info-panel--prep-link h3,
  .page-template-page-how-it-works .rook-info-panels--how .rook-info-panel--prep-link h3,
  .page-template-page-how-it-works-php .rook-info-panels--how .rook-info-panel--prep-link h3,
  body.page-template-page-how-it-works .rook-info-panels--how .rook-info-panel--prep-link p,
  body.page-template-page-how-it-works-php .rook-info-panels--how .rook-info-panel--prep-link p,
  .page-template-page-how-it-works .rook-info-panels--how .rook-info-panel--prep-link p,
  .page-template-page-how-it-works-php .rook-info-panels--how .rook-info-panel--prep-link p {
    text-align: left !important;
  }

  body.page-template-page-how-it-works .rook-info-panels--how .rook-info-panel--prep-link .rook-button,
  body.page-template-page-how-it-works-php .rook-info-panels--how .rook-info-panel--prep-link .rook-button,
  .page-template-page-how-it-works .rook-info-panels--how .rook-info-panel--prep-link .rook-button,
  .page-template-page-how-it-works-php .rook-info-panels--how .rook-info-panel--prep-link .rook-button {
    justify-content: center !important;
  }
}

@media (hover: hover) and (pointer: fine) {
  body.page-template-page-how-it-works .rook-quote-band__form button:hover,
  body.page-template-page-how-it-works-php .rook-quote-band__form button:hover,
  .page-template-page-how-it-works .rook-quote-band__form button:hover,
  .page-template-page-how-it-works-php .rook-quote-band__form button:hover {
    background: var(--rook-white) !important;
    border-color: var(--rook-white) !important;
    color: var(--rook-black) !important;
  }
}


/* v1.1.129: How It Works lower panel responsive desktop fit fix */
@media (min-width: 781px) {
  body.page-template-page-how-it-works .rook-info-panels--how,
  body.page-template-page-how-it-works-php .rook-info-panels--how,
  .page-template-page-how-it-works .rook-info-panels--how,
  .page-template-page-how-it-works-php .rook-info-panels--how,
  body.page-template-page-how-it-works .rook-info-panels--how *,
  body.page-template-page-how-it-works-php .rook-info-panels--how *,
  .page-template-page-how-it-works .rook-info-panels--how *,
  .page-template-page-how-it-works-php .rook-info-panels--how * {
    box-sizing: border-box !important;
    min-width: 0;
  }

  body.page-template-page-how-it-works .rook-info-panels--how .rook-info-panel--warm,
  body.page-template-page-how-it-works-php .rook-info-panels--how .rook-info-panel--warm,
  .page-template-page-how-it-works .rook-info-panels--how .rook-info-panel--warm,
  .page-template-page-how-it-works-php .rook-info-panels--how .rook-info-panel--warm,
  body.page-template-page-how-it-works .rook-info-panels--how .rook-info-panel--prep-link,
  body.page-template-page-how-it-works-php .rook-info-panels--how .rook-info-panel--prep-link,
  .page-template-page-how-it-works .rook-info-panels--how .rook-info-panel--prep-link,
  .page-template-page-how-it-works-php .rook-info-panels--how .rook-info-panel--prep-link {
    overflow: hidden !important;
  }

  body.page-template-page-how-it-works .rook-info-panels--how .rook-info-panel--warm h3,
  body.page-template-page-how-it-works-php .rook-info-panels--how .rook-info-panel--warm h3,
  .page-template-page-how-it-works .rook-info-panels--how .rook-info-panel--warm h3,
  .page-template-page-how-it-works-php .rook-info-panels--how .rook-info-panel--warm h3,
  body.page-template-page-how-it-works .rook-info-panels--how .rook-info-panel--warm p,
  body.page-template-page-how-it-works-php .rook-info-panels--how .rook-info-panel--warm p,
  .page-template-page-how-it-works .rook-info-panels--how .rook-info-panel--warm p,
  .page-template-page-how-it-works-php .rook-info-panels--how .rook-info-panel--warm p,
  body.page-template-page-how-it-works .rook-info-panels--how .rook-info-panel--warm strong,
  body.page-template-page-how-it-works-php .rook-info-panels--how .rook-info-panel--warm strong,
  .page-template-page-how-it-works .rook-info-panels--how .rook-info-panel--warm strong,
  .page-template-page-how-it-works-php .rook-info-panels--how .rook-info-panel--warm strong,
  body.page-template-page-how-it-works .rook-info-panels--how .rook-info-panel--warm li,
  body.page-template-page-how-it-works-php .rook-info-panels--how .rook-info-panel--warm li,
  .page-template-page-how-it-works .rook-info-panels--how .rook-info-panel--warm li,
  .page-template-page-how-it-works-php .rook-info-panels--how .rook-info-panel--warm li,
  body.page-template-page-how-it-works .rook-info-panels--how .rook-info-panel--prep-link h3,
  body.page-template-page-how-it-works-php .rook-info-panels--how .rook-info-panel--prep-link h3,
  .page-template-page-how-it-works .rook-info-panels--how .rook-info-panel--prep-link h3,
  .page-template-page-how-it-works-php .rook-info-panels--how .rook-info-panel--prep-link h3,
  body.page-template-page-how-it-works .rook-info-panels--how .rook-info-panel--prep-link p,
  body.page-template-page-how-it-works-php .rook-info-panels--how .rook-info-panel--prep-link p,
  .page-template-page-how-it-works .rook-info-panels--how .rook-info-panel--prep-link p,
  .page-template-page-how-it-works-php .rook-info-panels--how .rook-info-panel--prep-link p {
    max-width: 100% !important;
    overflow-wrap: break-word !important;
  }
}

@media (min-width: 781px) and (max-width: 1500px) {
  body.page-template-page-how-it-works .rook-info-panels--how,
  body.page-template-page-how-it-works-php .rook-info-panels--how,
  .page-template-page-how-it-works .rook-info-panels--how,
  .page-template-page-how-it-works-php .rook-info-panels--how {
    grid-template-columns: repeat(12, minmax(0, 1fr)) !important;
    gap: clamp(22px, 2vw, 30px) !important;
    padding-left: clamp(34px, 4vw, 70px) !important;
    padding-right: clamp(34px, 4vw, 70px) !important;
  }

  body.page-template-page-how-it-works .rook-info-panels--how .rook-info-panel--warm,
  body.page-template-page-how-it-works-php .rook-info-panels--how .rook-info-panel--warm,
  .page-template-page-how-it-works .rook-info-panels--how .rook-info-panel--warm,
  .page-template-page-how-it-works-php .rook-info-panels--how .rook-info-panel--warm {
    grid-column: 1 / 8 !important;
    grid-template-columns: clamp(96px, 9vw, 130px) minmax(0, 1fr) !important;
    gap: clamp(20px, 2.2vw, 30px) !important;
    padding: clamp(28px, 2.5vw, 36px) clamp(30px, 3vw, 42px) !important;
  }

  body.page-template-page-how-it-works .rook-info-panels--how .rook-info-panel--warm > svg,
  body.page-template-page-how-it-works-php .rook-info-panels--how .rook-info-panel--warm > svg,
  .page-template-page-how-it-works .rook-info-panels--how .rook-info-panel--warm > svg,
  .page-template-page-how-it-works-php .rook-info-panels--how .rook-info-panel--warm > svg {
    width: clamp(92px, 9vw, 116px) !important;
    height: clamp(92px, 9vw, 116px) !important;
    padding: clamp(20px, 2vw, 26px) !important;
  }

  body.page-template-page-how-it-works .rook-info-panels--how .rook-info-panel--warm h3,
  body.page-template-page-how-it-works-php .rook-info-panels--how .rook-info-panel--warm h3,
  .page-template-page-how-it-works .rook-info-panels--how .rook-info-panel--warm h3,
  .page-template-page-how-it-works-php .rook-info-panels--how .rook-info-panel--warm h3 {
    font-size: clamp(24px, 1.8vw, 30px) !important;
    line-height: 1.02 !important;
  }

  body.page-template-page-how-it-works .rook-info-panels--how .rook-check-list--two,
  body.page-template-page-how-it-works-php .rook-info-panels--how .rook-check-list--two,
  .page-template-page-how-it-works .rook-info-panels--how .rook-check-list--two,
  .page-template-page-how-it-works-php .rook-info-panels--how .rook-check-list--two {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px clamp(16px, 2vw, 28px) !important;
  }

  body.page-template-page-how-it-works .rook-info-panels--how .rook-info-panel--prep-link,
  body.page-template-page-how-it-works-php .rook-info-panels--how .rook-info-panel--prep-link,
  .page-template-page-how-it-works .rook-info-panels--how .rook-info-panel--prep-link,
  .page-template-page-how-it-works-php .rook-info-panels--how .rook-info-panel--prep-link {
    grid-column: 8 / 13 !important;
    grid-template-columns: clamp(58px, 5.6vw, 74px) minmax(0, 1fr) !important;
    gap: clamp(12px, 1.3vw, 18px) !important;
    padding: clamp(22px, 2vw, 28px) clamp(20px, 1.8vw, 26px) !important;
  }

  body.page-template-page-how-it-works .rook-info-panels--how .rook-info-panel--prep-link > svg,
  body.page-template-page-how-it-works-php .rook-info-panels--how .rook-info-panel--prep-link > svg,
  .page-template-page-how-it-works .rook-info-panels--how .rook-info-panel--prep-link > svg,
  .page-template-page-how-it-works-php .rook-info-panels--how .rook-info-panel--prep-link > svg {
    width: clamp(56px, 5.5vw, 68px) !important;
    height: clamp(56px, 5.5vw, 68px) !important;
    font-size: clamp(56px, 5.5vw, 68px) !important;
  }

  body.page-template-page-how-it-works .rook-info-panels--how .rook-info-panel--prep-link h3,
  body.page-template-page-how-it-works-php .rook-info-panels--how .rook-info-panel--prep-link h3,
  .page-template-page-how-it-works .rook-info-panels--how .rook-info-panel--prep-link h3,
  .page-template-page-how-it-works-php .rook-info-panels--how .rook-info-panel--prep-link h3 {
    font-size: clamp(20px, 1.7vw, 24px) !important;
    line-height: 1.02 !important;
  }

  body.page-template-page-how-it-works .rook-info-panels--how .rook-info-panel--prep-link p,
  body.page-template-page-how-it-works-php .rook-info-panels--how .rook-info-panel--prep-link p,
  .page-template-page-how-it-works .rook-info-panels--how .rook-info-panel--prep-link p,
  .page-template-page-how-it-works-php .rook-info-panels--how .rook-info-panel--prep-link p {
    font-size: clamp(13px, 1vw, 14px) !important;
    line-height: 1.26 !important;
  }

  body.page-template-page-how-it-works .rook-info-panels--how .rook-info-panel--prep-link .rook-button,
  body.page-template-page-how-it-works-php .rook-info-panels--how .rook-info-panel--prep-link .rook-button,
  .page-template-page-how-it-works .rook-info-panels--how .rook-info-panel--prep-link .rook-button,
  .page-template-page-how-it-works-php .rook-info-panels--how .rook-info-panel--prep-link .rook-button {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    padding: 12px 10px 10px !important;
    font-size: clamp(15px, 1.22vw, 18px) !important;
    letter-spacing: 0 !important;
    white-space: nowrap !important;
    overflow: visible !important;
  }
}

@media (min-width: 781px) and (max-width: 1250px) {
  body.page-template-page-how-it-works .rook-info-panels--how .rook-check-list--two,
  body.page-template-page-how-it-works-php .rook-info-panels--how .rook-check-list--two,
  .page-template-page-how-it-works .rook-info-panels--how .rook-check-list--two,
  .page-template-page-how-it-works-php .rook-info-panels--how .rook-check-list--two {
    grid-template-columns: 1fr !important;
  }
}

@media (min-width: 781px) and (max-width: 1080px) {
  body.page-template-page-how-it-works .rook-info-panels--how,
  body.page-template-page-how-it-works-php .rook-info-panels--how,
  .page-template-page-how-it-works .rook-info-panels--how,
  .page-template-page-how-it-works-php .rook-info-panels--how {
    grid-template-columns: 1fr !important;
    gap: 22px !important;
  }

  body.page-template-page-how-it-works .rook-info-panels--how .rook-info-panel--warm,
  body.page-template-page-how-it-works-php .rook-info-panels--how .rook-info-panel--warm,
  .page-template-page-how-it-works .rook-info-panels--how .rook-info-panel--warm,
  .page-template-page-how-it-works-php .rook-info-panels--how .rook-info-panel--warm,
  body.page-template-page-how-it-works .rook-info-panels--how .rook-info-panel--prep-link,
  body.page-template-page-how-it-works-php .rook-info-panels--how .rook-info-panel--prep-link,
  .page-template-page-how-it-works .rook-info-panels--how .rook-info-panel--prep-link,
  .page-template-page-how-it-works-php .rook-info-panels--how .rook-info-panel--prep-link {
    grid-column: 1 / -1 !important;
  }

  body.page-template-page-how-it-works .rook-info-panels--how .rook-info-panel--prep-link,
  body.page-template-page-how-it-works-php .rook-info-panels--how .rook-info-panel--prep-link,
  .page-template-page-how-it-works .rook-info-panels--how .rook-info-panel--prep-link,
  .page-template-page-how-it-works-php .rook-info-panels--how .rook-info-panel--prep-link {
    grid-template-columns: 74px minmax(0, 1fr) !important;
  }

  body.page-template-page-how-it-works .rook-info-panels--how .rook-info-panel--prep-link .rook-button,
  body.page-template-page-how-it-works-php .rook-info-panels--how .rook-info-panel--prep-link .rook-button,
  .page-template-page-how-it-works .rook-info-panels--how .rook-info-panel--prep-link .rook-button,
  .page-template-page-how-it-works-php .rook-info-panels--how .rook-info-panel--prep-link .rook-button {
    width: auto !important;
    min-width: min(100%, 320px) !important;
    max-width: 100% !important;
    font-size: 20px !important;
  }
}


/* v1.1.130: Home page order CTA and process wording correction pass */
@media (min-width: 901px) {
  .home .rook-simple-process--home-order .rook-simple-process__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
  }

  .home .rook-simple-process--home-order .rook-step-mini {
    grid-template-columns: 64px 34px minmax(0, 1fr);
    gap: 12px;
  }

  .home .rook-simple-process--home-order .rook-step-mini__icon {
    width: 64px;
    height: 64px;
    font-size: 30px;
  }

  .home .rook-simple-process--home-order .rook-step-mini strong {
    display: block;
    font-size: clamp(22px, 1.55vw, 30px);
    line-height: 0.98;
  }

  .home .rook-simple-process--home-order .rook-step-mini p {
    font-size: clamp(15px, 0.9vw, 17px);
    line-height: 1.22;
  }
}

@media (min-width: 781px) and (max-width: 1100px) {
  .home .rook-simple-process--home-order .rook-simple-process__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  .home .rook-hero__actions .rook-button,
  .home .rook-quote-card button,
  .home .rook-quote-band__form button {
    white-space: nowrap;
    text-align: center;
    align-items: center;
    justify-content: center;
    line-height: 1;
    min-height: 50px;
    padding: 14px 16px 12px;
    font-size: clamp(18px, 4.7vw, 23px);
  }

  .home .rook-quote-band__form button {
    width: 100%;
  }

  .home .rook-simple-process--home-order .rook-step-mini strong {
    font-size: clamp(25px, 7.5vw, 32px);
    line-height: 1;
  }

  .home .rook-simple-process--home-order .rook-step-mini p {
    font-size: 17px;
    line-height: 1.28;
  }
}

@media (max-width: 420px) {
  .home .rook-hero__actions .rook-button,
  .home .rook-quote-card button,
  .home .rook-quote-band__form button {
    font-size: clamp(17px, 4.35vw, 19px);
    padding-left: 12px;
    padding-right: 12px;
    gap: 8px;
  }
}


/* v1.1.131: Home process desktop balance and mobile hero CTA crop fix */
@media (min-width: 781px) {
  .home .rook-simple-process--home-order {
    padding-top: 46px;
    padding-bottom: 54px;
  }

  .home .rook-simple-process--home-order h2 {
    text-align: center;
    margin-bottom: 0;
  }

  .home .rook-simple-process--home-order .rook-simple-process__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 44px;
    align-items: start;
    margin-top: 36px;
  }

  .home .rook-simple-process--home-order .rook-step-mini {
    display: grid !important;
    grid-template-columns: 1fr !important;
    grid-template-rows: auto auto auto !important;
    grid-template-areas: "number" "icon" "copy" !important;
    justify-items: center;
    align-content: start;
    gap: 14px;
    min-width: 0;
    padding: 0 14px;
    text-align: center;
  }

  .home .rook-simple-process--home-order .rook-step-mini__number {
    grid-area: number;
    display: block;
    width: auto;
    height: auto;
    margin: 0;
    border-radius: 0;
    background: transparent;
    color: var(--rook-white);
    font-family: var(--rook-heading-font);
    font-weight: 400;
    font-size: clamp(42px, 3vw, 58px);
    line-height: 0.85;
    letter-spacing: 0.03em;
  }

  .home .rook-simple-process--home-order .rook-step-mini__icon {
    grid-area: icon;
    width: clamp(74px, 5.4vw, 92px);
    height: clamp(74px, 5.4vw, 92px);
    margin: 0;
    font-size: clamp(32px, 2.6vw, 42px);
    justify-self: center;
    align-self: center;
  }

  .home .rook-simple-process--home-order .rook-step-mini__icon svg {
    width: clamp(32px, 2.4vw, 42px);
    height: clamp(32px, 2.4vw, 42px);
  }

  .home .rook-simple-process--home-order .rook-step-mini > div {
    grid-area: copy;
    width: 100%;
    max-width: 290px;
    min-width: 0;
    margin: 0 auto;
    text-align: center;
  }

  .home .rook-simple-process--home-order .rook-step-mini strong {
    display: block;
    text-align: center;
    font-size: clamp(24px, 1.75vw, 32px);
    line-height: 1.02;
    overflow-wrap: normal;
    hyphens: manual;
  }

  .home .rook-simple-process--home-order .rook-step-mini p {
    max-width: 230px;
    margin: 12px auto 0;
    text-align: center;
    font-size: clamp(16px, 1vw, 18px);
    line-height: 1.26;
  }
}

@media (min-width: 1180px) {
  .home .rook-simple-process--home-order .rook-simple-process__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(28px, 2.6vw, 54px);
  }
}

@media (max-width: 780px) {
  .home .rook-hero--home .rook-hero__actions .rook-button {
    width: auto !important;
    max-width: calc(100vw - 120px) !important;
    min-width: 0 !important;
    box-sizing: border-box;
    padding: 13px 12px 11px !important;
    gap: 8px !important;
    font-size: clamp(15px, 4.05vw, 18px) !important;
    line-height: 1 !important;
    white-space: nowrap !important;
  }
}


/* v1.1.132: Home process desktop number size and alignment refinement */
@media (min-width: 781px) {
  .home .rook-simple-process--home-order .rook-step-mini {
    gap: 10px !important;
  }

  .home .rook-simple-process--home-order .rook-step-mini__number {
    display: block !important;
    justify-self: center !important;
    align-self: end !important;
    text-align: center !important;
    width: 100% !important;
    font-size: clamp(34px, 2.45vw, 46px) !important;
    line-height: 0.9 !important;
    margin: 0 auto 4px !important;
    transform: none !important;
  }

  .home .rook-simple-process--home-order .rook-step-mini__icon {
    justify-self: center !important;
    align-self: start !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}


/* v1.1.133: Home quote band CTA hover now inverts to white with black text */


/* v1.1.134: Quote-band CTA hover inversion for Pricing, HOA + Neighborhood Service, About ROOK, and Contact pages */
@media (hover: hover) and (pointer: fine) {
  body.page-template-page-pricing .rook-quote-band__form button:hover,
  body.page-template-page-pricing-php .rook-quote-band__form button:hover,
  .page-template-page-pricing .rook-quote-band__form button:hover,
  .page-template-page-pricing-php .rook-quote-band__form button:hover,
  body.page-template-page-hoa-services .rook-quote-band__form button:hover,
  body.page-template-page-hoa-services-php .rook-quote-band__form button:hover,
  .page-template-page-hoa-services .rook-quote-band__form button:hover,
  .page-template-page-hoa-services-php .rook-quote-band__form button:hover,
  body.page-template-page-about-rook .rook-quote-band__form button:hover,
  body.page-template-page-about-rook-php .rook-quote-band__form button:hover,
  .page-template-page-about-rook .rook-quote-band__form button:hover,
  .page-template-page-about-rook-php .rook-quote-band__form button:hover,
  body.page-template-page-contact .rook-quote-band__form button:hover,
  body.page-template-page-contact-php .rook-quote-band__form button:hover,
  .page-template-page-contact .rook-quote-band__form button:hover,
  .page-template-page-contact-php .rook-quote-band__form button:hover {
    background: var(--rook-white) !important;
    border-color: var(--rook-white) !important;
    color: var(--rook-black) !important;
  }
}


/* v1.1.136: HOA + Neighborhood Service page correction pass */
@media (max-width: 780px) {
  body.page-template-page-hoa-services .rook-feature-cards,
  body.page-template-page-hoa-services-php .rook-feature-cards,
  .page-template-page-hoa-services .rook-feature-cards,
  .page-template-page-hoa-services-php .rook-feature-cards {
    gap: 14px;
    padding-bottom: 12px;
  }

  body.page-template-page-hoa-services .rook-feature-cards article,
  body.page-template-page-hoa-services-php .rook-feature-cards article,
  .page-template-page-hoa-services .rook-feature-cards article,
  .page-template-page-hoa-services-php .rook-feature-cards article {
    padding-top: 18px;
    padding-bottom: 18px;
    min-height: 0;
  }

  body.page-template-page-hoa-services .rook-feature-cards svg,
  body.page-template-page-hoa-services-php .rook-feature-cards svg,
  .page-template-page-hoa-services .rook-feature-cards svg,
  .page-template-page-hoa-services-php .rook-feature-cards svg {
    width: 48px;
    height: 48px;
    margin-bottom: 8px;
  }

  body.page-template-page-hoa-services .rook-feature-cards article h3,
  body.page-template-page-hoa-services-php .rook-feature-cards article h3,
  .page-template-page-hoa-services .rook-feature-cards article h3,
  .page-template-page-hoa-services-php .rook-feature-cards article h3 {
    margin-top: 8px;
    margin-bottom: 8px;
  }

  body.page-template-page-hoa-services .rook-feature-cards article p,
  body.page-template-page-hoa-services-php .rook-feature-cards article p,
  .page-template-page-hoa-services .rook-feature-cards article p,
  .page-template-page-hoa-services-php .rook-feature-cards article p {
    margin-bottom: 0;
    line-height: 1.32;
  }

  body.page-template-page-hoa-services .rook-feature-cards + .rook-package,
  body.page-template-page-hoa-services-php .rook-feature-cards + .rook-package,
  .page-template-page-hoa-services .rook-feature-cards + .rook-package,
  .page-template-page-hoa-services-php .rook-feature-cards + .rook-package {
    margin-top: 0;
    padding-top: 22px;
  }

  body.page-template-page-hoa-services .rook-package + .rook-simple-process--how-style,
  body.page-template-page-hoa-services-php .rook-package + .rook-simple-process--how-style,
  .page-template-page-hoa-services .rook-package + .rook-simple-process--how-style,
  .page-template-page-hoa-services-php .rook-package + .rook-simple-process--how-style {
    padding-top: 24px;
  }
}


/* v1.1.137: About ROOK page correction pass */
body.page-template-page-about-rook .rook-about-intro,
body.page-template-page-about-rook-php .rook-about-intro,
.page-template-page-about-rook .rook-about-intro,
.page-template-page-about-rook-php .rook-about-intro {
  padding: 42px 70px 8px;
  text-align: center;
}

body.page-template-page-about-rook .rook-about-intro p,
body.page-template-page-about-rook-php .rook-about-intro p,
.page-template-page-about-rook .rook-about-intro p,
.page-template-page-about-rook-php .rook-about-intro p {
  max-width: 980px;
  margin: 0 auto;
  font-size: 22px;
  line-height: 1.35;
}

@media (max-width: 780px) {
  body.page-template-page-about-rook .rook-about-intro,
  body.page-template-page-about-rook-php .rook-about-intro,
  .page-template-page-about-rook .rook-about-intro,
  .page-template-page-about-rook-php .rook-about-intro {
    padding: 30px 24px 4px;
  }

  body.page-template-page-about-rook .rook-about-intro p,
  body.page-template-page-about-rook-php .rook-about-intro p,
  .page-template-page-about-rook .rook-about-intro p,
  .page-template-page-about-rook-php .rook-about-intro p {
    font-size: 18px;
    line-height: 1.38;
  }

  body.page-template-page-about-rook .rook-method-compare > div > span,
  body.page-template-page-about-rook-php .rook-method-compare > div > span,
  .page-template-page-about-rook .rook-method-compare > div > span,
  .page-template-page-about-rook-php .rook-method-compare > div > span {
    display: none !important;
  }
}


/* v1.1.138: About ROOK intro-to-heading spacing refinement */
body.page-template-page-about-rook .rook-about-intro,
body.page-template-page-about-rook-php .rook-about-intro,
.page-template-page-about-rook .rook-about-intro,
.page-template-page-about-rook-php .rook-about-intro {
  padding-bottom: 36px;
}

@media (max-width: 780px) {
  body.page-template-page-about-rook .rook-about-intro,
  body.page-template-page-about-rook-php .rook-about-intro,
  .page-template-page-about-rook .rook-about-intro,
  .page-template-page-about-rook-php .rook-about-intro {
    padding-bottom: 28px;
  }
}


/* v1.1.139: Center About ROOK Why Homeowners Choose ROOK heading on mobile */
@media (max-width: 780px) {
  body.page-template-page-about-rook .rook-about-intro + .rook-section-heading,
  body.page-template-page-about-rook-php .rook-about-intro + .rook-section-heading,
  .page-template-page-about-rook .rook-about-intro + .rook-section-heading,
  .page-template-page-about-rook-php .rook-about-intro + .rook-section-heading,
  body.page-template-page-about-rook .rook-about-intro + .rook-section-heading h2,
  body.page-template-page-about-rook-php .rook-about-intro + .rook-section-heading h2,
  .page-template-page-about-rook .rook-about-intro + .rook-section-heading h2,
  .page-template-page-about-rook-php .rook-about-intro + .rook-section-heading h2 {
    text-align: center !important;
    margin-left: auto;
    margin-right: auto;
  }
}


/* v1.1.141: Customer Preparation mobile heading centered + hero CTA clipping fix */
@media (max-width: 780px) {
  body.page-template-page-customer-preparation .rook-prep .rook-section-heading,
  body.page-template-page-customer-preparation-php .rook-prep .rook-section-heading,
  .page-template-page-customer-preparation .rook-prep .rook-section-heading,
  .page-template-page-customer-preparation-php .rook-prep .rook-section-heading {
    text-align: center;
  }

  body.page-template-page-customer-preparation .rook-prep .rook-section-heading h2,
  body.page-template-page-customer-preparation-php .rook-prep .rook-section-heading h2,
  .page-template-page-customer-preparation .rook-prep .rook-section-heading h2,
  .page-template-page-customer-preparation-php .rook-prep .rook-section-heading h2 {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  body.page-template-page-customer-preparation .rook-hero--prep-hero .rook-hero__actions,
  body.page-template-page-customer-preparation-php .rook-hero--prep-hero .rook-hero__actions,
  .page-template-page-customer-preparation .rook-hero--prep-hero .rook-hero__actions,
  .page-template-page-customer-preparation-php .rook-hero--prep-hero .rook-hero__actions {
    max-width: 100%;
  }

  body.page-template-page-customer-preparation .rook-hero--prep-hero .rook-hero__actions .rook-button,
  body.page-template-page-customer-preparation-php .rook-hero--prep-hero .rook-hero__actions .rook-button,
  .page-template-page-customer-preparation .rook-hero--prep-hero .rook-hero__actions .rook-button,
  .page-template-page-customer-preparation-php .rook-hero--prep-hero .rook-hero__actions .rook-button {
    max-width: 100%;
    font-size: 16px;
    padding: 12px 16px 10px;
    gap: 10px;
    white-space: nowrap;
  }

  body.page-template-page-customer-preparation .rook-hero--prep-hero .rook-hero__actions .rook-button span[aria-hidden="true"],
  body.page-template-page-customer-preparation-php .rook-hero--prep-hero .rook-hero__actions .rook-button span[aria-hidden="true"],
  .page-template-page-customer-preparation .rook-hero--prep-hero .rook-hero__actions .rook-button span[aria-hidden="true"],
  .page-template-page-customer-preparation-php .rook-hero--prep-hero .rook-hero__actions .rook-button span[aria-hidden="true"] {
    flex-shrink: 0;
  }
}


/* v1.1.141: Customer Preparation mobile heading centered and hero CTA clipping fix */
@media (max-width: 780px) {
  body.page-template-page-customer-preparation .rook-prep .rook-section-heading,
  body.page-template-page-customer-preparation-php .rook-prep .rook-section-heading,
  .page-template-page-customer-preparation .rook-prep .rook-section-heading,
  .page-template-page-customer-preparation-php .rook-prep .rook-section-heading {
    text-align: center !important;
  }

  body.page-template-page-customer-preparation .rook-prep .rook-section-heading h2,
  body.page-template-page-customer-preparation-php .rook-prep .rook-section-heading h2,
  .page-template-page-customer-preparation .rook-prep .rook-section-heading h2,
  .page-template-page-customer-preparation-php .rook-prep .rook-section-heading h2 {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    max-width: 100%;
  }

  body.page-template-page-customer-preparation .rook-hero--prep-hero .rook-hero__copy,
  body.page-template-page-customer-preparation-php .rook-hero--prep-hero .rook-hero__copy,
  .page-template-page-customer-preparation .rook-hero--prep-hero .rook-hero__copy,
  .page-template-page-customer-preparation-php .rook-hero--prep-hero .rook-hero__copy {
    padding-right: 44px !important;
    clip-path: polygon(0 0, 66% 0, 56% 100%, 0 100%) !important;
  }

  body.page-template-page-customer-preparation .rook-hero--prep-hero .rook-hero__actions,
  body.page-template-page-customer-preparation-php .rook-hero--prep-hero .rook-hero__actions,
  .page-template-page-customer-preparation .rook-hero--prep-hero .rook-hero__actions,
  .page-template-page-customer-preparation-php .rook-hero--prep-hero .rook-hero__actions {
    max-width: 100%;
    width: 100%;
  }

  body.page-template-page-customer-preparation .rook-hero--prep-hero .rook-hero__actions .rook-button,
  body.page-template-page-customer-preparation-php .rook-hero--prep-hero .rook-hero__actions .rook-button,
  .page-template-page-customer-preparation .rook-hero--prep-hero .rook-hero__actions .rook-button,
  .page-template-page-customer-preparation-php .rook-hero--prep-hero .rook-hero__actions .rook-button {
    max-width: 100%;
    width: fit-content;
    font-size: 15px !important;
    padding: 11px 14px 10px !important;
    gap: 8px !important;
    min-height: 42px;
    white-space: nowrap;
  }
}


/* v1.1.142: Strong Customer Preparation mobile title center + hero CTA no-crop fix */
@media (max-width: 780px) {
  section#preparation-steps.rook-prep > .rook-section-heading,
  section#preparation-steps.rook-prep > .rook-section-heading h2 {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  section#preparation-steps.rook-prep > .rook-section-heading h2 {
    max-width: 100% !important;
  }

  .rook-hero--prep-hero .rook-hero__copy {
    padding-right: 30px !important;
    clip-path: polygon(0 0, 74% 0, 64% 100%, 0 100%) !important;
    overflow: visible !important;
  }

  .rook-hero--prep-hero .rook-hero__actions {
    width: 100% !important;
    max-width: 100% !important;
    overflow: visible !important;
  }

  .rook-hero--prep-hero .rook-hero__actions .rook-button {
    width: auto !important;
    max-width: calc(100vw - 120px) !important;
    min-width: 0 !important;
    min-height: 40px !important;
    padding: 11px 12px 9px !important;
    gap: 7px !important;
    font-size: clamp(13px, 3.45vw, 15px) !important;
    line-height: 1 !important;
    white-space: nowrap !important;
    box-sizing: border-box !important;
    overflow: visible !important;
  }

  .rook-hero--prep-hero .rook-hero__actions .rook-button span[aria-hidden="true"] {
    flex: 0 0 auto !important;
  }
}


/* v1.1.143: Customer Preparation desktop hero body text no-crop fix */
@media (min-width: 781px) {
  body.page-template-page-customer-preparation .rook-hero--prep-hero .rook-hero__copy p:not(.rook-eyebrow),
  body.page-template-page-customer-preparation-php .rook-hero--prep-hero .rook-hero__copy p:not(.rook-eyebrow),
  .page-template-page-customer-preparation .rook-hero--prep-hero .rook-hero__copy p:not(.rook-eyebrow),
  .page-template-page-customer-preparation-php .rook-hero--prep-hero .rook-hero__copy p:not(.rook-eyebrow) {
    max-width: 365px !important;
    padding-right: 0 !important;
    box-sizing: border-box !important;
  }
}


/* v1.1.144: HOA + Neighborhood Service mobile hero copy/CTA no-crop fix */
@media (max-width: 780px) {
  body.page-template-page-hoa-services .rook-hero--hoa-hero .rook-hero__copy,
  body.page-template-page-hoa-services-php .rook-hero--hoa-hero .rook-hero__copy,
  .page-template-page-hoa-services .rook-hero--hoa-hero .rook-hero__copy,
  .page-template-page-hoa-services-php .rook-hero--hoa-hero .rook-hero__copy {
    padding-right: 82px !important;
    clip-path: polygon(0 0, 76% 0, 70% 100%, 0 100%) !important;
    overflow: visible !important;
  }

  body.page-template-page-hoa-services .rook-hero--hoa-hero .rook-hero__copy p:not(.rook-eyebrow),
  body.page-template-page-hoa-services-php .rook-hero--hoa-hero .rook-hero__copy p:not(.rook-eyebrow),
  .page-template-page-hoa-services .rook-hero--hoa-hero .rook-hero__copy p:not(.rook-eyebrow),
  .page-template-page-hoa-services-php .rook-hero--hoa-hero .rook-hero__copy p:not(.rook-eyebrow) {
    max-width: 220px !important;
    font-size: 19px !important;
    line-height: 1.22 !important;
    box-sizing: border-box !important;
  }

  body.page-template-page-hoa-services .rook-hero--hoa-hero .rook-hero__actions,
  body.page-template-page-hoa-services-php .rook-hero--hoa-hero .rook-hero__actions,
  .page-template-page-hoa-services .rook-hero--hoa-hero .rook-hero__actions,
  .page-template-page-hoa-services-php .rook-hero--hoa-hero .rook-hero__actions {
    max-width: 258px !important;
    width: 258px !important;
  }

  body.page-template-page-hoa-services .rook-hero--hoa-hero .rook-hero__actions .rook-button,
  body.page-template-page-hoa-services-php .rook-hero--hoa-hero .rook-hero__actions .rook-button,
  .page-template-page-hoa-services .rook-hero--hoa-hero .rook-hero__actions .rook-button,
  .page-template-page-hoa-services-php .rook-hero--hoa-hero .rook-hero__actions .rook-button {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    min-height: 42px !important;
    padding: 11px 12px 10px !important;
    font-size: clamp(14px, 3.45vw, 16px) !important;
    line-height: 1 !important;
    gap: 7px !important;
    white-space: nowrap !important;
    box-sizing: border-box !important;
  }

  body.page-template-page-hoa-services .rook-hero--hoa-hero .rook-hero__actions .rook-button span[aria-hidden="true"],
  body.page-template-page-hoa-services-php .rook-hero--hoa-hero .rook-hero__actions .rook-button span[aria-hidden="true"],
  .page-template-page-hoa-services .rook-hero--hoa-hero .rook-hero__actions .rook-button span[aria-hidden="true"],
  .page-template-page-hoa-services-php .rook-hero--hoa-hero .rook-hero__actions .rook-button span[aria-hidden="true"] {
    flex: 0 0 auto !important;
  }
}


/* v1.1.145: HOA mobile hero CTA tightened and orange panel rebalanced */
@media (max-width: 780px) {
  body.page-template-page-hoa-services .rook-hero--hoa-hero .rook-hero__copy,
  body.page-template-page-hoa-services-php .rook-hero--hoa-hero .rook-hero__copy,
  .page-template-page-hoa-services .rook-hero--hoa-hero .rook-hero__copy,
  .page-template-page-hoa-services-php .rook-hero--hoa-hero .rook-hero__copy {
    padding-right: 58px !important;
    clip-path: polygon(0 0, 72% 0, 66% 100%, 0 100%) !important;
  }

  body.page-template-page-hoa-services .rook-hero--hoa-hero .rook-hero__copy p:not(.rook-eyebrow),
  body.page-template-page-hoa-services-php .rook-hero--hoa-hero .rook-hero__copy p:not(.rook-eyebrow),
  .page-template-page-hoa-services .rook-hero--hoa-hero .rook-hero__copy p:not(.rook-eyebrow),
  .page-template-page-hoa-services-php .rook-hero--hoa-hero .rook-hero__copy p:not(.rook-eyebrow) {
    max-width: 218px !important;
  }

  body.page-template-page-hoa-services .rook-hero--hoa-hero .rook-hero__actions,
  body.page-template-page-hoa-services-php .rook-hero--hoa-hero .rook-hero__actions,
  .page-template-page-hoa-services .rook-hero--hoa-hero .rook-hero__actions,
  .page-template-page-hoa-services-php .rook-hero--hoa-hero .rook-hero__actions {
    width: auto !important;
    max-width: 230px !important;
    display: inline-flex !important;
  }

  body.page-template-page-hoa-services .rook-hero--hoa-hero .rook-hero__actions .rook-button,
  body.page-template-page-hoa-services-php .rook-hero--hoa-hero .rook-hero__actions .rook-button,
  .page-template-page-hoa-services .rook-hero--hoa-hero .rook-hero__actions .rook-button,
  .page-template-page-hoa-services-php .rook-hero--hoa-hero .rook-hero__actions .rook-button {
    width: auto !important;
    max-width: 230px !important;
    min-width: 0 !important;
    padding: 11px 18px 10px !important;
    font-size: clamp(14px, 3.45vw, 15px) !important;
    gap: 8px !important;
  }
}


/* v1.1.148: About ROOK mobile hero image focal point shifted left, without widening the orange copy panel */
@media (max-width: 780px) {
  body.page-template-page-about-rook .rook-hero--about-hero .rook-hero__media .rook-image img,
  body.page-template-page-about-rook-php .rook-hero--about-hero .rook-hero__media .rook-image img,
  .page-template-page-about-rook .rook-hero--about-hero .rook-hero__media .rook-image img,
  .page-template-page-about-rook-php .rook-hero--about-hero .rook-hero__media .rook-image img {
    width: 112% !important;
    max-width: none !important;
    transform: translateX(14%) !important;
    object-position: left center !important;
  }
}


/* v1.1.149: How It Works hero image crop shifted so important content stays clear of the orange panel on desktop and mobile */
body.page-template-page-how-it-works .rook-hero--how-hero .rook-hero__media .rook-image img,
body.page-template-page-how-it-works-php .rook-hero--how-hero .rook-hero__media .rook-image img,
.page-template-page-how-it-works .rook-hero--how-hero .rook-hero__media .rook-image img,
.page-template-page-how-it-works-php .rook-hero--how-hero .rook-hero__media .rook-image img {
  width: 108% !important;
  max-width: none !important;
  transform: translateX(9%) !important;
  object-position: left center !important;
}

@media (max-width: 780px) {
  body.page-template-page-how-it-works .rook-hero--how-hero .rook-hero__copy,
  body.page-template-page-how-it-works-php .rook-hero--how-hero .rook-hero__copy,
  .page-template-page-how-it-works .rook-hero--how-hero .rook-hero__copy,
  .page-template-page-how-it-works-php .rook-hero--how-hero .rook-hero__copy {
    padding-right: 68px !important;
    clip-path: polygon(0 0, 64% 0, 53% 100%, 0 100%) !important;
  }

  body.page-template-page-how-it-works .rook-hero--how-hero .rook-hero__media .rook-image,
  body.page-template-page-how-it-works-php .rook-hero--how-hero .rook-hero__media .rook-image,
  .page-template-page-how-it-works .rook-hero--how-hero .rook-hero__media .rook-image,
  .page-template-page-how-it-works-php .rook-hero--how-hero .rook-hero__media .rook-image {
    padding-left: 30% !important;
    overflow: hidden !important;
  }

  body.page-template-page-how-it-works .rook-hero--how-hero .rook-hero__media .rook-image img,
  body.page-template-page-how-it-works-php .rook-hero--how-hero .rook-hero__media .rook-image img,
  .page-template-page-how-it-works .rook-hero--how-hero .rook-hero__media .rook-image img,
  .page-template-page-how-it-works-php .rook-hero--how-hero .rook-hero__media .rook-image img {
    width: 118% !important;
    max-width: none !important;
    transform: translateX(14%) !important;
    object-position: left center !important;
  }
}


/* v1.1.150: About ROOK mobile copy safe area for Android and iOS text rendering */
@media (max-width: 780px) {
  body.page-template-page-about-rook .rook-hero--about-hero .rook-hero__copy,
  body.page-template-page-about-rook-php .rook-hero--about-hero .rook-hero__copy,
  .page-template-page-about-rook .rook-hero--about-hero .rook-hero__copy,
  .page-template-page-about-rook-php .rook-hero--about-hero .rook-hero__copy {
    -webkit-clip-path: polygon(0 0, 69% 0, 62% 100%, 0 100%) !important;
    clip-path: polygon(0 0, 69% 0, 62% 100%, 0 100%) !important;
  }

  body.page-template-page-about-rook .rook-hero--about-hero .rook-hero__copy p:not(.rook-eyebrow),
  body.page-template-page-about-rook-php .rook-hero--about-hero .rook-hero__copy p:not(.rook-eyebrow),
  .page-template-page-about-rook .rook-hero--about-hero .rook-hero__copy p:not(.rook-eyebrow),
  .page-template-page-about-rook-php .rook-hero--about-hero .rook-hero__copy p:not(.rook-eyebrow) {
    width: 48vw !important;
    max-width: 190px !important;
    white-space: normal !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
    line-height: 1.16 !important;
  }
}


/* v1.1.151: Android/mobile text-rendering safe areas for approved hero layouts.
   Scoped only to the requested pages and mobile breakpoint. Desktop and all
   unrelated pages remain untouched. */
@media (max-width: 780px) {
  /* Home, Services, Contact, and Terms: retain the established diagonal look,
     but give title/body/button content a slightly safer lower edge. */
  body.home .rook-hero--home .rook-hero__copy,
  body.page-template-page-services .rook-hero--services-hero .rook-hero__copy,
  body.page-template-page-services-php .rook-hero--services-hero .rook-hero__copy,
  .page-template-page-services .rook-hero--services-hero .rook-hero__copy,
  .page-template-page-services-php .rook-hero--services-hero .rook-hero__copy,
  body.page-template-page-contact .rook-hero--contact-hero .rook-hero__copy,
  body.page-template-page-contact-php .rook-hero--contact-hero .rook-hero__copy,
  .page-template-page-contact .rook-hero--contact-hero .rook-hero__copy,
  .page-template-page-contact-php .rook-hero--contact-hero .rook-hero__copy,
  body.page-template-page-terms-policies .rook-hero--terms-hero .rook-hero__copy,
  body.page-template-page-terms-policies-php .rook-hero--terms-hero .rook-hero__copy,
  .page-template-page-terms-policies .rook-hero--terms-hero .rook-hero__copy,
  .page-template-page-terms-policies-php .rook-hero--terms-hero .rook-hero__copy {
    -webkit-clip-path: polygon(0 0, 72% 0, 64% 100%, 0 100%) !important;
    clip-path: polygon(0 0, 72% 0, 64% 100%, 0 100%) !important;
  }

  /* Pricing keeps its page-specific proportions while expanding the safe edge
     just enough to prevent Android from clipping the longer heading and copy. */
  body.page-template-page-pricing .rook-hero--pricing-hero .rook-hero__copy,
  body.page-template-page-pricing-php .rook-hero--pricing-hero .rook-hero__copy,
  .page-template-page-pricing .rook-hero--pricing-hero .rook-hero__copy,
  .page-template-page-pricing-php .rook-hero--pricing-hero .rook-hero__copy {
    -webkit-clip-path: polygon(0 0, 75% 0, 67% 100%, 0 100%) !important;
    clip-path: polygon(0 0, 75% 0, 67% 100%, 0 100%) !important;
  }

  /* Customer Preparation already has a special CTA/image composition, so only
     its lower safe edge is increased. */
  body.page-template-page-customer-preparation .rook-hero--prep-hero .rook-hero__copy,
  body.page-template-page-customer-preparation-php .rook-hero--prep-hero .rook-hero__copy,
  .page-template-page-customer-preparation .rook-hero--prep-hero .rook-hero__copy,
  .page-template-page-customer-preparation-php .rook-hero--prep-hero .rook-hero__copy {
    -webkit-clip-path: polygon(0 0, 74% 0, 68% 100%, 0 100%) !important;
    clip-path: polygon(0 0, 74% 0, 68% 100%, 0 100%) !important;
  }

  /* Keep paragraph line boxes away from the diagonal edge. This mirrors the
     approved About ROOK Android fix without altering desktop typography. */
  body.home .rook-hero--home .rook-hero__copy p:not(.rook-eyebrow),
  body.page-template-page-services .rook-hero--services-hero .rook-hero__copy p:not(.rook-eyebrow),
  body.page-template-page-services-php .rook-hero--services-hero .rook-hero__copy p:not(.rook-eyebrow),
  .page-template-page-services .rook-hero--services-hero .rook-hero__copy p:not(.rook-eyebrow),
  .page-template-page-services-php .rook-hero--services-hero .rook-hero__copy p:not(.rook-eyebrow),
  body.page-template-page-pricing .rook-hero--pricing-hero .rook-hero__copy p:not(.rook-eyebrow),
  body.page-template-page-pricing-php .rook-hero--pricing-hero .rook-hero__copy p:not(.rook-eyebrow),
  .page-template-page-pricing .rook-hero--pricing-hero .rook-hero__copy p:not(.rook-eyebrow),
  .page-template-page-pricing-php .rook-hero--pricing-hero .rook-hero__copy p:not(.rook-eyebrow),
  body.page-template-page-contact .rook-hero--contact-hero .rook-hero__copy p:not(.rook-eyebrow),
  body.page-template-page-contact-php .rook-hero--contact-hero .rook-hero__copy p:not(.rook-eyebrow),
  .page-template-page-contact .rook-hero--contact-hero .rook-hero__copy p:not(.rook-eyebrow),
  .page-template-page-contact-php .rook-hero--contact-hero .rook-hero__copy p:not(.rook-eyebrow),
  body.page-template-page-customer-preparation .rook-hero--prep-hero .rook-hero__copy p:not(.rook-eyebrow),
  body.page-template-page-customer-preparation-php .rook-hero--prep-hero .rook-hero__copy p:not(.rook-eyebrow),
  .page-template-page-customer-preparation .rook-hero--prep-hero .rook-hero__copy p:not(.rook-eyebrow),
  .page-template-page-customer-preparation-php .rook-hero--prep-hero .rook-hero__copy p:not(.rook-eyebrow),
  body.page-template-page-terms-policies .rook-hero--terms-hero .rook-hero__copy p:not(.rook-eyebrow),
  body.page-template-page-terms-policies-php .rook-hero--terms-hero .rook-hero__copy p:not(.rook-eyebrow),
  .page-template-page-terms-policies .rook-hero--terms-hero .rook-hero__copy p:not(.rook-eyebrow),
  .page-template-page-terms-policies-php .rook-hero--terms-hero .rook-hero__copy p:not(.rook-eyebrow) {
    width: 52vw !important;
    max-width: 205px !important;
    white-space: normal !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
    line-height: 1.16 !important;
  }
}


/* v1.1.152: About ROOK method comparison images visible on mobile.
   This only overrides the existing mobile image-hide rule for this section. */
@media (max-width: 780px) {
  body.page-template-page-about-rook .rook-method-compare .rook-image,
  body.page-template-page-about-rook-php .rook-method-compare .rook-image,
  .page-template-page-about-rook .rook-method-compare .rook-image,
  .page-template-page-about-rook-php .rook-method-compare .rook-image {
    display: grid !important;
  }
}


/* v1.1.153: Contact page mobile hero title wraps to two lines so Android does not clip the word ROOK */
@media (max-width: 780px) {
  body.page-template-page-contact .rook-hero--contact-hero .rook-hero__copy h1,
  body.page-template-page-contact-php .rook-hero--contact-hero .rook-hero__copy h1,
  .page-template-page-contact .rook-hero--contact-hero .rook-hero__copy h1,
  .page-template-page-contact-php .rook-hero--contact-hero .rook-hero__copy h1 {
    width: 100% !important;
    max-width: 255px !important;
    white-space: normal !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
    line-height: 0.92 !important;
  }
}


/* v1.1.154: Explicit Contact hero line break is mobile-only, avoiding Android font-wrap inconsistencies */
.rook-hero--contact-hero .rook-hero__copy h1 br {
  display: none;
}

@media (max-width: 780px) {
  .rook-hero--contact-hero .rook-hero__copy h1 br {
    display: block !important;
  }
}


/* v1.1.155: Pricing clarification for properties above the highest displayed tier */
.rook-pricing-manual-review {
  margin: 18px auto 0;
  padding: 0 20px;
  max-width: 980px;
  color: var(--rook-black);
  font-size: clamp(17px, 1.25vw, 21px);
  font-weight: 600;
  line-height: 1.35;
  text-align: center;
}

@media (max-width: 780px) {
  .rook-pricing-mobile .rook-pricing-manual-review {
    margin: 18px auto 4px;
    padding: 0 8px;
    max-width: 620px;
    font-size: 18px;
    line-height: 1.35;
  }
}


/* v1.1.156: Terms + Policies desktop hero copy safe-area fix only.
   Gives the long two-line title and paragraph enough room before the diagonal edge. */
@media (min-width: 781px) {
  body.page-template-page-terms-policies .rook-hero--terms-hero,
  body.page-template-page-terms-policies-php .rook-hero--terms-hero,
  .page-template-page-terms-policies .rook-hero--terms-hero,
  .page-template-page-terms-policies-php .rook-hero--terms-hero {
    grid-template-columns: clamp(520px, 38vw, 680px) minmax(0, 1fr);
  }

  body.page-template-page-terms-policies .rook-hero--terms-hero .rook-hero__copy,
  body.page-template-page-terms-policies-php .rook-hero--terms-hero .rook-hero__copy,
  .page-template-page-terms-policies .rook-hero--terms-hero .rook-hero__copy,
  .page-template-page-terms-policies-php .rook-hero--terms-hero .rook-hero__copy {
    padding-right: 76px;
    -webkit-clip-path: polygon(0 0, 96% 0, 86% 100%, 0 100%);
    clip-path: polygon(0 0, 96% 0, 86% 100%, 0 100%);
  }

  body.page-template-page-terms-policies .rook-hero--terms-hero .rook-hero__copy h1,
  body.page-template-page-terms-policies-php .rook-hero--terms-hero .rook-hero__copy h1,
  .page-template-page-terms-policies .rook-hero--terms-hero .rook-hero__copy h1,
  .page-template-page-terms-policies-php .rook-hero--terms-hero .rook-hero__copy h1 {
    max-width: 540px;
    font-size: clamp(68px, 5.2vw, 100px);
  }

  body.page-template-page-terms-policies .rook-hero--terms-hero .rook-hero__copy p:not(.rook-eyebrow),
  body.page-template-page-terms-policies-php .rook-hero--terms-hero .rook-hero__copy p:not(.rook-eyebrow),
  .page-template-page-terms-policies .rook-hero--terms-hero .rook-hero__copy p:not(.rook-eyebrow),
  .page-template-page-terms-policies-php .rook-hero--terms-hero .rook-hero__copy p:not(.rook-eyebrow) {
    max-width: 450px;
  }
}


/* v2.1.0: Home/header content update only. Existing approved layouts remain intact. */
.rook-quote-card--neighborhood h2 {
  margin-bottom: 14px;
}

.rook-quote-card__prices,
.rook-quote-card__deposit {
  display: grid;
  gap: 3px;
}

.rook-quote-card__prices {
  margin-bottom: 15px;
}

.rook-quote-card__prices strong {
  font-family: var(--rook-heading-font);
  font-size: 26px;
  line-height: 1.04;
  text-transform: uppercase;
}

.rook-quote-card__deposit {
  margin-bottom: 15px;
  font-size: 18px;
  line-height: 1.12;
}

.rook-quote-card__button {
  width: 100%;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 2px solid var(--rook-orange);
  border-radius: var(--rook-button-radius);
  padding: 16px 18px 14px;
  background: var(--rook-orange);
  color: var(--rook-white);
  font-family: var(--rook-heading-font);
  font-weight: var(--rook-heading-weight);
  font-size: 22px;
  line-height: 1;
  text-transform: uppercase;
  text-align: center;
}

.rook-quote-card__note {
  margin-top: 12px !important;
  font-size: 15px !important;
  line-height: 1.15;
}

.rook-quote-band--home-ready {
  grid-template-columns: minmax(320px, 1fr) auto;
}

.rook-quote-band__cta {
  display: flex;
  justify-content: flex-end;
}

.rook-order-anchor {
  height: 0;
  scroll-margin-top: 110px;
}

@media (hover: hover) and (pointer: fine) {
  .rook-quote-card__button:hover {
    background: var(--rook-white);
    border-color: var(--rook-white);
    color: var(--rook-black);
  }
}

@media (max-width: 780px) {
  .rook-quote-card__prices strong {
    font-size: 23px;
  }

  .rook-quote-card__button {
    font-size: 20px;
    white-space: normal;
  }

  .rook-quote-band--home-ready {
    grid-template-columns: 1fr;
  }

  .rook-quote-band__cta,
  .rook-quote-band__cta .rook-button {
    width: 100%;
  }
}


/* v2.2.0: V2 Pricing page content-only neighborhood pricing update */
.rook-hero--pricing-hero .rook-hero__helper {
  display: block;
  max-width: 620px;
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 700;
}

.rook-pricing--v2 {
  padding-top: 36px;
  padding-bottom: 28px;
}

.rook-pricing__header--v2 {
  justify-content: center;
  text-align: center;
  margin-bottom: 18px;
}

.rook-pricing__header--v2 h2 {
  text-align: center;
}

.rook-pricing-accordion-v2 {
  max-width: 1180px;
  margin: 0 auto;
}

.rook-pricing-accordion-v2 details {
  border: 1px solid var(--rook-line);
  margin-bottom: 10px;
  border-radius: var(--rook-radius);
  overflow: hidden;
  background: var(--rook-white);
}

.rook-pricing-accordion-v2 summary {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 72px;
  padding: 18px 64px 18px 24px;
  background: var(--rook-black);
  color: var(--rook-white);
  font-family: var(--rook-heading-font);
  font-size: clamp(21px, 1.7vw, 28px);
  line-height: 1.05;
  text-transform: uppercase;
  cursor: pointer;
  list-style: none;
}

.rook-pricing-accordion-v2 summary::-webkit-details-marker {
  display: none;
}

.rook-pricing-accordion-v2 summary::after {
  content: '+';
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-52%);
  color: var(--rook-orange);
  font-family: var(--rook-heading-font);
  font-size: 36px;
  line-height: 1;
}

.rook-pricing-accordion-v2 details[open] summary::after {
  content: '−';
}

.rook-pricing-accordion-v2__content {
  padding: 28px;
}

.rook-pricing-choice-v2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--rook-line);
  border-radius: var(--rook-radius);
  overflow: hidden;
}

.rook-pricing-choice-v2 article {
  min-height: 190px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: var(--rook-white);
}

.rook-pricing-choice-v2 article + article {
  border-left: 1px solid var(--rook-line);
}

.rook-pricing-choice-v2 svg,
.rook-pricing-request-v2 svg {
  width: 52px;
  height: 52px;
  margin-bottom: 14px;
  color: var(--rook-orange);
}

.rook-pricing-choice-v2 h3,
.rook-pricing-request-v2 h3 {
  margin: 0 0 12px;
  font-family: var(--rook-heading-font);
  font-size: clamp(28px, 2.4vw, 38px);
  line-height: 1;
  text-transform: uppercase;
}

.rook-pricing-choice-v2 strong {
  color: var(--rook-orange);
  font-family: var(--rook-heading-font);
  font-size: clamp(48px, 5vw, 72px);
  line-height: .95;
}

.rook-pricing-choice-v2__complete {
  background: #fff3eb !important;
}

.rook-pricing-accordion-v2__action {
  display: flex;
  justify-content: center;
  margin-top: 22px;
}

.rook-pricing-request-v2 {
  padding: 14px 8px 8px;
  text-align: center;
}

.rook-pricing-request-v2 p {
  max-width: 680px;
  margin: 0 auto 22px;
  font-size: 18px;
  line-height: 1.45;
}

.rook-pricing-package aside {
  align-items: center;
}

@media (max-width: 780px) {
  .rook-hero--pricing-hero .rook-hero__helper {
    width: 52vw;
    max-width: 205px;
    margin-top: 8px;
    font-size: 12px;
    line-height: 1.28;
  }

  .rook-pricing--v2 {
    padding-top: 28px;
  }

  .rook-pricing-accordion-v2 summary {
    min-height: 68px;
    padding: 16px 52px 16px 18px;
    font-size: 21px;
  }

  .rook-pricing-accordion-v2 summary::after {
    right: 18px;
    font-size: 32px;
  }

  .rook-pricing-accordion-v2__content {
    padding: 18px;
  }

  .rook-pricing-choice-v2 {
    grid-template-columns: 1fr;
  }

  .rook-pricing-choice-v2 article {
    min-height: 165px;
    padding: 22px 18px;
  }

  .rook-pricing-choice-v2 article + article {
    border-left: 0;
    border-top: 1px solid var(--rook-line);
  }

  .rook-pricing-choice-v2 h3,
  .rook-pricing-request-v2 h3 {
    font-size: 30px;
  }

  .rook-pricing-choice-v2 strong {
    font-size: 58px;
  }

  .rook-pricing-request-v2 p {
    font-size: 16px;
  }
}


/* v2.2.1: Pricing fix — use the original approved responsive system.
   Desktop = ROOK horizontal pricing tabs and selected panel.
   Mobile = the existing ROOK black accordion. */
.rook-pricing--v2-copy {
  padding-top: 36px;
  padding-bottom: 28px;
}

.rook-pricing-tabs--v2-copy {
  grid-template-columns: repeat(5, 1fr);
}

.rook-pricing-tabs--v2-copy button {
  padding: 12px 10px;
}

.rook-pricing-tabs--v2-copy strong {
  font-size: clamp(19px, 1.55vw, 25px);
}

.rook-pricing-tabs--v2-copy span {
  margin-top: 6px;
  font-size: 12px;
  line-height: 1.2;
}

.rook-pricing-panel__grid--v2-copy {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.rook-pricing-panel__grid--v2-copy > article {
  min-height: 225px;
}

.rook-pricing-panel__grid--v2-copy .rook-price-item h3,
.rook-pricing-panel__grid--v2-copy .rook-bundle-price h3 {
  margin: 8px 0 18px;
  font-family: var(--rook-heading-font);
  font-size: 34px;
  line-height: 1;
  text-transform: uppercase;
}

.rook-pricing-panel__grid--v2-copy .rook-bundle-price > svg {
  color: var(--rook-orange);
}

.rook-pricing-v2-copy__action {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}

.rook-pricing-panel__grid--v2-request {
  grid-template-columns: 1fr;
}

.rook-pricing-panel__grid--v2-request .rook-pricing-request-v2-copy {
  min-height: 225px;
  text-align: center !important;
}

.rook-pricing-request-v2-copy > p {
  max-width: 660px;
  margin: 10px auto 20px;
  font-family: inherit;
  font-size: 18px;
  line-height: 1.45;
}

.rook-pricing-request-v2-copy .rook-button {
  margin-top: 6px;
}

@media (max-width: 1180px) {
  .rook-pricing-panel__grid--v2-copy,
  .rook-pricing-panel__grid--v2-request {
    grid-template-columns: 1fr;
  }

  .rook-pricing-v2-copy__action {
    padding: 0 18px 20px;
  }
}


/* v2.2.2: Pricing desktop hero copy safe-area fix only.
   Keeps the approved hero composition, image, spacing system and mobile layout intact. */
@media (min-width: 781px) {
  body.page-template-page-pricing .rook-hero--pricing-hero .rook-hero__copy h1,
  body.page-template-page-pricing-php .rook-hero--pricing-hero .rook-hero__copy h1,
  .page-template-page-pricing .rook-hero--pricing-hero .rook-hero__copy h1,
  .page-template-page-pricing-php .rook-hero--pricing-hero .rook-hero__copy h1 {
    font-size: clamp(76px, 4.4vw, 88px) !important;
    line-height: 0.92 !important;
    max-width: 430px !important;
  }

  body.page-template-page-pricing .rook-hero--pricing-hero .rook-hero__copy p:not(.rook-eyebrow),
  body.page-template-page-pricing-php .rook-hero--pricing-hero .rook-hero__copy p:not(.rook-eyebrow),
  .page-template-page-pricing .rook-hero--pricing-hero .rook-hero__copy p:not(.rook-eyebrow),
  .page-template-page-pricing-php .rook-hero--pricing-hero .rook-hero__copy p:not(.rook-eyebrow) {
    max-width: 390px !important;
  }

  body.page-template-page-pricing .rook-hero--pricing-hero .rook-hero__helper,
  body.page-template-page-pricing-php .rook-hero--pricing-hero .rook-hero__helper,
  .page-template-page-pricing .rook-hero--pricing-hero .rook-hero__helper,
  .page-template-page-pricing-php .rook-hero--pricing-hero .rook-hero__helper {
    max-width: 390px !important;
  }
}
