/* Lara Smash Repairs static public website styles. */

:root {
    --black: #050505;
    --charcoal: #111315;
    --panel: #181A1D;
    --off-white: #F6F4EF;
    --white: #FFFFFF;
    --muted: #8B8B8B;
    --line: #2A2D31;
    --red: #D5001C;
    --deep-red: #A80016;
    --metal: #A7A7A7;
    --max: 1440px;
    --gutter: 20px;
    --space: clamp(58px, 7.5vw, 104px);
    --edge: clamp(18px, 4vw, 52px);
    --radius: 8px;
    --font-display: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
    --font-body: Arial, Helvetica, sans-serif;
    --font-mono: "Courier New", Courier, monospace;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--black);
    color: var(--off-white);
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.55;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.nav-open {
    overflow: hidden;
}

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

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

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

:focus-visible {
    outline: 2px solid var(--red);
    outline-offset: 4px;
}

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

.skip-link:focus {
    position: fixed;
    z-index: 1000;
    top: 16px;
    left: 16px;
    width: auto;
    height: auto;
    margin: 0;
    padding: 12px 16px;
    clip: auto;
    background: var(--red);
    color: var(--white);
}

.container {
    width: min(100% - (var(--edge) * 2), var(--max));
    margin-inline: auto;
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    border-bottom: 1px solid var(--line);
    background: rgba(17, 19, 21, 0.84);
    backdrop-filter: blur(18px);
    transition: background 180ms ease, transform 180ms ease;
}

.site-header.is-compact {
    background: rgba(5, 5, 5, 0.96);
}

.site-header__inner {
    display: flex;
    align-items: center;
    gap: 22px;
    width: min(100% - (var(--edge) * 2), var(--max));
    min-height: 76px;
    margin-inline: auto;
    transition: min-height 180ms ease;
}

.site-header.is-compact .site-header__inner {
    min-height: 58px;
}

.brand {
    display: inline-flex;
    align-items: baseline;
    gap: 2px;
    min-width: max-content;
    font-family: var(--font-display);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: 0;
    text-transform: uppercase;
}

.brand__lara,
.brand__repairs {
    color: var(--white);
}

.brand__smash {
    color: var(--red);
}

.brand__repairs {
    margin-left: 4px;
}

.primary-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(14px, 1.8vw, 28px);
    margin-inline: auto;
}

.primary-nav__link,
.footer-title,
.eyebrow,
.btn,
.text-link,
.arrow-link,
.case-filter a,
.tag-row span,
.quote-card label,
.detail-group p,
.detail-row p,
.hours p,
.faq-question,
.service-row__number {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.primary-nav__link {
    position: relative;
    padding-block: 8px;
    color: var(--off-white);
}

.primary-nav__link::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 2px;
    transform: scaleX(0);
    transform-origin: left;
    background: var(--red);
    transition: transform 180ms ease;
}

.primary-nav__link:hover::after,
.primary-nav__link.is-active::after {
    transform: scaleX(1);
}

.primary-nav__link:hover,
.primary-nav__link.is-active {
    color: var(--white);
}

.header-actions,
.button-row {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 43px;
    padding: 12px 20px;
    border: 1px solid transparent;
    border-radius: 2px;
    font-weight: 700;
    color: var(--white);
    transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn--red {
    background: var(--red);
}

.btn--red:hover {
    background: var(--deep-red);
}

.btn--ghost {
    border-color: var(--off-white);
    background: transparent;
}

.btn--ghost:hover {
    background: var(--off-white);
    color: var(--black);
}

.btn--whatsapp {
    background: #25D366;
}

.btn--small {
    min-height: 35px;
    padding: 8px 15px;
    font-size: 11px;
}

.btn--full {
    width: 100%;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    margin-left: auto;
    border: 1px solid var(--line);
    background: transparent;
}

.menu-toggle__line {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: var(--white);
}

.hero {
    position: relative;
    min-height: 88vh;
    display: grid;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
}

.hero--page {
    min-height: 650px;
    padding-top: 76px;
}

.hero__media {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.hero__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(5, 5, 5, 0.95), rgba(5, 5, 5, 0.42), rgba(5, 5, 5, 0.78)),
        linear-gradient(0deg, var(--black), rgba(5, 5, 5, 0.08) 45%, rgba(5, 5, 5, 0.18));
}

.hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.84;
}

.hero__content {
    position: relative;
    padding-top: 76px;
}

.hero__content--center {
    text-align: center;
}

.hero h1,
.section-heading h2,
.feature-panel h2,
.image-band h2,
.cta-strip h2,
.about-choice h2,
.quote-card h2,
.contact-details h2,
.faq h2,
.case-heading h2,
.archive-title,
.cta-card h2,
.service-row h2,
.insurance-panel h2 {
    margin: 0;
    font-family: var(--font-display);
    font-weight: 900;
    letter-spacing: 0;
    line-height: 0.9;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 760px;
    margin-block: 10px 20px;
    font-size: clamp(50px, 6.9vw, 108px);
}

.hero__intro {
    max-width: 580px;
    color: var(--metal);
    font-size: clamp(15px, 1.2vw, 18px);
}

.hero__outline {
    position: absolute;
    left: 4vw;
    bottom: 18%;
    z-index: -1;
    font-family: var(--font-display);
    font-size: clamp(86px, 19vw, 290px);
    font-weight: 900;
    line-height: 0.72;
    color: rgba(255, 255, 255, 0.055);
    pointer-events: none;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--red);
    font-weight: 700;
}

.eyebrow--dark {
    color: var(--deep-red);
}

.hero-steps {
    display: flex;
    gap: clamp(16px, 3vw, 48px);
    flex-wrap: wrap;
    max-width: 760px;
    margin: clamp(32px, 6vw, 76px) 0 0;
    padding: 22px 0 0;
    border-top: 1px solid var(--line);
    list-style: none;
}

.hero-steps li {
    font-family: var(--font-mono);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--muted);
}

.hero-steps span {
    margin-right: 12px;
    color: var(--red);
}

.section {
    padding-block: var(--space);
}

.section--lift {
    position: relative;
    z-index: 2;
    margin-top: clamp(-90px, -6vw, -36px);
}

