/* services-common.css - Consolidated shared styles for all service pages */

/* ============================================
   SERVICE HERO SECTION (Shared across all service pages)
   ============================================ */
.service-hero {
    height: 60vh;
    min-height: 550px;
    position: relative;
    display: flex;
    align-items: center;
    background: #000;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.service-hero-content {
    position: relative;
    z-index: 3;
    color: #fff;
    padding-top: 60px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);
    width: 100%;
}

.service-hero-content.container,
.container.service-hero-content {
    width: 92%;
    max-width: 1200px;
    margin: auto;
}

.service-hero-content .category-tag,
.category-tag {
    display: inline-block;
    color: var(--brand-accent);
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.service-hero-content h1,
.service-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    margin: 0;
    color: #fff;
    line-height: 1.1;
    display: block;
}

.service-hero-content .hero-subtitle,
.hero-subtitle {
    font-size: 1.2rem;
    color: #ccc;
    margin-top: 10px;
    font-weight: 300;
    max-width: 700px;
    line-height: 1.4;
    display: block;
}

/* ============================================
   SERVICE HERO BUTTONS
   ============================================ */
.service-hero-btns {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-top: 40px;
}

.service-hero-btns .btn-primary {
    background: var(--brand-accent);
    color: #000;
    padding: 16px 40px;
    border-radius: var(--radius-md) !important;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    display: inline-block;
    font-size: 0.9rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-warm-sm);
    position: relative;
    overflow: hidden;
    letter-spacing: 1px;
}

.service-hero-btns .btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.service-hero-btns .btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.service-hero-btns .btn-primary:hover {
    background: #fff;
    color: #000;
    transform: translateY(-6px) scale(1.05);
    box-shadow: var(--shadow-warm-md);
}

.service-hero-btns .btn-primary:active {
    transform: translateY(-2px);
    box-shadow: var(--shadow-warm-sm);
}

.service-hero-btns .btn-secondary {
    background: rgba(138, 53, 18, 0.06);
    color: var(--brand-accent);
    padding: 16px 40px;
    border-radius: var(--radius-md) !important;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    display: inline-block;
    font-size: 0.9rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--brand-accent);
    position: relative;
    overflow: hidden;
    letter-spacing: 1px;
    box-shadow: var(--shadow-warm-sm);
}

.service-hero-btns .btn-secondary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(138, 53, 18, 0.08);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.service-hero-btns .btn-secondary:hover::before {
    width: 300px;
    height: 300px;
}

.service-hero-btns .btn-secondary:hover {
    background: rgba(138, 53, 18, 0.08);
    color: var(--brand-accent);
    border-color: var(--brand-accent);
    transform: translateY(-6px) scale(1.05);
    box-shadow: var(--shadow-warm-md);
}

.service-hero-btns .btn-secondary:active {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(138, 53, 18, 0.08);
}

.service-hero-btns .btn-secondary i {
    margin-right: 8px;
    transition: transform 0.3s ease;
}

.service-hero-btns .btn-secondary:hover i {
    transform: scale(1.2);
}

/* ============================================
   SERVICE HERO SIDEBAR TEST PATTERN
   ============================================ */
.service-hero--sidebar {
    min-height: 620px;
    height: calc(100vh - 90px);
    align-items: stretch;
    background: var(--dk-umber);
}

.service-hero--sidebar .hero-bg-image {
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    animation: none;
}

.service-hero--sidebar .hero-overlay {
    inset: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(43, 36, 27, 0.10) 0 42%, rgba(43, 36, 27, 0.20) 42%, transparent 60%);
}

.service-hero--sidebar .service-hero-content.container,
.service-hero--sidebar .container.service-hero-content {
    position: relative;
    z-index: 3;
    display: flex;
    width: 42%;
    max-width: none;
    min-height: 100%;
    margin: 0;
    padding: clamp(118px, 16vh, 168px) clamp(40px, 5vw, 64px) clamp(62px, 8vh, 88px);
    flex-direction: column;
    justify-content: center;
    background:
        linear-gradient(to right, rgba(43, 36, 27, 0.76), rgba(43, 36, 27, 0.54)),
        var(--texture-paper-grain);
    background-size: auto, 420px 420px, 160px 160px;
    box-shadow: 18px 0 42px rgba(17, 17, 17, 0.22);
    color: var(--dk-utility-white);
    text-align: left;
    text-shadow: none;
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
}

.service-hero--sidebar .service-hero-content::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 20% 24%, rgba(138, 53, 18, 0.12), transparent 34%),
        linear-gradient(180deg, rgba(244, 232, 210, 0.04), transparent 40%);
}

.service-hero--sidebar .category-tag {
    position: relative;
    z-index: 1;
    margin-bottom: 18px;
    color: var(--dk-brass);
    font-family: var(--font-label);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
    line-height: 1.1;
}

.service-hero--sidebar h1 {
    position: relative;
    z-index: 1;
    max-width: 580px;
    margin: 0 0 22px;
    color: var(--dk-utility-white);
    font-family: var(--font-display);
    font-size: clamp(2.7rem, 5.4vw, 4.7rem);
    font-weight: 650;
    line-height: 0.98;
    letter-spacing: 0;
}

.service-hero--sidebar .accent-text {
    color: var(--dk-clay);
}

.service-hero--sidebar .hero-subtitle {
    position: relative;
    z-index: 1;
    max-width: 520px;
    margin: 0 0 34px;
    color: rgba(250, 248, 242, 0.84);
    font-size: clamp(1rem, 1.4vw, 1.12rem);
    font-weight: 400;
    line-height: 1.55;
}

.service-hero--sidebar .service-hero-btns {
    position: relative;
    z-index: 1;
    display: flex;
    width: min(100%, 476px);
    gap: 14px;
    margin-top: 0;
    padding: 10px;
    justify-content: flex-start;
    border: 1px solid rgba(244, 232, 210, 0.18);
    border-radius: var(--radius-md);
    background: rgba(17, 17, 17, 0.26);
    box-shadow: 0 12px 28px rgba(17, 17, 17, 0.18);
}

.service-hero--sidebar .service-hero-btns .btn-primary,
.service-hero--sidebar .service-hero-btns .btn-secondary {
    display: inline-flex;
    box-sizing: border-box;
    flex: 1 1 0;
    height: 54px;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 22px;
    border-radius: var(--radius-md) !important;
    font-family: var(--font-label);
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.08em;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
    transform: none;
    overflow: hidden;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.service-hero--sidebar .service-hero-btns .btn-primary {
    flex-grow: 1.08;
    border: 1px solid rgba(244, 232, 210, 0.14);
    background: var(--dk-clay);
    color: var(--dk-utility-white);
    box-shadow: var(--shadow-warm-sm);
}

.service-hero--sidebar .service-hero-btns .btn-secondary {
    border: 1px solid rgba(244, 232, 210, 0.48);
    background: rgba(244, 232, 210, 0.10);
    color: var(--dk-utility-white);
    box-shadow: none;
}

.service-hero--sidebar .service-hero-btns .btn-primary::before,
.service-hero--sidebar .service-hero-btns .btn-primary::after,
.service-hero--sidebar .service-hero-btns .btn-secondary::before,
.service-hero--sidebar .service-hero-btns .btn-secondary::after {
    content: none !important;
    display: none !important;
}

.service-hero--sidebar .service-hero-btns .btn-primary:hover,
.service-hero--sidebar .service-hero-btns .btn-primary:focus-visible {
    background: var(--dk-oxblood);
    color: var(--dk-utility-white);
    transform: none;
    box-shadow: var(--shadow-warm-sm);
}

.service-hero--sidebar .service-hero-btns .btn-secondary:hover,
.service-hero--sidebar .service-hero-btns .btn-secondary:focus-visible {
    border-color: rgba(244, 232, 210, 0.72);
    background: rgba(244, 232, 210, 0.16);
    color: var(--dk-utility-white);
    transform: none;
    box-shadow: var(--shadow-warm-sm);
}

.service-hero--sidebar .service-hero-btns .btn-secondary i {
    display: inline-grid;
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    margin-right: 0;
    place-items: center;
    border: 1px solid rgba(244, 232, 210, 0.42);
    border-radius: var(--radius-md);
    background: rgba(21, 63, 56, 0.74);
    color: var(--dk-bone);
    font-size: 12px;
    transform: none;
}

.service-hero--sidebar .service-hero-btns .btn-secondary:hover i {
    transform: none;
}

@media (max-width: 900px) {
    .service-hero--sidebar {
        height: auto;
        min-height: 650px;
        align-items: center;
        justify-content: center;
    }

    .service-hero--sidebar .hero-bg-image,
    .service-hero--sidebar .hero-overlay {
        inset: 0;
        width: 100%;
    }

    .service-hero--sidebar .hero-overlay {
        background: rgba(43, 36, 27, 0.56);
    }

    .service-hero--sidebar .service-hero-content.container,
    .service-hero--sidebar .container.service-hero-content {
        width: min(92%, 560px);
        min-height: auto;
        margin: 132px auto 64px;
        padding: 28px 22px;
        border: 1px solid rgba(244, 232, 210, 0.14);
        border-radius: var(--radius-md);
        box-shadow: 0 14px 34px rgba(17, 17, 17, 0.20);
        text-align: center;
    }

    .service-hero--sidebar .service-hero-btns {
        display: flex;
        width: 100%;
        flex-direction: column;
        gap: 10px;
    }

    .service-hero--sidebar .service-hero-btns .btn-primary,
    .service-hero--sidebar .service-hero-btns .btn-secondary {
        width: 100%;
        max-width: none;
        padding: 0 18px;
    }
}

/* ============================================
   CAPABILITIES SECTION (Shared across all service pages)
   ============================================ */
.capabilities {
    padding: 60px 0 100px 0;
    background: var(--dk-canvas);
    color: #fff;
}

.cap-header {
    margin-bottom: 40px;
    max-width: 700px;
}

.cap-header h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.cap-header p {
    color: #666;
    font-size: 1rem;
}

.cap-row {
    display: grid;
    grid-template-columns: 280px 1fr;
    padding: 35px 0;
    border-top: 1px solid #222;
}

.cap-row:last-child {
    border-bottom: 1px solid #222;
}

.cap-label {
    color: var(--brand-accent);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding-top: 5px;
}

.cap-desc ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cap-desc li {
    margin-bottom: 20px;
    color: #999;
    line-height: 1.6;
    font-size: 0.95rem;
}

.cap-desc li strong {
    color: #eee;
    display: block;
    margin-bottom: 4px;
    font-size: 1rem;
    font-weight: 600;
}

.cap-desc p {
    margin-bottom: 20px;
    color: #999;
    line-height: 1.6;
    font-size: 0.95rem;
}

.cap-desc p:last-child {
    margin-bottom: 0;
}

.cap-desc p strong {
    color: #eee;
    display: block;
    margin-bottom: 4px;
    font-size: 1rem;
    font-weight: 600;
}

/* ============================================
   BENTO DETAILS SECTION (Shared across all service pages)
   ============================================ */
.bento-details { 
    padding: 120px 0 80px 0; 
    background: var(--dk-canvas);
    color: #fff; 
    position: relative;
}

.bento-details::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(138, 53, 18, 0.12), transparent);
}

.section-intro { 
    margin-bottom: 70px; 
    max-width: 850px; 
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-intro h2 { 
    font-size: 3rem; 
    margin-bottom: 25px; 
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.section-intro p { 
    color: #ddd; 
    line-height: 1.7; 
    font-size: 1.05rem;
    margin-bottom: 15px;
}

.explore-text { 
    font-size: 1.1rem; 
    color: var(--brand-accent); 
    font-weight: 600; 
    margin-top: 30px; 
    line-height: 1.6;
    position: relative;
    padding-left: 20px;
}

.explore-text::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 60%;
    background: var(--brand-accent);
    border-radius: 2px;
}

/* ============================================
   SERVICE BOX (Bento Box) - Base Styles
   ============================================ */
.service-box { 
    position: relative; 
    border-radius: var(--radius-md); 
    overflow: hidden; 
    background: #111; 
    border: 2px solid #444;
    display: flex; 
    flex-direction: column; 
    justify-content: flex-end; 
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1); 
    background-size: cover; 
    background-position: center;
    text-decoration: none; 
    color: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.service-box::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 3;
    pointer-events: none;
}

.service-box:hover::before {
    border-color: var(--brand-accent);
    opacity: 1;
    box-shadow: var(--shadow-warm-sm);
}

.service-box:hover { 
    border-color: var(--brand-accent);
    transform: translateY(-12px) scale(1.02);
    background-size: 110%;
    filter: brightness(1.05);
    box-shadow: var(--shadow-warm-md);
}

/* ============================================
   BOX OVERLAY & CONTENT (Shared across all service pages)
   ============================================ */
.box-overlay { 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background: linear-gradient(to bottom, transparent 20%, rgba(0,0,0,0.92) 90%); 
    z-index: 1;
    transition: background 0.5s ease;
}

.service-box:hover .box-overlay {
    background: linear-gradient(to bottom, transparent 25%, rgba(0,0,0,0.85) 90%);
}

.box-content { 
    position: relative; 
    z-index: 2; 
    transition: padding 0.4s ease;
}

/* ============================================
   SERVICE BOX TYPOGRAPHY (Shared base styles)
   ============================================ */
