/* ==========================================================================
   Home Page / Screen Stylesheet (home.css)
   ========================================================================== */

/* Hero Section */
.hero-preview {
    min-height: calc(100vh - var(--header-height));
    background: linear-gradient(
        180deg,
        rgba(11, 11, 11, 0.82) 0%,
        rgba(11, 11, 11, 0.72) 50%,
        #0b0b0b 100%
    ), url('../images/hero-bg.jpg') center center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 5rem 1.5rem 5.5rem 1.5rem;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    z-index: 2;
}

.hero-tagline {
    font-size: 0.85rem;
    letter-spacing: 4px;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 5.5vw, 4.2rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.18;
    margin-bottom: 2rem;
    letter-spacing: 1px;
    text-shadow: 0 4px 25px rgba(0, 0, 0, 0.9);
}

.highlight-crimson {
    color: var(--accent-crimson);
}

.hero-actions {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.btn-hero {
    padding: 0.95rem 2.2rem;
    font-size: 0.8rem;
    box-shadow: 0 4px 25px rgba(139, 0, 0, 0.6);
}

.btn-outline-hero {
    padding: 0.95rem 2.2rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    color: #ffffff;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: rgba(11, 11, 11, 0.5);
    backdrop-filter: blur(6px);
    transition: all 0.3s ease;
}

.btn-outline-hero:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.2);
}

.hero-styles-bar {
    position: absolute;
    bottom: 1.2rem;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    z-index: 3;
    padding: 0 1.5rem;
    flex-wrap: wrap;
}

.style-item {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 3px;
    color: var(--text-muted);
    text-transform: uppercase;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.style-item:hover {
    color: #ffffff;
    cursor: pointer;
}

.bullet-dot {
    color: var(--accent-crimson);
    font-size: 0.8rem;
}

/* ==========================================================================
   THE STORY Section (Matching Reference Design)
   ========================================================================== */

.story-section {
    background-color: #0d0d0d;
    padding: 6rem 2rem;
    border-top: 1px solid var(--border-subtle);
}

.story-container {
    max-width: 1300px;
    margin: 0 auto 4rem auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
    align-items: center;
}

.story-featured-wrapper {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    background-color: #050505;
}

.story-main-img {
    width: 100%;
    height: auto;
    max-height: 520px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.story-featured-wrapper:hover .story-main-img {
    transform: scale(1.03);
}

.story-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.story-sublabel {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3.5px;
    color: var(--accent-crimson);
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.story-heading {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    color: var(--text-muted);
    line-height: 1.2;
    margin-bottom: 1.8rem;
    letter-spacing: 1px;
}

.highlight-white {
    color: #ffffff;
}

.story-description {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #b5b5b5;
    margin-bottom: 2.5rem;
    max-width: 580px;
}

.btn-story {
    background-color: var(--accent-crimson);
    color: #ffffff !important;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    padding: 0.9rem 2rem;
    text-transform: uppercase;
    border: 1px solid var(--accent-crimson);
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-story:hover {
    background-color: transparent;
    color: #ffffff !important;
    border-color: #ffffff;
}

/* Bottom 3-Card Studio Craft Grid */
.story-grid-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.story-grid-card {
    position: relative;
    overflow: hidden;
    height: 240px;
    border: 1px solid var(--border-subtle);
}

.story-grid-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.story-grid-card:hover .story-grid-img {
    transform: scale(1.06);
}

.story-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.2rem 1rem;
    background: linear-gradient(0deg, rgba(13, 13, 13, 0.95) 0%, transparent 100%);
    display: flex;
    align-items: flex-end;
}

.card-caption {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: #ffffff;
    text-transform: uppercase;
}

/* ==========================================================================
   THE HANDS Section (Master Artists)
   ========================================================================== */

.hands-section {
    background-color: #080808;
    padding: 6rem 2rem;
    border-top: 1px solid var(--border-subtle);
}

.hands-header {
    max-width: 1300px;
    margin: 0 auto 3rem auto;
    text-align: center;
}

.hands-sublabel {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3.5px;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 0.6rem;
}

.hands-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1.5px;
}

.hands-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.2rem;
}

.artist-card {
    background: rgba(18, 18, 18, 0.9);
    border: 1px solid var(--border-subtle);
    overflow: hidden;
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
}

.artist-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8);
}

