/* Fresh Roof / Roof Restoration landing page */
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Montserrat:wght@400;500;600;700;800&family=Pacifico&display=swap');

:root {
    --fr-navy: #1a2b5c;
    --fr-navy-deep: #142247;
    --fr-orange: #f15a24;
    --fr-orange-dark: #d94a18;
    --fr-green: #5cb83a;
    --fr-green-dark: #3d8f28;
    --fr-green-bar: #2f7a24;
    --fr-blue: #2f6fb5;
    --fr-white: #ffffff;
    --fr-text: #1a2b5c;
}

.fresh-roof-page {
    font-family: 'Montserrat', sans-serif;
    color: var(--fr-text);
    background: #fff;
}

.fresh-roof-page img {
    max-width: 100%;
    height: auto;
}

/* Hero */
.fr-hero {
    position: relative;
    background: #cfe7f7;
    padding: 48px 0 70px;
    overflow: hidden;
}

.fr-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url(../../img/fresh-roof/hero.jpg) center center / cover no-repeat;
    z-index: 0;
}

.fr-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.78) 40%, rgba(255, 255, 255, 0.2) 68%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
}

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

.fr-logo {
    display: block;
    width: min(280px, 70vw);
    margin-bottom: 28px;
}

.fr-hero-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: clamp(2.1rem, 4.2vw, 3.35rem);
    line-height: 1.05;
    color: var(--fr-navy);
    margin: 0 0 18px;
    letter-spacing: -0.02em;
}

.fr-hero-title .fr-guaranteed {
    display: inline-block;
    font-family: 'Anton', Impact, sans-serif;
    font-weight: 400;
    font-size: 1.15em;
    letter-spacing: 0.02em;
    color: var(--fr-navy);
    text-transform: uppercase;
    -webkit-text-stroke: 0.5px var(--fr-navy);
}

.fr-brush {
    display: inline-block;
    background: var(--fr-green);
    color: #fff;
    font-weight: 700;
    font-size: clamp(0.95rem, 1.6vw, 1.2rem);
    line-height: 1.25;
    padding: 10px 28px 12px;
    margin: 0 0 18px;
    border-radius: 4px 40px 8px 36px / 40px 8px 40px 8px;
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.08);
    max-width: 100%;
}

.fr-hero-text {
    font-size: 1.05rem;
    line-height: 1.55;
    color: var(--fr-navy);
    max-width: 540px;
    margin: 0 0 28px;
    font-weight: 500;
}

.fr-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    margin-bottom: 20px;
}

.fr-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    border-radius: 8px;
    padding: 14px 22px;
    transition: transform 0.2s ease, filter 0.2s ease, background-color 0.2s ease;
    white-space: nowrap;
}

.fr-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.05);
    text-decoration: none;
}

.fr-btn-orange {
    background: var(--fr-orange);
    color: #fff;
}

.fr-btn-orange:hover {
    color: #fff;
    background: var(--fr-orange-dark);
}

.fr-btn-green {
    background: var(--fr-green);
    color: #fff;
}

.fr-btn-green:hover {
    color: #fff;
    background: var(--fr-green-dark);
}

.fr-btn svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.fr-save-badge {
    width: min(280px, 80vw);
    aspect-ratio: 1;
    margin-left: auto;
    margin-right: 0;
    border-radius: 50%;
    background: #fff;
    border: 6px solid var(--fr-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 28px;
    box-shadow: 0 10px 30px rgba(20, 34, 71, 0.18);
    animation: fr-badge-in 0.8s ease both;
}

.fr-save-badge p {
    margin: 0;
    font-weight: 800;
    font-size: clamp(0.95rem, 1.5vw, 1.15rem);
    line-height: 1.25;
    color: var(--fr-green);
    text-transform: uppercase;
}

.fr-save-badge .fr-pct {
    display: block;
    font-size: 1.55em;
    color: var(--fr-navy);
    margin: 4px 0;
}

.fr-save-badge .fr-pct span {
    color: var(--fr-green);
}

@keyframes fr-badge-in {
    from { opacity: 0; transform: scale(0.85); }
    to { opacity: 1; transform: scale(1); }
}

/* Stats */
.fr-stats {
    background: var(--fr-navy);
    color: #fff;
    padding: 48px 0 56px;
}

.fr-stats-title {
    text-align: center;
    font-weight: 800;
    font-size: clamp(1.4rem, 2.8vw, 2rem);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin: 0 0 36px;
}

.fr-stats-title .fr-orange {
    color: var(--fr-orange);
}

.fr-stat-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px 16px;
}

