/*
Theme Name: Loud Digital Films
Theme URI: https://louddigitalfilms.com
Author: Loud Digital Films
Author URI: https://louddigitalfilms.com
Description: Industrial Luxury film production company theme. Premium, editorial design with video-first media system, modular service pages, package enquiry forms, and UK-compliant cookie consent. Built using Studio Genesis pattern with full editability controls.
Version: 3.3.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: loud-digital
Tags: custom-logo, custom-menu, featured-images, footer-widgets, theme-options, one-column, two-columns, custom-colors, editor-style

Loud Digital Films v3.1.0 - A premium film production company WordPress theme with Studio Genesis pattern and full Customizer/meta box editing.
*/

/* ============================================
   DESIGN SYSTEM - Industrial Luxury
   Font: Space Grotesk (Display) + Inter (Body)
   Colors: Monochromatic + Red/Yellow Accents
============================================ */

/* CSS Variables - Matching Lovable Design Tokens */
:root {
    /* Core Palette */
    --color-background: hsl(0 0% 100%);
    --color-foreground: hsl(0 0% 8%);
    --color-secondary: hsl(30 5% 96%);
    --color-muted: hsl(30 5% 94%);
    --color-muted-foreground: hsl(0 0% 45%);
    --color-border: hsl(0 0% 90%);
    
    /* Accent Colors */
    --color-accent-red: hsl(0 85% 50%);
    --color-accent-red-hover: hsl(0 85% 45%);
    --color-accent-yellow: hsl(45 95% 55%);
    --color-accent-yellow-hover: hsl(45 95% 50%);
    
    /* Spacing */
    --section-padding: 5rem;
    --section-padding-lg: 10rem;
    --container-max: 1800px;
    --container-padding: 1.5rem;
    
    /* Typography */
    --font-display: 'Space Grotesk', system-ui, sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;
}

@media (min-width: 768px) {
    :root {
        --container-padding: 3rem;
        --section-padding: 8rem;
    }
}

@media (min-width: 1024px) {
    :root {
        --container-padding: 5rem;
    }
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-foreground);
    background-color: var(--color-background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img, video, iframe {
    max-width: 100%;
    height: auto;
    display: block;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

/* ============================================
   LAYOUT
============================================ */

.container-wide {
    max-width: var(--container-max);
    margin: 0 auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

.section-padding {
    padding-top: var(--section-padding);
    padding-bottom: var(--section-padding);
}

.bg-background { background-color: var(--color-background); }
.bg-secondary { background-color: var(--color-secondary); }
.bg-foreground { background-color: var(--color-foreground); }
.text-background { color: var(--color-background); }

/* Grid System */
.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, 1fr); }
.gap-1 { gap: 0.25rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }
.gap-16 { gap: 4rem; }
.gap-20 { gap: 5rem; }

@media (min-width: 768px) {
    .md\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
    .md\:grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 1024px) {
    .lg\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
    .lg\:grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
}

/* Flex utilities */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.items-end { align-items: flex-end; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }

/* ============================================
   TYPOGRAPHY
============================================ */

.text-display {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 0.95;
}

.text-headline {
    font-family: var(--font-display);
    font-size: clamp(1.875rem, 4vw, 3rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.text-subheadline {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 500;
    letter-spacing: -0.01em;
}

.text-body-large {
    font-size: clamp(1.125rem, 1.5vw, 1.25rem);
    line-height: 1.7;
    color: var(--color-muted-foreground);
}

.text-body {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-muted-foreground);
}

.text-caption {
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-accent-red);
}

.text-muted {
    color: var(--color-muted-foreground);
}

/* Accent line for headings */
.accent-line {
    position: relative;
    padding-bottom: 0.75rem;
}

.accent-line::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 3rem;
    height: 2px;
    background-color: var(--color-accent-yellow);
}

