:root {
    --orange: #e95d10;
    --orange-bright: #f36b18;
    --burnt: #ab1f06;
    --ink: #0d0d0d;
    --charcoal: #171717;
    --muted: #62605e;
    --line: #ded9d5;
    --paper: #ffffff;
    --warm: #f8f3ef;
    --shell: min(1180px, calc(100% - 48px));
    --radius: 22px;
    --shadow: 0 26px 70px rgba(42, 20, 8, 0.13);
    --font: 'Manrope', Arial, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

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

a {
    color: inherit;
}

svg {
    display: block;
}

.shell {
    width: var(--shell);
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 100;
    padding: 10px 16px;
    color: #fff;
    background: var(--ink);
    border-radius: 6px;
    transform: translateY(-150%);
}

.skip-link:focus {
    transform: translateY(0);
}

.site-header {
    position: relative;
    z-index: 10;
    min-height: 94px;
    background: var(--paper);
    border-bottom: 1px solid #ece8e5;
}

.header-inner {
    min-height: 94px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.brand-link {
    display: block;
    flex: 0 0 auto;
}

.brand-logo {
    width: 260px;
    height: auto;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.header-nav > a {
    color: #2a2928;
    font-size: 0.86rem;
    font-weight: 700;
    text-decoration: none;
    transition: color 180ms ease;
}

.header-nav > a:hover,
.header-nav > a:focus-visible {
    color: var(--orange);
}

.header-phone {
    display: grid;
    gap: 1px;
    padding-left: 28px;
    border-left: 1px solid var(--line);
}

.header-phone .nav-label {
    color: var(--orange);
    font-size: 0.69rem;
    font-weight: 800;
    letter-spacing: 0.11em;
    line-height: 1.2;
    text-transform: uppercase;
}

.hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: 680px;
    color: #fff;
    background:
        radial-gradient(circle at 76% 30%, rgba(233, 93, 16, 0.18), transparent 29%),
        linear-gradient(135deg, #0c0c0c 0%, #181716 66%, #1e1713 100%);
}

.hero-grid {
    position: relative;
    z-index: 2;
    min-height: 680px;
    padding-block: 88px;
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
    gap: clamp(50px, 7vw, 96px);
    align-items: center;
}

.hero-copy {
    max-width: 690px;
}

.eyebrow,
.section-kicker,
.review-type {
    margin: 0 0 18px;
    color: var(--orange-bright);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    line-height: 1.4;
    text-transform: uppercase;
}

.hero h1 {
    margin: 0;
    max-width: 780px;
    font-size: clamp(3.6rem, 7.2vw, 6.8rem);
    font-weight: 800;
    letter-spacing: -0.065em;
    line-height: 0.94;
}

.hero h1 span {
    color: var(--orange-bright);
}

.hero-intro {
    max-width: 660px;
    margin: 30px 0 0;
    color: #d5d1ce;
    font-size: clamp(1.02rem, 1.5vw, 1.22rem);
    line-height: 1.75;
}

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

.button {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 22px;
    border: 1px solid transparent;
    border-radius: 9px;
    font-size: 0.9rem;
    font-weight: 800;
    text-decoration: none;
    transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button:focus-visible,
.header-nav a:focus-visible,
.contact-actions a:focus-visible,
.brand-link:focus-visible {
    outline: 3px solid #ffb27f;
    outline-offset: 4px;
}

.button svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.button-primary {
    color: #fff;
    background: var(--orange);
}

.button-primary:hover {
    background: #f06a1d;
}

.button-secondary {
    color: #fff;
    background: transparent;
    border-color: rgba(255, 255, 255, 0.34);
}

.button-secondary:hover {
    border-color: #fff;
}

.hero-hours {
    margin: 20px 0 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #bdb8b4;
    font-size: 0.8rem;
    font-weight: 600;
}

.hero-hours span {
    width: 7px;
    height: 7px;
    background: var(--orange-bright);
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(233, 93, 16, 0.14);
}

.hero-brand-panel {
    position: relative;
    padding: 20px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    backdrop-filter: blur(12px);
}

.hero-brand-panel::before {
    content: '';
    position: absolute;
    z-index: -1;
    width: 150px;
    height: 150px;
    top: -26px;
    right: -25px;
    border-radius: 50%;
    background: var(--orange);
    opacity: 0.86;
}

.logo-stage {
    min-height: 325px;
    display: grid;
    place-items: center;
    padding: clamp(28px, 5vw, 56px);
    background: #fff;
    border-radius: 14px;
}

.hero-logo {
    width: 100%;
    max-width: 410px;
}

.coverage-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    margin-top: 1px;
    overflow: hidden;
    border-radius: 10px;
}

.coverage-pair span {
    padding: 16px 10px;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-align: center;
    text-transform: uppercase;
}

.hero-mark {
    position: absolute;
    inset: auto auto -260px -205px;
    z-index: 0;
    width: 650px;
    height: 650px;
    opacity: 0.08;
    transform: rotate(-2deg);
}

.hero-mark span {
    position: absolute;
    display: block;
    background: #fff;
}

.mark-horizontal {
    top: 276px;
    left: 45px;
    width: 560px;
    height: 98px;
    border-radius: 32px;
}

.mark-vertical {
    top: 46px;
    left: 276px;
    width: 98px;
    height: 558px;
    border-radius: 32px;
}

.mark-dot {
    width: 92px;
    height: 92px;
    border-radius: 50%;
}

.mark-dot-top {
    top: 84px;
    left: 92px;
}

.mark-dot-bottom {
    right: 86px;
    bottom: 78px;
}

.intro-section {
    padding: 118px 0;
    background: var(--paper);
}

.intro-grid {
    display: grid;
    grid-template-columns: 0.78fr 1.22fr;
    gap: clamp(60px, 9vw, 132px);
    align-items: start;
}

.intro-section .section-kicker,
.coverage-section .section-kicker,
.contact-section .section-kicker {
    color: var(--burnt);
}

.intro-section h2,
.section-heading h2,
.contact-panel h2 {
    margin: 0;
    font-size: clamp(2.3rem, 4vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.052em;
    line-height: 1.04;
}

.intro-statement {
    margin: 0;
    color: #31302f;
    font-size: clamp(1.12rem, 1.75vw, 1.44rem);
    font-weight: 500;
    line-height: 1.75;
}

.coverage-section {
    padding: 112px 0 124px;
    background: var(--warm);
}

.section-heading {
    max-width: 780px;
    margin-bottom: 54px;
}

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

.coverage-card {
    position: relative;
    overflow: hidden;
    padding: clamp(30px, 4vw, 50px);
    background: var(--paper);
    border: 1px solid rgba(171, 31, 6, 0.08);
    border-radius: var(--radius);
    box-shadow: 0 16px 45px rgba(56, 29, 15, 0.06);
}

.coverage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--orange) 0 58%, var(--burnt) 58% 100%);
}

.coverage-card-heading {
    min-height: 76px;
    display: flex;
    align-items: center;
    gap: 20px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--line);
}