.service-box h3, 
.service-box h4 { 
    color: #fff; 
    margin-bottom: 10px; 
    font-weight: 800; 
    transition: all 0.3s ease;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.service-box:hover h3,
.service-box:hover h4 {
    transform: translateX(5px);
    text-shadow: none;
}

.service-box h3 { 
    font-size: 1.8rem; 
}

.service-box h4 { 
    font-size: 1.4rem; 
}

.service-box p { 
    font-size: 0.95rem; 
    color: #bbb; 
    margin-bottom: 15px; 
    transition: all 0.3s ease;
    opacity: 0.9;
}

.service-box:hover p {
    opacity: 1;
    transform: translateX(5px);
    color: #ccc;
}

/* ============================================
   BUTTONS (Shared across all service pages)
   ============================================ */
.visual-accent-btn-blue { 
    display: inline-block; 
    background: var(--brand-accent); 
    color: #000 !important; 
    padding: 12px 28px; 
    border-radius: var(--radius-md); 
    font-weight: 800; 
    font-size: 0.75rem; 
    text-transform: uppercase; 
    text-decoration: none; 
    transition: all 0.3s ease; 
    box-shadow: 0 4px 15px rgba(138, 53, 18, 0.12);
}

.visual-accent-btn-blue:hover { 
    background: var(--brand-accent-soft, #B66F1E); 
    transform: translateY(-2px); 
    box-shadow: var(--shadow-warm-sm); 
}

/* ============================================
   VIDEO BOX STYLES (Standardized across all service pages)
   ============================================ */
/* Video box hover effect - gold border stroke */
.service-box[class*="video"]::after,
.service-box.com-video-link::after,
.service-box.doc-video-link::after,
.service-box.event-video-link::after,
.service-box.re-video-link::after,
.service-box.livet-video-link::after,
.featured-video-link-box::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 3px solid transparent;
    border-radius: var(--radius-md);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 4;
    pointer-events: none;
}

.service-box[class*="video"]:hover::after,
.service-box.com-video-link:hover::after,
.service-box.doc-video-link:hover::after,
.service-box.event-video-link:hover::after,
.service-box.re-video-link:hover::after,
.service-box.livet-video-link:hover::after,
.featured-video-link-box:hover::after {
    opacity: 1;
    border-color: var(--brand-accent);
    box-shadow: 0 0 0 2px var(--dk-driftwood);
}

/* Standardized Play Button */
.play-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    margin-top: 12px;
    transition: all 0.3s ease;
}

.play-btn:hover {
    color: var(--brand-accent);
    transform: translateX(4px);
}

/* Standardized Play Icon */
.play-icon {
    width: 32px;
    height: 32px;
    background: var(--brand-accent);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(43, 36, 27, 0.08);
}

.play-btn:hover .play-icon {
    background: #fff;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(43, 36, 27, 0.12);
}

/* CSS-based play triangle arrow */
.play-icon::before {
    content: '';
    width: 0;
    height: 0;
    border-left: 9px solid #000;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    margin-left: 3px; /* Slight offset to center the triangle */
    transition: all 0.3s ease;
}

.play-btn:hover .play-icon::before {
    border-left-color: var(--brand-accent);
}

/* Showcase tag for video boxes */
.showcase-tag {
    color: var(--brand-accent);
    font-weight: 800;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    display: block;
}

/* Smaller text for video boxes */
.service-box[class*="video"] h3,
.service-box.com-video-link h3,
.service-box.doc-video-link h3,
.service-box.event-video-link h3,
.service-box.re-video-link h3,
.service-box.livet-video-link h3,
.featured-video-link-box h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    line-height: 1.2;
}

.service-box[class*="video"] p,
.service-box.com-video-link p,
.service-box.doc-video-link p,
.service-box.event-video-link p,
.service-box.re-video-link p,
.service-box.livet-video-link p,
.featured-video-link-box p {
    font-size: 0.85rem;
    margin-bottom: 12px;
    line-height: 1.4;
}

/* ============================================
   RESPONSIVE STYLES (Shared across all service pages)
   ============================================ */
