/* Reset & Global Variables */
:root {
    --color-bg: #030303;
    --color-text: #ffffff;
    --color-gold: #c6a87c;
    --color-gold-glow: rgba(198, 168, 124, 0.4);
    --color-dark-glass: rgba(15, 15, 15, 0.7);
    --font-serif: 'Noto Serif KR', serif;
    --font-sans: 'Inter', sans-serif;
    --font-cinzel: 'Cinzel', serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000; /* Deepest black for global stars */
    color: var(--color-text);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Cinematic Noise / Film Grain */
.noise-overlay {
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background-image: url('https://grain-y.com/wp-content/uploads/2021/03/Grainy-Texture-01.png');
    opacity: 0.1;
    z-index: 100;
    pointer-events: none;
    animation: grain 0.8s steps(1) infinite;
}

@keyframes grain {
    0%, 100% { transform: translate(0, 0); }
    10% { transform: translate(-1%, -1%); }
    20% { transform: translate(-2%, 1%); }
    30% { transform: translate(1%, -2%); }
    40% { transform: translate(-1%, 3%); }
    50% { transform: translate(-2%, 1%); }
    60% { transform: translate(3%, 1%); }
    70% { transform: translate(2%, 1%); }
    80% { transform: translate(1%, -3%); }
    90% { transform: translate(-1%, 1%); }
}

/* Light Flicker Overlay */
.flicker-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(255, 255, 255, 0.02);
    z-index: 99;
    pointer-events: none;
    animation: flicker 6s linear infinite;
    mix-blend-mode: soft-light;
}

@keyframes flicker {
    0%, 19.999%, 22%, 62.999%, 64%, 64.999%, 70%, 100% { opacity: 0; }
    20%, 21.999%, 63%, 63.999%, 65%, 69.999% { opacity: 1; }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(3,3,3,0.8), transparent);
    backdrop-filter: blur(4px);
    transition: background 0.4s, padding 0.4s, border-bottom 0.4s;
}

.header.scrolled {
    background: rgba(3, 3, 3, 0.95);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 1rem 5%;
}

.logo {
    font-family: var(--font-cinzel);
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: 0.5em; /* Ultra-wide luxury look */
    color: var(--color-gold);
    text-shadow: 0 0 15px rgba(198, 168, 124, 0.4);
    text-transform: uppercase;
}

.nav a {
    color: #ffffff;
    text-decoration: none;
    margin-left: 3rem;
    font-size: 0.85rem;
    font-family: var(--font-cinzel); /* Synced for sophistication */
    letter-spacing: 0.25em; /* Dramatically wider */
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    opacity: 0.8;
}

/* Hero Background - Cinematic Portrait Focal Integration (v8600) */
.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; 
    background: #000;
    overflow: hidden;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 70% center; /* Anchors the subject to the right */
    opacity: 0.85 !important; 
    pointer-events: none;
    filter: brightness(0.9) contrast(1.05) saturate(1.0);
}

.hero-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    opacity: 0.85;
    pointer-events: none;
    filter: brightness(0.9) contrast(1.05);
}

@keyframes cinematicDriftFocus {
    0% { transform: scale(1.0) translate(0, 0); }
    100% { transform: scale(1.1) translate(-2%, -1%); }
}

.cinematic-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Master Grade Gradient: Blends the PORTRAIT into the LEFT SIDE typography space */
    background: linear-gradient(to right, 
        rgba(0,0,0,1) 0%, 
        rgba(0,0,0,0.8) 25%, 
        rgba(0,0,0,0.3) 50%, 
        transparent 100%
    );
    z-index: 2;
}

@media (max-width: 768px) {
    .hero-bg-img {
        object-position: center center; /* Re-centers on mobile for impact */
    }
    .cinematic-overlay {
        background: linear-gradient(to bottom, 
            rgba(0,0,0,0.8) 0%, 
            rgba(0,0,0,0.4) 50%, 
            rgba(0,0,0,0.9) 100%
        );
    }
}

/* CONTACT Section - Master Layout (v8500) */
.contact-master-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    text-align: center;
}

/* BLOCK 1: Main Message */
.block-main {
    margin-bottom: 6rem; /* High breathing room */
}

.contact-message {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    color: #ffffff;
    letter-spacing: 0.1em;
    font-weight: 300;
    line-height: 1.4;
}

/* BLOCK 2: Result Imaging */
.block-imaging {
    margin-bottom: 7rem;
}

.imaging-statement {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 2.2;
    letter-spacing: 0.05em;
    font-style: italic;
    font-weight: 200;
}

/* BLOCK 3: CTA Area (Isolated) */
.block-cta {
    margin-bottom: 9rem; /* Maximum isolation */
}

.cta-isolation-wrap {
    padding: 2rem 0;
}

/* BLOCK 4: Trust & Scarcity */
.block-assurance {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3.5rem;
    margin-bottom: 8rem;
}

