/* =============================================
   MKA MICHAEL K BARBER — MAIN STYLESHEET
   michaelkbarber.com
   ============================================= */

/* ---- CSS VARIABLES ---- */
:root {
    --lime:       #C4F012;
    --lime-dark:  #a8d10e;
    --black:      #111111;
    --dark:       #0A0A0A;
    --card-bg:    #1A1A1A;
    --card-hover: #222222;
    --border:     #2A2A2A;
    --gray:       #6B7280;
    --gray-light: #9CA3AF;
    --white:      #F3F4F6;
    --white-pure: #FFFFFF;

    --font-display: 'Bebas Neue', sans-serif;
    --font-head:    'Montserrat', sans-serif;
    --font-body:    'Inter', sans-serif;

    --nav-h:  120px;
    --radius: 4px;
    --radius-lg: 8px;
    --trans:  0.3s ease;
    --shadow: 0 4px 24px rgba(0,0,0,0.4);
    --glow:   0 0 24px rgba(196,240,18,0.25);
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    background: var(--dark);
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--trans); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--lime); border-radius: 3px; }

/* ---- CONTAINER ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ---- SECTION SPACING ---- */
.section { padding: 100px 0; }
.section-sm { padding: 60px 0; }

/* ---- TYPOGRAPHY ---- */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-head);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--lime);
    text-transform: uppercase;
    margin-bottom: 16px;
}
.section-badge::before {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    background: var(--lime);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--white-pure);
    line-height: 1.05;
    letter-spacing: 0.02em;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--gray-light);
    max-width: 560px;
    margin-top: 12px;
    line-height: 1.7;
}

.text-lime { color: var(--lime); }
.text-center { text-align: center; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }
.text-center .section-badge { display: inline-flex; }

/* ---- BUTTONS ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: var(--radius);
    transition: all var(--trans);
    white-space: nowrap;
}

.btn-primary {
    background: var(--lime);
    color: var(--black);
    border: 2px solid var(--lime);
}
.btn-primary:hover {
    background: var(--lime-dark);
    border-color: var(--lime-dark);
    transform: translateY(-2px);
    box-shadow: var(--glow);
}

.btn-outline {
    background: transparent;
    color: var(--white-pure);
    border: 2px solid rgba(255,255,255,0.3);
}
.btn-outline:hover {
    border-color: var(--lime);
    color: var(--lime);
    transform: translateY(-2px);
}

.btn-outline-lime {
    background: transparent;
    color: var(--lime);
    border: 2px solid var(--lime);
}
.btn-outline-lime:hover {
    background: var(--lime);
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: var(--glow);
}

.btn-sm { padding: 10px 22px; font-size: 0.78rem; }
.btn-lg { padding: 18px 42px; font-size: 0.9rem; }

/* ---- DIVIDER LINE ---- */
.lime-line {
    display: block;
    width: 56px;
    height: 3px;
    background: var(--lime);
    margin: 20px 0;
}
.lime-line-center { margin: 20px auto; }


/* ===================================================
   NAVIGATION
   =================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-h);
    background: #F3F4F6;
    border-bottom: 2px solid rgba(0,0,0,0.08);
    transition: background var(--trans), box-shadow var(--trans);
}
.site-header.scrolled {
    background: rgba(243,244,246,0.97);
    box-shadow: 0 4px 24px rgba(0,0,0,0.12);
    backdrop-filter: blur(12px);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--nav-h);
    gap: 24px;
}

.nav-logo { flex-shrink: 0; }
.logo-img {
    width: 260px;
    height: 100px;
    object-fit: contain;
    object-position: left center;
    transition: opacity var(--trans), transform var(--trans);
}
.logo-img:hover {
    opacity: 0.82;
    transform: scale(1.02);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}
.nav-link {
    font-family: var(--font-head);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #111111;
    padding: 8px 16px;
    border-radius: var(--radius);
    position: relative;
    transition: color var(--trans);
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--lime-dark);
    transform: scaleX(0);
    transition: transform var(--trans);
}
.nav-link:hover, .nav-link.active { color: #000000; font-weight: 700; }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lang-btn {
    font-family: var(--font-head);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #111111;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    border: 1.5px solid rgba(17,17,17,0.25);
    border-radius: var(--radius);
    transition: all var(--trans);
}
.lang-btn:hover {
    color: #000000;
    border-color: #111111;
    background: rgba(17,17,17,0.06);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    border-radius: var(--radius);
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #111111;
    transition: all var(--trans);
    transform-origin: center;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    z-index: 998;
    backdrop-filter: blur(4px);
}
.nav-overlay.active { display: block; }


/* ===================================================
   HERO SECTION
   =================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--dark);
    padding-top: var(--nav-h);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;

    /* Hero background image */
    background-image: url('/assets/images/hero-bg.jpg');
    background-size: cover;
    background-position: top right;
    background-repeat: no-repeat;

    /* Subtle zoom-in animation on load */
    animation: heroBgZoom 12s ease-out forwards;
}