@media (max-width: 600px) {
    .service-hero-btns {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .service-hero-btns .btn-primary,
    .service-hero-btns .btn-secondary {
        width: 100%;
        max-width: 280px;
        text-align: center;
        font-size: 0.75rem;
        padding: 14px 24px;
        letter-spacing: 0.5px;
        white-space: nowrap;
    }
}

@media (max-width: 768px) {
    .service-hero {
        min-height: 400px;
    }
}

@media (max-width: 1024px) {
    
    .service-hero h1 { 
        font-size: 2.5rem; 
    }
}

/* Service: aerial */
/* aerial.css - Page-specific styles only */
/* Shared styles are in services-common.css */

.service-grid-container { 
    display: grid; 
    grid-template-columns: repeat(6, 1fr); 
    grid-auto-rows: 350px; 
    gap: 28px; 
}

/* Page-specific box-content padding */
.box-content { 
    padding: 45px; 
    display: flex; 
    justify-content: space-between; 
    align-items: flex-end; 
    width: 100%;
    gap: 20px;
}

.service-box:hover .box-content {
    padding: 50px 45px;
}

.box-main { grid-column: span 3; }
.box-showcase { grid-column: span 3; }
.box-small-1, .box-small-2, .box-small-3 { grid-column: span 2; }

.box-text-wrap { 
    flex: 1; 
}

.box-content h3.accent-title { 
    font-size: 2.2rem; 
    margin: 0; 
    color: #fff; 
    font-weight: 700;
    transition: all 0.3s ease;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.service-box:hover .box-content h3.accent-title {
    transform: translateX(5px);
    text-shadow: none;
}

.box-content h4 { 
    font-size: 1.6rem; 
    margin: 0; 
    color: var(--brand-accent); 
    font-weight: 700;
    transition: all 0.3s ease;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.service-box:hover .box-content h4 {
    transform: translateX(5px);
    color: var(--brand-accent-soft, #B66F1E);
    text-shadow: none;
}

.box-content p { 
    font-size: 1rem; 
    color: #bbb; 
    margin-top: 12px; 
    margin-bottom: 0; 
    line-height: 1.6; 
    transition: all 0.3s ease;
    opacity: 0.9;
}

.service-box:hover .box-content p {
    opacity: 1;
    transform: translateX(5px);
    color: #ccc;
}

.bento-arrow {
    width: 40px; 
    height: 40px; 
    background: var(--brand-accent); 
    color: #000;
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center;
    font-size: 1.2rem; 
    font-weight: 900; 
    flex-shrink: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(43, 36, 27, 0.08);
}

.service-box:hover .bento-arrow {
    transform: translateX(8px) scale(1.15) rotate(5deg);
    box-shadow: var(--shadow-warm-sm);
    background: #fff;
}

@media (max-width: 1024px) {
    .service-grid-container { grid-template-columns: 1fr; grid-auto-rows: auto; }
    .box-main, .box-showcase, .box-small-1, .box-small-2, .box-small-3 { grid-column: span 1; min-height: 320px; }
}


/* Service: commercial */
/* commercial.css */

/* SERVICE HERO SECTION */
.service-hero {
    height: 60vh;
    min-height: 550px;
    position: relative;
    display: flex;
    align-items: center;
    background: #000;
    overflow: hidden;
}

/* CAPABILITIES SECTION */
.capabilities {
    padding: 60px 0 100px 0;
    background: var(--dk-canvas);
    color: #fff;
}

/* BENTO GRID */
.bento-details { 
    padding: 120px 0 80px 0; 
    background: var(--dk-canvas);
    color: #fff; 
    position: relative;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-grid-container { 
    display: grid; 
    grid-template-columns: repeat(6, 1fr); 
    grid-auto-rows: 350px; 
    gap: 28px; 
}

.service-box { 
    position: relative; 
    border-radius: var(--radius-md); 
    overflow: hidden; 
    background: #111; 
    border: 2px solid #444;
    display: flex; 
    flex-direction: column; 
    justify-content: flex-end; 
    padding: 40px; 
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1); 
    background-size: cover; 
    background-position: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

/* BENTO BACKGROUNDS */
.com-strategic { background-image: url('../images/services/commercial/Bento1.webp'); }
.com-video-link { 
    background-image: url('../images/services/commercial/Bento2.webp'); 
    position: relative;
}
/* Video box hover effect is now in services-common.css */

.com-walk { background-image: url('../images/services/commercial/Bento3.webp'); }
.com-photo { background-image: url('../images/services/commercial/Bento4.webp'); }
.com-aerial { background-image: url('../images/services/commercial/Bento5.webp'); }

.box-overlay { 
    position: absolute; 
    top:0; 
    left:0; 
    width:100%; 
    height:100%; 
    background: linear-gradient(to bottom, transparent 20%, rgba(0,0,0,0.92) 90%); 
    z-index:1;
    transition: background 0.5s ease;
}

/* BENTO SPANS */
.box-main { grid-column: span 3; }
.box-showcase { grid-column: span 3; }
.box-small-1, .box-small-2, .box-small-3 { grid-column: span 2; }

/* BOX ELEMENTS */
.service-box h3, .service-box h4 { 
    color: #fff; 
    margin-bottom: 10px; 
    font-weight: 800; 
    transition: all 0.3s ease;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.service-box h3 { font-size: 1.8rem; }
.service-box h4 { font-size: 1.4rem; }

/* CAPABILITIES (ALIGNED TO TEMPLATE) */
/* BUTTONS */
.visual-accent-btn-blue { 
    display: inline-block; background: var(--brand-accent); color: #000 !important; 
    padding: 12px 28px; border-radius: var(--radius-md); font-weight: 800; 
    font-size: 0.75rem; text-transform: uppercase; text-decoration: none; transition: 0.3s; 
    box-shadow: 0 4px 15px rgba(138, 53, 18, 0.12);
}
.visual-accent-btn-blue:hover { background: var(--brand-accent-soft, #B66F1E); transform: translateY(-2px); box-shadow: var(--shadow-warm-sm); }

/* Play button and icon styles are now in services-common.css */

/* MOBILE */
@media (max-width: 768px) {
}

@media (max-width: 1024px) {
    #navbar { background: #000; padding: 15px 0; }
    .service-grid-container { grid-template-columns: 1fr; grid-auto-rows: auto; }
    .box-main, .box-showcase, .box-small-1, .box-small-2, .box-small-3 { grid-column: span 1; min-height: 300px; }
    .service-hero h1 { font-size: 2.8rem; }
}

/* Showcase tag styles are now in services-common.css */
/* Service: documentary */
/* documentary.css - Full Updated Style */

/* SERVICE HERO SECTION */
.service-hero {
    height: 60vh;
    min-height: 550px;
    position: relative;
    display: flex;
    align-items: center;
    background: #000;
    overflow: hidden;
}

/* CAPABILITIES SECTION */
.capabilities {
    padding: 60px 0 100px 0;
    background: var(--dk-canvas);
    color: #fff;
}

/* BENTO INTRO */
.bento-details { 
    padding: 120px 0 80px 0; 
    background: var(--dk-bone);
    position: relative;
}

.service-intro { 
    margin-bottom: 70px; 
    max-width: 850px; 
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-intro h2 { 
    font-size: clamp(2rem, 4vw, 3rem); 
    font-weight: 800; 
    margin: 10px 0 25px; 
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.service-intro p { 
    font-size: 1.05rem; 
    color: #ddd; 
    line-height: 1.7; 
    margin-bottom: 15px;
}

/* BENTO GRID LAYOUT - Fixed row height */
.doc-grid-container {
    display: grid;
    grid-template-columns: repeat(12, 1fr); 
    grid-auto-rows: 340px; /* Increased from 280px to fix formatting */
    gap: 20px;
}

.box-bento-1 { grid-column: span 6; background-image: url('../images/services/documentary/Bento1.webp'); }
.box-bento-2 { grid-column: span 6; background-image: url('../images/services/documentary/Bento2.webp'); }
.box-bento-3 { grid-column: span 4; background-image: url('../images/services/documentary/Bento3.webp'); }
.box-bento-4 { grid-column: span 4; background-image: url('../images/services/documentary/Bento4.webp'); }
.box-bento-5 { grid-column: span 4; background-image: url('../images/services/documentary/Bento5.webp'); }

/* Box overlay and content styles are now in services-common.css */
/* Video box matches commercial.css structure - box-content uses relative positioning */
.box-content {
    position: relative;
    z-index: 2;
    transition: padding 0.4s ease;
}

.showcase-tag { 
    color: var(--brand-accent); 
    font-size: 0.7rem; 
    font-weight: 800; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    display: block; 
    margin-bottom: 8px; 
}

.box-content h3 { 
    font-size: 1.8rem; 
    margin-bottom: 5px; 
    color: #fff; 
    line-height: 1.2; 
}

.box-content h3.one-line-headline {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Play button styles are now in services-common.css */

.box-content h4 { 
    color: var(--brand-accent); 
    font-size: 1.2rem; 
    margin-bottom: 8px; 
}

.box-content p { 
    font-size: 0.95rem; 
    color: #bbb; 
    line-height: 1.5; 
    margin: 0; 
}

.visual-accent-btn-blue {
    display: inline-block; background: var(--brand-accent); color: #000 !important;
    padding: 12px 25px; border-radius: var(--radius-md); font-weight: 800; text-transform: uppercase;
    font-size: 0.75rem; text-decoration: none; align-self: flex-start; transition: 0.3s ease; margin-top: 15px;
    box-shadow: 0 4px 15px rgba(138, 53, 18, 0.12);
}
.visual-accent-btn-blue:hover { 
    background: var(--brand-accent-soft, #B66F1E); 
    transform: translateY(-2px); 
    box-shadow: var(--shadow-warm-sm);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    
    /* Stack bento boxes on mobile */
    .doc-grid-container { 
        grid-template-columns: 1fr !important; 
        grid-auto-rows: 300px; 
        gap: 15px;
    }
    
    .box-bento-1, .box-bento-2, .box-bento-3, .box-bento-4, .box-bento-5 { 
        grid-column: span 1 !important; 
    }
    
    /* Stack capabilities section on mobile */
    .cap-row { 
        grid-template-columns: 1fr !important; 
        gap: 15px; 
        padding: 25px 0; 
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .doc-grid-container { 
        grid-template-columns: repeat(2, 1fr); 
        grid-auto-rows: 320px; 
    }
    .box-bento-1, .box-bento-2, .box-bento-3, .box-bento-4, .box-bento-5 { 
        grid-column: span 1; 
    }
}
/* Service: event cinematography */
/* event-cinematography.css */

/* SERVICE HERO SECTION */
.service-hero {
    height: 60vh;
    min-height: 550px;
    position: relative;
    display: flex;
    align-items: center;
    background: #000;
    overflow: hidden;
}

/* CAPABILITIES SECTION */
.capabilities {
    padding: 60px 0 100px 0;
    background: var(--dk-canvas);
    color: #fff;
}

/* BENTO GRID CORE */
.bento-details { 
    padding: 120px 0 80px 0; 
    background: var(--dk-canvas);
    color: #fff; 
    position: relative;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.event-grid-container { 
    display: grid; 
    grid-template-columns: repeat(6, 1fr); 
    grid-auto-rows: 340px; /* Increased to fix content overflow */
    gap: 20px; 
}

.box-main { grid-column: span 3; }
.box-showcase { grid-column: span 3; }
.box-small-1, .box-small-2, .box-small-3 { grid-column: span 2; }

/* Bento Image Assignments */
.event-cinematic { background-image: url('../images/services/events/Bento1.webp'); }
.event-multi { 
    background-image: url('../images/services/events/Bento2.webp'); 
    position: relative;
}
/* Video box hover effect is now in services-common.css */

.event-highlights { background-image: url('../images/services/events/Bento3.webp'); }
.event-stills { background-image: url('../images/services/events/Bento4.webp'); }
.event-audio { background-image: url('../images/services/events/Bento5.webp'); }

.service-box h3, .service-box h4 { 
    color: #fff; 
    font-weight: 800; 
    margin-bottom: 10px; 
    transition: all 0.3s ease;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

/* TAGS & BUTTONS */
/* Showcase tag, play button and icon styles are now in services-common.css */
.visual-accent-btn-blue { 
    display: inline-block; 
    background: var(--brand-accent); 
    color: #000; 
    padding: 12px 24px; 
    border-radius: var(--radius-md); 
    font-weight: 800; 
    text-transform: uppercase; 
    font-size: 0.75rem; 
    text-decoration: none; 
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); 
    border: none; 
    box-shadow: 0 3px 12px rgba(138, 53, 18, 0.12);
    position: relative;
    overflow: hidden;
}

.visual-accent-btn-blue::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.visual-accent-btn-blue:hover::before {
    width: 200px;
    height: 200px;
}

.visual-accent-btn-blue:hover { 
    background: var(--brand-accent-soft, #B66F1E); 
    transform: translateY(-3px) scale(1.02); 
    color: #000; 
    box-shadow: var(--shadow-warm-sm);
}

/* EXPERTISE SECTION SYNC */

/* RESPONSIVE */
@media (max-width: 768px) {
    
    /* Stack bento boxes on mobile */
    .event-grid-container { 
        grid-template-columns: 1fr !important; 
        grid-auto-rows: 300px; 
        gap: 15px;
    }
    
    .box-main, .box-showcase, .box-small-1, .box-small-2, .box-small-3 { 
        grid-column: span 1 !important; 
    }
}

@media (max-width: 1024px) {
    .event-grid-container { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 300px; }
    .box-main, .box-showcase, .box-small-1, .box-small-2, .box-small-3 { grid-column: span 1; }
}
/* Service: live performance */
/* livet.css - Specialized styles only */

/* SERVICE HERO SECTION */
.service-hero {
    height: 45vh;
    min-height: 450px;
    position: relative;
    display: flex;
    align-items: center;
    background: #000;
    overflow: hidden;
}

/* CAPABILITIES SECTION */
.capabilities {
    padding: 60px 0 100px 0;
    background: var(--dk-canvas);
    color: #fff;
}

/* BENTO GRID AREA */
.bento-details { padding: 80px 0 40px 0; background: var(--dk-canvas); }

.service-bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 280px 280px;
    gap: 20px;
}

.bento-box {
    background: #111; border: 1px solid #222; border-radius: var(--radius-md);
    padding: 30px; display: flex; flex-direction: column;
    justify-content: flex-end; position: relative; overflow: hidden;
    background-size: cover; background-position: center;
    text-decoration: none;
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.bento-box:hover { border-color: var(--brand-accent); transform: translateY(-5px); }

.bento-bg-overlay { 
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; 
    background: linear-gradient(to top, rgba(0,0,0,0.95), transparent); z-index: 1; 
}
.bento-content { position: relative; z-index: 3; height: 100%; display: flex; flex-direction: column; justify-content: flex-end; }

/* BENTO LAYOUT POSITIONS */
.cinematic-hero-box { grid-column: span 2; grid-row: span 2; background-image: url('../images/services/live-performance/Bento1.webp'); }
.featured-video-link-box { grid-column: span 2; grid-row: span 1; background-image: url('../images/services/live-performance/Bento2.webp'); cursor: pointer; }

.play-overlay {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -80%); z-index: 2;
    transition: transform 0.3s ease;
}
.featured-video-link-box:hover .play-overlay { transform: translate(-50%, -80%) scale(1.1); }

.play-button-icon {
    width: 70px; height: 70px;
    background: rgba(138, 53, 18, 0.90); color: #000;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; padding-left: 5px; box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.watch-link { color: var(--brand-accent); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; margin-top: 5px; letter-spacing: 1px; }

.post-bento { grid-column: span 1; grid-row: span 1; background-image: url('../images/services/live-performance/Bento3.webp'); }
.audio-bento { grid-column: span 1; grid-row: span 1; background-image: url('../images/services/live-performance/Bento4.webp'); }

.bento-box h3 { font-size: 2.2rem; color: #fff; margin-bottom: 10px; line-height: 1; }
.bento-box h4 { color: var(--brand-accent); text-transform: uppercase; font-size: 0.7rem; margin-bottom: 10px; letter-spacing: 1px; }
.bento-box p { color: #bbb; font-size: 0.95rem; line-height: 1.5; }

/* TRUSTED CLIENTS */
.trusted-clients { padding: 80px 0; background: #000; }
.client-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 15px; margin-top: 40px; }
.client-grid span {
    color: #eee; background: #111;
    font-size: 0.75rem; font-weight: 800; text-transform: uppercase;
    letter-spacing: 1.5px; text-align: center; border: 1px solid #222;
    padding: 25px 15px; border-radius: 15px; transition: all 0.3s ease;
    display: flex; align-items: center; justify-content: center; min-height: 80px;
}
.client-grid span:hover { color: var(--brand-accent); border-color: var(--brand-accent); background: var(--dk-canvas); }

/* BUTTONS & UI */
.visual-accent-btn-blue {
    display: inline-block; background: var(--brand-accent); color: #000 !important;
    padding: 12px 25px; border-radius: var(--radius-md); font-weight: 800; text-transform: uppercase;
    font-size: 0.75rem; text-decoration: none; align-self: flex-start; transition: 0.3s ease; margin-top: 15px;
    box-shadow: 0 4px 15px rgba(138, 53, 18, 0.12);
}
.visual-accent-btn-blue:hover { background: var(--brand-accent-soft, #B66F1E); transform: scale(1.05); box-shadow: var(--shadow-warm-sm); }

/* RESPONSIVE */
@media (max-width: 768px) {
}

@media (max-width: 1024px) {
    .service-bento-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
    .cinematic-hero-box, .featured-video-link-box, .post-bento, .audio-bento { grid-column: span 1; min-height: 280px; }
}
/* Service: real estate */
/* realestate.css */

/* SERVICE HERO SECTION */
.service-hero {
    height: 60vh;
    min-height: 550px;
    position: relative;
    display: flex;
    align-items: center;
    background: #000;
    overflow: hidden;
}

/* CAPABILITIES SECTION */
.capabilities {
    padding: 60px 0 100px 0;
    background: var(--dk-canvas);
    color: #fff;
}

/* BENTO SECTION */
.bento-details { 
    padding: 120px 0 80px 0; 
    background: var(--dk-bone);
    position: relative;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-grid-container {
    display: grid; 
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 280px; 
    gap: 20px;
}

.box-top-left { grid-column: span 6; }
.box-top-right { grid-column: span 6; }
.box-bottom-1 { grid-column: span 4; }
.box-bottom-2 { grid-column: span 4; }
.box-bottom-3 { grid-column: span 4; }

.re-bento-1 { background-image: url('../images/services/real-estate/Bento1.webp'); }
.re-bento-2 { background-image: url('../images/services/real-estate/Bento2.webp'); }
.re-bento-3 { background-image: url('../images/services/real-estate/Bento3.webp'); }
.re-bento-4 { background-image: url('../images/services/real-estate/Bento4.webp'); }
.re-bento-5 { background-image: url('../images/services/real-estate/Bento5.webp'); }

/* Video box matches other boxes on realestate page - uses absolute positioning */
.re-video-link .box-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    z-index: 2;
    transition: padding 0.4s ease;
}

.re-video-link:hover .box-content {
    padding: 35px 30px;
}

.box-content h3 { 
    font-size: 1.6rem; 
    color: #fff; 
    margin-bottom: 5px; 
    transition: all 0.3s ease;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.service-box:hover .box-content h3 {
    transform: translateX(5px);
    text-shadow: none;
}

.box-content p { 
    color: #bbb; 
    font-size: 0.85rem; 
    line-height: 1.4;
    transition: all 0.3s ease;
    opacity: 0.9;
}

.service-box:hover .box-content p {
    opacity: 1;
    transform: translateX(5px);
    color: #ccc;
}

/* Bento Formatting Classes Restored */
.showcase-tag {
    display: inline-block; background: rgba(138, 53, 18, 0.08); color: var(--brand-accent);
    padding: 4px 10px; border-radius: 4px; font-size: 0.65rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px;
}
.one-line-headline { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* PROCESS SECTION */
/* COMPACT UNIFORM GALLERY GRID */
.gallery-section { 
    padding: 80px 0 100px 0; 
    background: var(--dk-canvas);
    position: relative;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(138, 53, 18, 0.12), transparent);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 14px;
    margin-top: 40px;
    padding: 0 20px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-item { 
    cursor: pointer; 
    overflow: hidden; 
    background: #111; 
    border-radius: 10px;
    position: relative;
    aspect-ratio: 1 / 1;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.05);
}

.gallery-item:hover { 
    transform: translateY(-6px) scale(1.02);
    box-shadow: var(--shadow-warm-md);
    border-color: rgba(43, 36, 27, 0.10);
    z-index: 10;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
    pointer-events: none;
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), filter 0.3s ease;
    display: block;
}

.gallery-item:hover .gallery-img { 
    transform: scale(1.08); 
    filter: brightness(1.1);
}

/* ENHANCED LIGHTBOX MODAL */
.modal { 
    display: none; 
    position: fixed; 
    z-index: 9999; 
    left: 0; 
    top: 0; 
    width: 100%; 
    height: 100%; 
    background-color: rgba(0, 0, 0, 0.96); 
    backdrop-filter: blur(15px);
    justify-content: center; 
    align-items: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content { 
    max-width: 90%; 
    max-height: 90vh; 
    border-radius: 16px;
    box-shadow: 0 25px 80px rgba(43, 36, 27, 0.18);
    z-index: 10001;
    animation: zoomIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    object-fit: contain;
    border: 2px solid rgba(138, 53, 18, 0.08);
}

@keyframes zoomIn {
    from { transform: scale(0.85); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.modal-close-zone { 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    z-index: 10000; 
    cursor: zoom-out; 
}

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(138, 53, 18, 0.90);
    color: #000;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 2.5rem;
    font-weight: 800;
    cursor: pointer;
    z-index: 10002;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    line-height: 1;
    padding: 0;
}

.nav-btn:hover {
    background: var(--brand-accent);
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--shadow-warm-md);
}

.nav-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.nav-btn-prev {
    left: 30px;
}

.nav-btn-next {
    right: 30px;
}

.close-btn { 
    position: absolute; 
    top: 30px; 
    right: 30px;
    background: rgba(138, 53, 18, 0.90);
    color: #000;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    font-weight: 800;
    cursor: pointer;
    z-index: 10002;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    line-height: 1;
    padding: 0;
}

.close-btn:hover {
    background: var(--brand-accent);
    transform: scale(1.1) rotate(90deg);
    box-shadow: var(--shadow-warm-md);
}

.close-btn:active {
    transform: scale(0.95) rotate(90deg);
}

.close-btn-original { 
    position: absolute; 
    top: 30px; 
    right: 40px; 
    color: #fff; 
    background: rgba(0, 0, 0, 0.6); 
    border: 2px solid rgba(255, 255, 255, 0.2);
    font-size: 32px; 
    cursor: pointer; 
    z-index: 10002; 
    width: 50px; 
    height: 50px; 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    transition: all 0.3s ease;
    line-height: 1;
    padding: 0;
}

.close-btn:hover { 
    background: var(--brand-accent); 
    color: #000; 
    transform: scale(1.1) rotate(90deg);
    border-color: var(--brand-accent);
}

.service-page .gallery-section {
    background-color: var(--dk-bone);
    background-image: var(--texture-paper-grain);
    background-size: 420px 420px, 160px 160px;
    color: var(--dk-umber);
}

.service-page .gallery-section .cap-header h2 {
    color: var(--dk-umber);
}

.service-page .gallery-item {
    border: 1px solid rgba(43, 36, 27, 0.14);
    border-radius: var(--radius-md);
    background: var(--dk-canvas);
    box-shadow: var(--shadow-warm-sm);
    transition: filter 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.service-page .gallery-item:hover {
    transform: none;
    border-color: rgba(138, 53, 18, 0.28);
    box-shadow: var(--shadow-warm-md);
}

.service-page .gallery-item::before {
    display: none;
}

.service-page .gallery-img,
.service-page .gallery-item:hover .gallery-img {
    transform: none;
}

.service-page .gallery-item:hover .gallery-img {
    filter: brightness(1.04);
}

.service-page .modal {
    background-color: rgba(12, 11, 10, 0.94);
}

.service-page .modal-content {
    border: 1px solid rgba(244, 232, 210, 0.22);
    border-radius: var(--radius-md);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.48);
}

.service-page .nav-btn,
.service-page .close-btn {
    border: 1px solid rgba(244, 232, 210, 0.24);
    border-radius: var(--radius-md);
    background: rgba(43, 36, 27, 0.88);
    color: var(--dk-bone);
    box-shadow: var(--shadow-warm-md);
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.service-page .nav-btn:hover,
.service-page .close-btn:hover {
    transform: translateY(-50%);
    border-color: rgba(198, 139, 51, 0.6);
    background: var(--dk-rust);
    color: var(--dk-utility-white);
}

.service-page .close-btn:hover {
    transform: none;
}

.service-page .nav-btn:active {
    transform: translateY(-50%);
}

.service-page .close-btn:active {
    transform: none;
}

/* UTILS */
.visual-accent-btn-blue {
    display: inline-block; background: var(--brand-accent); color: #000 !important;
    padding: 10px 20px; border-radius: var(--radius-md); font-weight: 800; text-transform: uppercase;
    font-size: 0.7rem; text-decoration: none; margin-top: 10px;
    box-shadow: 0 4px 15px rgba(138, 53, 18, 0.12);
    transition: all 0.3s ease;
}
.visual-accent-btn-blue:hover { 
    background: var(--brand-accent-soft, #B66F1E); 
    transform: translateY(-2px); 
    box-shadow: var(--shadow-warm-sm);
}
/* Play button and icon styles are now in services-common.css */

/* RESPONSIVE */
@media (max-width: 768px) {
    
    /* Stack bento boxes on mobile */
    .service-grid-container { 
        grid-template-columns: 1fr !important; 
        grid-auto-rows: 300px; 
        gap: 15px;
    }
    
    .box-top-left, .box-top-right, .box-bottom-1, .box-bottom-2, .box-bottom-3 { 
        grid-column: span 1 !important; 
    }
}

@media (max-width: 1024px) { 
    .gallery-grid {
        grid-template-columns: repeat(8, 1fr);
        gap: 10px;
        padding: 0 15px;
    }
    .service-grid-container { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 250px; }
    .box-top-left, .box-top-right, .box-bottom-1, .box-bottom-2, .box-bottom-3 { grid-column: span 1; }
    .nav-btn {
        width: 50px;
        height: 50px;
        font-size: 2rem;
    }
    
    .nav-btn-prev {
        left: 15px;
    }
    
    .nav-btn-next {
        right: 15px;
    }
    
    .close-btn {
        top: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.8rem;
        width: 45px;
        height: 45px;
        font-size: 28px;
    }
}
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 8px;
        padding: 0 10px;
    }
    .gallery-section { padding: 40px 0 60px 0; }
    .modal-content {
        max-width: 95%;
        max-height: 85vh;
    }
}
@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 6px;
    }
}
/* Service: training */
/* training.css */

/* SERVICE HERO SECTION */
.service-hero {
    height: 60vh;
    min-height: 550px;
    position: relative;
    display: flex;
    align-items: center;
    background: #000;
    overflow: hidden;
}

/* CAPABILITIES SECTION */
.capabilities {
    padding: 60px 0 100px 0;
    background: var(--dk-canvas);
    color: #fff;
}

/* FIXED BENTO GRID LAYOUT */
.bento-details { 
    padding: 120px 0 80px 0; 
    background: var(--dk-canvas);
    color: #fff; 
    position: relative;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 6-Column Grid to accommodate 1 big (4 cols) and side stack (2 cols) */
.service-grid-container { 
    display: grid; 
    grid-template-columns: repeat(6, 1fr); 
    grid-auto-rows: 220px; 
    gap: 20px; 
}

/* Grid Spans */
.box-feature { 
    grid-column: span 4; 
    grid-row: span 3; /* Spans the full height of the 3 boxes next to it */
}
.box-right-stack { 
    grid-column: span 2; 
    grid-row: span 1; 
}

/* Bento Background Images */
.training-bento-1 { background-image: url('../images/services/training/Bento1.webp'); }
.training-bento-2 { background-image: url('../images/services/training/Bento2.webp'); }
.training-bento-3 { background-image: url('../images/services/training/Bento3.webp'); }
.training-bento-4 { background-image: url('../images/services/training/Bento4.webp'); }
.showcase-tag { display: inline-block; background: rgba(138, 53, 18, 0.08); color: var(--brand-accent); padding: 5px 12px; border-radius: var(--radius-md); font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 15px; }
.service-box h3 { 
    font-size: 2.2rem; 
    color: #fff; 
    font-weight: 800; 
    margin-bottom: 15px; 
    transition: all 0.3s ease;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.service-box:hover h3 {
    transform: translateX(5px);
    text-shadow: none;
}

.service-box h4 { 
    color: #fff; 
    font-weight: 800; 
    margin-bottom: 10px; 
    font-size: 1.2rem; 
    transition: all 0.3s ease;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.service-box:hover h4 {
    transform: translateX(5px);
    text-shadow: none;
}

/* Blue Button in Bento */
.visual-accent-btn-blue { 
    display: inline-block; background: var(--brand-accent); color: #000 !important; 
    padding: 12px 24px; border-radius: var(--radius-md); font-weight: 800; 
    text-transform: uppercase; font-size: 0.75rem; text-decoration: none; 
    margin-top: 15px; transition: 0.3s; 
    box-shadow: 0 4px 15px rgba(138, 53, 18, 0.12);
}
.visual-accent-btn-blue:hover { background: var(--brand-accent-soft, #B66F1E); transform: scale(1.05); box-shadow: var(--shadow-warm-sm); }

/* RESPONSIVE */
@media (max-width: 768px) {
}

@media (max-width: 1024px) {
    .service-grid-container { grid-template-columns: 1fr; grid-auto-rows: auto; }
    .box-feature, .box-right-stack { grid-column: span 1; min-height: 280px; }
}
/* Service: webcasting */
/* webcasting.css */

/* SERVICE HERO SECTION */
.service-hero {
    height: 60vh;
    min-height: 550px;
    position: relative;
    display: flex;
    align-items: center;
    background: #000;
    overflow: hidden;
}

/* CAPABILITIES SECTION */
.capabilities {
    padding: 60px 0 100px 0;
    background: var(--dk-canvas);
    color: #fff;
}

/* BENTO GRID - 1 BIG LEFT / 3 SMALL RIGHT (COMPACT HEIGHT) */
.bento-details { 
    padding: 120px 0 80px 0; 
    background: var(--dk-canvas);
    color: #fff; 
    position: relative;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-grid-container.bento-custom-layout { 
    display: grid; 
    grid-template-columns: 1.4fr 1fr; 
    grid-template-rows: repeat(3, 160px); 
    gap: 15px; 
}

/* Grid Logic for 1 Big / 3 Small */
.box-big { 
    grid-column: 1; 
    grid-row: 1 / span 3; 
}
.box-small { 
    grid-column: 2; 
    grid-row: span 1; 
}

/* BENTO BACKGROUND ASSETS */
.web-bento-1 { background-image: url('../images/services/webcasting/Bento1.webp'); }
.web-bento-2 { background-image: url('../images/services/webcasting/Bento2.webp'); }
.web-bento-3 { background-image: url('../images/services/webcasting/Bento3.webp'); }
.web-bento-4 { background-image: url('../images/services/webcasting/Bento4.webp'); }

/* BOX ELEMENTS */
.service-box h3 { 
    font-size: 1.8rem; 
    color: #fff; 
    margin-bottom: 10px; 
    font-weight: 800; 
    transition: all 0.3s ease;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.service-box:hover h3 {
    transform: translateX(5px);
    text-shadow: none;
}

.service-box h4 { 
    font-size: 1.1rem; 
    color: #fff; 
    margin-bottom: 5px; 
    font-weight: 800; 
    transition: all 0.3s ease;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.service-box:hover h4 {
    transform: translateX(5px);
    text-shadow: none;
}


/* BUTTONS */
.visual-accent-btn-blue { 
    display: inline-block; background: var(--brand-accent); color: #000 !important; 
    padding: 10px 22px; border-radius: var(--radius-md); font-weight: 800; 
    font-size: 0.7rem; text-transform: uppercase; text-decoration: none; transition: 0.3s; 
    box-shadow: 0 4px 15px rgba(138, 53, 18, 0.12);
}
.visual-accent-btn-blue:hover { background: var(--brand-accent-soft, #B66F1E); transform: translateY(-2px); box-shadow: var(--shadow-warm-sm); }

/* MOBILE */
@media (max-width: 768px) {
}

@media (max-width: 1024px) {
    .service-grid-container.bento-custom-layout { grid-template-columns: 1fr; grid-template-rows: auto; }
    .box-big { grid-row: auto; min-height: 350px; }
    .box-small { grid-column: 1; min-height: 200px; }
}

.showcase-tag { color: var(--brand-accent); font-weight: 800; font-size: 0.65rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; display: block; }
/* Service: weddings */
/* weddings.css */

/* SERVICE HERO SECTION */
.service-hero {
    height: 60vh;
    min-height: 550px;
    position: relative;
    display: flex;
    align-items: center;
    background: #000;
    overflow: hidden;
}

/* CAPABILITIES SECTION */
.capabilities {
    padding: 60px 0 100px 0;
    background: var(--dk-canvas);
    color: #fff;
}

/* BENTO GRID SYSTEM */
.bento-details { 
    padding: 120px 0 80px 0; 
    background: var(--dk-canvas);
    color: #fff; 
    position: relative;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-grid-container { display: grid; grid-template-columns: repeat(6, 1fr); grid-auto-rows: 320px; gap: 20px; }

/* BENTO SPANS */
.box-main { grid-column: span 3; }
.box-showcase { grid-column: span 3; }
.box-small-1, .box-small-2, .box-small-3 { grid-column: span 2; }

/* BENTO BACKGROUND ASSETS */
.wed-aesthetic { background-image: url('../images/services/weddings/Bento1.webp'); } /* Cinematic Box */
.wed-drone { background-image: url('../images/services/weddings/Bento2.webp'); }     /* Aerial Box */
.wed-multi { background-image: url('../images/services/weddings/Bento3.webp'); }
.wed-reels { background-image: url('../images/services/weddings/Bento4.webp'); }
.wed-audio { background-image: url('../images/services/weddings/Bento5.webp'); }

.service-box h3 { 
    font-size: 1.8rem; 
    font-weight: 800; 
    margin-bottom: 10px; 
    color: #fff; 
    transition: all 0.3s ease;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.service-box:hover h3 {
    transform: translateX(5px);
    text-shadow: none;
}

.service-box h4 { 
    font-size: 1.4rem; 
    font-weight: 800; 
    margin-bottom: 10px; 
    color: #fff; 
    transition: all 0.3s ease;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.service-box:hover h4 {
    transform: translateX(5px);
    text-shadow: none;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
}

@media (max-width: 1024px) {
    #navbar { background: #000; padding: 15px 0; }
    .service-grid-container { grid-template-columns: 1fr; grid-auto-rows: auto; }
    .box-main, .box-showcase, .box-small-1, .box-small-2, .box-small-3 { grid-column: span 1; min-height: 280px; }
}

/* UI ELEMENTS */
.visual-accent-btn-blue { 
    display: inline-block; 
    background: var(--brand-accent); 
    color: #000 !important; 
    padding: 12px 24px; 
    border-radius: var(--radius-md); 
    font-weight: 800; 
    font-size: 0.75rem; 
    text-decoration: none; 
    transition: 0.3s; 
    box-shadow: 0 4px 15px rgba(138, 53, 18, 0.12);
}
.visual-accent-btn-blue:hover { 
    background: var(--brand-accent-soft, #B66F1E); 
    transform: translateY(-2px); 
    box-shadow: var(--shadow-warm-sm);
}
.showcase-tag { color: var(--brand-accent); font-weight: 800; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; display: block; }

/* Confirmed service hero reference pattern */
.service-page .service-hero.service-hero--sidebar {
    height: 45vh;
    min-height: 450px;
    position: relative;
    display: flex;
    align-items: stretch;
    background: var(--dk-umber);
    overflow: hidden;
}

.service-page .service-hero.service-hero--sidebar .hero-bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: none;
}

.service-page .service-hero.service-hero--sidebar .hero-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: linear-gradient(to right, rgba(43, 36, 27, 0.10) 0 42%, rgba(43, 36, 27, 0.20) 42%, transparent 60%);
}

.service-page .service-hero.service-hero--sidebar .service-hero-content.container,
.service-page .service-hero.service-hero--sidebar .container.service-hero-content {
    position: relative;
    z-index: 3;
    display: flex;
    width: 42%;
    max-width: none;
    min-height: 100%;
    margin: 0;
    padding: clamp(118px, 16vh, 168px) clamp(40px, 5vw, 64px) clamp(62px, 8vh, 88px);
    flex-direction: column;
    justify-content: center;
    background:
        linear-gradient(to right, rgba(43, 36, 27, 0.76), rgba(43, 36, 27, 0.54)),
        var(--texture-paper-grain);
    background-size: auto, 420px 420px, 160px 160px;
    box-shadow: 18px 0 42px rgba(17, 17, 17, 0.22);
    color: var(--dk-utility-white);
    text-align: left;
    text-shadow: none;
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
}

.service-page .service-hero.service-hero--sidebar .service-hero-content::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 20% 24%, rgba(138, 53, 18, 0.12), transparent 34%),
        linear-gradient(180deg, rgba(244, 232, 210, 0.04), transparent 40%);
}

.service-page .service-hero.service-hero--sidebar .category-tag,
.service-page .service-hero.service-hero--sidebar h1,
.service-page .service-hero.service-hero--sidebar .hero-subtitle,
.service-page .service-hero.service-hero--sidebar .service-hero-btns {
    position: relative;
    z-index: 1;
}

@media (max-width: 900px) {
    .service-page .service-hero.service-hero--sidebar {
        height: auto;
        min-height: 650px;
        align-items: center;
        justify-content: center;
    }

    .service-page .service-hero.service-hero--sidebar .hero-overlay {
        background: rgba(43, 36, 27, 0.56);
    }

    .service-page .service-hero.service-hero--sidebar .service-hero-content.container,
    .service-page .service-hero.service-hero--sidebar .container.service-hero-content {
        width: min(92%, 560px);
        min-height: auto;
        margin: 132px auto 64px;
        padding: 28px 22px;
        border: 1px solid rgba(244, 232, 210, 0.14);
        border-radius: var(--radius-md);
        box-shadow: 0 14px 34px rgba(17, 17, 17, 0.20);
        text-align: center;
    }
}

/* Live Performance page pass: bento cards, reusable video card, credits list */
.live-performance-page .bento-details {
    padding-top: 58px;
    padding-bottom: 54px;
    background-color: var(--dk-bone);
    background-image: var(--texture-paper-grain);
    background-size: 420px 420px, 160px 160px;
    color: var(--dk-umber);
}

.live-performance-page .section-intro p {
    color: rgba(43, 36, 27, 0.74);
}

.live-performance-page .live-bento-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-rows: none;
    grid-auto-rows: auto;
    align-items: stretch;
    gap: 22px;
}

.live-performance-page .live-feature-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 0;
    overflow: hidden;
    border: 1px solid rgba(43, 36, 27, 0.14);
    border-radius: var(--radius-md);
    background: var(--dk-canvas);
    box-shadow: var(--shadow-warm-md);
}

.live-performance-page .live-feature-card--large {
    grid-column: span 2;
    grid-row: span 2;
}

.live-performance-page .live-video-card {
    grid-column: span 2;
}

.live-performance-page .live-feature-card__image {
    flex: 0 0 auto;
    aspect-ratio: 16 / 10;
    min-height: 220px;
    overflow: hidden;
    background: var(--dk-umber);
}

.live-performance-page .live-feature-card--large .live-feature-card__image {
    aspect-ratio: 16 / 13;
    min-height: 360px;
}

.live-performance-page .live-feature-card:not(.live-feature-card--large):not(.live-video-card) .live-feature-card__image {
    aspect-ratio: 16 / 9;
    min-height: 190px;
    max-height: 220px;
}

.live-performance-page .live-feature-card__image img,
.live-performance-page .dkms-video-card__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.live-performance-page .live-feature-card__body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    background-color: var(--dk-canvas);
    background-image: var(--texture-paper-grain);
}

.live-performance-page .live-feature-card__label,
.live-performance-page .dkms-video-card__label {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 14px;
    padding: 6px 10px;
    border: 1px solid rgba(43, 36, 27, 0.16);
    border-radius: var(--radius-sm);
    background: rgba(244, 232, 210, 0.62);
    color: var(--dk-rust);
    font-family: var(--font-label);
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
}

.live-performance-page .live-feature-card h3,
.live-performance-page .live-feature-card h4 {
    margin: 0 0 12px;
    color: var(--dk-umber);
    font-family: var(--font-display);
    font-weight: 650;
    letter-spacing: 0;
    text-shadow: none;
}

.live-performance-page .live-feature-card h3 {
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 0.98;
}

.live-performance-page .live-feature-card h4 {
    font-size: 1.45rem;
    line-height: 1.1;
}

.live-performance-page .live-feature-card p {
    margin: 0;
    color: rgba(43, 36, 27, 0.74);
    font-size: 1rem;
    line-height: 1.55;
}

.live-performance-page .dkms-video-card {
    display: flex;
    width: 100%;
    height: 100%;
    min-height: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
    font: inherit;
    text-align: left;
}

.live-performance-page .dkms-video-card__media {
    position: relative;
    display: block;
    width: 46%;
    min-height: 100%;
    overflow: hidden;
    background: var(--dk-umber);
}

.live-performance-page .dkms-video-card__media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(43, 36, 27, 0.16), rgba(43, 36, 27, 0.28));
}

.live-performance-page .dkms-video-card__play {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 1;
    display: inline-flex;
    width: 54px;
    height: 54px;
    align-items: center;
    justify-content: center;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(244, 232, 210, 0.42);
    border-radius: var(--radius-md);
    background: rgba(36, 87, 82, 0.78);
    color: var(--dk-bone);
    box-shadow: 0 12px 26px rgba(43, 36, 27, 0.18);
}

.live-performance-page .dkms-video-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: center;
    padding: 24px;
    background-color: var(--dk-canvas);
    background-image: var(--texture-paper-grain);
}

.live-performance-page .dkms-video-card__title {
    display: block;
    color: var(--dk-umber);
    font-family: var(--font-display);
    font-size: clamp(1.45rem, 2.2vw, 2.15rem);
    font-weight: 650;
    line-height: 0.96;
}

.live-performance-page .dkms-video-card__song,
.live-performance-page .dkms-video-card__group {
    display: block;
    width: 100%;
}

.live-performance-page .dkms-video-card__group {
    font-size: 0.82em;
    margin-top: 2px;
}

.live-performance-page .dkms-video-card__title br {
    display: none;
}

.live-performance-page .dkms-video-card__meta {
    margin-top: 18px;
    color: var(--dk-rust);
    font-family: var(--font-label);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.live-performance-page .dkms-video-card:hover .dkms-video-card__title,
.live-performance-page .dkms-video-card:focus-visible .dkms-video-card__title {
    color: var(--dk-rust);
}

.live-performance-page .trusted-clients {
    padding: 88px 0;
    background:
        linear-gradient(rgba(43, 36, 27, 0.94), rgba(43, 36, 27, 0.94)),
        var(--texture-paper-grain);
}

.live-performance-page .trusted-clients .cap-header {
    margin-bottom: 34px;
}

.live-performance-page .trusted-clients .cap-header h2 {
    color: var(--dk-bone);
}

.live-performance-page .trusted-clients .cap-header .accent-text {
    color: var(--dk-brass);
}

.live-performance-page .trusted-clients .client-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
    margin-top: 0;
    align-items: stretch;
}

.live-performance-page .trusted-clients .client-grid span {
    position: relative;
    display: flex;
    min-height: 74px;
    padding: 16px 18px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid rgba(244, 232, 210, 0.18);
    border-radius: var(--radius-md);
    background-color: var(--dk-canvas);
    background-image: var(--texture-paper-grain);
    color: var(--dk-umber);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.2;
    text-align: center;
    text-transform: none;
    box-shadow: var(--shadow-warm-sm);
}

.live-performance-page .trusted-clients .client-grid span:hover {
    border-color: rgba(138, 53, 18, 0.34);
    color: var(--dk-rust);
}

@media (max-width: 900px) {
    .live-performance-page .live-bento-grid,
    .live-performance-page .trusted-clients .client-grid {
        grid-template-columns: 1fr;
    }

    .live-performance-page .live-feature-card--large,
    .live-performance-page .live-video-card {
        grid-column: span 1;
    }

    .live-performance-page .dkms-video-card {
        flex-direction: column;
    }

    .live-performance-page .dkms-video-card__media {
        width: 100%;
        aspect-ratio: 16 / 10;
    }
}

/* Reusable service-page video modal */
.service-page .showcase-modal {
    position: fixed;
    inset: 0;
    z-index: 12000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.service-page .showcase-modal.is-open {
    display: flex;
}

.service-page .showcase-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(17, 17, 17, 0.78);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.service-page .showcase-modal__dialog {
    position: relative;
    width: min(1040px, 100%);
    max-height: min(86vh, 760px);
    overflow: hidden;
    border: 1px solid rgba(244, 232, 210, 0.18);
    border-radius: var(--radius-md);
    background: var(--dk-iron);
    box-shadow: 0 20px 60px rgba(17, 17, 17, 0.38);
}

.service-page .showcase-modal__close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(244, 232, 210, 0.28);
    border-radius: var(--radius-md);
    background: rgba(17, 17, 17, 0.42);
    color: var(--dk-bone);
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}

.service-page .showcase-modal__close:hover {
    background: rgba(244, 232, 210, 0.12);
}

.service-page .showcase-player {
    padding: clamp(18px, 3vw, 30px);
}

.service-page .showcase-player__masthead {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 16px;
}

.service-page .showcase-player__label {
    display: inline-block;
    margin-bottom: 7px;
    padding: 6px 10px;
    border: 1px solid rgba(244, 232, 210, 0.26);
    border-radius: var(--radius-md);
    background: rgba(244, 232, 210, 0.10);
    color: var(--dk-bone);
    font-family: var(--font-label);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
    line-height: 1.1;
    text-transform: uppercase;
}

.service-page .showcase-player__kicker,
.service-page .showcase-player__stamp {
    color: rgba(244, 232, 210, 0.72);
    font-family: var(--font-label);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    line-height: 1.2;
    text-transform: uppercase;
}

.service-page .showcase-player__stamp {
    text-align: right;
}

.service-page .showcase-player__frame {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border: 1px solid rgba(244, 232, 210, 0.24);
    border-radius: var(--radius-md);
    background: var(--dk-utility-black);
    box-shadow: 0 16px 40px rgba(17, 17, 17, 0.34);
}

.service-page .showcase-player__poster {
    position: absolute;
    inset: 0;
    z-index: 1;
    border: 0;
    background-color: var(--dk-utility-black);
    background-image: url('../images/home/hero/hero-1.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    cursor: pointer;
}

.service-page .showcase-player__poster::after {
    content: none;
}

.service-page .showcase-player.is-playing .showcase-player__poster {
    display: none;
}

.service-page .showcase-player__poster-label {
    position: absolute;
    left: 28px;
    top: 28px;
    z-index: 2;
    padding: 7px 10px;
    border: 1px solid rgba(244, 232, 210, 0.28);
    border-radius: var(--radius-md);
    background: rgba(17, 17, 17, 0.34);
    color: var(--dk-bone);
    font-family: var(--font-label);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    line-height: 1.1;
    text-transform: uppercase;
}

.service-page .showcase-player__play {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
    display: grid;
    width: 78px;
    height: 78px;
    transform: translate(-50%, -50%);
    place-items: center;
    border: 1px solid rgba(244, 232, 210, 0.62);
    border-radius: var(--radius-md);
    background: rgba(138, 53, 18, 0.86);
    color: var(--dk-utility-white);
    box-shadow: var(--shadow-warm-sm);
}

.service-page .showcase-player__poster:hover .showcase-player__play,
.service-page .showcase-player__poster:focus-visible .showcase-player__play {
    background: var(--dk-oxblood);
}

.service-page .showcase-player__embed,
.service-page .showcase-player__embed iframe {
    width: 100%;
    height: 100%;
}

.service-page .showcase-player__embed iframe {
    display: block;
    border: 0;
}

.service-page .showcase-player__meta {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    padding-top: 18px;
    color: var(--dk-bone);
}

.service-page .showcase-player__meta h2 {
    margin: 0;
    color: var(--dk-bone);
    font-family: var(--font-display);
    font-size: clamp(1.45rem, 2.4vw, 2rem);
    font-weight: 650;
    line-height: 1.08;
}

.service-page .showcase-player__meta p {
    max-width: 390px;
    margin: 0;
    color: rgba(244, 232, 210, 0.70);
    font-size: 15px;
    line-height: 1.45;
    text-align: right;
}

@media (max-width: 720px) {
    .service-page .showcase-modal {
        padding: 12px;
    }

    .service-page .showcase-player__masthead,
    .service-page .showcase-player__meta {
        display: block;
    }

    .service-page .showcase-player__stamp,
    .service-page .showcase-player__meta p {
        margin-top: 10px;
        text-align: left;
    }
}

/* Live Performance process reference */
.live-performance-page .live-process-section {
    padding: 46px 0 92px;
    background-color: var(--dk-bone);
    background-image: var(--texture-paper-grain);
    background-size: 420px 420px, 160px 160px;
    color: var(--dk-umber);
}

.live-performance-page .live-process-header {
    max-width: 760px;
    margin-bottom: 42px;
}

.live-performance-page .live-process-header h2 {
    color: var(--dk-umber);
}

.live-performance-page .live-process-header p {
    color: rgba(43, 36, 27, 0.74);
}

.live-performance-page .live-process-header h2,
.service-page .aerial-process-header h2,
.service-page .documentary-process-header h2,
.service-page .commercial-process-header h2,
.service-page .realestate-process-header h2,
.service-page .weddings-process-header h2,
.service-page .events-process-header h2,
.service-page .webcasting-process-header h2 {
    margin: 0 0 18px;
    color: var(--dk-umber);
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.2vw, 3rem);
    font-weight: 650;
    letter-spacing: 0;
    line-height: 1;
    text-shadow: none;
}

.live-performance-page .live-process-list {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.live-performance-page .live-process-list::before {
    content: '';
    position: absolute;
    top: 42px;
    left: 8%;
    right: 8%;
    height: 2px;
    background: linear-gradient(to right, rgba(138, 53, 18, 0.12), rgba(138, 53, 18, 0.42), rgba(138, 53, 18, 0.12));
}

.live-performance-page .live-process-card {
    position: relative;
    display: flex;
    min-width: 0;
    min-height: 100%;
    padding: 24px;
    flex-direction: column;
    gap: 18px;
    border: 1px solid rgba(43, 36, 27, 0.14);
    border-radius: var(--radius-md);
    background-color: var(--dk-canvas);
    background-image: var(--texture-paper-grain);
    box-shadow: var(--shadow-warm-md);
}

.live-performance-page .live-process-number {
    position: relative;
    z-index: 1;
    display: inline-flex;
    width: 62px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(43, 36, 27, 0.18);
    border-radius: var(--radius-md);
    background: var(--dk-rust);
    color: var(--dk-utility-white);
    font-family: var(--font-label);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    box-shadow: var(--shadow-warm-sm);
}

.live-performance-page .live-process-title {
    color: var(--dk-umber);
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.2vw, 2rem);
    font-weight: 650;
    line-height: 1.05;
}

.live-performance-page .live-process-copy ul {
    display: grid;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.live-performance-page .live-process-copy li {
    position: relative;
    padding-left: 18px;
    color: rgba(43, 36, 27, 0.76);
    font-size: 0.96rem;
    line-height: 1.5;
}

.live-performance-page .live-process-copy li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.68em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--dk-brass);
}

.live-performance-page .live-process-copy li strong {
    display: block;
    margin-bottom: 3px;
    color: var(--dk-umber);
    font-weight: 700;
}

@media (max-width: 1100px) {
    .live-performance-page .live-process-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .live-performance-page .live-process-list::before {
        display: none;
    }
}

@media (max-width: 680px) {
    .live-performance-page .live-process-section {
        padding: 54px 0 70px;
    }

    .live-performance-page .live-process-list {
        grid-template-columns: 1fr;
    }
}

/* Aerial page pass: cross-link cards and process reference */
.service-page .aerial-bento-section {
    padding-top: 58px;
    padding-bottom: 54px;
    background-color: var(--dk-bone);
    background-image: var(--texture-paper-grain);
    background-size: 420px 420px, 160px 160px;
    color: var(--dk-umber);
}

.service-page .aerial-section-intro p {
    color: rgba(43, 36, 27, 0.74);
}

.service-page .aerial-section-intro .explore-text {
    color: var(--dk-rust);
}

.service-page .service-card-grid,
.service-page .aerial-card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
    grid-auto-rows: auto;
    align-items: stretch;
    gap: 22px;
}

.service-page .service-preview-card,
.service-page .aerial-service-card {
    display: flex;
    height: 100%;
    min-height: 0;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(43, 36, 27, 0.14);
    border-radius: var(--radius-md);
    background: var(--dk-canvas);
    color: var(--dk-umber);
    text-decoration: none;
    box-shadow: var(--shadow-warm-md);
}

.service-page .service-preview-card__image,
.service-page .aerial-service-card__image {
    flex: 0 0 auto;
    aspect-ratio: 16 / 10;
    min-height: 190px;
    overflow: hidden;
    background: var(--dk-umber);
}

.service-page .service-preview-card__image img,
.service-page .aerial-service-card__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-page .service-preview-card__body,
.service-page .aerial-service-card__body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    background-color: var(--dk-canvas);
    background-image: var(--texture-paper-grain);
}

.service-page .service-preview-card__label,
.service-page .aerial-service-card__label {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 14px;
    padding: 6px 10px;
    border: 1px solid rgba(43, 36, 27, 0.16);
    border-radius: var(--radius-sm);
    background: rgba(244, 232, 210, 0.62);
    color: var(--dk-rust);
    font-family: var(--font-label);
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
}

.service-page .service-preview-card h3,
.service-page .aerial-service-card h3 {
    margin: 0 0 12px;
    color: var(--dk-umber);
    font-size: clamp(1.55rem, 2.4vw, 2.4rem);
    line-height: 1.02;
    text-shadow: none;
}

.service-page .service-preview-card p,
.service-page .aerial-service-card p {
    margin: 0;
    color: rgba(43, 36, 27, 0.74);
    font-size: 1rem;
    line-height: 1.55;
}

.service-page .service-preview-card__link,
.service-page .aerial-service-card__link {
    margin-top: auto;
    padding-top: 22px;
    color: var(--dk-rust);
    font-family: var(--font-label);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.service-page .service-preview-card__link::after,
.service-page .aerial-service-card__link::after {
    content: ' →';
}

.service-page .service-preview-card:hover .service-preview-card__link,
.service-page .service-preview-card:focus-visible .service-preview-card__link,
.service-page .aerial-service-card:hover .aerial-service-card__link,
.service-page .aerial-service-card:focus-visible .aerial-service-card__link {
    color: var(--dk-oxblood);
}

.service-page .aerial-process-section {
    padding: 46px 0 92px;
    background-color: var(--dk-bone);
    background-image: var(--texture-paper-grain);
    background-size: 420px 420px, 160px 160px;
    color: var(--dk-umber);
}

.service-page .aerial-process-header {
    max-width: 760px;
    margin-bottom: 42px;
}

.service-page .aerial-process-header h2 {
    color: var(--dk-umber);
}

.service-page .aerial-process-header p {
    color: rgba(43, 36, 27, 0.74);
}

.service-page .aerial-process-list {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.service-page .aerial-process-list::before {
    content: '';
    position: absolute;
    top: 42px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(to right, rgba(138, 53, 18, 0.12), rgba(138, 53, 18, 0.42), rgba(138, 53, 18, 0.12));
}

.service-page .aerial-process-card {
    position: relative;
    display: flex;
    min-width: 0;
    min-height: 100%;
    padding: 24px;
    flex-direction: column;
    gap: 18px;
    border: 1px solid rgba(43, 36, 27, 0.14);
    border-radius: var(--radius-md);
    background-color: var(--dk-canvas);
    background-image: var(--texture-paper-grain);
    box-shadow: var(--shadow-warm-md);
}

.service-page .aerial-process-number {
    position: relative;
    z-index: 1;
    display: inline-flex;
    width: 62px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(43, 36, 27, 0.18);
    border-radius: var(--radius-md);
    background: var(--dk-rust);
    color: var(--dk-utility-white);
    font-family: var(--font-label);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    box-shadow: var(--shadow-warm-sm);
}

.service-page .aerial-process-title {
    color: var(--dk-umber);
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.2vw, 2rem);
    font-weight: 650;
    line-height: 1.05;
}

.service-page .aerial-process-copy ul {
    display: grid;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.service-page .aerial-process-copy li {
    position: relative;
    padding-left: 18px;
    color: rgba(43, 36, 27, 0.76);
    font-size: 0.96rem;
    line-height: 1.5;
}

.service-page .aerial-process-copy li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.68em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--dk-brass);
}

.service-page .aerial-process-copy li strong {
    display: block;
    margin-bottom: 3px;
    color: var(--dk-umber);
    font-weight: 700;
}

@media (max-width: 1100px) {
    .service-page .aerial-card-grid,
    .service-page .aerial-process-list {
        grid-template-columns: 1fr;
    }

    .service-page .aerial-card-grid {
        grid-auto-rows: auto;
    }

    .service-page .aerial-process-list::before {
        display: none;
    }
}

/* Documentary page pass: production cards, featured film, and process */
.service-page .documentary-bento-section {
    padding-top: 58px;
    padding-bottom: 54px;
    background-color: var(--dk-bone);
    background-image: var(--texture-paper-grain);
    background-size: 420px 420px, 160px 160px;
    color: var(--dk-umber);
}

.service-page .documentary-section-intro {
    max-width: 760px;
    margin-bottom: 42px;
}

.service-page .documentary-section-intro .category-tag {
    color: var(--dk-rust);
}

.service-page .documentary-section-intro p {
    color: rgba(43, 36, 27, 0.74);
}

.service-page .documentary-card-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-template-rows: none;
    grid-auto-rows: auto;
    align-items: stretch;
    gap: 22px;
}

.service-page .documentary-feature-card {
    display: flex;
    height: 100%;
    min-height: 0;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(43, 36, 27, 0.14);
    border-radius: var(--radius-md);
    background: var(--dk-canvas);
    color: var(--dk-umber);
    box-shadow: var(--shadow-warm-md);
}

.service-page .documentary-feature-card--wide {
    grid-column: span 3;
}

.service-page .documentary-feature-card:not(.documentary-feature-card--wide) {
    grid-column: span 2;
}

.service-page .documentary-feature-card__image {
    flex: 0 0 auto;
    aspect-ratio: 16 / 10;
    min-height: 190px;
    overflow: hidden;
    background: var(--dk-umber);
}

.service-page .documentary-feature-card__image img,
.service-page .documentary-video-card .dkms-video-card__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-page .documentary-feature-card__body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    background-color: var(--dk-canvas);
    background-image: var(--texture-paper-grain);
}

.service-page .documentary-feature-card__label,
.service-page .documentary-video-card .dkms-video-card__label {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 14px;
    padding: 6px 10px;
    border: 1px solid rgba(43, 36, 27, 0.16);
    border-radius: var(--radius-sm);
    background: rgba(244, 232, 210, 0.62);
    color: var(--dk-rust);
    font-family: var(--font-label);
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
}

.service-page .documentary-feature-card h3,
.service-page .documentary-feature-card h4 {
    margin: 0 0 12px;
    color: var(--dk-umber);
    text-shadow: none;
}

.service-page .documentary-feature-card h3 {
    font-size: clamp(1.65rem, 2.6vw, 2.6rem);
    line-height: 1.02;
}

.service-page .documentary-feature-card h4 {
    font-size: 1.45rem;
    line-height: 1.1;
}

.service-page .documentary-feature-card p {
    margin: 0;
    color: rgba(43, 36, 27, 0.74);
    font-size: 1rem;
    line-height: 1.55;
}

.service-page .documentary-video-card .dkms-video-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    min-height: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
    font: inherit;
    text-align: left;
}

.service-page .documentary-video-card .dkms-video-card__media {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    min-height: 190px;
    overflow: hidden;
    background: var(--dk-umber);
}

.service-page .documentary-video-card .dkms-video-card__media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(43, 36, 27, 0.16), rgba(43, 36, 27, 0.28));
}

.service-page .documentary-video-card .dkms-video-card__play {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 1;
    display: inline-flex;
    width: 54px;
    height: 54px;
    align-items: center;
    justify-content: center;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(244, 232, 210, 0.42);
    border-radius: var(--radius-md);
    background: rgba(36, 87, 82, 0.78);
    color: var(--dk-bone);
    box-shadow: 0 12px 26px rgba(43, 36, 27, 0.18);
}

.service-page .documentary-video-card .dkms-video-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: flex-start;
    padding: 24px;
    background-color: var(--dk-canvas);
    background-image: var(--texture-paper-grain);
}

.service-page .documentary-video-card .dkms-video-card__title {
    color: var(--dk-umber);
    font-family: var(--font-display);
    font-size: clamp(1.45rem, 2.2vw, 2.15rem);
    font-weight: 650;
    line-height: 1.05;
}

.service-page .documentary-video-card .dkms-video-card__meta {
    margin-top: 18px;
    color: var(--dk-rust);
    font-family: var(--font-label);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* Shared bento card component: Live Performance is the approved reference. */
.live-performance-page .live-feature-card,
.service-page .service-preview-card,
.service-page .aerial-service-card,
.service-page .documentary-feature-card,
.service-page .commercial-feature-card,
.service-page .realestate-feature-card,
.service-page .weddings-feature-card,
.service-page .events-feature-card,
.service-page .webcasting-feature-card {
    overflow: hidden;
    border: 1px solid rgba(43, 36, 27, 0.14);
    border-radius: var(--radius-md);
    background: var(--dk-canvas);
    color: var(--dk-umber);
    box-shadow: var(--shadow-warm-md);
}

.live-performance-page .live-feature-card__body,
.live-performance-page .dkms-video-card__body,
.service-page .service-preview-card__body,
.service-page .aerial-service-card__body,
.service-page .documentary-feature-card__body,
.service-page .documentary-video-card .dkms-video-card__body,
.service-page .commercial-feature-card__body,
.service-page .commercial-video-card .dkms-video-card__body,
.service-page .realestate-feature-card__body,
.service-page .realestate-video-card .dkms-video-card__body,
.service-page .weddings-feature-card__body,
.service-page .events-feature-card__body,
.service-page .events-video-card .dkms-video-card__body,
.service-page .webcasting-feature-card__body {
    background-color: var(--dk-canvas);
    background-image: var(--texture-paper-grain);
}

/* Webcasting page pass: corrected positioning and process */
.service-page .webcasting-bento-section {
    padding-top: 58px;
    padding-bottom: 54px;
    background-color: var(--dk-bone);
    background-image: var(--texture-paper-grain);
    background-size: 420px 420px, 160px 160px;
    color: var(--dk-umber);
}

.service-page .webcasting-section-intro {
    max-width: 820px;
    margin-bottom: 42px;
}

.service-page .webcasting-section-intro .category-tag {
    color: var(--dk-rust);
}

.service-page .webcasting-section-intro p {
    color: rgba(43, 36, 27, 0.74);
}

.service-page .webcasting-process-section {
    padding: 46px 0 92px;
    background-color: var(--dk-bone);
    background-image: var(--texture-paper-grain);
    background-size: 420px 420px, 160px 160px;
    color: var(--dk-umber);
}

.service-page .webcasting-process-header {
    max-width: 760px;
    margin-bottom: 42px;
}

.service-page .webcasting-process-header h2 {
    color: var(--dk-umber);
}

.service-page .webcasting-process-header p {
    color: rgba(43, 36, 27, 0.74);
}

.service-page .webcasting-process-list {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.service-page .webcasting-process-list::before {
    content: '';
    position: absolute;
    top: 42px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(to right, rgba(138, 53, 18, 0.12), rgba(138, 53, 18, 0.42), rgba(138, 53, 18, 0.12));
}

.service-page .webcasting-process-card {
    position: relative;
    display: flex;
    min-width: 0;
    min-height: 100%;
    padding: 24px;
    flex-direction: column;
    gap: 18px;
    border: 1px solid rgba(43, 36, 27, 0.14);
    border-radius: var(--radius-md);
    background-color: var(--dk-canvas);
    background-image: var(--texture-paper-grain);
    box-shadow: var(--shadow-warm-md);
}

.service-page .webcasting-process-number {
    position: relative;
    z-index: 1;
    display: inline-flex;
    width: 62px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(43, 36, 27, 0.18);
    border-radius: var(--radius-md);
    background: var(--dk-rust);
    color: var(--dk-utility-white);
    font-family: var(--font-label);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    box-shadow: var(--shadow-warm-sm);
}

.service-page .webcasting-process-title {
    color: var(--dk-umber);
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.2vw, 2rem);
    font-weight: 650;
    line-height: 1.05;
}

.service-page .webcasting-process-copy ul {
    display: grid;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.service-page .webcasting-process-copy li {
    position: relative;
    padding-left: 18px;
    color: rgba(43, 36, 27, 0.76);
    font-size: 0.96rem;
    line-height: 1.5;
}

.service-page .webcasting-process-copy li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.68em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--dk-brass);
}

.service-page .webcasting-process-copy li strong {
    display: block;
    margin-bottom: 3px;
    color: var(--dk-umber);
    font-weight: 700;
}

@media (max-width: 1100px) {
    .service-page .webcasting-process-list {
        grid-template-columns: 1fr;
    }

    .service-page .webcasting-process-list::before {
        display: none;
    }
}

/* Events page pass: event cards, featured video, and process */
.service-page .events-bento-section {
    padding-top: 58px;
    padding-bottom: 54px;
    background-color: var(--dk-bone);
    background-image: var(--texture-paper-grain);
    background-size: 420px 420px, 160px 160px;
    color: var(--dk-umber);
}

.service-page .events-section-intro {
    max-width: 760px;
    margin-bottom: 42px;
}

.service-page .events-section-intro .category-tag {
    color: var(--dk-rust);
}

.service-page .events-section-intro p {
    color: rgba(43, 36, 27, 0.74);
}

.service-page .events-card-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-auto-rows: auto;
    align-items: stretch;
    gap: 22px;
}

.service-page .events-feature-card {
    display: flex;
    height: 100%;
    min-height: 0;
    flex-direction: column;
    text-decoration: none;
}

.service-page .events-feature-card--wide {
    grid-column: span 3;
}

.service-page .events-feature-card:not(.events-feature-card--wide) {
    grid-column: span 2;
}

.service-page .events-feature-card__image {
    flex: 0 0 auto;
    aspect-ratio: 16 / 10;
    min-height: 190px;
    overflow: hidden;
    background: var(--dk-umber);
}

.service-page .events-feature-card__image img,
.service-page .events-video-card .dkms-video-card__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-page .events-feature-card__body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
}

.service-page .events-feature-card__label,
.service-page .events-video-card .dkms-video-card__label {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 14px;
    padding: 6px 10px;
    border: 1px solid rgba(43, 36, 27, 0.16);
    border-radius: var(--radius-sm);
    background: rgba(244, 232, 210, 0.62);
    color: var(--dk-rust);
    font-family: var(--font-label);
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
}

.service-page .events-feature-card h3,
.service-page .events-feature-card h4 {
    margin: 0 0 12px;
    color: var(--dk-umber);
    text-shadow: none;
}

.service-page .events-feature-card h3 {
    font-size: clamp(1.65rem, 2.6vw, 2.6rem);
    line-height: 1.02;
}

.service-page .events-feature-card h4 {
    font-size: 1.45rem;
    line-height: 1.1;
}

.service-page .events-feature-card p {
    margin: 0;
    color: rgba(43, 36, 27, 0.74);
    font-size: 1rem;
    line-height: 1.55;
}

.service-page .events-feature-card__link,
.service-page .events-video-card .dkms-video-card__meta {
    margin-top: auto;
    padding-top: 22px;
    color: var(--dk-rust);
    font-family: var(--font-label);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
}

.service-page .events-feature-card__link::after {
    content: ' →';
}

.service-page .events-video-card .dkms-video-card {
    display: flex;
    width: 100%;
    height: 100%;
    min-height: 100%;
    padding: 0;
    flex-direction: column;
    border: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
    font: inherit;
    text-align: left;
}

.service-page .events-video-card .dkms-video-card__media {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    min-height: 190px;
    overflow: hidden;
    background: var(--dk-umber);
}

.service-page .events-video-card .dkms-video-card__media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(43, 36, 27, 0.16), rgba(43, 36, 27, 0.28));
}

.service-page .events-video-card .dkms-video-card__play {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 1;
    display: inline-flex;
    width: 54px;
    height: 54px;
    align-items: center;
    justify-content: center;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(244, 232, 210, 0.42);
    border-radius: var(--radius-md);
    background: rgba(36, 87, 82, 0.78);
    color: var(--dk-bone);
    box-shadow: 0 12px 26px rgba(43, 36, 27, 0.18);
}

.service-page .events-video-card .dkms-video-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 24px;
}

.service-page .events-video-card .dkms-video-card__title {
    color: var(--dk-umber);
    font-family: var(--font-display);
    font-size: clamp(1.45rem, 2.2vw, 2.15rem);
    font-weight: 650;
    line-height: 1.05;
}

.service-page .events-process-section {
    padding: 46px 0 92px;
    background-color: var(--dk-bone);
    background-image: var(--texture-paper-grain);
    background-size: 420px 420px, 160px 160px;
    color: var(--dk-umber);
}

.service-page .events-process-header {
    max-width: 760px;
    margin-bottom: 42px;
}

.service-page .events-process-header h2 {
    color: var(--dk-umber);
}

.service-page .events-process-header p {
    color: rgba(43, 36, 27, 0.74);
}

.service-page .events-process-list {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.service-page .events-process-list::before {
    content: '';
    position: absolute;
    top: 42px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(to right, rgba(138, 53, 18, 0.12), rgba(138, 53, 18, 0.42), rgba(138, 53, 18, 0.12));
}

.service-page .events-process-card {
    position: relative;
    display: flex;
    min-width: 0;
    min-height: 100%;
    padding: 24px;
    flex-direction: column;
    gap: 18px;
    border: 1px solid rgba(43, 36, 27, 0.14);
    border-radius: var(--radius-md);
    background-color: var(--dk-canvas);
    background-image: var(--texture-paper-grain);
    box-shadow: var(--shadow-warm-md);
}

.service-page .events-process-number {
    position: relative;
    z-index: 1;
    display: inline-flex;
    width: 62px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(43, 36, 27, 0.18);
    border-radius: var(--radius-md);
    background: var(--dk-rust);
    color: var(--dk-utility-white);
    font-family: var(--font-label);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    box-shadow: var(--shadow-warm-sm);
}

.service-page .events-process-title {
    color: var(--dk-umber);
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.2vw, 2rem);
    font-weight: 650;
    line-height: 1.05;
}

.service-page .events-process-copy ul {
    display: grid;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.service-page .events-process-copy li {
    position: relative;
    padding-left: 18px;
    color: rgba(43, 36, 27, 0.76);
    font-size: 0.96rem;
    line-height: 1.5;
}

.service-page .events-process-copy li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.68em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--dk-brass);
}

.service-page .events-process-copy li strong {
    display: block;
    margin-bottom: 3px;
    color: var(--dk-umber);
    font-weight: 700;
}

@media (max-width: 1100px) {
    .service-page .events-card-grid,
    .service-page .events-process-list {
        grid-template-columns: 1fr;
    }

    .service-page .events-feature-card--wide,
    .service-page .events-feature-card:not(.events-feature-card--wide) {
        grid-column: span 1;
    }

    .service-page .events-process-list::before {
        display: none;
    }
}

/* Weddings page pass: corrected service positioning and process */
.service-page .weddings-bento-section {
    padding-top: 58px;
    padding-bottom: 54px;
    background-color: var(--dk-bone);
    background-image: var(--texture-paper-grain);
    background-size: 420px 420px, 160px 160px;
    color: var(--dk-umber);
}

.service-page .weddings-section-intro {
    max-width: 760px;
    margin-bottom: 42px;
}

.service-page .weddings-section-intro .category-tag {
    color: var(--dk-rust);
}

.service-page .weddings-section-intro p {
    color: rgba(43, 36, 27, 0.74);
}

.service-page .weddings-card-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-auto-rows: auto;
    align-items: stretch;
    gap: 22px;
}

.service-page .weddings-feature-card {
    display: flex;
    height: 100%;
    min-height: 0;
    flex-direction: column;
    text-decoration: none;
}

.service-page .weddings-feature-card--wide {
    grid-column: span 3;
}

.service-page .weddings-feature-card:not(.weddings-feature-card--wide) {
    grid-column: span 2;
}

.service-page .weddings-feature-card__image {
    flex: 0 0 auto;
    aspect-ratio: 16 / 10;
    min-height: 190px;
    overflow: hidden;
    background: var(--dk-umber);
}

.service-page .weddings-feature-card__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-page .weddings-feature-card__body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
}

.service-page .weddings-feature-card__label {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 14px;
    padding: 6px 10px;
    border: 1px solid rgba(43, 36, 27, 0.16);
    border-radius: var(--radius-sm);
    background: rgba(244, 232, 210, 0.62);
    color: var(--dk-rust);
    font-family: var(--font-label);
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
}

.service-page .weddings-feature-card h3,
.service-page .weddings-feature-card h4 {
    margin: 0 0 12px;
    color: var(--dk-umber);
    text-shadow: none;
}

.service-page .weddings-feature-card h3 {
    font-size: clamp(1.65rem, 2.6vw, 2.6rem);
    line-height: 1.02;
}

.service-page .weddings-feature-card h4 {
    font-size: 1.45rem;
    line-height: 1.1;
}

.service-page .weddings-feature-card p {
    margin: 0;
    color: rgba(43, 36, 27, 0.74);
    font-size: 1rem;
    line-height: 1.55;
}

.service-page .weddings-feature-card__link {
    margin-top: auto;
    padding-top: 22px;
    color: var(--dk-rust);
    font-family: var(--font-label);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
}

.service-page .weddings-feature-card__link::after {
    content: ' →';
}

.service-page .weddings-process-section {
    padding: 46px 0 92px;
    background-color: var(--dk-bone);
    background-image: var(--texture-paper-grain);
    background-size: 420px 420px, 160px 160px;
    color: var(--dk-umber);
}

.service-page .weddings-process-header {
    max-width: 760px;
    margin-bottom: 42px;
}

.service-page .weddings-process-header h2 {
    color: var(--dk-umber);
}

.service-page .weddings-process-header p {
    color: rgba(43, 36, 27, 0.74);
}

.service-page .weddings-process-list {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.service-page .weddings-process-list::before {
    content: '';
    position: absolute;
    top: 42px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(to right, rgba(138, 53, 18, 0.12), rgba(138, 53, 18, 0.42), rgba(138, 53, 18, 0.12));
}

.service-page .weddings-process-card {
    position: relative;
    display: flex;
    min-width: 0;
    min-height: 100%;
    padding: 24px;
    flex-direction: column;
    gap: 18px;
    border: 1px solid rgba(43, 36, 27, 0.14);
    border-radius: var(--radius-md);
    background-color: var(--dk-canvas);
    background-image: var(--texture-paper-grain);
    box-shadow: var(--shadow-warm-md);
}

.service-page .weddings-process-number {
    position: relative;
    z-index: 1;
    display: inline-flex;
    width: 62px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(43, 36, 27, 0.18);
    border-radius: var(--radius-md);
    background: var(--dk-rust);
    color: var(--dk-utility-white);
    font-family: var(--font-label);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    box-shadow: var(--shadow-warm-sm);
}

.service-page .weddings-process-title {
    color: var(--dk-umber);
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.2vw, 2rem);
    font-weight: 650;
    line-height: 1.05;
}

.service-page .weddings-process-copy ul {
    display: grid;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.service-page .weddings-process-copy li {
    position: relative;
    padding-left: 18px;
    color: rgba(43, 36, 27, 0.76);
    font-size: 0.96rem;
    line-height: 1.5;
}

.service-page .weddings-process-copy li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.68em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--dk-brass);
}

.service-page .weddings-process-copy li strong {
    display: block;
    margin-bottom: 3px;
    color: var(--dk-umber);
    font-weight: 700;
}

@media (max-width: 1100px) {
    .service-page .weddings-card-grid,
    .service-page .weddings-process-list {
        grid-template-columns: 1fr;
    }

    .service-page .weddings-feature-card--wide,
    .service-page .weddings-feature-card:not(.weddings-feature-card--wide) {
        grid-column: span 1;
    }

    .service-page .weddings-process-list::before {
        display: none;
    }
}

/* Real Estate page pass: property cards, featured video, process, and gallery chrome */
.service-page .realestate-bento-section {
    padding-top: 58px;
    padding-bottom: 54px;
    background-color: var(--dk-bone);
    background-image: var(--texture-paper-grain);
    background-size: 420px 420px, 160px 160px;
    color: var(--dk-umber);
}

.service-page .realestate-section-intro {
    max-width: 760px;
    margin-bottom: 42px;
}

.service-page .realestate-section-intro .category-tag {
    color: var(--dk-rust);
}

.service-page .realestate-section-intro p {
    color: rgba(43, 36, 27, 0.74);
}

.service-page .realestate-card-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-auto-rows: auto;
    align-items: stretch;
    gap: 22px;
}

.service-page .realestate-feature-card {
    display: flex;
    height: 100%;
    min-height: 0;
    flex-direction: column;
    text-decoration: none;
}

.service-page .realestate-feature-card--wide {
    grid-column: span 3;
}

.service-page .realestate-feature-card:not(.realestate-feature-card--wide) {
    grid-column: span 2;
}

.service-page .realestate-feature-card__image {
    flex: 0 0 auto;
    aspect-ratio: 16 / 10;
    min-height: 190px;
    overflow: hidden;
    background: var(--dk-umber);
}

.service-page .realestate-feature-card__image img,
.service-page .realestate-video-card .dkms-video-card__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-page .realestate-feature-card__body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
}

.service-page .realestate-feature-card__label,
.service-page .realestate-video-card .dkms-video-card__label {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 14px;
    padding: 6px 10px;
    border: 1px solid rgba(43, 36, 27, 0.16);
    border-radius: var(--radius-sm);
    background: rgba(244, 232, 210, 0.62);
    color: var(--dk-rust);
    font-family: var(--font-label);
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
}

.service-page .realestate-feature-card h3,
.service-page .realestate-feature-card h4 {
    margin: 0 0 12px;
    color: var(--dk-umber);
    text-shadow: none;
}

.service-page .realestate-feature-card h3 {
    font-size: clamp(1.65rem, 2.6vw, 2.6rem);
    line-height: 1.02;
}

.service-page .realestate-feature-card h4 {
    font-size: 1.45rem;
    line-height: 1.1;
}

.service-page .realestate-feature-card p {
    margin: 0;
    color: rgba(43, 36, 27, 0.74);
    font-size: 1rem;
    line-height: 1.55;
}

.service-page .realestate-feature-card__link,
.service-page .realestate-video-card .dkms-video-card__meta {
    margin-top: auto;
    padding-top: 22px;
    color: var(--dk-rust);
    font-family: var(--font-label);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
}

.service-page .realestate-feature-card__link::after {
    content: ' →';
}

.service-page .realestate-video-card .dkms-video-card {
    display: flex;
    width: 100%;
    height: 100%;
    min-height: 100%;
    padding: 0;
    flex-direction: column;
    border: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
    font: inherit;
    text-align: left;
}

.service-page .realestate-video-card .dkms-video-card__media {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    min-height: 190px;
    overflow: hidden;
    background: var(--dk-umber);
}

.service-page .realestate-video-card .dkms-video-card__media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(43, 36, 27, 0.16), rgba(43, 36, 27, 0.28));
}