.assurance-group {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.assurance-separator {
    width: 30px;
    height: 1px;
    background: rgba(198, 168, 124, 0.3);
}

.assurance-item, .scarcity-item {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.1em;
    font-weight: 300;
}

.scarcity-item {
    color: var(--color-gold);
    opacity: 0.8;
}

/* BLOCK 5: Philosophy & Contact */
.block-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.philosophy-signature {
    margin-bottom: 5rem;
}

.philosophy-signature p {
    font-family: var(--font-serif);
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 2.2;
    letter-spacing: 0.15em;
    font-style: italic;
    font-weight: 300;
}

.contact-rows {
    display: flex;
    flex-direction: column;
    gap: 2.8rem;
    width: 100%;
}

.contact-row {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-link, .contact-phone {
    font-size: 1.5rem;
    color: #ffffff;
    letter-spacing: 0.1em;
    font-weight: 300;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding-bottom: 0.5rem;
    transition: all 0.4s ease;
}

.contact-link:hover {
    border-bottom-color: var(--color-gold);
    color: var(--color-gold);
}

.contact-address {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    max-width: 400px;
    letter-spacing: 0.05em;
    font-weight: 300;
}

@media (max-width: 768px) {
    .block-main { margin-bottom: 4rem; }
    .contact-message { font-size: 2rem; }
    .block-imaging { margin-bottom: 5rem; }
    .imaging-statement { font-size: 1.1rem; line-height: 2; }
    .block-cta { margin-bottom: 6rem; }
    .block-assurance { margin-bottom: 6rem; gap: 2.5rem; }
    .block-footer { margin-bottom: 4rem; }
    .contact-link, .contact-phone { font-size: 1.25rem; }
}

/* Auxiliary Service Card (v7600) */
.auxiliary-service-wrap {
    display: flex;
    justify-content: center;
    width: 100%;
}

.auxiliary-card {
    max-width: 600px;
    padding: 3rem 2.5rem;
    border: 1px dashed rgba(198, 168, 124, 0.2);
    background: rgba(198, 168, 124, 0.03);
    border-radius: 2px;
    text-align: center;
    transition: all 0.5s ease;
}

.auxiliary-card:hover {
    background: rgba(198, 168, 124, 0.06);
    border-color: rgba(198, 168, 124, 0.4);
    transform: translateY(-5px);
}

.aux-title {
    font-family: var(--font-cinzel);
    font-size: 1.4rem;
    color: var(--color-gold);
    letter-spacing: 0.3em;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.aux-sub {
    font-size: 0.75rem;
    opacity: 0.6;
    letter-spacing: 0.1em;
    vertical-align: middle;
    margin-left: 0.5rem;
}

.aux-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    font-weight: 300;
}

@media (max-width: 768px) {
    .contact-label {
        font-size: 1.8rem !important;
        letter-spacing: 0.4em !important;
    }
    .auxiliary-card {
        max-width: 90%;
    }
}

/* Base Sections */
.section {
    min-height: auto; /* Changed to auto to reduce large gaps between sections */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 5%; /* Adjusted padding for better rhythm */
    position: relative;
    overflow: hidden;
    background: transparent !important;
    margin-bottom: 2rem;
}

.content {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

/* Vision/About Section with Cinematic Background */
.vision-section {
    position: relative;
    background: radial-gradient(circle at 50% 50%, #0a0a0a 0%, #000 100%) !important;
    overflow: hidden;
}

.vision-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: url('https://www.transparenttextures.com/patterns/p6.png');
    opacity: 0.1;
    pointer-events: none;
    z-index: 1;
}

h1, h2, h3, .quote, .synopsis-highlight {
    font-family: var(--font-serif);
    font-weight: 300;
}

/* Hero Section with Video Background */
.hero-section {
    text-align: center;
    color: #fff;
    min-height: 100vh;
    padding: 0;
    margin-bottom: 0;
    position: relative; /* CRITICAL for z-index containment */
    overflow: hidden;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Higher than stars, lower than content */
    overflow: hidden;
}

.bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%; 
    filter: brightness(0.9) contrast(1.05);
    transform: scale(1.05); 
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(3,3,3,0.4) 100%), linear-gradient(to bottom, rgba(3,3,3,0.2) 0%, rgba(3,3,3,1) 98%);
    z-index: 2; /* Needs to sit above the video background */
}

.hero-content {
    position: relative;
    z-index: 10;
    margin-top: 5vh;
}

.hero-section .subtitle {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--color-gold);
    letter-spacing: 0.15em;
    margin-bottom: 2rem;
    font-weight: 400;
    font-style: italic;
    opacity: 0.9;
}

.hero-section .title {
    font-size: 5.5rem; /* Slightly refined for premium weight */
    margin-bottom: 2.5rem;
    letter-spacing: 0.3em;
    font-weight: 300;
    text-shadow: 0 10px 60px rgba(0,0,0,0.8);
    background: linear-gradient(75deg, #fff 0%, #c6a87c 50%, #fff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 15s linear infinite;
    word-spacing: 1.2rem;
}

@keyframes shine {
    to { background-position: 200% center; }
}

.quote {
    font-size: 1.45rem;
    line-height: 2.2;
    color: #ffffff;
    font-style: italic;
    opacity: 1;
    max-width: 700px;
    margin: 0 auto 3rem; /* Increased margin for CTA */
    text-shadow: 0 2px 15px rgba(0,0,0,0.5);
}

/* Hero Master CTA Button (v7400) */
.hero-cta-wrap {
    margin-top: 1rem;
}

.hero-master-btn {
    display: inline-block;
    padding: 1.2rem 3.5rem;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    text-decoration: none;
    font-family: var(--font-cinzel);
    font-size: 0.95rem;
    letter-spacing: 0.3em;
    font-weight: 500;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    background: transparent;
}

.hero-master-btn::before {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.8s ease;
}

.hero-master-btn:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 30px rgba(255,255,255,0.15);
    letter-spacing: 0.4em; /* Expansion effect */
    transform: translateY(-5px);
}

.hero-master-btn:hover::before {
    left: 100%;
}

.tagline {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: var(--color-gold);
    margin-top: -1rem;
    margin-bottom: 3rem;
    letter-spacing: 0.5em; /* Ultra-wide for modern premium feel */
    font-weight: 300;
    text-shadow: 0 0 10px rgba(198, 168, 124, 0.3);
    display: inline-block;
}

.tagline span {
    border-bottom: 1px solid rgba(198, 168, 124, 0.5);
    padding-bottom: 4px;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 5;
    pointer-events: none;
    opacity: 0.6;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.75rem;
    color: #777;
    letter-spacing: 0.2em;
    font-family: var(--font-sans);
    text-transform: uppercase;
    z-index: 10;
}

.scroll-indicator .line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--color-gold), transparent);
    margin-top: 1rem;
    animation: scrollLine 2s infinite ease-in-out;
}

