/*
|--------------------------------------------------------------------------
| Revival Remodelers LLC - custom styles
|--------------------------------------------------------------------------
|
| The visual direction is based on the supplied mock-up: dark surfaces,
| warm gold accents, large condensed headings, and image-backed cards.
| Bootstrap handles the underlying grid and basic components; this file
| provides the brand look and responsive behavior.
|
*/

:root {
    --color-background: #080b12;
    --color-background-soft: #111723;
    --color-surface: rgba(11, 16, 27, 0.9);
    --color-surface-strong: rgba(5, 9, 16, 0.94);
    --color-surface-light: #f3f0ea;
    --color-text: #eff2f7;
    --color-text-muted: #b7c0cf;
    --color-dark-text: #141820;
    --color-accent: #ff9b1f;
    --color-accent-strong: #ffb13d;
    --color-accent-deep: #d97706;
    --color-border: rgba(255, 177, 61, 0.24);
    --color-shadow: rgba(0, 0, 0, 0.35);
    --header-height: 84px;
    --desktop-ribbon-height: 72px;
    --sticky-footer-height: 92px;
    --radius-sm: 14px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --container-max: 1320px;
    --transition-fast: 0.2s ease;
    --transition-medium: 0.35s ease;
    --section-padding: 4.25rem;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--color-text);
    background:
        radial-gradient(circle at top center, rgba(255, 168, 54, 0.08), transparent 30%),
        linear-gradient(180deg, #090d14 0%, #0e131d 100%);
    min-width: 320px;
    padding-top: calc(var(--header-height) + 0.5rem);
    padding-bottom: calc(var(--sticky-footer-height) + 1rem);
}

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

a,
button {
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), background-color var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast), opacity var(--transition-fast);
}

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

button {
    font: inherit;
}

:focus-visible {
    outline: 3px solid rgba(255, 177, 61, 0.85);
    outline-offset: 3px;
}

.container {
    max-width: var(--container-max);
}

.skip-link {
    position: absolute;
    top: -100px;
    left: 1rem;
    z-index: 9999;
    padding: 0.85rem 1rem;
    background: #ffffff;
    color: #111;
    border-radius: 12px;
    font-weight: 700;
}

.skip-link:focus {
    top: 1rem;
}

h1,
h2,
h3,
h4,
h5,
h6,
.hero-headline,
.hero-subheadline,
.hero-title,
.section-heading h2,
.estimate-form-title,
.footer-heading,
.modal-title,
.service-card-title,
.work-card-title {
    font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
    letter-spacing: 0.01em;
    margin: 0;
}

p {
    margin: 0 0 1rem;
}

.section-kicker,
.modal-eyebrow,
.hero-service-area,
.service-card-badge {
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-size: 0.82rem;
    font-weight: 700;
}

.hero-script-line {
    font-family: "Yellowtail", cursive;
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1;
    color: #fff7ec;
    margin-bottom: 1rem;
}

.section {
    position: relative;
    padding: var(--section-padding) 0;
}