.section--panel {
    background: #1f1f20;
}

.feature-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
    gap: clamp(24px, 4vw, 60px);
    align-items: center;
    padding: clamp(26px, 5vw, 68px);
    border-radius: var(--radius);
}

.feature-panel--light {
    background: var(--off-white);
    color: var(--black);
}

.feature-panel p {
    max-width: 620px;
    color: rgba(5, 5, 5, 0.72);
}

.feature-panel h2,
.section-heading h2,
.about-choice h2,
.faq h2,
.archive-title,
.insurance-panel h2 {
    font-size: clamp(32px, 4vw, 62px);
}

.text-link,
.arrow-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    color: currentColor;
    font-weight: 700;
}

.text-link::after,
.arrow-link::after {
    content: "->";
    color: var(--red);
}

.image-frame {
    width: 100%;
    padding: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--panel);
}

.image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms ease;
}

.image-frame:hover img,
.service-card:hover img {
    transform: scale(1.055);
}

.image-frame--square {
    aspect-ratio: 1;
}

.image-frame--tall {
    min-height: 360px;
}

.image-frame--wide {
    aspect-ratio: 16 / 9;
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 26px;
    margin-bottom: clamp(30px, 4vw, 56px);
}

.section-heading::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--line);
}

.section-heading p {
    margin: 0;
    color: var(--muted);
    font-family: var(--font-mono);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.section-heading--stack,
.section-heading--center {
    display: block;
}

.section-heading--stack::after,
.section-heading--center::after {
    display: none;
}

.section-heading--center {
    text-align: center;
}

.card-grid {
    display: grid;
    gap: var(--gutter);
}

.card-grid--services {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card,
.testimonial,
.value-card,
.case-notes article,
.cta-card {
    border: 1px solid var(--line);
    background: var(--panel);
}

.service-card {
    padding: 22px;
    min-height: 100%;
}

.service-card .image-frame {
    aspect-ratio: 16 / 10;
    margin-bottom: 20px;
}

.service-card__title {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 12px;
}

.service-card h3,
.value-card h3,
.archive-case h3 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(24px, 2.2vw, 34px);
    line-height: 0.95;
    text-transform: uppercase;
}

.service-card__title span,
.value-card span {
    color: var(--red);
    font-family: var(--font-mono);
}

.service-card p,
.testimonial blockquote,
.value-card p,
.case-notes p,
.archive-case p,
.cta-card p,
.insurance-panel p,
.about-choice span {
    color: var(--metal);
}

.comparison {
    position: relative;
    min-height: 270px;
    aspect-ratio: 21 / 9;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--panel);
    user-select: none;
    touch-action: none;
}

.comparison--large {
    aspect-ratio: 16 / 8;
}

.comparison--card {
    aspect-ratio: 1 / 1;
    min-height: 0;
}

.comparison__image,
.comparison__after img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comparison__after {
    position: absolute;
    inset: 0;
    width: 50%;
    overflow: hidden;
    border-right: 2px solid var(--red);
}

.comparison__handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 48px;
    padding: 0;
    transform: translateX(-50%);
    border: 0;
    background: transparent;
}

.comparison__handle span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 38px;
    height: 38px;
    transform: translate(-50%, -50%);
    border-radius: 999px;
    background: var(--red);
    box-shadow: 0 0 30px rgba(213, 0, 28, 0.45);
}

.comparison__handle span::before {
    content: "<>";
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: var(--white);
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 700;
}

.comparison__label {
    position: absolute;
    left: 22px;
    bottom: 18px;
    margin: 0;
    padding: 8px 12px;
    border-radius: 4px;
    background: rgba(5, 5, 5, 0.78);
    font-family: var(--font-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.process-list {
    position: relative;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.process-list::before {
    content: "";
    position: absolute;
    top: 23px;
    left: 8%;
    right: 8%;
    height: 2px;
    background: linear-gradient(90deg, var(--red) 0 50%, var(--line) 50%);
}

.process-list li {
    position: relative;
    display: grid;
    justify-items: center;
    gap: 8px;
    text-align: center;
}

.process-list span {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background: var(--red);
    font-weight: 700;
}

.process-list strong {
    font-family: var(--font-mono);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.process-list small {
    color: var(--muted);
}

.image-band {
    position: relative;
    min-height: clamp(340px, 46vw, 540px);
    display: grid;
    place-items: center;
    overflow: hidden;
}

.image-band img,
.map-band img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.76;
}

.image-band::after,
.map-band::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(5, 5, 5, 0.42);
}

.image-band__content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.image-band h2 {
    font-size: clamp(42px, 5.8vw, 92px);
}

.image-band span,
.vertical-mark {
    display: block;
    width: 4px;
    height: 68px;
    margin: 22px auto 0;
    background: var(--red);
}

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

.testimonial {
    margin: 0;
    padding: clamp(22px, 3vw, 34px);
}

.stars {
    margin: 0 0 20px;
    color: var(--red);
    letter-spacing: 0.16em;
}

.testimonial blockquote {
    margin: 0 0 22px;
    color: var(--white);
    font-size: 16px;
}

.testimonial figcaption {
    font-family: var(--font-mono);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.cta-strip {
    padding-block: var(--space);
    border-block: 1px solid var(--line);
    background: var(--panel);
    text-align: center;
}

.cta-strip h2 {
    margin-bottom: 26px;
    font-size: clamp(34px, 4.5vw, 68px);
}

.button-row--center {
    justify-content: center;
}

.site-footer {
    padding-block: var(--space) 32px;
    border-top: 1px solid var(--line);
    background: var(--black);
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1.3fr repeat(3, 1fr);
    gap: clamp(24px, 4vw, 58px);
}

.site-footer__brand p,
.footer-list {
    color: var(--muted);
}

.footer-title {
    margin: 0 0 18px;
    color: var(--red);
}

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

.footer-list a:hover {
    color: var(--white);
}

.site-footer__bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 48px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 13px;
}

.split-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
    gap: var(--gutter);
}

.image-stack {
    position: relative;
}

.stat-badge {
    position: absolute;
    left: -24px;
    bottom: -24px;
    padding: 20px;
    background: var(--red);
    color: var(--white);
    text-transform: uppercase;
}

.stat-badge strong {
    display: block;
    font-family: var(--font-display);
    font-size: 28px;
    line-height: 1;
}

.stat-badge span {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.08em;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--gutter);
}

