* { box-sizing: border-box; }

:root {
    --ink: #15120d;
    --panel: #211b15;
    --paper: #fff9ed;
    --muted: #6f665c;
    --line: #e4c393;
    --orange: #ff8508;
    --gold: #ffc14a;
    --road: #2d2923;
}

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: "Trebuchet MS", Verdana, sans-serif;
    color: var(--ink);
    line-height: 1.55;
    background: var(--paper);
}

header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(21, 18, 13, .96);
    color: white;
    padding: 10px clamp(16px, 4vw, 56px);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    box-shadow: 0 10px 30px rgba(23, 20, 15, .24);
}

.brand {
    color: white;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    text-decoration: none;
    font-weight: 800;
    letter-spacing: .02em;
}

.brand img {
    width: 68px;
    height: 58px;
    object-fit: cover;
    object-position: center;
    border-radius: 6px;
}

nav {
    display: flex;
    align-items: center;
    gap: clamp(10px, 2vw, 22px);
    flex-wrap: wrap;
    justify-content: center;
}

nav a {
    color: white;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
}

nav a:hover,
nav a:focus-visible { color: var(--gold); }

.hero {
    min-height: 72vh;
    display: grid;
    grid-template-columns: minmax(280px, .78fr) minmax(320px, 1fr);
    align-items: center;
    gap: clamp(24px, 5vw, 64px);
    padding: clamp(42px, 7vw, 88px) clamp(18px, 5vw, 72px);
    color: white;
    background:
        radial-gradient(circle at 74% 28%, rgba(255, 133, 8, .24), transparent 32%),
        linear-gradient(115deg, rgba(21, 18, 13, .98), rgba(35, 27, 18, .94) 50%, rgba(76, 42, 8, .82)),
        url("assets/qs-driven-logo.png") center / cover;
    overflow: hidden;
}

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

.eyebrow {
    margin: 0 0 10px;
    color: var(--orange);
    font-size: 14px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }

h1 {
    margin-bottom: 18px;
    font-size: clamp(40px, 7vw, 84px);
    line-height: .95;
    text-transform: uppercase;
}

.hero-copy > p:not(.eyebrow) {
    max-width: 560px;
    color: #f7ead8;
    font-size: clamp(18px, 2vw, 24px);
}

.hero-art {
    width: min(100%, 640px);
    aspect-ratio: 1 / .84;
    object-fit: cover;
    object-position: center;
    justify-self: center;
    border-radius: 8px;
    border: 1px solid rgba(255, 193, 74, .24);
    box-shadow: 0 24px 80px rgba(0, 0, 0, .5), 0 0 0 10px rgba(255, 133, 8, .06);
}

.actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 26px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 20px;
    background: var(--orange);
    color: #16120d;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 900;
    box-shadow: inset 0 -3px 0 rgba(0, 0, 0, .16);
}

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

.button.secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, .72);
    box-shadow: none;
}

section {
    padding: clamp(52px, 7vw, 86px) clamp(18px, 5vw, 72px);
    text-align: center;
}

section > h2,
.section-heading h2 {
    margin-bottom: 16px;
    font-size: clamp(32px, 5vw, 56px);
    line-height: 1;
    text-transform: uppercase;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
    max-width: 1100px;
    margin: 28px auto 0;
    text-align: center;
}

.cards .service-card,
.price-grid article {
    border: 1px solid var(--line);
    padding: 22px;
    border-radius: 8px;
    background: #fffdf7;
    box-shadow: 0 12px 26px rgba(50, 36, 20, .08);
}

.service-card {
    display: block;
    color: var(--ink);
    text-decoration: none;
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.service-card:hover,
.service-card:focus-visible {
    border-color: var(--orange);
    box-shadow: 0 16px 32px rgba(50, 36, 20, .14);
    transform: translateY(-2px);
}

.service-card p {
    margin-bottom: 0;
}

.cards h3,
.price-grid h3 {
    color: var(--orange);
    font-size: 24px;
    line-height: 1.05;
}

.price-grid h4 {
    margin: 20px 0 10px;
    color: #5f3411;
    font-size: 17px;
    line-height: 1.2;
    text-transform: uppercase;
}

.price-grid h3 + h4 {
    margin-top: 0;
}

.pricing {
    background:
        radial-gradient(circle at 12% 0%, rgba(255, 133, 8, .18), transparent 34%),
        linear-gradient(150deg, var(--road), #17140f 72%);
    color: white;
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 32px;
}

.section-heading p:not(.eyebrow) {
    color: #f0dfc7;
    font-size: 18px;
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(280px, 1fr));
    gap: 18px;
    max-width: 1120px;
    margin: 0 auto;
    text-align: center;
}

.price-grid article {
    background: rgba(255, 253, 247, .96);
    color: var(--ink);
    scroll-margin-top: 110px;
}

.price-grid .wide {
    grid-column: 1 / -1;
}

.price-grid .payment-panel {
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(255, 133, 8, .2), transparent 18%, transparent 82%, rgba(255, 133, 8, .2)),
        repeating-linear-gradient(0deg, rgba(255, 255, 255, .045) 0 1px, transparent 1px 5px),
        linear-gradient(145deg, #201a14, #0f1112 62%);
    color: white;
    border-color: rgba(255, 133, 8, .65);
    box-shadow: 0 18px 44px rgba(0, 0, 0, .28), inset 0 1px 0 rgba(255, 255, 255, .08);
}

.price-grid .payment-panel h3 {
    color: var(--orange);
    text-shadow: 0 2px 0 rgba(0, 0, 0, .7);
}

.payment-panel p {
    color: #f6ecdc;
}

.payment-panel span,
.payment-panel strong {
    background: transparent;
}

.payment-panel strong {
    color: var(--gold);
}

.payment-options {
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 133, 8, .55);
}