.section-light {
    background:
        linear-gradient(180deg, rgba(247, 243, 236, 0.97), rgba(234, 228, 219, 0.96)),
        linear-gradient(180deg, #f5f1e7, #ebe3d8);
    color: var(--color-dark-text);
}

.section-dark {
    background:
        linear-gradient(180deg, rgba(7, 10, 15, 0.96), rgba(13, 18, 29, 0.96)),
        radial-gradient(circle at top right, rgba(255, 168, 54, 0.12), transparent 25%);
    color: var(--color-text);
}

.section-contact {
    padding-bottom: calc(var(--section-padding) + 0.75rem);
}

.section-heading {
    max-width: 860px;
    margin: 0 auto 2rem;
    text-align: center;
}

.section-heading h2 {
    font-size: clamp(2.2rem, 4vw, 4rem);
    line-height: 0.95;
    text-transform: uppercase;
    margin-bottom: 0.9rem;
}

.section-heading p {
    font-size: 1.04rem;
    line-height: 1.7;
}

.section-heading-light,
.section-heading-light p {
    color: var(--color-text);
}

.section-heading-light .section-kicker {
    color: var(--color-accent-strong);
}

.section-kicker {
    color: var(--color-accent-deep);
    margin-bottom: 0.6rem;
}

.section-heading-light .section-kicker,
.modal-eyebrow {
    color: var(--color-accent-strong);
}

.btn {
    border-radius: 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.95rem 1.25rem;
    border-width: 2px;
}

.btn-brand {
    color: #121212;
    border-color: transparent;
    background:
        linear-gradient(180deg, #ffbd54 0%, #ff9b1f 58%, #de7a05 100%);
    box-shadow: 0 18px 34px rgba(222, 122, 5, 0.28);
}

.btn-brand:hover,
.btn-brand:focus-visible {
    color: #0f0f0f;
    transform: translateY(-1px);
    box-shadow: 0 22px 40px rgba(222, 122, 5, 0.34);
}

.btn-brand-compact {
    padding: 0.9rem 1.1rem;
    min-height: 54px;
}

.btn-brand-wide {
    width: 100%;
}

.btn-dark-outline,
.btn-outline-brand {
    background: rgba(9, 12, 18, 0.62);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
}

.btn-outline-brand:hover,
.btn-dark-outline:hover,
.btn-outline-brand:focus-visible,
.btn-dark-outline:focus-visible {
    color: #fff;
    border-color: var(--color-accent-strong);
    background: rgba(16, 21, 33, 0.88);
}

.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1045;
    background:
        linear-gradient(180deg, rgba(7, 10, 15, 0.98), rgba(7, 10, 15, 0.9));
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
}

.header-row {
    min-height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.site-logo-link {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    min-width: 0;
}

.site-logo {
    width: 184px;
    height: auto;
}

.site-nav {
    flex: 1 1 auto;
    display: flex;
    justify-content: flex-end;
}

.nav-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.75rem 0.95rem;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(15, 22, 35, 0.76);
    color: #fff;
}

.nav-toggle-label {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.nav-toggle-bars {
    position: relative;
    width: 18px;
    height: 12px;
}

.nav-toggle-bars::before,
.nav-toggle-bars::after,
.nav-toggle-bars {
    display: block;
    background: #fff;
    border-radius: 999px;
    height: 2px;
}

.nav-toggle-bars::before,
.nav-toggle-bars::after {
    content: "";
    position: absolute;
    left: 0;
    width: 18px;
}

.nav-toggle-bars::before {
    top: -5px;
}

.nav-toggle-bars::after {
    bottom: -5px;
}

.nav-menu {
    position: absolute;
    top: calc(100% + 0.75rem);
    right: 1rem;
    width: min(340px, calc(100vw - 2rem));
    padding: 1rem;
    border-radius: 22px;
    background: rgba(8, 11, 18, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.09);
    box-shadow: 0 24px 48px var(--color-shadow);
    display: none;
    flex-direction: column;
    gap: 0.2rem;
}

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

.nav-link {
    padding: 0.85rem 1rem;
    border-radius: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #f5f7fb;
    font-size: 0.95rem;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.is-active {
    color: #111;
    background: linear-gradient(180deg, #ffbd54 0%, #ff9b1f 100%);
}

.header-mobile-call {
    flex: 0 0 auto;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.1rem;
    min-width: 0;
    padding: 0.75rem 1rem;
    border-radius: 16px;
    background:
        linear-gradient(180deg, rgba(255, 189, 84, 0.22), rgba(255, 155, 31, 0.13));
    border: 1px solid rgba(255, 177, 61, 0.35);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15);
    color: #fff;
}

.header-mobile-call span {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #ffd89a;
}

.header-mobile-call strong {
    font-size: 1rem;
    font-weight: 800;
}

.desktop-call-ribbon {
    display: none;
}

.hero-section {
    position: relative;
    overflow: clip;
    padding: 1.5rem 0 2.5rem;
    background:
        linear-gradient(90deg, rgba(7, 10, 15, 0.94) 0%, rgba(7, 10, 15, 0.6) 46%, rgba(7, 10, 15, 0.4) 100%),
        #0a0f17;
}

.hero-backdrop {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(8, 11, 18, 0.95) 0%, rgba(8, 11, 18, 0.82) 30%, rgba(8, 11, 18, 0.34) 54%, rgba(8, 11, 18, 0.15) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.42)),
        url("../img/hero-house.jpg") center right / cover no-repeat;
    opacity: 1;
    transform: scale(1.02);
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-layout {
    display: grid;
    gap: 1.5rem;
}

.hero-copy {
    max-width: 720px;
    padding: 1rem 0 0.5rem;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 0.88;
    text-transform: uppercase;
    margin-bottom: 0.85rem;
}

.hero-title span {
    display: inline-block;
    color: var(--color-accent-strong);
}

.hero-headline {
    font-size: clamp(2rem, 5.7vw, 4.2rem);
    line-height: 0.95;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
}

.hero-subheadline {
    display: inline-block;
    font-size: clamp(1.4rem, 4vw, 2.4rem);
    text-transform: uppercase;
    line-height: 1;
    padding: 0.55rem 0.95rem;
    border-radius: 16px;
    background: rgba(255, 177, 61, 0.12);
    color: var(--color-accent-strong);
    border: 1px solid rgba(255, 177, 61, 0.28);
    margin-bottom: 1rem;
}

.hero-checklist {
    list-style: none;
    margin: 0 0 1.5rem;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem 1rem;
}

.hero-checklist li {
    position: relative;
    padding-left: 1.3rem;
    font-size: 1rem;
    font-weight: 600;
    color: #e4e9f2;
}

.hero-checklist li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-accent-strong);
    font-weight: 800;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    align-items: stretch;
}

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

