/* Wichita Piano Man - Main Styles */

:root {
    --dark: #1d1007;
    --brown: #2b1408;
    --brown-soft: #3b2414;
    --gold: #d7ad4f;
    --cream: #f7f1e6;
    --cream-soft: #f3eee5;
    --green: #607551;
    --text: #251b14;
    --line: #d8cbb8;
    --shadow: 0 8px 22px rgba(0,0,0,.10);
}

* {
    box-sizing: border-box;
}

html {
    background: #000;
}

body {
    margin: 0;
    background: var(--cream);
    color: var(--text);
    font-family: Arial, Helvetica, sans-serif;
}

h1, h2, h3, h4 {
    font-family: Georgia, "Times New Roman", serif;
    margin-top: 0;
}

a {
    color: inherit;
}

/* =========================
   HEADER
========================= */

.topbar {
    position: relative;
    z-index: 20;
    min-height: 150px;
    padding: 18px 42px 0 42px;
    background: var(--brown);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    overflow: visible;
}

.logo {
    position: relative;
    z-index: 30;
}

.logo img {
    height: 135px;
    width: auto;
    max-width: 520px;
    display: block;
    filter: brightness(0) invert(1)
            drop-shadow(0 6px 14px rgba(0,0,0,.65));
}

.nav {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
    font-weight: 800;
    font-size: 16px;
    padding-top: 26px;
}

.nav a {
    color: #fff;
    text-decoration: none;
}

.nav a:hover {
    color: var(--gold);
}

/* =========================
   BUTTONS
========================= */

.btn {
    display: inline-block;
    padding: 13px 22px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    line-height: 1;
}

.btn-gold {
    background: var(--gold);
    color: #1d1208 !important;
}

.btn-gold:hover {
    background: #e4bb5d;
    color: #1d1208 !important;
}

.nav .btn-gold {
    font-size: 16px;
    padding: 18px 28px;
}

.btn-outline {
    border: 2px solid var(--gold);
    color: #fff;
}

.btn-outline:hover {
    background: rgba(215,173,79,.18);
}

.dark-outline {
    color: var(--brown);
}

/* =========================
   HERO
========================= */

.hero {
    position: relative;
    margin-top: -30px;
    background:
        linear-gradient(90deg, rgba(0,0,0,.88) 0%, rgba(0,0,0,.70) 34%, rgba(0,0,0,.25) 70%),
        url("../images/piano-inside.jpg") center right / cover no-repeat;
    color: #fff;
    padding: 110px 6% 82px;
    min-height: 560px;
    display: flex;
    align-items: center;
}

.hero-inner {
    max-width: 700px;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.05;
    margin-bottom: 22px;
    text-shadow: none;
}

.hero h1::before,
.hero h1::after {
    display: none !important;
    content: none !important;
}

.gold-line {
    width: 280px;
    height: 3px;
    background: var(--gold);
    margin: 20px 0 28px;
}

.hero h2 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.45;
    max-width: 600px;
    margin-bottom: 30px;
}

.hero-buttons,
.route-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-rating,
.route-note {
    margin-top: 12px;
    font-size: 14px;
}

/* =========================
   SERVICES
========================= */

.services {
    background: var(--cream-soft);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 30px 6%;
    border-bottom: 4px solid #d6c8b2;
}

.service-box {
    padding: 16px 26px;
    border-left: 1px solid var(--line);
}

.service-box:last-child {
    border-right: 1px solid var(--line);
}

.service-icon {
    font-size: 38px;
    color: var(--green);
    margin-bottom: 10px;
}

.service-box h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--brown-soft);
}

.service-box h3::after {
    content: "";
    display: block;
    width: 48px;
    height: 3px;
    background: var(--gold);
    margin-top: 8px;
}

.service-box p {
    line-height: 1.5;
    margin: 0;
}

/* =========================
   MAIN CONTENT
========================= */

.main {
    padding: 44px 6%;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 42px;
    align-items: center;
    margin-bottom: 42px;
}

