:root {
    --ink: #111827;
    --muted: #596575;
    --paper: #f4f7fb;
    --white: #ffffff;
    --line: rgba(18, 35, 64, 0.14);
    --navy: #102a4c;
    --navy-dark: #071a33;
    --orange: #f47b20;
    --orange-dark: #c95c11;
    --shadow: 0 22px 70px rgba(7, 26, 51, 0.2);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.6;
}

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

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

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

.site-header {
    position: fixed;
    z-index: 30;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 18px clamp(18px, 4vw, 56px);
    color: var(--white);
    transition: background 180ms ease, box-shadow 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled {
    background: rgba(7, 26, 51, 0.96);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
    padding-top: 12px;
    padding-bottom: 12px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 156px;
}

.brand-logo {
    width: 178px;
    height: auto;
    max-height: 68px;
    object-fit: contain;
}

.footer-brand .brand-logo {
    width: 174px;
    max-height: none;
}

.brand-mark {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 2px solid rgba(255, 255, 255, 0.72);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    font-weight: 800;
}

.brand-text {
    display: grid;
    gap: 0;
    line-height: 1.05;
}

.brand-text strong {
    font-size: 1.05rem;
    letter-spacing: 0;
}

.brand-text span {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.primary-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-size: 0.94rem;
    font-weight: 700;
}

.primary-nav .menu {
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.primary-nav a {
    opacity: 0.9;
}

.primary-nav a:hover {
    opacity: 1;
}

.header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 16px;
    border: 1px solid rgba(255, 255, 255, 0.64);
    border-radius: 6px;
    font-weight: 800;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 3px auto;
    background: currentColor;
}

.hero {
    position: relative;
    min-height: 92vh;
    display: grid;
    align-items: end;
    overflow: hidden;
    color: var(--white);
}

.hero-media,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-media {
    background-image: var(--true-seal-hero-image, url("../images/paver-sealing-hero.png"));
    background-position: center;
    background-size: cover;
    transform: scale(1.01);
}

.hero-overlay {
    background:
        linear-gradient(90deg, rgba(7, 26, 51, 0.92) 0%, rgba(16, 42, 76, 0.72) 42%, rgba(16, 42, 76, 0.22) 100%),
        linear-gradient(0deg, rgba(7, 26, 51, 0.8) 0%, rgba(7, 26, 51, 0) 46%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(780px, calc(100% - 36px));
    margin: 0 0 clamp(46px, 8vh, 88px) clamp(18px, 7vw, 92px);
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--orange);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    overflow-wrap: anywhere;
}

h1 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(2.55rem, 6vw, 5.7rem);
    line-height: 0.98;
    letter-spacing: 0;
}

.hero-copy {
    max-width: 650px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(1rem, 1.6vw, 1.22rem);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 20px;
    border-radius: 6px;
    border: 1px solid transparent;
    font-weight: 800;
    line-height: 1.1;
    transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
    transform: translateY(-1px);
}

.button-primary {
    background: var(--orange);
    color: var(--white);
    box-shadow: 0 14px 34px rgba(244, 123, 32, 0.3);
}

.button-secondary {
    border-color: rgba(255, 255, 255, 0.58);
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
}

.trust-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.trust-strip span {
    padding: 8px 10px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.09);
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.86rem;
    font-weight: 700;
}

.lead-panel {
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    width: min(1120px, calc(100% - 36px));
    margin: -38px auto 0;
    overflow: hidden;
    border-radius: 8px;
    background: var(--line);
    box-shadow: var(--shadow);
}

.lead-panel div {
    min-height: 118px;
    padding: 22px;
    background: var(--white);
}

.lead-panel strong,
.lead-panel span {
    display: block;
}

.lead-panel strong {
    margin-bottom: 6px;
    color: var(--navy-dark);
    font-size: 1.08rem;
}

.lead-panel span {
    color: var(--muted);
    font-size: 0.94rem;
}

.surface-story {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1fr);
    gap: clamp(28px, 6vw, 86px);
    align-items: center;
    padding: clamp(68px, 9vw, 118px) clamp(18px, 6vw, 86px);
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.96)),
        linear-gradient(135deg, rgba(16, 42, 76, 0.08), rgba(244, 123, 32, 0.08));
}

.story-copy {
    max-width: 720px;
}

.story-copy h2 {
    margin: 0;
    font-size: clamp(2rem, 4.4vw, 4.3rem);
    line-height: 1.04;
}

.story-copy p:not(.eyebrow) {
    color: var(--muted);
    font-size: 1.06rem;
}

.symptom-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 26px;
}

.symptom-list span {
    padding: 12px 14px;
    border-left: 4px solid var(--orange);
    border-radius: 6px;
    background: var(--white);
    box-shadow: 0 12px 34px rgba(7, 26, 51, 0.08);
    font-weight: 800;
}

.story-collage {
    position: relative;
    min-height: clamp(420px, 48vw, 620px);
}

.story-img {
    position: absolute;
    object-fit: cover;
    border: 8px solid var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.story-img-main {
    inset: 0 0 auto auto;
    width: 82%;
    height: 74%;
}

.story-img-small {
    left: 0;
    bottom: 0;
    width: 52%;
    height: 45%;
}

.story-badge {
    position: absolute;
    right: 8%;
    bottom: 6%;
    max-width: 230px;
    padding: 18px;
    border-radius: 8px;
    background: var(--orange);
    color: var(--white);
    box-shadow: 0 18px 44px rgba(244, 123, 32, 0.32);
}

.story-badge strong,
.story-badge span {
    display: block;
}

.story-badge strong {
    font-size: 1.22rem;
    line-height: 1.1;
}

.story-badge span {
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.9rem;
    font-weight: 700;
}

.intro-band,
.process-section,
.local-seo-section,
.faq-section,
.page-content {
    padding: clamp(58px, 9vw, 110px) clamp(18px, 5vw, 72px);
}

.section-heading {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(280px, 1.2fr);
    gap: clamp(24px, 5vw, 76px);
    align-items: end;
    max-width: 1180px;
    margin: 0 auto 36px;
}

.section-heading h2,
.split-copy h2,
.quote-copy h2 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: 1.03;
    letter-spacing: 0;
}

.section-heading.compact {
    display: block;
    max-width: 760px;
    margin-left: 0;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    max-width: 1180px;
    margin: 0 auto;
}

.service-grid-four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card {
    overflow: hidden;
    min-height: 390px;
    padding: 0 24px 24px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 18px 46px rgba(7, 26, 51, 0.08);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 58px rgba(7, 26, 51, 0.14);
}

.service-card-img {
    width: calc(100% + 48px);
    height: 170px;
    margin: 0 -24px 22px;
    object-fit: cover;
}

.service-icon {
    display: inline-flex;
    margin-bottom: 4px;
    color: var(--orange-dark);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.16em;
}

.service-card h3,
.process-step h3 {
    margin: 10px 0;
    font-size: 1.35rem;
    line-height: 1.18;
}

.text-link {
    display: inline-flex;
    margin-top: 10px;
    color: var(--orange-dark);
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.service-card p,
.process-step p,
.split-copy p,
.faq-grid p,
.quote-copy p,
.footer-grid p {
    color: var(--muted);
}

.split-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.8fr);
    gap: clamp(24px, 6vw, 88px);
    align-items: center;
    padding: clamp(58px, 8vw, 100px) clamp(18px, 6vw, 86px);
    background: var(--navy-dark);
    color: var(--white);
}

.split-copy {
    max-width: 720px;
}

.split-copy p {
    color: rgba(255, 255, 255, 0.76);
}

.check-list {
    display: grid;
    gap: 12px;
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 28px;
    font-weight: 700;
}

.check-list li::before {
    content: "";
    position: absolute;
    top: 0.56em;
    left: 0;
    width: 14px;
    height: 8px;
    border-left: 3px solid var(--orange);
    border-bottom: 3px solid var(--orange);
    transform: rotate(-45deg);
}

.stats-panel {
    display: grid;
    gap: 12px;
}

.stats-panel div {
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
}

.stats-panel strong,
.stats-panel span {
    display: block;
}

.stats-panel strong {
    color: var(--orange);
    font-size: clamp(1.6rem, 4vw, 2.7rem);
    line-height: 1.02;
}

.stats-panel span {
    color: rgba(255, 255, 255, 0.72);
}

.process-section {
    max-width: 1260px;
    margin: 0 auto;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
    background: var(--white);
}

.process-step {
    min-height: 270px;
    padding: 26px;
    border-right: 1px solid var(--line);
}

.process-step:last-child {
    border-right: 0;
}

.process-step span {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 50%;
    background: var(--navy);
    color: var(--white);
    font-weight: 800;
}

.results-showcase {
    padding: clamp(64px, 9vw, 116px) clamp(18px, 6vw, 86px);
    background: linear-gradient(135deg, rgba(7, 26, 51, 0.98), rgba(16, 42, 76, 0.94));
    color: var(--white);
}

.results-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
    gap: clamp(22px, 5vw, 70px);
    align-items: end;
    max-width: 1220px;
    margin: 0 auto 34px;
}

.results-heading h2 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(2.1rem, 4.6vw, 4.5rem);
    line-height: 1.02;
}

.results-heading p:not(.eyebrow) {
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
}

.before-after-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 18px;
    max-width: 1220px;
    margin: 0 auto;
}

.result-card {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.22);
}

.result-card-featured {
    grid-row: span 2;
}

.ba-pair {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    background: rgba(255, 255, 255, 0.18);
}

.ba-pair figure {
    position: relative;
    margin: 0;
    background: var(--navy-dark);
}

.ba-pair img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.result-card-featured .ba-pair img {
    height: clamp(360px, 48vw, 620px);
}

.ba-pair figcaption {
    position: absolute;
    left: 12px;
    bottom: 12px;
    padding: 7px 10px;
    border-radius: 6px;
    background: rgba(7, 26, 51, 0.86);
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.ba-pair figure:last-child figcaption {
    background: var(--orange);
}

.result-copy {
    padding: 22px;
}

.result-copy span {
    display: block;
    margin-bottom: 8px;
    color: var(--orange);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.result-copy h3 {
    margin: 0;
    font-size: clamp(1.2rem, 2.4vw, 2rem);
    line-height: 1.12;
}

.result-copy p {
    margin: 12px 0 0;
    color: rgba(255, 255, 255, 0.72);
}

.decision-cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
    padding: clamp(36px, 6vw, 64px) clamp(18px, 6vw, 86px);
    background: var(--orange);
    color: var(--white);
}

.decision-cta h2 {
    max-width: 900px;
    margin: 0;
    font-size: clamp(1.55rem, 3vw, 3rem);
    line-height: 1.08;
}

.decision-cta .eyebrow {
    color: rgba(255, 255, 255, 0.82);
}

.decision-cta .button-primary {
    background: var(--navy-dark);
    box-shadow: none;
    white-space: nowrap;
}

.local-seo-section {
    background: var(--white);
}

.local-seo-section .section-heading p:not(.eyebrow) {
    max-width: 880px;
    color: var(--muted);
    font-size: 1.05rem;
}

.area-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 980px;
    margin-top: 28px;
}

.area-grid span {
    padding: 10px 13px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--paper);
    color: var(--navy-dark);
    font-weight: 800;
}

.testimonial-band {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 28px;
    align-items: start;
    padding: clamp(58px, 8vw, 100px) clamp(18px, 6vw, 86px);
    background: #eef3fa;
}

.quote-mark {
    color: var(--orange);
    font-size: clamp(5rem, 10vw, 9rem);
    font-weight: 800;
    line-height: 0.85;
}

blockquote {
    margin: 0;
}

.review-stack {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.review-stack blockquote {
    min-height: 250px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 18px 46px rgba(7, 26, 51, 0.08);
}

.review-stack blockquote p {
    margin: 0;
    color: var(--ink);
    font-size: clamp(1.1rem, 2vw, 1.45rem);
    line-height: 1.18;
    font-weight: 800;
}

cite {
    display: block;
    margin-top: 20px;
    color: var(--muted);
    font-style: normal;
    font-weight: 800;
}

.warranty-section {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1fr);
    gap: clamp(22px, 5vw, 70px);
    align-items: center;
    padding: clamp(58px, 8vw, 96px) clamp(18px, 6vw, 86px);
    background: var(--navy);
    color: var(--white);
}

.warranty-copy {
    max-width: 640px;
}

.warranty-copy h2 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.8rem);
    line-height: 1.04;
}

.warranty-copy p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.76);
}

.warranty-cards {
    display: grid;
    gap: 14px;
}

.warranty-cards article {
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
}

.warranty-cards strong,
.warranty-cards span {
    display: block;
}

.warranty-cards strong {
    margin-bottom: 8px;
    font-size: 1.22rem;
}

.warranty-cards span {
    color: rgba(255, 255, 255, 0.74);
}

.faq-section {
    max-width: 1260px;
    margin: 0 auto;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

details {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 16px 40px rgba(7, 26, 51, 0.06);
}

summary {
    cursor: pointer;
    padding: 20px 22px;
    font-weight: 800;
}

details p {
    margin: 0;
    padding: 0 22px 22px;
}

.quote-section {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
    gap: clamp(24px, 6vw, 86px);
    align-items: start;
    padding: clamp(58px, 9vw, 110px) clamp(18px, 6vw, 86px);
    background: var(--ink);
    color: var(--white);
}

.quote-copy {
    max-width: 640px;
}

.quote-copy p {
    color: rgba(255, 255, 255, 0.74);
}

.contact-list {
    display: grid;
    gap: 10px;
    margin-top: 26px;
}

.contact-list a,
.contact-list span {
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    font-weight: 800;
}

.quote-form {
    padding: clamp(22px, 4vw, 36px);
    border-radius: 8px;
    background: var(--white);
    color: var(--ink);
    box-shadow: var(--shadow);
}

.form-intro {
    display: grid;
    gap: 4px;
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line);
}

.form-intro strong {
    font-size: 1.2rem;
}

.form-intro span {
    color: var(--muted);
    font-size: 0.92rem;
}

.form-notice {
    margin-bottom: 18px;
    padding: 14px 16px;
    border: 1px solid;
    border-radius: 6px;
    font-weight: 700;
}

.form-notice.success {
    border-color: rgba(22, 129, 79, 0.28);
    background: rgba(22, 129, 79, 0.09);
    color: #0d633c;
}

.form-notice.error {
    border-color: rgba(189, 51, 44, 0.28);
    background: rgba(189, 51, 44, 0.08);
    color: #8f2420;
}

.form-honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.field-note {
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 600;
}

.quote-form form {
    display: grid;
    gap: 15px;
}

.quote-form label {
    display: grid;
    gap: 7px;
    font-size: 0.86rem;
    font-weight: 800;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
    width: 100%;
    min-height: 48px;
    padding: 12px 13px;
    border: 1px solid var(--line);
    border-radius: 6px;
    color: var(--ink);
    font: inherit;
}

.quote-form input[type="file"] {
    padding: 9px;
    background: #f8fbff;
}

.quote-form input[type="file"]::file-selector-button {
    margin-right: 10px;
    padding: 8px 11px;
    border: 0;
    border-radius: 5px;
    background: var(--navy);
    color: var(--white);
    font: inherit;
    font-size: 0.82rem;
    font-weight: 800;
    cursor: pointer;
}

.quote-form select {
    appearance: none;
    background:
        linear-gradient(45deg, transparent 50%, var(--navy-dark) 50%) calc(100% - 18px) 52% / 6px 6px no-repeat,
        linear-gradient(135deg, var(--navy-dark) 50%, transparent 50%) calc(100% - 13px) 52% / 6px 6px no-repeat,
        var(--white);
}

.quote-form textarea {
    min-height: 136px;
    resize: vertical;
}

.quote-form .button {
    width: 100%;
    border: 0;
    cursor: pointer;
}