.coverage-card-heading p {
    margin: 0 0 2px;
    color: var(--orange);
    font-size: 0.69rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.coverage-card h3 {
    margin: 0;
    font-size: clamp(1.4rem, 2.3vw, 2rem);
    font-weight: 800;
    letter-spacing: -0.045em;
    line-height: 1.15;
}

.coverage-icon {
    flex: 0 0 auto;
    width: 60px;
    height: 60px;
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--orange);
    border-radius: 15px;
}

.coverage-icon.icon-burnt {
    background: var(--burnt);
}

.coverage-icon svg {
    width: 31px;
    height: 31px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.coverage-list {
    margin: 22px 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 28px;
    list-style: none;
}

.coverage-list li {
    position: relative;
    padding: 13px 0 13px 20px;
    color: #393837;
    border-bottom: 1px solid #eee9e5;
    font-size: 0.91rem;
    font-weight: 600;
}

.coverage-list li::before {
    content: '';
    position: absolute;
    top: 21px;
    left: 0;
    width: 7px;
    height: 7px;
    background: var(--orange);
    border-radius: 50%;
}

.more-coverage {
    margin: 25px 0 0;
    color: var(--burnt);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.reviews-section {
    padding: 118px 0 128px;
    color: #fff;
    background: var(--charcoal);
}

.section-heading-light {
    max-width: 650px;
}

.section-heading-light h2 {
    color: #fff;
}

.reviews-list {
    display: grid;
    gap: 24px;
}

.review {
    position: relative;
    overflow: hidden;
    background: #222120;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: var(--radius);
}

.review-with-photo {
    min-height: 500px;
    display: grid;
    grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
}

.review-reverse {
    grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
}

.review-reverse .review-photo-wrap {
    order: 2;
}

.review-photo-wrap {
    min-height: 100%;
    margin: 0;
    overflow: hidden;
    background: #302e2d;
}

.review-photo {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
    object-position: center 35%;
    filter: saturate(0.86) contrast(1.03);
}

.review-photo-portrait {
    object-position: center 29%;
}

.review-copy {
    position: relative;
    align-self: center;
    padding: clamp(44px, 6vw, 78px);
}

.quote-mark {
    display: block;
    height: 52px;
    color: var(--orange-bright);
    font-family: Georgia, serif;
    font-size: 6.5rem;
    line-height: 0.8;
}

.review h3 {
    margin: 22px 0 24px;
    color: #fff;
    font-size: clamp(1.65rem, 2.8vw, 2.65rem);
    font-weight: 700;
    letter-spacing: -0.045em;
    line-height: 1.16;
}

.review blockquote {
    margin: 0;
}

.review blockquote p {
    margin: 0;
    color: #c9c4c0;
    font-size: 0.98rem;
    line-height: 1.8;
}

.review-attribution {
    margin: 24px 0 0;
    color: var(--orange-bright);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.review-attribution::before {
    content: '— ';
}

.review-business {
    display: grid;
    grid-template-columns: 70px 1fr 1.12fr;
    gap: clamp(28px, 5vw, 72px);
    align-items: start;
    padding: clamp(44px, 6vw, 76px);
    background:
        linear-gradient(115deg, rgba(233, 93, 16, 0.97), rgba(171, 31, 6, 0.98)),
        var(--burnt);
}

.review-business .quote-mark,
.review-business .review-attribution {
    color: #fff;
}

.review-business .review-type {
    margin-bottom: 0;
    color: #ffd5be;
}

.review-business h3 {
    margin-bottom: 0;
}

.review-business blockquote p {
    color: rgba(255, 255, 255, 0.84);
}

.contact-section {
    padding: 96px 0;
    background: var(--paper);
}

.contact-panel {
    display: grid;
    grid-template-columns: 1.35fr 0.65fr;
    gap: 70px;
    align-items: center;
    padding: clamp(40px, 6vw, 72px);
    background: var(--warm);
    border-left: 7px solid var(--orange);
    border-radius: var(--radius);
}

.contact-actions {
    display: grid;
    gap: 9px;
}

.contact-actions a {
    width: fit-content;
    color: var(--ink);
    font-size: clamp(1.06rem, 2vw, 1.25rem);
    font-weight: 800;
    text-decoration-color: rgba(233, 93, 16, 0.45);
    text-decoration-thickness: 2px;
    text-underline-offset: 5px;
}

.contact-actions a:hover {
    color: var(--orange);
}

.contact-actions p {
    margin: 7px 0 0;
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 600;
}

.site-footer {
    padding: 48px 0;
    color: #aaa5a1;
    background: #0c0c0c;
}

.footer-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 36px;
    align-items: center;
}

.footer-logo-stage {
    width: 190px;
    padding: 11px 16px;
    background: #fff;
    border-radius: 8px;
}

.footer-logo {
    width: 100%;
}

.footer-inner p {
    margin: 0;
    font-size: 0.75rem;
    font-weight: 600;
}

.footer-inner p:last-child {
    text-align: right;
}

.js .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 650ms ease, transform 650ms ease;
}

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

@media (max-width: 980px) {
    .header-nav > a:not(.header-phone) {
        display: none;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        padding-block: 76px;
    }

    .hero-copy {
        max-width: 760px;
    }

    .hero-brand-panel {
        width: min(100%, 600px);
    }

    .logo-stage {
        min-height: 280px;
    }

    .intro-grid {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .coverage-grid {
        grid-template-columns: 1fr;
    }

    .review-with-photo,
    .review-reverse {
        grid-template-columns: minmax(270px, 0.75fr) minmax(0, 1.25fr);
    }

    .review-reverse {
        grid-template-columns: minmax(0, 1.25fr) minmax(270px, 0.75fr);
    }

    .review-business {
        grid-template-columns: 52px 1fr;
    }

    .review-business > div:last-child {
        grid-column: 2;
    }

    .contact-panel {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer-inner {
        grid-template-columns: auto 1fr;
    }

    .footer-inner p:last-child {
        grid-column: 2;
        text-align: left;
    }
}

@media (max-width: 720px) {
    :root {
        --shell: min(100% - 32px, 1180px);
        --radius: 17px;
    }

    .site-header,
    .header-inner {
        min-height: 78px;
    }

    .brand-logo {
        width: 190px;
    }

    .header-phone {
        padding-left: 18px;
    }

    .header-phone .nav-label {
        display: none;
    }

    .header-nav {
        gap: 0;
    }

    .header-nav > a {
        font-size: 0.78rem;
    }

    .hero,
    .hero-grid {
        min-height: auto;
    }

    .hero-grid {
        padding-block: 64px;
        gap: 46px;
    }

    .hero h1 {
        font-size: clamp(3.2rem, 16vw, 5.3rem);
    }

    .hero-intro {
        margin-top: 24px;
    }

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

    .button {
        width: 100%;
    }

    .hero-brand-panel {
        padding: 12px;
    }

    .logo-stage {
        min-height: 230px;
        padding: 34px;
    }

    .hero-brand-panel::before {
        width: 100px;
        height: 100px;
    }

    .intro-section,
    .coverage-section,
    .reviews-section {
        padding-block: 82px;
    }

    .section-heading {
        margin-bottom: 38px;
    }

    .coverage-card-heading {
        align-items: flex-start;
    }

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

    .review-with-photo,
    .review-reverse {
        grid-template-columns: 1fr;
    }

    .review-reverse .review-photo-wrap {
        order: 0;
    }

    .review-photo,
    .review-photo-portrait {
        height: 340px;
        min-height: 340px;
        object-position: center 30%;
    }

    .review-copy {
        padding: 38px 28px 44px;
    }

    .review-business {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 38px 28px 44px;
    }

    .review-business > div:last-child {
        grid-column: auto;
    }

    .review-business .quote-mark {
        height: 34px;
    }

    .contact-section {
        padding-block: 64px;
    }

    .contact-panel {
        padding: 36px 28px;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .footer-logo-stage {
        width: 180px;
    }

    .footer-inner p:last-child {
        grid-column: auto;
    }
}

@media (max-width: 480px) {
    .header-inner {
        gap: 14px;
    }

    .brand-logo {
        width: 155px;
    }

    .header-phone {
        padding-left: 13px;
        font-size: 0.7rem !important;
    }

    .hero h1 {
        font-size: clamp(2.8rem, 15vw, 4rem);
    }

    .logo-stage {
        min-height: 190px;
        padding: 25px;
    }

    .coverage-pair span {
        padding: 13px 7px;
        font-size: 0.64rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

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