.value-card {
    padding: 26px;
}

.value-card span {
    display: block;
    margin-bottom: 40px;
    font-size: 26px;
}

.about-choice {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: clamp(28px, 6vw, 72px);
    align-items: center;
}

.line-list {
    display: grid;
    gap: 20px;
    margin: 34px 0 0;
    padding: 0;
    list-style: none;
}

.line-list li {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 22px;
}

.line-list li::before {
    content: "";
    width: 48px;
    height: 2px;
    margin-top: 12px;
    background: var(--red);
    transition: width 180ms ease;
}

.line-list li:hover::before {
    width: 64px;
}

.line-list strong {
    display: block;
    margin-bottom: 6px;
    font-family: var(--font-mono);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.line-list--compact {
    gap: 10px;
    margin-top: 18px;
}

.line-list--compact li {
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 10px;
    color: var(--metal);
}

.line-list--compact li::before {
    width: 20px;
}

.line-list--compact li:hover::before {
    width: 24px;
}

.gallery-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.gallery-pair .image-frame {
    aspect-ratio: 1;
}

.image-frame--offset {
    margin-top: 40px;
}

.about-quality-section {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.025), transparent 28%, rgba(213, 0, 28, 0.05)),
        #1f1f20;
}

.about-quality-section::before {
    content: "";
    position: absolute;
    inset: 12% auto 12% var(--edge);
    width: 1px;
    background: repeating-linear-gradient(
        to bottom,
        rgba(246, 244, 239, 0.22) 0 3px,
        transparent 3px 10px
    );
    opacity: 0.55;
}

.about-choice--quality {
    grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.88fr);
    gap: clamp(34px, 5vw, 66px);
    align-items: center;
}

.about-choice--quality h2 {
    max-width: 680px;
    font-size: clamp(30px, 3.15vw, 48px);
    line-height: 0.94;
    text-wrap: balance;
}

.about-choice--quality > div:first-child > p {
    max-width: 640px;
    margin-top: 16px;
}

.about-choice--quality .line-list {
    max-width: 690px;
    gap: 16px;
    margin-top: 28px;
}

.about-choice--quality .line-list li {
    grid-template-columns: 54px minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: 16px;
    row-gap: 4px;
    align-items: start;
    padding-block: 4px;
}

.about-choice--quality .line-list li::before {
    grid-row: 1 / span 2;
    width: 38px;
    margin-top: 10px;
}

.about-choice--quality .line-list li:hover::before {
    width: 50px;
}

.about-choice--quality .line-list strong,
.about-choice--quality .line-list span {
    grid-column: 2;
}

.about-choice--quality .line-list strong {
    margin-bottom: 0;
}

.about-choice--quality .line-list span {
    display: block;
    max-width: 56ch;
    color: var(--metal);
    line-height: 1.55;
}

.about-choice--quality .gallery-pair {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 18px;
    align-items: center;
}

.about-choice--quality .gallery-pair .image-frame {
    aspect-ratio: 0.82;
    min-height: 330px;
}

.about-choice--quality .image-frame--offset {
    margin-top: 48px;
}

.page-intro {
    padding-top: calc(76px + var(--space));
}

.contact-hero {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: clamp(26px, 5.5vw, 76px);
    align-items: end;
}

.contact-hero h1 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(48px, 6.8vw, 96px);
    line-height: 0.96;
    text-transform: uppercase;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: clamp(28px, 5.5vw, 74px);
    align-items: start;
}

.contact-details h2,
.quote-card h2 {
    margin-bottom: 32px;
    font-size: clamp(30px, 2.6vw, 42px);
}

.detail-group,
.detail-row,
.hours,
.response-note {
    margin-bottom: 28px;
}

.detail-group p,
.detail-row p,
.hours p {
    margin: 0 0 8px;
    color: var(--muted);
    font-weight: 700;
}

.phone-link {
    font-family: var(--font-display);
    font-size: clamp(34px, 3.4vw, 54px);
    line-height: 1;
    font-weight: 900;
}

.detail-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.hours dl {
    margin: 0;
}

.hours div {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-block: 8px;
    border-bottom: 1px solid var(--line);
    font-family: var(--font-mono);
}

.hours div:last-child {
    color: var(--red);
}

.hours dd {
    margin: 0;
}

.response-note {
    padding-top: 24px;
    border-top: 1px solid var(--line);
    color: var(--muted);
}

.quote-card {
    padding: clamp(24px, 4vw, 46px);
    border-radius: var(--radius);
    background: var(--off-white);
    color: var(--black);
}

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

.form-message {
    margin-bottom: 20px;
    padding: 12px 14px;
    border-radius: var(--radius);
    font-weight: 700;
}

.form-message p {
    margin: 0;
}

.form-message p + p {
    margin-top: 8px;
}

.form-message--success {
    border: 1px solid rgba(25, 135, 84, 0.32);
    background: rgba(25, 135, 84, 0.12);
    color: #0f5132;
}

.form-message--error {
    border: 1px solid rgba(213, 0, 28, 0.28);
    background: rgba(213, 0, 28, 0.1);
    color: var(--deep-red);
}

.form-grid {
    display: grid;
    gap: 20px;
}

.form-grid--two {
    grid-template-columns: 1fr 1fr;
}

.form-grid--three {
    grid-template-columns: repeat(3, 1fr);
}

.quote-card label {
    display: grid;
    gap: 8px;
    color: var(--muted);
    font-weight: 700;
}

.quote-card input,
.quote-card textarea,
.quote-card select {
    width: 100%;
    min-height: 48px;
    padding: 10px 0;
    border: 0;
    border-bottom: 2px solid #c8c6c2;
    border-radius: 0;
    background: var(--white);
    color: var(--black);
}

.quote-card textarea {
    resize: vertical;
}

.upload-placeholder {
    display: grid;
    place-items: center;
    min-height: 140px;
    padding: 22px;
    border: 2px dashed #c8c6c2;
    border-radius: var(--radius);
    color: var(--muted);
    text-align: center;
}

