:root {
    --bg-color: #0B0B0B;
    --accent-color: #ff2b2b;
    --accent-glow: rgba(255, 43, 43, 0.6);
    --gold-accent: #d4af37;
    --text-primary: #FFFFFF;
    --text-secondary: #E0E0E0;
    --text-muted: #A0A0A0;
    --card-bg: rgba(20, 20, 20, 0.6);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --border-color: #333333;
    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --font-heading: 'Outfit', sans-serif;
    --font-serif: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography Hierarchy */
h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    line-height: 1.1;
    margin-bottom: 2rem;
}

h2 {
    font-size: clamp(1.5rem, 5vw, 2.5rem);
    margin-bottom: 1.5rem;
}

p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
}

/* Buttons */
.btn {
    padding: 1rem 2rem;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    border-radius: 4px;
    display: inline-block;
    letter-spacing: 1px;
}

.btn-primary {
    background-color: var(--accent-color);
    color: white;
}

.btn-primary:hover {
    background-color: #E60000;
    box-shadow: 0 0 20px rgba(192, 0, 0, 0.4);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

.btn-secondary:hover {
    background-color: white;
    color: black;
    transform: translateY(-2px);
}

.w-full {
    width: 100%;
}

/* Header & Navbar */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: var(--transition-smooth);
    padding: 1rem 0;
}

.header.scrolled {
    background: rgba(11, 11, 11, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 0.5rem 0;
}

.navbar {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    height: 80px;
}

.nav-left {
    justify-self: start;
}

/* Logo Styles */
.logo-integrated {
    display: flex;
    align-items: center;
    text-decoration: none;
    position: relative;
    padding-bottom: 5px;
}

.logo-text-script {
    font-family: 'Dancing Script', cursive;
    font-size: 2.2rem;
    color: white;
    line-height: 1;
    margin: 0;
    letter-spacing: -1px;
}

.shutter-icon-container {
    width: 32px;
    height: 32px;
    margin: -2px 2px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shutter-svg {
    width: 100%;
    height: 100%;
    color: white;
}

.shutter-blade {
    transition: transform 0.5s ease;
    transform-origin: center;
}

.logo-integrated:hover .shutter-blade {
    transform: rotate(45deg);
}

.logo-subtitle {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.55rem;
    letter-spacing: 3px;
    color: var(--text-secondary);
    white-space: nowrap;
    text-transform: uppercase;
}

.nav-center {
    justify-self: center;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: var(--transition-smooth);
}

.nav-link:hover,
.nav-link.active {
    color: white;
}

.nav-right {
    justify-self: end;
}

.btn-glow {
    position: relative;
    overflow: hidden;
}

.btn-glow::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    opacity: 0;
    transition: 0.3s;
}

.btn-glow:hover::after {
    opacity: 1;
}

/* Cinematic Hero */
.hero-cinematic {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--bg-color);
}

.hero-bg-zoom {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.5) contrast(1.1);
    animation: slow-zoom 20s infinite alternate linear;
    z-index: 0;
}

@keyframes slow-zoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.15);
    }
}

.hero-vignette {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 1;
}

.hero-lens-flare {
    position: absolute;
    top: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 180, 100, 0.1) 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
    z-index: 2;
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 100px 100px;
    animation: particles-float 10s infinite linear;
    z-index: 2;
    opacity: 0.3;
}

@keyframes particles-float {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 100px 100px;
    }
}

.hero-layout {
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 4rem;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 7vw, 5.5rem);
    line-height: 1;
    margin-bottom: 2rem;
    text-transform: uppercase;
    font-weight: 700;
}

.accent-red {
    color: var(--accent-color);
}

.hero-subtext {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3.5rem;
    max-width: 550px;
    font-weight: 400;
    line-height: 1.6;
}