.hero-service-area {
    color: #e9eef9;
    font-size: 0.92rem;
    margin-top: 1.1rem;
    letter-spacing: 0.08em;
}

.hero-visual-card {
    align-self: end;
    max-width: 420px;
    padding: 1.3rem 1.2rem;
    border-radius: var(--radius-lg);
    background: rgba(9, 13, 22, 0.76);
    border: 1px solid rgba(255, 177, 61, 0.22);
    box-shadow: 0 28px 60px var(--color-shadow);
    backdrop-filter: blur(16px);
}

.hero-visual-card h2 {
    font-size: clamp(1.9rem, 5vw, 3rem);
    line-height: 0.95;
    text-transform: uppercase;
    margin-bottom: 0.7rem;
}

.hero-visual-card p {
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 0;
}

.card-scroller-shell {
    position: relative;
}

.scroller-topline {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 0.9rem;
}

.scroller-arrows {
    display: none;
    gap: 0.55rem;
}

.scroller-arrow {
    width: 48px;
    height: 48px;
    border-radius: 999px;
    border: 1px solid rgba(255, 177, 61, 0.25);
    background: rgba(12, 18, 30, 0.88);
    color: #fff;
    font-size: 1.5rem;
    line-height: 1;
}

.section-light .scroller-arrow {
    background: rgba(22, 27, 36, 0.88);
}

.scroller-arrow:hover,
.scroller-arrow:focus-visible {
    border-color: var(--color-accent-strong);
    background: rgba(255, 155, 31, 0.15);
}

.card-scroller-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(82%, 82%);
    gap: 1rem;
    overflow-x: auto;
    padding: 0 0 0.75rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 155, 31, 0.55) transparent;
}

.card-scroller-track::-webkit-scrollbar {
    height: 10px;
}

.card-scroller-track::-webkit-scrollbar-thumb {
    background: rgba(255, 155, 31, 0.55);
    border-radius: 999px;
}

