/* Express It Customs LLC — handcrafted, creative theme */

:root {
    /* Wood + craft palette */
    --cream: #fdf6ec;
    --paper: #fffaf3;
    --wood-dark: #3d2817;
    --wood: #6b4423;
    --wood-light: #9c6b3f;
    --ink: #2b2016;
    --ink-soft: #6b5d4f;
    --line: #e6d8c3;

    /* Creative accent pops */
    --coral: #ff6b4a;
    --coral-dim: #e85535;
    --teal: #14a098;
    --teal-dim: #0d827b;
    --gold: #f4a63b;
    --plum: #8f5b9e;

    --font-display: 'Fredoka', 'Poppins', system-ui, sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;
    --font-hand: 'Caveat', cursive;

    --shadow-sm: 0 2px 8px rgba(61, 40, 23, 0.08);
    --shadow-md: 0 10px 30px rgba(61, 40, 23, 0.12);
    --shadow-lg: 0 20px 50px rgba(61, 40, 23, 0.18);
    --radius: 16px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--cream);
    color: var(--ink);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.main-content {
    flex: 1;
}

.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

a {
    color: var(--coral-dim);
}

/* ------------------------------------------------------------------ */
/* Header & Navigation                                                 */
/* ------------------------------------------------------------------ */
.header {
    position: sticky;
    top: 0;
    background-color: rgba(255, 250, 243, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--line);
    z-index: 100;
}

.nav {
    padding: 0.9rem 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    text-decoration: none;
    color: var(--wood-dark);
}

.logo-mark {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: 0.01em;
}

.logo-text .llc {
    display: block;
    font-family: var(--font-body);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    color: var(--teal-dim);
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: var(--ink);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.98rem;
    padding: 0.25rem 0;
    position: relative;
    transition: color 0.25s;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 3px;
    background: var(--coral);
    border-radius: 3px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--coral-dim);
}

.nav-menu a.active::after,
.nav-menu a:hover::after {
    transform: scaleX(1);
}

.nav-menu .btn {
    padding: 0.55rem 1.25rem;
    font-size: 0.95rem;
}

.nav-menu .btn::after {
    display: none;
}

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--wood-dark);
}

.nav-toggle-icon,
.nav-toggle-icon::before,
.nav-toggle-icon::after {
    display: block;
    width: 1.6rem;
    height: 3px;
    background-color: currentColor;
    border-radius: 3px;
}

.nav-toggle-icon {
    position: relative;
}

.nav-toggle-icon::before,
.nav-toggle-icon::after {
    content: '';
    position: absolute;
    left: 0;
}

.nav-toggle-icon::before { top: -7px; }
.nav-toggle-icon::after { top: 7px; }

.nav-toggle:focus-visible,
.nav-menu a:focus-visible {
    outline: 3px solid var(--teal);
    outline-offset: 3px;
    border-radius: 4px;
}

/* ------------------------------------------------------------------ */
/* Buttons                                                             */
/* ------------------------------------------------------------------ */
.btn {
    display: inline-block;
    padding: 0.85rem 1.9rem;
    border-radius: 999px;
    text-decoration: none;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.02rem;
    cursor: pointer;
    border: none;
    transition: transform 0.2s, box-shadow 0.2s, background-color 0.2s;
}

.btn-primary {
    background-color: var(--coral);
    color: #fff;
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background-color: var(--coral-dim);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: transparent;
    color: var(--wood-dark);
    border: 2px solid var(--wood-dark);
}

.btn-secondary:hover {
    background-color: var(--wood-dark);
    color: var(--cream);
    transform: translateY(-3px);
}

.btn-teal {
    background-color: var(--teal);
    color: #fff;
    box-shadow: var(--shadow-sm);
}

.btn-teal:hover {
    background-color: var(--teal-dim);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* ------------------------------------------------------------------ */
/* Hero                                                                */
/* ------------------------------------------------------------------ */
.hero {
    position: relative;
    padding: 5.5rem 0 5rem;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 20%, rgba(20, 160, 152, 0.10), transparent 42%),
        radial-gradient(circle at 88% 15%, rgba(255, 107, 74, 0.12), transparent 45%),
        radial-gradient(circle at 70% 90%, rgba(244, 166, 59, 0.12), transparent 45%);
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
}