@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; opacity: 0; }
    50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
    50.1% { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
    100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* Glass Panels - Enhanced v6000 */
.glass-panel {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.6) 0%, rgba(5, 5, 5, 0.8) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
    border-radius: 4px; /* Sophisticated minimal radius */
    padding: 7rem 5rem;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 1), inset 0 0 40px rgba(255,255,255,0.02);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.glass-panel::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at top left, rgba(198, 168, 124, 0.05), transparent 40%);
    pointer-events: none;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 3.5rem;
    text-align: center;
    color: var(--color-gold);
    letter-spacing: 0.1em;
}

.synopsis-highlight {
    font-size: 1.6rem;
    color: #ffffff;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.text-block p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 2.2;
    color: #bbbbbb;
    font-weight: 300;
}

/* Grid & Journey Section Cards */
.grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 15px 35px rgba(0,0,0,0.6);
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.5s;
}

.glass-card {
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.card-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s ease, filter 0.8s ease;
    filter: brightness(0.5) grayscale(0.2);
    z-index: 1;
}

.glass-card:hover .card-image-bg {
    transform: scale(1.08);
    filter: brightness(0.8) grayscale(0);
}

.glass-card:hover, .glass-card:focus {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(198, 168, 124, 0.15);
    border-color: var(--color-gold);
}

.card-content {
    position: relative;
    z-index: 2;
    padding: 2.5rem 2rem;
    background: linear-gradient(to top, rgba(5,5,5,0.95) 10%, rgba(5,5,5,0.5) 60%, transparent 100%);
    text-align: left;
}

.card-content h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.card-content p {
    font-size: 0.95rem;
    color: #ddd;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.read-more {
    font-size: 0.8rem;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s, transform 0.4s;
    display: inline-block;
}

.glass-card:hover .read-more {
    opacity: 1;
    transform: translateY(0);
}

/* Footer */
.footer {
    text-align: center;
    padding: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    color: #555;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3.5rem; /* Reduced margin */
}

.section-title {
    font-family: var(--font-cinzel), serif;
    font-size: 3.2rem; /* Larger, more commanding */
    color: #fff;
    font-weight: 500;
    margin-bottom: 2rem;
    letter-spacing: 0.45em; /* Cinematic standard */
    text-shadow: 0 5px 30px rgba(0,0,0,0.5);
}

.title-line {
    width: 60px;
    height: 1px;
    background-color: var(--color-gold);
    margin: 2rem auto 0;
}

/* CINEMATIC VISION */
.philosophy-card {
    padding: 8rem 5rem;
    border-radius: 4px;
    background: linear-gradient(160deg, rgba(15,15,20,0.8), rgba(5,5,10,0.95));
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 40px 100px rgba(0,0,0,0.9);
}

.philosophy-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.philosophy-intro h3 {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 2rem;
    font-weight: 300;
}

.philosophy-intro p {
    font-size: 1.15rem;
    color: #ccc;
    line-height: 1.8;
}

.philosophy-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    margin: 4rem 0;
}

/* Philosophy Content */
.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5rem; /* Increased for breathing room */
    text-align: left;
}

.philosophy-item h4 {
    font-family: var(--font-cinzel);
    font-size: 1.8rem;
    color: var(--color-gold);
    margin-bottom: 0.8rem;
    letter-spacing: 0.35em; /* Refined kerning */
    font-weight: 600;
    text-shadow: 0 4px 15px rgba(198, 168, 124, 0.3);
}

.philosophy-item .sub-label {
    display: block;
    font-size: 0.95rem; /* Slightly more elegant scale */
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2.2rem;
    letter-spacing: 0.6em; /* Wide editorial look */
    font-family: var(--font-cinzel);
    font-weight: 500;
}

.philosophy-item p {
    font-size: 1.15rem; /* Standardized with service features */
    line-height: 2.2;   
    color: #ffffff; 
    font-weight: 400;
    letter-spacing: 0.05em;
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 6rem;
    padding: 0 1rem;
}

.pricing-card {
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 4rem 2rem 3rem;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    backdrop-filter: blur(10px);
}

.pricing-card:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.pricing-card.recommended {
    border: 2px solid var(--gold);
    transform: scale(1.05);
    z-index: 2;
    background: rgba(20, 20, 20, 0.9);
}

.pricing-card.recommended:hover {
    transform: scale(1.05) translateY(-5px);
}

.recommended-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--gold);
    color: #000;
    padding: 0.6rem 2rem;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.price-title {
    font-family: var(--font-cinzel);
    font-size: 1.8rem;
    color: #fff; /* Switched to bright white for dominance */
    margin-bottom: 1.5rem;
    letter-spacing: 0.4em; /* Match global kerning */
    font-weight: 600;
}

.price-amount {
    font-family: var(--font-cinzel);
    font-size: 0.85rem; /* Sophisticated sub-label size */
    color: var(--color-gold);
    margin-bottom: 3.5rem;
    font-weight: 500;
    letter-spacing: 0.5em;
    opacity: 0.8;
}

.price-features {
    list-style: none;
    padding: 0;
    margin-bottom: 4rem;
    text-align: center;
}

.price-features li {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.05em;
}

.price-btn {
    display: inline-block;
    padding: 1.1rem 2rem;
    border: 1px solid rgba(198, 168, 124, 0.3);
    color: #fff;
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 2px;
    font-weight: 500;
    background: transparent;
}

.price-btn:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255,255,255,0.1);
}

@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
        padding: 0 2rem;
    }
    .pricing-card.recommended {
        transform: scale(1);
    }
    .pricing-card.recommended:hover {
        transform: translateY(-5px);
    }
}

/* Work Process Section */
.process-section {
    padding: 8rem 0;
    position: relative;
    background: transparent;
}

.process-list {
    max-width: 900px;
    margin: 4rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 3.5rem; /* Slightly reduced */
}

.process-item {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.process-number {
    font-family: var(--font-cinzel);
    font-size: 3rem;
    color: var(--color-gold);
    line-height: 1;
    font-weight: 400;
    opacity: 0.4;
    letter-spacing: 0.1em;
    position: relative;
    top: -5px;
}

.process-content h3 {
    font-family: var(--font-cinzel);
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 1.25rem;
    letter-spacing: 0.2em; /* Mastered kerning */
    font-weight: 600;
}

.process-content p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    font-weight: 300;
}