.service-card,
.work-card {
    position: relative;
    min-height: 300px;
    padding: 1rem;
    border: 0;
    border-radius: 26px;
    overflow: hidden;
    text-align: left;
    color: #fff;
    box-shadow: 0 24px 48px var(--color-shadow);
    scroll-snap-align: start;
}

.service-card::before,
.work-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(7, 9, 15, 0.08) 0%, rgba(7, 9, 15, 0.2) 28%, rgba(7, 9, 15, 0.86) 100%),
        var(--card-image) center center / cover no-repeat;
    transform: scale(1.02);
    transition: transform var(--transition-medium), filter var(--transition-medium);
}

.service-card::after,
.work-card::after {
    content: "";
    position: absolute;
    inset: auto 16px 16px 16px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(255, 189, 84, 0.95), rgba(255, 155, 31, 0.65));
    box-shadow: 0 0 20px rgba(255, 155, 31, 0.4);
}

.service-card:hover::before,
.service-card:focus-visible::before,
.work-card:hover::before,
.work-card:focus-visible::before {
    transform: scale(1.08);
}

.service-card > *,
.work-card > * {
    position: relative;
    z-index: 1;
}

.service-card-badge {
    display: inline-flex;
    padding: 0.45rem 0.7rem;
    border-radius: 999px;
    background: rgba(255, 177, 61, 0.16);
    border: 1px solid rgba(255, 177, 61, 0.24);
    color: #ffd89a;
    margin-bottom: auto;
}

.service-card-title,
.work-card-title {
    display: block;
    margin-top: auto;
    padding-top: 9rem;
    font-size: clamp(2rem, 6vw, 2.6rem);
    line-height: 0.92;
    text-transform: uppercase;
    text-wrap: balance;
}

.work-card-title {
    padding-top: 11rem;
}

.service-track .service-card {
    min-height: 340px;
}

.work-track .work-card {
    min-height: 320px;
}

.service-card-grid,
.work-card-grid {
    width: 100%;
    min-height: 330px;
}

.scroller-dots {
    display: flex;
    justify-content: center;
    gap: 0.55rem;
    margin-top: 1rem;
}

.scroller-dot {
    width: 11px;
    height: 11px;
    border-radius: 999px;
    border: 0;
    background: rgba(255, 155, 31, 0.26);
}

.scroller-dot.is-active {
    background: var(--color-accent);
    transform: scale(1.15);
}

.value-card,
.process-card,
.content-panel,
.contact-detail-card,
.estimate-form-shell {
    height: 100%;
    border-radius: 24px;
    border: 1px solid rgba(255, 177, 61, 0.16);
    box-shadow: 0 18px 38px rgba(11, 16, 27, 0.12);
}

.value-card,
.process-card,
.content-panel {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.78);
}

.section-dark .value-card,
.section-dark .process-card,
.section-dark .content-panel {
    background: rgba(8, 11, 18, 0.86);
    color: var(--color-text);
}

.value-card h3,
.process-card h3,
.content-panel h2 {
    font-size: 2rem;
    text-transform: uppercase;
    line-height: 0.95;
    margin-bottom: 0.7rem;
}

.value-card p,
.process-card p,
.content-panel p {
    margin-bottom: 0;
    line-height: 1.7;
}

.content-panel .btn {
    margin-top: 1rem;
}

.panel-divider {
    opacity: 0.15;
    margin: 1.25rem 0;
}

.contact-copy h2 {
    font-size: clamp(2.2rem, 4vw, 4rem);
    text-transform: uppercase;
    line-height: 0.95;
    margin-bottom: 0.9rem;
}

.contact-copy p {
    color: var(--color-text-muted);
    line-height: 1.75;
}

.contact-detail-card {
    margin-top: 1.5rem;
    padding: 1.35rem;
    background: rgba(255, 189, 84, 0.1);
    display: grid;
    gap: 0.55rem;
}