@keyframes heroBgZoom {
    from { transform: scale(1.06); }
    to   { transform: scale(1); }
}

/* Dark overlay — keeps text readable over the photo */
.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right,
            rgba(10,10,10,0.92) 0%,
            rgba(10,10,10,0.75) 45%,
            rgba(10,10,10,0.30) 100%),
        radial-gradient(ellipse 60% 80% at 0% 50%,
            rgba(10,10,10,0.6) 0%, transparent 70%);
}

/* Lime accent glow — subtle, on top of overlay */
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 40% 40% at 10% 80%,
            rgba(196,240,18,0.05) 0%, transparent 60%);
}

/* Large decorative MKA letters */
.hero-deco-text {
    display: none;
}

/* Diagonal accent lines */
.hero-lines {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}
.hero-lines::before {
    content: '';
    position: absolute;
    top: 0;
    left: 48%;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(196,240,18,0.12), transparent);
}
.hero-lines::after {
    content: '';
    position: absolute;
    top: 0;
    left: calc(48% + 36px);
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(196,240,18,0.05), transparent);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    text-align: left;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-head);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    color: var(--lime);
    text-transform: uppercase;
    margin-bottom: 24px;
}
.hero-badge::before {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: var(--lime);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 8vw, 7rem);
    line-height: 0.95;
    letter-spacing: 0.02em;
    color: var(--white-pure);
    margin-bottom: 24px;
}
.hero-title .lime { color: var(--lime); }

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--gray-light);
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: 40px;
}

.hero-ctas {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--gray);
    font-size: 0.7rem;
    font-family: var(--font-head);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    animation: bounce 2s infinite;
}
.hero-scroll i { font-size: 1.1rem; color: var(--lime); }

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(8px); }
}


/* ===================================================
   PAGE BANNER (Inner pages hero)
   =================================================== */
.page-banner {
    padding: calc(var(--nav-h) + 80px) 0 80px;
    background: var(--black);
    position: relative;
    overflow: hidden;
}
.page-banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--lime), transparent);
}
.page-banner-deco {
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-display);
    font-size: clamp(100px, 18vw, 220px);
    color: transparent;
    -webkit-text-stroke: 1px rgba(196,240,18,0.05);
    user-select: none;
    pointer-events: none;
    line-height: 1;
}


/* ===================================================
   SERVICES SECTION
   =================================================== */
.services-section { background: var(--black); }

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-top: 56px;
}

.service-card {
    background: var(--card-bg);
    padding: 36px 24px;
    text-align: center;
    transition: background var(--trans), transform var(--trans);
    position: relative;
    overflow: hidden;
    cursor: default;
}
.service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--lime);
    transform: scaleX(0);
    transition: transform var(--trans);
}
.service-card:hover { background: var(--card-hover); }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(196,240,18,0.08);
    border: 1px solid rgba(196,240,18,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.3rem;
    color: var(--lime);
    transition: background var(--trans), box-shadow var(--trans);
}
.service-card:hover .service-icon {
    background: rgba(196,240,18,0.15);
    box-shadow: var(--glow);
}

.service-name {
    font-family: var(--font-head);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--white);
    text-transform: uppercase;
}


/* ===================================================
   ABOUT SECTION (Home)
   =================================================== */
.about-section { background: var(--dark); }

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

.about-image-wrap {
    position: relative;
}
.about-image-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/5;
    background: var(--card-bg);
}
.about-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.about-image-frame:hover img { transform: scale(1.03); }

/* Lime corner accent */
.about-image-wrap::before {
    content: '';
    position: absolute;
    top: -12px;
    left: -12px;
    width: 80px;
    height: 80px;
    border-top: 3px solid var(--lime);
    border-left: 3px solid var(--lime);
    z-index: 1;
}
.about-image-wrap::after {
    content: '';
    position: absolute;
    bottom: -12px;
    right: -12px;
    width: 80px;
    height: 80px;
    border-bottom: 3px solid var(--lime);
    border-right: 3px solid var(--lime);
    z-index: 1;
}