/* ============================================
   BUTTONS
============================================ */

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background-color: var(--color-accent-red);
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--color-accent-red-hover);
    box-shadow: 0 0 24px hsla(0, 85%, 50%, 0.4);
    transform: translateY(-1px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background-color: var(--color-accent-yellow);
    color: var(--color-foreground);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--color-accent-yellow-hover);
    box-shadow: 0 0 20px hsla(45, 95%, 55%, 0.3);
    transform: translateY(-1px);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background-color: transparent;
    color: var(--color-foreground);
    border: 2px solid var(--color-foreground);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: var(--color-accent-yellow);
    border-color: var(--color-accent-yellow);
    box-shadow: 0 0 16px hsla(45, 95%, 55%, 0.3);
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background-color: white;
    color: var(--color-foreground);
    border: 2px solid white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-hero-primary:hover {
    background-color: var(--color-accent-red);
    border-color: var(--color-accent-red);
    color: white;
    box-shadow: 0 0 24px hsla(0, 85%, 50%, 0.5);
    transform: translateY(-1px);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background-color: transparent;
    color: white;
    border: 2px solid white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    background-color: var(--color-accent-yellow);
    border-color: var(--color-accent-yellow);
    color: var(--color-foreground);
    box-shadow: 0 0 20px hsla(45, 95%, 55%, 0.5);
    transform: translateY(-1px);
}

/* ============================================
   COMPONENTS
============================================ */

/* Divider Accent */
.divider-accent {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--color-accent-yellow) 0%, var(--color-accent-red) 100%);
}

/* Card Accent */
.card-accent {
    position: relative;
    overflow: hidden;
}

.card-accent::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-accent-yellow) 0%, var(--color-accent-red) 100%);
}

/* Work Item Grid */
.work-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    background-color: var(--color-muted);
}

.work-item img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

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

.work-item-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    background-color: transparent;
    transition: background-color 0.5s ease;
}

.work-item:hover .work-item-overlay {
    background-color: rgba(0, 0, 0, 0.6);
}

.work-item-content {
    color: white;
    opacity: 0;
    transform: translateY(1rem);
    transition: all 0.5s ease;
}

.work-item:hover .work-item-content {
    opacity: 1;
    transform: translateY(0);
}

.work-item-category {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-accent-yellow);
    margin-bottom: 0.5rem;
}

.work-item-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
}

/* Service Card */
.service-card {
    display: block;
    padding: 2rem 0;
    border-bottom: 1px solid var(--color-border);
    transition: all 0.3s ease;
}

.service-card:hover {
    background-color: hsla(45, 95%, 55%, 0.04);
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    margin-left: -1.5rem;
    margin-right: -1.5rem;
}

.service-card-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.service-card-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.service-card-number {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-accent-yellow);
    display: none;
}

@media (min-width: 768px) {
    .service-card-number {
        display: block;
    }
}

.service-card-title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 1.875rem);
    font-weight: 600;
    margin-bottom: 0.25rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-card-title {
    color: var(--color-accent-yellow);
    transform: translateX(0.5rem);
}

.service-card-description {
    color: var(--color-muted-foreground);
}

.service-card-arrow {
    opacity: 0;
    color: var(--color-accent-yellow);
    transition: opacity 0.3s ease;
}

.service-card:hover .service-card-arrow {
    opacity: 1;
}

/* Process Step */
.process-step {
    padding: 2rem;
    background-color: var(--color-background);
}

.process-step-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: hsla(45, 95%, 55%, 0.4);
    margin-bottom: 1rem;
}

.process-step-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.process-step-description {
    color: var(--color-muted-foreground);
}

/* Stats */
.stat-item {
    text-align: center;
}

@media (min-width: 768px) {
    .stat-item {
        text-align: left;
    }
}

.stat-value {
    font-family: var(--font-display);
    font-size: clamp(3rem, 5vw, 3.75rem);
    font-weight: 700;
    color: var(--color-accent-yellow);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--color-muted-foreground);
}

/* Values Card */
.value-card {
    padding: 2rem;
    background-color: var(--color-background);
}

.value-card-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.value-card-description {
    color: var(--color-muted-foreground);
}

/* Credits Sidebar */
.credits-box {
    padding: 1.5rem;
    background-color: var(--color-secondary);
}

.credits-title {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-accent-red);
    margin-bottom: 1.5rem;
}

.credits-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.credits-item dt {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-muted-foreground);
    margin-bottom: 0.25rem;
}

.credits-item dd {
    font-size: 0.875rem;
    font-weight: 500;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-info-item h3 {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-accent-red);
    margin-bottom: 1rem;
}

.contact-info-item a,
.contact-info-item p {
    font-size: 1.125rem;
    font-weight: 500;
}

.contact-info-item a:hover {
    color: var(--color-muted-foreground);
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 1rem 0;
    font-size: 1rem;
    color: var(--color-foreground);
    background-color: transparent;
    border: none;
    border-bottom: 2px solid var(--color-border);
    transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--color-accent-red);
}