.artist-img-wrapper {
    position: relative;
    width: 100%;
    height: 380px;
    overflow: hidden;
    background-color: #050505;
}

.artist-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(85%) contrast(110%);
    transition: filter 0.5s ease, transform 0.5s ease;
}

.artist-card:hover .artist-img {
    filter: grayscale(0%) contrast(100%);
    transform: scale(1.04);
}

.artist-info {
    padding: 1.8rem 1.5rem;
    background: #111111;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    border-top: 1px solid var(--border-subtle);
}

.artist-name {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1px;
}

.artist-specialty {
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    margin-bottom: 0.4rem;
}

.artist-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 0.5rem;
    padding-top: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.artist-link {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--accent-crimson);
    text-transform: uppercase;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.artist-link:hover {
    color: #ffffff;
    transform: translateX(3px);
}

.artist-insta-link {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #b5b5b5;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.8rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 2px;
    transition: all 0.35s ease;
}

.artist-insta-link svg {
    color: #ff5e62;
    transition: transform 0.3s ease;
}

.artist-insta-link:hover {
    color: #ffffff;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(220, 39, 67, 0.4);
    transform: translateY(-2px);
}

.artist-insta-link:hover svg {
    color: #ffffff;
    transform: rotate(10deg) scale(1.1);
}

.no-artists-msg {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    color: var(--text-muted);
}

/* ==========================================================================
   THE MARKS Section (Tattoo Portfolio Grid - Photo & Video Lightbox Popup)
   ========================================================================== */

.marks-section {
    background-color: #0b0b0b;
    padding: 6rem 2rem;
    border-top: 1px solid var(--border-subtle);
}

.marks-header {
    max-width: 1300px;
    margin: 0 auto 3.5rem auto;
    text-align: center;
}

.marks-sublabel {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3.5px;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 0.6rem;
}

.marks-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1.5px;
}

/* Tattoo Category / Style Filter Tabs */
.gallery-filter-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 2.2rem auto 0 auto;
    max-width: 1000px;
    padding: 0.5rem 1rem;
}

.gallery-filter-btn {
    background: rgba(255, 255, 255, 0.04);
    color: #a8a8a8;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.65rem 1.4rem;
    font-family: var(--font-nav);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 2px;
    outline: none;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.gallery-filter-btn:hover {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.09);
    transform: translateY(-2px);
}

.gallery-filter-btn.active {
    color: #ffffff;
    background: var(--accent-crimson);
    border-color: var(--accent-crimson);
    box-shadow: 0 0 20px rgba(139, 0, 0, 0.7);
    font-weight: 700;
    transform: translateY(-2px);
}

.marks-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
}

.gallery-card {
    position: relative;
    height: 340px;
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    background-color: #111111;
    cursor: pointer;
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.gallery-card.filter-anim {
    animation: fadeInScale 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.94);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.gallery-category-badge {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #ff6b6b;
    text-transform: uppercase;
    margin-bottom: 0.2rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.no-category-match-msg {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 1.5rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    letter-spacing: 1px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px dashed rgba(255, 255, 255, 0.1);
}

.gallery-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.4);
}

.gallery-img,
.gallery-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.video-thumbnail-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    pointer-events: none; /* Allows card click event */
}

.video-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.2rem;
    color: #ffffff;
    background: rgba(139, 0, 0, 0.85);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
    transition: transform 0.3s ease;
}

.gallery-card:hover .video-play-icon {
    transform: translate(-50%, -50%) scale(1.15);
}

.gallery-video-iframe {
    width: 100%;
    height: 100%;
    border: none;
    pointer-events: none;
}