/* Placeholder for about image if not provided */
.about-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #222 50%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-placeholder i { font-size: 6rem; color: rgba(196,240,18,0.15); }

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    margin-top: 40px;
}
.stat-item {
    background: var(--card-bg);
    padding: 24px 16px;
    text-align: center;
}
.stat-num {
    font-family: var(--font-display);
    font-size: 2.4rem;
    color: var(--lime);
    line-height: 1;
}
.stat-lbl {
    font-size: 0.7rem;
    font-family: var(--font-head);
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--gray);
    text-transform: uppercase;
    margin-top: 6px;
}


/* ===================================================
   GALLERY SECTION (Home preview + Full page)
   =================================================== */
.gallery-section { background: var(--black); }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 56px;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--card-bg);
    cursor: pointer;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--trans);
}
.gallery-overlay i { font-size: 2rem; color: var(--lime); }
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* Placeholder for missing gallery images */
.gallery-placeholder-box {
    width: 100%;
    height: 100%;
    background: var(--card-bg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px dashed var(--border);
    transition: border-color var(--trans);
}
.gallery-placeholder-box:hover { border-color: rgba(196,240,18,0.3); }
.gallery-placeholder-box i { font-size: 2rem; color: rgba(196,240,18,0.2); }
.gallery-placeholder-box span {
    font-size: 0.7rem;
    font-family: var(--font-head);
    letter-spacing: 0.1em;
    color: var(--gray);
    text-transform: uppercase;
}

.gallery-cta-wrap {
    text-align: center;
    margin-top: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Full gallery page — 4 cols */
.gallery-grid-full {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 56px;
}


/* ===================================================
   LIGHTBOX
   =================================================== */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.95);
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.lightbox.active { display: flex; }
.lightbox-img {
    max-width: 90vw;
    max-height: 88vh;
    object-fit: contain;
    border-radius: var(--radius);
    box-shadow: 0 0 60px rgba(0,0,0,0.8);
}
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 1.8rem;
    color: var(--white-pure);
    cursor: pointer;
    transition: color var(--trans);
    background: none;
    border: none;
    line-height: 1;
}
.lightbox-close:hover { color: var(--lime); }
.lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--white-pure);
    cursor: pointer;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--trans);
}
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-prev:hover, .lightbox-next:hover {
    background: var(--lime);
    color: var(--black);
    border-color: var(--lime);
}


/* ===================================================
   TESTIMONIALS
   =================================================== */
.testimonials-section { background: var(--dark); }

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

.testimonial-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: border-color var(--trans), transform var(--trans);
    position: relative;
}
.testimonial-card:hover {
    border-color: rgba(196,240,18,0.25);
    transform: translateY(-4px);
}

.test-quote {
    font-size: 2.5rem;
    color: var(--lime);
    line-height: 1;
    font-family: Georgia, serif;
    margin-bottom: 16px;
}

.test-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
    color: var(--lime);
    font-size: 0.85rem;
}

.test-text {
    font-size: 0.92rem;
    color: var(--gray-light);
    line-height: 1.75;
    margin-bottom: 24px;
    font-style: italic;
}

.test-author { display: flex; align-items: center; gap: 12px; }
.test-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(196,240,18,0.12);
    border: 2px solid rgba(196,240,18,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--lime);
    flex-shrink: 0;
}
.test-name {
    font-family: var(--font-head);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--white-pure);
}
.test-role {
    font-size: 0.75rem;
    color: var(--gray);
    margin-top: 2px;
}


/* ===================================================
   CTA BANNER
   =================================================== */
.cta-section {
    background: var(--lime);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: 'MKA';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-display);
    font-size: 300px;
    color: rgba(0,0,0,0.06);
    line-height: 1;
    user-select: none;
    pointer-events: none;
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}
.cta-text .cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: var(--black);
    line-height: 1.1;
}
.cta-text .cta-subtitle {
    font-size: 1rem;
    color: rgba(0,0,0,0.65);
    margin-top: 8px;
}
.cta-btns { display: flex; gap: 16px; flex-wrap: wrap; }

.btn-dark {
    background: var(--black);
    color: var(--white-pure);
    border: 2px solid var(--black);
}
.btn-dark:hover {
    background: #222;
    border-color: #222;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.btn-dark-outline {
    background: transparent;
    color: var(--black);
    border: 2px solid rgba(0,0,0,0.35);
}
.btn-dark-outline:hover {
    background: rgba(0,0,0,0.08);
    border-color: var(--black);
    transform: translateY(-2px);
}


/* ===================================================
   ABOUT PAGE
   =================================================== */