.service-page .realestate-video-card .dkms-video-card__play {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 1;
    display: inline-flex;
    width: 54px;
    height: 54px;
    align-items: center;
    justify-content: center;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(244, 232, 210, 0.42);
    border-radius: var(--radius-md);
    background: rgba(36, 87, 82, 0.78);
    color: var(--dk-bone);
    box-shadow: 0 12px 26px rgba(43, 36, 27, 0.18);
}

.service-page .realestate-video-card .dkms-video-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 24px;
}

.service-page .realestate-video-card .dkms-video-card__title {
    color: var(--dk-umber);
    font-family: var(--font-display);
    font-size: clamp(1.45rem, 2.2vw, 2.15rem);
    font-weight: 650;
    line-height: 1.05;
}

.service-page .realestate-process-section {
    padding: 46px 0 92px;
    background-color: var(--dk-bone);
    background-image: var(--texture-paper-grain);
    background-size: 420px 420px, 160px 160px;
    color: var(--dk-umber);
}

.service-page .realestate-process-header {
    max-width: 760px;
    margin-bottom: 42px;
}

.service-page .realestate-process-header h2 {
    color: var(--dk-umber);
}

.service-page .realestate-process-header p {
    color: rgba(43, 36, 27, 0.74);
}

.service-page .realestate-process-list {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.service-page .realestate-process-list::before {
    content: '';
    position: absolute;
    top: 42px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(to right, rgba(138, 53, 18, 0.12), rgba(138, 53, 18, 0.42), rgba(138, 53, 18, 0.12));
}

.service-page .realestate-process-card {
    position: relative;
    display: flex;
    min-width: 0;
    min-height: 100%;
    padding: 24px;
    flex-direction: column;
    gap: 18px;
    border: 1px solid rgba(43, 36, 27, 0.14);
    border-radius: var(--radius-md);
    background-color: var(--dk-canvas);
    background-image: var(--texture-paper-grain);
    box-shadow: var(--shadow-warm-md);
}

.service-page .realestate-process-number {
    position: relative;
    z-index: 1;
    display: inline-flex;
    width: 62px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(43, 36, 27, 0.18);
    border-radius: var(--radius-md);
    background: var(--dk-rust);
    color: var(--dk-utility-white);
    font-family: var(--font-label);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    box-shadow: var(--shadow-warm-sm);
}

.service-page .realestate-process-title {
    color: var(--dk-umber);
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.2vw, 2rem);
    font-weight: 650;
    line-height: 1.05;
}