.gallery-card:hover .gallery-img {
    transform: scale(1.06);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.2rem 1rem;
    background: linear-gradient(0deg, rgba(11, 11, 11, 0.95) 0%, transparent 100%);
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-title {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
}

.gallery-action {
    font-size: 0.68rem;
    letter-spacing: 2px;
    color: var(--accent-crimson);
    font-weight: 600;
    text-transform: uppercase;
}

.no-gallery-msg {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    color: var(--text-muted);
}

/* ==========================================================================
   Lightbox Modal Popup (Photo & Video Popup - Same Tab)
   ========================================================================== */

.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 100005;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.lightbox-modal.open {
    opacity: 1;
    visibility: visible;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(10px);
}

.lightbox-container {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 900px;
    background: rgba(18, 18, 18, 0.98);
    border: 1px solid var(--border-subtle);
    padding: 1.5rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: modalSlideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes modalSlideUp {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.lightbox-close {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 40px;
    height: 40px;
    background: var(--accent-crimson);
    color: #ffffff;
    border: 1px solid var(--accent-crimson);
    font-size: 1.8rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
    transition: transform 0.3s ease;
}

.lightbox-close:hover {
    transform: scale(1.15);
}

.lightbox-body {
    width: 100%;
    max-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.lightbox-img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    display: block;
}

.lightbox-video {
    width: 100%;
    max-height: 70vh;
    outline: none;
}

.lightbox-iframe {
    width: 100%;
    height: 500px;
    border: none;
}

.lightbox-caption {
    margin-top: 1rem;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: #ffffff;
    letter-spacing: 1px;
    text-align: center;
}

/* ==========================================================================
   CONTACT US SECTION (Luxury Studio & Form Layout)
   ========================================================================== */
.contact-section {
    padding: 6.5rem 2rem 7.5rem 2rem;
    background: radial-gradient(circle at center, #181818 0%, #0b0b0b 100%);
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.contact-sublabel {
    font-size: 0.8rem;
    letter-spacing: 3.5px;
    color: var(--accent-crimson);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.contact-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.8vw, 2.8rem);
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 2px;
}

.section-title-divider {
    width: 60px;
    height: 2px;
    background: var(--accent-crimson);
    margin: 1rem auto 0 auto;
    box-shadow: 0 0 10px rgba(139, 0, 0, 0.8);
}

.contact-container {
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 2.8rem;
    align-items: stretch;
}

/* Info Card (Left) */
.contact-info-card {
    background: rgba(18, 18, 18, 0.95);
    border: 1px solid var(--border-subtle);
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.85);
    position: relative;
    backdrop-filter: blur(12px);
}

.contact-info-top {
    display: flex;
    flex-direction: column;
}

.contact-info-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.8rem;
    letter-spacing: 1px;
}

.contact-info-description {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.65;
    margin-bottom: 2.4rem;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
    margin-bottom: 2rem;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1.1rem;
}

.contact-icon-badge {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: rgba(139, 0, 0, 0.12);
    border: 1px solid rgba(139, 0, 0, 0.35);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff4d4d;
    box-shadow: 0 0 12px rgba(139, 0, 0, 0.25);
    transition: all 0.3s ease;
}

.contact-detail-item:hover .contact-icon-badge {
    background: var(--accent-crimson);
    color: #ffffff;
    border-color: var(--accent-crimson);
    box-shadow: 0 0 18px rgba(139, 0, 0, 0.7);
    transform: translateY(-2px);
}

.contact-detail-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding-top: 0.1rem;
}

.detail-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.8px;
    color: #ffffff;
    text-transform: uppercase;
}

.detail-value {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

.contact-link {
    color: #e5e5e5;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--accent-crimson);
}

.link-separator {
    margin: 0 0.4rem;
    color: rgba(255, 255, 255, 0.3);
}

.whatsapp-link {
    color: #25d366;
    font-weight: 600;
}

.whatsapp-link:hover {
    color: #1ebe5d;
    text-decoration: underline;
}

.contact-card-cta {
    margin-top: auto;
    padding-top: 1.5rem;
}

.btn-contact-book {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0.95rem;
    font-size: 0.8rem;
}

/* Form Wrapper (Right) */
.contact-form-wrapper {
    background: rgba(18, 18, 18, 0.95);
    border: 1px solid var(--border-subtle);
    padding: 3rem 2.8rem;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-form-header {
    margin-bottom: 2rem;
}

.contact-form-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.contact-form-subtitle {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.3rem;
}

.contact-section .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    width: 100%;
}

.contact-section .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
}

.contact-section .form-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--text-main);
    text-transform: uppercase;
}

.required-star {
    color: var(--accent-crimson);
    font-weight: 700;
}

.contact-section .form-input,
.contact-section .form-textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.16);
    padding: 0.85rem 1.1rem;
    font-family: var(--font-nav);
    font-size: 0.88rem;
    color: #ffffff;
    transition: all 0.3s ease;
    outline: none;
    border-radius: 2px;
    box-sizing: border-box;
}

.contact-section .form-input::placeholder,
.contact-section .form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.82rem;
}