.hero-eyebrow {
    display: inline-block;
    font-family: var(--font-hand);
    font-size: 1.7rem;
    color: var(--teal-dim);
    transform: rotate(-3deg);
    margin-bottom: 0.3rem;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 5.5vw, 4.3rem);
    font-weight: 700;
    line-height: 1.02;
    color: var(--wood-dark);
    margin-bottom: 1.1rem;
}

.hero-title .accent {
    position: relative;
    color: var(--coral-dim);
    white-space: nowrap;
}

.hero-title .accent::after {
    content: '';
    position: absolute;
    left: -2%;
    right: -2%;
    bottom: 0.08em;
    height: 0.32em;
    background: rgba(244, 166, 59, 0.45);
    border-radius: 4px;
    z-index: -1;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--ink-soft);
    max-width: 32rem;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Hero collage — CSS-built "sign" tiles, no images needed yet */
.hero-art {
    position: relative;
    min-height: 360px;
}

.art-tile {
    position: absolute;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    text-align: center;
    padding: 1rem;
}

.art-tile .em {
    font-size: 2.6rem;
    line-height: 1;
    display: block;
    margin-bottom: 0.4rem;
}

.art-tile-1 {
    top: 0; left: 4%;
    width: 46%; height: 52%;
    background: linear-gradient(140deg, var(--wood) 0%, var(--wood-dark) 100%);
    color: var(--cream);
    transform: rotate(-5deg);
    font-size: 1.05rem;
}

.art-tile-2 {
    top: 14%; right: 2%;
    width: 44%; height: 40%;
    background: linear-gradient(140deg, var(--teal) 0%, var(--teal-dim) 100%);
    color: #fff;
    transform: rotate(4deg);
    font-size: 1rem;
}

.art-tile-3 {
    bottom: 2%; left: 16%;
    width: 50%; height: 42%;
    background: linear-gradient(140deg, var(--coral) 0%, var(--coral-dim) 100%);
    color: #fff;
    transform: rotate(3deg);
    font-size: 1rem;
}

.art-badge {
    position: absolute;
    bottom: 8%;
    right: 4%;
    width: 92px;
    height: 92px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--wood-dark);
    font-family: var(--font-hand);
    font-size: 1.35rem;
    line-height: 1.05;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transform: rotate(-10deg);
    box-shadow: var(--shadow-md);
    border: 3px dashed rgba(61, 40, 23, 0.35);
    z-index: 3;
}

/* ------------------------------------------------------------------ */
/* Section scaffolding                                                 */
/* ------------------------------------------------------------------ */
.section {
    padding: 5rem 0;
}

.section-alt {
    background-color: var(--paper);
    border-top: 2px solid var(--line);
    border-bottom: 2px solid var(--line);
}

.section-head {
    text-align: center;
    max-width: 40rem;
    margin: 0 auto 3rem;
}

.section-kicker {
    font-family: var(--font-hand);
    font-size: 1.5rem;
    color: var(--coral-dim);
    display: block;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.6vw, 2.9rem);
    font-weight: 700;
    color: var(--wood-dark);
    line-height: 1.1;
    margin-bottom: 0.6rem;
}

.section-lead {
    color: var(--ink-soft);
    font-size: 1.1rem;
}

/* ------------------------------------------------------------------ */
/* What We Make — service cards                                        */
/* ------------------------------------------------------------------ */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.75rem;
}

.card {
    background-color: var(--paper);
    border: 2px solid var(--line);
    border-radius: var(--radius);
    padding: 2rem;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 5px;
    background: var(--bar, var(--coral));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.9rem;
    margin-bottom: 1.1rem;
    background: var(--chip, rgba(255, 107, 74, 0.14));
}

.card h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    color: var(--wood-dark);
    margin-bottom: 0.5rem;
}

.card p {
    color: var(--ink-soft);
}

/* Accent variants */
.card.c-coral { --bar: var(--coral); }
.card.c-coral .card-icon { --chip: rgba(255, 107, 74, 0.15); }
.card.c-teal { --bar: var(--teal); }
.card.c-teal .card-icon { --chip: rgba(20, 160, 152, 0.15); }
.card.c-gold { --bar: var(--gold); }
.card.c-gold .card-icon { --chip: rgba(244, 166, 59, 0.2); }
.card.c-plum { --bar: var(--plum); }
.card.c-plum .card-icon { --chip: rgba(143, 91, 158, 0.16); }