.contact-detail-card strong {
    color: #fff;
    font-size: 1.05rem;
}

.contact-detail-card span {
    color: #d7deea;
}

.contact-detail-card a {
    color: var(--color-accent-strong);
    font-weight: 800;
}

.estimate-form-shell {
    padding: 1.5rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(244, 239, 231, 0.98));
    color: var(--color-dark-text);
}

.estimate-form-title {
    font-size: clamp(2.1rem, 5vw, 3.2rem);
    line-height: 0.95;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
}

.estimate-form-intro {
    color: #4b5565;
    line-height: 1.7;
}

.estimate-form-copy {
    margin-bottom: 1rem;
}

.estimate-form .form-label {
    font-weight: 700;
    color: #202734;
}

.estimate-form .form-control,
.estimate-form .form-select {
    min-height: 54px;
    border-radius: 14px;
    border: 1px solid rgba(23, 32, 45, 0.16);
    padding: 0.85rem 1rem;
    font-size: 1rem;
}

.estimate-form .form-control:focus,
.estimate-form .form-select:focus {
    border-color: rgba(255, 155, 31, 0.48);
    box-shadow: 0 0 0 0.22rem rgba(255, 155, 31, 0.15);
}

.estimate-form-actions {
    margin-top: 1rem;
    display: grid;
    gap: 0.8rem;
}

.form-status {
    min-height: 1.5rem;
    font-weight: 700;
    font-size: 0.95rem;
}

.form-status.is-success {
    color: #0f8b45;
}

.form-status.is-error {
    color: #b42318;
}

.form-status.is-pending {
    color: #915b00;
}

.subpage-hero {
    position: relative;
    padding: 2rem 0 2.25rem;
    background:
        linear-gradient(90deg, rgba(8, 11, 18, 0.94), rgba(8, 11, 18, 0.72) 48%, rgba(8, 11, 18, 0.48) 100%),
        url("../img/hero-house.jpg") center right / cover no-repeat;
}

.subpage-hero-copy {
    max-width: 820px;
    padding: 1.25rem 0 0.5rem;
}

.subpage-hero-copy h1 {
    font-size: clamp(2.6rem, 7vw, 5rem);
    line-height: 0.9;
    text-transform: uppercase;
    margin-bottom: 0.9rem;
}

.subpage-hero-copy p {
    max-width: 720px;
    color: #d8dfec;
    line-height: 1.75;
    margin-bottom: 0;
}