.upload-placeholder input {
    width: min(100%, 320px);
    min-height: 0;
    margin-top: 12px;
    padding: 0;
    border: 0;
    background: transparent;
}

.upload-placeholder strong {
    color: var(--black);
}

.map-band {
    position: relative;
    min-height: 300px;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.map-band iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(1) contrast(1.05);
}

.map-band span {
    position: relative;
    z-index: 1;
    padding: 10px 16px;
    background: var(--panel);
    color: var(--white);
    font-family: var(--font-mono);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.faq {
    max-width: 860px;
    text-align: center;
}

.faq h2 {
    margin-bottom: 34px;
}

.faq-item {
    border-bottom: 1px solid var(--line);
    text-align: left;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    width: 100%;
    padding: 20px 0;
    border: 0;
    background: transparent;
    color: var(--white);
    text-align: left;
    font-weight: 700;
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 220ms ease;
}

.faq-answer > p {
    overflow: hidden;
    margin: 0;
    color: var(--metal);
}

.faq-item.is-open .faq-answer {
    grid-template-rows: 1fr;
    padding-bottom: 18px;
}

.case-filter {
    position: sticky;
    top: 76px;
    z-index: 10;
    border-block: 1px solid var(--line);
    background: rgba(17, 19, 21, 0.95);
    backdrop-filter: blur(14px);
}

.case-filter__inner {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding-block: 16px;
}

.case-filter a {
    flex: 0 0 auto;
    color: var(--muted);
}

.case-filter a.is-active,
.case-filter a:hover {
    color: var(--red);
}

.case-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
}

.case-heading h2 {
    font-size: clamp(32px, 4vw, 62px);
}

.tag-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tag-row span {
    padding: 7px 10px;
    border: 1px solid var(--line);
    color: var(--metal);
}

.case-notes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gutter);
    margin-top: 28px;
}

.case-notes article {
    padding: 22px;
}

.case-notes h3 {
    margin: 0 0 14px;
    color: var(--red);
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.archive-title {
    margin-bottom: 34px;
}

.archive-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px var(--gutter);
}

.archive-case--offset {
    margin-top: 80px;
}

.archive-case__caption {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px 18px;
    margin-top: 18px;
}

.archive-case__caption p,
.archive-case__caption h3 {
    grid-column: 1;
}