@media (max-width: 768px) {
    .process-item {
        flex-direction: column;
        gap: 1.5rem;
    }
    .process-number {
        font-size: 2rem;
    }
}

/* REFERENCES Grid Styles */
.works-section {
    padding: 8rem 0;
    position: relative;
    background: transparent;
}

/* REFERENCES Grid Styles */
.works-section {
    padding: 8rem 0;
    position: relative;
    background: transparent;
}

.works-references-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 5rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.ref-card {
    position: relative;
    border-radius: 12px; /* Smoother, more modern radius */
    overflow: hidden;
    aspect-ratio: 4 / 5.2;
    background: rgba(10, 10, 10, 0.4); /* Glassmorphism base */
    border: 1px solid rgba(198, 168, 124, 0.12); /* Subtle gold border */
    transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.ref-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(198, 168, 124, 0.4);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.8), 0 0 20px rgba(198, 168, 124, 0.1);
    background: rgba(15, 15, 15, 0.6);
}

.ref-image-container {
    position: relative;
    width: 100%;
    height: 100%;
}

/* REFERENCES Card Split Effect */
.split-effect {
    display: flex;
    width: 100%;
    height: 100%;
    position: relative;
}

.split-left, .split-right {
    width: 50%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.split-left img, .split-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
    opacity: 0.85;
}

.ref-card:hover .split-left img, 
.ref-card:hover .split-right img {
    transform: scale(1.1);
    opacity: 1;
}

.ref-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85; 
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.ref-card:hover .ref-image {
    opacity: 1;
    transform: scale(1.08);
}

.ref-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 65%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    z-index: 1;
}

.aesthetic-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-90deg);
    font-size: 4.5rem; /* Larger, more architectural */
    color: rgba(198, 168, 124, 0.06); /* Mastered subtlety */
    font-family: var(--font-cinzel);
    letter-spacing: 0.8em; /* Massive kerning for watermark feel */
    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
}

.ref-info {
    position: absolute;
    bottom: 2.5rem;
    left: 2.5rem;
    z-index: 2;
    pointer-events: none;
    text-align: left;
}

.ref-title {
    font-family: var(--font-cinzel);
    font-size: 1.85rem;
    color: #fff;
    margin-bottom: 0.5rem;
    letter-spacing: 0.2em;
    font-weight: 500;
}

.ref-desc {
    font-family: var(--font-serif);
    font-size: 0.9rem;
    color: var(--color-gold);
    letter-spacing: 0.1em;
    font-weight: 300;
}

/* Archival / Empty State for Reference Cards (v7200) */
.ref-card.archival-empty {
    background: rgba(5, 5, 5, 0.8);
    border: 1px dashed rgba(198, 168, 124, 0.1);
}

.ref-card.archival-empty .ref-title {
    filter: blur(1px);
    opacity: 0.35;
    letter-spacing: 0.8em; /* Ethereal, engraved feel */
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.ref-card.archival-empty .ref-desc {
    filter: blur(0.5px);
    opacity: 0.2;
    letter-spacing: 0.3em;
}

.ref-card.archival-empty:hover .ref-title,
.ref-card.archival-empty:hover .ref-desc {
    filter: blur(0px);
    opacity: 0.6;
}

.ref-card.archival-empty .aesthetic-bg-text {
    opacity: 0.02; /* Extremely subtle architectural watermark */
}

/* /* --- Sophisticated Archive & Lab Layout (v5200) --- */
.centered-archive {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 420px; /* Base focus */
    margin: 0 auto;
    padding-bottom: 6rem;
    padding-left: 20px; /* Safety padding */
    padding-right: 20px;
}

.archive-header-wrap {
    text-align: center;
    margin-bottom: 4rem;
    padding-top: 1rem;
}

.archive-main-title {
    font-family: var(--font-cinzel);
    font-size: 2.2rem;
    color: #fff;
    letter-spacing: 0.35em;
    margin-bottom: 0.8rem;
    font-weight: 400;
}

.archive-sub-title {
    font-family: var(--font-serif);
    font-size: 0.8rem;
    color: var(--color-gold);
    letter-spacing: 0.6em;
    opacity: 0.5;
}

.archive-vertical-stack {
    display: flex;
    flex-direction: column;
    gap: 4.5rem; /* Balanced spacing */
    width: 100%;
}

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

.archive-section-title {
    font-family: var(--font-cinzel);
    font-size: 1.4rem; /* More sophisticated scale */
    color: var(--color-gold);
    letter-spacing: 0.4em;
    margin-bottom: 2rem;
    font-weight: 500;
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.archive-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 25%;
    width: 50%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    opacity: 0.3;
}

/* 1. Writing List */
.writing-list-wrap {
    font-family: var(--font-serif);
    font-size: 1rem;
    color: rgba(255,255,255,0.85);
    letter-spacing: 0.05em;
    line-height: 1.8;
}

.writing-list-wrap .dot {
    margin: 0 1rem;
    color: var(--color-gold);
    opacity: 0.5;
}

/* 2. Cinematic Frame Image */
.archive-cinematic-wrap {
    width: 100%;
    margin: 1.5rem 0;
}

.cinematic-frame-inner {
    position: relative;
    width: 100%;
    height: 52vh;
    min-height: 400px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
}

.archive-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8) contrast(1.1);
}