.hero-cta-group {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.btn-lg {
    padding: 1.2rem 2.5rem;
    font-size: 1rem;
}

.btn-glow-red {
    background: linear-gradient(135deg, var(--accent-color) 0%, #b31e1e 100%);
    box-shadow: 0 10px 30px var(--accent-glow);
    border: none;
    color: white;
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.hero-trust {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.story-signature-card {
    max-width: 560px;
    margin-bottom: 2rem;
    padding: 1.4rem 1.5rem;
    border-radius: 14px;
    background: linear-gradient(120deg, rgba(13, 13, 13, 0.84), rgba(34, 22, 13, 0.76));
    border: 1px solid rgba(212, 175, 55, 0.38);
    backdrop-filter: blur(8px);
    box-shadow: 0 14px 42px rgba(0, 0, 0, 0.38);
}

.story-signature-eyebrow {
    margin: 0 0 0.35rem;
    max-width: 100%;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.72);
}

.story-signature-title {
    margin: 0 0 0.55rem;
    font-family: var(--font-serif);
    font-size: clamp(1.35rem, 3vw, 2rem);
    letter-spacing: 1px;
    text-transform: none;
    line-height: 1.1;
}

.story-signature-copy {
    margin: 0 0 1rem;
    max-width: 100%;
    font-size: 0.96rem;
    color: var(--text-secondary);
}

.btn-story-signature {
    background: linear-gradient(135deg, #d6b56e, #c79542);
    color: #19120a;
    text-decoration: none;
    border-radius: 999px;
    padding: 0.78rem 1.5rem;
    font-size: 0.78rem;
    box-shadow: 0 10px 30px rgba(201, 154, 74, 0.28);
}

.btn-story-signature:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(201, 154, 74, 0.36);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.9rem;
    color: white;
    opacity: 0.9;
}

.stars {
    color: var(--gold-accent);
    letter-spacing: 2px;
}

.trust-icon {
    width: 16px;
    height: 16px;
    color: var(--gold-accent);
}

/* Floating Glass Cards */
.hero-right-visuals {
    position: relative;
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    gap: 2rem;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    width: 280px;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateX(-10px);
}

.card-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 43, 43, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
}

.card-icon svg {
    width: 24px;
    height: 24px;
}

.card-info {
    display: flex;
    flex-direction: column;
}

.card-number {
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    font-family: var(--font-heading);
}

.card-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.float-anim {
    animation: float 4s ease-in-out infinite;
}

.float-anim-delayed {
    animation: float 4s ease-in-out infinite 1s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Scroll Explore */
.scroll-explore {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    z-index: 5;
}

.scroll-arrow {
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* About Section */
.about-section {
    background: #0A0A0A;
    color: white;
    padding: 100px 40px;
    text-align: center;
}

.about-container {
    max-width: 900px;
    margin: auto;
}

.about-content h2 {
    font-size: 48px;
    margin-bottom: 10px;
}

.tagline {
    color: #C00000;
    font-size: 18px;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.about-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 20px;
}

.about-btn {
    margin-top: 20px;
    padding: 14px 30px;
    background: #C00000;
    border: none;
    color: white;
    font-weight: 600;
    cursor: pointer;
    border-radius: 6px;
    transition: 0.3s ease;
}

.about-btn:hover {
    background: #ff1a1a;
}

/* Founder's Story */
.founder-section {
    padding: 10rem 0;
    text-align: center;
    background: var(--bg-color);
}

.founder-container {
    max-width: 800px;
    margin: 0 auto;
}

.founder-section h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
    color: var(--white);
}

.founder-section .highlight {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.founder-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.signature {
    margin-top: 4rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-color);
    letter-spacing: 1px;
}

/* Instagram Section */
.instagram-section {
    background: #f3efe7;
    padding: 100px 40px;
    text-align: center;
    color: #0A0A0A;
}

.insta-container {
    max-width: 1200px;
    margin: auto;
}

.instagram-section h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #0A0A0A;
}

.insta-handle {
    font-size: 20px;
    margin-bottom: 10px;
}

.insta-handle a {
    text-decoration: none;
    color: #C00000;
    font-weight: 600;
}

.insta-description {
    color: #555;
    margin-bottom: 50px;
    font-size: 16px;
}

.insta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.insta-grid img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: 0.4s ease;
    cursor: pointer;
    border-radius: 4px;
}

.insta-grid img:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .insta-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .insta-grid {
        grid-template-columns: 1fr;
    }

    .insta-grid img {
        height: 300px;
    }
}

/* Cinematic Feature Section */
.features-cinematic {
    padding: 12rem 0;
    position: relative;
    overflow: hidden;
    background: var(--bg-color);
    text-align: center;
}

.features-bg-bokeh {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.4) blur(8px);
    z-index: 0;
    opacity: 0.6;
}

.features-vignette {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, transparent 20%, var(--bg-color) 90%);
    z-index: 1;
}

.features-glow-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at center, var(--gold-accent) 0.5px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.1;
    z-index: 1;
}

.features-content {
    position: relative;
    z-index: 5;
    max-width: 1000px;
}

.section-title-large {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 2rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-subheading-group {
    margin-bottom: 5rem;
}

.section-subheading-group p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 100%;
    margin-bottom: 0.5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.feature-glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 3rem 2rem;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.feature-glass-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-glow);
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.4);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 43, 43, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    transition: var(--transition-smooth);
}

.feature-glass-card:hover .feature-icon {
    transform: scale(1.1);
    background: rgba(255, 43, 43, 0.2);
    box-shadow: 0 0 20px var(--accent-glow);
}

.feature-icon svg {
    width: 30px;
    height: 30px;
}

.feature-glass-card h3 {
    font-size: 1.4rem;
    font-family: var(--font-heading);
    color: white;
    margin: 0;
}

.feature-glass-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 0;
}

.features-bottom-text {
    margin-bottom: 3rem;
}

.features-bottom-text p {
    font-size: 1rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Workflow */
.workflow {
    padding: 5rem 0;
}

/* Workflow Section */
.workflow-cinematic {
    padding: 12rem 0;
    position: relative;
    overflow: hidden;
    background: var(--bg-color);
}

.workflow-bg-cinematic {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.35) contrast(1.1);
    z-index: 0;
    animation: slow-zoom 30s infinite alternate linear;
}

.workflow-vignette {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, var(--bg-color) 0%, rgba(0, 0, 0, 0.4) 50%, var(--bg-color) 100%);
    z-index: 1;
}

.workflow-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at center, var(--gold-accent) 0.5px, transparent 1px);
    background-size: 80px 80px;
    opacity: 0.05;
    z-index: 1;
}

.workflow-content {
    position: relative;
    z-index: 5;
    text-align: center;
}

.workflow-header {
    margin-bottom: 6rem;
}

.section-subtitle {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 600;
    margin-top: 1rem;
}

.workflow-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    margin-bottom: 5rem;
}

/* Progress Line Overlay */
.workflow-progress-line {
    position: absolute;
    top: 35%;
    left: 10%;
    width: 80%;
    height: 2px;
    background: rgba(255, 255, 255, 0.05);
    z-index: -1;
}