.form-textarea {
    min-height: 8rem;
    resize: vertical;
    border: 2px solid var(--color-border);
    padding: 1rem;
}

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
    background-size: 1.5rem;
}

/* ============================================
   HEADER
============================================ */

.site-header {
    width: 100%;
    background-color: var(--color-background);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 5rem;
}

@media (min-width: 768px) {
    .header-inner {
        height: 6rem;
    }
}

.site-logo img {
    height: 4rem;
    width: auto;
    object-fit: contain;
}

@media (min-width: 768px) {
    .site-logo img {
        height: 4.5rem;
    }
}

.main-nav {
    display: none;
    align-items: center;
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .main-nav {
        display: flex;
    }
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--color-muted-foreground);
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.current {
    color: var(--color-foreground);
}

.nav-link.current span {
    color: var(--color-accent-yellow);
}

.header-cta {
    display: none;
}

@media (min-width: 768px) {
    .header-cta {
        display: block;
    }
}

.header-cta .btn-primary {
    padding: 0.75rem 1.5rem;
    font-size: 0.75rem;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: block;
    padding: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
}

@media (min-width: 768px) {
    .mobile-menu-toggle {
        display: none;
    }
}

.mobile-menu-toggle svg {
    width: 1.5rem;
    height: 1.5rem;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 50;
    background-color: var(--color-background);
}

.mobile-menu.open {
    display: block;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 5rem;
    padding: 0 var(--container-padding);
}

.mobile-menu-nav {
    padding: 2.5rem var(--container-padding);
}

.mobile-menu-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mobile-menu-nav a {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    transition: color 0.3s ease;
}

.mobile-menu-nav a:hover {
    color: var(--color-muted-foreground);
}

/* ============================================
   FOOTER
============================================ */

.site-footer {
    position: relative;
}

.footer-main {
    background-color: var(--color-background);
    position: relative;
}

.footer-main .divider-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

.footer-brand {
    max-width: 28rem;
}

.footer-brand img {
    height: 4rem;
    width: auto;
    margin-bottom: 1.5rem;
}

.footer-brand p {
    color: var(--color-muted-foreground);
    line-height: 1.7;
}

.footer-nav h4,
.footer-services h4 {
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.footer-nav ul,
.footer-services ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-nav a,
.footer-services a {
    color: var(--color-muted-foreground);
    transition: color 0.3s ease;
}

.footer-nav a:hover,
.footer-services a:hover {
    color: var(--color-accent-yellow);
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 2rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    color: var(--color-muted-foreground);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    color: var(--color-accent-yellow);
    background-color: var(--color-muted);
}

.footer-social svg {
    width: 1.25rem;
    height: 1.25rem;
}

/* Footer Legal Bar */
.footer-legal {
    background-color: var(--color-foreground);
    color: var(--color-background);
    padding: 1.5rem 0;
}

.footer-legal-inner {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 768px) {
    .footer-legal-inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.footer-copyright {
    font-size: 0.875rem;
    opacity: 0.5;
}

.footer-legal-links {
    display: flex;
    gap: 1.5rem;
    font-size: 0.875rem;
}

.footer-legal-links a,
.footer-legal-links button {
    opacity: 0.5;
    transition: all 0.3s ease;
    background: none;
    border: none;
    cursor: pointer;
    font-size: inherit;
    color: inherit;
}

.footer-legal-links a:hover,
.footer-legal-links button:hover {
    opacity: 1;
    color: var(--color-accent-yellow);
}

/* ============================================
   HERO SECTION
============================================ */

.hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: flex-end;
}

.hero-background {
    position: absolute;
    inset: 0;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-background::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    padding-bottom: 4rem;
    color: white;
}

@media (min-width: 768px) {
    .hero-content {
        padding-bottom: 6rem;
    }
}

@media (min-width: 1024px) {
    .hero-content {
        padding-bottom: 8rem;
    }
}

.hero-content h1 {
    max-width: 56rem;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    max-width: 42rem;
    margin-bottom: 2.5rem;
    opacity: 0.8;
    line-height: 1.6;
}

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

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

/* ============================================
   PAGE HERO
============================================ */

.page-hero {
    padding-top: var(--section-padding);
    padding-bottom: var(--section-padding);
    background-color: var(--color-background);
}

.page-hero .max-w-3xl {
    max-width: 48rem;
}

.page-hero .max-w-4xl {
    max-width: 56rem;
}

/* ============================================
   SERVICE DETAIL - React Parity v3.3.0
============================================ */

/* Hero Grid - React parity: 2-column layout */
.service-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .service-hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
    }
}