.archive-case__caption a {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: center;
    color: var(--white);
    font-family: var(--font-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.cta-card {
    padding: clamp(30px, 5.5vw, 68px);
    text-align: center;
}

.cta-card h2 {
    font-size: clamp(32px, 4.2vw, 58px);
}

.service-list {
    display: grid;
    gap: 22px;
}

.service-row {
    display: grid;
    grid-template-columns: 68px 1fr minmax(250px, 0.5fr);
    gap: clamp(20px, 4vw, 54px);
    align-items: center;
    padding: 22px 0;
    border-top: 1px solid var(--line);
}

.service-row:last-child {
    border-bottom: 1px solid var(--line);
}

.service-row__number {
    color: var(--red);
    font-size: 15px;
}

.service-row h2 {
    font-size: clamp(32px, 4.2vw, 64px);
}

.service-row p,
.insurance-panel p {
    max-width: 700px;
    color: var(--metal);
}

.service-row .image-frame {
    aspect-ratio: 16 / 10;
}

.insurance-panel {
    max-width: 920px;
}

.insurance-panel h2 {
    max-width: 760px;
    margin-bottom: 20px;
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 500;
    display: grid;
    place-items: center;
    padding: var(--edge);
    background: rgba(5, 5, 5, 0.88);
}

.lightbox[hidden] {
    display: none;
}

.lightbox__image {
    max-height: 86vh;
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.lightbox__close {
    position: fixed;
    top: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    border: 1px solid var(--white);
    background: var(--black);
    color: var(--white);
    font-family: var(--font-mono);
    text-transform: uppercase;
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1280px) {
    :root {
        --space: clamp(54px, 7vw, 92px);
    }

    .hero h1 {
        font-size: clamp(48px, 6.2vw, 92px);
    }

    .site-header__inner {
        gap: 20px;
    }

    .primary-nav {
        gap: 16px;
    }
}

@media (max-width: 980px) {
    .menu-toggle {
        display: block;
    }

    .header-actions {
        display: none;
    }

    .primary-nav {
        position: fixed;
        inset: 76px 0 auto;
        display: grid;
        gap: 0;
        padding: 16px var(--edge) 24px;
        border-bottom: 1px solid var(--line);
        background: rgba(5, 5, 5, 0.98);
        transform: translateY(-125%);
        transition: transform 220ms ease;
    }

    .primary-nav.is-open {
        transform: translateY(0);
    }

    .primary-nav__link {
        padding: 16px 0;
        border-bottom: 1px solid var(--line);
        font-size: 14px;
    }

    .feature-panel,
    .split-panel,
    .about-choice,
    .contact-hero,
    .contact-grid,
    .service-row {
        grid-template-columns: 1fr;
    }

    .card-grid--services,
    .testimonial-grid,
    .values-grid,
    .case-notes,
    .archive-grid {
        grid-template-columns: 1fr 1fr;
    }

    .process-list {
        grid-template-columns: repeat(3, 1fr);
    }

    .process-list::before {
        display: none;
    }

    .hero--page {
        min-height: 600px;
    }

    .comparison {
        min-height: 0;
    }

    .service-row {
        padding-block: 32px;
    }

    .service-row__number {
        order: -2;
    }

    .archive-case--offset {
        margin-top: 0;
    }
}

@media (max-width: 640px) {
    :root {
        --edge: 20px;
        --space: 58px;
    }

    .site-header__inner {
        min-height: 66px;
    }

    .primary-nav {
        inset: 66px 0 auto;
    }

    .brand {
        font-size: 22px;
    }

    .brand__repairs {
        display: block;
        margin-left: 0;
    }

    .hero,
    .hero--page {
        min-height: 620px;
    }

    .hero__content {
        padding-top: 66px;
    }

    .hero h1,
    .contact-hero h1 {
        font-size: clamp(42px, 12vw, 62px);
    }

    .hero__outline {
        font-size: 88px;
        bottom: 26%;
    }

    .button-row,
    .header-actions {
        width: 100%;
    }

    .btn {
        width: 100%;
    }

    .hero-steps {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .feature-panel {
        padding: 22px;
    }

    .card-grid--services,
    .testimonial-grid,
    .values-grid,
    .case-notes,
    .archive-grid,
    .form-grid--two,
    .form-grid--three,
    .detail-row,
    .site-footer__grid {
        grid-template-columns: 1fr;
    }

    .section-heading {
        display: block;
    }

    .section-heading::after {
        display: none;
    }

    .comparison,
    .comparison--large {
        aspect-ratio: 4 / 5;
    }

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

    .image-band h2 {
        font-size: clamp(38px, 13vw, 62px);
    }

    .site-footer__bottom,
    .case-heading {
        flex-direction: column;
        align-items: flex-start;
    }

    .quote-card {
        padding: 20px;
    }

    .archive-case__caption {
        grid-template-columns: 1fr;
    }

    .archive-case__caption a {
        grid-column: 1;
        grid-row: auto;
    }

    .gallery-pair {
        grid-template-columns: 1fr;
    }

    .about-choice--quality .gallery-pair .image-frame {
        min-height: 230px;
        aspect-ratio: 1.2;
    }

    .image-frame--offset {
        margin-top: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}

/* Compact UI refinement pass. */
:root {
    --gutter: 18px;
    --space: clamp(50px, 6.5vw, 90px);
    --edge: clamp(16px, 3.5vw, 46px);
    --radius: 6px;
}

body {
    font-size: 14px;
}

.site-header__inner {
    min-height: 68px;
    gap: 18px;
}

.site-header.is-compact .site-header__inner {
    min-height: 52px;
}

.primary-nav {
    gap: clamp(12px, 1.5vw, 24px);
}

.primary-nav__link,
.footer-title,
.eyebrow,
.btn,
.text-link,
.arrow-link,
.case-filter a,
.tag-row span,
.quote-card label,
.detail-group p,
.detail-row p,
.hours p,
.faq-question,
.service-row__number {
    font-size: 10.5px;
}

.btn {
    min-height: 40px;
    padding: 10px 17px;
}

.btn--small {
    min-height: 32px;
    padding: 7px 13px;
    font-size: 10px;
}

.hero {
    min-height: 80vh;
}

.hero--page {
    min-height: 570px;
    padding-top: 68px;
}

.hero__content {
    padding-top: 68px;
}

.hero h1 {
    max-width: 700px;
    font-size: clamp(42px, 6vw, 94px);
}

.hero__intro {
    max-width: 540px;
    font-size: clamp(14px, 1.1vw, 17px);
}

.hero__outline {
    font-size: clamp(72px, 16vw, 240px);
}

.hero-steps {
    gap: clamp(14px, 2.5vw, 40px);
    margin-top: clamp(26px, 5vw, 62px);
    padding-top: 18px;
}

.feature-panel {
    gap: clamp(20px, 3.5vw, 50px);
    padding: clamp(22px, 4vw, 58px);
}

.feature-panel h2,
.section-heading h2,
.about-choice h2,
.faq h2,
.archive-title,
.insurance-panel h2 {
    font-size: clamp(28px, 3.4vw, 54px);
}

.section-heading {
    gap: 22px;
    margin-bottom: clamp(24px, 3.4vw, 46px);
}

.service-card {
    padding: 19px;
}

.service-card .image-frame {
    margin-bottom: 16px;
}

.service-card h3,
.value-card h3,
.archive-case h3 {
    font-size: clamp(22px, 2vw, 30px);
}

.comparison {
    min-height: 240px;
}

.image-band {
    min-height: clamp(300px, 40vw, 470px);
}

.image-band h2 {
    font-size: clamp(36px, 5vw, 78px);
}

.testimonial {
    padding: clamp(18px, 2.5vw, 28px);
}

.testimonial blockquote {
    font-size: 15px;
}

.cta-strip h2 {
    font-size: clamp(30px, 3.8vw, 58px);
}

.value-card,
.case-notes article {
    padding: 22px;
}

.value-card span {
    margin-bottom: 32px;
    font-size: 22px;
}

.contact-hero h1 {
    font-size: clamp(40px, 5.8vw, 82px);
}

.contact-details h2,
.quote-card h2 {
    margin-bottom: 26px;
    font-size: clamp(26px, 2.3vw, 36px);
}

.phone-link {
    font-size: clamp(30px, 3vw, 46px);
}

.quote-card {
    padding: clamp(20px, 3.3vw, 38px);
}

.quote-card form,
.form-grid {
    gap: 16px;
}

.quote-card input,
.quote-card textarea,
.quote-card select {
    min-height: 44px;
}

.upload-placeholder {
    min-height: 122px;
    padding: 18px;
}

.map-band {
    min-height: 260px;
}

.faq-question {
    padding: 16px 0;
}

.case-filter {
    top: 68px;
}

.case-filter__inner {
    gap: 20px;
    padding-block: 13px;
}

.case-heading h2 {
    font-size: clamp(28px, 3.5vw, 54px);
}

.archive-grid {
    gap: 54px var(--gutter);
}

.archive-case--offset {
    margin-top: 58px;
}

.cta-card {
    padding: clamp(26px, 4.5vw, 56px);
}

.cta-card h2 {
    font-size: clamp(28px, 3.6vw, 50px);
}

.service-row {
    grid-template-columns: 56px 1fr minmax(230px, 0.48fr);
    gap: clamp(18px, 3.2vw, 44px);
    padding: 18px 0;
}

.service-row h2 {
    font-size: clamp(28px, 3.6vw, 54px);
}

.site-footer {
    padding-block: var(--space) 26px;
}

.site-footer__bottom {
    margin-top: 38px;
    padding-top: 16px;
}

@media (max-width: 1280px) {
    :root {
        --space: clamp(48px, 6vw, 80px);
    }

    .hero h1 {
        font-size: clamp(40px, 5.5vw, 82px);
    }
}

@media (max-width: 980px) {
    .primary-nav {
        inset: 68px 0 auto;
    }

    .hero--page {
        min-height: 540px;
    }

    .service-row {
        padding-block: 26px;
    }
}

@media (max-width: 640px) {
    :root {
        --space: 52px;
    }

    body {
        font-size: 14px;
    }

    .site-header__inner {
        min-height: 62px;
    }

    .primary-nav {
        inset: 62px 0 auto;
    }

    .hero,
    .hero--page {
        min-height: 560px;
    }

    .hero__content {
        padding-top: 62px;
    }

    .hero h1,
    .contact-hero h1 {
        font-size: clamp(38px, 11vw, 56px);
    }

    .hero__outline {
        font-size: 74px;
    }

    .feature-panel,
    .quote-card {
        padding: 18px;
    }

    .service-row {
        gap: 18px;
        overflow: hidden;
    }

    .service-row .image-frame {
        width: 100%;
        min-width: 0;
    }

    .image-band h2 {
        font-size: clamp(34px, 11vw, 54px);
    }
}

/* Stitch alignment pass 1: editorial/cinematic refinement. */
.site-header {
    background: rgba(5, 5, 5, 0.9);
}

.brand {
    font-size: clamp(18px, 1.5vw, 24px);
}

.hero__media::before,
.image-frame::before,
.comparison::before,
.media-cinematic::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero__media::before {
    z-index: 1;
    background:
        radial-gradient(circle at 80% 48%, rgba(213, 0, 28, 0.26), transparent 24%),
        linear-gradient(90deg, rgba(5, 5, 5, 0.98) 0 34%, rgba(5, 5, 5, 0.46) 58%, rgba(5, 5, 5, 0.88));
    mix-blend-mode: screen;
    opacity: 0.62;
}

.hero__media::after {
    z-index: 2;
    background:
        linear-gradient(90deg, rgba(5, 5, 5, 0.98), rgba(5, 5, 5, 0.36), rgba(5, 5, 5, 0.82)),
        linear-gradient(0deg, var(--black), rgba(5, 5, 5, 0.03) 42%, rgba(5, 5, 5, 0.2)),
        radial-gradient(circle at 76% 54%, rgba(213, 0, 28, 0.22), transparent 28%);
}

.hero__media img {
    transform: scale(1.08);
    filter: saturate(0.82) contrast(1.18) brightness(0.72);
}

.hero--home .hero__media img {
    object-position: 74% center;
}

.hero--about .hero__media img {
    object-position: 50% center;
}

.hero--cases .hero__media img {
    object-position: 66% center;
}

.hero--services .hero__media img {
    object-position: 58% center;
}

.hero h1,
.contact-hero h1,
.section-heading h2,
.case-heading h2,
.archive-title {
    line-height: 0.86;
}

.hero h1 {
    text-wrap: balance;
    text-shadow: 0 18px 44px rgba(0, 0, 0, 0.55);
}

.hero--home h1 {
    max-width: 650px;
}

.hero--cases h1 {
    max-width: 620px;
    font-style: italic;
}

.hero--about .hero__content {
    min-height: 320px;
    display: grid;
    place-items: center;
}

.hero--about .hero__outline {
    left: -4vw;
    bottom: -8%;
    color: rgba(246, 190, 190, 0.22);
    font-size: clamp(150px, 30vw, 420px);
}

.hero__outline {
    color: rgba(255, 255, 255, 0.075);
}

.eyebrow,
.hero-steps li,
.section-heading p,
.detail-group p,
.detail-row p,
.hours p,
.case-notes h3 {
    letter-spacing: 0.13em;
}

.feature-panel--light,
.quote-card {
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.24);
}

.feature-panel--light {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(246, 244, 239, 0.92)),
        var(--off-white);
}

.image-frame,
.comparison,
.service-card,
.testimonial,
.value-card,
.case-notes article,
.cta-card {
    position: relative;
}

.image-frame {
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02), 0 18px 46px rgba(0, 0, 0, 0.28);
}

.image-frame::before,
.comparison::before {
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(5, 5, 5, 0.04), rgba(5, 5, 5, 0.38)),
        radial-gradient(circle at 88% 18%, rgba(213, 0, 28, 0.22), transparent 28%);
    mix-blend-mode: multiply;
}

.image-frame img,
.comparison img,
.service-card img {
    filter: saturate(0.88) contrast(1.12) brightness(0.88);
}

.service-card,
.testimonial,
.value-card,
.case-notes article,
.cta-card {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent),
        var(--panel);
}