/* ------------------------------------------------------------------ */
/* Showcase / gallery tiles                                            */
/* ------------------------------------------------------------------ */
.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
}

.showcase-tile {
    border-radius: var(--radius);
    min-height: 220px;
    padding: 1.6rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s, box-shadow 0.25s;
}

.showcase-tile:hover {
    transform: translateY(-5px) rotate(-0.5deg);
    box-shadow: var(--shadow-md);
}

.showcase-tile .tile-emoji {
    position: absolute;
    top: 1rem;
    right: 1.1rem;
    font-size: 2.6rem;
    opacity: 0.9;
}

.showcase-tile h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 0.2rem;
}

.showcase-tile p {
    font-size: 0.92rem;
    opacity: 0.92;
}

.tile-wood { background: linear-gradient(150deg, #8a5a2e, #4a2f1b); }
.tile-teal { background: linear-gradient(150deg, #17b3aa, #0d827b); }
.tile-coral { background: linear-gradient(150deg, #ff7d5e, #e85535); }
.tile-gold { background: linear-gradient(150deg, #f6b455, #d9832a); }
.tile-plum { background: linear-gradient(150deg, #a06fae, #6f4380); }
.tile-slate { background: linear-gradient(150deg, #5a6b74, #33424b); }

.showcase-note {
    text-align: center;
    color: var(--ink-soft);
    font-size: 0.95rem;
    margin-top: 2rem;
}

/* ------------------------------------------------------------------ */
/* Process steps                                                       */
/* ------------------------------------------------------------------ */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.75rem;
    counter-reset: step;
}

.step {
    position: relative;
    padding: 2rem 1.5rem 1.5rem;
    background: var(--paper);
    border: 2px solid var(--line);
    border-radius: var(--radius);
}

.step::before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    top: -20px;
    left: 1.5rem;
    width: 44px;
    height: 44px;
    background: var(--teal);
    color: #fff;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

.step h3 {
    font-family: var(--font-display);
    color: var(--wood-dark);
    font-size: 1.2rem;
    margin: 0.6rem 0 0.4rem;
}

.step p {
    color: var(--ink-soft);
    font-size: 0.96rem;
}

/* ------------------------------------------------------------------ */
/* CTA band                                                            */
/* ------------------------------------------------------------------ */
.cta-band {
    background: linear-gradient(135deg, var(--wood) 0%, var(--wood-dark) 100%);
    color: var(--cream);
    text-align: center;
    padding: 4rem 0;
}

.cta-band h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.7rem);
    margin-bottom: 0.8rem;
}

.cta-band p {
    color: rgba(253, 246, 236, 0.8);
    max-width: 34rem;
    margin: 0 auto 1.8rem;
    font-size: 1.1rem;
}

/* ------------------------------------------------------------------ */
/* Generic page content                                               */
/* ------------------------------------------------------------------ */
.page-hero {
    padding: 3.5rem 0 2.5rem;
    text-align: center;
    background:
        radial-gradient(circle at 15% 30%, rgba(20, 160, 152, 0.09), transparent 40%),
        radial-gradient(circle at 85% 20%, rgba(255, 107, 74, 0.1), transparent 42%);
}

.page-hero .page-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    font-weight: 700;
    color: var(--wood-dark);
}

.page-hero .page-subtitle {
    color: var(--ink-soft);
    font-size: 1.15rem;
    max-width: 38rem;
    margin: 0.6rem auto 0;
}

.prose {
    max-width: 46rem;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.85;
    color: var(--ink);
}

.prose h2 {
    font-family: var(--font-display);
    color: var(--wood-dark);
    font-size: 1.7rem;
    margin: 2.2rem 0 0.8rem;
}

.prose p {
    margin-bottom: 1.2rem;
    color: var(--ink-soft);
}

.prose strong {
    color: var(--ink);
}

.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-values {
    list-style: none;
    display: grid;
    gap: 1rem;
}

.about-values li {
    background: var(--paper);
    border: 2px solid var(--line);
    border-left: 6px solid var(--coral);
    border-radius: 12px;
    padding: 1rem 1.25rem;
}

.about-values li:nth-child(2) { border-left-color: var(--teal); }
.about-values li:nth-child(3) { border-left-color: var(--gold); }
.about-values li:nth-child(4) { border-left-color: var(--plum); }

.about-values strong {
    display: block;
    font-family: var(--font-display);
    color: var(--wood-dark);
    font-size: 1.1rem;
}

.about-values span {
    color: var(--ink-soft);
    font-size: 0.96rem;
}

/* ------------------------------------------------------------------ */
/* Contact form                                                        */
/* ------------------------------------------------------------------ */
.contact-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3rem;
    align-items: start;
}

.contact-info h2 {
    font-family: var(--font-display);
    color: var(--wood-dark);
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
}

.contact-info p {
    color: var(--ink-soft);
    margin-bottom: 1.2rem;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
}

.contact-detail .ico {
    font-size: 1.3rem;
}

.contact-detail a {
    color: var(--teal-dim);
    text-decoration: none;
    font-weight: 600;
}

.contact-form {
    background-color: var(--paper);
    padding: 2.5rem;
    border-radius: var(--radius);
    border: 2px solid var(--line);
    box-shadow: var(--shadow-sm);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.4rem;
    color: var(--wood-dark);
    font-weight: 600;
    font-size: 0.95rem;
}

.form-control {
    width: 100%;
    padding: 0.8rem 1rem;
    background-color: var(--cream);
    border: 2px solid var(--line);
    border-radius: 10px;
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.25s, box-shadow 0.25s;
}

.form-control:focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 0 4px rgba(20, 160, 152, 0.15);
}

textarea.form-control {
    resize: vertical;
    min-height: 140px;
}

/* Honeypot — hidden from real users */
.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-note {
    font-size: 0.85rem;
    color: var(--ink-soft);
    margin-top: 1rem;
}

.form-status {
    margin-top: 1.2rem;
    padding: 0.9rem 1.1rem;
    border-radius: 10px;
    font-weight: 600;
    display: none;
}

.form-status.show { display: block; }

.form-status.success {
    background: rgba(20, 160, 152, 0.12);
    border: 1px solid var(--teal);
    color: var(--teal-dim);
}

.form-status.error {
    background: rgba(255, 107, 74, 0.12);
    border: 1px solid var(--coral);
    color: var(--coral-dim);
}

.cf-turnstile {
    margin-bottom: 1.25rem;
}

/* ------------------------------------------------------------------ */
/* Footer                                                              */
/* ------------------------------------------------------------------ */
.footer {
    background-color: var(--wood-dark);
    color: var(--cream);
    padding: 3rem 0 2rem;
    margin-top: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand .logo-text {
    color: var(--cream);
}

.footer-brand p {
    color: rgba(253, 246, 236, 0.7);
    margin-top: 0.8rem;
    max-width: 22rem;
    font-size: 0.95rem;
}

.footer-tagline {
    font-family: var(--font-hand);
    font-size: 1.5rem;
    color: var(--gold);
    margin-top: 0.6rem;
}

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    margin-bottom: 0.8rem;
    color: var(--gold);
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: rgba(253, 246, 236, 0.78);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--cream);
}

.footer-bottom {
    border-top: 1px solid rgba(253, 246, 236, 0.18);
    padding-top: 1.5rem;
    text-align: center;
    color: rgba(253, 246, 236, 0.6);
    font-size: 0.88rem;
}

/* ------------------------------------------------------------------ */
/* Responsive                                                          */
/* ------------------------------------------------------------------ */
@media (max-width: 860px) {
    .hero-inner,
    .about-split,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .hero-art {
        min-height: 300px;
        order: -1;
    }

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

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 640px) {
    .nav-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: var(--paper);
        border-bottom: 2px solid var(--line);
        padding: 0.5rem 1.5rem 1.25rem;
        box-shadow: var(--shadow-md);
    }

    .nav-menu.nav-open {
        display: flex;
    }

    .nav-menu li {
        padding: 0.65rem 0;
        border-bottom: 1px solid var(--line);
    }

    .nav-menu li:last-child {
        border-bottom: none;
        padding-top: 1rem;
    }

    .nav-menu .btn {
        text-align: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .hero-buttons .btn {
        flex: 1;
        text-align: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        scroll-behavior: auto !important;
        transition: none !important;
    }
}