.service-hero-text {
    order: 1;
}

.service-hero-media {
    order: 2;
    position: relative;
    aspect-ratio: 16/9;
    background-color: var(--color-muted);
    overflow: hidden;
}

.service-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-hero-accent {
    position: absolute;
    top: 0;
    right: 0;
    width: 4rem;
    height: 0.25rem;
    background: linear-gradient(to right, var(--color-accent-yellow), var(--color-accent-red));
}

/* Content Grid - React parity: lg:grid-cols-3 with col-span-2 */
.service-content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .service-content-grid {
        grid-template-columns: 2fr 1fr;
        gap: 5rem;
    }
}

.service-main {
    order: 2;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

@media (min-width: 1024px) {
    .service-main {
        order: 1;
    }
}

.service-sidebar {
    order: 1;
}

@media (min-width: 1024px) {
    .service-sidebar {
        order: 2;
    }
}

.service-sidebar-sticky {
    position: sticky;
    top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Service sections */
.service-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.section-header svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--color-accent-yellow);
}

.section-header h2 {
    margin: 0;
}

/* Check List */
.check-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--color-muted-foreground);
}

.check-list li svg {
    flex-shrink: 0;
    width: 1rem;
    height: 1rem;
    color: var(--color-accent-yellow);
    margin-top: 0.25rem;
}

.check-list-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .check-list-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.75;
}

.text-sm {
    font-size: 0.875rem;
}

.text-muted {
    color: var(--color-muted-foreground);
}

/* How It Works - React parity */
.how-it-works-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.how-step {
    display: flex;
    gap: 1.5rem;
}

.how-step-number {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 600;
    background-color: var(--color-accent-yellow);
    color: var(--color-foreground);
}

.how-step-content {
    flex: 1;
}

.how-step-title {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.how-step-description {
    color: var(--color-muted-foreground);
    line-height: 1.6;
}

/* Sidebar Cards - React parity */
.sidebar-card {
    padding: 1.5rem;
    background-color: var(--color-secondary);
    border-radius: 0.125rem;
}

.sidebar-card-accent {
    position: relative;
    border-left: 3px solid var(--color-accent-yellow);
}

.sidebar-card-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.sidebar-card-header svg {
    width: 1rem;
    height: 1rem;
    color: var(--color-accent-yellow);
}

/* Deliverables List */
.deliverables-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.deliverables-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.deliverables-list li svg {
    flex-shrink: 0;
    width: 0.75rem;
    height: 0.75rem;
    color: var(--color-accent-yellow);
    margin-top: 0.375rem;
}

/* CTA Sidebar Card - React parity */
.sidebar-cta {
    padding: 1.5rem;
    background-color: var(--color-foreground);
    color: var(--color-background);
    border-radius: 0.125rem;
    position: relative;
    overflow: hidden;
}

.sidebar-cta-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0.25rem;
    background: linear-gradient(to right, var(--color-accent-yellow), var(--color-accent-red));
}

.sidebar-cta-title {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.sidebar-cta-text {
    font-size: 0.875rem;
    opacity: 0.7;
    margin-bottom: 1.5rem;
}

/* Legacy service-detail-grid for backward compat */
.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .service-detail-grid {
        grid-template-columns: 2fr 1fr;
        gap: 5rem;
    }
}

/* Packages */
.packages-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .packages-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.package-card {
    padding: 2rem;
    background-color: var(--color-secondary);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.package-card.highlighted {
    border-color: var(--color-accent-yellow);
    position: relative;
}

.package-card.highlighted::before {
    content: 'Most Popular';
    position: absolute;
    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background-color: var(--color-accent-yellow);
    color: var(--color-foreground);
}

.package-name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.package-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-accent-red);
    margin-bottom: 0.75rem;
}

.package-description {
    font-size: 0.875rem;
    color: var(--color-muted-foreground);
    margin-bottom: 1.5rem;
}

.package-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.package-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.375rem 0;
    font-size: 0.875rem;
}

.package-features li svg {
    flex-shrink: 0;
    width: 1rem;
    height: 1rem;
    color: var(--color-accent-yellow);
    margin-top: 0.125rem;
}

/* FAQ */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 1rem;
}