.service-card::after,
.testimonial::after,
.case-notes article::after {
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    top: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--red), transparent 42%);
    opacity: 0.72;
}

.service-card .image-frame,
.archive-case .comparison,
.archive-case .image-frame {
    border-color: rgba(255, 255, 255, 0.12);
}

.image-band::after,
.map-band::after {
    background:
        linear-gradient(90deg, rgba(5, 5, 5, 0.55), rgba(5, 5, 5, 0.18), rgba(5, 5, 5, 0.58)),
        rgba(5, 5, 5, 0.35);
}

.image-band img,
.map-band img {
    filter: saturate(0.8) contrast(1.15) brightness(0.76);
}

.contact-hero {
    align-items: center;
}

.contact-hero .image-frame {
    border-color: rgba(213, 0, 28, 0.34);
    background:
        radial-gradient(circle at 88% 20%, rgba(213, 0, 28, 0.32), transparent 32%),
        var(--panel);
}

.quote-card {
    border: 1px solid rgba(246, 244, 239, 0.34);
}

.quote-card input,
.quote-card textarea,
.quote-card select {
    border: 1px solid #d2d0cb;
    padding-inline: 12px;
    background: #fffefb;
}

.quote-card label {
    color: #77736f;
}

.upload-placeholder {
    border-color: #c9c6c1;
    background:
        linear-gradient(135deg, rgba(213, 0, 28, 0.035), transparent),
        #faf9f5;
}

.case-filter {
    background: rgba(17, 19, 21, 0.98);
}

.case-filter__inner {
    justify-content: flex-start;
}

.case-heading {
    border-bottom: 1px solid var(--line);
    padding-bottom: 18px;
}

.archive-case__caption h3 {
    text-wrap: balance;
}

.service-row {
    position: relative;
}

.service-row::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 2px;
    background: var(--red);
    opacity: 0;
    transition: opacity 180ms ease;
}