.frame-label {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    font-family: var(--font-cinzel);
    font-size: 0.6rem;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.3em;
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

/* 3. Poetic Text (Song/Movie) */
.poetic-text {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    line-height: 2.3;
    color: rgba(255,255,255,0.7);
    font-style: italic; /* Added for poetic feel */
    max-width: 90%;
    margin: 0 auto;
}

/* 4. Filmography Timeline */
.filmography-timeline {
    width: 100%;
    text-align: left;
    padding-left: 1rem;
}

.timeline-row {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.8rem;
    border-left: 1px solid rgba(198, 168, 124, 0.15);
    padding-left: 1.5rem;
    position: relative;
}

.timeline-row::before {
    content: '';
    position: absolute;
    left: -3px;
    top: 0.5rem;
    width: 5px;
    height: 5px;
    background: var(--color-gold);
    border-radius: 50%;
    opacity: 0.6;
}

.timeline-index {
    font-family: var(--font-cinzel);
    font-size: 0.75rem;
    color: var(--color-gold);
    margin-right: 1.5rem;
    opacity: 0.6;
    margin-top: 0.2rem;
}

.timeline-text {
    font-family: var(--font-serif);
    font-size: 0.95rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
}

/* YouTube Lab Refinement - Seamless Mosaic (v7800) */
.enlarged-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    align-items: start;
    gap: 0.8rem; /* Seamless/Attached feel */
    width: 100%;
    max-width: 1000px; /* Increased for high-impact desktop scale */
    margin: 4rem auto 0;
    padding: 0 1rem;
}

.youtube-item {
    position: relative;
    background: #000;
    border-radius: 4px; /* Sharper edges for mosaic feel */
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%;
    aspect-ratio: 9 / 16;
    transition: transform 0.4s ease;
}

.youtube-item:hover {
    transform: scale(1.02);
    z-index: 10;
}

.fade-up-modal {
    opacity: 0;
    transform: translateY(30px);
    animation: modalFadeIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes modalFadeIn {
    to { opacity: 1; transform: translateY(0); }
}

.archive-vertical-stack > div:nth-child(1) { animation-delay: 0.1s; }
.archive-vertical-stack > div:nth-child(2) { animation-delay: 0.2s; }
.archive-vertical-stack > div:nth-child(3) { animation-delay: 0.3s; }
.archive-vertical-stack > div:nth-child(4) { animation-delay: 0.4s; }
.archive-vertical-stack > div:nth-child(5) { animation-delay: 0.5s; }

/* Works CTA Styles */
.works-cta {
    text-align: center;
    margin-top: 6rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-text {
    font-family: var(--font-noto);
    font-size: 1.1rem;
    color: var(--gold);
    margin-bottom: 2rem;
    letter-spacing: 0.05em;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    padding: 1rem 3rem;
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: var(--gold);
    text-decoration: none;
    font-family: var(--font-cinzel);
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    transition: all 0.4s ease;
    background: rgba(212, 175, 55, 0.05);
}

.cta-button:hover {
    background: var(--gold);
    color: #000;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

@media (max-width: 992px) {
    .works-references-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .works-references-grid {
        grid-template-columns: 1fr;
    }
    .ref-title {
        font-size: 1.5rem;
    }
}

/* Selected Works (Cards) */
.works-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 2.5rem;
}

.work-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 3/4;
    background-color: #111;
    border: 1px solid rgba(255,255,255,0.05);
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.5s ease;
    cursor: pointer;
}

.work-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.8);
    border-color: rgba(198, 168, 124, 0.3);
}

.work-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease, filter 0.6s ease;
    filter: brightness(0.7) contrast(1.1);
}

.work-card:hover .work-bg {
    transform: scale(1.08); /* Sophisticated subtle zoom */
    filter: brightness(0.35) contrast(1.1); /* Darken image more on hover to pop the white text */
}

/* Intensify gradient overlay on hover for maximum title visibility */
.work-card:hover::after {
    height: 70%;
    background: linear-gradient(to top, rgba(0,0,0,0.98) 0%, transparent 100%);
    opacity: 1;
}

/* Simple Text Background for Work Covers */
.simple-text-bg {
    background-color: #0a0a0a;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.6s ease;
}

.bg-text {
    font-family: var(--font-cinzel), var(--font-serif);
    font-size: 2.2rem; /* Adjusted for Korean characters balance */
    color: rgba(198, 168, 124, 0.2); /* Fainter gold */
    letter-spacing: 0.3em;
    text-shadow: 0 0 30px rgba(0,0,0,0.8);
    pointer-events: none;
    z-index: 2;
}