.faq-question {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.faq-answer {
    color: var(--color-muted-foreground);
}

/* Selected Works */
.selected-works-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .selected-works-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.selected-work-item {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    cursor: pointer;
}

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

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

.selected-work-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.selected-work-overlay svg {
    width: 3rem;
    height: 3rem;
    color: white;
}

/* ============================================
   ASPECT RATIOS
============================================ */

.aspect-video {
    position: relative;
    padding-bottom: 56.25%;
}

.aspect-video > * {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.aspect-\[21\/9\] {
    aspect-ratio: 21/9;
}

.aspect-\[4\/3\] {
    aspect-ratio: 4/3;
}

/* ============================================
   UTILITIES
============================================ */

.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }

.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }

.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.mt-16 { margin-top: 4rem; }
.mt-20 { margin-top: 5rem; }

.pt-8 { padding-top: 2rem; }
.pt-12 { padding-top: 3rem; }
.pb-12 { padding-bottom: 3rem; }
.pb-20 { padding-bottom: 5rem; }

.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }

.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }

.border-t { border-top: 1px solid var(--color-border); }
.border-b { border-bottom: 1px solid var(--color-border); }

.text-center { text-align: center; }

.hidden { display: none; }
@media (min-width: 768px) {
    .md\:block { display: block; }
    .md\:flex { display: flex; }
    .md\:hidden { display: none; }
}

.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }
.space-y-10 > * + * { margin-top: 2.5rem; }

.sticky { position: sticky; }
.top-8 { top: 2rem; }

.w-full { width: 100%; }

.inline-flex { display: inline-flex; }
.inline-block { display: inline-block; }

.object-cover { object-fit: cover; }

.overflow-hidden { overflow: hidden; }

/* ============================================
   ANIMATIONS
============================================ */

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

.animate-fade-up {
    animation: fadeUp 0.6s ease-out forwards;
}

/* ============================================
   COOKIE CONSENT
============================================ */

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background-color: var(--color-foreground);
    color: var(--color-background);
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-consent-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 768px) {
    .cookie-consent-inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.cookie-consent p {
    font-size: 0.875rem;
    opacity: 0.8;
}

.cookie-consent-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.cookie-consent .btn-accept {
    padding: 0.75rem 1.5rem;
    font-size: 0.75rem;
    background-color: var(--color-accent-yellow);
    color: var(--color-foreground);
}

.cookie-consent .btn-settings {
    padding: 0.75rem 1.5rem;
    font-size: 0.75rem;
    background-color: transparent;
    color: var(--color-background);
    border: 1px solid rgba(255,255,255,0.3);
}

/* ============================================
   WORDPRESS SPECIFIC
============================================ */

/* Admin bar adjustment */
body.admin-bar .site-header {
    top: 32px;
}

@media screen and (max-width: 782px) {
    body.admin-bar .site-header {
        top: 46px;
    }
}

/* Alignment */
.alignwide {
    margin-left: calc(-1 * var(--container-padding));
    margin-right: calc(-1 * var(--container-padding));
    max-width: none;
}

.alignfull {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    max-width: 100vw;
    width: 100vw;
}

/* Screen reader text */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
}

/* Post navigation */
.post-navigation {
    margin-top: 5rem;
    padding-top: 3rem;
    border-top: 1px solid var(--color-border);
}

.post-navigation-inner {
    display: flex;
    justify-content: space-between;
}

.post-navigation a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-muted-foreground);
    transition: color 0.3s ease;
}

.post-navigation a:hover {
    color: var(--color-foreground);
}

.post-navigation svg {
    width: 1rem;
    height: 1rem;
    transition: transform 0.3s ease;
}

.post-navigation a:hover svg.arrow-left {
    transform: translateX(-0.25rem);
}

.post-navigation a:hover svg.arrow-right {
    transform: translateX(0.25rem);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.pagination a,
.pagination span {
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    border: 1px solid var(--color-border);
    transition: all 0.3s ease;
}

.pagination a:hover {
    border-color: var(--color-accent-yellow);
    color: var(--color-accent-yellow);
}

.pagination .current {
    background-color: var(--color-foreground);
    color: var(--color-background);
    border-color: var(--color-foreground);
}

/* ============================================
   WORK FILTER MENU (Lovable Parity)
============================================ */

.work-filter-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--color-border);
}

.work-filter-item {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-muted-foreground);
    background: transparent;
    border: 1px solid transparent;
    border-radius: 0;
    transition: all 0.3s ease;
    cursor: pointer;
}