.service-page .realestate-process-copy ul {
    display: grid;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.service-page .realestate-process-copy li {
    position: relative;
    padding-left: 18px;
    color: rgba(43, 36, 27, 0.76);
    font-size: 0.96rem;
    line-height: 1.5;
}

.service-page .realestate-process-copy li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.68em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--dk-brass);
}

.service-page .realestate-process-copy li strong {
    display: block;
    margin-bottom: 3px;
    color: var(--dk-umber);
    font-weight: 700;
}

@media (max-width: 1100px) {
    .service-page .realestate-card-grid,
    .service-page .realestate-process-list {
        grid-template-columns: 1fr;
    }

    .service-page .realestate-feature-card--wide,
    .service-page .realestate-feature-card:not(.realestate-feature-card--wide) {
        grid-column: span 1;
    }

    .service-page .realestate-process-list::before {
        display: none;
    }
}

/* Commercial page pass: production cards, featured video, and process */
.service-page .commercial-bento-section {
    padding-top: 58px;
    padding-bottom: 54px;
    background-color: var(--dk-bone);
    background-image: var(--texture-paper-grain);
    background-size: 420px 420px, 160px 160px;
    color: var(--dk-umber);
}

.service-page .commercial-section-intro {
    max-width: 760px;
    margin-bottom: 42px;
}