.work-card:hover .bg-text {
    color: rgba(198, 168, 124, 0.8);
    transform: scale(1.05);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.split-bg {
    display: flex;
    width: 100%;
    height: 100%;
}

.split-bg .split-half {
    flex: 1;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.split-bg .split-half:first-child {
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

/* Permanent gradient overlay for constant text readability */
.work-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; width: 100%; height: 60%;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
    pointer-events: none;
    transition: all 0.6s ease;
}

.work-card:hover::after {
    height: 75%;
    background: linear-gradient(to top, rgba(0,0,0,1) 0%, transparent 100%);
}

.work-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 3rem 2.5rem;
    z-index: 2;
    text-align: left;
    opacity: 1; /* Fully visible by default */
}

.work-info h3 {
    font-family: var(--font-cinzel), var(--font-serif);
    font-size: 1.3rem; 
    color: #fff;
    margin-bottom: 0.7rem;
    font-weight: 300;
    letter-spacing: 0.18em;
    line-height: 1.4;
    text-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.work-info p {
    font-size: 0.7rem;
    color: var(--color-gold);
    font-weight: 400;
    letter-spacing: 0.45em;
    text-transform: uppercase;
    opacity: 0.85;
}

.yt-play-btn {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 60px; height: 60px;
    border-radius: 50%;
    background: rgba(0,0,0,0.6);
    border: 2px solid rgba(255,255,255,0.8);
    display: flex; justify-content: center; align-items: center;
}
.yt-play-btn::after {
    content: '';
    display: block;
    margin-left: 5px;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 16px solid #fff;
}

/* Contact Section with Sophisticated Background */
.contact-section {
    position: relative;
    background: radial-gradient(circle at 50% 50%, #0d0d0d 0%, #000 100%);
    overflow: hidden;
}

/* Grain Overlay Utility */
.contact-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: url('https://www.transparenttextures.com/patterns/p6.png'); /* Sophisticated subtle noise */
    opacity: 0.15;
    pointer-events: none;
    z-index: 1;
}

.contact-box {
    text-align: center;
    padding: 6rem 3rem; 
    max-width: 900px; 
    margin: 0 auto;
    border: none !important;
    background: transparent !important;
    backdrop-filter: none !important;
    box-shadow: none !important;
    position: relative;
    z-index: 2;
}

.contact-box:hover {
    transform: none;
}

.contact-title {
    font-family: var(--font-serif);
    font-size: 4rem;
    color: #fff;
    margin-bottom: 2.5rem;
    letter-spacing: 0.12em;
    font-weight: 300;
    animation: glowPulse 5s ease-in-out infinite alternate;
}

@keyframes glowPulse {
    from { text-shadow: 0 0 10px rgba(255, 255, 255, 0.1); }
    to { text-shadow: 0 0 40px rgba(198, 168, 124, 0.4); }
}

.contact-message {
    font-size: 1.8rem; /* Large and bright like service titles */
    color: #ffffff;
    letter-spacing: 0.25em;
    margin-bottom: 4rem;
    font-weight: 500;
    text-transform: uppercase;
    animation: endingReveal 6s ease-in-out infinite alternate;
}

@keyframes endingReveal {
    0% { opacity: 0.3; text-shadow: 0 0 5px rgba(255,255,255,0.1); transform: translateY(2px); }
    50% { opacity: 0.9; text-shadow: 0 0 25px rgba(198, 168, 124, 0.5); transform: translateY(0); }
    100% { opacity: 0.4; text-shadow: 0 0 10px rgba(255,255,255,0.2); transform: translateY(1px); }
}

.contact-subtitle {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.contact-link, .contact-phone {
    display: inline-block;
    font-size: 1.6rem;
    color: #ffffff !important; 
    text-decoration: none !important;
    transition: all 0.4s ease;
    font-weight: 500; 
    letter-spacing: 0.15em;
    opacity: 1; 
    border-bottom: 1px solid rgba(198, 168, 124, 0.4); 
}

.contact-link:hover, .contact-phone:hover {
    opacity: 1;
    color: #fff !important;
    letter-spacing: 0.15em;
}

/* CSS Animated Realistic Starry Universe (Fixed Global) */
.stars, .stars2, .stars3 {
    position: fixed; /* Fixed in space while scrolling */
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: -2; /* Deepest layer, behind background video */
    pointer-events: none;
}

.stars {
    width: 1px; height: 1px;
    background: transparent;
    box-shadow: 
        15vw 10vh #fff, 35vw 25vh #fff, 55vw 5vh #fff, 75vw 40vh #fff, 95vw 15vh #fff,
        5vw 60vh #fff, 25vw 85vh #fff, 45vw 70vh #fff, 65vw 95vh #fff, 85vw 30vh #fff,
        12vw 45vh rgba(255,255,255,0.4), 42vw 15vh rgba(255,255,255,0.7), 72vw 75vh #fff, 
        82vw 55vh rgba(255,255,255,0.3), 2vw 25vh #fff, 32vw 65vh rgba(255,255,255,0.5), 
        52vw 35vh #fff, 92vw 85vh rgba(255,255,255,0.2), 62vw 15vh #fff, 10vw 95vh rgba(255,255,255,0.4),
        10vw 110vh #fff, 30vw 125vh #fff, 50vw 140vh #fff, 70vw 160vh #fff, 90vw 180vh #fff; /* Extended for height */
    animation: twinkle 4s ease-in-out infinite alternate;
}

.stars2 {
    width: 1.5px; height: 1.5px;
    background: transparent;
    box-shadow: 
        20vw 20vh #FFF, 80vw 30vh #FFF, 40vw 60vh #FFF, 10vw 80vh #FFF, 
        70vw 90vh #FFF, 90vw 10vh #FFF, 30vw 40vh #FFF, 50vw 20vh #FFF,
        15vw 120vh #FFF, 85vw 140vh #FFF, 45vw 160vh #FFF;
    animation: twinkle 7s ease-in-out infinite alternate-reverse;
}

.stars3 {
    width: 2px; height: 2px;
    background: transparent;
    box-shadow: 
        25vw 15vh var(--color-gold), 65vw 65vh #FFF, 85vw 25vh var(--color-gold), 35vw 85vh #FFF,
        50vw 110vh #FFF, 10vw 150vh var(--color-gold);
    animation: twinkle 10s ease-in-out infinite alternate;
}

@keyframes twinkle {
    0% { opacity: 0.2; transform: scale(0.8); }
    50% { opacity: 0.7; transform: scale(1.1); }
    100% { opacity: 0.3; transform: scale(0.9); }
}

/* Base Content Z-index */
.hero-content, .content {
    position: relative;
    z-index: 10;
}

/* Removed old section transition */
.contact-section {
    position: relative;
    padding: 10rem 5%;
    overflow: hidden;
}

@media (max-width: 768px) {
    .header { padding: 1rem 5%; flex-direction: row; justify-content: space-between; gap: 0; }
    .logo { font-size: 1rem; letter-spacing: 0.15em; }
    .nav { margin-top: 0; }
    .nav a { margin: 0 0.5rem; font-size: 0.75rem; color: #eee; }
    
    .hero-content { margin-top: 1.5vh; }
    .hero-section .title { font-size: 2.22rem; letter-spacing: 0.12em; margin-bottom: 0.8rem; }
    .hero-section .subtitle { font-size: 0.85rem; letter-spacing: 0.25em; margin-bottom: 0.8rem; }
    .quote { font-size: 1rem; line-height: 1.5; padding: 0 0.5rem; color: #fff; }
    .tagline { font-size: 0.75rem; letter-spacing: 0.3em; margin-bottom: 1.5rem; }

    .section { padding: 2.2rem 5%; }
    .grid { grid-template-columns: 1fr; gap: 0.8rem; }
    .glass-panel { padding: 2.5rem 1.2rem; border-radius: 12px; }
    
    .section-title { font-size: 1.8rem; margin-bottom: 1.2rem; }
    .philosophy-grid { grid-template-columns: 1fr; gap: 1.2rem; }
    .philosophy-item h4 { font-size: 0.9rem; }
    .philosophy-item .sub-label { margin-bottom: 0.6rem; font-size: 0.7rem; }
    .philosophy-item p { font-size: 0.85rem; line-height: 1.6; }
    .philosophy-card { padding: 1.5rem 0.5rem; }
    .philosophy-intro h3 { font-size: 1.4rem; margin-bottom: 1rem; }
    
    .works-grid { grid-template-columns: 1fr; gap: 1rem; }
    .work-card { aspect-ratio: 16/9; border-radius: 8px; }
    .work-card:first-child { aspect-ratio: 10/11; }
    .work-info { padding: 1.2rem 1rem; }
    .work-info h3 { font-size: 1.1rem; margin-bottom: 0.3rem; }
    .work-info p { font-size: 0.7rem; }

    .contact-title { font-size: 1.6rem; line-height: 1.3; }
    .contact-subtitle { font-size: 0.9rem; margin-bottom: 0.8rem; }
}

/* Section CTA Styling */
.section-cta {
    margin-top: 3rem;
    text-align: center;
    opacity: 0.8;
}

.section-cta p {
    font-family: var(--font-serif);
    font-size: 0.9rem;
    color: var(--color-gold);
    letter-spacing: 0.1em;
    margin-bottom: 1.2rem;
}

.section-cta .cta-btn {
    padding: 0.8rem 2.2rem;
    font-size: 0.75rem;
}

/* Creator Section Styling */
/* --- Cinematic Viewfinder Aesthetic (v5000) --- */
.creator-frame {
    max-width: 1100px;
    margin: 0 auto 5rem;
    position: relative;
    padding: 0 1rem;
}

.viewfinder-container {
    position: relative;
    width: 100%;
    aspect-ratio: 21 / 9; /* Cinematic Ultraviolet Ratio */
    background: #000;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0,0,0,0.9);
}

.creator-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.7) contrast(1.1) saturate(0.9);
    transition: filter 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.creator-frame:hover .creator-image {
    filter: brightness(0.9) contrast(1.1) saturate(1);
}

.hud-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-family: var(--font-cinzel), monospace;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    z-index: 5;
}

.hud-top, .hud-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hud-rec {
    color: #ff3b30;
    font-weight: 700;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.2; }
}

/* Viewfinder Corners */
.hud-corner-top-left, .hud-corner-top-right, 
.hud-corner-bottom-left, .hud-corner-bottom-right {
    position: absolute;
    width: 30px;
    height: 30px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hud-corner-top-left { top: 2rem; left: 2rem; border-right: none; border-bottom: none; }
.hud-corner-top-right { top: 2rem; right: 2rem; border-left: none; border-bottom: none; }
.hud-corner-bottom-left { bottom: 2rem; left: 2rem; border-right: none; border-top: none; }
.hud-corner-bottom-right { bottom: 2rem; right: 2rem; border-left: none; border-top: none; }

.cinema-texture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 30%, rgba(0,0,0,0.5) 100%);
    pointer-events: none;
    z-index: 2;
}

.cinema-texture::after {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: url('https://www.transparenttextures.com/patterns/p6.png'); /* Grain */
    opacity: 0.1;
    z-index: 3;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
        letter-spacing: 0.3em;
    }
    
    .content {
        padding: 0 1.5rem;
        max-width: 460px; /* Tighten overall mobile viewport focus */
    }

    .pricing-grid, 
    .works-references-grid,
    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
        max-width: 420px; /* Force-tighten all major grids to mobile-portrait focus */
        margin-left: auto;
        margin-right: auto;
    }

    .hero-section .title {
        font-size: 3.5rem;
        letter-spacing: 0.15em;
    }
}