.progress-glow {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--accent-color), var(--gold-accent), var(--accent-color));
    box-shadow: 0 0 15px var(--accent-glow);
    transition: width 2s cubic-bezier(0.16, 1, 0.3, 1);
}

.revealed .progress-glow {
    width: 100%;
}

.workflow-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 3rem 2rem;
    border-radius: 20px;
    position: relative;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.workflow-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.step-num-bg {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 3rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: white;
    opacity: 0.05;
    transition: var(--transition-smooth);
}

.workflow-card:hover .step-num-bg {
    opacity: 0.15;
    transform: scale(1.1);
}

.step-icon {
    width: 65px;
    height: 65px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-smooth);
}

.step-icon svg {
    width: 28px;
    height: 28px;
}

.workflow-card:hover .step-icon {
    transform: scale(1.1);
}

/* Accent Variations */
.accent-gold {
    color: var(--gold-accent);
}

.workflow-card:hover .step-icon.accent-red {
    border-color: var(--accent-color);
    box-shadow: 0 0 20px var(--accent-glow);
    background: rgba(255, 43, 43, 0.1);
}

.workflow-card:hover .step-icon.accent-gold {
    border-color: var(--gold-accent);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    background: rgba(212, 175, 55, 0.1);
}

.workflow-card h3 {
    font-size: 1.2rem;
    letter-spacing: 2px;
    font-family: var(--font-heading);
    color: white;
    margin: 0;
}

.workflow-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Scroll Storytelling Step Effects */
.workflow-card.revealed .step-num-bg {
    animation: step-flash 1s alternate;
}

@keyframes step-flash {
    from {
        opacity: 0.05;
        filter: blur(0);
    }

    to {
        opacity: 0.3;
        filter: blur(2px);
        text-shadow: 0 0 20px white;
    }
}

@media (max-width: 1024px) {
    .workflow-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .workflow-progress-line {
        display: none;
    }
}

@media (max-width: 600px) {
    .workflow-grid {
        grid-template-columns: 1fr;
    }
}

/* Tech Advantage */

/* Cinematic Services Section */
.services-cinematic {
    padding: 12rem 0;
    background: #0b0b0b;
    position: relative;
    overflow: hidden;
}

.services-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1511285560929-80b456fea0bc?auto=format&fit=crop&q=80&w=2000');
    background-size: cover;
    background-position: center;
    opacity: 0.05;
    filter: blur(50px);
    z-index: 0;
}

.services-glow-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.services-content {
    position: relative;
    z-index: 2;
}

.services-header {
    text-align: center;
    margin-bottom: 8rem;
}

.section-title-large {
    font-size: 4.5rem;
    font-family: var(--font-heading);
    color: white;
    letter-spacing: 4px;
    margin-bottom: 1rem;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
}

.section-subtitle-cinematic {
    font-size: 1.2rem;
    color: var(--accent-color);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
}

/* Staggered Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Service Card Cinematic */
.service-card-cinematic {
    position: relative;
    height: 600px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: #111;
}

/* Vertical Stagger Effect */
.services-grid>div:nth-child(3n+2) {
    margin-top: 6rem;
}

.service-card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 40%, rgba(0, 0, 0, 0.9) 95%);
    z-index: 1;
    transition: background 0.6s ease;
}

.service-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 3rem 2rem;
    z-index: 2;
    text-align: center;
}

.service-card-content h3 {
    font-size: 1.8rem;
    font-family: var(--font-body);
    font-weight: 700;
    color: white;
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
}

.service-tagline {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.service-accent-line {
    width: 30px;
    height: 2px;
    background: var(--accent-color);
    margin: 0 auto;
    transition: width 0.4s ease;
}

.service-hover-content {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    margin-top: 2rem;
}

/* Hover States */
.service-card-cinematic:hover {
    transform: translateY(-20px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 43, 43, 0.2);
    border-color: rgba(255, 43, 43, 0.3);
}

.service-card-cinematic:hover .service-card-image {
    transform: scale(1.1);
}

.service-card-cinematic:hover .service-card-overlay {
    background: linear-gradient(to bottom, transparent 20%, rgba(0, 0, 0, 0.95) 90%);
}

.service-card-cinematic:hover .service-accent-line {
    width: 60px;
}

.service-card-cinematic:hover .service-hover-content {
    opacity: 1;
    transform: translateY(0);
}

/* Integrated Edit UI */
.service-edit-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 10;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    transition: var(--transition-smooth);
}

.portfolio-edit-active .service-edit-overlay {
    display: flex;
}

.edit-actions-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 200px;
}

