/* ========================================
   Tuckered Out LLC — Stylesheet
   Black / Silver / Gold / Green Accent
   ======================================== */

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: #0a0a0a;
    --black-light: #141414;
    --black-card: #1a1a1a;
    --silver: #c0c0c0;
    --silver-light: #d4d4d4;
    --silver-dark: #8a8a8a;
    --gold: #c9a84c;
    --gold-light: #d4b85e;
    --gold-dark: #a8893a;
    --green: #3a7d5c;
    --green-light: #4a9970;
    --green-dark: #2d6148;
    --gray-900: #e8e8e8;
    --gray-700: #a0a0a0;
    --gray-400: #666666;
    --gray-200: #2a2a2a;
    --gray-100: #111111;
    --white: #ffffff;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow: 0 1px 3px rgba(0,0,0,.3), 0 4px 12px rgba(0,0,0,.2);
    --shadow-lg: 0 4px 12px rgba(0,0,0,.3), 0 16px 40px rgba(0,0,0,.25);
    --transition: .3s cubic-bezier(.4,0,.2,1);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--silver-light);
    line-height: 1.6;
    background: var(--black);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: 'Oswald', Impact, sans-serif;
    line-height: 1.15;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: .03em;
}

a {
    color: inherit;
    text-decoration: none;
}

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

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: .95rem;
    font-weight: 600;
    letter-spacing: .01em;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: var(--gold);
    color: var(--black);
}
.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(201,168,76,.3);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,.25);
}
.btn-outline:hover {
    background: rgba(255,255,255,.05);
    border-color: rgba(255,255,255,.5);
}

.btn-green {
    background: var(--green);
    color: var(--white);
}
.btn-green:hover {
    background: var(--green-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(58,125,92,.3);
}

.btn-nav {
    padding: 10px 24px;
    background: var(--gold);
    color: var(--black);
    font-size: .875rem;
}
.btn-nav:hover {
    background: var(--gold-light);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.05rem;
}

.btn-full {
    width: 100%;
}

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.nav.scrolled {
    background: rgba(10,10,10,.95);
    backdrop-filter: blur(16px);
    padding: 12px 0;
    box-shadow: 0 1px 20px rgba(0,0,0,.4);
    border-bottom: 1px solid rgba(201,168,76,.1);
}

.nav-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.1rem;
}

.logo-img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.logo-text {
    color: var(--white);
    font-family: 'Oswald', Impact, sans-serif;
    font-weight: 600;
    font-size: 1.15rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    transition: var(--transition);
}

.logo-text span {
    color: var(--gold);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    font-size: .9rem;
    font-weight: 500;
    color: var(--white);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--gold);
}

.nav.scrolled .nav-links a {
    color: var(--silver-light);
}
.nav.scrolled .nav-links a:hover {
    color: var(--gold);
}
.nav.scrolled .btn-nav {
    color: var(--black);
}

/* Mobile menu toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--silver);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}
.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Hero --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('images/TO job 1.jpg');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0,0,0,.85) 0%,
        rgba(0,0,0,.7) 40%,
        rgba(0,0,0,.5) 100%
    );
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, var(--black), transparent);
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1140px;
    margin: 0 auto;
    padding: 160px 24px 120px;
}

.hero-tagline {
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.hero h1 {
    font-size: clamp(2.8rem, 6vw, 5rem);
    color: var(--white);
    font-weight: 700;
    margin-bottom: 20px;
}

.hero h1 em {
    font-style: normal;
    color: var(--gold);
}

.hero-sub {
    font-size: 1.15rem;
    color: rgba(255,255,255,.6);
    max-width: 480px;
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 52px;
}

.hero-proof {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,.45);
    font-size: .875rem;
}

.stars {
    color: var(--gold);
    font-size: 1.1rem;
    letter-spacing: 2px;
}

/* --- Section Shared --- */
.section-label {
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: var(--white);
    margin-bottom: 48px;
}

/* --- Services --- */
.services {
    padding: 100px 0;
    background: var(--black);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    padding: 36px 28px;
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
    background: var(--black-card);
    transition: var(--transition);
}

.service-card:hover {
    border-color: var(--gold-dark);
    box-shadow: 0 8px 32px rgba(201,168,76,.08);
    transform: translateY(-4px);
}

.service-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(58,125,92,.15);
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    color: var(--green-light);
}

.service-icon svg {
    width: 24px;
    height: 24px;
}

.service-card h3 {
    font-family: 'Oswald', Impact, sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: .05em;
}

.service-card p {
    font-size: .9rem;
    color: var(--silver-dark);
    line-height: 1.65;
}