.fr-stat {
    text-align: center;
    padding: 0 6px;
}

.fr-stat-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 14px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 0 rgba(0, 0, 0, 0.12);
}

.fr-stat-icon svg {
    width: 38px;
    height: 38px;
}

.fr-stat p {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.35;
    font-weight: 500;
}

.fr-stat strong {
    font-weight: 800;
    color: #fff;
}

/* Molecules */
.fr-molecules {
    padding: 64px 0;
    background: #fff;
}

.fr-section-title {
    text-align: center;
    font-weight: 800;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    letter-spacing: 0.03em;
    text-transform: uppercase;
    margin: 0 0 36px;
    color: var(--fr-navy);
}

.fr-section-title .fr-orange {
    color: var(--fr-orange);
}

.fr-mol-copy p {
    font-size: 1rem;
    line-height: 1.55;
    margin: 0 0 16px;
    color: var(--fr-navy);
    font-weight: 500;
}

.fr-mol-visual {
    text-align: center;
    padding: 10px 0;
}

.fr-mol-visual img {
    max-width: 220px;
    width: 100%;
}

.fr-callouts {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.fr-callout {
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.4;
    padding: 18px 22px;
    border-radius: 6px 48px 10px 42px / 48px 10px 48px 10px;
}

.fr-callout.orange { background: var(--fr-orange); }
.fr-callout.green { background: var(--fr-green); }
.fr-callout.blue { background: var(--fr-blue); }

/* Bottom grid */
.fr-bottom {
    padding: 20px 0 56px;
    background: #fff;
}

.fr-panel {
    height: 100%;
    border-radius: 10px;
    padding: 28px 24px;
    background: #fff;
}

.fr-panel-border {
    border: 3px solid var(--fr-green);
}

.fr-panel-title {
    font-weight: 800;
    font-size: 1.15rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--fr-navy);
    margin: 0 0 18px;
}

.fr-checklist {
    list-style: none;
    margin: 0;
    padding: 0;
}

.fr-checklist li {
    position: relative;
    padding: 0 0 14px 32px;
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.35;
    color: var(--fr-navy);
}

.fr-checklist li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    width: 20px;
    height: 20px;
    background: var(--fr-green);
    border-radius: 50%;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9.2 16.6 4.8 12.2l1.4-1.4 3 3 8.6-8.6 1.4 1.4z'/%3E%3C/svg%3E") center / 14px 14px no-repeat;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9.2 16.6 4.8 12.2l1.4-1.4 3 3 8.6-8.6 1.4 1.4z'/%3E%3C/svg%3E") center / 14px 14px no-repeat;
}

.fr-checklist li::after {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--fr-green);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.fr-checklist li::before {
    display: none;
}

.fr-save-box {
    background: transparent;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100%;
}

.fr-save-label {
    display: inline-block;
    align-self: center;
    background: var(--fr-green);
    color: #fff;
    font-weight: 800;
    font-size: 1.4rem;
    letter-spacing: 0.04em;
    padding: 8px 36px 10px;
    margin-bottom: 18px;
    border-radius: 4px 36px 6px 32px / 36px 6px 36px 6px;
}

.fr-save-box .fr-save-msg {
    font-weight: 800;
    font-size: 1.2rem;
    line-height: 1.3;
    color: var(--fr-green);
    text-transform: uppercase;
    margin: 0;
}

.fr-save-box .fr-save-msg .fr-pct-line {
    display: block;
    color: var(--fr-navy);
    font-size: 1.35em;
    margin-top: 6px;
}

.fr-save-box .fr-save-msg .fr-pct-line span {
    color: var(--fr-green);
}

.fr-area {
    position: relative;
    overflow: hidden;
    color: #fff;
    background: var(--fr-navy) url(../../img/fresh-roof/dayton.jpg) center center / cover no-repeat;
    min-height: 100%;
}

.fr-area::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(20, 34, 71, 0.78);
}

.fr-area > * {
    position: relative;
    z-index: 1;
}

.fr-area .fr-panel-title {
    color: #fff;
    font-size: 1.05rem;
    margin-bottom: 16px;
}

.fr-cities {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 14px;
    list-style: none;
    margin: 0 0 12px;
    padding: 0;
}