.work-filter-item:hover {
    color: var(--color-foreground);
    background-color: var(--color-secondary);
}

.work-filter-item.active {
    color: var(--color-foreground);
    background-color: var(--color-accent-yellow);
    border-color: var(--color-accent-yellow);
}

/* ============================================
   PACKAGE LUMINATE HOVER (Lovable Parity)
============================================ */

.package-card {
    transition: all 0.4s ease;
    position: relative;
}

.package-card::after {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    background: linear-gradient(135deg, hsla(45, 95%, 55%, 0.1) 0%, hsla(45, 95%, 55%, 0) 50%);
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.package-card:hover,
.package-card.luminate:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -15px hsla(0, 0%, 0%, 0.15);
}

.package-card:hover::after {
    opacity: 1;
}

.package-card:hover .btn-outline {
    background-color: var(--color-accent-yellow);
    border-color: var(--color-accent-yellow);
    color: var(--color-foreground);
}

/* ============================================
   COOKIE CONSENT MODAL (Lovable Parity)
============================================ */

.cookie-consent-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.cookie-consent-modal.show {
    display: flex;
}

.cookie-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.cookie-modal-content {
    position: relative;
    width: 90%;
    max-width: 480px;
    max-height: 90vh;
    overflow-y: auto;
    background: var(--color-background);
    padding: 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    animation: cookieSlideUp 0.4s ease;
}

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

.cookie-modal-header h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.cookie-modal-body {
    margin-bottom: 1.5rem;
}