.service-page .commercial-section-intro .category-tag {
    color: var(--dk-rust);
}

.service-page .commercial-section-intro p {
    color: rgba(43, 36, 27, 0.74);
}

.service-page .commercial-card-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-auto-rows: auto;
    align-items: stretch;
    gap: 22px;
}

.service-page .commercial-feature-card {
    display: flex;
    height: 100%;
    min-height: 0;
    flex-direction: column;
    text-decoration: none;
}

.service-page .commercial-feature-card--wide {
    grid-column: span 3;
}

.service-page .commercial-feature-card:not(.commercial-feature-card--wide) {
    grid-column: span 2;
}

.service-page .commercial-feature-card__image {
    flex: 0 0 auto;
    aspect-ratio: 16 / 10;
    min-height: 190px;
    overflow: hidden;
    background: var(--dk-umber);
}

.service-page .commercial-feature-card__image img,
.service-page .commercial-video-card .dkms-video-card__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-page .commercial-feature-card__body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
}

.service-page .commercial-feature-card__label,
.service-page .commercial-video-card .dkms-video-card__label {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 14px;
    padding: 6px 10px;
    border: 1px solid rgba(43, 36, 27, 0.16);
    border-radius: var(--radius-sm);
    background: rgba(244, 232, 210, 0.62);
    color: var(--dk-rust);
    font-family: var(--font-label);
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
}