.fr-cities li {
    font-weight: 700;
    font-size: 0.92rem;
    padding-left: 22px;
    position: relative;
}

.fr-cities li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--fr-orange);
    font-weight: 800;
}

.fr-area-note {
    font-weight: 700;
    font-size: 0.95rem;
    margin: 0 0 16px;
}

.fr-local-badge {
    background: rgba(255, 255, 255, 0.95);
    color: var(--fr-navy);
    border-radius: 10px;
    padding: 12px 14px;
    text-align: center;
    max-width: 220px;
    margin-left: auto;
    border: 2px solid var(--fr-navy);
}

.fr-local-badge .fr-stars {
    color: var(--fr-orange);
    letter-spacing: 2px;
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.fr-local-badge p {
    margin: 0;
    font-weight: 800;
    font-size: 0.72rem;
    line-height: 1.25;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

/* Page footer band */
.fr-page-footer {
    background: #f7f8fb;
    border-top: 1px solid #e4e8f0;
    padding: 36px 0 0;
}

.fr-page-footer-inner {
    display: grid;
    grid-template-columns: 1.1fr 1.4fr 1fr;
    gap: 28px;
    align-items: start;
    padding-bottom: 28px;
}

.fr-page-footer .fr-logo {
    width: 220px;
    margin: 0;
}

.fr-contact-block {
    text-align: center;
}

.fr-phone {
    display: block;
    font-weight: 800;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--fr-orange);
    text-decoration: none;
    line-height: 1.1;
    margin-bottom: 6px;
}

.fr-phone:hover {
    color: var(--fr-orange-dark);
}

.fr-web {
    display: block;
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--fr-green);
    text-decoration: none;
    letter-spacing: 0.04em;
    margin-bottom: 8px;
}

.fr-web:hover {
    color: var(--fr-green-dark);
}

.fr-tagline {
    margin: 0 0 6px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.04em;
    color: var(--fr-navy);
    text-transform: uppercase;
}

.fr-stars-row {
    color: var(--fr-orange);
    letter-spacing: 3px;
    font-size: 1.1rem;
}

.fr-services-title {
    font-weight: 800;
    font-size: 1.05rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--fr-navy);
    margin: 0 0 12px;
}

.fr-services-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.fr-services-list li {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--fr-navy);
    padding: 3px 0 3px 22px;
    position: relative;
}

.fr-services-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--fr-orange);
    font-weight: 800;
}

.fr-values {
    background: var(--fr-green-bar);
    color: #fff;
    padding: 14px 0;
}

.fr-values-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px 40px;
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.fr-values-row span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.fr-values-row svg {
    width: 22px;
    height: 22px;
}

/* Motion */
@media (prefers-reduced-motion: no-preference) {
    .fr-stat {
        animation: fr-fade-up 0.6s ease both;
    }
    .fr-stat:nth-child(2) { animation-delay: 0.08s; }
    .fr-stat:nth-child(3) { animation-delay: 0.16s; }
    .fr-stat:nth-child(4) { animation-delay: 0.24s; }
    .fr-stat:nth-child(5) { animation-delay: 0.32s; }

    .fr-callout {
        animation: fr-fade-up 0.55s ease both;
    }
    .fr-callout.green { animation-delay: 0.1s; }
    .fr-callout.blue { animation-delay: 0.2s; }
}

@keyframes fr-fade-up {
    from { opacity: 0; transform: translateY(14px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 1199.98px) {
    .fr-stat-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991.98px) {
    .fr-hero {
        padding: 36px 0 48px;
    }

    .fr-save-badge {
        margin: 28px auto 0;
    }

    .fr-hero::before {
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.82) 55%, rgba(255, 255, 255, 0.4) 100%);
    }

    .fr-page-footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
    }

    .fr-services-list li {
        text-align: left;
    }
}

@media (max-width: 767.98px) {
    .fr-stat-grid {
        grid-template-columns: 1fr 1fr;
    }

    .fr-stat:last-child {
        grid-column: 1 / -1;
        max-width: 240px;
        margin: 0 auto;
    }

    .fr-btn {
        width: 100%;
    }

    .fr-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .fr-values-row {
        gap: 12px 20px;
        font-size: 0.78rem;
    }
}

@media (max-width: 575.98px) {
    .fr-stat-grid {
        grid-template-columns: 1fr;
    }

    .fr-stat:last-child {
        max-width: none;
    }
}