.about-story-section { background: var(--dark); }

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.story-image-stack {
    position: relative;
    aspect-ratio: 3/4;
}
.story-img-main {
    width: 85%;
    aspect-ratio: 3/4;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--card-bg);
    border: 1px solid var(--border);
}
.story-img-main img { width: 100%; height: 100%; object-fit: cover; }
.story-img-accent {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    aspect-ratio: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--lime);
    border: 4px solid var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 20px;
}
.story-img-accent .accent-num {
    font-family: var(--font-display);
    font-size: 3.5rem;
    color: var(--black);
    line-height: 1;
}
.story-img-accent .accent-txt {
    font-family: var(--font-head);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: rgba(0,0,0,0.7);
    text-transform: uppercase;
    line-height: 1.3;
    margin-top: 4px;
}

.story-content .story-name {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--white-pure);
    line-height: 1;
    margin-bottom: 4px;
}
.story-content .story-role {
    font-family: var(--font-head);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: var(--lime);
    text-transform: uppercase;
    margin-bottom: 28px;
}
.story-content p {
    color: var(--gray-light);
    line-height: 1.8;
    margin-bottom: 18px;
    font-size: 0.97rem;
}

/* Values Section */
.values-section { background: var(--black); }

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 56px;
}
.value-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    transition: all var(--trans);
    position: relative;
    overflow: hidden;
}
.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--lime);
    transform: scaleX(0);
    transition: transform var(--trans);
}
.value-card:hover { border-color: rgba(196,240,18,0.2); transform: translateY(-4px); }
.value-card:hover::before { transform: scaleX(1); }

.value-num {
    font-family: var(--font-display);
    font-size: 3rem;
    color: rgba(196,240,18,0.12);
    line-height: 1;
    margin-bottom: 16px;
}
.value-title {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white-pure);
    margin-bottom: 10px;
    letter-spacing: 0.03em;
}
.value-text {
    font-size: 0.87rem;
    color: var(--gray-light);
    line-height: 1.7;
}


/* ===================================================
   CONTACT PAGE
   =================================================== */
.contact-section { background: var(--dark); }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    align-items: start;
}

/* Form */
.contact-form-wrap {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
}
.form-title {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--white-pure);
    margin-bottom: 28px;
}

.form-group { margin-bottom: 20px; }
.form-label {
    display: block;
    font-family: var(--font-head);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gray-light);
    margin-bottom: 8px;
}
.form-control {
    width: 100%;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--white-pure);
    padding: 13px 16px;
    font-size: 0.92rem;
    transition: border-color var(--trans), box-shadow var(--trans);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}
.form-control:focus {
    border-color: var(--lime);
    box-shadow: 0 0 0 3px rgba(196,240,18,0.1);
}
.form-control::placeholder { color: var(--gray); }
textarea.form-control { resize: vertical; min-height: 110px; }
select.form-control {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
    cursor: pointer;
}
select.form-control option { background: var(--card-bg); color: var(--white-pure); }

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

.form-alert {
    display: none;
    padding: 14px 18px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    font-size: 0.87rem;
    font-weight: 500;
}
.form-alert.success {
    background: rgba(196,240,18,0.1);
    border: 1px solid rgba(196,240,18,0.3);
    color: var(--lime);
    display: flex;
    align-items: center;
    gap: 8px;
}
.form-alert.error {
    background: rgba(239,68,68,0.1);
    border: 1px solid rgba(239,68,68,0.3);
    color: #FCA5A5;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Contact Info Panel */
.contact-info-panel { display: flex; flex-direction: column; gap: 24px; }

.info-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
}
.info-card-title {
    font-family: var(--font-head);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--lime);
    margin-bottom: 16px;
}
.info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.9rem;
    color: var(--gray-light);
}
.info-item:last-child { margin-bottom: 0; }
.info-item i {
    color: var(--lime);
    font-size: 0.9rem;
    width: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}
.info-item a:hover { color: var(--lime); }

.social-row {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}
.social-btn {
    width: 40px;
    height: 40px;
    border-radius: var(--radius);
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    color: var(--gray-light);
    transition: all var(--trans);
}
.social-btn:hover { background: var(--lime); color: var(--black); border-color: var(--lime); }

/* Map */
.map-section { background: var(--black); padding: 0; }
.map-wrap { width: 100%; height: 380px; overflow: hidden; }
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }


/* ===================================================
   FOOTER
   =================================================== */
.site-footer {
    background: var(--black);
    border-top: 1px solid var(--border);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1.4fr 1.2fr;
    gap: 48px;
    padding: 64px 24px;
}

.footer-logo {
    height: 44px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 14px;
}

.footer-tagline {
    font-family: var(--font-head);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--lime);
    margin-bottom: 12px;
}