.service-page .commercial-feature-card h3,
.service-page .commercial-feature-card h4 {
    margin: 0 0 12px;
    color: var(--dk-umber);
    text-shadow: none;
}

.service-page .commercial-feature-card h3 {
    font-size: clamp(1.65rem, 2.6vw, 2.6rem);
    line-height: 1.02;
}

.service-page .commercial-feature-card h4 {
    font-size: 1.45rem;
    line-height: 1.1;
}

.service-page .commercial-feature-card p {
    margin: 0;
    color: rgba(43, 36, 27, 0.74);
    font-size: 1rem;
    line-height: 1.55;
}

.service-page .commercial-feature-card__link,
.service-page .commercial-video-card .dkms-video-card__meta {
    margin-top: auto;
    padding-top: 22px;
    color: var(--dk-rust);
    font-family: var(--font-label);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
}

.service-page .commercial-feature-card__link::after {
    content: ' →';
}

.service-page .commercial-video-card .dkms-video-card {
    display: flex;
    width: 100%;
    height: 100%;
    min-height: 100%;
    padding: 0;
    flex-direction: column;
    border: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
    font: inherit;
    text-align: left;
}

.service-page .commercial-video-card .dkms-video-card__media {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    min-height: 190px;
    overflow: hidden;
    background: var(--dk-umber);
}