.btn-edit-action {
    padding: 0.8rem 1.2rem;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-upload {
    background: var(--accent-color);
    color: white;
    border: none;
}

.btn-url {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-edit-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.btn-upload:hover {
    background: #e60000;
}

.btn-url:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

/* Responsive Grid */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .services-grid>div:nth-child(3n+2) {
        margin-top: 0;
    }

    .services-grid>div:nth-child(2n) {
        margin-top: 4rem;
    }

    .section-title-large {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .services-grid>div {
        margin-top: 0 !important;
    }

    .service-card-cinematic {
        height: 500px;
    }
}

/* Metrics */
.metrics {
    padding: 8rem 0;
    display: flex;
    justify-content: space-around;
    text-align: center;
    gap: 2rem;
}

.metric .number {
    display: block;
    font-size: 4rem;
    font-family: var(--font-heading);
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.metric .label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* CTA */
.final-cta {
    padding: 10rem 0;
    background: linear-gradient(rgba(10, 10, 10, 0.9), rgba(10, 10, 10, 0.9)),
        radial-gradient(circle at center, var(--accent-color) 0%, transparent 100%);
    text-align: center;
}

.cta-content h2 {
    margin-bottom: 1rem;
}

.cta-content p {
    margin: 0 auto 3rem;
}

/* Footer */
.footer {
    padding: 5rem 0 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
}

.footer-links {
    display: flex;
    gap: 3rem;
}

.footer-links a {
    text-decoration: none;
    color: white;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.tagline {
    opacity: 0.5;
}

/* Modals */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
}

.modal.active {
    display: flex;
    opacity: 1;
    animation: fadeIn 0.4s ease forwards;
}

.modal-content {
    background: var(--bg-color);
    padding: 4rem;
    max-width: 600px;
    width: 90%;
    position: relative;
    border: 1px solid var(--border-color);
    transform: scale(0.9);
}

.modal.active .modal-content {
    animation: modalIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.close-btn {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
}

/* Detail Modal Specifics */
.detail-modal {
    max-width: 500px;
    border-radius: 12px;
}

.detail-tagline {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

.detail-description {
    margin-bottom: 3rem;
    text-align: left;
}

.detail-description p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

input,
select,
textarea {
    width: 100%;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 1rem;
    color: white;
    font-family: var(--font-body);
    transition: border-color 0.3s ease;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

/* Landscape Booking Modal */
.booking-landscape {
    max-width: 720px;
}

.booking-landscape h2 {
    grid-column: 1 / -1;
    margin-bottom: 1.2rem;
}

.booking-landscape #booking-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.booking-landscape .form-group {
    margin-bottom: 0;
}

.booking-landscape .form-group:has(textarea),
.booking-landscape button[type="submit"],
.booking-landscape #success-msg {
    grid-column: 1 / -1;
}

@media (max-width: 768px) {
    .booking-landscape #booking-form {
        grid-template-columns: 1fr;
    }
}

.hidden {
    display: none;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.reveal,
.reveal-delay,
.reveal-delay-2 {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay {
    transition-delay: 0.2s;
}

.reveal-delay-2 {
    transition-delay: 0.4s;
}

/* Global Modal Background Fix */
.full-screen-modal {
    background: black;
}

.cinematic-modal .modal-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: opacity 0.8s ease, transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 0;
    filter: brightness(0.4);
}

.cinematic-modal .modal-content {
    background: transparent;
    border: none;
    max-width: 100%;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    z-index: 5;
}

.workflow-step {
    max-width: 500px;
    width: 100%;
    background: var(--glass-bg);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid var(--accent-glow);
    border-radius: 20px;
    padding: 4rem;
    text-align: center;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(255, 255, 255, 0.05);
    position: relative;
    animation: modalIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.workflow-step .step-icon-large {
    width: 80px;
    height: 80px;
    background: rgba(255, 43, 43, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    margin: 0 auto 2rem;
    box-shadow: 0 0 25px var(--accent-glow);
}

.workflow-step h2 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    color: white;
}

.workflow-step p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.feature-list {
    list-style: none;
    text-align: left;
    margin-bottom: 3rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-muted);
    font-size: 1rem;
}

.feature-item svg {
    width: 18px;
    height: 18px;
    color: var(--accent-color);
    filter: drop-shadow(0 0 5px var(--accent-glow));
}

.step-indicator {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 1.5rem;
}

/* Animations */
@keyframes modalIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(30px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Portfolio Gallery Refinement */
.portfolio {
    padding: 8rem 0;
    overflow: hidden;
    background: #0A0A0A;
}

.portfolio .section-title {
    margin-bottom: 4rem;
    text-align: center;
}

/* Cinematic Scroller Component */
.scroller {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.scroller-track {
    display: flex;
    width: max-content;
    animation: scroll 40s linear infinite;
}

.scroller-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.scroller-track img {
    height: 500px;
    width: auto;
    object-fit: cover;
    margin-right: 30px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: var(--transition-smooth);
    cursor: pointer;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.scroller-track img:hover {
    transform: scale(1.03) translateY(-10px);
    border-color: var(--accent-color);
}

/* Orientation Helpers */
.img-portrait {
    width: 380px !important;
}

.img-landscape {
    width: 700px !important;
}

/* Instagram Grid Refinement */
.insta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 3rem;
}

.insta-grid img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
    transition: var(--transition-smooth);
}

.insta-item-large {
    grid-column: span 2;
    grid-row: span 2;
    height: 720px !important;
}

.insta-grid img:hover {
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.dot.active {
    background: var(--accent-color);
    width: 30px;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 2100;
}

.menu-toggle .bar {
    width: 100%;
    height: 2px;
    background: white;
    transition: 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform-origin: center;
}

/* Mobile Menu Toggle Animation */
.mobile-active .menu-toggle .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-active .menu-toggle .bar:nth-child(2) {
    opacity: 0;
}

.mobile-active .menu-toggle .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    z-index: 2050;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-20px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 2rem;
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.mobile-menu-content {
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.mobile-nav-link {
    font-size: 2rem;
    font-family: var(--font-heading);
    color: white;
    text-decoration: none;
    letter-spacing: 4px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.mobile-nav-link:hover {
    color: var(--accent-color);
}

.mobile-menu-footer {
    margin-top: 4rem;
    color: var(--text-secondary);
    font-size: 0.8rem;
    letter-spacing: 2px;
}

/* Responsive Overrides */
@media (max-width: 1024px) {
    .navbar {
        grid-template-columns: auto 1fr auto;
    }

    .nav-center {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-right .btn-primary {
        display: none;
    }

    /* Logo Scale for Tablet */
    .logo-text-script {
        font-size: 1.8rem;
    }

    .shutter-icon-container {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 0.5rem 0;
    }

    .navbar {
        padding: 0 1rem;
        height: 70px;
    }

    /* Logo Scale for Mobile */
    .logo-text-script {
        font-size: 1.5rem;
    }

    .shutter-icon-container {
        width: 24px;
        height: 24px;
    }

    .logo-subtitle {
        font-size: 0.45rem;
        letter-spacing: 2px;
        bottom: -8px;
    }

    /* Hero Fixes for Mobile */
    .hero-cinematic {
        height: auto;
        min-height: 100vh;
        padding-top: 100px;
        padding-bottom: 4rem;
        align-items: flex-start;
    }

    .hero-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-left-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }

    .hero-subtext {
        font-size: 1rem;
        margin-bottom: 2.5rem;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta-group {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
        margin-bottom: 3rem;
    }

    .story-signature-card {
        padding: 1.1rem;
        text-align: left;
        margin-bottom: 1.5rem;
    }

    .story-signature-title {
        font-size: 1.5rem;
    }

    .btn-story-signature {
        width: 100%;
        text-align: center;
    }

    .btn-lg {
        width: 100%;
    }

    .hero-right-visuals {
        height: auto;
        align-items: center;
        margin-top: 2rem;
    }

    .glass-card {
        width: 100%;
        max-width: 300px;
    }

    .section-title-large {
        font-size: 2.5rem;
    }

    .tech-advantage {
        grid-template-columns: 1fr;
    }

    .metrics {
        flex-direction: column;
        gap: 4rem;
    }

    .footer-top {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
}

@media (min-width: 1024px) {
    .workflow-line {
        display: block;
    }
}

/* Shared Gallery Styles (for separate pages) */
.gallery-body {
    background: #f3efe7;
    color: #0A0A0A;
}



/* Empty State Gallery */
.empty-state {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 550px;
    width: 100%;
    text-align: center;
    background: rgba(0, 0, 0, 0.03);
    border: 2px dashed rgba(0, 0, 0, 0.1);
    border-radius: 12px;
}

.empty-content p {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #0A0A0A;
}

.empty-content span {
    font-size: 0.9rem;
    color: #666;
}

/* Portfolio Management Styles */
.admin-controls-container {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    display: flex;
    gap: 1rem;
    padding: 0.5rem;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 60px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.btn-admin-manage,
.btn-admin-reset {
    padding: 0.8rem 1.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-admin-manage {
    background: var(--accent-color);
    color: white;
}

.btn-admin-reset {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

.btn-admin-manage:hover {
    transform: translateY(-3px) scale(1.02);
    background: #ff4545;
    box-shadow: 0 10px 20px var(--accent-glow);
}

.btn-admin-reset:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transform: translateY(-3px);
}

.edit-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--accent-color);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 1px;
    z-index: 5;
    animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
    0% {
        opacity: 0.7;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.7;
    }
}

.edit-notice {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    color: #000;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    z-index: 9999;
    animation: modalIn 0.4s ease;
}

/* Loading Spinner */
.loader {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    display: inline-block;
    animation: spin 1s linear infinite;
    margin-right: 10px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.portfolio-edit-active .service-card-cinematic {
    border: 2px dashed var(--accent-color);
}

.gallery-admin-controls {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 1300;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    background: rgba(0, 0, 0, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 0.6rem;
    backdrop-filter: blur(12px);
}

.gallery-admin-btn {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 7px;
    padding: 0.55rem 0.8rem;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
}

.gallery-admin-btn:hover {
    border-color: var(--accent-color);
    background: rgba(255, 43, 43, 0.12);
}

.gallery-admin-controls .hidden {
    display: none;
}

.gallery-delete-mode .scroller-track img {
    cursor: crosshair;
    outline: 2px dashed rgba(255, 43, 43, 0.55);
    outline-offset: -8px;
}

@media (max-width: 768px) {
    .gallery-admin-controls {
        right: 0.6rem;
        bottom: 0.6rem;
        padding: 0.45rem;
    }

    .gallery-admin-btn {
        font-size: 0.64rem;
        padding: 0.5rem 0.65rem;
    }
}

/* ===== Conversion-Focused 2026 Refinements ===== */
.btn-sm {
    padding: 0.65rem 1rem;
    font-size: 0.75rem;
}

.hero-title {
    font-size: clamp(3.2rem, 8vw, 6rem);
    letter-spacing: 1px;
}

.hero-subtext {
    max-width: 620px;
}

.hero-lens-flare {
    display: none;
}

.why-section {
    padding: 7rem 0;
    background: #080808;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.why-content {
    max-width: 900px;
    text-align: center;
}

.why-subtitle {
    margin: 0 auto 2.5rem;
    color: var(--text-secondary);
}

.why-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 4rem auto 0;
}

.why-list li {
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 2rem;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    text-align: left;
}

.why-list li::before {
    content: '✓';
    color: var(--accent-color);
    margin-right: 12px;
    font-weight: 700;
}

.why-list li:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 43, 43, 0.3);
    transform: translateY(-5px);
}

.social-proof {
    border-bottom: 1px solid var(--border-color);
}

.portfolio {
    padding: 7rem 0;
}

.portfolio-subtitle {
    text-align: center;
    margin: -1rem auto 2rem;
}

.portfolio-filter {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.portfolio-filter-btn {
    border: 1px solid var(--glass-border);
    background: transparent;
    color: var(--text-secondary);
    padding: 0.65rem 1rem;
    border-radius: 999px;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.72rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.portfolio-filter-btn:hover,
.portfolio-filter-btn.active {
    color: #fff;
    border-color: rgba(255, 43, 43, 0.5);
    background: rgba(255, 43, 43, 0.12);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.portfolio-card {
    position: relative;
    min-height: 350px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    background: #111;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.portfolio-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 43, 43, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.portfolio-card:active {
    transform: translateY(-5px);
}

.portfolio-card-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-card:hover .portfolio-card-image {
    transform: scale(1.1);
}

.portfolio-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.9) 0%,
            rgba(0, 0, 0, 0.4) 40%,
            transparent 100%);
    z-index: 1;
}

.portfolio-card-content {
    position: absolute;
    left: 1.5rem;
    right: 1.5rem;
    bottom: 1.5rem;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transform: translateY(10px);
    opacity: 0.9;
    transition: var(--transition-smooth);
}

.portfolio-card:hover .portfolio-card-content {
    transform: translateY(0);
    opacity: 1;
}

.services-cinematic {
    padding: 8rem 0;
}

.services-header {
    margin-bottom: 4rem;
}

.services-grid {
    gap: 1.25rem;
}

.services-grid>div:nth-child(3n+2),
.services-grid>div:nth-child(2n) {
    margin-top: 0 !important;
}

.service-card-cinematic {
    height: 500px;
    border-color: rgba(255, 255, 255, 0.05);
    background: #111;
}

.service-card-cinematic:hover {
    border-color: var(--accent-color);
}

.service-hover-content {
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition-smooth);
}

.service-card-cinematic:hover .service-hover-content {
    opacity: 1;
    transform: translateY(0);
}

.service-card-content h3 {
    font-size: 1.4rem;
    letter-spacing: 3px;
    transition: var(--transition-smooth);
}

.service-card-cinematic:hover h3 {
    color: var(--accent-color);
}

.service-tagline {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer {
    background: #050505;
    border-top: 1px solid var(--border-color);
    padding: 3.5rem 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.footer-col h4 {
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.footer-tagline {
    color: var(--text-muted);
    margin-top: 0.75rem;
    font-size: 0.95rem;
}

.footer-col a,
.footer-col p {
    color: var(--text-secondary);
    text-decoration: none;
    display: block;
    margin-bottom: 0.45rem;
}

.footer-col a:hover {
    color: #fff;
}

.footer-links {
    gap: 0.25rem;
    flex-direction: column;
}

.footer-bottom {
    margin-top: 4rem;
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
    color: var(--text-muted);
    font-size: 0.85rem;
    display: flex;
    justify-content: center;
}

.floating-contact {
    position: fixed;
    right: 2rem;
    bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    z-index: 2000;
}

.floating-btn {
    background: rgba(11, 11, 11, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 0.8rem 1.2rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-btn:hover {
    border-color: var(--accent-color);
    background: var(--accent-color);
    transform: translateY(-3px);
}

@media (max-width: 900px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links {
        align-items: center;
    }
}

@media (max-width: 640px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .social-proof {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }

    .floating-contact {
        right: 0.75rem;
        bottom: 0.75rem;
    }
}

.bts-section {
    background: #0A0A0A;
    padding: 100px 40px;
    text-align: center;
    color: white;
}

.bts-container {
    max-width: 1100px;
    margin: auto;
}

.bts-section h2 {
    font-size: 42px;
    margin-bottom: 10px;
}

.bts-subtitle {
    color: #aaa;
    margin: 0 auto 40px;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

.bts-thumbs-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-top: 22px;
}

.bts-thumb {
    position: relative;
    display: block;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: var(--transition-smooth);
}

.bts-thumb img {
    width: 100%;
    display: block;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.bts-thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.15));
}

.bts-thumb-play {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255, 43, 43, 0.9);
    color: #fff;
    font-size: 18px;
    z-index: 2;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.45);
}

.bts-thumb:hover {
    border-color: rgba(255, 43, 43, 0.6);
    transform: translateY(-4px);
}

.bts-thumb.active {
    border-color: rgba(255, 43, 43, 0.75);
    box-shadow: 0 0 0 2px rgba(255, 43, 43, 0.18);
}

.bts-thumb:hover img {
    transform: scale(1.06);
}

.bts-line {
    margin: 24px auto 0;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .bts-section {
        padding: 72px 20px;
    }

    .bts-section h2 {
        font-size: 32px;
    }

    .bts-thumbs-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 520px) {
    .bts-thumbs-grid {
        grid-template-columns: 1fr;
    }
}

.founder-story {
    background: #0A0A0A;
    color: white;
    padding: 140px 40px;
    text-align: center;
}

.founder-story .founder-container {
    max-width: 900px;
    margin: auto;
}

.founder-story .founder-title {
    font-size: 48px;
    margin-bottom: 80px;
    letter-spacing: 1px;
    font-family: var(--font-heading);
    text-transform: uppercase;
}

.founder-story .founder-content {
    font-family: var(--font-serif);
}

.founder-story .line {
    font-size: 20px;
    line-height: 1.9;
    margin: 0 0 22px;
    color: #cccccc;
    opacity: 0;
    transform: translateY(20px);
    animation: founder-fade-up 1s ease forwards;
}

.founder-story .line:nth-child(1) {
    animation-delay: 0.1s;
}

.founder-story .line:nth-child(2) {
    animation-delay: 0.2s;
}

.founder-story .line:nth-child(3) {
    animation-delay: 0.3s;
}

.founder-story .line:nth-child(4) {
    animation-delay: 0.4s;
}

.founder-story .line:nth-child(5) {
    animation-delay: 0.5s;
}

.founder-story .line:nth-child(6) {
    animation-delay: 0.6s;
}

.founder-story .line:nth-child(7) {
    animation-delay: 0.7s;
}

.founder-story .line:nth-child(8) {
    animation-delay: 0.8s;
}

.founder-story .line:nth-child(9) {
    animation-delay: 0.9s;
}

.founder-story .line:nth-child(10) {
    animation-delay: 1s;
}

.founder-story .line:nth-child(11) {
    animation-delay: 1.1s;
}

.founder-story .line:nth-child(12) {
    animation-delay: 1.2s;
}

.founder-story .big {
    font-size: 28px;
    font-weight: 600;
}

.founder-story .emphasis {
    font-weight: 600;
}

.founder-story .highlight {
    color: #C00000;
}

.founder-story .final {
    font-size: 24px;
    font-weight: 600;
    margin-top: 40px;
}

.founder-story .signature {
    margin-top: 60px;
    font-style: italic;
    color: #888;
}

@keyframes founder-fade-up {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .founder-story {
        padding: 100px 20px;
    }

    .founder-story .founder-title {
        font-size: 34px;
        margin-bottom: 48px;
    }

    .founder-story .line {
        font-size: 18px;
        line-height: 1.75;
    }

    .founder-story .big {
        font-size: 24px;
    }

    .founder-story .final {
        font-size: 21px;
    }
}

/* One-page fit compaction */
.hero-cinematic {
    min-height: 86vh;
}

.hero-title {
    margin-bottom: 1.2rem;
}

.hero-subtext {
    margin-bottom: 2rem;
}

.hero-cta-group {
    margin-bottom: 2rem;
}

.workflow-cinematic,
.why-section,
.portfolio,
.bts-section,
.founder-story,
.final-cta {
    padding-top: 72px;
    padding-bottom: 72px;
}

.workflow-header,
.services-header,
.founder-story .founder-title {
    margin-bottom: 40px;
}

.workflow-grid {
    margin-bottom: 2.5rem;
}

.metrics {
    padding: 4rem 0;
}

.metric .number {
    font-size: 3rem;
}

.portfolio-card {
    min-height: 280px;
}

.bts-thumbs-grid {
    margin-top: 14px;
}

.founder-story .line {
    font-size: 18px;
    line-height: 1.65;
    margin-bottom: 12px;
}

.founder-story .big {
    font-size: 24px;
}

.founder-story .final {
    font-size: 21px;
    margin-top: 20px;
}

.founder-story .signature {
    margin-top: 28px;
}

.cta-content p {
    margin-bottom: 1.4rem;
}

.footer {
    padding-top: 2.2rem;
}

.footer-bottom {
    margin-top: 1.5rem;
    padding-top: 1rem;
}

/* Side-by-side density optimization */
@media (min-width: 992px) {
    .why-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 980px;
    }

    .founder-story {
        padding-top: 64px;
        padding-bottom: 64px;
    }

    .founder-story .founder-container {
        max-width: 1100px;
    }

    .founder-story .founder-title {
        margin-bottom: 32px;
    }

    .founder-story .founder-content {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px 30px;
        text-align: left;
        align-items: start;
    }

    .founder-story .line {
        margin-bottom: 10px;
    }

    .founder-story .final,
    .founder-story .signature {
        grid-column: 1 / -1;
        text-align: center;
    }

    .founder-story .final {
        margin-top: 8px;
    }

    .founder-story .signature {
        margin-top: 12px;
    }
}

@media (max-width: 991px) {
    .why-list {
        grid-template-columns: 1fr;
    }

    .founder-story .founder-content {
        display: block;
        text-align: center;
    }
}

/* ===== Luxury Wedding Studio Theme ===== */
:root {
    --bg-color: #0b0b0b;
    --secondary-bg: #1a1a1a;
    --accent-color: #c9a96e;
    --accent-glow: rgba(201, 169, 110, 0.45);
    --gold-accent: #c9a96e;
    --font-heading: 'Playfair Display', serif;
    --font-serif: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
}

body {
    background: var(--bg-color);
}

h1,
h2,
h3 {
    letter-spacing: 0.5px;
}

.accent-red {
    color: var(--accent-color);
}

.header.scrolled {
    background: rgba(11, 11, 11, 0.92);
}

.nav-link {
    font-size: 0.78rem;
    letter-spacing: 2px;
}

.btn,
.btn-primary,
.btn-secondary,
.btn-outline {
    border-radius: 30px;
}

.btn-primary {
    background: var(--accent-color);
    color: #0b0b0b;
}

.btn-primary:hover {
    background: #d7b982;
    box-shadow: 0 0 24px var(--accent-glow);
}

.hero-cinematic {
    min-height: 100vh;
}

.hero-bg-zoom {
    filter: brightness(0.5) contrast(1.05);
}

.hero-vignette {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.45) 60%, rgba(0, 0, 0, 0.2) 100%);
}

.hero-layout {
    grid-template-columns: 1fr;
    max-width: 980px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 7vw, 6rem);
    line-height: 1.05;
    text-transform: none;
}

.hero-subtext {
    font-family: var(--font-body);
    font-size: 1.08rem;
    max-width: 620px;
}

.hero-right-visuals,
.hero-particles {
    display: none;
}

.hero-cta-group {
    gap: 0.8rem;
}

.hero-cta-group .btn-outline {
    display: none;
}

.hero-trust {
    margin-top: 0.2rem;
}

.trust-item {
    color: rgba(255, 255, 255, 0.85);
}

.stars,
.trust-icon {
    color: var(--accent-color);
}

.workflow-cinematic,
.why-section,
.portfolio,
.bts-section,
.founder-story,
.final-cta {
    background: var(--bg-color);
}

.workflow-card,
.why-list li,
.portfolio-card {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(201, 169, 110, 0.25);
}

.portfolio-card:hover,
.why-list li:hover {
    border-color: rgba(201, 169, 110, 0.65);
}

.portfolio-filter-btn:hover,
.portfolio-filter-btn.active {
    border-color: rgba(201, 169, 110, 0.65);
    background: rgba(201, 169, 110, 0.16);
}

.founder-story .highlight,
.section-subtitle,
.section-subtitle-cinematic,
.footer-col a:hover {
    color: var(--accent-color);
}

.floating-btn:hover {
    border-color: var(--accent-color);
    background: rgba(201, 169, 110, 0.16);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.7rem;
    }

    .hero-subtext {
        font-size: 0.98rem;
    }
}

/* Cinematic Hero Slider */
.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    animation: hero-ken-burns 6s ease-in-out infinite;
}

.hero-slide.active img {
    animation: hero-ken-burns 6s ease-in-out infinite;
}

@keyframes hero-ken-burns {
    0% {
        transform: scale(1.02);
    }

    100% {
        transform: scale(1.1);
    }
}

.hero-vignette {
    z-index: 2;
}

.hero-layout {
    z-index: 4;
}

/* Luxury Booking Modal Upgrade */
#booking-modal {
    background: rgba(0, 0, 0, 0.82);
    backdrop-filter: blur(10px);
}

.booking-landscape {
    background: rgba(15, 15, 15, 0.94);
    border: 1px solid rgba(201, 169, 110, 0.35);
    border-radius: 14px;
    box-shadow: 0 0 42px rgba(201, 169, 110, 0.12);
    padding: 2rem;
}

.booking-landscape h2 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.booking-group {
    position: relative;
}

.field-label {
    display: block;
    font-size: 0.66rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-color);
    margin: 0 0 0.45rem;
    font-weight: 600;
}

#booking-form input,
#booking-form select,
#booking-form textarea {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    color: #fff;
    padding: 0.75rem 0.85rem;
}