.footer-desc {
    font-size: 0.87rem;
    color: var(--gray);
    line-height: 1.7;
    max-width: 260px;
    margin-bottom: 20px;
}

.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: var(--radius);
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--gray-light);
    transition: all var(--trans);
}
.footer-social a:hover { background: var(--lime); color: var(--black); border-color: var(--lime); }

.footer-col-title {
    font-family: var(--font-head);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white-pure);
    margin-bottom: 20px;
}

.footer-links li { margin-bottom: 10px; }
.footer-links a {
    font-size: 0.87rem;
    color: var(--gray);
    transition: color var(--trans);
    display: flex;
    align-items: center;
    gap: 6px;
}
.footer-links a::before {
    content: '';
    display: block;
    width: 14px;
    height: 1px;
    background: var(--border);
    transition: width var(--trans), background var(--trans);
}
.footer-links a:hover { color: var(--lime); }
.footer-links a:hover::before { width: 20px; background: var(--lime); }

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.85rem;
    color: var(--gray);
}
.footer-contact-list i {
    color: var(--lime);
    font-size: 0.82rem;
    width: 14px;
    flex-shrink: 0;
    margin-top: 2px;
}
.footer-contact-list a:hover { color: var(--lime); }

.footer-hours li {
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 8px;
}
.footer-hours .day { color: var(--gray-light); }
.footer-hours .closed { color: var(--gray); font-style: italic; }
.footer-cta { margin-top: 20px; }

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 20px 24px;
}
.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom p {
    font-size: 0.78rem;
    color: var(--gray);
}


/* ===================================================
   SCROLL ANIMATIONS
   =================================================== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }
.fade-up:nth-child(5) { transition-delay: 0.4s; }
.fade-up:nth-child(6) { transition-delay: 0.5s; }


/* ===================================================
   UTILITIES
   =================================================== */
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mb-0  { margin-bottom: 0; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.gap-16 { gap: 16px; }
.w-100 { width: 100%; }


/* ===================================================
   RESPONSIVE — TABLET (≤ 1024px)
   =================================================== */
@media (max-width: 1024px) {
    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .about-image-wrap { max-width: 440px; margin: 0 auto; }
    .story-grid { grid-template-columns: 1fr; gap: 48px; }
    .contact-grid { grid-template-columns: 1fr; }
    .contact-info-panel { display: grid; grid-template-columns: 1fr 1fr; }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .gallery-grid-full { grid-template-columns: repeat(3, 1fr); }
}


/* ===================================================
   RESPONSIVE — MOBILE (≤ 768px)
   =================================================== */
@media (max-width: 768px) {
    .section { padding: 70px 0; }
    .logo-img { width: 235px; }

    /* Nav mobile */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #F3F4F6;
        flex-direction: column;
        align-items: flex-start;
        padding: calc(var(--nav-h) + 24px) 28px 40px;
        gap: 4px;
        z-index: 999;
        transition: right var(--trans);
        border-left: 2px solid rgba(17,17,17,0.1);
        box-shadow: -8px 0 32px rgba(0,0,0,0.15);
        overflow-y: auto;
    }
    .nav-links.open { right: 0; }
    .nav-link {
        font-size: 1.05rem;
        padding: 14px 0;
        width: 100%;
        color: #111111;
        border-bottom: 1px solid rgba(17,17,17,0.08);
        border-radius: 0;
    }
    .nav-link::after { display: none; }
    .nav-link:hover, .nav-link.active { color: #000000; padding-left: 8px; }
    .nav-toggle { display: flex; }
    .nav-actions .btn-sm { display: none; }

    /* Hero */
    .hero-deco-text { font-size: 180px; opacity: 0.5; right: -40px; }
    .hero-title { font-size: clamp(2.8rem, 12vw, 5rem); }

    /* Grids */
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid-full { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: 1fr; }
    .about-stats { grid-template-columns: repeat(3, 1fr); }
    .values-grid { grid-template-columns: 1fr 1fr; }
    .footer-top { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }
    .cta-inner { flex-direction: column; text-align: center; }
    .cta-btns { justify-content: center; }
    .contact-info-panel { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .story-image-stack { max-width: 400px; margin: 0 auto; }
    .story-img-main { width: 80%; }
    .gallery-grid-full { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .hero-title { font-size: clamp(2.4rem, 12vw, 3.5rem); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid-full { grid-template-columns: repeat(2, 1fr); }
    .about-stats { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; }
    .contact-form-wrap { padding: 24px; }
    .hero-ctas { flex-direction: column; }
    .hero-ctas .btn { width: 100%; justify-content: center; }
}