@media (max-width: 768px) {
    .creator-section { padding: 4rem 5%; }
    .creator-overlay h2 { font-size: 1.2rem; }
}

/* Modal Overlay System */
.portfolio-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(20px);
    z-index: 9999;
    overflow-y: auto;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.portfolio-modal.active {
    opacity: 1;
    pointer-events: all;
}

.modal-close {
    position: fixed;
    top: 2.5rem;
    right: 4rem;
    font-size: 3.5rem;
    color: var(--color-gold);
    cursor: pointer;
    z-index: 10000;
    transition: transform 0.4s ease, color 0.4s;
    font-family: var(--font-sans);
    font-weight: 300;
}

.modal-close:hover {
    transform: rotate(90deg) scale(1.1);
    color: #fff;
}

.modal-content {
    max-width: 1200px;
    margin: 8rem auto;
    padding: 0 5%;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease 0.2s;
}

.portfolio-modal.active .modal-content {
    opacity: 1;
    transform: translateY(0);
}

.modal-title {
    font-family: var(--font-cinzel);
    font-size: 3.5rem;
    color: var(--color-gold);
    margin-bottom: 0.5rem;
    letter-spacing: 0.15em;
    text-shadow: 0 0 20px rgba(198, 168, 124, 0.2);
}

.modal-desc {
    font-size: 1.15rem;
    color: #ccc;
    margin-bottom: 4rem;
    font-family: var(--font-serif);
}

.modal-gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding-bottom: 5rem;
    width: 100%;
}

.centered-archive, .centered-layout, .archive-modal-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
}

.archive-column-label h4 {
    margin-top: 1.5rem;
    font-family: var(--font-cinzel);
    font-size: 1.2rem;
    color: var(--color-gold);
    letter-spacing: 0.3em;
    text-align: center;
    text-transform: uppercase;
}
.gallery-item {
    width: 100%;
    aspect-ratio: 16/9;
    background-color: #1a1a1a;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), filter 0.5s;
    filter: grayscale(0.7) brightness(0.8);
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
}

.gallery-item:hover {
    transform: scale(1.03);
    filter: grayscale(0) brightness(1.1);
    box-shadow: 0 20px 40px rgba(0,0,0,0.8);
    z-index: 10;
    border-color: rgba(198, 168, 124, 0.4);
}