#booking-form select {
    background-color: rgba(18, 18, 18, 0.96);
    color: #ffffff;
}

.input-group {
    position: relative;
}

.input-group input[type="date"] {
    padding-right: 40px;
}

.input-group::after {
    content: "📅";
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    font-size: 18px;
}

#booking-form select option {
    background: #121212;
    color: #f3f3f3;
}

#booking-form select option[disabled] {
    color: #8f8f8f;
}

#booking-form textarea {
    min-height: 88px;
    resize: vertical;
}

#booking-form input:focus,
#booking-form select:focus,
#booking-form textarea:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.16);
}

#booking-form input.invalid,
#booking-form select.invalid,
#booking-form textarea.invalid {
    border-color: #ff4d4d;
    box-shadow: 0 0 0 2px rgba(255, 77, 77, 0.16);
}

.form-error {
    display: block;
    min-height: 16px;
    margin-top: 0.35rem;
    font-size: 0.75rem;
    color: #ff6b6b;
    font-weight: 500;
}

#booking-form button[type="submit"] {
    margin-top: 0.2rem;
    padding: 0.85rem;
    font-size: 0.82rem;
    letter-spacing: 1.1px;
}

@media (max-width: 768px) {
    .booking-landscape {
        max-width: 92vw;
        padding: 1.25rem;
    }

    .booking-landscape h2 {
        font-size: 1.25rem;
    }
}