.form-privacy-note {
    margin: -2px 0 0;
    color: var(--muted);
    font-size: 0.78rem;
    line-height: 1.4;
    text-align: center;
}

.conversion-next-steps {
    display: grid;
    gap: 10px;
    margin-top: 28px;
}

.conversion-next-steps div {
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.conversion-next-steps strong {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 6px;
    background: var(--orange);
    color: var(--white);
}

.conversion-next-steps span {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 700;
}

.service-quote-section {
    background:
        linear-gradient(90deg, rgba(244, 123, 32, 0.12), rgba(244, 123, 32, 0) 38%),
        linear-gradient(135deg, #06152a 0%, #102a4c 100%);
}

.mobile-conversion-bar {
    display: none;
}

.page-content {
    max-width: 920px;
    margin: 0 auto;
    padding-top: 140px;
}

.page-content h1 {
    color: var(--ink);
    font-size: clamp(2.3rem, 6vw, 4.7rem);
}

.content-body a,
.post-summary a {
    color: var(--navy);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.service-page-hero {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1.05fr);
    gap: clamp(28px, 6vw, 78px);
    align-items: center;
    min-height: 82vh;
    padding: clamp(120px, 14vw, 170px) clamp(18px, 6vw, 86px) clamp(62px, 8vw, 104px);
    background:
        linear-gradient(135deg, rgba(7, 26, 51, 0.98), rgba(16, 42, 76, 0.92)),
        var(--navy-dark);
    color: var(--white);
}

.service-page-copy {
    max-width: 760px;
}

.service-page-copy h1 {
    max-width: none;
}

.service-page-copy p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(1.02rem, 1.8vw, 1.25rem);
}

.service-page-media {
    position: relative;
    margin: 0;
}

.service-page-media::before {
    content: "";
    position: absolute;
    inset: 18px -18px -18px 18px;
    border: 2px solid rgba(244, 123, 32, 0.62);
    border-radius: 8px;
}

.service-page-media img {
    position: relative;
    width: 100%;
    min-height: 440px;
    max-height: 640px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.conversion-proof-rail {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    padding: 0 clamp(18px, 6vw, 86px);
    background: var(--orange);
    color: var(--white);
}

.conversion-proof-rail div {
    padding: 24px clamp(16px, 2.4vw, 28px);
    background: rgba(7, 26, 51, 0.94);
}

.conversion-proof-rail strong,
.conversion-proof-rail span {
    display: block;
}

.conversion-proof-rail strong {
    color: var(--orange);
    font-size: 1rem;
}

.conversion-proof-rail span {
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.86rem;
}

.surface-game-section {
    padding: clamp(58px, 9vw, 108px) clamp(18px, 6vw, 86px);
    background: var(--paper);
}

.surface-game-intro {
    max-width: 900px;
    margin-bottom: 30px;
}

.surface-game-intro h2 {
    margin: 0;
    font-size: clamp(2rem, 4.2vw, 4rem);
    line-height: 1.04;
}

.surface-game-intro p:not(.eyebrow) {
    color: var(--muted);
    font-size: 1.05rem;
}

.surface-level-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 18px;
}

.surface-level-card {
    position: relative;
    overflow: hidden;
    min-height: 240px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 18px 46px rgba(7, 26, 51, 0.07);
}

.surface-level-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 7px;
    background: var(--orange);
}

.surface-level-card span {
    display: inline-flex;
    margin-bottom: 20px;
    padding: 7px 10px;
    border-radius: 6px;
    background: rgba(244, 123, 32, 0.12);
    color: var(--orange-dark);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.surface-level-card h3 {
    margin: 0 0 10px;
    font-size: 1.35rem;
    line-height: 1.15;
}

.surface-level-card p {
    margin: 0;
    color: var(--muted);
}

.outcome-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.outcome-grid div {
    padding: 18px;
    border-radius: 8px;
    background: var(--navy-dark);
    color: var(--white);
}

.outcome-grid strong,
.outcome-grid span {
    display: block;
}

.outcome-grid strong {
    margin-bottom: 6px;
    color: var(--orange);
}

.outcome-grid span {
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.92rem;
}

.service-detail-band,
.related-services {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
    gap: clamp(24px, 6vw, 80px);
    align-items: center;
    padding: clamp(58px, 9vw, 108px) clamp(18px, 6vw, 86px);
    background: var(--white);
}

.service-detail-copy h2,
.related-services h2 {
    margin: 0;
    font-size: clamp(2rem, 4.2vw, 4rem);
    line-height: 1.04;
}

.service-detail-copy p:not(.eyebrow),
.related-services p {
    color: var(--muted);
}

.service-cost-section {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1.22fr);
    gap: clamp(28px, 6vw, 84px);
    align-items: center;
    padding: clamp(58px, 9vw, 108px) clamp(18px, 6vw, 86px);
    background: #eef3fa;
}

.service-cost-intro {
    max-width: 620px;
}

.service-cost-intro h2 {
    margin: 0;
    font-size: clamp(2rem, 4.2vw, 4rem);
    line-height: 1.04;
}

.service-cost-intro p:not(.eyebrow) {
    color: var(--muted);
}

.cost-factor-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--line);
    gap: 1px;
    box-shadow: 0 22px 60px rgba(7, 26, 51, 0.1);
}

.cost-factor-grid article {
    min-height: 190px;
    padding: 24px;
    background: linear-gradient(180deg, var(--white), #f8fbff);
}

.cost-factor-grid span,
.cost-factor-grid strong {
    display: block;
}

.cost-factor-grid span {
    color: var(--orange-dark);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.cost-factor-grid strong {
    margin-top: 18px;
    color: var(--navy-dark);
    font-size: 1.18rem;
}

.cost-factor-grid p {
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 0.94rem;
}

.service-benefit-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.service-benefit-list div {
    min-height: 150px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
}

.service-benefit-list strong,
.service-benefit-list span {
    display: block;
}

.service-benefit-list strong {
    margin-bottom: 8px;
    color: var(--navy-dark);
    font-size: 1.14rem;
}

.service-benefit-list span {
    color: var(--muted);
}

.service-proof-section {
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(340px, 1.28fr);
    gap: clamp(24px, 6vw, 78px);
    align-items: center;
    padding: clamp(58px, 9vw, 108px) clamp(18px, 6vw, 86px);
    background: var(--navy-dark);
    color: var(--white);
}

.service-proof-copy h2 {
    margin: 0;
    font-size: clamp(2rem, 4.2vw, 4rem);
    line-height: 1.04;
}

.service-proof-copy p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.74);
}

.service-proof-images {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.18);
    box-shadow: var(--shadow);
}

.service-proof-images figure {
    position: relative;
    margin: 0;
    background: var(--navy);
}

.service-proof-images img {
    width: 100%;
    height: clamp(300px, 34vw, 560px);
    object-fit: cover;
}

.service-proof-images figcaption {
    position: absolute;
    left: 14px;
    bottom: 14px;
    padding: 8px 11px;
    border-radius: 6px;
    background: rgba(7, 26, 51, 0.9);
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.service-proof-images figure:last-child figcaption {
    background: var(--orange);
}

.service-process-band {
    padding: clamp(58px, 9vw, 108px) clamp(18px, 6vw, 86px);
    background: #eef3fa;
}

.service-process-band .section-heading {
    max-width: 1180px;
    margin-right: auto;
    margin-left: auto;
}

.service-process-band .process-timeline {
    max-width: 1180px;
    margin: 0 auto;
}

.playbook-section {
    padding: clamp(58px, 9vw, 108px) clamp(18px, 6vw, 86px);
    background: var(--white);
}

.playbook-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    max-width: 1180px;
}

.playbook-grid article {
    min-height: 210px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
}

.playbook-grid strong {
    display: block;
    margin-bottom: 10px;
    color: var(--navy-dark);
    font-size: 1.12rem;
}

.playbook-grid p {
    margin: 0;
    color: var(--muted);
}

.service-faq {
    padding-top: clamp(58px, 9vw, 108px);
}

.related-services {
    background: var(--navy-dark);
    color: var(--white);
}

.related-services p {
    color: rgba(255, 255, 255, 0.72);
}

.related-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
}

.button-secondary.dark {
    border-color: rgba(255, 255, 255, 0.44);
    color: var(--white);
}

/* Premium finish pass */
.site-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(7, 26, 51, 0.72), rgba(7, 26, 51, 0));
    backdrop-filter: blur(12px);
}

.site-header.is-scrolled {
    border-bottom-color: rgba(255, 255, 255, 0.12);
    background: rgba(6, 21, 42, 0.94);
}

.primary-nav a {
    position: relative;
    padding: 8px 0;
}

.primary-nav a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 2px;
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 180ms ease;
}

.primary-nav a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.header-cta {
    border-color: rgba(244, 123, 32, 0.62);
    background: rgba(244, 123, 32, 0.14);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.site-header {
    margin: 12px clamp(12px, 2vw, 24px) 0;
    right: clamp(12px, 2vw, 24px);
    left: clamp(12px, 2vw, 24px);
    width: auto;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    padding: 10px clamp(12px, 2.6vw, 28px);
    box-shadow: 0 18px 54px rgba(0, 0, 0, 0.16);
}

.site-header.is-scrolled {
    padding-top: 9px;
    padding-bottom: 9px;
}

.brand {
    position: relative;
    gap: 14px;
}

.site-header .brand::after {
    content: "";
    width: 1px;
    height: 38px;
    background: rgba(255, 255, 255, 0.14);
}

.brand-logo {
    width: clamp(136px, 14vw, 174px);
    max-height: 58px;
}

.brand-status {
    display: inline-flex;
    max-width: 130px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.72rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.primary-nav {
    padding: 0 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
}

.primary-nav .menu,
.primary-nav {
    gap: 6px;
}

.primary-nav a {
    padding: 10px 11px;
    border-radius: 6px;
}

.primary-nav a:hover {
    background: rgba(255, 255, 255, 0.08);
}

.primary-nav a::after {
    right: 11px;
    left: 11px;
}

.header-cta {
    display: grid;
    min-width: 152px;
    min-height: 52px;
    padding: 8px 14px;
    align-content: center;
    border-color: rgba(244, 123, 32, 0.74);
    background: linear-gradient(180deg, rgba(244, 123, 32, 0.26), rgba(244, 123, 32, 0.1));
    color: var(--white);
    line-height: 1.1;
}

.header-cta span,
.header-cta strong {
    display: block;
}

.header-cta span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.68rem;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.header-cta strong {
    margin-top: 3px;
    font-size: 0.98rem;
}

.button-primary {
    background: linear-gradient(180deg, #ff8d35, var(--orange-dark));
    box-shadow: 0 16px 36px rgba(244, 123, 32, 0.34);
}

.button-secondary {
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.hero::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 22vh;
    background: linear-gradient(0deg, rgba(6, 21, 42, 0.72), rgba(6, 21, 42, 0));
    pointer-events: none;
}

.hero-content {
    padding-bottom: 8px;
}

.trust-strip span {
    border-color: rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.lead-panel {
    border: 1px solid rgba(16, 42, 76, 0.12);
    background: var(--white);
}

.lead-panel div {
    position: relative;
}

.lead-panel div::before {
    content: "";
    position: absolute;
    top: 0;
    right: 22px;
    left: 22px;
    height: 4px;
    border-radius: 0 0 6px 6px;
    background: var(--orange);
}

.surface-story,
.intro-band,
.process-section,
.local-seo-section,
.faq-section,
.playbook-section {
    position: relative;
}

.service-card {
    position: relative;
    padding-bottom: 28px;
    background: linear-gradient(180deg, var(--white), #f8fbff);
}

.service-card::after {
    content: "";
    position: absolute;
    inset: auto 22px 0;
    height: 4px;
    border-radius: 6px 6px 0 0;
    background: var(--orange);
    opacity: 0.9;
}

.service-card-img {
    filter: saturate(1.08) contrast(1.02);
}

.split-section,
.results-showcase,
.service-page-hero,
.service-proof-section,
.related-services,
.quote-section {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0)),
        linear-gradient(90deg, rgba(244, 123, 32, 0.12), rgba(244, 123, 32, 0) 34%),
        linear-gradient(135deg, #06152a 0%, #102a4c 58%, #071a33 100%);
}

.service-page-hero {
    overflow: hidden;
}

.service-page-copy {
    position: relative;
    z-index: 2;
}

.service-page-copy h1 {
    text-wrap: balance;
}

.service-hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    margin-top: 30px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.16);
    box-shadow: 0 18px 54px rgba(0, 0, 0, 0.18);
}

.service-hero-metrics div {
    padding: 16px;
    background: rgba(255, 255, 255, 0.08);
}

.service-hero-metrics strong,
.service-hero-metrics span {
    display: block;
}

.service-hero-metrics strong {
    color: var(--orange);
    font-size: 0.98rem;
    line-height: 1.1;
}

.service-hero-metrics span {
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.84rem;
    line-height: 1.35;
}

.service-page-media {
    transform: rotate(1deg);
}

.service-page-media::before {
    inset: 22px -22px -22px 22px;
    border: 0;
    background: linear-gradient(135deg, rgba(244, 123, 32, 0.85), rgba(255, 255, 255, 0.16));
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.3);
}

.service-page-media img {
    border: 8px solid rgba(255, 255, 255, 0.92);
    filter: saturate(1.08) contrast(1.04);
}

.service-page-media figcaption {
    position: absolute;
    right: 18px;
    bottom: 18px;
    z-index: 2;
    padding: 9px 12px;
    border-radius: 6px;
    background: rgba(7, 26, 51, 0.88);
    color: var(--white);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.surface-game-section {
    background:
        linear-gradient(180deg, #f8fbff 0%, #eef3fa 100%);
}

.surface-level-card {
    border-color: rgba(16, 42, 76, 0.12);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.98));
}

.surface-level-card::after {
    content: "";
    position: absolute;
    top: 22px;
    right: 22px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(244, 123, 32, 0.28);
    background: rgba(244, 123, 32, 0.08);
}

.surface-level-card h3 {
    max-width: calc(100% - 42px);
}

.outcome-grid div,
.stats-panel div,
.warranty-cards article {
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.service-detail-band {
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(248, 251, 255, 0.96)),
        linear-gradient(135deg, rgba(16, 42, 76, 0.08), rgba(244, 123, 32, 0.1));
}

.service-benefit-list div,
.playbook-grid article,
details,
.review-stack blockquote {
    background: linear-gradient(180deg, var(--white), #f8fbff);
}

.service-proof-images,
.before-after-grid .result-card,
.result-card {
    isolation: isolate;
}

.service-proof-images img,
.ba-pair img,
.story-img {
    filter: saturate(1.07) contrast(1.03);
}

.process-timeline {
    box-shadow: 0 22px 60px rgba(7, 26, 51, 0.08);
}

.process-step {
    background: linear-gradient(180deg, var(--white), #f8fbff);
}

.process-step span {
    box-shadow: 0 10px 22px rgba(16, 42, 76, 0.18);
}

.quote-form {
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(244, 123, 32, 0.15);
    outline: 0;
}

/* Signature card system */
.lead-panel {
    overflow: visible;
    gap: 14px;
    background: transparent;
    box-shadow: none;
}

.lead-panel div {
    overflow: hidden;
    border: 1px solid rgba(16, 42, 76, 0.12);
    border-radius: 8px;
    box-shadow: 0 18px 48px rgba(7, 26, 51, 0.13);
}

.lead-panel div::after {
    content: "0" counter(lead);
    position: absolute;
    top: 16px;
    right: 18px;
    color: rgba(16, 42, 76, 0.12);
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1;
}

.lead-panel {
    counter-reset: lead;
}

.lead-panel div {
    counter-increment: lead;
}

.symptom-list span,
.area-grid span {
    position: relative;
    overflow: hidden;
}

.symptom-list span::after,
.area-grid span::after {
    content: "";
    position: absolute;
    inset: auto 10px 8px;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--orange), rgba(244, 123, 32, 0));
    opacity: 0.55;
}

.service-grid {
    gap: 20px;
}

.service-card {
    isolation: isolate;
    min-height: 430px;
    padding: 0 0 26px;
    border-color: rgba(16, 42, 76, 0.12);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0), #ffffff 40%),
        #f8fbff;
}