.gallery-label {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: #fff;
    padding: 1.5rem 1rem;
    font-size: 1rem;
    font-family: var(--font-serif);
    letter-spacing: 0.1em;
    text-align: center;
    pointer-events: none;
}

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

/* Credit List Styles in Modal */
.gallery-item.list-mode {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 4rem 2.5rem 2.5rem;
    border: 1px solid rgba(198, 168, 124, 0.2);
    min-height: 420px;
}

.credit-list-wrap {
    width: 100%;
    text-align: left;
}

.credit-list {
    list-style: none;
    margin-top: 1.5rem;
}

.credit-list li {
    font-size: 0.95rem;
    color: #ccc;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
    font-weight: 300;
}

.credit-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 5px;
    height: 5px;
    background: var(--color-gold);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--color-gold-glow);
}

@media (max-width: 768px) {
    .gallery-item.list-mode {
        padding: 1.5rem;
        min-height: 300px;
    }
    .credit-list li {
        font-size: 0.8rem;
        margin-bottom: 0.8rem;
    }
}

/* Fix overlapping label in list mode */
.gallery-item.list-mode .gallery-label {
    position: relative;
    top: -1rem;
    bottom: auto;
    left: auto;
    width: 100%;
    background: none;
    padding: 0;
    margin-bottom: 0.5rem;
    text-align: left;
    color: var(--color-gold);
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(198, 168, 124, 0.3);
    padding-bottom: 0.8rem;
    pointer-events: auto;
}


/* CTA Button Styling - Refined Sophisticated Version with Flare */
.cta-btn {
    display: inline-block;
    padding: 1.1rem 3.5rem;
    background: rgba(198, 168, 124, 0.03); /* Extremely subtle gold tint */
    color: #fff !important;
    text-decoration: none;
    font-family: var(--font-cinzel), var(--font-serif);
    font-size: 0.9rem;
    letter-spacing: 0.3em; /* Wider spacing for luxury feeing */
    font-weight: 300;
    border: 1px solid rgba(198, 168, 124, 0.25); /* Elegant thin border */
    border-radius: 2px; /* Sharp, cinematic edge */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    margin-top: 1rem;
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
}

.cta-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.15),
        transparent
    );
    transform: skewX(-25deg);
    transition: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.cta-btn:hover {
    background: var(--color-gold);
    color: #000 !important;
    border-color: var(--color-gold);
    box-shadow: 0 0 50px rgba(198, 168, 124, 0.35);
    transform: translateY(-5px);
    letter-spacing: 0.35em;
}

.cta-btn:hover::after {
    left: 150%;
}


/* Sublte separator for better spacing */
.contact-box .cta-btn {
    margin-bottom: 2rem;
}

/* Section CTA Styling for Film/Lab */
.section-cta {
    margin-top: 3.5rem;
    padding: 0 5%;
    text-align: center;
    opacity: 0.9;
}

.section-cta p {
    font-family: var(--font-serif);
    font-size: 0.95rem;
    color: var(--color-gold);
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.section-cta .cta-btn {
    padding: 0.9rem 2.8rem;
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .cta-btn {
        padding: 0.8rem 1.8rem;
        font-size: 0.75rem;
        letter-spacing: 0.22em;
        width: 88%;
        max-width: 300px;
    }
    
    /* Overall Mobile Tightening (v7900 Mastered) */
    .section {
        padding: 2.2rem 1.5rem; 
        margin-bottom: 0.5rem;
    }

    .content {
        max-width: 400px !important; /* Strict Hub Focus */
        margin-left: auto !important;
        margin-right: auto !important;
        padding-left: 10px;
        padding-right: 10px;
    }

    .centered-archive {
        max-width: 380px !important; /* Tighten Archive further */
    }

    .enlarged-grid {
        max-width: 380px !important; /* Tighten Lab further */
        grid-template-columns: 1fr !important; /* Force single column if not already */
        padding: 0 10px !important;
    }
    
    .pricing-grid, 
    .works-references-grid,
    .philosophy-grid {
        max-width: 380px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }
    
    .title-line {
        margin-bottom: 1.2rem;
    }
    
    .works-references-grid {
        gap: 2rem;
        margin-top: 3rem;
    }
    
    .process-list {
        margin-top: 2rem;
        gap: 1.5rem;
    }
    
    .process-item {
        gap: 1rem;
    }

    .process-content h3 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }

    .process-content p {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .pricing-grid {
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .pricing-card {
        padding: 2.5rem 1.5rem;
    }

    .price-title {
        font-size: 1.4rem;
        margin-bottom: 0.8rem;
    }

    .price-features {
        margin-bottom: 2rem;
    }

    .price-features li {
        font-size: 0.85rem;
        margin-bottom: 0.8rem;
    }
    
    /* FILM Modal Mobile Adjustments */
    .archive-landscape-img {
        aspect-ratio: 4 / 3; /* Better for mobile viewing */
    }
    
    .archive-list li {
        font-size: 0.75rem;
        white-space: normal; /* Allow wrap on mobile to avoid overflow */
        word-break: keep-all;
    }
    
    /* Project Detail Mobile Tightening */
    .detail-hero h1 { font-size: 2.5rem !important; }
    .pricing-grid { gap: 1.2rem; margin-top: 2rem; }
    .price-card { padding: 2.2rem 1.5rem; }
    .price-card h4 { font-size: 1.2rem; margin-bottom: 0.8rem; }
    .price-tag { margin-bottom: 1.2rem !important; font-size: 0.95rem !important; }
    .price-card ul { margin-bottom: 1.8rem; }
    .price-card ul li { font-size: 0.85rem; margin-bottom: 0.5rem; }
    
    .process-num { font-size: 1.4rem; margin-right: 1.2rem; margin-bottom: 0.3rem; }
    .process-content h5 { font-size: 1.05rem; }
    .process-content p { font-size: 0.8rem; line-height: 1.6; }

    .contact-box .cta-btn { margin-bottom: 1.5rem; }
    
    .section-cta { margin-top: 2.5rem; }
    .section-cta p { font-size: 0.85rem; letter-spacing: 0.1em; }
}