#success-msg {
    text-align: center;
    border: 1px solid rgba(201, 169, 110, 0.35);
    background: rgba(201, 169, 110, 0.07);
    border-radius: 12px;
    padding: 1.4rem;
}

#success-msg h3 {
    color: var(--accent-color);
    margin-bottom: 0.4rem;
}

.booking-whatsapp-btn {
    margin-top: 0.9rem;
    display: inline-block;
}

.booking-success-show {
    animation: bookingSuccessPop 0.6s ease;
}

@keyframes bookingSuccessPop {
    0% {
        opacity: 0;
        transform: translateY(10px) scale(0.98);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.reviews-section {
    padding: 72px 0 24px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 20px;
}

.review-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    padding: 20px;
}

.review-text {
    margin: 0 0 12px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.review-name {
    margin: 0;
    font-size: 1rem;
}

.review-meta {
    color: var(--text-muted);
    font-size: 0.88rem;
}

.faq-section {
    padding: 42px 0 72px;
}

.faq-container {
    max-width: 980px;
}

.faq-list {
    margin-top: 18px;
    display: grid;
    gap: 10px;
}

.faq-item {
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    padding: 0 16px;
}

.faq-item summary {
    cursor: pointer;
    list-style: none;
    padding: 15px 0;
    font-weight: 600;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item p {
    margin: 0;
    padding: 0 0 15px;
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}