/* Wichita Piano Man - Main Styles */

:root {
    --dark: #1d1007;
    --brown: #2b1408;
    --brown-soft: #3b2414;
    --gold: #d7ad4f;
    --cream: #f7f1e6;
    --cream-soft: #f3eee5;
    --cream-warm: #efe5d4;
    --text-soft: #5a4f45;
    --green: #607551;
    --text: #251b14;
    --line: #d8cbb8;
    --shadow: 0 10px 28px rgba(43,20,8,.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,.78) 0%, rgba(0,0,0,.56) 36%, rgba(0,0,0,.18) 72%),
        url("../images/piano-tools.jpg") 38% 14% / cover no-repeat;
    color: #fff;
    padding: 110px 6% 82px;
    min-height: 680px;
    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: linear-gradient(180deg, #f7f1e6 0%, #efe5d4 100%);
    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: 56px 6%;
    background: linear-gradient(180deg, #f7f1e6 0%, #f1e8da 100%);
}

.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,.68);
    border: 1px solid rgba(43,20,8,.08);
    border-radius: 14px;
    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-inside.jpg") center / cover no-repeat;
    box-shadow: var(--shadow);
}


/* Softer readable text on light sections */

.card p,
.service-box p,
.tech-card p,
.review-card p,
.route-card p {
    color: var(--text-soft);
}

.card h2,
.service-box h3,
.tech-card h3,
.route-card h2,
.reviews-header h2 {
    color: var(--brown-soft);
}