.service-row:hover::before {
    opacity: 1;
}

.service-row .image-frame {
    border-color: rgba(255, 255, 255, 0.12);
}

.cta-card,
.cta-strip {
    background:
        radial-gradient(circle at 50% 0, rgba(213, 0, 28, 0.12), transparent 32%),
        var(--panel);
}

@media (min-width: 981px) {
    .section--lift .feature-panel {
        width: min(100%, 960px);
    }

    .hero--cases .hero__content,
    .hero--services .hero__content {
        align-self: end;
        padding-bottom: clamp(70px, 8vw, 112px);
    }
}

@media (max-width: 640px) {
    .hero__media::before {
        background:
            radial-gradient(circle at 76% 30%, rgba(213, 0, 28, 0.22), transparent 28%),
            linear-gradient(180deg, rgba(5, 5, 5, 0.58), rgba(5, 5, 5, 0.95) 68%);
    }

    .hero--about .hero__outline {
        left: -10vw;
        bottom: 18%;
        font-size: 138px;
    }

    .hero--about .hero__content {
        min-height: 0;
        place-items: center start;
    }

    .contact-hero .image-frame {
        order: -1;
    }

    .quote-card input,
    .quote-card textarea,
    .quote-card select {
        min-height: 46px;
    }
}

/* Targeted About quality/benefits section alignment. */
.about-quality-section .about-choice--quality h2 {
    font-size: clamp(29px, 3vw, 44px);
    line-height: 0.96;
}

.about-quality-section .about-choice--quality .line-list li {
    grid-template-columns: 54px minmax(0, 1fr);
    grid-template-rows: auto auto;
}

.about-quality-section .about-choice--quality .line-list li::before {
    grid-row: 1 / span 2;
}

.about-quality-section .about-choice--quality .line-list strong,
.about-quality-section .about-choice--quality .line-list span {
    grid-column: 2;
}

/* Full visual rescale + Stitch alignment pass. */
:root {
    --gutter: 16px;
    --space: clamp(42px, 5.4vw, 74px);
    --edge: clamp(16px, 3vw, 40px);
    --radius: 5px;
}

body {
    font-size: 13.5px;
}

.site-header__inner {
    min-height: 62px;
    gap: 14px;
}

.site-header.is-compact .site-header__inner {
    min-height: 48px;
}

.brand {
    font-size: clamp(16px, 1.45vw, 22px);
}

.primary-nav {
    gap: clamp(14px, 2vw, 24px);
}

.primary-nav__link {
    font-size: 11px;
}

.header-actions {
    gap: 8px;
}

.hero {
    min-height: clamp(560px, 78vh, 720px);
}

.hero--page {
    min-height: clamp(430px, 62vh, 590px);
}

.hero__content {
    padding-top: 64px;
}

.hero h1 {
    max-width: 610px;
    margin-block: 8px 16px;
    font-size: clamp(42px, 5.7vw, 86px);
    line-height: 0.9;
}

.hero--home h1,
.hero--cases h1 {
    max-width: 570px;
}

.contact-hero h1 {
    font-size: clamp(38px, 5.3vw, 78px);
}

.hero__intro {
    max-width: 520px;
    font-size: clamp(13.5px, 1vw, 16px);
}

.hero__outline {
    font-size: clamp(70px, 15vw, 220px);
}

.hero--about .hero__outline {
    font-size: clamp(118px, 24vw, 330px);
}

.eyebrow,
.hero-steps li,
.detail-group p,
.detail-row p,
.hours p,
.case-notes h3 {
    font-size: 10px;
}

.section {
    padding-block: var(--space);
}

.section--lift {
    margin-top: clamp(-62px, -4.8vw, -28px);
}

.feature-panel {
    gap: clamp(18px, 3vw, 42px);
    padding: clamp(20px, 3.4vw, 46px);
}

.feature-panel h2,
.section-heading h2,
.about-choice h2,
.faq h2,
.archive-title,
.insurance-panel h2 {
    font-size: clamp(25px, 3vw, 46px);
    line-height: 0.94;
}

.section-heading {
    gap: 18px;
    margin-bottom: clamp(20px, 2.8vw, 36px);
}

.section-heading p {
    max-width: 560px;
    font-size: 12px;
}

.btn,
.text-link,
.arrow-link {
    min-height: 38px;
    padding: 9px 14px;
    font-size: 10px;
}

.button-row {
    gap: 10px;
}

.card-grid,
.card-grid--services,
.testimonial-grid,
.values-grid,
.case-notes,
.archive-grid,
.contact-grid,
.contact-hero {
    gap: clamp(16px, 3vw, 44px);
}

.service-card,
.testimonial,
.value-card,
.case-notes article,
.cta-card {
    padding: clamp(16px, 2vw, 22px);
}

.service-card .image-frame {
    margin-bottom: 13px;
}

.service-card h3,
.value-card h3,
.archive-case h3 {
    font-size: clamp(19px, 1.7vw, 26px);
}

.value-card span {
    margin-bottom: 26px;
    font-size: 22px;
}

.comparison {
    min-height: 210px;
}

.comparison__label {
    left: 16px;
    bottom: 14px;
    padding: 6px 9px;
    font-size: 9.5px;
}

.image-frame--tall {
    min-height: 360px;
}

.image-band {
    min-height: clamp(260px, 34vw, 400px);
}

.image-band h2 {
    font-size: clamp(31px, 4.2vw, 64px);
}

.about-choice {
    gap: clamp(24px, 4.2vw, 56px);
}

.about-quality-section .about-choice--quality h2 {
    font-size: clamp(27px, 2.65vw, 40px);
}

.about-choice--quality .gallery-pair .image-frame {
    min-height: 300px;
}

.contact-grid {
    grid-template-columns: 0.86fr 1.14fr;
}

.quote-card,
.contact-details,
.faq {
    padding: clamp(18px, 2.2vw, 28px);
}

.quote-card h2,
.contact-details h2,
.faq h2 {
    margin-bottom: 22px;
}

.quote-card form,
.quote-card .form-grid {
    gap: 12px;
}

.quote-card input,
.quote-card textarea,
.quote-card select {
    min-height: 42px;
    padding: 9px 11px;
}