.cookie-modal-body > p {
    color: var(--color-muted-foreground);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.cookie-categories {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cookie-category {
    padding: 1rem;
    background: var(--color-secondary);
}

.cookie-category-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.cookie-category-header strong {
    font-size: 0.875rem;
}

.cookie-required {
    font-size: 0.75rem;
    padding: 0.125rem 0.5rem;
    background: var(--color-muted);
    color: var(--color-muted-foreground);
    margin-left: 0.5rem;
}

.cookie-category-desc {
    font-size: 0.75rem;
    color: var(--color-muted-foreground);
    margin: 0;
    padding-left: 3rem;
}

/* Toggle Switch */
.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 2.5rem;
    height: 1.25rem;
    flex-shrink: 0;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle-slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background-color: var(--color-muted);
    transition: 0.3s;
    border-radius: 1rem;
}

.cookie-toggle-slider::before {
    position: absolute;
    content: "";
    height: 1rem;
    width: 1rem;
    left: 2px;
    bottom: 2px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.cookie-toggle input:checked + .cookie-toggle-slider {
    background-color: var(--color-accent-yellow);
}

.cookie-toggle input:checked + .cookie-toggle-slider::before {
    transform: translateX(1.25rem);
}

.cookie-toggle.disabled .cookie-toggle-slider {
    background-color: var(--color-accent-yellow);
    opacity: 0.7;
    cursor: not-allowed;
}

.cookie-modal-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.cookie-btn-secondary,
.cookie-btn-primary,
.cookie-btn-accent {
    flex: 1;
    min-width: 120px;
    padding: 0.75rem 1rem;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn-secondary {
    background: transparent;
    border: 1px solid var(--color-border);
    color: var(--color-muted-foreground);
}

.cookie-btn-secondary:hover {
    border-color: var(--color-foreground);
    color: var(--color-foreground);
}

.cookie-btn-primary {
    background: var(--color-foreground);
    color: var(--color-background);
}

.cookie-btn-primary:hover {
    background: var(--color-accent-yellow);
    color: var(--color-foreground);
}

.cookie-btn-accent {
    background: var(--color-accent-yellow);
    color: var(--color-foreground);
}

.cookie-btn-accent:hover {
    background: var(--color-accent-yellow-hover);
    box-shadow: 0 0 20px hsla(45, 95%, 55%, 0.3);
}

.cookie-footer-link {
    margin-top: 1rem;
    text-align: center;
    font-size: 0.75rem;
}

.cookie-footer-link a {
    color: var(--color-muted-foreground);
    text-decoration: underline;
}

.cookie-footer-link a:hover {
    color: var(--color-foreground);
}

/* Bottom Bar Alternative */
.cookie-consent-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background-color: var(--color-foreground);
    color: var(--color-background);
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-consent-bar.show {
    transform: translateY(0);
}

.cookie-bar-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 768px) {
    .cookie-bar-inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.cookie-bar-inner p {
    font-size: 0.875rem;
    opacity: 0.8;
}

.cookie-bar-inner a {
    text-decoration: underline;
}

.cookie-bar-buttons {
    display: flex;
    gap: 0.75rem;
}

/* ============================================
   LOGO IMPROVEMENTS (HD Rendering)
============================================ */

.site-logo {
    display: flex;
    align-items: center;
}

.site-logo img,
.site-logo .custom-logo,
.custom-logo-link img {
    height: 4rem;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

@media (min-width: 768px) {
    .site-logo img,
    .site-logo .custom-logo,
    .custom-logo-link img {
        height: 4.5rem;
    }
}

@media (min-width: 1024px) {
    .site-logo img,
    .site-logo .custom-logo,
    .custom-logo-link img {
        height: 5rem;
    }
}

/* Footer logo */
.footer-brand .site-logo img,
.footer-brand .custom-logo-link img {
    height: 4rem;
    margin-bottom: 1.5rem;
}

/* Retina support */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .site-logo img,
    .custom-logo-link img {
        image-rendering: -webkit-optimize-contrast;
    }
}

/* ============================================
   VIDEO EMBED CONTAINER
============================================ */

.video-embed-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-embed-container iframe,
.video-embed-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: background 0.3s ease;
}

.video-play-overlay:hover {
    background: rgba(0, 0, 0, 0.5);
}

.video-play-button {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.video-play-overlay:hover .video-play-button {
    transform: scale(1.1);
    background: var(--color-accent-yellow);
}

.video-play-button svg {
    width: 2rem;
    height: 2rem;
    margin-left: 0.25rem;
}

/* ============================================
   FOOTER REFLOW (Conditional Columns)
============================================ */

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

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

@media (min-width: 768px) {
    .footer-grid-cols-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

@media (min-width: 768px) {
    .footer-grid-cols-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid-cols-3 {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

/* ============================================
   CONTACT PAGE - React Parity v3.4.0
============================================ */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 2fr;
        gap: 5rem;
    }
}

.contact-sidebar {
    order: 1;
}

.contact-form-area {
    order: 2;
}

@media (min-width: 1024px) {
    .contact-sidebar {
        order: 1;
    }
    .contact-form-area {
        order: 2;
    }
}

.contact-info-sticky {
    position: sticky;
    top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-info-item h3 {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-accent-red);
    margin-bottom: 1rem;
}

.contact-link {
    font-size: 1.125rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--color-muted-foreground);
}

.contact-text {
    font-size: 1.125rem;
    font-weight: 500;
}

.contact-inline-link {
    color: var(--color-foreground);
    transition: color 0.3s ease;
}

.contact-inline-link:hover {
    color: var(--color-muted-foreground);
}

.contact-form-container {
    max-width: 42rem;
}

.contact-form-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

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

.form-row {
    display: grid;
    gap: 2rem;
}

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

@media (min-width: 768px) {
    .form-row-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.contact-form .form-group {
    margin-bottom: 0;
}

.contact-form .form-textarea {
    min-height: 10rem;
}

/* Contact Success State */
.contact-success {
    padding: 4rem 0;
    text-align: center;
}

.contact-success-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background-color: var(--color-accent-yellow);
    margin-bottom: 1.5rem;
}

.contact-success-icon svg {
    width: 2rem;
    height: 2rem;
    color: var(--color-foreground);
}

.contact-success-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.contact-success-text {
    color: var(--color-muted-foreground);
    max-width: 28rem;
    margin: 0 auto;
}

/* ============================================
   SELECTED WORKS - Constrained Player
============================================ */

#selected-works-player {
    max-width: 100%;
    max-height: 600px;
    margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
    #selected-works-player {
        max-height: 500px;
    }
}

.selected-work-thumb {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    border: none;
    background: none;
    padding: 0;
    cursor: pointer;
    outline: 2px solid transparent;
    transition: all 0.3s ease;
}

.selected-work-thumb:hover {
    outline-color: var(--color-accent-yellow);
}

.selected-work-thumb.active {
    outline-color: var(--color-accent-yellow);
    outline-width: 3px;
}

.selected-work-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.selected-work-thumb-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.selected-work-thumb:hover .selected-work-thumb-overlay {
    opacity: 1;
}

.selected-work-thumb-overlay svg {
    width: 2rem;
    height: 2rem;
    color: white;
}