.contact-section .form-input:focus,
.contact-section .form-textarea:focus {
    border-color: var(--accent-crimson);
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 0 16px rgba(139, 0, 0, 0.45);
}

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

.contact-alert {
    padding: 1rem 1.2rem;
    font-size: 0.88rem;
    margin-bottom: 0.5rem;
    border-radius: 2px;
    line-height: 1.5;
}

.contact-alert.success {
    background: rgba(39, 174, 96, 0.15);
    border: 1px solid rgba(39, 174, 96, 0.5);
    color: #2ecc71;
}

.contact-alert.error {
    background: rgba(192, 57, 43, 0.15);
    border: 1px solid rgba(192, 57, 43, 0.5);
    color: #e74c3c;
}

.btn-submit-contact {
    margin-top: 0.5rem;
    width: 100%;
    padding: 1rem;
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: 2px;
}

/* ==========================================================================
   Responsive Breakpoints & Mobile Optimization
   ========================================================================== */

@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .story-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .story-main-img {
        max-height: 440px;
    }

    .story-grid-container {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .story-grid-card {
        height: 220px;
    }

    .hands-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .artist-img-wrapper {
        height: 320px;
    }

    .marks-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .story-section, .hands-section, .marks-section, .contact-section {
        padding: 3.5rem 1.2rem;
    }

    .story-container {
        margin-bottom: 2.5rem;
    }

    .story-main-img {
        max-height: 380px;
    }

    .story-heading, .hands-title, .marks-title, .contact-title {
        font-size: 1.75rem;
        margin-bottom: 1.2rem;
    }

    .story-description {
        font-size: 0.88rem;
        margin-bottom: 1.8rem;
    }

    .hero-styles-bar {
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding: 0.5rem 1.2rem;
        gap: 1rem;
        scrollbar-width: none;
    }

    .hero-styles-bar::-webkit-scrollbar {
        display: none;
    }

    .gallery-filter-bar {
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        gap: 0.55rem;
        margin: 1.8rem 0 0 0;
        padding: 0.4rem 0.5rem 0.8rem 0.5rem;
        width: 100%;
        max-width: 100%;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .gallery-filter-bar::-webkit-scrollbar {
        display: none;
    }

    .gallery-filter-btn {
        flex: 0 0 auto;
        padding: 0.6rem 1.2rem;
        font-size: 0.68rem;
        letter-spacing: 1.5px;
        white-space: nowrap;
    }

    .lightbox-iframe {
        height: 320px;
    }
}

@media (max-width: 576px) {
    .hero-preview {
        padding-top: 3.5rem;
        padding-bottom: 4.5rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 0.8rem;
    }

    .btn-hero, .btn-outline-hero {
        width: 100%;
        text-align: center;
        padding: 0.85rem 1.5rem;
    }

    .style-item {
        font-size: 0.65rem;
        letter-spacing: 2px;
    }

    .story-main-img {
        max-height: 340px;
    }

    .story-grid-card {
        height: 180px;
    }

    .hands-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .artist-img-wrapper {
        height: 300px;
    }

    .marks-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .gallery-card {
        height: 280px;
    }

    .lightbox-container {
        padding: 1rem;
    }

    .contact-section {
        padding: 3.5rem 1rem 4.5rem 1rem;
    }

    .contact-info-card,
    .contact-form-wrapper {
        padding: 1.8rem 1.2rem;
    }

    .contact-section .form-row {
        grid-template-columns: 1fr;
        gap: 1.1rem;
    }

    .contact-info-title,
    .contact-form-title {
        font-size: 1.25rem;
    }

    .contact-icon-badge {
        width: 38px;
        height: 38px;
        min-width: 38px;
    }

    .gallery-filter-bar {
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        gap: 0.5rem;
        margin: 1.5rem 0 0 0;
        padding: 0.4rem 0.2rem 0.7rem 0.2rem;
        width: 100%;
        scrollbar-width: none;
    }

    .gallery-filter-bar::-webkit-scrollbar {
        display: none;
    }

    .gallery-filter-btn {
        flex: 0 0 auto;
        padding: 0.55rem 1.05rem;
        font-size: 0.66rem;
        letter-spacing: 1.4px;
        white-space: nowrap;
        border-radius: 2px;
    }

    .artist-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.6rem;
    }

    .artist-insta-link {
        width: 100%;
        justify-content: center;
    }
}