.service-card::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 18px 18px -10px -10px;
    border-radius: 8px;
    background: rgba(16, 42, 76, 0.08);
    transition: transform 180ms ease, background 180ms ease;
}

.service-card::after {
    inset: auto 0 0;
    height: 6px;
    border-radius: 0;
    background: linear-gradient(90deg, var(--orange), #ffb06c 52%, var(--orange-dark));
}

.service-card:hover::before {
    transform: translate(8px, -8px);
    background: rgba(244, 123, 32, 0.14);
}

.service-card-img {
    width: 100%;
    height: 210px;
    margin: 0 0 0;
    clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%);
}

.service-card .service-icon {
    position: relative;
    z-index: 2;
    margin: -22px 24px 12px;
    padding: 10px 12px;
    border: 1px solid rgba(244, 123, 32, 0.34);
    border-radius: 6px;
    background: var(--navy-dark);
    color: var(--white);
    box-shadow: 0 14px 28px rgba(7, 26, 51, 0.2);
}

.service-card h3,
.service-card p,
.service-card .text-link {
    margin-right: 24px;
    margin-left: 24px;
}

.service-card h3 {
    font-size: clamp(1.35rem, 2vw, 1.75rem);
}

.service-card p {
    min-height: 112px;
}

.text-link {
    position: relative;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.text-link::after {
    content: "";
    width: 22px;
    height: 10px;
    border-right: 3px solid currentColor;
    border-bottom: 3px solid currentColor;
    transform: skewX(-18deg);
    transition: transform 160ms ease;
}

.text-link:hover::after {
    transform: translateX(4px) skewX(-18deg);
}

.stats-panel div,
.warranty-cards article,
.surface-level-card,
.service-benefit-list div,
.playbook-grid article,
.review-stack blockquote,
details {
    position: relative;
    overflow: hidden;
}

.stats-panel div::before,
.warranty-cards article::before,
.surface-level-card::before,
.service-benefit-list div::before,
.playbook-grid article::before,
.review-stack blockquote::before,
details::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--orange), rgba(244, 123, 32, 0));
}

.surface-level-grid {
    gap: 18px;
    counter-reset: level-card;
}

.surface-level-card {
    counter-increment: level-card;
    min-height: 285px;
    padding: 28px;
    border-color: rgba(16, 42, 76, 0.12);
}

.surface-level-card::before {
    width: auto;
}

.surface-level-card::after {
    content: counter(level-card);
    display: grid;
    place-items: center;
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: var(--navy-dark);
    color: var(--orange);
    font-weight: 800;
}

.surface-level-card span {
    margin-bottom: 24px;
    background: rgba(16, 42, 76, 0.08);
    color: var(--navy-dark);
}

.outcome-grid {
    gap: 14px;
}

.outcome-grid div {
    position: relative;
    min-height: 148px;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
        var(--navy-dark);
}

.service-benefit-list {
    gap: 16px;
}

.service-benefit-list div {
    min-height: 170px;
    padding: 26px 24px 24px;
    background:
        linear-gradient(180deg, var(--white), #f8fbff);
    box-shadow: 0 18px 46px rgba(7, 26, 51, 0.08);
}

.service-benefit-list strong,
.playbook-grid strong {
    padding-right: 34px;
}

.service-benefit-list div::after,
.playbook-grid article::after {
    content: "";
    position: absolute;
    top: 22px;
    right: 22px;
    width: 18px;
    height: 18px;
    border-top: 3px solid var(--orange);
    border-right: 3px solid var(--orange);
    opacity: 0.8;
}

.process-timeline {
    gap: 12px;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.process-step {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 18px 44px rgba(7, 26, 51, 0.08);
}

.process-step::after {
    content: "";
    position: absolute;
    right: -28px;
    bottom: -28px;
    width: 92px;
    height: 92px;
    border: 1px solid rgba(244, 123, 32, 0.22);
    border-radius: 8px;
    transform: rotate(14deg);
}

.process-step span {
    border-radius: 8px;
    background: linear-gradient(180deg, var(--navy), var(--navy-dark));
    color: var(--orange);
}

.result-card {
    position: relative;
    border-color: rgba(255, 255, 255, 0.18);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.05));
}

.result-card::after {
    content: "Project proof";
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    padding: 8px 10px;
    border-radius: 6px;
    background: rgba(7, 26, 51, 0.86);
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.ba-pair {
    gap: 2px;
}

.ba-pair img {
    transition: transform 260ms ease, filter 260ms ease;
}

.result-card:hover .ba-pair img {
    transform: scale(1.035);
}

.result-copy {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.review-stack {
    gap: 18px;
}

.review-stack blockquote {
    min-height: 285px;
    padding: 32px 26px 26px;
}

.review-stack blockquote::after {
    content: "Google review theme";
    position: absolute;
    right: 20px;
    bottom: 18px;
    color: rgba(16, 42, 76, 0.18);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.warranty-cards {
    gap: 18px;
}

.warranty-cards article {
    padding: 30px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.07));
}

.area-grid {
    max-width: 1080px;
}

.area-grid span {
    padding: 12px 16px 14px;
    background:
        linear-gradient(180deg, #ffffff, #f8fbff);
    box-shadow: 0 12px 28px rgba(7, 26, 51, 0.06);
}

details {
    border-color: rgba(16, 42, 76, 0.12);
}

summary {
    position: relative;
    padding-right: 54px;
}

summary::after {
    content: "";
    position: absolute;
    top: 23px;
    right: 22px;
    width: 12px;
    height: 12px;
    border-right: 3px solid var(--orange);
    border-bottom: 3px solid var(--orange);
    transform: rotate(45deg);
}

details[open] summary::after {
    transform: rotate(225deg);
}

.warranty-detail {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    padding: clamp(58px, 9vw, 108px) clamp(18px, 6vw, 86px);
    background: var(--paper);
}

.warranty-detail-card {
    padding: clamp(28px, 5vw, 52px);
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 18px 46px rgba(7, 26, 51, 0.08);
}

.warranty-detail-card.featured {
    background: var(--navy);
    color: var(--white);
}

.warranty-detail-card span {
    color: var(--orange);
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.warranty-detail-card h2 {
    margin: 10px 0;
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: 1.02;
}

.warranty-detail-card p {
    color: var(--muted);
}

.warranty-detail-card.featured p {
    color: rgba(255, 255, 255, 0.74);
}

.site-footer {
    position: relative;
    padding: 0 clamp(18px, 5vw, 72px) 24px;
    background:
        linear-gradient(90deg, rgba(244, 123, 32, 0.1), rgba(244, 123, 32, 0) 42%),
        linear-gradient(135deg, #041124 0%, #071a33 52%, #102a4c 100%);
    color: var(--white);
    overflow: hidden;
}

.site-footer::before {
    content: "";
    position: absolute;
    top: 0;
    right: clamp(18px, 6vw, 86px);
    left: clamp(18px, 6vw, 86px);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(244, 123, 32, 0.78), transparent);
}

.footer-cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: clamp(20px, 5vw, 56px);
    align-items: center;
    max-width: 1180px;
    margin: 0 auto;
    padding: clamp(34px, 6vw, 62px) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-cta h2 {
    max-width: 820px;
    margin: 0;
    font-size: clamp(1.65rem, 3vw, 3.2rem);
    line-height: 1.05;
}

.footer-cta .eyebrow {
    margin-bottom: 10px;
}

.footer-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.75fr 0.95fr 0.9fr;
    gap: clamp(24px, 4vw, 52px);
    max-width: 1180px;
    margin: 0 auto;
    padding-top: clamp(34px, 6vw, 58px);
}

.footer-brand {
    color: var(--white);
}

.footer-brand .brand-logo {
    width: 174px;
    max-height: none;
}

.footer-company {
    max-width: 420px;
}

.site-footer h2 {
    margin: 0 0 15px;
    color: var(--white);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.site-footer p {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
}

.footer-company p {
    margin-top: 18px;
}

.footer-link-list {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    color: rgba(255, 255, 255, 0.72);
    list-style: none;
}

.footer-link-list a,
.site-footer a {
    transition: color 160ms ease, opacity 160ms ease;
}

.footer-link-list a:hover,
.site-footer a:hover {
    color: var(--orange);
}

.footer-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 22px;
}

.footer-trust span {
    padding: 8px 10px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.78rem;
    font-weight: 800;
}

.site-footer .button-secondary.dark {
    background: rgba(255, 255, 255, 0.08);
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
    max-width: 1180px;
    margin: 38px auto 0;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.56);
    font-size: 0.86rem;
}

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

    .site-header {
        gap: 12px;
        margin-top: 8px;
    }

    .nav-toggle {
        display: block;
    }

    .primary-nav {
        position: absolute;
        top: calc(100% + 8px);
        left: 18px;
        right: 18px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 10px;
        border-radius: 8px;
        background: rgba(7, 26, 51, 0.98);
        box-shadow: var(--shadow);
    }

    .primary-nav.is-open {
        display: flex;
    }

    .primary-nav .menu {
        flex-direction: column;
        gap: 0;
    }

    .primary-nav a {
        padding: 12px;
    }

    .site-header .brand::after,
    .brand-status {
        display: none;
    }

    .header-cta {
        display: none;
    }

    .section-heading,
    .results-heading,
    .split-section,
    .surface-story,
    .service-page-hero,
    .service-detail-band,
    .service-proof-section,
    .related-services,
    .lead-panel,
    .warranty-section,
    .warranty-detail,
    .decision-cta,
    .quote-section,
    .service-cost-section,
    .footer-cta {
        grid-template-columns: 1fr;
    }

    .service-grid,
    .before-after-grid,
    .surface-level-grid,
    .outcome-grid,
    .playbook-grid,
    .review-stack,
    .process-timeline,
    .faq-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .result-card-featured {
        grid-row: auto;
    }

    .story-collage {
        min-height: 460px;
    }

    .related-actions {
        justify-content: flex-start;
    }

    .service-proof-images {
        grid-template-columns: 1fr;
    }

    .service-hero-metrics {
        grid-template-columns: 1fr;
    }

    .service-page-media {
        transform: none;
    }

    .conversion-proof-rail {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-cta-actions {
        justify-content: flex-start;
    }

    .process-step {
        min-height: auto;
        border-right: 1px solid var(--line);
        border-bottom: 1px solid var(--line);
    }

    .process-step:last-child {
        border-bottom: 0;
    }
}

/* Version 4.0: native Gutenberg page layouts. */
.editable-layout {
    overflow: hidden;
}

.editable-layout > .wp-block-group,
.editable-layout > .wp-block-image {
    margin-block-start: 0;
    margin-block-end: 0;
}

.hero > figure.hero-media {
    margin: 0;
}

.hero > figure.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content > .wp-block-buttons,
.service-page-copy > .wp-block-buttons {
    display: inline-flex;
    margin: 28px 8px 0 0;
    vertical-align: top;
}

.wp-block-button.button-primary .wp-block-button__link,
.wp-block-button.button-secondary .wp-block-button__link {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    border: 1px solid transparent;
    border-radius: 6px;
    font-weight: 800;
}

.wp-block-button.button-primary .wp-block-button__link {
    background: var(--orange);
    color: var(--white);
    box-shadow: 0 14px 34px rgba(244, 123, 32, 0.3);
}

.wp-block-button.button-secondary .wp-block-button__link {
    border-color: rgba(255, 255, 255, 0.58);
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
}

.trust-strip > article,
.lead-panel > article {
    margin: 0;
}

.trust-strip > article {
    padding: 8px 10px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.09);
}

.trust-strip h3,
.trust-strip p {
    margin: 0;
    color: var(--white);
    font-size: 0.86rem;
}

.lead-panel > article {
    min-height: 118px;
    padding: 22px;
    background: var(--white);
}

.lead-panel h3 {
    margin: 0 0 6px;
    color: var(--navy-dark);
    font-size: 1.08rem;
}

.lead-panel p {
    margin: 0;
    color: var(--muted);
    font-size: 0.94rem;
}

.symptom-list > article {
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 7px;
    background: var(--white);
}

.symptom-list h3,
.symptom-list p {
    margin: 0;
    font-size: 0.9rem;
}

.story-collage figure.story-img,
.service-card figure.service-card-img,
.service-page-hero figure.service-page-media {
    margin: 0;
}

.story-collage figure.story-img img,
.service-card figure.service-card-img img,
.service-page-hero figure.service-page-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card .card-tag {
    display: inline-grid;
    width: 42px;
    height: 42px;
    margin: 0 0 18px;
    place-items: center;
    border-radius: 6px;
    background: var(--navy-dark);
    color: var(--white);
    font-weight: 800;
}

.service-card .card-link a {
    color: var(--orange-dark);
    font-weight: 800;
}

.process-step .card-tag {
    display: grid;
    width: 44px;
    height: 44px;
    margin: 0 0 18px;
    place-items: center;
    border-radius: 50%;
    background: var(--orange);
    color: var(--white);
    font-weight: 800;
}