.site-footer {
    background: #06080d;
    padding: 3.5rem 0 calc(2rem + var(--sticky-footer-height));
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-heading {
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.footer-subheading {
    font-size: 1.65rem;
    text-transform: uppercase;
    line-height: 0.95;
    margin-bottom: 0.85rem;
}

.footer-copy,
.footer-link-list a,
.footer-phone-link,
.site-footer-meta p {
    color: var(--color-text-muted);
}

.footer-copy {
    line-height: 1.8;
}

.footer-copy-small {
    margin-top: 0.5rem;
}

.footer-link-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.45rem;
}

.footer-link-list a:hover,
.footer-link-list a:focus-visible,
.footer-phone-link:hover,
.footer-phone-link:focus-visible {
    color: var(--color-accent-strong);
}

.footer-phone-link {
    display: inline-flex;
    margin-top: 1rem;
    font-weight: 800;
}

.site-footer-meta {
    margin-top: 2rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.sticky-footer-bar {
    position: fixed;
    inset: auto 0 0 0;
    z-index: 1040;
    background:
        linear-gradient(180deg, rgba(7, 10, 15, 0.98), rgba(7, 10, 15, 0.94));
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
}

.sticky-footer-inner {
    min-height: var(--sticky-footer-height);
    display: grid;
    gap: 0.75rem;
    align-items: center;
    padding: 0.8rem 0;
}

.sticky-footer-copy {
    display: grid;
    gap: 0.15rem;
}

.sticky-footer-copy strong {
    font-size: 0.95rem;
    color: #fff;
}

.sticky-footer-copy span {
    font-size: 0.84rem;
    color: #d1d8e6;
}

.sticky-footer-actions {
    display: grid;
    gap: 0.75rem;
}

.sticky-footer-call {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.12rem;
    padding: 0.95rem 1.05rem;
    border-radius: 16px;
    background: rgba(255, 177, 61, 0.11);
    border: 1px solid rgba(255, 177, 61, 0.24);
}

.sticky-footer-call span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #ffd89a;
}

.sticky-footer-call strong {
    font-size: 1.05rem;
    color: #fff;
}

.site-modal-content {
    border: 1px solid rgba(255, 177, 61, 0.22);
    background: linear-gradient(180deg, rgba(7, 10, 15, 0.98), rgba(14, 19, 30, 0.98));
    color: #fff;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 32px 68px rgba(0, 0, 0, 0.45);
}

.site-modal-header {
    border: 0;
    padding: 1.25rem 1.25rem 0;
}

.site-modal-header .modal-title {
    font-size: clamp(2rem, 5vw, 3rem);
    line-height: 0.95;
    text-transform: uppercase;
}

.site-modal-header .btn-close {
    opacity: 1;
}

.service-modal-layout {
    display: grid;
    gap: 1.5rem;
    align-items: start;
}

.service-modal-summary {
    color: var(--color-accent-strong);
    font-weight: 800;
    line-height: 1.6;
}

.service-modal-description {
    color: #dde4f0;
    line-height: 1.8;
}

.service-modal-highlights {
    list-style: none;
    margin: 1rem 0 0;
    padding: 0;
    display: grid;
    gap: 0.6rem;
}

.service-modal-highlights li {
    position: relative;
    padding-left: 1.2rem;
    color: #f4f7fb;
}

.service-modal-highlights li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--color-accent-strong);
    font-weight: 800;
}

.service-modal-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1.35rem;
}

.service-modal-image-grid {
    display: grid;
    gap: 1rem;
}