/* =========================
   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: linear-gradient(180deg, #efe5d4 0%, #e8dcc8 100%);
    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: linear-gradient(180deg, #f7f1e6 0%, #efe5d4 100%);
    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: rgba(255,250,241,.88);
}

.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: 620px;
        padding: 70px 6%;
        background:
            linear-gradient(180deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.50) 100%),
            url("../images/piano-tools.jpg") 42% 18% / cover no-repeat;
    }

    .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;
    }
}


/* SERVICES.HTML PAGE STYLES */
.site-header { background: var(--brown); padding: 18px 6%; color: #fff; }
.header-inner { max-width: 1180px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.site-logo { max-width: 230px; height: auto; display: block; filter: brightness(0) invert(1) drop-shadow(0 6px 14px rgba(0,0,0,.55)); }
.top-nav { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; font-weight: 800; font-size: 15px; text-transform: uppercase; }
.top-nav a { color: #fff; text-decoration: none; }
.top-nav a:hover, .top-nav a.active { color: var(--gold); }
.page-wrap { background: linear-gradient(180deg, #f8f2e8 0%, #efe3d2 100%); }
.small-hero { margin-top: 0; min-height: 340px; padding: 72px 6%; background: linear-gradient(90deg, rgba(0,0,0,.78) 0%, rgba(0,0,0,.50) 45%, rgba(0,0,0,.18) 100%), url("../images/piano-tools.jpg") 40% 18% / cover no-repeat; }
.hero-text { max-width: 980px; margin: 0 auto; color: #fff; }
.hero-text h1 { font-size: clamp(42px, 5vw, 70px); line-height: 1; margin-bottom: 18px; }
.hero-text h1::after { content: ""; display: block; width: 90px; height: 4px; background: var(--gold); margin-top: 18px; }
.hero-text p { max-width: 850px; margin: 0; color: rgba(255,255,255,.92); font-size: clamp(18px, 2vw, 24px); line-height: 1.45; }
.content-section { padding: 72px 6%; }
.content-section > h2 { max-width: 1100px; margin: 0 auto 34px; color: var(--brown-soft); font-size: clamp(34px, 4vw, 50px); line-height: 1.1; }
.content-section > h2::after { content: ""; display: block; width: 90px; height: 4px; background: var(--gold); margin-top: 14px; }
.service-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 26px; }
.service-card { background: rgba(255,255,255,.78); border: 1px solid rgba(43,20,8,.11); border-radius: 18px; padding: 30px; box-shadow: 0 14px 32px rgba(43,20,8,.08); display: flex; flex-direction: column; }
.service-card.featured { background: linear-gradient(180deg, #fffaf1 0%, rgba(255,255,255,.86) 100%); border: 2px solid var(--gold); }
.service-card h3 { color: var(--brown-soft); font-size: 27px; margin: 0 0 14px; }
.service-card h3::after { content: ""; display: block; width: 48px; height: 3px; background: var(--gold); margin-top: 10px; }
.service-card p { color: var(--text-soft); font-size: 17px; line-height: 1.65; margin: 0 0 16px; }
.service-card .price { margin-top: auto; margin-bottom: 0; padding-top: 12px; color: var(--brown); font-size: 20px; font-weight: 800; }
.cta-box { max-width: 900px; margin: 60px auto 0; padding: 42px; text-align: center; background: rgba(255,255,255,.82); border: 1px solid rgba(43,20,8,.10); border-radius: 18px; box-shadow: 0 14px 32px rgba(43,20,8,.08); }
.cta-box h2 { color: var(--brown-soft); font-size: clamp(30px, 4vw, 44px); margin-bottom: 12px; }
.cta-box p { color: var(--text-soft); font-size: 18px; line-height: 1.55; margin-bottom: 22px; }
.button-primary { display: inline-block; padding: 16px 28px; background: var(--gold); color: #1d1208; border-radius: 6px; font-weight: 800; text-decoration: none; }
.button-primary:hover { background: #e4bb5d; }
.site-footer { background: var(--dark); color: #fff; padding: 34px 6%; text-align: center; }
.footer-links { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; margin-bottom: 18px; }
.footer-links a { color: var(--gold); }
.site-footer p { color: rgba(255,255,255,.78); margin: 0; }
@media (max-width: 900px) {
    .header-inner, .top-nav { justify-content: center; text-align: center; }
    .header-inner { flex-direction: column; }
    .site-logo { max-width: 260px; }
    .small-hero { min-height: 360px; padding: 58px 6%; background: linear-gradient(180deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.50) 100%), url("../images/piano-tools.jpg") 42% 18% / cover no-repeat; }
    .content-section { padding: 46px 5%; }
    .service-grid { grid-template-columns: 1fr; }
    .service-card, .cta-box { padding: 26px; }
}

/* =========================
   ADVICE.HTML PAGE STYLES
========================= */
.advice-section {
    max-width: 980px;
    margin: 0 auto;
    padding: 72px 6%;
}

.advice-pullquote {
    background: linear-gradient(180deg, #fffaf1 0%, rgba(255,255,255,.86) 100%);
    border-left: 6px solid var(--gold);
    border-radius: 18px;
    box-shadow: 0 14px 32px rgba(43,20,8,.08);
    color: var(--brown-soft);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.35;
    margin: 0 0 38px;
    padding: 30px 34px;
}

.advice-block {
    background: rgba(255,255,255,.78);
    border: 1px solid rgba(43,20,8,.10);
    border-radius: 18px;
    box-shadow: 0 14px 32px rgba(43,20,8,.08);
    margin-bottom: 26px;
    padding: 30px 34px;
}

.advice-block h2 {
    color: var(--brown-soft);
    font-size: clamp(28px, 3vw, 38px);
    line-height: 1.1;
    margin: 0 0 18px;
}

.advice-block h2::after {
    content: "";
    display: block;
    width: 64px;
    height: 3px;
    background: var(--gold);
    margin-top: 12px;
}

.advice-block p {
    color: var(--text-soft);
    font-size: 18px;
    line-height: 1.7;
    margin: 0 0 16px;
}

.advice-block p:last-child {
    margin-bottom: 0;
}

.advice-cta {
    max-width: 900px;
    margin: 10px auto 0;
    padding: 40px;
    text-align: center;
    background: rgba(255,255,255,.84);
    border: 1px solid rgba(43,20,8,.10);
    border-radius: 18px;
    box-shadow: 0 14px 32px rgba(43,20,8,.08);
}

.advice-cta h2 {
    color: var(--brown-soft);
    font-size: clamp(30px, 4vw, 44px);
    margin: 0 0 12px;
}

.advice-cta p {
    color: var(--text-soft);
    font-size: 18px;
    line-height: 1.55;
    margin: 0 0 22px;
}

@media (max-width: 900px) {
    .advice-section {
        padding: 46px 5%;
    }

    .advice-pullquote,
    .advice-block,
    .advice-cta {
        padding: 24px;
        border-radius: 14px;
    }

    .advice-block p,
    .advice-cta p {
        font-size: 16px;
    }

    /* =========================
   FIX MOBILE LOGO
========================= */

@media (max-width: 900px) {

    .topbar {
        padding: 16px 16px 10px;
        align-items: center;
    }

    .logo {
        width: 100%;
        text-align: center;
    }

    .logo img {
        max-width: 220px;   /* controlled size */
        height: auto;
        margin: 0 auto;
        display: block;
    }

    .nav {
        width: 100%;
        justify-content: center;
        padding-top: 10px;
        gap: 14px;
    }
}
}