.quote-card textarea {
    min-height: 100px;
}

.faq-item {
    padding-block: 14px;
}

.cta-strip {
    padding-block: clamp(34px, 5vw, 66px);
}

.cta-strip h2,
.cta-card h2 {
    font-size: clamp(26px, 3.6vw, 54px);
}

.site-footer {
    padding-block: clamp(34px, 5vw, 60px) 22px;
}

.site-footer__grid {
    gap: clamp(20px, 3.5vw, 48px);
}

.service-row {
    padding-block: 26px;
    gap: clamp(16px, 3vw, 36px);
}

.service-row h2 {
    font-size: clamp(25px, 3.1vw, 44px);
}

.service-row .image-frame {
    min-height: 230px;
}

.archive-case {
    gap: 12px;
}

.archive-case .comparison,
.archive-case .image-frame {
    min-height: 230px;
}

@media (max-width: 980px) {
    :root {
        --space: 54px;
    }

    .hero,
    .hero--page {
        min-height: 540px;
    }

    .hero h1,
    .contact-hero h1 {
        font-size: clamp(38px, 9vw, 66px);
    }

    .feature-panel,
    .split-panel,
    .about-choice,
    .contact-hero,
    .contact-grid,
    .service-row {
        gap: 24px;
    }
}

@media (max-width: 640px) {
    :root {
        --edge: 18px;
        --space: 46px;
    }

    body {
        font-size: 13px;
    }

    .site-header__inner {
        min-height: 60px;
    }

    .primary-nav {
        inset: 60px 0 auto;
        padding-bottom: 18px;
    }

    .primary-nav__link {
        padding: 13px 0;
    }

    .hero,
    .hero--page {
        min-height: 500px;
    }

    .hero h1,
    .contact-hero h1 {
        font-size: clamp(36px, 12vw, 50px);
        line-height: 0.92;
    }

    .hero__intro {
        font-size: 14px;
    }

    .hero__outline,
    .hero--about .hero__outline {
        font-size: 112px;
    }

    .btn {
        width: 100%;
        min-height: 42px;
    }

    .feature-panel,
    .contact-grid,
    .contact-hero,
    .quote-card,
    .contact-details,
    .faq,
    .service-card,
    .testimonial,
    .value-card,
    .case-notes article,
    .cta-card {
        padding: 16px;
    }

    .contact-grid,
    .contact-hero,
    .form-grid--two,
    .form-grid--three {
        grid-template-columns: 1fr;
    }

    .feature-panel h2,
    .section-heading h2,
    .about-choice h2,
    .faq h2,
    .archive-title,
    .insurance-panel h2 {
        font-size: clamp(26px, 9vw, 38px);
    }

    .card-grid--services,
    .testimonial-grid,
    .values-grid,
    .case-notes,
    .archive-grid {
        grid-template-columns: 1fr;
    }

    .comparison,
    .archive-case .comparison,
    .archive-case .image-frame {
        min-height: 190px;
    }

    .image-band {
        min-height: 300px;
    }

    .about-choice--quality .gallery-pair .image-frame {
        min-height: 210px;
    }

    .quote-card input,
    .quote-card textarea,
    .quote-card select {
        min-height: 42px;
    }

    .quote-card textarea {
        min-height: 96px;
    }
}

/* Targeted homepage intro white panel layout fix. */
.home-intro-panel {
    width: min(calc(100% + 72px), calc(100vw - 36px));
    margin-inline: auto;
    transform: translateX(-50%);
    margin-left: 50%;
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.62fr);
    gap: clamp(32px, 5vw, 76px);
    padding-inline: clamp(34px, 5.4vw, 82px);
}

.home-intro-panel > div:first-child {
    max-width: 560px;
}

.home-intro-panel .image-frame {
    justify-self: end;
    width: min(100%, 430px);
    max-width: 430px;
}

@media (max-width: 1180px) {
    .home-intro-panel {
        width: min(calc(100% + 42px), calc(100vw - 28px));
        grid-template-columns: minmax(0, 0.92fr) minmax(310px, 0.62fr);
        gap: clamp(26px, 4vw, 48px);
        padding-inline: clamp(28px, 4vw, 52px);
    }

    .home-intro-panel .image-frame {
        max-width: 360px;
    }
}

@media (max-width: 900px) {
    .home-intro-panel {
        width: 100%;
        margin-left: 0;
        transform: none;
        grid-template-columns: 1fr;
    }

    .home-intro-panel > div:first-child {
        max-width: 660px;
    }

    .home-intro-panel .image-frame {
        justify-self: stretch;
        width: 100%;
        max-width: none;
        aspect-ratio: 16 / 10;
    }
}

@media (max-width: 640px) {
    .home-intro-panel {
        padding-inline: 18px;
        gap: 18px;
    }
}

.section--lift .home-intro-panel {
    width: min(calc(100% + 72px), calc(100vw - 36px));
}

@media (max-width: 1180px) {
    .section--lift .home-intro-panel {
        width: min(calc(100% + 42px), calc(100vw - 28px));
    }
}

@media (max-width: 900px) {
    .section--lift .home-intro-panel {
        width: 100%;
    }
}

/* Before/after comparison slider repair: stack both images in one fixed frame. */
.comparison {
    --comparison-position: 50%;
    isolation: isolate;
}

.comparison > .comparison__image,
.comparison__after,
.comparison__after .comparison__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
}

.comparison > .comparison__image,
.comparison__after .comparison__image {
    object-fit: cover;
    object-position: center;
}

.comparison__after {
    width: 100%;
    overflow: hidden;
    border-right: 0;
    clip-path: inset(0 calc(100% - var(--comparison-position)) 0 0);
    z-index: 2;
}

.comparison__after img,
.comparison__after .comparison__image {
    width: 100%;
    max-width: none;
}

.comparison__handle {
    left: var(--comparison-position);
    z-index: 4;
}

.comparison__handle::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    transform: translateX(-50%);
    background: var(--red);
    box-shadow: 0 0 22px rgba(213, 0, 28, 0.44);
}

.comparison__handle span {
    z-index: 1;
}

.comparison__label {
    z-index: 5;
}