.service-modal-figure {
    margin: 0;
    border-radius: 22px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.service-modal-figure img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.service-modal-figure figcaption {
    padding: 0.85rem 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #ffd89a;
    font-size: 0.78rem;
}

.legal-copy {
    max-width: 980px;
    margin: 0 auto;
    padding: 1.5rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(255, 177, 61, 0.16);
    box-shadow: 0 18px 38px rgba(11, 16, 27, 0.12);
}

.legal-copy h2 {
    font-size: 2rem;
    text-transform: uppercase;
    line-height: 0.95;
    margin: 1.8rem 0 0.7rem;
}

.legal-copy p {
    line-height: 1.8;
    color: #212834;
}

.legal-copy h2:first-of-type {
    margin-top: 0;
}

.legal-notice {
    padding: 1rem 1.1rem;
    margin-bottom: 1.35rem;
    border-radius: 18px;
    background: rgba(255, 155, 31, 0.12);
    border: 1px solid rgba(255, 155, 31, 0.28);
}

@media (min-width: 576px) {
    .hero-actions {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .hero-btn {
        width: auto;
        min-width: 220px;
    }

    .sticky-footer-actions {
        grid-template-columns: repeat(2, max-content);
        justify-content: start;
    }

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

@media (min-width: 768px) {
    body {
        padding-top: calc(var(--header-height) + 0.75rem);
    }

    .site-logo {
        width: 230px;
    }

    .header-mobile-call {
        display: inline-flex;
    }

    .hero-layout {
        grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.82fr);
        align-items: end;
    }

    .hero-section {
        padding: 2.2rem 0 3rem;
    }

    .card-scroller-track {
        grid-auto-columns: minmax(46%, 46%);
    }

    .sticky-footer-inner {
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 1rem;
    }

    .sticky-footer-actions {
        align-items: center;
    }

    .estimate-form-shell {
        padding: 1.75rem;
    }

    .service-modal-layout {
        grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    }
}

@media (min-width: 992px) {
    body {
        padding-top: calc(var(--header-height) + var(--desktop-ribbon-height) + 1rem);
    }

    .nav-toggle {
        display: none;
    }

    .nav-menu {
        position: static;
        display: inline-flex !important;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        width: auto;
        padding: 0;
        background: transparent;
        border: 0;
        box-shadow: none;
        gap: 0.2rem;
    }

    .site-nav {
        justify-content: center;
    }

    .header-mobile-call {
        display: none;
    }

    .desktop-call-ribbon {
        display: block;
        position: fixed;
        top: calc(var(--header-height) + 0.25rem);
        right: 0;
        left: 0;
        z-index: 1044;
        pointer-events: none;
    }

    .desktop-call-ribbon-container {
        display: flex;
        justify-content: flex-end;
    }

    .desktop-call-ribbon-link {
        pointer-events: auto;
        width: min(440px, 100%);
        display: inline-flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        padding: 1rem 1.3rem;
        border-radius: 18px;
        background:
            linear-gradient(180deg, rgba(20, 24, 36, 0.98), rgba(15, 19, 29, 0.95));
        border: 1px solid rgba(255, 177, 61, 0.32);
        box-shadow: 0 24px 48px rgba(0, 0, 0, 0.28);
        backdrop-filter: blur(14px);
    }

    .desktop-call-ribbon-label {
        display: inline-flex;
        align-items: center;
        gap: 0.7rem;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.12em;
        color: #ffd89a;
    }

    .desktop-call-ribbon-label::before {
        content: "☎";
        font-size: 1rem;
    }

    .desktop-call-ribbon-number {
        font-family: "Barlow Condensed", sans-serif;
        font-size: 2.4rem;
        line-height: 0.9;
        color: #fff;
    }

    .hero-section {
        min-height: calc(100vh - var(--header-height));
        display: flex;
        align-items: center;
    }

    .hero-layout {
        grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.72fr);
        gap: 2rem;
    }

    .hero-copy {
        padding: 2rem 0;
    }

    .scroller-arrows {
        display: inline-flex;
    }

    .card-scroller-track {
        grid-auto-columns: minmax(31%, 31%);
    }

    .service-card,
    .work-card {
        min-height: 340px;
    }

    .section {
        --section-padding: 5.4rem;
    }

    .subpage-hero {
        padding: 3rem 0 2.6rem;
    }
}

@media (min-width: 1200px) {
    .site-logo {
        width: 270px;
    }

    .header-row {
        gap: 1.4rem;
    }

    .nav-link {
        padding-inline: 1.05rem;
    }

    .card-scroller-track {
        grid-auto-columns: minmax(24%, 24%);
    }

    .hero-visual-card {
        padding: 1.6rem;
    }
}

@media (max-width: 991.98px) {
    .site-nav {
        position: relative;
    }
}

@media (max-width: 575.98px) {
    body {
        padding-top: calc(var(--header-height) + 0.35rem);
        padding-bottom: calc(var(--sticky-footer-height) + 1.1rem);
    }

    .site-logo {
        width: 152px;
    }

    .hero-title {
        font-size: clamp(2.55rem, 12vw, 4rem);
    }

    .hero-headline {
        font-size: clamp(1.85rem, 9vw, 3rem);
    }

    .service-card-title,
    .work-card-title {
        font-size: clamp(1.8rem, 10vw, 2.4rem);
    }

    .service-track .service-card,
    .work-track .work-card {
        min-height: 300px;
    }

    .sticky-footer-copy span {
        font-size: 0.78rem;
    }

    .sticky-footer-call {
        width: 100%;
    }

    .sticky-footer-actions .btn-brand-compact {
        width: 100%;
    }
}