.card,
.tech-card,
.review-card,
.route-card {
    background: rgba(255,255,255,.76);
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.card {
    padding: 32px;
}

.kicker {
    color: var(--green);
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.card h2 {
    font-size: 38px;
    margin: 12px 0 18px;
}

.card p,
.tech-card p,
.review-card p,
.route-card p {
    font-size: 17px;
    line-height: 1.65;
}

.photo-card {
    min-height: 320px;
    border-radius: 10px;
    background:
        linear-gradient(rgba(35,20,8,.12), rgba(35,20,8,.12)),
        url("../images/piano-tools.jpg") center / cover no-repeat;
    box-shadow: var(--shadow);
}

/* =========================
   TECHNICIANS
========================= */

.techs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.tech-card {
    border-top: 5px solid var(--gold);
    padding: 24px;
}

.tech-card h3 {
    color: var(--brown-soft);
    font-size: 25px;
    margin-bottom: 12px;
}

/* =========================
   REVIEWS
========================= */

.reviews {
    background: #efe5d4;
    padding: 60px 6%;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.reviews-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.reviews-header h2 {
    font-size: 38px;
    margin-bottom: 8px;
}

.reviews-header p {
    color: var(--green);
    font-weight: 700;
    margin-bottom: 36px;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.review-card {
    padding: 26px;
    text-align: left;
    border-top: 5px solid var(--gold);
}

.stars {
    color: var(--gold);
    font-size: 22px;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.review-card strong {
    color: var(--brown-soft);
}

.review-cta {
    margin-top: 32px;
}

/* =========================
   ROUTE AREA
========================= */

.route-area {
    background: var(--cream);
    padding: 60px 6%;
}

.route-area-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.route-card {
    padding: 32px;
    border-top: 5px solid var(--gold);
}

.route-card-highlight {
    background: #fffaf1;
}

.route-card h2 {
    font-size: 34px;
    margin: 12px 0 18px;
    color: var(--brown-soft);
}

.town-list {
    color: var(--green);
    font-weight: 700;
}

.town-list p {
    margin: 8px 0;
}

.route-note {
    color: var(--green);
    font-weight: 700;
}

/* =========================
   CONTACT BAR
========================= */

.contact-bar {
    background: var(--green);
    color: #fff;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 22px 6%;
    gap: 18px;
}

.contact-item {
    border-left: 1px solid rgba(255,255,255,.25);
    padding-left: 20px;
}

.contact-item strong {
    display: block;
    margin-bottom: 5px;
}

/* =========================
   FOOTER
========================= */

.footer {
    background: var(--dark);
    color: #fff;
    padding: 34px 6%;
    display: grid;
    grid-template-columns: 1fr 1fr 1.3fr;
    gap: 30px;
}

.footer img {
    max-width: 220px;
    filter: brightness(0) invert(1);
}

.footer h4 {
    color: var(--gold);
}

.footer a {
    color: var(--gold);
}

/* =========================
   MOBILE
========================= */

@media (max-width: 900px) {
    .topbar {
        min-height: auto;
        padding: 18px 24px 22px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .logo img {
        height: auto;
        max-width: 300px;
    }

    .nav {
        justify-content: center;
        gap: 16px;
        padding-top: 8px;
    }

    .nav .btn-gold {
        padding: 14px 20px;
    }

    .hero {
        margin-top: 0;
        min-height: 500px;
        padding: 56px 6%;
        background-position: center right;
    }

    .hero h1 {
        font-size: 42px;
    }

    .services,
    .intro-grid,
    .techs,
    .review-grid,
    .route-area-inner,
    .contact-bar,
    .footer {
        grid-template-columns: 1fr;
    }

    .service-box,
    .service-box:last-child,
    .contact-item {
        border-left: none;
        border-right: none;
        border-bottom: 1px solid var(--line);
    }

    .service-box {
        padding: 20px 0;
    }
}