/* --- Gallery / Work --- */
.work {
    padding: 100px 0 60px;
    background: var(--black-light);
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.work-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/3;
}

.work-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.work-item:hover img {
    transform: scale(1.05);
}

.work-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.6), transparent 50%);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.work-item:hover .work-item-overlay {
    opacity: 1;
}

.work-item-overlay span {
    color: var(--white);
    font-size: .85rem;
    font-weight: 500;
}

/* Before/After special card */
.work-item.before-after {
    grid-column: span 1;
}

/* --- About --- */
.about {
    padding: 100px 0;
    background: var(--black);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-visual {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
}

.about-image {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: var(--radius);
}

.about-logo-overlay {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 80px;
    height: 80px;
    object-fit: contain;
    opacity: .6;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,.5));
}

.about-content .section-title {
    margin-bottom: 24px;
}

.about-content p {
    color: var(--silver-dark);
    margin-bottom: 16px;
    font-size: .95rem;
    line-height: 1.75;
}

.about-stats {
    display: flex;
    gap: 32px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--gray-200);
}

.stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 4px;
}

.stat-label {
    font-size: .8rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 500;
}

/* --- CTA Banner --- */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--green-dark), var(--green));
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 100%, rgba(201,168,76,.1), transparent 60%);
}

.cta-inner {
    position: relative;
}

.cta h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    color: var(--white);
    margin-bottom: 12px;
}

.cta p {
    color: rgba(255,255,255,.6);
    margin-bottom: 32px;
    font-size: 1.05rem;
}

.cta .btn-primary {
    background: var(--gold);
    color: var(--black);
}
.cta .btn-primary:hover {
    background: var(--gold-light);
    box-shadow: 0 6px 24px rgba(201,168,76,.35);
}

/* --- Contact --- */
.contact {
    padding: 100px 0;
    background: var(--black-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 28px;
    padding-top: 8px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201,168,76,.1);
    border-radius: var(--radius-sm);
    color: var(--gold);
}

.contact-icon svg {
    width: 20px;
    height: 20px;
}

.contact-item h4 {
    font-family: 'Inter', sans-serif;
    font-size: .85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--gray-400);
    margin-bottom: 4px;
}

.contact-item a,
.contact-item p {
    font-size: .95rem;
    color: var(--silver-light);
    line-height: 1.5;
}

.contact-item a:hover {
    color: var(--gold);
}

/* Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: block;
    font-size: .8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--silver-dark);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-family: 'Inter', sans-serif;
    font-size: .925rem;
    color: var(--white);
    background: var(--black-card);
    transition: var(--transition);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-400);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    background: var(--black-light);
    box-shadow: 0 0 0 3px rgba(201,168,76,.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 110px;
}

.form-group select {
    appearance: none;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12"><path d="M2 4L6 8L10 4" stroke="%23666666" stroke-width="1.5" fill="none"/></svg>');
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    color: var(--silver-dark);
}

/* --- Footer --- */
.footer {
    padding: 40px 0;
    background: var(--black);
    border-top: 1px solid var(--gray-200);
}

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

.footer-brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-brand .logo-img {
    width: 32px;
    height: 32px;
}

.footer-brand p {
    font-size: .85rem;
    color: var(--gray-400);
}

.footer-links {
    display: flex;
    gap: 28px;
}

.footer-links a {
    font-size: .85rem;
    color: var(--gray-400);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold);
}

/* --- Animations --- */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-card:nth-child(2) { transition-delay: .08s; }
.service-card:nth-child(3) { transition-delay: .16s; }
.service-card:nth-child(4) { transition-delay: .24s; }
.service-card:nth-child(5) { transition-delay: .32s; }
.service-card:nth-child(6) { transition-delay: .4s; }

/* --- Responsive --- */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .work-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--black-card);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 32px 32px;
        gap: 0;
        box-shadow: -4px 0 24px rgba(0,0,0,.4);
        transition: var(--transition);
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links a {
        color: var(--silver) !important;
        font-size: 1rem;
        padding: 14px 0;
        border-bottom: 1px solid var(--gray-200);
        width: 100%;
    }

    .nav-links .btn-nav {
        margin-top: 16px;
        border-bottom: none;
        color: var(--black) !important;
        text-align: center;
    }

    .hero-content {
        padding: 120px 24px 80px;
    }

    .hero h1 {
        font-size: 2.4rem;
    }

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

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

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        height: 280px;
    }

    .about-stats {
        flex-wrap: wrap;
        gap: 24px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

    .footer-inner {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .section-title {
        font-size: 1.75rem;
    }
}