.service-page .commercial-video-card .dkms-video-card__media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(43, 36, 27, 0.16), rgba(43, 36, 27, 0.28));
}

.service-page .commercial-video-card .dkms-video-card__play {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 1;
    display: inline-flex;
    width: 54px;
    height: 54px;
    align-items: center;
    justify-content: center;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(244, 232, 210, 0.42);
    border-radius: var(--radius-md);
    background: rgba(36, 87, 82, 0.78);
    color: var(--dk-bone);
    box-shadow: 0 12px 26px rgba(43, 36, 27, 0.18);
}

.service-page .commercial-video-card .dkms-video-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 24px;
}

.service-page .commercial-video-card .dkms-video-card__title {
    color: var(--dk-umber);
    font-family: var(--font-display);
    font-size: clamp(1.45rem, 2.2vw, 2.15rem);
    font-weight: 650;
    line-height: 1.05;
}

.service-page .commercial-process-section {
    padding: 46px 0 92px;
    background-color: var(--dk-bone);
    background-image: var(--texture-paper-grain);
    background-size: 420px 420px, 160px 160px;
    color: var(--dk-umber);
}

.service-page .commercial-process-header {
    max-width: 760px;
    margin-bottom: 42px;
}

.service-page .commercial-process-header h2 {
    color: var(--dk-umber);
}

.service-page .commercial-process-header p {
    color: rgba(43, 36, 27, 0.74);
}

.service-page .commercial-process-list {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.service-page .commercial-process-list::before {
    content: '';
    position: absolute;
    top: 42px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(to right, rgba(138, 53, 18, 0.12), rgba(138, 53, 18, 0.42), rgba(138, 53, 18, 0.12));
}

.service-page .commercial-process-card {
    position: relative;
    display: flex;
    min-width: 0;
    min-height: 100%;
    padding: 24px;
    flex-direction: column;
    gap: 18px;
    border: 1px solid rgba(43, 36, 27, 0.14);
    border-radius: var(--radius-md);
    background-color: var(--dk-canvas);
    background-image: var(--texture-paper-grain);
    box-shadow: var(--shadow-warm-md);
}

.service-page .commercial-process-number {
    position: relative;
    z-index: 1;
    display: inline-flex;
    width: 62px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(43, 36, 27, 0.18);
    border-radius: var(--radius-md);
    background: var(--dk-rust);
    color: var(--dk-utility-white);
    font-family: var(--font-label);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    box-shadow: var(--shadow-warm-sm);
}

.service-page .commercial-process-title {
    color: var(--dk-umber);
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.2vw, 2rem);
    font-weight: 650;
    line-height: 1.05;
}

.service-page .commercial-process-copy ul {
    display: grid;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.service-page .commercial-process-copy li {
    position: relative;
    padding-left: 18px;
    color: rgba(43, 36, 27, 0.76);
    font-size: 0.96rem;
    line-height: 1.5;
}

.service-page .commercial-process-copy li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.68em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--dk-brass);
}

.service-page .commercial-process-copy li strong {
    display: block;
    margin-bottom: 3px;
    color: var(--dk-umber);
    font-weight: 700;
}

@media (max-width: 1100px) {
    .service-page .commercial-card-grid,
    .service-page .commercial-process-list {
        grid-template-columns: 1fr;
    }

    .service-page .commercial-feature-card--wide,
    .service-page .commercial-feature-card:not(.commercial-feature-card--wide) {
        grid-column: span 1;
    }

    .service-page .commercial-process-list::before {
        display: none;
    }
}

.service-page .documentary-process-section {
    padding: 46px 0 92px;
    background-color: var(--dk-bone);
    background-image: var(--texture-paper-grain);
    background-size: 420px 420px, 160px 160px;
    color: var(--dk-umber);
}

.service-page .documentary-process-header {
    max-width: 760px;
    margin-bottom: 42px;
}

.service-page .documentary-process-header h2 {
    color: var(--dk-umber);
}

.service-page .documentary-process-header p {
    color: rgba(43, 36, 27, 0.74);
}

.service-page .documentary-process-list {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.service-page .documentary-process-list::before {
    content: '';
    position: absolute;
    top: 42px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(to right, rgba(138, 53, 18, 0.12), rgba(138, 53, 18, 0.42), rgba(138, 53, 18, 0.12));
}

.service-page .documentary-process-card {
    position: relative;
    display: flex;
    min-width: 0;
    min-height: 100%;
    padding: 24px;
    flex-direction: column;
    gap: 18px;
    border: 1px solid rgba(43, 36, 27, 0.14);
    border-radius: var(--radius-md);
    background-color: var(--dk-canvas);
    background-image: var(--texture-paper-grain);
    box-shadow: var(--shadow-warm-md);
}

.service-page .documentary-process-number {
    position: relative;
    z-index: 1;
    display: inline-flex;
    width: 62px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(43, 36, 27, 0.18);
    border-radius: var(--radius-md);
    background: var(--dk-rust);
    color: var(--dk-utility-white);
    font-family: var(--font-label);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    box-shadow: var(--shadow-warm-sm);
}

.service-page .documentary-process-title {
    color: var(--dk-umber);
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.2vw, 2rem);
    font-weight: 650;
    line-height: 1.05;
}

.service-page .documentary-process-copy ul {
    display: grid;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.service-page .documentary-process-copy li {
    position: relative;
    padding-left: 18px;
    color: rgba(43, 36, 27, 0.76);
    font-size: 0.96rem;
    line-height: 1.5;
}

.service-page .documentary-process-copy li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.68em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--dk-brass);
}

.service-page .documentary-process-copy li strong {
    display: block;
    margin-bottom: 3px;
    color: var(--dk-umber);
    font-weight: 700;
}

/* Shared service bento heading typography */
.live-performance-page .live-feature-card h3,
.live-performance-page .live-feature-card h4,
.service-page .service-preview-card h3,
.service-page .aerial-service-card h3,
.service-page .documentary-feature-card h3,
.service-page .documentary-feature-card h4,
.service-page .commercial-feature-card h3,
.service-page .commercial-feature-card h4,
.service-page .realestate-feature-card h3,
.service-page .realestate-feature-card h4,
.service-page .weddings-feature-card h3,
.service-page .weddings-feature-card h4,
.service-page .events-feature-card h3,
.service-page .events-feature-card h4,
.service-page .webcasting-feature-card h3,
.service-page .webcasting-feature-card h4 {
    font-family: var(--font-display);
    font-weight: 650;
    letter-spacing: 0;
}

@media (max-width: 1100px) {
    .service-page .documentary-card-grid,
    .service-page .documentary-process-list {
        grid-template-columns: 1fr;
    }

    .service-page .documentary-feature-card--wide,
    .service-page .documentary-feature-card:not(.documentary-feature-card--wide) {
        grid-column: span 1;
    }

    .service-page .documentary-video-card .dkms-video-card {
        flex-direction: column;
    }

    .service-page .documentary-video-card .dkms-video-card__media {
        width: 100%;
        aspect-ratio: 16 / 10;
    }

    .service-page .documentary-process-list::before {
        display: none;
    }
}
