* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "chakra-petch", sans-serif;
    background-color: #000;
    color: #fff;
    min-height: 100vh;
}

/* ── Header ── */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 60px;
    position: sticky;
    top: 0;
    z-index: 100;
    background: #000;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon { display: block; flex-shrink: 0; }

.logo-text {
    font-size: 18px;
    font-weight: 700;
    color: #DE4097;
    letter-spacing: 0;
}

nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-phone {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
}

nav a {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    text-decoration: none;
    transition: color 0.15s;
}

nav a:hover { color: #DE4097; }

/* ── Hero ── */
.hero {
    padding: 40px 60px 30px;
}

.hero h1 {
    font-size: 46px;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.hero p {
    font-size: 19px;
    font-weight: 300;
    color: #aaa;
}

/* ── Punk Marquee ── */
.marquee-wrap {
    background: #DE4097;
    overflow: hidden;
    position: relative;
    line-height: 0; /* eliminate inline gap under images */
}

.marquee-track {
    display: flex;
}

.marquee-track img {
    width: 130px;
    height: 130px;
    image-rendering: pixelated;
    flex-shrink: 0;
    display: block;
}

/* ── Services ── */
.services {
    padding: 32px 60px 8px;
    max-width: 900px;
}

.service-item {
    border-bottom: 1px solid #1c1c1c;
}

.service-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    background: none;
    border: none;
    cursor: pointer;
    width: 100%;
    text-align: left;
}

.service-header .bullet {
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.service-item.open .service-header .bullet {
    transform: rotate(90deg);
}

.service-header span {
    font-family: "chakra-petch", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.2px;
}

.service-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 0 0 26px;
}

.service-item.open .service-body {
    max-height: 300px;
    padding: 0 0 22px 26px;
}

.service-body p {
    font-size: 15px;
    font-weight: 400;
    color: #888;
    line-height: 1.75;
}

/* ── Contact ── */
.contact-section {
    padding: 16px 60px 16px;
    max-width: 900px;
}

.contact-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 22px 0 30px;
    border-bottom: 1px solid #1c1c1c;
    margin-bottom: 36px;
}

.contact-row span {
    font-size: 17px;
    font-weight: 600;
    color: #fff;
}

.contact-body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding-left: 26px;
}

.contact-body p {
    font-size: 15px;
    font-weight: 400;
    color: #888;
    line-height: 1.75;
}

.cta-btn {
    display: inline-block;
    position: relative;
    overflow: hidden;
    background: #DE4097;
    color: #fff;
    font-family: "chakra-petch", sans-serif;
    font-size: 15px;
    font-weight: 700;
    padding: 14px 40px;
    text-decoration: none;
    letter-spacing: 0.5px;
    cursor: pointer;
}

.cta-btn .btn-text {
    position: relative;
    z-index: 2;
}

.cta-btn canvas {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
}

/* ── Footer ── */
footer {
    padding: 0 60px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-copy {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-c {
    font-size: 12px;
    color: #DE4097;
}

.footer-name {
    font-family: "chakra-petch", sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #DE4097;
    letter-spacing: 0;
}

.footer-x {
    display: flex;
    align-items: center;
    opacity: 0.8;
    transition: opacity 0.15s;
}

.footer-x:hover { opacity: 1; }

/* ── Blog List ── */
.blog-list {
    max-width: 900px;
    margin-top: 10px;
}

a.blog-link {
    text-decoration: none;
}

a.blog-link span {
    color: #fff;
    transition: color 0.15s;
}

a.blog-link:hover span {
    color: #DE4097;
}

a.blog-link .bullet {
    flex-shrink: 0;
}

/* ── About Page ── */
.about-section {
    padding: 60px 60px 80px;
    max-width: 900px;
}

.about-heading {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 40px;
    letter-spacing: -0.5px;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-lead {
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    line-height: 1.3;
}

.about-content p {
    font-size: 15px;
    font-weight: 400;
    color: #888;
    line-height: 1.8;
}

.about-content strong { color: #fff; font-weight: 700; }

.about-content a {
    color: #DE4097;
    text-decoration: none;
    font-weight: 700;
}

.about-content a:hover { text-decoration: underline; }

.about-close {
    color: #444 !important;
    font-style: italic;
}

.about-cta {
    color: #fff !important;
    font-weight: 500 !important;
}

.about-signature {
    margin-top: 40px;
    padding-left: 2px;
}

.sig-line {
    font-family: 'Dancing Script', cursive;
    font-size: 22px;
    font-weight: 500;
    color: #555;
    letter-spacing: 0.3px;
}

.sig-line a {
    color: #555 !important;
    text-decoration: none;
    font-weight: 600;
}

.sig-line a:hover {
    color: #DE4097 !important;
    text-decoration: none;
}

.about-punks {
    display: flex;
    gap: 14px;
    margin-top: 24px;
}

.punk-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.punk-card img {
    display: block;
    width: 64px;
    height: 64px;
    image-rendering: pixelated;
}

.punk-sig {
    font-family: 'Dancing Script', cursive;
    font-size: 14px;
    font-weight: 500;
    color: #555;
    text-align: center;
}

/* ── Contact Modal ── */
#contact-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
    z-index: 200;
}

#contact-modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 201;
    background: #DE4097;
    padding: 22px 28px 34px 24px;
    width: min(420px, calc(100vw - 48px));
}

.contact-modal-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.contact-calendly-wrap {
    position: relative;
    flex-shrink: 0;
}

.contact-calendly-btn {
    display: inline-block;
    background: #000;
    color: #fff;
    font-family: "chakra-petch", sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 9px 16px;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
}

.contact-calendly-btn:hover {
    background: #1a1a1a;
}

.contact-preferred {
    position: absolute;
    top: calc(100% + 5px);
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    font-family: "chakra-petch", sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.55);
}

.contact-divider {
    width: 1px;
    height: 34px;
    background: rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
}

.contact-icon-link {
    color: #000;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    transition: color 0.15s;
}

.contact-icon-link:hover {
    color: #fff;
}

.contact-close {
    position: absolute;
    top: 8px;
    right: 10px;
    background: none;
    border: none;
    color: rgba(0, 0, 0, 0.45);
    font-size: 13px;
    cursor: pointer;
    font-family: "chakra-petch", sans-serif;
    padding: 2px 4px;
    line-height: 1;
}

.contact-close:hover {
    color: #000;
}

#contact-modal {
    position: fixed; /* re-declare for stacking context */
}

/* ── Mobile ── */
@media (max-width: 768px) {
    header {
        padding: 20px 24px;
    }

    .logo-text { font-size: 16px; }

    nav { gap: 20px; }
    nav a, .nav-phone { font-size: 13px; }

    .hero {
        padding: 40px 24px 36px;
    }

    .hero h1 {
        font-size: 30px;
        letter-spacing: -0.3px;
    }

    .hero p {
        font-size: 16px;
    }

    .marquee-track img {
        width: 80px;
        height: 80px;
    }

    .services {
        padding: 40px 24px 10px;
    }

    .contact-section {
        padding: 0 24px 60px;
    }

    footer {
        padding: 0 24px 30px;
    }
}

/* index.html only — desktop lock applied via inline <style> on that page */
