  /* ============================================================
     /opus-high/ — maximum conversion + Google Ads QS variant
     ============================================================ */
  :root {
    --oh-radius: 16px;
    --oh-shadow: 0 1px 0 rgba(22,26,20,.05), 0 14px 36px -14px rgba(22,26,20,.22);
    --oh-shadow-lg: 0 24px 60px -20px rgba(22,26,20,.28);
  }

  /* Wider container scoped to opus-high home page */
  body[data-page-path="/"] .container {
    width: min(1180px, calc(100% - 36px)) !important;
  }

  /* Hide base layout's top bar, site header, and default mobile CTA — we replace with our own */
  body[data-page-path="/"] .top-bar,
  body[data-page-path="/"] .site-header { display: none !important; }
  .mobile-cta-bar { display: none !important; }

  /* Combined header: logo + nav + phone + Free Quote (no top bar, not sticky) */
  .oh-header {
    background: #fff;
    border-bottom: 1px solid var(--line);
  }
  .oh-header-inner {
    display: flex; align-items: center; gap: 18px;
    padding: 14px 0;
  }
  .oh-header__brand {
    display: inline-flex; align-items: center;
    flex-shrink: 0;
  }
  .oh-header__brand img,
  .oh-header__brand picture { display: block; max-height: 48px; width: auto; }
  .oh-header__nav {
    display: flex; align-items: center; gap: 4px;
    flex-grow: 1;
    margin-left: 8px;
  }
  .oh-header__nav a {
    color: var(--ink-2); text-decoration: none;
    padding: 8px 12px; border-radius: 999px;
    font-family: Manrope, sans-serif;
    font-size: 14px; font-weight: 600;
    transition: background .15s, color .15s;
  }
  .oh-header__nav a:hover { background: var(--bg); color: var(--turf); }
  .oh-header__actions {
    display: flex; align-items: center; gap: 8px;
    flex-shrink: 0;
  }
  .oh-header__call {
    display: inline-flex; align-items: center; gap: 7px;
    background: var(--turf); color: #fff !important;
    padding: 9px 16px; border-radius: 999px;
    font-family: Archivo, sans-serif; font-weight: 700; font-size: 14px;
    text-decoration: none;
    transition: filter .15s;
  }
  .oh-header__call:hover { filter: brightness(1.08); }
  .oh-header__call svg { width: 14px; height: 14px; }
  .oh-header__quote {
    display: inline-flex; align-items: center;
    background: var(--cta); color: #fff !important;
    padding: 9px 18px; border-radius: 999px;
    font-family: Archivo, sans-serif; font-weight: 800; font-size: 14px;
    text-decoration: none;
    box-shadow: 0 4px 12px -4px rgba(232,90,26,0.4);
    transition: filter .15s, transform .15s;
  }
  .oh-header__quote:hover { filter: brightness(1.08); transform: translateY(-1px); }

  @media (max-width: 960px) {
    .oh-header__nav { display: none; }
  }
  @media (max-width: 520px) {
    .oh-header-inner { gap: 10px; padding: 10px 0; }
    .oh-header__brand img,
    .oh-header__brand picture { max-height: 38px; }
    .oh-header__call { padding: 8px 12px; font-size: 13px; }
    .oh-header__quote { padding: 8px 14px; font-size: 13px; }
    .oh-header__call span.label { display: none; }
  }

  /* Small footer toggle (dev/preview only) */
  .oh-hero-toggle {
    border-top: 1px dashed var(--line);
    margin-top: 18px;
    padding: 12px 0 0;
  }
  .oh-hero-toggle__inner {
    display: flex; align-items: center; justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
    font-size: 11px; color: var(--muted);
  }
  .oh-hero-toggle__inner strong {
    color: var(--ink-2); font-weight: 700;
    font-size: 10.5px; letter-spacing: 0.04em; text-transform: uppercase;
  }
  .oh-hero-toggle button {
    background: transparent; border: 1px solid var(--line);
    color: var(--muted);
    padding: 3px 9px; border-radius: 999px;
    font-family: Manrope, sans-serif;
    font-size: 11px; font-weight: 600;
    cursor: pointer;
    transition: all .15s;
  }
  .oh-hero-toggle button:hover { background: var(--bg); color: var(--ink); }
  .oh-hero-toggle button[aria-pressed="true"] {
    background: var(--turf); color: #fff; border-color: var(--turf);
  }

  /* HERO */
  .oh-hero {
    background: linear-gradient(180deg, #f9f6ef 0%, var(--bg-2) 100%);
    padding: 24px 0 40px;
    position: relative;
  }
  .oh-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 28px;
    align-items: start;
  }
  @media (max-width: 960px) {
    .oh-hero-grid { grid-template-columns: 1fr; gap: 18px; }
  }

  /* Hero copy + media (left col) */
  .oh-hero-left { display: flex; flex-direction: column; gap: 16px; }
  .oh-hero-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--turf-soft); color: var(--turf);
    font-size: 12.5px; font-weight: 700;
    padding: 6px 12px; border-radius: 999px;
    width: fit-content;
  }
  .oh-hero-eyebrow .dot {
    width: 8px; height: 8px; background: #2c8a4a; border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(44,138,74,0.18);
  }
  .oh-h1 {
    font-family: Archivo, sans-serif;
    font-weight: 900;
    font-size: clamp(30px, 5.2vw, 46px);
    line-height: 1.04;
    letter-spacing: -0.015em;
    color: var(--ink);
    margin: 0;
  }
  .oh-h1 em { font-style: normal; color: var(--turf); }
  .oh-hero-sub {
    font-size: 17px;
    line-height: 1.5;
    color: var(--ink-2);
    margin: 0;
    max-width: 540px;
  }
  .oh-hero-stats {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 10px;
  }
  @media (max-width: 540px) { .oh-hero-stats { grid-template-columns: repeat(2, 1fr); } }
  .oh-stat {
    background: #fff; border: 1px solid var(--line);
    border-radius: 12px; padding: 12px 10px;
    text-align: center;
  }
  .oh-stat .n {
    font-family: Archivo, sans-serif; font-weight: 800;
    color: var(--turf); font-size: 20px; line-height: 1;
  }
  .oh-stat .l {
    font-size: 10.5px; text-transform: uppercase;
    letter-spacing: 0.04em; color: var(--muted); margin-top: 6px;
  }
  .oh-hero-media {
    position: relative;
    border-radius: var(--oh-radius);
    overflow: hidden;
    aspect-ratio: 16 / 10;
    box-shadow: var(--oh-shadow);
  }
  .oh-hero-media picture, .oh-hero-media img {
    width: 100%; height: 100%; object-fit: cover; display: block;
  }
  .oh-hero-media__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(22,26,20,0) 50%, rgba(22,26,20,0.55) 100%);
    pointer-events: none;
  }
  .oh-hero-media__quote {
    position: absolute; left: 14px; right: 14px; bottom: 14px;
    color: #fff; font-size: 13.5px; line-height: 1.4;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
  }
  .oh-hero-media__quote strong {
    display: block; font-weight: 700; font-size: 12.5px;
    opacity: 0.9; margin-bottom: 2px;
  }

  /* Hero form card (right col) */
  .oh-quote-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--oh-radius);
    box-shadow: var(--oh-shadow-lg);
    padding: 22px 22px 18px;
    position: relative;
  }
  .oh-quote-card__head {
    text-align: center; margin-bottom: 14px;
  }
  .oh-quote-card__head h2 {
    font-family: Archivo, sans-serif; font-weight: 800;
    font-size: 22px; margin: 0 0 6px;
    color: var(--ink); line-height: 1.15;
  }
  .oh-quote-card__head p {
    font-size: 13.5px; color: var(--ink-2); margin: 0;
  }
  .oh-quote-card__head .rating {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--turf-soft); color: var(--turf);
    padding: 4px 10px; border-radius: 999px;
    font-size: 12px; font-weight: 700;
    margin-bottom: 8px;
  }
  .oh-mini-form { display: grid; gap: 9px; }
  .oh-mini-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
  .oh-mini-form input, .oh-mini-form select, .oh-mini-form textarea {
    width: 100%;
    padding: 13px 14px !important;
    border: 1.5px solid var(--line) !important;
    border-radius: 10px !important;
    font-family: inherit; font-size: 15px !important;
    background: #fff !important; color: var(--ink) !important;
    -webkit-appearance: none; appearance: none;
    transition: border-color .15s, box-shadow .15s;
  }
  .oh-mini-form textarea {
    resize: vertical;
    min-height: 72px;
    line-height: 1.4;
  }
  .oh-mini-form select {
    background: #fff url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%231f4a2e' d='M6 8 0 0h12z'/></svg>") no-repeat right 14px center !important;
    background-size: 10px 7px !important;
    padding-right: 36px !important;
  }
  .oh-mini-form input::placeholder, .oh-mini-form textarea::placeholder { color: #8a8e84; opacity: 1; }
  .oh-mini-form input:focus, .oh-mini-form select:focus, .oh-mini-form textarea:focus {
    outline: none !important;
    border-color: var(--turf) !important;
    box-shadow: 0 0 0 3px rgba(31,74,46,0.15) !important;
  }
  .oh-submit {
    width: 100%; padding: 15px 18px;
    font-family: Archivo, sans-serif;
    font-size: 16px; font-weight: 800; letter-spacing: 0.01em;
    background: var(--cta); color: #fff;
    border: none; border-radius: 10px;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center; gap: 8px;
    box-shadow: 0 6px 16px -4px rgba(232,90,26,0.45);
    transition: transform .1s, filter .1s, box-shadow .1s;
  }
  .oh-submit:hover { filter: brightness(1.05); transform: translateY(-1px); }
  .oh-submit:active { transform: translateY(0); }
  .oh-or {
    text-align: center; font-size: 12px;
    color: var(--muted); margin: 2px 0;
    position: relative;
  }
  .oh-or::before, .oh-or::after {
    content: ""; display: inline-block; vertical-align: middle;
    width: 30%; height: 1px; background: var(--line);
    margin: 0 8px;
  }
  .oh-call-btn {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    background: #fff; color: var(--turf);
    border: 2px solid var(--turf);
    padding: 12px; border-radius: 10px;
    font-family: Archivo, sans-serif;
    font-weight: 800; font-size: 15.5px;
    text-decoration: none;
    transition: background .15s;
  }
  .oh-call-btn:hover { background: var(--turf-soft); }
  .oh-form-note {
    font-size: 11.5px; color: var(--muted);
    text-align: center; margin-top: 4px;
    line-height: 1.4;
  }
  .oh-form-trust {
    display: flex; flex-wrap: wrap; justify-content: center;
    gap: 4px 12px;
    font-size: 11px; color: var(--muted);
    margin-top: 8px; padding-top: 10px;
    border-top: 1px dashed var(--line);
  }
  .oh-form-trust span { display: inline-flex; align-items: center; gap: 4px; }
  .oh-form-trust svg { width: 11px; height: 11px; color: var(--turf); }

  /* Trust bar */
  .oh-trust-bar {
    background: var(--turf);
    color: #fff;
    padding: 14px 0;
  }
  .oh-trust-row {
    display: flex; flex-wrap: wrap; justify-content: center;
    gap: 10px 26px;
    font-size: 13px; font-weight: 600;
  }
  .oh-trust-row span { display: inline-flex; align-items: center; gap: 7px; }
  .oh-trust-row svg { width: 16px; height: 16px; stroke: #c8e6c8; }

  /* Sections */
  .oh-section { padding: 64px 0; }
  .oh-section--alt { background: var(--bg-2); }
  .oh-section--soft { background: var(--turf-soft); }
  .oh-section-head { text-align: center; max-width: 780px; margin: 0 auto 36px; }
  .oh-section-head .oh-eyebrow {
    display: inline-block;
    background: var(--turf-soft); color: var(--turf);
    font-size: 12.5px; font-weight: 700;
    letter-spacing: 0.04em; text-transform: uppercase;
    padding: 5px 12px; border-radius: 999px;
    margin-bottom: 14px;
  }
  .oh-section-head h2 {
    font-family: Archivo, sans-serif; font-weight: 900;
    font-size: clamp(26px, 3.6vw, 36px);
    line-height: 1.1; margin: 0 0 12px;
    color: var(--ink); letter-spacing: -0.01em;
  }
  .oh-section-head p {
    font-size: 16.5px; line-height: 1.55;
    color: var(--ink-2); margin: 0;
  }

  /* Why turf — comparison table */
  .oh-compare {
    background: #fff; border: 1px solid var(--line);
    border-radius: var(--oh-radius); overflow: hidden;
    box-shadow: var(--oh-shadow);
    max-width: 960px; margin: 0 auto;
  }
  .oh-compare table { width: 100%; border-collapse: collapse; }
  .oh-compare th, .oh-compare td {
    padding: 16px 18px; text-align: left;
    font-size: 14.5px; border-bottom: 1px solid var(--line);
  }
  .oh-compare th {
    font-family: Archivo, sans-serif; font-weight: 700;
    background: var(--bg); color: var(--ink);
    font-size: 13px; text-transform: uppercase;
    letter-spacing: 0.04em;
  }
  .oh-compare th.oh-best { background: var(--turf); color: #fff; }
  .oh-compare td:first-child { font-weight: 600; color: var(--ink); }
  .oh-compare td.oh-bad { color: var(--muted); }
  .oh-compare td.oh-good { color: var(--turf); font-weight: 600; }
  .oh-compare tr:last-child td { border-bottom: none; }
  @media (max-width: 640px) {
    .oh-compare th, .oh-compare td { padding: 12px 10px; font-size: 13px; }
  }

  /* Why grid */
  .oh-why-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  @media (max-width: 800px) { .oh-why-grid { grid-template-columns: 1fr; } }
  .oh-why-card {
    background: #fff; border: 1px solid var(--line);
    border-radius: var(--oh-radius); padding: 22px;
    box-shadow: var(--oh-shadow);
  }
  .oh-why-card svg {
    width: 32px; height: 32px; color: var(--turf);
    margin-bottom: 12px;
  }
  .oh-why-card h3 {
    font-family: Archivo, sans-serif; font-weight: 800;
    font-size: 17px; margin: 0 0 8px;
  }
  .oh-why-card p {
    font-size: 14.5px; line-height: 1.55;
    color: var(--ink-2); margin: 0;
  }

  /* Pricing */
  .oh-pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
  @media (max-width: 900px) { .oh-pricing { grid-template-columns: 1fr; } }
  .oh-tier {
    background: #fff; border: 1px solid var(--line);
    border-radius: var(--oh-radius); padding: 26px 22px;
    display: flex; flex-direction: column;
    position: relative;
    box-shadow: var(--oh-shadow);
  }
  .oh-tier--featured {
    border-color: var(--turf); border-width: 2px;
    transform: translateY(-6px);
    box-shadow: 0 18px 40px -14px rgba(31,74,46,0.32);
  }
  .oh-tier__flag {
    position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
    background: var(--cta); color: #fff;
    font-size: 11px; font-weight: 800; letter-spacing: 0.06em;
    padding: 6px 14px; border-radius: 999px; text-transform: uppercase;
  }
  .oh-tier h3 {
    font-family: Archivo, sans-serif; font-weight: 800;
    font-size: 19px; margin: 0 0 6px;
  }
  .oh-tier__sub { font-size: 13px; color: var(--muted); margin: 0 0 16px; }
  .oh-tier__price {
    font-family: Archivo, sans-serif; font-weight: 900;
    font-size: 30px; color: var(--turf); line-height: 1;
  }
  .oh-tier__price-unit {
    font-size: 13px; color: var(--muted); font-weight: 600;
    display: block; margin-top: 4px;
  }
  .oh-tier__sep { height: 1px; background: var(--line); margin: 16px 0; }
  .oh-tier ul { list-style: none; padding: 0; margin: 0; flex-grow: 1; }
  .oh-tier li {
    font-size: 14px; padding: 6px 0 6px 24px;
    position: relative; color: var(--ink-2);
  }
  .oh-tier li::before {
    content: ""; position: absolute; left: 0; top: 10px;
    width: 14px; height: 8px;
    border-left: 2px solid var(--turf); border-bottom: 2px solid var(--turf);
    transform: rotate(-45deg);
  }
  .oh-tier__cta {
    display: block; text-align: center;
    margin-top: 20px; padding: 13px;
    background: var(--turf); color: #fff !important;
    text-decoration: none;
    font-family: Archivo, sans-serif; font-weight: 800;
    border-radius: 10px; font-size: 14.5px;
    transition: filter .15s;
  }
  .oh-tier--featured .oh-tier__cta { background: var(--cta); }
  .oh-tier__cta:hover { filter: brightness(1.08); }

  /* Steps timeline */
  .oh-steps {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 18px; counter-reset: step;
  }
  @media (max-width: 900px) { .oh-steps { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 540px) { .oh-steps { grid-template-columns: 1fr; } }
  .oh-step {
    background: #fff; border: 1px solid var(--line);
    border-radius: var(--oh-radius);
    padding: 22px 20px; text-align: left;
    position: relative;
  }
  .oh-step__num {
    width: 40px; height: 40px;
    background: var(--turf); color: #fff;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-family: Archivo, sans-serif; font-weight: 800; font-size: 17px;
    margin-bottom: 14px;
  }
  .oh-step h3 {
    font-family: Archivo, sans-serif; font-weight: 800;
    font-size: 16px; margin: 0 0 6px;
  }
  .oh-step p { font-size: 13.5px; color: var(--ink-2); margin: 0; line-height: 1.5; }

  /* Gallery */
  .oh-gallery {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
  @media (max-width: 800px) { .oh-gallery { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 500px) { .oh-gallery { grid-template-columns: 1fr; } }
  .oh-gallery figure {
    margin: 0; border-radius: var(--oh-radius); overflow: hidden;
    border: 1px solid var(--line); background: #fff;
    box-shadow: var(--oh-shadow);
  }
  .oh-gallery picture, .oh-gallery img {
    width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block;
  }
  .oh-gallery figcaption {
    padding: 10px 14px; font-size: 13px; color: var(--ink-2);
    font-weight: 600;
  }

  /* Ensure [hidden] always beats display rules below */
  [hidden] { display: none !important; }

  /* ============ GALLERY — YELP-STYLE (asymmetric tiles + meta strip + "+more") ============ */
  .oh-gallery-yelp {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  @media (min-width: 720px) {
    .oh-gallery-yelp {
      grid-template-columns: repeat(3, 1fr);
      grid-auto-rows: 1fr;
      gap: 14px;
    }
    .oh-gallery-yelp__tile--feature { grid-column: span 2; grid-row: span 2; }
    .oh-gallery-yelp__tile .img-wrap {
      flex: 1 1 auto;
      aspect-ratio: auto;
      min-height: 0;
    }
    .oh-gallery-yelp__tile--feature .img-wrap { min-height: 320px; }
  }
  .oh-gallery-yelp__tile {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--oh-shadow);
    text-decoration: none;
    color: inherit;
    display: flex; flex-direction: column;
    transition: transform .15s, box-shadow .15s;
  }
  .oh-gallery-yelp__tile:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px -16px rgba(22,26,20,0.25);
  }
  .oh-gallery-yelp__tile .img-wrap {
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 4 / 3;
  }
  .oh-gallery-yelp__tile .img-wrap picture {
    display: block;
    width: 100%; height: 100%;
  }
  .oh-gallery-yelp__tile .img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
  }
  .oh-gallery-yelp__caption {
    position: absolute; left: 0; right: 0; top: 0;
    padding: 12px 14px;
    background: linear-gradient(180deg, rgba(22,26,20,0.6), transparent);
    color: #fff;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.01em;
    text-shadow: 0 1px 3px rgba(0,0,0,0.4);
    pointer-events: none;
  }
  .oh-gallery-yelp__meta {
    padding: 9px 12px;
    display: flex; align-items: center; justify-content: space-between;
    gap: 8px;
    font-size: 11.5px;
    border-top: 1px solid var(--line);
    background: #fff;
  }
  .oh-gallery-yelp__meta .who {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--ink); font-weight: 700;
  }
  .oh-gallery-yelp__meta .who::before {
    content: ""; width: 18px; height: 18px;
    background: var(--turf); color: #fff;
    border-radius: 50%;
    display: inline-block;
  }
  .oh-gallery-yelp__meta .loc { color: var(--muted); font-weight: 500; }
  .oh-gallery-yelp__more {
    position: absolute; inset: 0;
    background: rgba(22,26,20,0.74);
    color: #fff;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    text-decoration: none;
    font-family: Archivo, sans-serif;
    font-weight: 700;
    z-index: 2;
    transition: background .15s;
  }
  .oh-gallery-yelp__more:hover { background: rgba(22,26,20,0.84); }
  .oh-gallery-yelp__more .num { font-size: 30px; line-height: 1; margin-bottom: 4px; }
  .oh-gallery-yelp__more .lbl { font-size: 13px; letter-spacing: 0.04em; }

  /* ============ GALLERY — SPOTLIGHT (one big hero photo + thumb strip) ============ */
  .oh-gallery-spotlight {
    display: flex; flex-direction: column;
    gap: 14px;
  }
  .oh-gallery-spotlight__hero {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: var(--oh-shadow);
    background: #fff;
    cursor: pointer;
  }
  .oh-gallery-spotlight__hero { aspect-ratio: 16 / 10; }
  .oh-gallery-spotlight__hero picture, .oh-gallery-spotlight__hero img {
    width: 100%; height: 100%; object-fit: cover; display: block;
  }
  .oh-gallery-spotlight__caption {
    position: absolute; left: 0; right: 0; bottom: 0;
    padding: 36px 18px 16px;
    background: linear-gradient(180deg, transparent, rgba(22,26,20,0.78) 60%);
    color: #fff;
  }
  .oh-gallery-spotlight__caption strong {
    display: block;
    font-family: Archivo, sans-serif;
    font-weight: 800; font-size: 16px;
    margin-bottom: 2px;
  }
  .oh-gallery-spotlight__caption span {
    font-size: 12.5px;
    opacity: 0.88;
  }
  .oh-gallery-spotlight__counter {
    position: absolute; top: 14px; right: 14px;
    background: rgba(22,26,20,0.65);
    color: #fff;
    padding: 5px 11px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    backdrop-filter: blur(4px);
  }
  .oh-gallery-spotlight__thumbs {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
  }
  @media (max-width: 480px) {
    .oh-gallery-spotlight__thumbs { grid-template-columns: repeat(5, 1fr); gap: 6px; }
  }
  .oh-gallery-spotlight__thumb {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    background: #fff;
    padding: 0;
    aspect-ratio: 1 / 1;
    transition: border-color .15s, transform .15s;
  }
  .oh-gallery-spotlight__thumb:hover { transform: translateY(-1px); }
  .oh-gallery-spotlight__thumb[aria-selected="true"] {
    border-color: var(--turf);
  }
  .oh-gallery-spotlight__thumb picture, .oh-gallery-spotlight__thumb img {
    width: 100%; height: 100%; object-fit: cover; display: block;
  }
  .oh-gallery-spotlight__more {
    position: absolute; inset: 0;
    background: rgba(22,26,20,0.72);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    text-decoration: none;
    font-family: Archivo, sans-serif;
    font-weight: 800; font-size: 13px;
  }

  /* Reviews */
  .oh-reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
  @media (max-width: 960px) { .oh-reviews { grid-template-columns: 1fr; } }
  .oh-review {
    background: #fff; border: 1px solid var(--line);
    border-radius: var(--oh-radius); padding: 22px;
    display: flex; flex-direction: column;
    box-shadow: var(--oh-shadow);
  }
  .oh-review__stars { color: #f5a623; font-size: 16px; letter-spacing: 1px; margin-bottom: 10px; }
  .oh-review__text {
    font-size: 14.5px; line-height: 1.6;
    color: var(--ink-2); margin: 0 0 14px;
    flex-grow: 1;
  }
  .oh-review__author { font-size: 13.5px; font-weight: 700; color: var(--ink); }
  .oh-review__meta { font-size: 12px; color: var(--muted); margin-top: 2px; }

  /* FAQ */
  .oh-faq-list { max-width: 820px; margin: 0 auto; }
  .oh-faq {
    border: 1px solid var(--line);
    border-radius: 12px;
    margin-bottom: 10px;
    background: #fff;
    overflow: hidden;
  }
  .oh-faq summary {
    list-style: none; cursor: pointer;
    padding: 18px 22px;
    font-family: Archivo, sans-serif;
    font-weight: 700; font-size: 16px;
    color: var(--ink);
    display: flex; justify-content: space-between; align-items: center;
    gap: 16px;
  }
  .oh-faq summary::-webkit-details-marker { display: none; }
  .oh-faq summary::after {
    content: ""; flex-shrink: 0;
    width: 18px; height: 18px;
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231f4a2e' stroke-width='3' stroke-linecap='round'><path d='M6 9l6 6 6-6'/></svg>") no-repeat center;
    background-size: contain;
    transition: transform .2s;
  }
  .oh-faq[open] summary::after { transform: rotate(180deg); }
  .oh-faq-answer {
    padding: 0 22px 18px;
    color: var(--ink-2); font-size: 14.5px; line-height: 1.6;
  }
  .oh-faq-answer p { margin: 0 0 10px; }
  .oh-faq-answer p:last-child { margin-bottom: 0; }

  /* Service area map */
  .oh-areas-map {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    margin: 0 auto 28px;
    max-width: 1100px;
    box-shadow: var(--oh-shadow-lg);
    aspect-ratio: 16 / 9;
    background: #f7f3e9;
    border: 1px solid var(--line);
  }
  .oh-areas-map picture, .oh-areas-map img {
    width: 100%; height: 100%; object-fit: cover; display: block;
  }
  .oh-areas-map__overlay {
    position: absolute; left: 0; right: 0; bottom: 0;
    padding: 60px 28px 22px;
    background: linear-gradient(180deg, transparent, rgba(22,26,20,0.78) 70%);
    color: #fff;
  }
  .oh-areas-map__overlay h2 {
    font-family: Archivo, sans-serif;
    font-weight: 900;
    font-size: clamp(22px, 3vw, 32px);
    margin: 0;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: #fff;
  }
  .oh-areas-map__overlay .eyebrow {
    display: inline-block;
    background: rgba(255,255,255,0.92);
    color: var(--turf);
    font-size: 11.5px; font-weight: 800;
    text-transform: uppercase; letter-spacing: 0.06em;
    padding: 4px 10px; border-radius: 999px;
    margin-bottom: 10px;
  }
  @media (max-width: 600px) {
    .oh-areas-map__overlay { padding: 40px 18px 16px; }
  }

  /* Service area pills */
  .oh-areas-pills {
    display: flex; flex-wrap: wrap; gap: 8px;
    justify-content: center;
    max-width: 760px; margin: 0 auto;
  }
  .oh-areas-pills span {
    background: #fff; border: 1px solid var(--line);
    border-radius: 999px;
    padding: 7px 14px;
    font-size: 13.5px; font-weight: 600;
    color: var(--ink-2);
  }

  /* ============ FINAL CTA — V2 (guarantee checklist) ============ */
  .oh-final-v2 {
    background: #fff;
    padding: 64px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .oh-final-v2__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    align-items: center;
    max-width: 1080px;
    margin: 0 auto;
  }
  @media (max-width: 800px) { .oh-final-v2__inner { grid-template-columns: 1fr; gap: 24px; } }
  .oh-final-v2__copy h2 {
    font-family: Archivo, sans-serif; font-weight: 900;
    font-size: clamp(26px, 3.4vw, 36px);
    line-height: 1.1; margin: 0 0 14px;
    color: var(--ink); letter-spacing: -0.01em;
  }
  .oh-final-v2__copy p {
    color: var(--ink-2); font-size: 16px; line-height: 1.55;
    margin: 0 0 22px;
  }
  .oh-final-v2__ctas {
    display: flex; gap: 12px; flex-wrap: wrap;
    margin-bottom: 14px;
  }
  .oh-final-v2__ctas .btn-primary {
    background: var(--cta); color: #fff;
    padding: 14px 26px; border-radius: 10px;
    font-family: Archivo, sans-serif;
    font-weight: 800; font-size: 15.5px;
    text-decoration: none;
    display: inline-flex; align-items: center; gap: 8px;
    box-shadow: 0 6px 16px -4px rgba(232,90,26,0.4);
    border: none; cursor: pointer;
  }
  .oh-final-v2__ctas .btn-secondary {
    background: #fff; color: var(--turf);
    border: 2px solid var(--turf);
    padding: 12px 24px; border-radius: 10px;
    font-family: Archivo, sans-serif;
    font-weight: 800; font-size: 15.5px;
    text-decoration: none;
    display: inline-flex; align-items: center; gap: 8px;
  }
  .oh-final-v2__micro {
    font-size: 12.5px; color: var(--muted);
  }
  .oh-final-v2__check {
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 26px 28px;
    box-shadow: var(--oh-shadow);
  }
  .oh-final-v2__check h3 {
    font-family: Archivo, sans-serif; font-weight: 800;
    font-size: 16px; margin: 0 0 14px;
    color: var(--ink);
    display: flex; align-items: center; gap: 8px;
  }
  .oh-final-v2__check h3 svg {
    width: 20px; height: 20px; color: var(--turf);
  }
  .oh-final-v2__check ul {
    list-style: none; padding: 0; margin: 0;
  }
  .oh-final-v2__check li {
    padding: 9px 0 9px 30px;
    position: relative;
    font-size: 14.5px; line-height: 1.4;
    color: var(--ink-2);
    border-bottom: 1px solid var(--line);
  }
  .oh-final-v2__check li:last-child { border-bottom: none; }
  .oh-final-v2__check li::before {
    content: ""; position: absolute; left: 2px; top: 14px;
    width: 16px; height: 9px;
    border-left: 2.5px solid var(--turf);
    border-bottom: 2.5px solid var(--turf);
    transform: rotate(-45deg);
  }

  /* ============ FINAL CTA — V3 (testimonial + CTA) ============ */
  .oh-final-v3 {
    background: linear-gradient(135deg, var(--bg-2) 0%, var(--turf-soft) 100%);
    padding: 64px 0;
  }
  .oh-final-v3__inner {
    max-width: 920px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 36px; align-items: center;
  }
  @media (max-width: 800px) { .oh-final-v3__inner { grid-template-columns: 1fr; gap: 28px; } }
  .oh-final-v3__quote {
    background: #fff;
    border-radius: 18px;
    padding: 28px 30px;
    box-shadow: var(--oh-shadow);
    border: 1px solid var(--line);
    position: relative;
  }
  .oh-final-v3__quote::before {
    content: "\201C"; position: absolute;
    top: -34px; left: 12px;
    font-family: Georgia, serif;
    font-size: 130px; line-height: 1;
    color: var(--turf-soft);
    pointer-events: none;
  }
  .oh-final-v3__stars {
    display: inline-flex; gap: 2px; margin-bottom: 12px;
  }
  .oh-final-v3__stars svg { width: 18px !important; height: 18px !important; }
  .oh-final-v3__quote p {
    font-family: Archivo, sans-serif; font-weight: 700;
    font-size: clamp(16px, 1.7vw, 19px); line-height: 1.4;
    color: var(--ink); margin: 0 0 16px;
    position: relative; z-index: 1;
  }
  .oh-final-v3__by {
    display: flex; align-items: center; gap: 10px;
    color: var(--ink-2); font-size: 13px;
  }
  .oh-final-v3__avatar {
    width: 36px; height: 36px;
    background: #34A853; color: #fff;
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    font-family: Archivo, sans-serif; font-weight: 800; font-size: 14px;
  }
  .oh-final-v3__by .g-logo { width: 14px !important; height: 14px !important; margin-left: auto; }
  .oh-final-v3__cta-block h2 {
    font-family: Archivo, sans-serif; font-weight: 900;
    font-size: clamp(24px, 3vw, 32px);
    line-height: 1.1; margin: 0 0 14px;
    color: var(--ink); letter-spacing: -0.01em;
  }
  .oh-final-v3__cta-block p {
    color: var(--ink-2); font-size: 15.5px; line-height: 1.5;
    margin: 0 0 20px;
  }
  .oh-final-v3__cta-block .btn-primary {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    width: 100%; max-width: 360px;
    background: var(--cta); color: #fff;
    padding: 15px 24px; border-radius: 10px;
    font-family: Archivo, sans-serif;
    font-weight: 800; font-size: 16px;
    text-decoration: none;
    box-shadow: 0 6px 16px -4px rgba(232,90,26,0.4);
    border: none; cursor: pointer;
    margin-bottom: 10px;
  }
  .oh-final-v3__cta-block .btn-secondary {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    width: 100%; max-width: 360px;
    background: #fff; color: var(--turf);
    border: 2px solid var(--turf);
    padding: 13px 24px; border-radius: 10px;
    font-family: Archivo, sans-serif;
    font-weight: 800; font-size: 16px;
    text-decoration: none;
  }
  .oh-final-v3__trust {
    margin-top: 14px;
    font-size: 12.5px; color: var(--muted);
    display: flex; flex-wrap: wrap; gap: 4px 10px;
  }
  .oh-final-v3__trust b { color: var(--ink); font-weight: 700; }
  .oh-final-v3__trust .stars { color: #f5a623; letter-spacing: 1px; }

  /* ============ MODAL QUOTE FORM ============ */
  .oh-modal {
    position: fixed; inset: 0; z-index: 100;
    background: rgba(22,26,20,0.65);
    backdrop-filter: blur(3px);
    display: flex; align-items: center; justify-content: center;
    padding: 20px;
    opacity: 0; pointer-events: none;
    transition: opacity .2s;
  }
  .oh-modal[aria-hidden="false"] {
    opacity: 1; pointer-events: auto;
  }
  .oh-modal__card {
    background: #fff;
    border-radius: 18px;
    width: 100%; max-width: 460px;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    box-shadow: 0 40px 80px -20px rgba(0,0,0,0.5);
    transform: translateY(20px);
    transition: transform .25s;
    position: relative;
  }
  .oh-modal[aria-hidden="false"] .oh-modal__card { transform: translateY(0); }
  .oh-modal__close {
    position: absolute; top: 12px; right: 12px;
    width: 36px; height: 36px;
    background: var(--bg); border: 1px solid var(--line);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    color: var(--ink);
    z-index: 2;
  }
  .oh-modal__close:hover { background: var(--bg-2); }
  .oh-modal__close svg { width: 16px; height: 16px; }
  .oh-modal__head {
    padding: 28px 26px 14px;
    text-align: center;
  }
  .oh-modal__head .badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--turf-soft); color: var(--turf);
    padding: 4px 11px; border-radius: 999px;
    font-size: 11.5px; font-weight: 700;
    margin-bottom: 10px;
  }
  .oh-modal__head .badge svg { width: 12px; height: 12px; fill: #f5a623; }
  .oh-modal__head h2 {
    font-family: Archivo, sans-serif; font-weight: 900;
    font-size: 22px; margin: 0 0 6px;
    color: var(--ink); line-height: 1.15;
    letter-spacing: -0.01em;
  }
  .oh-modal__head p {
    font-size: 13px; color: var(--ink-2); margin: 0;
  }
  .oh-modal__body { padding: 0 26px 22px; }
  .oh-modal__trust {
    display: flex; align-items: center; justify-content: center;
    flex-wrap: wrap; gap: 6px 14px;
    margin-top: 14px; padding-top: 14px;
    border-top: 1px dashed var(--line);
    font-size: 11.5px; color: var(--ink-2);
  }
  .oh-modal__trust span { display: inline-flex; align-items: center; gap: 4px; }
  .oh-modal__trust svg { width: 12px; height: 12px; color: var(--turf); }
  .oh-modal__trust .stars { color: #f5a623; letter-spacing: 1px; }
  .oh-modal__trust b { color: var(--ink); font-weight: 700; }
  body.oh-modal-open { overflow: hidden; }
  @media (max-width: 480px) {
    .oh-modal { padding: 10px; align-items: flex-end; }
    .oh-modal__card { max-height: 92vh; border-radius: 18px 18px 0 0; }
  }

  /* Final CTA band */
  .oh-final {
    background: linear-gradient(135deg, var(--turf) 0%, #2c6b41 100%);
    color: #fff;
    text-align: center;
    padding: 64px 0;
  }
  .oh-final h2 {
    color: #fff;
    font-family: Archivo, sans-serif; font-weight: 900;
    font-size: clamp(26px, 3.6vw, 38px);
    margin: 0 0 14px; line-height: 1.1;
  }
  .oh-final p {
    color: rgba(255,255,255,0.88);
    font-size: 16.5px; line-height: 1.5;
    margin: 0 auto 26px;
    max-width: 580px;
  }
  .oh-final-cta {
    display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
  }
  .oh-final-cta .btn-primary {
    background: var(--cta); color: #fff;
    padding: 16px 32px; border-radius: 10px;
    font-family: Archivo, sans-serif;
    font-weight: 800; font-size: 16px;
    text-decoration: none;
    display: inline-flex; align-items: center; gap: 8px;
    box-shadow: 0 6px 16px -4px rgba(232,90,26,0.4);
  }
  .oh-final-cta .btn-secondary {
    background: #fff; color: var(--turf);
    padding: 16px 32px; border-radius: 10px;
    font-family: Archivo, sans-serif;
    font-weight: 800; font-size: 16px;
    text-decoration: none;
  }

  /* Sticky mobile CTA bar */
  .oh-sticky-mobile {
    position: fixed; bottom: 0; left: 0; right: 0;
    background: #fff;
    border-top: 1px solid var(--line);
    box-shadow: 0 -4px 20px -4px rgba(22,26,20,0.15);
    padding: 10px 12px;
    display: none;
    z-index: 50;
    gap: 8px;
  }
  .oh-sticky-mobile a {
    flex: 1;
    text-align: center;
    padding: 12px 8px;
    border-radius: 10px;
    font-family: Archivo, sans-serif;
    font-weight: 800; font-size: 14.5px;
    text-decoration: none;
    display: flex; align-items: center; justify-content: center; gap: 6px;
  }
  .oh-sticky-mobile .oh-sm-call { background: var(--turf); color: #fff; }
  .oh-sticky-mobile .oh-sm-email { background: #fff; color: var(--turf); border: 2px solid var(--turf); }
  .oh-sticky-mobile .oh-sm-quote { background: var(--cta); color: #fff; }
  @media (max-width: 720px) {
    .oh-sticky-mobile { display: flex; }
    body { padding-bottom: 72px; }
  }

  /* ============ ALT HERO (index.njk-style "hero-card") ============ */
  .oh-hero-alt {
    background: linear-gradient(180deg, #f9f6ef 0%, var(--bg-2) 100%);
    padding: 28px 0 48px;
  }
  .oh-hero-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--oh-shadow-lg);
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
  }
  @media (max-width: 900px) {
    .oh-hero-card { grid-template-columns: 1fr; }
  }
  .oh-hero-card__art {
    position: relative;
    min-height: 460px;
    overflow: hidden;
  }
  .oh-hero-card__art picture, .oh-hero-card__art img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    min-height: 460px;
  }
  .oh-hero-card__art .tag {
    position: absolute; top: 16px; left: 16px;
    background: rgba(255,255,255,0.95);
    color: var(--turf);
    padding: 7px 13px; border-radius: 999px;
    font-size: 12.5px; font-weight: 700;
    display: inline-flex; align-items: center; gap: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  }
  .oh-hero-card__art .tag .dot {
    width: 7px; height: 7px; background: #2c8a4a; border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(44,138,74,0.25);
  }
  .oh-hero-card__art .ribbon {
    position: absolute; top: 64px; left: 0;
    background: var(--cta); color: #fff;
    padding: 8px 18px;
    font-family: Archivo, sans-serif;
    font-weight: 800; font-size: 13.5px;
    letter-spacing: 0.02em;
    border-radius: 0 8px 8px 0;
    box-shadow: 0 4px 12px -2px rgba(232,90,26,0.4);
  }
  .oh-hero-card__body {
    padding: 36px 36px 30px;
    display: flex; flex-direction: column;
  }
  @media (max-width: 600px) { .oh-hero-card__body { padding: 24px 22px 24px; } }
  .oh-hero-card__body h1 {
    font-family: Archivo, sans-serif; font-weight: 900;
    font-size: clamp(28px, 4.6vw, 42px);
    line-height: 1.05; letter-spacing: -0.015em;
    color: var(--ink);
    margin: 0 0 14px;
  }
  .oh-hero-card__body h1 em {
    font-style: italic; font-weight: 800;
    color: var(--turf);
  }
  .oh-hero-card__sub {
    font-size: 16.5px; line-height: 1.5;
    color: var(--ink-2);
    margin: 0 0 18px;
  }
  .oh-hero-card__stats {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 10px; margin-bottom: 18px;
  }
  .oh-hero-card__stats .s {
    text-align: center;
    background: var(--bg); border-radius: 10px;
    padding: 12px 8px;
  }
  .oh-hero-card__stats .n {
    font-family: Archivo, sans-serif; font-weight: 800;
    color: var(--turf); font-size: 20px; line-height: 1;
  }
  .oh-hero-card__stats .l {
    font-size: 10.5px; text-transform: uppercase;
    letter-spacing: 0.04em; color: var(--muted); margin-top: 6px;
  }
  .oh-hero-card__ctas {
    display: flex; gap: 10px; flex-wrap: wrap;
    margin-bottom: 14px;
  }
  .oh-hero-card__ctas .btn-primary {
    flex: 1 1 auto; min-width: 200px;
    background: var(--cta); color: #fff;
    padding: 14px 22px; border-radius: 10px;
    font-family: Archivo, sans-serif;
    font-weight: 800; font-size: 15.5px;
    text-decoration: none;
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    box-shadow: 0 6px 16px -4px rgba(232,90,26,0.4);
    transition: filter .15s, transform .15s;
  }
  .oh-hero-card__ctas .btn-primary:hover { filter: brightness(1.08); transform: translateY(-1px); }
  .oh-hero-card__ctas .btn-ghost {
    flex: 1 1 auto; min-width: 200px;
    background: #fff; color: var(--turf);
    border: 2px solid var(--turf);
    padding: 12px 20px; border-radius: 10px;
    font-family: Archivo, sans-serif;
    font-weight: 800; font-size: 15.5px;
    text-decoration: none;
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  }
  .oh-hero-card__trust {
    display: flex; flex-wrap: wrap; gap: 8px 16px;
    font-size: 13px; color: var(--ink-2);
    padding-top: 14px; border-top: 1px dashed var(--line);
  }
  .oh-hero-card__trust .stars { color: #f5a623; letter-spacing: 1px; margin-right: 4px; }
  .oh-hero-card__trust b { font-weight: 700; color: var(--ink); }

  /* ============ COMBO HERO v2 (unified card · photo left · body right) ============ */
  .oh-hero-combo {
    background: linear-gradient(180deg, #f9f6ef 0%, var(--bg-2) 100%);
    padding: 28px 0 48px;
  }
  .oh-hero-combo__card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--oh-shadow-lg);
    display: grid;
    grid-template-columns: 0.55fr 0.45fr;
    min-height: 620px;
  }
  @media (max-width: 960px) {
    .oh-hero-combo__card { grid-template-columns: 1fr; min-height: 0; }
  }

  /* LEFT: full-bleed, full-height photo */
  .oh-hero-combo__photo {
    position: relative;
    overflow: hidden;
    min-height: 460px;
  }
  @media (max-width: 960px) {
    .oh-hero-combo__photo { aspect-ratio: 16 / 10; min-height: 0; }
  }
  .oh-hero-combo__photo picture, .oh-hero-combo__photo img {
    width: 100%; height: 100%; object-fit: cover; display: block;
  }
  .oh-hero-combo__photo .tag {
    position: absolute; top: 18px; left: 18px;
    background: rgba(255,255,255,0.96);
    color: var(--turf);
    padding: 8px 14px; border-radius: 999px;
    font-size: 13px; font-weight: 700;
    display: inline-flex; align-items: center; gap: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.18);
  }
  .oh-hero-combo__photo .tag .dot {
    width: 8px; height: 8px; background: #2c8a4a; border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(44,138,74,0.28);
  }
  .oh-hero-combo__photo .ribbon {
    position: absolute; top: 70px; left: 0;
    background: var(--cta); color: #fff;
    padding: 10px 22px;
    font-family: Archivo, sans-serif;
    font-weight: 800; font-size: 14px;
    letter-spacing: 0.02em;
    border-radius: 0 8px 8px 0;
    box-shadow: 0 6px 14px -2px rgba(232,90,26,0.5);
  }
  .oh-hero-combo__photo .quote-overlay {
    position: absolute; left: 0; right: 0; bottom: 0;
    color: #fff; font-size: 14px; line-height: 1.45;
    background: linear-gradient(180deg, transparent, rgba(22,26,20,0.72) 60%);
    padding: 60px 22px 22px;
  }
  .oh-hero-combo__photo .quote-overlay strong {
    display: block; font-weight: 700; font-size: 12.5px;
    opacity: 0.92; margin-bottom: 4px;
    letter-spacing: 0.02em;
  }
  .oh-hero-combo__photo .quote-overlay .quote-text { display: inline; }
  /* On mobile: tighter overlay, smaller text, ribbon stays near top, quote shrinks to byline only */
  @media (max-width: 720px) {
    .oh-hero-combo__photo { min-height: 320px; }
    .oh-hero-combo__photo .tag {
      top: 12px; left: 12px;
      padding: 6px 11px;
      font-size: 11.5px;
    }
    .oh-hero-combo__photo .ribbon {
      top: 56px;
      padding: 7px 14px;
      font-size: 12.5px;
    }
    .oh-hero-combo__photo .quote-overlay {
      padding: 36px 14px 12px;
      font-size: 12px;
    }
    .oh-hero-combo__photo .quote-overlay .quote-text { display: none; }
    .oh-hero-combo__photo .quote-overlay strong {
      font-size: 12px; margin-bottom: 0;
    }
  }

  /* RIGHT: body (eyebrow + H1 + stats + form + trust) */
  .oh-hero-combo__body {
    padding: 34px 36px;
    display: flex; flex-direction: column;
    gap: 16px;
  }
  @media (max-width: 600px) {
    .oh-hero-combo__body { padding: 24px 22px; gap: 14px; }
  }

  .oh-hero-combo__eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--turf-soft); color: var(--turf);
    font-size: 12.5px; font-weight: 700;
    padding: 5px 12px; border-radius: 999px;
    width: fit-content;
  }
  .oh-hero-combo__eyebrow .dot {
    width: 8px; height: 8px; background: #2c8a4a; border-radius: 50%;
  }

  /* H1: geo line small/black, benefit line BIG/green — benefit dominates */
  .oh-hero-combo__h1 {
    font-family: Archivo, sans-serif;
    margin: 0;
    line-height: 1.04;
    letter-spacing: -0.015em;
  }
  .oh-hero-combo__h1 .geo {
    display: block;
    font-weight: 700;
    font-size: clamp(13px, 1.5vw, 17px);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
    margin-bottom: 8px;
  }
  .oh-hero-combo__h1 .benefit {
    display: block;
    font-weight: 900;
    font-size: clamp(26px, 3.4vw, 40px);
    color: var(--ink);
  }
  @media (max-width: 720px) {
    .oh-hero-combo__h1 .benefit { font-size: 26px; line-height: 1.1; }
    .oh-hero-combo__h1 .geo { margin-bottom: 6px; }
    /* Hide redundant eyebrow on mobile — photo tag already says the same thing */
    .oh-hero-combo__body > .oh-hero-combo__eyebrow { display: none; }
    .oh-hero-combo__body { gap: 12px; }
  }
  .oh-hero-combo__h1 .benefit em {
    font-style: italic; color: var(--turf);
  }

  .oh-hero-combo__stats {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }
  @media (max-width: 540px) { .oh-hero-combo__stats { grid-template-columns: repeat(2, 1fr); } }
  .oh-hero-combo__stats .s {
    text-align: center;
    background: var(--bg);
    border-radius: 10px;
    padding: 10px 6px;
  }
  .oh-hero-combo__stats .n {
    font-family: Archivo, sans-serif; font-weight: 800;
    color: var(--turf); font-size: 18px; line-height: 1;
  }
  .oh-hero-combo__stats .l {
    font-size: 10px; text-transform: uppercase;
    letter-spacing: 0.04em; color: var(--muted); margin-top: 5px;
  }

  .oh-hero-combo__form { display: grid; gap: 8px; }
  .oh-hero-combo__trust {
    display: flex; flex-wrap: wrap; gap: 4px 14px;
    font-size: 12px; color: var(--ink-2);
    padding-top: 10px;
    border-top: 1px dashed var(--line);
  }
  .oh-hero-combo__trust .stars { color: #f5a623; letter-spacing: 1px; margin-right: 3px; }
  .oh-hero-combo__trust b { font-weight: 700; color: var(--ink); }

  /* ============ PET-FRIENDLY / FEATURE SPLIT SECTION ============ */
  .oh-pet {
    background: var(--bg-2);
    padding: 64px 0;
  }
  .oh-pet--alt { background: #fff; }
  .oh-pet__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    align-items: center;
  }
  /* Reverse layout: photo on right on desktop (mobile-first keeps photo first) */
  @media (min-width: 801px) {
    .oh-pet--reverse .oh-pet__inner > .oh-pet__photo { order: 2; }
    .oh-pet--reverse .oh-pet__inner > .oh-pet__body { order: 1; }
  }
  @media (max-width: 800px) {
    .oh-pet__inner { grid-template-columns: 1fr; gap: 24px; }
  }
  .oh-pet__photo {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    box-shadow: var(--oh-shadow-lg);
    border: 1px solid var(--line);
  }
  .oh-pet__photo picture, .oh-pet__photo img {
    width: 100%; height: 100%; object-fit: cover; display: block;
  }
  .oh-pet__photo .ribbon {
    position: absolute; top: 16px; left: 0;
    background: var(--turf); color: #fff;
    padding: 8px 16px;
    font-family: Archivo, sans-serif;
    font-weight: 800; font-size: 13px;
    letter-spacing: 0.02em;
    border-radius: 0 8px 8px 0;
    box-shadow: 0 6px 14px -2px rgba(31,74,46,0.4);
  }
  .oh-pet__body .oh-eyebrow {
    display: inline-block;
    background: var(--turf-soft); color: var(--turf);
    font-size: 12.5px; font-weight: 700;
    letter-spacing: 0.04em; text-transform: uppercase;
    padding: 5px 12px; border-radius: 999px;
    margin-bottom: 14px;
  }
  .oh-pet__body h2 {
    font-family: Archivo, sans-serif; font-weight: 900;
    font-size: clamp(26px, 3.4vw, 34px);
    line-height: 1.1; letter-spacing: -0.01em;
    color: var(--ink);
    margin: 0 0 14px;
  }
  .oh-pet__body > p {
    font-size: 16px; line-height: 1.55;
    color: var(--ink-2);
    margin: 0 0 18px;
  }
  .oh-pet__list {
    list-style: none; padding: 0; margin: 0 0 22px;
  }
  .oh-pet__list li {
    padding: 8px 0 8px 30px;
    position: relative;
    font-size: 14.5px; line-height: 1.45;
    color: var(--ink-2);
  }
  .oh-pet__list li::before {
    content: ""; position: absolute; left: 2px; top: 13px;
    width: 16px; height: 9px;
    border-left: 2.5px solid var(--turf);
    border-bottom: 2.5px solid var(--turf);
    transform: rotate(-45deg);
  }
  .oh-pet__list li b { font-weight: 700; color: var(--ink); }
  .oh-pet__ctas {
    display: flex; gap: 10px; flex-wrap: wrap;
  }
  .oh-pet__ctas .btn-primary {
    background: var(--cta); color: #fff;
    padding: 13px 22px; border-radius: 10px;
    font-family: Archivo, sans-serif;
    font-weight: 800; font-size: 15px;
    text-decoration: none;
    display: inline-flex; align-items: center; gap: 8px;
    border: none; cursor: pointer;
    box-shadow: 0 6px 16px -4px rgba(232,90,26,0.4);
  }
  .oh-pet__ctas .btn-ghost {
    background: transparent; color: var(--turf);
    border: 2px solid var(--turf);
    padding: 11px 20px; border-radius: 10px;
    font-family: Archivo, sans-serif;
    font-weight: 800; font-size: 15px;
    text-decoration: none;
    display: inline-flex; align-items: center; gap: 8px;
  }

  /* Featured pull-quote (reviews hero) */
  .oh-rev-feature {
    background: linear-gradient(135deg, #1f4a2e 0%, #2c6b41 100%);
    color: #fff;
    border-radius: 22px;
    padding: 48px 44px;
    margin: 0 auto 28px;
    max-width: 960px;
    box-shadow: 0 24px 60px -22px rgba(31,74,46,0.45);
    position: relative;
    overflow: hidden;
  }
  .oh-rev-feature::before {
    content: "\201C"; position: absolute;
    top: -40px; left: 24px;
    font-family: Georgia, serif;
    font-size: 220px; line-height: 1;
    color: rgba(255,255,255,0.10);
    pointer-events: none;
  }
  .oh-rev-feature__stars {
    display: inline-flex; gap: 2px; margin-bottom: 14px;
  }
  .oh-rev-feature__stars svg { width: 22px !important; height: 22px !important; }
  .oh-rev-feature__quote {
    font-family: Archivo, sans-serif;
    font-weight: 700;
    font-size: clamp(22px, 2.4vw, 30px);
    line-height: 1.25; letter-spacing: -0.01em;
    margin: 0 0 22px;
    color: #fff;
    position: relative; z-index: 1;
  }
  .oh-rev-feature__by {
    display: flex; align-items: center; gap: 14px;
    color: rgba(255,255,255,0.92);
    position: relative; z-index: 1;
  }
  .oh-rev-feature__avatar {
    width: 44px; height: 44px;
    background: rgba(255,255,255,0.18);
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    font-family: Archivo, sans-serif; font-weight: 800; font-size: 17px;
    color: #fff;
  }
  .oh-rev-feature__name { font-weight: 700; font-size: 15px; color: #fff; }
  .oh-rev-feature__meta {
    font-size: 13px; color: rgba(255,255,255,0.75);
    margin-top: 2px;
    display: flex; align-items: center; gap: 6px;
  }
  .oh-rev-feature__meta .g-logo { width: 14px !important; height: 14px !important; }
  @media (max-width: 640px) {
    .oh-rev-feature { padding: 36px 26px; }
    .oh-rev-feature::before { font-size: 160px; top: -30px; left: 12px; }
  }

  /* ============ GOOGLE-BRANDED REVIEWS ============ */
  .oh-rev-summary {
    display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
    gap: 14px;
    background: #fff; border: 1px solid var(--line);
    border-radius: 14px;
    padding: 18px 24px;
    max-width: 720px; margin: 0 auto 28px;
    box-shadow: var(--oh-shadow);
  }
  .oh-rev-summary .g-logo {
    width: 36px !important; height: 36px !important; flex-shrink: 0;
  }
  .oh-review__head .g-logo {
    width: 20px !important; height: 20px !important; flex-shrink: 0;
  }
  .oh-rev-summary__text {
    display: flex; flex-direction: column;
    line-height: 1.2;
  }
  .oh-rev-summary__label {
    font-family: Archivo, sans-serif; font-weight: 700;
    font-size: 14px; color: var(--ink);
  }
  .oh-rev-summary__rating {
    display: flex; align-items: center; gap: 8px;
    margin-top: 4px;
  }
  .oh-rev-summary__rating strong {
    font-family: Archivo, sans-serif; font-weight: 800;
    color: var(--ink); font-size: 20px;
  }
  .oh-rev-summary__stars { display: inline-flex; gap: 1px; }
  .oh-rev-summary__stars svg { width: 16px !important; height: 16px !important; }
  .oh-review__stars { display: inline-flex; gap: 1px; margin-bottom: 10px; }
  .oh-review__stars svg { width: 16px !important; height: 16px !important; }
  .oh-rev-summary__count { color: var(--muted); font-size: 14px; }
  .oh-rev-summary__link {
    margin-left: auto;
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--turf); text-decoration: none;
    font-weight: 700; font-size: 14px;
    padding: 8px 14px; border-radius: 999px;
    background: var(--turf-soft);
    transition: filter .15s;
  }
  .oh-rev-summary__link:hover { filter: brightness(0.95); }
  @media (max-width: 540px) {
    .oh-rev-summary__link { margin-left: 0; }
  }

  .oh-review__head {
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 10px;
  }
  .oh-review__avatar {
    width: 38px; height: 38px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-family: Archivo, sans-serif;
    font-weight: 800; font-size: 16px;
    flex-shrink: 0;
  }
  .oh-review__who {
    display: flex; flex-direction: column;
    flex-grow: 1;
    line-height: 1.25;
  }
  .oh-review__name { font-weight: 700; color: var(--ink); font-size: 14px; }
  .oh-review__date { color: var(--muted); font-size: 12px; margin-top: 2px; }
  .oh-review__source {
    display: flex; align-items: center; gap: 6px;
    margin-top: 12px; padding-top: 10px;
    border-top: 1px solid var(--line);
    font-size: 12px; color: var(--muted);
  }
  .oh-review__source .g-wordmark {
    font-family: Archivo, sans-serif; font-weight: 800; font-size: 14px;
    letter-spacing: 0.5px;
  }

  /* Hide top tagline on small screens */
  @media (max-width: 520px) {
    .top-bar span { display: none; }
    .top-bar__inner { justify-content: flex-end; }
  }