.payment-options h4 {
    margin: 0 0 12px;
    color: var(--orange);
    font-size: clamp(20px, 3vw, 30px);
    line-height: 1;
    letter-spacing: .02em;
    text-transform: uppercase;
    text-shadow: 0 2px 0 rgba(0, 0, 0, .7);
}

.payment-rail {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(96px, 1fr));
    gap: 14px;
    align-items: start;
}

.payment-badge {
    display: grid;
    grid-template-rows: 54px auto;
    gap: 7px;
    align-items: center;
    justify-items: center;
    min-width: 0;
    color: white;
    font-weight: 900;
}

.payment-badge b {
    width: 100%;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    border-radius: 7px;
    border: 1px solid rgba(255, 255, 255, .72);
    background: linear-gradient(#fff, #ececec);
    color: #16120d;
    font-size: 18px;
    line-height: 1;
    box-shadow: 0 8px 18px rgba(0, 0, 0, .26), inset 0 1px 0 #fff;
}

.payment-badge small {
    color: #fff6e9;
    font-size: 14px;
    font-weight: 900;
    line-height: 1.1;
    text-shadow: 0 2px 0 rgba(0, 0, 0, .72);
}

.payment-badge.visa b {
    color: #164aa5;
    font-size: 24px;
    font-style: italic;
}

.payment-badge.mastercard b i {
    width: 27px;
    height: 27px;
    border-radius: 50%;
    background: #eb001b;
    display: block;
}

.payment-badge.mastercard b i + i {
    margin-left: -9px;
    background: rgba(247, 158, 27, .9);
}

.payment-badge.amex b {
    background: #2e77bd;
    color: white;
    font-size: 16px;
}

.payment-badge.discover b {
    background:
        radial-gradient(circle at 68% 62%, #f7931d 0 24%, transparent 25%),
        linear-gradient(#fff, #f0f0f0);
    color: #1d1a17;
    font-size: 15px;
    text-transform: uppercase;
}

.payment-badge.apple b {
    font-size: 15px;
}

.payment-badge.google b {
    color: #4285f4;
}

.payment-badge.cashapp b {
    background: #00d64f;
    color: white;
    font-size: 30px;
}

.payment-badge.zelle b {
    background: #6d1ed4;
    color: white;
    font-size: 30px;
}

.payment-badge.paypal b {
    color: #003087;
    font-size: 19px;
}

.payment-badge.venmo b {
    background: #3d95ce;
    color: white;
    font-size: 18px;
}

.price-grid p {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 18px;
    margin-bottom: 10px;
    border-bottom: 0;
    flex-wrap: wrap;
}

.price-grid span,
.price-grid strong {
    background: rgba(255, 253, 247, .96);
    position: relative;
}

.price-grid strong {
    color: #282019;
    white-space: nowrap;
}

.price-grid .payment-panel span,
.price-grid .payment-panel strong {
    background: transparent;
}

.price-grid .payment-panel strong {
    color: var(--gold);
}

#about {
    max-width: 900px;
    margin: 0 auto;
}

.about-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(240px, 1fr));
    gap: 14px;
    padding: 0;
    margin: 30px auto 0;
    list-style: none;
    text-align: left;
}

.about-list li {
    position: relative;
    padding: 16px 18px 16px 46px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fffdf7;
    font-size: 18px;
    font-weight: 800;
    box-shadow: 0 12px 26px rgba(50, 36, 20, .08);
}

.about-list li::before {
    content: "✓";
    position: absolute;
    left: 18px;
    top: 16px;
    color: var(--orange);
    font-weight: 900;
}

#about p,
#contact p {
    font-size: 18px;
}

#contact {
    background: #fffdf7;
}

#contact h3 {
    margin: 26px 0 10px;
    color: var(--orange);
    font-size: 24px;
    line-height: 1.1;
}

#contact a {
    color: #9c4b00;
    font-weight: 800;
}

.service-area-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(220px, 1fr));
    gap: 12px;
    max-width: 760px;
    padding: 0;
    margin: 20px auto 24px;
    list-style: none;
}

.service-area-list li {
    padding: 12px 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
    font-weight: 800;
}

footer {
    background: var(--ink);
    color: white;
    text-align: center;
    padding: 24px 20px;
}

footer p { margin: 0; }

@media (max-width: 820px) {
    header {
        position: static;
        align-items: center;
        flex-direction: column;
        text-align: center;
    }

    .hero,
    .price-grid,
    .about-list,
    .service-area-list {
        grid-template-columns: 1fr;
    }

    .hero-art {
        order: -1;
    }

    .brand span {
        font-size: 15px;
    }
}

@media (max-width: 540px) {
    nav {
        justify-content: center;
    }

    .price-grid p {
        display: block;
        border-bottom: 0;
    }

    .price-grid strong {
        display: block;
        margin-top: 2px;
        white-space: normal;
    }

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