.before-after-grid > .result-card {
    overflow: hidden;
    border-radius: 10px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.before-after-grid > .result-card figure {
    aspect-ratio: 4 / 3;
    margin: 0;
}

.before-after-grid > .result-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.before-after-grid > .result-card h3,
.before-after-grid > .result-card p {
    margin-right: 20px;
    margin-left: 20px;
}

.service-benefit-list > article,
.warranty-cards > article,
.stats-panel > article {
    padding: 20px;
    border-bottom: 1px solid var(--line);
}

.service-benefit-list h3,
.warranty-cards h3,
.stats-panel h3 {
    margin: 0 0 6px;
}

.service-benefit-list p,
.warranty-cards p,
.stats-panel p {
    margin: 0;
}

.service-proof-images > figure {
    margin: 0;
}

.quote-section > .wp-block-shortcode {
    width: 100%;
}

@media (max-width: 760px) {
    .hero-content > .wp-block-buttons,
    .service-page-copy > .wp-block-buttons,
    .hero-content .wp-block-button,
    .service-page-copy .wp-block-button,
    .hero-content .wp-block-button__link,
    .service-page-copy .wp-block-button__link {
        width: 100%;
    }
}

@media (max-width: 640px) {
    body {
        padding-bottom: 76px;
    }

    .site-header {
        padding-left: 14px;
        padding-right: 14px;
        right: 8px;
        left: 8px;
        margin-right: 0;
        margin-left: 0;
    }

    .brand {
        min-width: 0;
    }

    .brand-logo {
        width: 138px;
        max-height: 58px;
    }

    .brand-text span {
        font-size: 0.68rem;
    }

    .hero {
        min-height: 88vh;
    }

    .hero-media {
        background-position: 58% center;
    }

    .hero-overlay {
        background:
            linear-gradient(90deg, rgba(7, 26, 51, 0.94) 0%, rgba(16, 42, 76, 0.78) 70%, rgba(16, 42, 76, 0.58) 100%),
            linear-gradient(0deg, rgba(7, 26, 51, 0.82) 0%, rgba(7, 26, 51, 0) 48%);
    }

    .hero-content {
        width: calc(100% - 28px);
        margin-left: 14px;
        margin-bottom: 36px;
    }

    .button {
        width: 100%;
    }

    .lead-panel {
        width: calc(100% - 28px);
        margin-top: -24px;
    }

    .lead-panel div {
        min-height: auto;
        padding: 18px;
    }

    .service-card {
        min-height: auto;
    }

    .service-card p {
        min-height: auto;
    }

    .service-card-img {
        height: 190px;
    }

    .surface-level-card {
        min-height: auto;
    }

    .symptom-list {
        grid-template-columns: 1fr;
    }

    .story-collage {
        min-height: 360px;
    }

    .story-img {
        border-width: 5px;
    }

    .story-badge {
        right: 0;
        bottom: 0;
    }

    .service-page-hero {
        min-height: auto;
    }

    .service-page-media img {
        min-height: 300px;
        border-width: 5px;
    }

    .service-page-media::before {
        inset: 12px -10px -12px 10px;
    }

    .service-page-media figcaption {
        right: 12px;
        bottom: 12px;
        max-width: calc(100% - 24px);
        font-size: 0.68rem;
    }

    .service-benefit-list {
        grid-template-columns: 1fr;
    }

    .conversion-proof-rail,
    .cost-factor-grid {
        grid-template-columns: 1fr;
    }

    .conversion-proof-rail {
        padding-right: 14px;
        padding-left: 14px;
    }

    .cost-factor-grid article {
        min-height: auto;
    }

    .mobile-conversion-bar {
        position: fixed;
        z-index: 60;
        right: 0;
        bottom: 0;
        left: 0;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1px;
        padding: 7px;
        background: var(--navy-dark);
        box-shadow: 0 -12px 36px rgba(7, 26, 51, 0.28);
    }

    .mobile-conversion-bar a {
        display: grid;
        min-height: 58px;
        padding: 8px 10px;
        place-content: center;
        border: 1px solid rgba(255, 255, 255, 0.14);
        border-radius: 6px;
        background: rgba(255, 255, 255, 0.08);
        color: var(--white);
        line-height: 1.15;
        text-align: center;
    }

    .mobile-conversion-bar .mobile-quote-action {
        border-color: var(--orange);
        background: var(--orange);
    }

    .mobile-conversion-bar span,
    .mobile-conversion-bar strong {
        display: block;
    }

    .mobile-conversion-bar span {
        color: rgba(255, 255, 255, 0.72);
        font-size: 0.68rem;
        font-weight: 800;
        letter-spacing: 0.1em;
        text-transform: uppercase;
    }

    .mobile-conversion-bar strong {
        margin-top: 3px;
        font-size: 0.82rem;
    }

    .testimonial-band {
        grid-template-columns: 1fr;
    }

    .ba-pair img,
    .result-card-featured .ba-pair img {
        height: clamp(220px, 60vw, 420px);
    }

    .quote-mark {
        height: 54px;
    }
}

/* 2.7 interaction and spacing refinement */
.page-content {
    padding-top: clamp(180px, 18vw, 230px);
}

.service-page-hero {
    padding-top: clamp(165px, 17vw, 220px);
}

.service-card {
    overflow: hidden;
    transform: translateZ(0);
    transition: transform 260ms cubic-bezier(0.2, 0.75, 0.25, 1), border-color 260ms ease, box-shadow 260ms ease;
}

.service-card:hover,
.service-card:focus-within {
    transform: translateY(-10px);
    border-color: rgba(244, 123, 32, 0.42);
    box-shadow: 0 30px 72px rgba(7, 26, 51, 0.2), 0 0 0 1px rgba(244, 123, 32, 0.08);
}

.service-card-img {
    object-position: center;
    transform: scale(1.001);
    transition: transform 420ms cubic-bezier(0.2, 0.75, 0.25, 1), filter 260ms ease;
}

.service-card:hover .service-card-img,
.service-card:focus-within .service-card-img {
    transform: scale(1.065);
    filter: saturate(1.12) contrast(1.05) brightness(1.04);
}

.service-card .service-icon {
    transition: transform 260ms ease, background 260ms ease, border-color 260ms ease;
}

.service-card:hover .service-icon,
.service-card:focus-within .service-icon {
    transform: translateY(-3px);
    border-color: rgba(244, 123, 32, 0.72);
    background: var(--orange-dark);
}

.service-card:hover .text-link::after,
.service-card:focus-within .text-link::after {
    transform: translateX(6px) skewX(-18deg);
}

.process-step,
.surface-level-card,
.result-card,
.warranty-cards article,
.service-benefit-list div,
.playbook-grid article,
.review-stack blockquote,
details {
    transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.process-step:hover,
.surface-level-card:hover,
.result-card:hover,
.warranty-cards article:hover,
.service-benefit-list div:hover,
.playbook-grid article:hover,
.review-stack blockquote:hover,
details:hover {
    transform: translateY(-5px);
    border-color: rgba(244, 123, 32, 0.3);
    box-shadow: 0 24px 54px rgba(7, 26, 51, 0.13);
}

.button {
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(7, 26, 51, 0.2);
}

@media (max-width: 720px) {
    .page-content {
        padding-top: 150px;
    }

    .service-page-hero {
        padding-top: 145px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .service-card,
    .service-card-img,
    .service-card .service-icon,
    .process-step,
    .surface-level-card,
    .result-card,
    .warranty-cards article,
    .service-benefit-list div,
    .playbook-grid article,
    .review-stack blockquote,
    details,
    .button {
        transition: none;
    }

    .service-card:hover,
    .service-card:focus-within,
    .service-card:hover .service-card-img,
    .service-card:focus-within .service-card-img,
    .button:hover,
    .button:focus-visible {
        transform: none;
    }
}

/* 3.1 live quote pricing */
.tsq-live-estimate {
    position: sticky;
    z-index: 6;
    top: 0;
    display: grid;
    grid-template-columns: auto auto minmax(160px, 1fr);
    gap: 8px 18px;
    align-items: center;
    margin: -10px 0 30px;
    padding: 15px 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    background:
        radial-gradient(circle at 88% 0, rgba(244, 123, 32, 0.26), transparent 38%),
        linear-gradient(135deg, #071a33, #102a4c);
    color: var(--white);
    box-shadow: 0 16px 34px rgba(7, 26, 51, 0.18);
}

.tsq-live-estimate > span {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.tsq-live-estimate strong {
    display: flex;
    gap: 7px;
    align-items: baseline;
    white-space: nowrap;
    font-size: clamp(1.05rem, 2.4vw, 1.45rem);
}

.tsq-live-estimate strong b {
    color: var(--white);
}

.tsq-live-estimate strong b:last-child {
    color: #ffad69;
}

.tsq-live-estimate strong small {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.72rem;
}

.tsq-live-estimate em {
    justify-self: end;
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.72rem;
    font-style: normal;
    text-align: right;
}

.tsq-package output,
.tsq-material-package output {
    display: block;
    margin: 3px 0 5px;
    color: var(--orange-dark);
    font-size: clamp(1.15rem, 2vw, 1.45rem);
    font-weight: 800;
    line-height: 1.1;
}

.tsq-package input:checked + span output {
    color: var(--navy-dark);
}

.tsq-package output::before,
.tsq-material-package output::before {
    content: "Estimated ";
    color: var(--muted);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.tsq-material-package output {
    margin: 2px 0;
}

.ad-hero-form .tsq-live-estimate {
    top: -24px;
}

@media (max-width: 760px) {
    .tsq-live-estimate {
        position: static;
        grid-template-columns: 1fr;
        gap: 3px;
    }

    .tsq-live-estimate em {
        justify-self: start;
        text-align: left;
    }
}

/* 2.8 Google Ads landing page */
.true-seal-landing-page {
    background: #f4f7fb;
}

.landing-header {
    position: sticky;
    z-index: 80;
    top: 0;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 24px;
    align-items: center;
    min-height: 88px;
    padding: 12px clamp(18px, 5vw, 72px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(7, 26, 51, 0.97);
    color: var(--white);
    box-shadow: 0 12px 38px rgba(7, 26, 51, 0.18);
    backdrop-filter: blur(14px);
}

.admin-bar .landing-header {
    top: 32px;
}

.landing-brand img {
    width: 172px;
    max-height: 62px;
    object-fit: contain;
}

.landing-header-proof {
    display: flex;
    justify-content: center;
    gap: 24px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.77rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.landing-header-proof span::before {
    content: "";
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-right: 8px;
    border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 0 0 4px rgba(244, 123, 32, 0.14);
}

.landing-call {
    display: grid;
    padding: 10px 16px;
    border: 1px solid rgba(244, 123, 32, 0.62);
    border-radius: 8px;
    background: rgba(244, 123, 32, 0.1);
    line-height: 1.1;
    text-align: right;
    transition: transform 180ms ease, background 180ms ease;
}

.landing-call:hover {
    transform: translateY(-2px);
    background: rgba(244, 123, 32, 0.2);
}

.landing-call span {
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.landing-call strong {
    margin-top: 5px;
    color: var(--white);
    font-size: 1.05rem;
}

.landing-main {
    overflow: hidden;
}

.ad-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.72fr);
    gap: clamp(34px, 7vw, 96px);
    align-items: center;
    min-height: calc(100vh - 88px);
    padding: clamp(64px, 8vw, 110px) clamp(18px, 6vw, 88px);
    background:
        radial-gradient(circle at 18% 20%, rgba(244, 123, 32, 0.18), transparent 24%),
        linear-gradient(90deg, rgba(7, 26, 51, 0.98), rgba(16, 42, 76, 0.9)),
        var(--true-seal-hero-image) center / cover;
    color: var(--white);
}

.ad-hero-copy {
    max-width: 790px;
}

.ad-kicker {
    margin: 0 0 14px;
    color: var(--orange);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.ad-hero h1 {
    max-width: 840px;
    margin: 0;
    color: var(--white);
    font-size: clamp(2.8rem, 6.1vw, 6.2rem);
    line-height: 0.98;
    text-wrap: balance;
}

.ad-lead {
    max-width: 720px;
    margin: 26px 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(1.05rem, 1.7vw, 1.32rem);
}

.ad-checks {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 26px 0 0;
    padding: 0;
    list-style: none;
}

.ad-checks li {
    padding: 9px 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    font-size: 0.82rem;
    font-weight: 800;
}

.ad-checks li::before {
    content: "✓";
    margin-right: 7px;
    color: var(--orange);
}

.ad-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.ad-rating {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 6px 12px;
    align-items: center;
    max-width: 510px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.ad-rating strong {
    color: var(--white);
}

.ad-rating strong::before {
    content: "★★★★★";
    display: block;
    color: #ffb14a;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
}

.ad-rating span {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.84rem;
}

.ad-hero-form {
    scroll-margin-top: 110px;
}

.ad-hero-form .quote-form {
    color: var(--ink);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
}

.ad-hero-form .form-intro span,
.ad-hero-form .quote-form label,
.ad-hero-form .form-privacy-note {
    color: var(--muted);
}

.ad-proof-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    background: rgba(16, 42, 76, 0.14);
}

.ad-proof-strip div {
    display: grid;
    gap: 4px;
    padding: 22px clamp(18px, 3vw, 38px);
    background: var(--white);
}

.ad-proof-strip strong {
    color: var(--navy);
    font-size: 0.96rem;
}

.ad-proof-strip span {
    color: var(--muted);
    font-size: 0.8rem;
}

.ad-section {
    padding: clamp(72px, 10vw, 130px) clamp(18px, 6vw, 88px);
}

.ad-section-heading {
    max-width: 840px;
    margin-bottom: 42px;
}

.ad-section-heading h2,
.ad-transform h2,
.ad-trust h2,
.ad-final-cta h2 {
    margin: 0;
    color: var(--navy-dark);
    font-size: clamp(2.2rem, 4.8vw, 4.8rem);
    line-height: 1.02;
    text-wrap: balance;
}

.ad-section-heading > p:last-child,
.ad-transform-copy > p:not(.ad-kicker),
.ad-final-cta > div > p:not(.ad-kicker) {
    max-width: 720px;
    color: var(--muted);
}

.ad-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.ad-card-grid article {
    position: relative;
    overflow: hidden;
    min-height: 260px;
    padding: 30px;
    border: 1px solid rgba(16, 42, 76, 0.12);
    border-radius: 12px;
    background: var(--white);
    box-shadow: 0 18px 50px rgba(7, 26, 51, 0.08);
    transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.ad-card-grid article::after {
    content: "";
    position: absolute;
    right: -34px;
    bottom: -34px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(244, 123, 32, 0.2), rgba(244, 123, 32, 0));
}

.ad-card-grid article:hover {
    transform: translateY(-7px);
    border-color: rgba(244, 123, 32, 0.42);
    box-shadow: 0 28px 64px rgba(7, 26, 51, 0.14);
}

.ad-card-grid article > span {
    display: inline-flex;
    padding: 7px 9px;
    border-radius: 6px;
    background: var(--navy-dark);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.ad-card-grid h3 {
    margin: 24px 0 10px;
    color: var(--navy-dark);
    font-size: 1.55rem;
}

.ad-card-grid p {
    margin: 0;
    color: var(--muted);
}

.ad-transform {
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(440px, 1.28fr);
    gap: clamp(40px, 7vw, 100px);
    align-items: center;
    padding: clamp(72px, 10vw, 130px) clamp(18px, 6vw, 88px);
    background: linear-gradient(135deg, #06152a 0%, #102a4c 100%);
}

.ad-transform h2 {
    color: var(--white);
}

.ad-transform-copy > p:not(.ad-kicker) {
    color: rgba(255, 255, 255, 0.72);
}

.ad-before-after {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.ad-before-after figure {
    position: relative;
    overflow: hidden;
    margin: 0;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
}

.ad-before-after img {
    width: 100%;
    height: 430px;
    object-fit: cover;
    transition: transform 420ms ease;
}

.ad-before-after figure:hover img {
    transform: scale(1.04);
}

.ad-before-after figcaption {
    position: absolute;
    bottom: 14px;
    left: 14px;
    padding: 8px 11px;
    border-radius: 6px;
    background: rgba(7, 26, 51, 0.88);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.ad-process {
    background: #eef3f9;
}

.ad-process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.ad-process-grid li {
    padding: 25px;
    border-radius: 10px;
    background: var(--white);
    box-shadow: 0 15px 42px rgba(7, 26, 51, 0.08);
}

.ad-process-grid li > span {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 50%;
    background: var(--orange);
    color: var(--white);
    font-weight: 800;
}

.ad-process-grid h3 {
    margin: 20px 0 8px;
    color: var(--navy-dark);
}

.ad-process-grid p {
    margin: 0;
    color: var(--muted);
}

.ad-trust {
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(460px, 1.28fr);
    gap: clamp(40px, 7vw, 96px);
    padding: clamp(72px, 10vw, 130px) clamp(18px, 6vw, 88px);
    background: var(--white);
}

.ad-review-grid {
    display: grid;
    gap: 14px;
}

.ad-review-grid blockquote {
    margin: 0;
    padding: 24px;
    border-left: 4px solid var(--orange);
    border-radius: 0 10px 10px 0;
    background: #f4f7fb;
}

.ad-review-grid p {
    margin: 0;
    color: var(--navy-dark);
    font-weight: 700;
}

.ad-review-grid cite {
    display: block;
    margin-top: 10px;
    color: var(--muted);
    font-size: 0.78rem;
    font-style: normal;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ad-faq {
    background: #eef3f9;
}

.ad-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.ad-faq-grid details {
    align-self: start;
    padding: 22px;
    border: 1px solid rgba(16, 42, 76, 0.12);
    border-radius: 10px;
    background: var(--white);
}

.ad-faq-grid summary {
    cursor: pointer;
    color: var(--navy-dark);
    font-weight: 800;
}

.ad-faq-grid p {
    margin-bottom: 0;
    color: var(--muted);
}

.ad-final-cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 44px;
    align-items: center;
    padding: clamp(70px, 9vw, 115px) clamp(18px, 6vw, 88px);
    background:
        radial-gradient(circle at 82% 20%, rgba(244, 123, 32, 0.28), transparent 24%),
        linear-gradient(135deg, #071a33, #102a4c);
    color: var(--white);
}

.ad-final-cta h2 {
    max-width: 840px;
    color: var(--white);
}

.ad-final-cta > div > p:not(.ad-kicker) {
    color: rgba(255, 255, 255, 0.72);
}

.ad-final-actions {
    display: grid;
    gap: 10px;
    min-width: 230px;
}

.landing-footer {
    display: grid;
    grid-template-columns: auto minmax(260px, 1fr) auto;
    gap: 30px;
    align-items: center;
    padding: 34px clamp(18px, 6vw, 88px);
    background: #041225;
    color: rgba(255, 255, 255, 0.7);
}

.landing-footer img {
    width: 145px;
}

.landing-footer p {
    margin: 0;
    font-size: 0.84rem;
}

.landing-footer div {
    display: grid;
    gap: 4px;
    text-align: right;
}

.landing-footer a {
    color: var(--white);
    font-weight: 700;
}

.landing-footer small {
    grid-column: 1 / -1;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.landing-mobile-actions {
    display: none;
}

@media (max-width: 980px) {
    .landing-header-proof {
        display: none;
    }

    .landing-header {
        grid-template-columns: 1fr auto;
    }

    .ad-hero,
    .ad-transform,
    .ad-trust {
        grid-template-columns: 1fr;
    }

    .ad-hero {
        min-height: auto;
    }

    .ad-hero-form {
        max-width: 680px;
    }

    .ad-proof-strip,
    .ad-process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ad-transform-copy {
        max-width: 760px;
    }
}

@media (max-width: 680px) {
    .admin-bar .landing-header {
        top: 46px;
    }

    .landing-header {
        min-height: 76px;
        padding: 10px 14px;
    }

    .landing-brand img {
        width: 132px;
    }

    .landing-call {
        padding: 9px 11px;
    }

    .landing-call span {
        display: none;
    }

    .landing-call strong {
        margin: 0;
        font-size: 0.88rem;
    }

    .ad-hero {
        padding-top: 48px;
    }

    .ad-hero h1 {
        font-size: clamp(2.5rem, 13vw, 4.2rem);
    }

    .ad-hero-actions .button {
        width: 100%;
    }

    .ad-rating {
        grid-template-columns: 1fr;
    }

    .ad-proof-strip,
    .ad-card-grid,
    .ad-process-grid,
    .ad-faq-grid,
    .ad-before-after {
        grid-template-columns: 1fr;
    }

    .ad-before-after img {
        height: 310px;
    }

    .ad-final-cta {
        grid-template-columns: 1fr;
    }

    .ad-final-actions {
        width: 100%;
    }

    .landing-footer {
        grid-template-columns: 1fr;
        padding-bottom: 94px;
        text-align: center;
    }

    .landing-footer img {
        margin: 0 auto;
    }

    .landing-footer div {
        text-align: center;
    }

    .landing-mobile-actions {
        position: fixed;
        z-index: 100;
        right: 0;
        bottom: 0;
        left: 0;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1px;
        padding: 7px;
        background: var(--navy-dark);
        box-shadow: 0 -10px 34px rgba(7, 26, 51, 0.28);
    }

    .landing-mobile-actions a {
        display: grid;
        min-height: 52px;
        place-items: center;
        border-radius: 6px;
        background: rgba(255, 255, 255, 0.1);
        color: var(--white);
        font-size: 0.82rem;
        font-weight: 800;
    }

    .landing-mobile-actions a:last-child {
        background: var(--orange);
    }
}

/* 5.1 True Seal brand colors, button normalization, and proof sliders */
:root {
    --ink: #111827;
    --muted: #5b6574;
    --paper: #f4f7fb;
    --white: #ffffff;
    --line: rgba(16, 42, 76, 0.14);
    --navy: #102a4c;
    --navy-dark: #071a33;
    --orange: #f47b20;
    --orange-dark: #c95c11;
    --lime: #ffd7b8;
    --shadow: 0 28px 80px rgba(7, 26, 51, 0.17);
}

.top-proof-bar {
    background: var(--orange);
    color: var(--white);
}

.site-header {
    background: linear-gradient(180deg, rgba(7, 26, 51, 0.94), rgba(7, 26, 51, 0.08));
}

.site-header.is-scrolled {
    background: rgba(7, 26, 51, 0.97);
}

.hero-overlay {
    background:
        linear-gradient(90deg, rgba(7, 26, 51, 0.97) 0%, rgba(16, 42, 76, 0.84) 39%, rgba(16, 42, 76, 0.2) 74%),
        linear-gradient(0deg, rgba(7, 26, 51, 0.86) 0%, transparent 48%);
}

.hero-content .eyebrow {
    border-color: rgba(244, 123, 32, 0.5);
    background: rgba(244, 123, 32, 0.13);
    color: #ffb16f;
}

.trust-strip h3,
.process-step .card-tag {
    color: #ffad69;
}

.lead-panel > article::before,
.service-card .card-tag,
.process-step .card-tag {
    background: #fff0e5;
    color: var(--orange-dark);
}

.split-section,
.results-showcase,
.quote-section {
    background:
        radial-gradient(circle at 88% 8%, rgba(244, 123, 32, 0.14), transparent 28%),
        var(--navy-dark);
}

.footer-cta {
    background: var(--orange);
    color: var(--white);
}

.footer-cta .eyebrow {
    color: rgba(255, 255, 255, 0.76);
}

.site-footer {
    background: #051426;
}

/* WordPress applies button utility classes to wrappers and links. Keep paint on the link only. */
.wp-block-buttons {
    background: transparent !important;
    box-shadow: none !important;
}

.wp-block-button,
.wp-block-button.button-primary,
.wp-block-button.button-secondary {
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: transparent !important;
    box-shadow: none !important;
}

.wp-block-button.button-primary .wp-block-button__link,
.wp-block-button.button-secondary .wp-block-button__link {
    width: auto;
    min-height: 54px;
    padding: 0 25px;
    border-radius: 999px;
    line-height: 1.15;
    text-align: center;
    transform: translateZ(0);
    transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.wp-block-button.button-primary .wp-block-button__link {
    border: 1px solid var(--orange);
    background: var(--orange) !important;
    color: var(--white);
    box-shadow: 0 14px 30px rgba(244, 123, 32, 0.3);
}

.wp-block-button.button-secondary .wp-block-button__link {
    border: 1px solid rgba(255, 255, 255, 0.46);
    background: rgba(7, 26, 51, 0.34) !important;
    color: var(--white);
    box-shadow: none;
    backdrop-filter: blur(10px);
}

.wp-block-button .wp-block-button__link:hover,
.wp-block-button .wp-block-button__link:focus-visible {
    transform: translateY(-2px);
}

.wp-block-button.button-primary .wp-block-button__link:hover,
.wp-block-button.button-primary .wp-block-button__link:focus-visible {
    background: var(--orange-dark) !important;
    border-color: var(--orange-dark);
    box-shadow: 0 18px 34px rgba(244, 123, 32, 0.34);
}

.wp-block-button .wp-block-button__link:focus-visible {
    outline: 3px solid var(--white);
    outline-offset: 3px;
}

.decision-cta .wp-block-button.button-primary .wp-block-button__link {
    border-color: var(--navy-dark);
    background: var(--navy-dark) !important;
    box-shadow: none;
}

.before-after-slider-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    max-width: 1220px;
    margin: 0 auto;
}

.ba-result-card {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.22);
}

.before-after-slider {
    --comparison-position: 50%;
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: #061324;
    isolation: isolate;
    touch-action: pan-y;
}

.before-after-slider figure.ba-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
}

.before-after-slider figure.ba-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.before-after-slider .ba-before {
    z-index: 2;
    clip-path: inset(0 calc(100% - var(--comparison-position)) 0 0);
}

.ba-ui,
.ba-range {
    position: absolute;
    z-index: 6;
    inset: 0;
}

.ba-range {
    width: 100%;
    height: 100%;
    margin: 0;
    cursor: ew-resize;
    opacity: 0.001;
}

.ba-label {
    position: absolute;
    z-index: 7;
    top: 16px;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(7, 26, 51, 0.85);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}

.ba-label-before {
    left: 16px;
}

.ba-label-after {
    right: 16px;
    background: var(--orange);
}

.ba-divider {
    position: absolute;
    z-index: 5;
    top: 0;
    bottom: 0;
    left: var(--comparison-position);
    width: 3px;
    background: var(--white);
    box-shadow: 0 0 18px rgba(0, 0, 0, 0.28);
    transform: translateX(-50%);
    pointer-events: none;
}

.ba-handle {
    position: absolute;
    z-index: 7;
    top: 50%;
    left: var(--comparison-position);
    display: flex;
    width: 54px;
    height: 54px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 3px solid var(--white);
    border-radius: 50%;
    background: var(--orange);
    color: var(--white);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.ba-handle b {
    font-size: 1.2rem;
    line-height: 1;
}

.ba-copy {
    padding: 23px 24px 26px;
}

.ba-copy h3 {
    margin: 0;
    color: var(--white);
    font-size: 1.35rem;
}

.ba-copy p,
.results-heading p:not(.eyebrow) {
    margin: 8px 0 0;
    color: rgba(255, 255, 255, 0.7);
}

.project-gallery {
    padding: clamp(64px, 9vw, 110px) clamp(18px, 6vw, 86px);
    background: var(--white);
}

.project-gallery-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr 0.85fr;
    gap: 14px;
    max-width: 1220px;
    margin: 34px auto 0;
}

.project-gallery-grid figure.gallery-image {
    overflow: hidden;
    min-height: 360px;
    margin: 0;
    border-radius: 16px;
    background: var(--paper);
}

.project-gallery-grid figure.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 420ms ease;
}

.project-gallery-grid figure.gallery-image:hover img {
    transform: scale(1.035);
}

@media (max-width: 760px) {
    .hero-overlay {
        background: linear-gradient(0deg, rgba(7, 26, 51, 0.99) 0%, rgba(16, 42, 76, 0.9) 57%, rgba(16, 42, 76, 0.28) 100%);
    }

    .hero-content > .wp-block-buttons,
    .hero-content .wp-block-button,
    .hero-content .wp-block-button__link,
    .service-page-copy > .wp-block-buttons,
    .service-page-copy .wp-block-button,
    .service-page-copy .wp-block-button__link {
        width: 100%;
    }

    .before-after-slider-grid,
    .project-gallery-grid {
        grid-template-columns: 1fr;
    }

    .project-gallery-grid figure.gallery-image {
        min-height: 280px;
    }
}

/* 5.0 conversion-focused visual system */
:root {
    --ink: #132019;
    --muted: #5f6d65;
    --paper: #f3f1e9;
    --white: #fffef9;
    --line: rgba(19, 32, 25, 0.13);
    --navy: #173d2b;
    --navy-dark: #0d281c;
    --orange: #e86f2d;
    --orange-dark: #b94716;
    --lime: #ddeb9c;
    --shadow: 0 28px 80px rgba(13, 40, 28, 0.16);
}

body {
    background: var(--paper);
    font-family: "DM Sans", system-ui, sans-serif;
}

h1,
h2,
h3,
.button,
.wp-block-button__link,
.header-cta {
    font-family: Manrope, "DM Sans", system-ui, sans-serif;
}

.top-proof-bar {
    position: fixed;
    z-index: 45;
    top: 0;
    right: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 7px clamp(18px, 4vw, 56px);
    background: var(--lime);
    color: var(--navy-dark);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

body.admin-bar .top-proof-bar {
    top: 32px;
}

.site-header {
    top: 30px;
    padding-top: 15px;
    padding-bottom: 15px;
    background: linear-gradient(180deg, rgba(8, 31, 20, 0.9), rgba(8, 31, 20, 0.1));
}

body.admin-bar .site-header {
    top: 62px;
}

.site-header.is-scrolled {
    background: rgba(13, 40, 28, 0.96);
    box-shadow: 0 12px 40px rgba(4, 18, 11, 0.18);
    backdrop-filter: blur(16px);
}

.brand-status {
    max-width: 110px;
    color: rgba(255, 255, 255, 0.64);
    font-size: 0.66rem;
    font-weight: 700;
    line-height: 1.25;
    text-transform: uppercase;
}

.primary-nav a {
    position: relative;
}

.primary-nav a::after {
    position: absolute;
    right: 0;
    bottom: -7px;
    left: 0;
    height: 2px;
    background: var(--lime);
    content: "";
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 180ms ease;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
    transform: scaleX(1);
}

.header-cta {
    display: grid;
    min-height: 50px;
    padding: 7px 17px;
    border: 0;
    border-radius: 999px;
    background: var(--orange);
    box-shadow: 0 12px 28px rgba(232, 111, 45, 0.24);
    line-height: 1.05;
    text-align: center;
}

.header-cta span {
    font-size: 0.66rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.header-cta strong {
    margin-top: 4px;
    font-size: 0.9rem;
}

.hero {
    min-height: min(900px, 96vh);
    align-items: center;
}

.hero-media {
    background-position: 61% center;
}

.hero-overlay {
    background:
        linear-gradient(90deg, rgba(8, 31, 20, 0.96) 0%, rgba(13, 40, 28, 0.84) 39%, rgba(13, 40, 28, 0.22) 74%),
        linear-gradient(0deg, rgba(8, 31, 20, 0.84) 0%, transparent 48%);
}

.hero-content {
    width: min(820px, calc(100% - 36px));
    margin: 108px 0 0 clamp(18px, 7vw, 100px);
}

.hero-content .eyebrow {
    display: inline-flex;
    padding: 7px 11px;
    border: 1px solid rgba(221, 235, 156, 0.42);
    border-radius: 999px;
    background: rgba(221, 235, 156, 0.1);
    color: var(--lime);
    letter-spacing: 0.1em;
}

.hero h1 {
    max-width: 800px;
    font-size: clamp(2.8rem, 6vw, 6.1rem);
    line-height: 0.96;
    letter-spacing: -0.055em;
    text-wrap: balance;
}

.hero-copy {
    max-width: 665px;
    margin-top: 24px;
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(1.02rem, 1.5vw, 1.2rem);
}

.hero-content > .wp-block-buttons {
    margin-top: 28px;
}

.wp-block-button.button-primary .wp-block-button__link,
.wp-block-button.button-secondary .wp-block-button__link,
.button {
    min-height: 54px;
    border-radius: 999px;
    padding: 0 24px;
}

.wp-block-button.button-primary .wp-block-button__link {
    background: var(--orange);
    box-shadow: 0 16px 34px rgba(232, 111, 45, 0.3);
}

.wp-block-button.button-secondary .wp-block-button__link {
    border-color: rgba(255, 255, 255, 0.36);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.hero-reassurance {
    margin: 16px 0 0;
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.82rem;
    font-weight: 700;
}

.trust-strip {
    margin-top: 20px;
}

.trust-strip > article {
    min-width: 132px;
    padding: 10px 12px;
    border: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 0;
    background: transparent;
}

.trust-strip h3 {
    color: var(--lime);
    font-family: Manrope, sans-serif;
    font-size: 0.92rem;
}

.trust-strip p {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.72rem;
}

.lead-panel {
    width: min(1180px, calc(100% - 36px));
    margin-top: -54px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 18px;
    background: var(--white);
    box-shadow: 0 28px 80px rgba(13, 40, 28, 0.18);
}

.lead-panel > article {
    position: relative;
    min-height: 142px;
    padding: 27px 28px 24px 76px;
    background: transparent;
}

.lead-panel > article::before {
    position: absolute;
    top: 29px;
    left: 26px;
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 50%;
    background: var(--lime);
    color: var(--navy-dark);
    content: "✓";
    font-weight: 900;
}

.lead-panel h3 {
    color: var(--navy-dark);
    font-family: Manrope, sans-serif;
    font-size: 1.02rem;
}

.surface-story {
    padding-top: clamp(92px, 11vw, 150px);
    background: var(--paper);
}

.story-copy h2,
.section-heading h2,
.split-copy h2,
.quote-copy h2,
.results-heading h2,
.warranty-copy h2,
.decision-cta h2 {
    letter-spacing: -0.04em;
    text-wrap: balance;
}

.symptom-list > article {
    border: 0;
    border-left: 3px solid var(--orange);
    background: var(--white);
    box-shadow: 0 12px 30px rgba(13, 40, 28, 0.06);
}

.story-img {
    border-radius: 20px;
}

.intro-band {
    background: var(--white);
}

.service-grid {
    gap: 18px;
}

.service-card {
    border: 0;
    border-radius: 18px;
    box-shadow: 0 18px 50px rgba(13, 40, 28, 0.09);
}

.service-card figure.service-card-img {
    height: 190px;
}

.service-card .card-tag {
    width: auto;
    height: auto;
    padding: 5px 9px;
    border-radius: 999px;
    background: var(--lime);
    color: var(--navy-dark);
    font-size: 0.7rem;
}

.service-card .card-link a::after {
    content: "  →";
}

.decision-cta {
    background: var(--orange);
}

.decision-copy .eyebrow {
    color: rgba(255, 255, 255, 0.78);
}

.decision-cta .wp-block-buttons {
    margin: 0;
}

.decision-cta .wp-block-button__link {
    background: var(--navy-dark) !important;
    white-space: nowrap;
}

.split-section,
.results-showcase,
.quote-section {
    background:
        radial-gradient(circle at 88% 8%, rgba(221, 235, 156, 0.11), transparent 28%),
        var(--navy-dark);
}

.process-timeline,
details,
.quote-form {
    border-radius: 16px;
}

.process-step .card-tag {
    background: var(--lime);
    color: var(--navy-dark);
}

.before-after-grid > .result-card {
    border-radius: 18px;
}

.warranty-section {
    background: var(--navy);
}

.warranty-cards > article {
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
}

.quote-form {
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.24);
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
    border-color: var(--orange);
    outline: 3px solid rgba(232, 111, 45, 0.14);
}

.footer-cta {
    background: var(--lime);
    color: var(--navy-dark);
}

.footer-cta .eyebrow {
    color: var(--orange-dark);
}

.site-footer {
    background: #081b12;
}

.reveal-ready {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 520ms ease, transform 520ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.reveal-ready.is-revealed {
    opacity: 1;
    transform: none;
}

@media (max-width: 1100px) {
    .brand-status,
    .top-proof-bar span:last-child {
        display: none;
    }

    .service-grid-four {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .top-proof-bar {
        justify-content: center;
        text-align: center;
    }

    .site-header,
    body.admin-bar .site-header {
        top: 29px;
    }

    .hero {
        min-height: 820px;
        align-items: end;
    }

    .hero-media {
        background-position: 68% center;
    }

    .hero-overlay {
        background:
            linear-gradient(0deg, rgba(8, 31, 20, 0.98) 0%, rgba(13, 40, 28, 0.88) 57%, rgba(13, 40, 28, 0.26) 100%);
    }

    .hero-content {
        margin: 0 18px 72px;
    }

    .hero h1 {
        font-size: clamp(2.5rem, 12vw, 4.2rem);
    }

    .hero-copy {
        font-size: 1rem;
    }

    .hero-content > .wp-block-buttons {
        margin: 12px 0 0;
    }

    .trust-strip {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0;
    }

    .trust-strip > article {
        min-width: 0;
        padding: 8px;
        text-align: center;
    }

    .lead-panel {
        grid-template-columns: 1fr;
        margin-top: -38px;
    }

    .lead-panel > article {
        min-height: auto;
        padding: 20px 20px 20px 66px;
        border-bottom: 1px solid var(--line);
    }

    .lead-panel > article::before {
        top: 22px;
        left: 20px;
    }

    .service-grid-four,
    .decision-cta {
        grid-template-columns: 1fr;
    }

    .decision-cta .wp-block-buttons,
    .decision-cta .wp-block-button,
    .decision-cta .wp-block-button__link {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .reveal-ready {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* Version 3.2: accessible desktop and mobile dropdown navigation. */
.primary-nav .menu,
.primary-nav .sub-menu,
.primary-nav .children {
    list-style: none;
}

.primary-nav .menu > li,
.primary-nav .menu-item-has-children,
.primary-nav .page_item_has_children {
    position: relative;
}

.primary-nav .menu-item-has-children > a,
.primary-nav .page_item_has_children > a {
    padding-right: 28px;
}

.submenu-toggle {
    position: absolute;
    z-index: 3;
    top: 50%;
    right: 5px;
    width: 28px;
    height: 28px;
    padding: 0;
    border: 0;
    border-radius: 5px;
    background: transparent;
    color: currentColor;
    cursor: pointer;
    transform: translateY(-50%);
}

.submenu-toggle span {
    display: block;
    width: 8px;
    height: 8px;
    margin: 7px auto 10px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 180ms ease;
}

.submenu-toggle:hover,
.submenu-toggle:focus-visible {
    background: rgba(255, 255, 255, 0.12);
    outline: 2px solid var(--orange);
    outline-offset: 1px;
}

.submenu-open > .submenu-toggle span {
    transform: rotate(225deg) translate(-2px, -2px);
}

.primary-nav .sub-menu,
.primary-nav .children {
    position: absolute;
    z-index: 20;
    top: calc(100% + 12px);
    left: 0;
    min-width: 235px;
    margin: 0;
    padding: 9px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 9px;
    background: rgba(7, 26, 51, 0.99);
    box-shadow: 0 22px 52px rgba(0, 0, 0, 0.28);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
}

.primary-nav .sub-menu::before,
.primary-nav .children::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 100%;
    left: 0;
    height: 14px;
}

.primary-nav .sub-menu .sub-menu,
.primary-nav .children .children {
    top: -9px;
    left: calc(100% + 8px);
}

.primary-nav li:hover > .sub-menu,
.primary-nav li:hover > .children,
.primary-nav li:focus-within > .sub-menu,
.primary-nav li:focus-within > .children,
.primary-nav li.submenu-open > .sub-menu,
.primary-nav li.submenu-open > .children {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.primary-nav .sub-menu a,
.primary-nav .children a {
    display: block;
    padding: 11px 34px 11px 12px;
    border-radius: 6px;
    white-space: nowrap;
}

.primary-nav .sub-menu a:hover,
.primary-nav .sub-menu a:focus-visible,
.primary-nav .children a:hover,
.primary-nav .children a:focus-visible {
    background: rgba(244, 123, 32, 0.15);
    color: var(--white);
}

@media (max-width: 980px) {
    .primary-nav .menu-item-has-children > a,
    .primary-nav .page_item_has_children > a {
        padding-right: 52px;
    }

    .submenu-toggle {
        top: 6px;
        right: 6px;
        width: 40px;
        height: 40px;
        transform: none;
    }

    .submenu-toggle span {
        margin-top: 11px;
    }

    .primary-nav .sub-menu,
    .primary-nav .children,
    .primary-nav .sub-menu .sub-menu,
    .primary-nav .children .children {
        position: static;
        display: none;
        min-width: 0;
        margin: 2px 0 7px 12px;
        padding: 4px 0 4px 9px;
        border: 0;
        border-left: 2px solid var(--orange);
        border-radius: 0;
        background: rgba(255, 255, 255, 0.06);
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        transition: none;
    }

    .primary-nav li.submenu-open > .sub-menu,
    .primary-nav li.submenu-open > .children {
        display: block;
    }

    .primary-nav .sub-menu a,
    .primary-nav .children a {
        padding: 10px 42px 10px 12px;
        white-space: normal;
    }
}

/* 3.0 instant quote generator */
.tsq-shell {
    width: min(980px, 100%);
    scroll-margin-top: 110px;
    overflow: hidden;
    border: 1px solid rgba(16, 42, 76, 0.14);
    border-radius: 16px;
    background: var(--white);
    color: var(--ink);
    box-shadow: 0 30px 90px rgba(7, 26, 51, 0.2);
}

.tsq-heading {
    padding: clamp(24px, 4vw, 42px);
    border-bottom: 1px solid rgba(16, 42, 76, 0.1);
    background:
        radial-gradient(circle at 90% 0, rgba(244, 123, 32, 0.16), transparent 34%),
        linear-gradient(135deg, #f8fbff, #ffffff);
}

.tsq-heading h2 {
    margin: 0;
    color: var(--navy-dark);
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.02;
}

.tsq-heading > p:last-child {
    max-width: 710px;
    margin-bottom: 0;
    color: var(--muted);
}

.tsq-notice {
    display: grid;
    gap: 4px;
    margin: 22px clamp(20px, 4vw, 42px) 0;
    padding: 16px;
    border-radius: 8px;
}

.tsq-success {
    border: 1px solid rgba(26, 127, 74, 0.26);
    background: rgba(26, 127, 74, 0.08);
    color: #155d38;
}

.tsq-form {
    padding: clamp(22px, 4vw, 42px);
}

.tsq-progress {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 34px;
}

.tsq-progress span {
    position: relative;
    display: grid;
    min-height: 34px;
    place-items: center;
    border: 1px solid rgba(16, 42, 76, 0.14);
    border-radius: 999px;
    background: #f2f5f9;
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 800;
    transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.tsq-progress span.is-active {
    border-color: var(--orange);
    background: var(--orange);
    color: var(--white);
}

.tsq-progress span.is-complete {
    border-color: rgba(16, 42, 76, 0.36);
    background: var(--navy);
    color: var(--white);
}

.tsq-js .tsq-step:not(.is-active) {
    display: none;
}

.tsq-step {
    animation: tsq-enter 240ms ease both;
}

@keyframes tsq-enter {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.tsq-step-label {
    margin: 0 0 8px;
    color: var(--orange-dark);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.tsq-step h3 {
    margin: 0 0 26px;
    color: var(--navy-dark);
    font-size: clamp(1.65rem, 3vw, 2.5rem);
    line-height: 1.08;
}

.tsq-field-title {
    margin: 24px 0 10px;
    color: var(--navy-dark);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.tsq-choice-grid,
.tsq-package-grid {
    display: grid;
    gap: 14px;
}

.tsq-choice-grid-two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tsq-choice-grid-three,
.tsq-package-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tsq-choice,
.tsq-package,
.tsq-pill-grid label {
    cursor: pointer;
}

.tsq-choice input,
.tsq-package input,
.tsq-pill-grid input {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
}

.tsq-choice > span,
.tsq-package > span {
    position: relative;
    display: grid;
    min-height: 132px;
    align-content: start;
    gap: 7px;
    padding: 22px;
    border: 1px solid rgba(16, 42, 76, 0.14);
    border-radius: 10px;
    background: #f8fbff;
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.tsq-choice > span::after,
.tsq-package > span::after {
    content: "";
    position: absolute;
    top: 16px;
    right: 16px;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(16, 42, 76, 0.25);
    border-radius: 50%;
    background: var(--white);
    box-shadow: inset 0 0 0 4px var(--white);
}

.tsq-choice input:checked + span,
.tsq-package input:checked + span {
    transform: translateY(-3px);
    border-color: var(--orange);
    background: rgba(244, 123, 32, 0.06);
    box-shadow: 0 18px 38px rgba(7, 26, 51, 0.1);
}

.tsq-choice input:checked + span::after,
.tsq-package input:checked + span::after {
    border-color: var(--orange);
    background: var(--orange);
}

.tsq-choice strong,
.tsq-package strong,
.tsq-material-package strong {
    padding-right: 26px;
    color: var(--navy-dark);
    font-size: 1.05rem;
}

.tsq-choice small,
.tsq-package small,
.tsq-package em,
.tsq-material-package span,
.tsq-check small {
    color: var(--muted);
    font-size: 0.8rem;
    font-style: normal;
    line-height: 1.45;
}

.tsq-package > span {
    min-height: 210px;
}

.tsq-package b {
    display: inline-flex;
    justify-self: start;
    margin: -22px 0 6px -22px;
    padding: 7px 10px;
    border-radius: 9px 0 7px 0;
    background: var(--orange);
    color: var(--white);
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.tsq-material-package {
    display: grid;
    gap: 6px;
    padding: 24px;
    border: 1px solid var(--orange);
    border-radius: 10px;
    background: rgba(244, 123, 32, 0.06);
}

.tsq-material-package[hidden],
.tsq-package-grid[hidden] {
    display: none;
}

.tsq-pill-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.tsq-pill-grid span {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    padding: 9px 14px;
    border: 1px solid rgba(16, 42, 76, 0.14);
    border-radius: 999px;
    background: #f8fbff;
    color: var(--navy);
    font-size: 0.84rem;
    font-weight: 800;
    transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.tsq-pill-grid input:checked + span {
    border-color: var(--navy);
    background: var(--navy);
    color: var(--white);
}

.tsq-size-control {
    max-width: 640px;
    padding: clamp(22px, 4vw, 36px);
    border: 1px solid rgba(16, 42, 76, 0.14);
    border-radius: 12px;
    background: #f8fbff;
}

.tsq-size-control > label {
    display: block;
    color: var(--navy-dark);
    font-weight: 800;
}

.tsq-size-control > div {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 14px 0;
}

.tsq-size-control input[type="number"] {
    width: 190px;
    min-height: 60px;
    padding: 10px 14px;
    border: 1px solid rgba(16, 42, 76, 0.22);
    border-radius: 8px;
    color: var(--navy-dark);
    font-size: 1.8rem;
    font-weight: 800;
}

.tsq-size-control > div span {
    color: var(--muted);
    font-weight: 700;
}

.tsq-range {
    width: 100%;
    accent-color: var(--orange);
}

.tsq-size-control p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 0.82rem;
}

.tsq-check {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    max-width: 620px;
    margin-top: 22px;
    padding: 17px;
    border: 1px solid rgba(16, 42, 76, 0.14);
    border-radius: 9px;
    background: #f8fbff;
}

.tsq-check input {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: var(--orange);
}

.tsq-check span {
    display: grid;
    gap: 3px;
}

.tsq-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 30px;
    padding-top: 22px;
    border-top: 1px solid rgba(16, 42, 76, 0.1);
}

.tsq-actions button {
    min-height: 48px;
    padding: 11px 19px;
    border: 1px solid transparent;
    border-radius: 7px;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
    transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.tsq-actions button:hover {
    transform: translateY(-2px);
}

.tsq-next,
.tsq-calculate,
.tsq-submit {
    background: var(--orange);
    color: var(--white);
    box-shadow: 0 12px 26px rgba(244, 123, 32, 0.22);
}

.tsq-back {
    border-color: rgba(16, 42, 76, 0.18) !important;
    background: #f1f4f8;
    color: var(--navy);
}

.tsq-result {
    text-align: center;
}

.tsq-price {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 16px;
    align-items: baseline;
    margin: 18px 0;
    color: var(--navy-dark);
}

.tsq-price span {
    font-size: clamp(2.7rem, 7vw, 5rem);
    font-weight: 800;
    line-height: 1;
}

.tsq-price span:last-child {
    color: var(--orange-dark);
}

.tsq-price small {
    color: var(--muted);
    font-weight: 700;
}

.tsq-disclaimer {
    max-width: 720px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 0.82rem;
}

.tsq-summary {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    margin: 26px 0;
}

.tsq-summary span {
    display: grid;
    gap: 3px;
    padding: 12px;
    border-radius: 7px;
    background: #f2f5f9;
    color: var(--muted);
    font-size: 0.72rem;
}

.tsq-summary strong {
    color: var(--navy-dark);
    font-size: 0.84rem;
}

.tsq-contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 28px;
    text-align: left;
}

.tsq-result > label {
    display: grid;
    gap: 7px;
    margin-top: 14px;
    color: var(--navy-dark);
    font-size: 0.84rem;
    font-weight: 800;
    text-align: left;
}

.tsq-contact-grid label {
    display: grid;
    gap: 7px;
    color: var(--navy-dark);
    font-size: 0.84rem;
    font-weight: 800;
}

.tsq-contact-grid input,
.tsq-result textarea {
    width: 100%;
    min-height: 48px;
    padding: 11px 13px;
    border: 1px solid rgba(16, 42, 76, 0.2);
    border-radius: 7px;
    color: var(--ink);
    font: inherit;
}

.tsq-result textarea {
    min-height: 108px;
    resize: vertical;
}

.tsq-contact-grid input:focus,
.tsq-result textarea:focus,
.tsq-size-control input:focus {
    border-color: var(--orange);
    outline: 3px solid rgba(244, 123, 32, 0.12);
}

.ad-hero-form .tsq-shell {
    width: 100%;
    max-height: calc(100vh - 130px);
    overflow-y: auto;
}

.ad-hero-form .tsq-heading {
    padding: 24px;
}

.ad-hero-form .tsq-heading h2 {
    font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.ad-hero-form .tsq-form {
    padding: 24px;
}

.ad-hero-form .tsq-choice-grid-three,
.ad-hero-form .tsq-package-grid {
    grid-template-columns: 1fr;
}

.ad-hero-form .tsq-package > span {
    min-height: 128px;
}

@media (max-width: 760px) {
    .tsq-choice-grid-two,
    .tsq-choice-grid-three,
    .tsq-package-grid,
    .tsq-contact-grid,
    .tsq-summary {
        grid-template-columns: 1fr;
    }

    .tsq-choice > span,
    .tsq-package > span {
        min-height: auto;
    }

    .tsq-progress {
        gap: 4px;
    }

    .tsq-progress span {
        min-height: 29px;
        font-size: 0.62rem;
    }

    .tsq-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .tsq-actions button:only-child {
        grid-column: 2;
    }

    .tsq-price {
        display: grid;
        gap: 4px;
    }

    .ad-hero-form .tsq-shell {
        max-height: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .tsq-step {
        animation: none;
    }
}

/* 2.9 Gutenberg landing-page block compatibility */
.ad-hero > .wp-block-group,
.ad-transform > .wp-block-group,
.ad-trust > .wp-block-group,
.ad-final-cta > .wp-block-group {
    margin: 0;
}

.ad-rating p,
.ad-proof-strip h3,
.ad-proof-strip p,
.ad-card-grid > .wp-block-column > p,
.ad-process-grid > .wp-block-column > p {
    margin-top: 0;
    margin-bottom: 0;
}

.ad-rating p:first-child strong {
    color: var(--white);
}

.ad-rating p:first-child strong::before {
    content: "★★★★★";
    display: block;
    color: #ffb14a;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
}

.ad-rating p:last-child {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.84rem;
}

.ad-proof-strip > .wp-block-group {
    display: grid;
    gap: 4px;
    padding: 22px clamp(18px, 3vw, 38px);
    background: var(--white);
}

.ad-proof-strip h3 {
    color: var(--navy);
    font-size: 0.96rem;
}

.ad-proof-strip p {
    color: var(--muted);
    font-size: 0.8rem;
}

.ad-card-grid > .wp-block-column {
    position: relative;
    overflow: hidden;
    min-height: 260px;
    padding: 30px;
    border: 1px solid rgba(16, 42, 76, 0.12);
    border-radius: 12px;
    background: var(--white);
    box-shadow: 0 18px 50px rgba(7, 26, 51, 0.08);
    transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.ad-card-grid > .wp-block-column::after {
    content: "";
    position: absolute;
    right: -34px;
    bottom: -34px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(244, 123, 32, 0.2), rgba(244, 123, 32, 0));
}

.ad-card-grid > .wp-block-column:hover {
    transform: translateY(-7px);
    border-color: rgba(244, 123, 32, 0.42);
    box-shadow: 0 28px 64px rgba(7, 26, 51, 0.14);
}

.ad-card-grid > .wp-block-column > p:first-child {
    display: inline-flex;
    padding: 7px 9px;
    border-radius: 6px;
    background: var(--navy-dark);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.ad-process-grid > .wp-block-column {
    padding: 25px;
    border-radius: 10px;
    background: var(--white);
    box-shadow: 0 15px 42px rgba(7, 26, 51, 0.08);
}

.ad-process-grid > .wp-block-column h3 {
    margin: 0 0 10px;
    color: var(--navy-dark);
}

.ad-process-grid > .wp-block-column h3::first-letter {
    color: var(--orange);
}

.ad-process-grid > .wp-block-column p {
    color: var(--muted);
}

.true-seal-landing-page .wp-block-button__link {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    padding: 13px 22px;
    border: 1px solid var(--orange);
    border-radius: 7px;
    background: var(--orange);
    color: var(--white);
    font-weight: 800;
    transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.true-seal-landing-page .wp-block-button__link:hover,
.true-seal-landing-page .wp-block-button__link:focus-visible {
    transform: translateY(-2px);
    background: var(--orange-dark);
    box-shadow: 0 14px 28px rgba(7, 26, 51, 0.22);
}

.ad-final-actions .wp-block-button,
.ad-final-actions .wp-block-button__link {
    width: 100%;
}

.ad-transform-copy a {
    color: var(--orange);
    font-weight: 800;
}

@media (max-width: 680px) {
    .ad-card-grid,
    .ad-process-grid {
        display: grid;
        grid-template-columns: 1fr;
    }

    .ad-hero-actions,
    .ad-hero-actions .wp-block-button,
    .ad-hero-actions .wp-block-button__link {
        width: 100%;
    }
}

/* 5.1 final cascade lock */
:root {
    --ink: #111827;
    --muted: #5b6574;
    --paper: #f4f7fb;
    --white: #ffffff;
    --line: rgba(16, 42, 76, 0.14);
    --navy: #102a4c;
    --navy-dark: #071a33;
    --orange: #f47b20;
    --orange-dark: #c95c11;
    --lime: #ffd7b8;
}

.top-proof-bar { background: var(--orange); color: var(--white); }
.site-header { background: linear-gradient(180deg, rgba(7, 26, 51, 0.94), rgba(7, 26, 51, 0.08)); }
.site-header.is-scrolled { background: rgba(7, 26, 51, 0.97); }
.hero-overlay { background: linear-gradient(90deg, rgba(7, 26, 51, 0.97) 0%, rgba(16, 42, 76, 0.84) 39%, rgba(16, 42, 76, 0.2) 74%), linear-gradient(0deg, rgba(7, 26, 51, 0.86), transparent 48%); }
.hero-content .eyebrow { border-color: rgba(244, 123, 32, 0.5); background: rgba(244, 123, 32, 0.13); color: #ffb16f; }
.split-section, .results-showcase, .quote-section { background: radial-gradient(circle at 88% 8%, rgba(244, 123, 32, 0.14), transparent 28%), var(--navy-dark); }
.footer-cta { background: var(--orange); color: var(--white); }
.site-footer { background: #051426; }

.wp-block-buttons,
.wp-block-button,
.wp-block-button.button-primary,
.wp-block-button.button-secondary {
    background: transparent !important;
    box-shadow: none !important;
}

.wp-block-button.button-primary .wp-block-button__link { background: var(--orange) !important; border-radius: 999px; }
.wp-block-button.button-secondary .wp-block-button__link { background: rgba(7, 26, 51, 0.34) !important; border-radius: 999px; }
.decision-cta .wp-block-button.button-primary .wp-block-button__link { background: var(--navy-dark) !important; }

@media (max-width: 760px) {
    .hero-overlay { background: linear-gradient(0deg, rgba(7, 26, 51, 0.99) 0%, rgba(16, 42, 76, 0.9) 57%, rgba(16, 42, 76, 0.28) 100%); }
}

/* 5.2 real project gallery */
.project-gallery-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
}

.project-gallery-grid figure.gallery-image:nth-child(1) { grid-column: span 7; }
.project-gallery-grid figure.gallery-image:nth-child(2) { grid-column: span 5; }
.project-gallery-grid figure.gallery-image:nth-child(3),
.project-gallery-grid figure.gallery-image:nth-child(4),
.project-gallery-grid figure.gallery-image:nth-child(5) { grid-column: span 4; }
.project-gallery-grid figure.gallery-image:nth-child(5) img { object-position: left center; }

@media (max-width: 760px) {
    .project-gallery-grid figure.gallery-image:nth-child(n) {
        grid-column: 1 / -1;
    }
}

/* 5.3 compact landing-page estimate form */
.ad-hero-form .quote-form-compact {
    padding: clamp(22px, 3vw, 32px);
}

.ad-hero-form .quote-form-compact form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.ad-hero-form .quote-form-compact .form-field-full,
.ad-hero-form .quote-form-compact button,
.ad-hero-form .quote-form-compact .form-privacy-note,
.ad-hero-form .quote-form-compact .form-notice {
    grid-column: 1 / -1;
}

.ad-hero-form .quote-form-compact textarea {
    min-height: 96px;
}

.ad-hero-form .quote-form-compact button {
    min-height: 56px;
    border-radius: 999px;
    background: var(--orange);
    color: var(--white);
    font-family: Manrope, "DM Sans", system-ui, sans-serif;
    font-size: 1rem;
    box-shadow: 0 14px 30px rgba(244, 123, 32, 0.26);
}

.ad-hero-form .quote-form-compact button:hover,
.ad-hero-form .quote-form-compact button:focus-visible {
    background: var(--orange-dark);
}

.ad-hero-form .quote-form-compact .field-note {
    display: inline;
    margin-left: 4px;
    font-weight: 600;
}

@media (max-width: 760px) {
    .ad-hero-form .quote-form-compact form {
        grid-template-columns: 1fr;
    }

    .ad-hero-form .quote-form-compact .form-field-full,
    .ad-hero-form .quote-form-compact button,
    .ad-hero-form .quote-form-compact .form-privacy-note,
    .ad-hero-form .quote-form-compact .form-notice {
        grid-column: auto;
    }
}

/* 5.4 sitewide premium polish and final brand lock */
:root {
    --ink: #111827;
    --muted: #5b6574;
    --paper: #f4f7fb;
    --white: #ffffff;
    --line: rgba(16, 42, 76, 0.14);
    --navy: #102a4c;
    --navy-dark: #071a33;
    --orange: #f47b20;
    --orange-dark: #c95c11;
    --lime: #ffd7b8;
    --shadow: 0 28px 80px rgba(7, 26, 51, 0.17);
}

body {
    background: var(--paper);
    color: var(--ink);
    font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.site-main {
    overflow: hidden;
}

.top-proof-bar {
    background: var(--orange);
    color: var(--white);
}

.site-header,
body.admin-bar .site-header {
    background: linear-gradient(180deg, rgba(7, 26, 51, 0.96), rgba(7, 26, 51, 0.16));
}

.site-header.is-scrolled {
    background: rgba(7, 26, 51, 0.98);
}

.primary-nav {
    background: rgba(255, 255, 255, 0.07);
}

.primary-nav a::after {
    background: var(--orange);
}

.header-cta {
    background: var(--orange);
    color: var(--white);
    box-shadow: 0 14px 30px rgba(244, 123, 32, 0.28);
}

.header-cta span {
    color: rgba(255, 255, 255, 0.74);
}

.button,
.wp-block-button.button-primary .wp-block-button__link,
.wp-block-button.button-secondary .wp-block-button__link,
.true-seal-landing-page .wp-block-button__link {
    min-height: 54px;
    border-radius: 999px;
    font-family: Manrope, "DM Sans", system-ui, sans-serif;
    font-weight: 800;
}

.button-primary,
.wp-block-button.button-primary .wp-block-button__link,
.true-seal-landing-page .wp-block-button__link {
    border-color: var(--orange);
    background: var(--orange) !important;
    color: var(--white);
    box-shadow: 0 16px 34px rgba(244, 123, 32, 0.3);
}

.button-primary:hover,
.button-primary:focus-visible,
.wp-block-button.button-primary .wp-block-button__link:hover,
.wp-block-button.button-primary .wp-block-button__link:focus-visible,
.true-seal-landing-page .wp-block-button__link:hover,
.true-seal-landing-page .wp-block-button__link:focus-visible {
    background: var(--orange-dark) !important;
    border-color: var(--orange-dark);
}

.button-secondary,
.wp-block-button.button-secondary .wp-block-button__link {
    border-color: rgba(255, 255, 255, 0.42);
    background: rgba(7, 26, 51, 0.34) !important;
    color: var(--white);
}

.hero-overlay {
    background:
        linear-gradient(90deg, rgba(7, 26, 51, 0.97) 0%, rgba(16, 42, 76, 0.84) 39%, rgba(16, 42, 76, 0.2) 74%),
        linear-gradient(0deg, rgba(7, 26, 51, 0.86), transparent 48%);
}

.hero-content .eyebrow,
.ad-kicker,
.eyebrow {
    color: var(--orange);
}

.hero-content .eyebrow {
    border-color: rgba(244, 123, 32, 0.5);
    background: rgba(244, 123, 32, 0.13);
    color: #ffb16f;
}

.service-card .card-tag,
.process-step .card-tag,
.lead-panel > article::before {
    background: rgba(244, 123, 32, 0.13);
    color: var(--orange-dark);
}

.service-card,
.surface-level-card,
.service-benefit-list div,
.playbook-grid article,
details,
.quote-form,
.page-shell {
    border-color: rgba(16, 42, 76, 0.12);
}

.service-card {
    box-shadow: 0 20px 52px rgba(7, 26, 51, 0.1);
}

.split-section,
.results-showcase,
.quote-section,
.service-page-hero,
.service-proof-section,
.related-services {
    background:
        radial-gradient(circle at 88% 8%, rgba(244, 123, 32, 0.14), transparent 28%),
        linear-gradient(135deg, #06152a 0%, #102a4c 58%, #071a33 100%);
}

.service-page-media {
    transform: none;
}

.service-page-media::before {
    background: linear-gradient(135deg, rgba(244, 123, 32, 0.8), rgba(255, 255, 255, 0.14));
}

.service-page-media img {
    border-radius: 18px;
}

.footer-cta,
.decision-cta {
    background: var(--orange);
    color: var(--white);
}

.footer-cta .eyebrow,
.decision-copy .eyebrow {
    color: rgba(255, 255, 255, 0.78);
}

.site-footer {
    background:
        linear-gradient(90deg, rgba(244, 123, 32, 0.1), rgba(244, 123, 32, 0) 42%),
        linear-gradient(135deg, #041124 0%, #071a33 52%, #102a4c 100%);
}

.page-content {
    max-width: none;
    margin: 0;
    padding: clamp(160px, 16vw, 220px) clamp(18px, 5vw, 72px) clamp(70px, 9vw, 116px);
    background:
        radial-gradient(circle at 85% 0, rgba(244, 123, 32, 0.12), transparent 28%),
        linear-gradient(180deg, #eef3fa 0%, #f8fbff 48%, #f4f7fb 100%);
}

.page-shell {
    width: min(1040px, 100%);
    margin: 0 auto;
}

.page-title-card {
    position: relative;
    overflow: hidden;
    margin-bottom: clamp(24px, 5vw, 48px);
    padding: clamp(28px, 6vw, 58px);
    border: 1px solid rgba(16, 42, 76, 0.12);
    border-radius: 24px;
    background:
        radial-gradient(circle at 88% 20%, rgba(244, 123, 32, 0.2), transparent 28%),
        linear-gradient(135deg, #06152a 0%, #102a4c 100%);
    color: var(--white);
    box-shadow: 0 26px 70px rgba(7, 26, 51, 0.18);
}

.page-title-card::after {
    content: "";
    position: absolute;
    right: -70px;
    bottom: -90px;
    width: 260px;
    height: 260px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
}

.page-title-card .eyebrow {
    color: #ffb16f;
}

.page-title-card h1 {
    position: relative;
    z-index: 1;
    max-width: 850px;
    color: var(--white);
    font-size: clamp(2.35rem, 5vw, 5rem);
    letter-spacing: -0.045em;
    text-wrap: balance;
}

.content-body {
    overflow: hidden;
    padding: clamp(26px, 5vw, 54px);
    border: 1px solid rgba(16, 42, 76, 0.12);
    border-radius: 24px;
    background: var(--white);
    box-shadow: 0 22px 60px rgba(7, 26, 51, 0.09);
}

.content-body > * {
    max-width: 820px;
    margin-right: auto;
    margin-left: auto;
}

.content-body > .alignwide,
.content-body > .wp-block-gallery,
.content-body > .wp-block-columns,
.content-body > .wp-block-cover {
    max-width: 100%;
}

.content-body h2,
.content-body h3 {
    color: var(--navy-dark);
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.content-body h2 {
    margin-top: 1.2em;
    font-size: clamp(1.8rem, 3.2vw, 3rem);
}

.content-body h3 {
    font-size: clamp(1.35rem, 2.4vw, 2rem);
}

.content-body p,
.content-body li {
    color: var(--muted);
}

.content-body a {
    color: var(--orange-dark);
    font-weight: 800;
}

.content-body .wp-block-button__link {
    color: var(--white);
    text-decoration: none;
}

.post-summary {
    display: grid;
    gap: 18px;
}

.post-summary + .post-summary {
    margin-top: 32px;
}

.post-summary > p {
    padding: 0 clamp(22px, 4vw, 42px) clamp(22px, 4vw, 42px);
    color: var(--muted);
}

@media (max-width: 760px) {
    .page-content {
        padding-top: 142px;
    }

    .page-title-card,
    .content-body {
        border-radius: 18px;
    }

    .content-body {
        padding: 24px 18px;
    }

    .service-page-media::before {
        display: none;
    }
}

/* 5.5 homepage UX fixes, durable sliders, and inner-page fallback styling */
:root {
    --true-seal-header-clearance: clamp(150px, 13vw, 190px);
}

.hero {
    min-height: min(920px, 100vh);
    padding-top: var(--true-seal-header-clearance);
    align-items: center;
}

.hero-content {
    margin-top: 0;
}

.hero-content > .wp-block-buttons {
    display: inline-flex;
}

.top-proof-bar {
    min-height: 30px;
    align-items: center;
}

.site-header {
    isolation: isolate;
}

.split-section {
    grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.88fr);
    align-items: stretch;
}

.split-copy {
    display: grid;
    align-content: center;
}

.split-copy > p:not(.eyebrow):not(:last-child) {
    max-width: 760px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.08rem;
}

.split-section .service-benefit-list {
    margin-top: 30px;
}

.split-section .service-benefit-list > article {
    position: relative;
    min-height: 160px;
    padding: 26px 24px 24px 74px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.055));
    box-shadow: none;
}

.split-section .service-benefit-list > article::before {
    content: "✓";
    position: absolute;
    top: 25px;
    left: 24px;
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 10px;
    background: var(--orange);
    color: var(--white);
    font-weight: 900;
}

.split-section .service-benefit-list h3,
.split-section .service-benefit-list p {
    margin: 0;
}

.split-section .service-benefit-list h3 {
    color: var(--white);
}

.split-section .service-benefit-list p {
    margin-top: 7px;
    color: rgba(255, 255, 255, 0.68);
}

.stats-panel {
    align-content: stretch;
}

.stats-panel > article,
.stats-panel div {
    display: grid;
    min-height: 0;
    align-content: end;
    padding: clamp(28px, 4vw, 42px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 22px;
    background:
        radial-gradient(circle at 82% 12%, rgba(244, 123, 32, 0.28), transparent 30%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.055));
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.18);
}

.stats-panel > article:nth-child(1),
.stats-panel div:nth-child(1) {
    min-height: 260px;
}

.stats-panel > article:nth-child(2),
.stats-panel div:nth-child(2) {
    min-height: 210px;
}

.stats-panel > article:nth-child(3),
.stats-panel div:nth-child(3) {
    min-height: 180px;
}

.stats-panel h3,
.stats-panel strong {
    color: var(--orange);
    font-size: clamp(2rem, 4.2vw, 4.2rem);
    line-height: 0.95;
    letter-spacing: -0.05em;
}

.stats-panel p,
.stats-panel span {
    color: rgba(255, 255, 255, 0.72);
    font-weight: 800;
}

.process-section,
.service-process-band {
    background:
        linear-gradient(180deg, #ffffff 0%, #eef3fa 100%);
}

.process-section .section-heading.compact,
.service-process-band .section-heading.compact {
    max-width: 960px;
    text-align: center;
}

.process-section .section-heading.compact .eyebrow,
.service-process-band .section-heading.compact .eyebrow {
    justify-content: center;
}

.process-timeline {
    counter-reset: process-card;
    gap: 18px;
}

.process-step {
    counter-increment: process-card;
    min-height: 300px;
    padding: 30px 26px 28px;
    border-radius: 22px;
    background:
        radial-gradient(circle at 82% 8%, rgba(244, 123, 32, 0.14), transparent 30%),
        linear-gradient(180deg, var(--white), #f8fbff);
}

.process-step::before {
    content: "🔍";
    display: grid;
    width: 58px;
    height: 58px;
    margin-bottom: 24px;
    place-items: center;
    border-radius: 18px;
    background: var(--navy-dark);
    color: var(--white);
    font-size: 1.55rem;
    box-shadow: 0 14px 30px rgba(7, 26, 51, 0.16);
}

.process-step:nth-child(2)::before {
    content: "💧";
}

.process-step:nth-child(3)::before {
    content: "🛡️";
}

.process-step:nth-child(4)::before {
    content: "✓";
    background: var(--orange);
    font-size: 1.85rem;
    font-weight: 900;
}

.process-step .card-tag {
    position: absolute;
    top: 26px;
    right: 26px;
    display: grid;
    width: 42px;
    height: 42px;
    margin: 0;
    place-items: center;
    border-radius: 999px;
    background: rgba(244, 123, 32, 0.12);
    color: var(--orange-dark);
}

.process-step h3 {
    margin-top: 0;
    color: var(--navy-dark);
    font-size: clamp(1.3rem, 2vw, 1.75rem);
}

.process-step p {
    color: var(--muted);
}

.before-after-slider {
    min-height: 260px;
    aspect-ratio: auto;
}

.before-after-slider figure.ba-image {
    position: absolute;
    inset: 0;
}

.before-after-slider figure.ba-after {
    position: relative;
    inset: auto;
}

.before-after-slider figure.ba-image img {
    display: block;
    width: 100%;
    height: auto;
    min-height: 260px;
    max-height: clamp(340px, 42vw, 620px);
    object-fit: cover;
}

.before-after-slider figure.ba-before img {
    height: 100%;
}

.before-after-slider .ba-before {
    height: 100%;
}

.ba-result-card {
    border-radius: 22px;
}

.ba-copy {
    min-height: 132px;
}

.project-gallery {
    background:
        linear-gradient(180deg, #ffffff 0%, #f4f7fb 100%);
}

.project-gallery-grid {
    align-items: stretch;
    grid-auto-rows: minmax(260px, auto);
}

.project-gallery-grid figure.gallery-image {
    position: relative;
    min-height: 0;
    aspect-ratio: 4 / 3;
    border: 1px solid rgba(16, 42, 76, 0.1);
    box-shadow: 0 22px 56px rgba(7, 26, 51, 0.1);
}

.project-gallery-grid figure.gallery-image:nth-child(1),
.project-gallery-grid figure.gallery-image:nth-child(2) {
    aspect-ratio: 16 / 10;
}

.project-gallery-grid figure.gallery-image img,
.editable-layout figure.gallery-image img,
.content-body .wp-block-image img,
.content-body .wp-block-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content-body .wp-block-image {
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 18px 46px rgba(7, 26, 51, 0.09);
}

.content-body .wp-block-gallery,
.content-body .wp-block-columns,
.content-body .wp-block-cover,
.content-body .wp-block-group.has-background {
    overflow: hidden;
    padding: clamp(20px, 4vw, 34px);
    border: 1px solid rgba(16, 42, 76, 0.1);
    border-radius: 22px;
    background: #f8fbff;
    box-shadow: 0 18px 46px rgba(7, 26, 51, 0.075);
}

.content-body .wp-block-columns {
    gap: 20px;
}

.content-body .wp-block-column {
    min-width: 0;
}

.content-body .wp-block-quote {
    padding: 22px 24px;
    border-left: 5px solid var(--orange);
    border-radius: 0 18px 18px 0;
    background: #f8fbff;
}

.local-area-section {
    padding: clamp(64px, 9vw, 112px) clamp(18px, 6vw, 86px);
    background:
        radial-gradient(circle at 14% 10%, rgba(244, 123, 32, 0.1), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #eef3fa 100%);
}

.local-area-section .section-heading.compact {
    max-width: 920px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.local-area-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    max-width: 1180px;
    margin: 34px auto 0;
}

.local-area-card {
    position: relative;
    overflow: hidden;
    min-height: 190px;
    padding: 26px 24px;
    border: 1px solid rgba(16, 42, 76, 0.12);
    border-radius: 20px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.98));
    box-shadow: 0 18px 46px rgba(7, 26, 51, 0.08);
}

.local-area-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--orange), rgba(244, 123, 32, 0));
}

.local-area-card h3 {
    margin: 0 0 10px;
    color: var(--navy-dark);
    font-size: 1.35rem;
}

.local-area-card p {
    margin: 0;
    color: var(--muted);
}

.local-area-link {
    max-width: 1180px;
    margin: 26px auto 0;
    text-align: center;
}

.local-area-link a {
    color: var(--orange-dark);
    font-weight: 900;
    text-decoration: underline;
    text-underline-offset: 5px;
}

.post-summary {
    padding: clamp(24px, 4vw, 42px);
    border: 1px solid rgba(16, 42, 76, 0.12);
    border-radius: 22px;
    background: var(--white);
    box-shadow: 0 18px 46px rgba(7, 26, 51, 0.08);
}

.post-summary h2 {
    margin: 0;
    color: var(--navy-dark);
    font-size: clamp(1.55rem, 3vw, 2.5rem);
    line-height: 1.08;
}

.post-summary p {
    margin: 12px 0 0;
    color: var(--muted);
}

.editable-layout > section,
.editable-layout > .wp-block-group {
    clear: both;
}

@media (max-width: 980px) {
    :root {
        --true-seal-header-clearance: 138px;
    }

    .hero {
        min-height: auto;
        padding-bottom: 64px;
        align-items: end;
    }

    .split-section {
        grid-template-columns: 1fr;
    }

    .stats-panel > article:nth-child(n),
    .stats-panel div:nth-child(n) {
        min-height: 160px;
    }

    .process-step {
        min-height: auto;
    }

    .local-area-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    :root {
        --true-seal-header-clearance: 126px;
    }

    .hero {
        min-height: 780px;
        padding-top: var(--true-seal-header-clearance);
    }

    .hero-content {
        margin-bottom: 42px;
    }

    .trust-strip {
        grid-template-columns: 1fr;
    }

    .split-section .service-benefit-list > article {
        padding-left: 68px;
    }

    .before-after-slider figure.ba-image img {
        min-height: 230px;
        max-height: 420px;
    }

    .project-gallery-grid figure.gallery-image:nth-child(n) {
        aspect-ratio: 4 / 3;
    }

    .content-body .wp-block-gallery,
    .content-body .wp-block-columns,
    .content-body .wp-block-cover,
    .content-body .wp-block-group.has-background {
        padding: 16px;
        border-radius: 18px;
    }

    .local-area-card-grid {
        grid-template-columns: 1fr;
    }
}

/* 5.6.1 header and before/after reliability patch */
:root {
    --true-seal-proof-height: 34px;
    --true-seal-header-height: 82px;
    --true-seal-header-clearance: clamp(138px, 12vw, 166px);
}

.top-proof-bar {
    position: fixed;
    z-index: 90;
    top: 0;
    right: 0;
    left: 0;
    min-height: var(--true-seal-proof-height);
    padding: 8px clamp(18px, 4vw, 56px);
    border: 0;
    background: var(--orange);
    color: var(--white);
    box-shadow: 0 8px 24px rgba(7, 26, 51, 0.14);
}

body.admin-bar .top-proof-bar {
    top: 32px;
}

.site-header,
body.admin-bar .site-header {
    position: fixed;
    z-index: 88;
    top: var(--true-seal-proof-height);
    right: 0;
    left: 0;
    width: auto;
    min-height: var(--true-seal-header-height);
    margin: 0;
    padding: 12px clamp(18px, 4vw, 56px);
    border: 0;
    border-radius: 0;
    background: rgba(7, 26, 51, 0.96);
    box-shadow: 0 16px 42px rgba(7, 26, 51, 0.22);
    backdrop-filter: blur(14px);
}

body.admin-bar .site-header {
    top: calc(32px + var(--true-seal-proof-height));
}

.site-header.is-scrolled {
    padding-top: 10px;
    padding-bottom: 10px;
    background: rgba(7, 26, 51, 0.985);
}

.brand-logo {
    width: clamp(126px, 13vw, 168px);
    max-height: 56px;
}

.brand-status {
    max-width: 128px;
    color: rgba(255, 255, 255, 0.72);
}

.primary-nav {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.075);
}

.hero,
.service-page-hero,
.page-content,
.true-seal-landing-page .ad-hero {
    scroll-margin-top: calc(var(--true-seal-proof-height) + var(--true-seal-header-height) + 18px);
}

.hero {
    padding-top: var(--true-seal-header-clearance);
}

.before-after-slider {
    --comparison-position: 50%;
    position: relative;
    overflow: hidden;
    display: block;
    width: 100%;
    min-height: 0;
    aspect-ratio: 16 / 11;
    background: #061324;
    cursor: ew-resize;
    isolation: isolate;
    touch-action: none;
}

.before-after-slider figure.ba-image,
.before-after-slider figure.ba-after,
.before-after-slider figure.ba-before {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    margin: 0 !important;
    transform: none !important;
}

.before-after-slider figure.ba-after {
    z-index: 1;
}

.before-after-slider figure.ba-before {
    z-index: 2;
    overflow: hidden;
    clip-path: inset(0 calc(100% - var(--comparison-position)) 0 0);
}

.before-after-slider figure.ba-image img,
.before-after-slider figure.ba-after img,
.before-after-slider figure.ba-before img {
    display: block;
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    max-height: none !important;
    object-fit: cover;
}

.ba-ui,
.ba-range {
    position: absolute;
    inset: 0;
}

.ba-ui {
    z-index: 6;
    pointer-events: none;
}

.ba-range {
    z-index: 9;
    width: 100%;
    height: 100%;
    margin: 0;
    cursor: ew-resize;
    opacity: 0;
    pointer-events: auto;
}

.ba-divider,
.ba-handle {
    left: var(--comparison-position);
}

.ba-divider {
    z-index: 7;
}

.ba-handle {
    z-index: 8;
}

@media (max-width: 980px) {
    :root {
        --true-seal-proof-height: 32px;
        --true-seal-header-height: 76px;
        --true-seal-header-clearance: 126px;
    }
}

@media (max-width: 760px) {
    :root {
        --true-seal-proof-height: 30px;
        --true-seal-header-height: 72px;
        --true-seal-header-clearance: 118px;
    }

    .top-proof-bar {
        justify-content: center;
        padding: 7px 14px;
        text-align: center;
    }

    .site-header,
    body.admin-bar .site-header {
        padding: 10px 14px;
    }

    .brand-status,
    .top-proof-bar span:last-child {
        display: none;
    }

    .before-after-slider {
        aspect-ratio: 4 / 3;
    }
}
