@import url('https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,300..700;1,300..700&family=Marcellus&display=swap');

/* ==========================================================================
   MOVINCAM.ART — LUXURY EDITORIAL DESIGN SYSTEM & STYLESHEET
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. FONTS & FONTS SETUP
   -------------------------------------------------------------------------- */
@font-face {
    font-family: 'Saonara';
    src: url('../fonts/SAONARA.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roundhand';
    src: url('../fonts/Roundhand Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roundhand';
    src: url('../fonts/Roundhand Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* --------------------------------------------------------------------------
   2. DESIGN TOKENS & VARIABLES
   -------------------------------------------------------------------------- */
:root {
    /* Color System */
    --bg: #d8cfc5;
    --bg-dark: #111111;
    --black: #111111;
    --white: #f5f2ed;
    --muted: #77716b;
    --accent: #b39a62;
    --border-light: rgba(17, 17, 17, 0.12);
    --border-dark: rgba(245, 242, 237, 0.15);

    /* Typography */
    --font-heading: 'Saonara', 'Times New Roman', serif;
    --font-body: 'Cormorant', 'Saonara', 'Georgia', serif;
    --font-cursive: 'Roundhand', cursive, serif;

    /* Spacing & Layout */
    --site-padding: clamp(1.5rem, 4vw, 5rem);
    --header-height: 90px;

    /* Transitions */
    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --------------------------------------------------------------------------
   3. RESET & BASE STYLES
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    background-color: var(--bg);
    color: var(--black);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg);
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    letter-spacing: 0.02em;
}

/* Subtle Photographic Grain Overlay */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Custom Cursor on Desktop */
@media (pointer: fine) {
    body {
        cursor: default;
    }

    .custom-cursor {
        position: fixed;
        width: 80px;
        height: 80px;
        background: rgba(17, 17, 17, 0.85);
        color: var(--white);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: var(--font-heading);
        font-size: 0.75rem;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        pointer-events: none;
        z-index: 9990;
        transform: translate(-50%, -50%) scale(0);
        transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease;
        mix-blend-mode: difference;
    }

    .custom-cursor.active {
        transform: translate(-50%, -50%) scale(1);
    }
}

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

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

button {
    font: inherit;
    color: inherit;
    background: none;
    border: none;
    cursor: pointer;
}

/* --------------------------------------------------------------------------
   4. TYPOGRAPHY SYSTEM
   -------------------------------------------------------------------------- */
h1,
h2,
h3,
h4,
.font-heading {
    font-family: var(--font-heading);
    font-weight: normal;
    line-height: 1.05;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

h1 {
    font-size: clamp(2.8rem, 7vw, 6.5rem);
}

h2 {
    font-size: clamp(2.2rem, 5vw, 4.5rem);
}

h3 {
    font-size: clamp(1.6rem, 3.5vw, 3rem);
}

h4 {
    font-size: clamp(1.2rem, 2.5vw, 2rem);
}

.cursive {
    font-family: var(--font-cursive);
    text-transform: none;
    font-weight: 400;
    color: var(--black);
    display: inline-block;
}

.serif-body {
    font-family: var(--font-body);
}

.editorial-subtitle {
    font-family: var(--font-heading);
    font-size: clamp(0.75rem, 1.2vw, 0.95rem);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 1rem;
    display: block;
}

/* --------------------------------------------------------------------------
   5. HEADER & NAVIGATION
   -------------------------------------------------------------------------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 var(--site-padding);
    z-index: 1000;
    transition: background-color 0.4s ease, backdrop-filter 0.4s ease;
}

.site-header.scrolled {
    background-color: rgba(216, 207, 197, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-light);
}

.site-header.header-dark.scrolled {
    background-color: rgba(17, 17, 17, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-dark);
}

.header-brand {
    display: flex;
    align-items: center;
}

.header-brand img {
    height: 38px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-fast);
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 0.85rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    position: relative;
    padding: 0.4rem 0;
    transition: color 0.3s ease;
}

.site-header.header-dark .nav-link {
    color: var(--white);
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 1px;
    background-color: currentColor;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Nav Dropdown / More Menu */
.nav-item-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background-color: var(--white);
    border: 1px solid var(--border-light);
    padding: 1.25rem 1.75rem;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.site-header.header-dark .dropdown-menu {
    background-color: var(--black);
    border-color: var(--border-dark);
    color: var(--white);
}

.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-link {
    font-family: var(--font-body);
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: color 0.2s ease, transform 0.2s ease;
    white-space: nowrap;
}

.dropdown-link:hover {
    color: var(--accent);
    transform: translateX(4px);
}

/* Mobile Menu Toggle Button */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 10px;
    z-index: 1002;
}

.mobile-toggle span {
    display: block;
    width: 26px;
    height: 1.5px;
    background-color: var(--black);
    transition: var(--transition-fast);
}

.site-header.header-dark .mobile-toggle span {
    background-color: var(--white);
}

/* Fullscreen Mobile Navigation Menu */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--black);
    color: var(--white);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--site-padding);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-nav-link {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 6vw, 3.5rem);
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: var(--transition-fast);
}

.mobile-nav-link:hover {
    color: var(--accent);
    padding-left: 1rem;
}

.mobile-nav-footer {
    margin-top: 3rem;
    border-top: 1px solid var(--border-dark);
    padding-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    font-size: 0.85rem;
    color: var(--muted);
}

/* --------------------------------------------------------------------------
   6. HERO SECTION
   -------------------------------------------------------------------------- */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: var(--white);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: brightness(0.85);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(17, 17, 17, 0.4) 0%, rgba(17, 17, 17, 0.2) 50%, rgba(17, 17, 17, 0.7) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    padding: 0 1.5rem;
    margin-top: 40px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 9vw, 8rem);
    letter-spacing: 0.06em;
    color: var(--white);
    margin-bottom: 1rem;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-family: var(--font-cursive);
    font-size: clamp(1.8rem, 4vw, 3.2rem);
    color: var(--white);
    opacity: 0.95;
    margin-bottom: 2.5rem;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.8;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--white), transparent);
    animation: scrollAnimation 2s infinite ease-in-out;
}

@keyframes scrollAnimation {
    0% {
        transform: scaleY(0);
        transform-origin: top;
    }

    50% {
        transform: scaleY(1);
        transform-origin: top;
    }

    50.1% {
        transform: scaleY(1);
        transform-origin: bottom;
    }

    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}

/* --------------------------------------------------------------------------
   7. BUTTONS & UI COMPONENTS
   -------------------------------------------------------------------------- */
.btn-editorial {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2.2rem;
    border: 1px solid currentColor;
    font-family: var(--font-body);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    background: transparent;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.btn-editorial::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--black);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: -1;
}

.btn-editorial:hover {
    color: var(--white);
    border-color: var(--black);
}

.btn-editorial:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-editorial-light {
    color: var(--white);
    border-color: rgba(245, 242, 237, 0.4);
}

.btn-editorial-light::before {
    background-color: var(--white);
}

.btn-editorial-light:hover {
    color: var(--black);
    border-color: var(--white);
}

/* --------------------------------------------------------------------------
   8. SECTION LAYOUTS & ASYMMETRIC MASONRY
   -------------------------------------------------------------------------- */
.section-padding {
    padding: clamp(4rem, 8vw, 9rem) var(--site-padding);
}

.container-editorial {
    max-width: 1400px;
    margin: 0 auto;
}

/* Introduction Section */
.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 6rem);
    align-items: center;
}

.intro-text-side {
    max-width: 580px;
}

.intro-heading {
    font-size: clamp(2.2rem, 4.5vw, 4rem);
    margin-bottom: 1.5rem;
}

.intro-cursive-accent {
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    color: var(--accent);
    margin-left: 0.5rem;
}

.intro-paragraph {
    font-size: 1.1rem;
    color: var(--muted);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.intro-images-side {
    position: relative;
    display: flex;
    gap: 1.5rem;
}

.intro-img-1 {
    width: 60%;
    height: 480px;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.intro-img-2 {
    width: 50%;
    height: 380px;
    object-fit: cover;
    margin-top: 4rem;
    margin-left: -20%;
    border: 8px solid var(--bg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Masonry Editorial Grid */
.editorial-masonry {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.masonry-tile {
    position: relative;
    overflow: hidden;
    background-color: var(--white);
}

.masonry-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.masonry-tile:hover img {
    transform: scale(1.04);
}

.tile-col-6 {
    grid-column: span 6;
    height: 550px;
}

.tile-col-4 {
    grid-column: span 4;
    height: 480px;
}

.tile-col-8 {
    grid-column: span 8;
    height: 580px;
}

.tile-col-3 {
    grid-column: span 3;
    height: 400px;
}

.tile-col-12 {
    grid-column: span 12;
    height: 600px;
}

/* Quote Tile */
.tile-quote {
    background-color: transparent;
    border: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 3rem;
    text-align: center;
}

.tile-quote h3 {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

/* --------------------------------------------------------------------------
   9. FEATURED STORIES / COUPLE CARDS
   -------------------------------------------------------------------------- */
.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.story-card {
    display: block;
    position: relative;
    group: relative;
}

.story-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    background-color: var(--white);
}

.story-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s ease;
}

.story-card:hover .story-img-wrapper img {
    transform: scale(1.05);
    filter: brightness(0.9);
}

.story-details {
    margin-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.story-names {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.story-meta {
    font-size: 0.85rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* --------------------------------------------------------------------------
   10. CINEMATIC FILMS (SOUL + CINEMA)
   -------------------------------------------------------------------------- */
.cinema-banner-section {
    position: relative;
    background-color: var(--black);
    color: var(--white);
    padding: clamp(6rem, 10vw, 12rem) var(--site-padding);
    clip-path: polygon(0 4%, 100% 0, 100% 96%, 0 100%);
    margin: 4rem 0;
    overflow: hidden;
}

.cinema-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.45;
    filter: grayscale(100%);
}

.cinema-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cinema-title {
    font-size: clamp(3rem, 8vw, 7rem);
    letter-spacing: 0.08em;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.cinema-desc {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(245, 242, 237, 0.85);
    margin-bottom: 2.5rem;
}

/* Film Cards Grid */
.films-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.film-card {
    position: relative;
    cursor: pointer;
}

.film-thumbnail {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    background-color: var(--black);
}

.film-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.film-card:hover .film-thumbnail img {
    transform: scale(1.05);
    opacity: 0.85;
}

.play-btn-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: rgba(245, 242, 237, 0.9);
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.film-card:hover .play-btn-circle {
    transform: translate(-50%, -50%) scale(1.15);
    background-color: var(--white);
}

.play-btn-circle svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
    margin-left: 3px;
}

.film-info {
    margin-top: 1.25rem;
}

.film-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    letter-spacing: 0.05em;
}

.film-subtitle {
    font-size: 0.9rem;
    color: var(--muted);
    margin-top: 0.3rem;
}

/* --------------------------------------------------------------------------
   11. AWARDS SECTION
   -------------------------------------------------------------------------- */
.awards-section {
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    padding: 4rem var(--site-padding);
    text-align: center;
}

.awards-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: clamp(2rem, 5vw, 5rem);
    margin-top: 2.5rem;
}

.award-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.award-item:hover {
    opacity: 1;
}

.award-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.award-name {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    letter-spacing: 0.15em;
}

/* --------------------------------------------------------------------------
   12. EDITORIAL PRESS LOGOS
   -------------------------------------------------------------------------- */
.press-section {
    padding: 4rem var(--site-padding);
    text-align: center;
}

.press-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: clamp(2.5rem, 6vw, 6rem);
    margin-top: 2rem;
    opacity: 0.75;
}

.press-logo-text {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 2.5vw, 2.2rem);
    letter-spacing: 0.2em;
    color: var(--black);
    transition: var(--transition-fast);
}

.press-logo-text:hover {
    color: var(--accent);
    transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   13. FAQ ACCORDION
   -------------------------------------------------------------------------- */
.faq-container {
    max-width: 900px;
    margin: 3rem auto 0 auto;
}

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

.faq-button {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.8rem 0;
    text-align: left;
    font-family: var(--font-heading);
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.faq-button:hover {
    color: var(--accent);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.4s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease;
    padding: 0 0;
    font-size: 1.05rem;
    color: var(--muted);
    line-height: 1.8;
}

.faq-item.active .faq-content {
    padding: 0 0 1.8rem 0;
}

/* --------------------------------------------------------------------------
   14. FILM VIDEO MODAL
   -------------------------------------------------------------------------- */
.film-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(17, 17, 17, 0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.film-modal.active {
    opacity: 1;
    visibility: visible;
}

.film-modal-container {
    position: relative;
    width: 100%;
    max-width: 1100px;
    aspect-ratio: 16/9;
    background-color: var(--black);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.film-modal-container iframe,
.film-modal-container video {
    width: 100%;
    height: 100%;
    border: none;
}

.modal-close-btn {
    position: absolute;
    top: -50px;
    right: 0;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    background: none;
    border: none;
    line-height: 1;
}

/* --------------------------------------------------------------------------
   15. FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
    background-color: var(--black);
    color: var(--white);
    padding: clamp(5rem, 8vw, 8rem) var(--site-padding) 3rem var(--site-padding);
}

.footer-main-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: clamp(2rem, 5vw, 5rem);
    margin-bottom: 5rem;
}

.footer-brand img {
    height: 42px;
    margin-bottom: 1.5rem;
}

.footer-brand-p {
    font-size: 0.95rem;
    color: var(--muted);
    max-width: 340px;
    line-height: 1.7;
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    color: rgba(245, 242, 237, 0.7);
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid var(--border-dark);
    padding-top: 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.8rem;
    color: var(--muted);
    letter-spacing: 0.1em;
}

/* --------------------------------------------------------------------------
   16. DYNAMIC COUPLE PAGE STYLES (couples/index.html)
   -------------------------------------------------------------------------- */
.couple-hero {
    position: relative;
    width: 100%;
    height: 85vh;
    overflow: hidden;
}

.couple-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85);
}

.couple-header-info {
    text-align: center;
    padding: 5rem var(--site-padding) 3rem var(--site-padding);
    max-width: 850px;
    margin: 0 auto;
}

.couple-title {
    font-size: clamp(3rem, 7vw, 6rem);
    margin-bottom: 1rem;
}

.couple-meta-bar {
    display: flex;
    justify-content: center;
    gap: 2rem;
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 2rem;
}

.couple-story-text {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--black);
}

.couple-essay-gallery {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-top: 4rem;
}

.essay-row-full {
    width: 100%;
}

.essay-row-full img {
    width: 100%;
    max-height: 90vh;
    object-fit: cover;
}

.essay-row-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.essay-row-split img {
    width: 100%;
    height: 650px;
    object-fit: cover;
}

.couple-nav-footer {
    display: flex;
    justify-content: space-between;
    padding: 4rem 0;
    border-top: 1px solid var(--border-light);
    margin-top: 6rem;
}

.couple-nav-link {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    transition: var(--transition-fast);
}

.couple-nav-link:hover {
    color: var(--accent);
}

/* --------------------------------------------------------------------------
   17. CONTACT FORM STYLES
   -------------------------------------------------------------------------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: clamp(3rem, 6vw, 7rem);
}

.form-group {
    margin-bottom: 2rem;
    position: relative;
}

.form-label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
    color: var(--muted);
}

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

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    border-bottom-color: var(--black);
}

/* --------------------------------------------------------------------------
   18. ANIMATION CLASSES & REVEALS
   -------------------------------------------------------------------------- */
.reveal-fade-up {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-fade-up.is-visible,
.reveal-fade-up.is-revealed {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.15s;
}

.delay-2 {
    transition-delay: 0.3s;
}

.delay-3 {
    transition-delay: 0.45s;
}

/* Slide 2 Scroll Animations */
.reveal-fade-left {
    opacity: 0;
    transform: translateX(-70px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal-fade-left.is-revealed,
.reveal-fade-left.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-fade-right {
    opacity: 0;
    transform: translateX(70px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal-fade-right.is-revealed,
.reveal-fade-right.is-visible {
    opacity: 1;
    transform: translateX(0);
}

/* Slide 2 Typing Animation Elements */
.mcap-type-char {
    display: inline;
    will-change: opacity;
}

.mcap-typing-cursor {
    display: inline-block;
    width: 2.5px;
    height: 0.82em;
    background-color: #372d21;
    margin-left: 3px;
    vertical-align: -0.04em;
    animation: mcapCaretBlink 0.75s infinite;
    pointer-events: none;
}

.mcap-typing-cursor.fade-out {
    animation: none;
    opacity: 0;
    transition: opacity 0.6s ease;
}

@keyframes mcapCaretBlink {
    0%, 45% { opacity: 1; }
    50%, 100% { opacity: 0; }
}

/* --------------------------------------------------------------------------
   19. RESPONSIVE BREAKPOINTS
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
    .nav-desktop {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .intro-grid {
        grid-template-columns: 1fr;
    }

    .intro-images-side {
        margin-top: 2rem;
    }

    .editorial-masonry {
        grid-template-columns: 1fr 1fr;
    }

    .tile-col-6,
    .tile-col-4,
    .tile-col-8,
    .tile-col-3,
    .tile-col-12 {
        grid-column: span 2;
        height: 450px;
    }

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

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 75px;
    }

    .editorial-masonry {
        grid-template-columns: 1fr;
    }

    .tile-col-6,
    .tile-col-4,
    .tile-col-8,
    .tile-col-3,
    .tile-col-12 {
        grid-column: span 1;
        height: 380px;
    }

    .stories-grid,
    .films-grid {
        grid-template-columns: 1fr;
    }

    .essay-row-split {
        grid-template-columns: 1fr;
    }

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

    .intro-img-1 {
        width: 100%;
        height: 350px;
    }

    .intro-img-2 {
        width: 80%;
        height: 300px;
        margin-left: auto;
        margin-top: -3rem;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ==========================================================================
   MCAP EDITORIAL HOMEPAGE DESIGN SYSTEM (PIXEL-BY-PIXEL)
   ========================================================================== */

:root {
    --mcap-cream: #f0e9df;
    --mcap-dark: #000000;
    --mcap-text-dark: #372d21;
    --mcap-text-muted: #615b55;
}

body.mcap-home {
    background-color: var(--mcap-cream);
    color: var(--mcap-text-dark);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Visually Hidden accessible utility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* 1. Header Navigation */
.mcap-header {
    height: auto !important;
    min-height: unset;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 200;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: clamp(2.4rem, 3.2vw, 3.4rem) clamp(2.2rem, 3.8vw, 4.8rem);
    transition: background-color 0.4s ease, padding 0.3s ease, backdrop-filter 0.4s ease;
}

.mcap-header.header-fixed {
    position: fixed;
    height: auto !important;
    background-color: var(--mcap-cream);
    border-bottom: 1px solid rgba(34, 30, 26, 0.08);
    padding: 1.2rem clamp(2.2rem, 3.8vw, 4.8rem);
}

.mcap-header.header-fixed.header-dark {
    background-color: rgba(14, 13, 12, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mcap-header.scrolled {
    position: fixed;
    height: auto !important;
    background: rgba(14, 13, 12, 0.94);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 1.2rem clamp(2.2rem, 3.8vw, 4.8rem);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.35);
}

.mcap-logo-wrap {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    line-height: 1;
}

.mcap-logo-img {
    height: clamp(52px, 5.2vw, 84px);
    width: auto;
    max-width: 320px;
    display: block;
    transition: opacity 0.3s ease, height 0.3s ease;
}

.mcap-header.scrolled .mcap-logo-img,
.mcap-header.header-fixed .mcap-logo-img {
    height: clamp(34px, 3.4vw, 50px);
}

.mcap-logo-wrap:hover .mcap-logo-img {
    opacity: 0.85;
}

.mcap-nav-desktop {
    display: flex;
    align-items: center;
    gap: clamp(1.4rem, 2.1vw, 2.6rem);
}

.mcap-nav-link {
    font-family: 'Cormorant', var(--font-heading), 'Playfair Display', Georgia, serif;
    font-size: clamp(1rem, 1.08vw, 1.18rem);
    font-weight: 400;
    letter-spacing: 0.02em;
    text-transform: none;
    /* Exact casing requested */
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
    position: relative;
    padding: 0.2rem 0;
    transition: color 0.3s ease, opacity 0.3s ease;
}

.mcap-header:not(.header-dark):not(.header-transparent) .mcap-nav-link {
    color: #221e1a;
}

.mcap-nav-link:hover,
.mcap-nav-link.active {
    color: #ffffff;
    opacity: 1;
}

.mcap-header:not(.header-dark):not(.header-transparent) .mcap-nav-link:hover,
.mcap-header:not(.header-dark):not(.header-transparent) .mcap-nav-link.active {
    color: #000000;
}

/* Mobile Toggle for MCAP */
.mcap-mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 210;
    padding: 0;
}

.mcap-mobile-toggle span {
    display: block;
    width: 100%;
    height: 1.5px;
    background-color: #f5f2ed;
    transition: var(--transition-fast);
}

/* 2. Hero Section (Slide 01) */
.mcap-hero-section {
    position: relative;
    width: 100%;
    background-color: var(--mcap-dark);
    line-height: 0;
    overflow: hidden;
}

.mcap-hero-media {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    min-height: 60vh;
    max-height: 100vh;
    object-fit: cover;
    object-position: center 25%;
    display: block;
}

/* 3. Section 2: Visual Language (Slide 02) */
.mcap-visual-section {
    background-color: var(--mcap-cream);
    padding: clamp(3.5rem, 6vw, 6rem) 0 0 0;
    max-height: 120vh;
    overflow: hidden;
}

.mcap-sec2-header {
    text-align: center;
    padding: 0 clamp(1.5rem, 4vw, 4rem);
}

.mcap-sec2-title {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    font-size: clamp(2rem, 4.2vw, 4.5rem);
    line-height: 1;
    color: #372d21;
    margin: 0 auto;
}

.mcap-sec2-title-line1 {
    font-family: 'Saonara', var(--font-heading), 'Times New Roman', serif;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    display: block;
    white-space: nowrap;
    color: #372d21;
    line-height: 1;
}

.mcap-sec2-title-line2 {
    display: flex;
    align-items: baseline;
    margin-left: 4.1em;
    /* Starts exactly under the 'L' of 'VISUAL' */
    margin-top: -0.22em;
    /* Tight line spacing matching the original design */
    white-space: nowrap;
    line-height: 1;
}

.mcap-sec2-title-cursive {
    font-family: 'Roundhand', var(--font-cursive), cursive;
    font-size: 1.05em;
    font-weight: 400;
    text-transform: none !important;
    letter-spacing: normal;
    margin-right: 0.25em;
    color: #372d21;
}

.mcap-sec2-title-serif {
    font-family: 'Saonara', var(--font-heading), 'Times New Roman', serif;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #372d21;
}

.mcap-sec2-title-img {
    display: block;
    margin: 0 auto;
    max-width: min(88%, 820px);
    width: 100%;
    height: auto;
}

.mcap-sec2-content {

    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    padding: 0;
    margin-top: -40px;
}

.mcap-sec2-left {
    width: 38.8%;
    line-height: 0;
    margin: 0;
    padding: 0;
}

.mcap-sec2-left-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.mcap-sec2-right {
    width: 39.2%;
    margin-right: 7.2%;
    margin-top: calc(4rem + 5%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 1rem;
    line-height: 0;
}

.mcap-sec2-statement-text {
    font-family: 'Cormorant', Georgia, 'Times New Roman', serif;
    font-size: clamp(1.1rem, 1.22vw, 1.42rem);
    font-weight: 900;
    line-height: 1;
    color: #000;
    text-align: justify;
    text-justify: inter-word;
    text-align-last: left;
    margin: 0;
    letter-spacing: 0.015em;
}

.mcap-sec2-statement-img {
    width: 100%;
    height: auto;
    display: block;
}

.mcap-sec2-right-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* 4. Section 3: 5-Column Editorial Mosaic Grid (Slide 03) */
.mcap-mosaic-section {
    background-color: var(--mcap-cream);
    width: 100%;
    margin: 0;
    padding: 0;
    line-height: 0;
}

.mcap-mosaic-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    width: 100%;
}

.mcap-mosaic-card {
    position: relative;
    aspect-ratio: 1000 / 1417;
    overflow: hidden;
    background-color: var(--mcap-cream);
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 0;
}

.mcap-mosaic-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.mcap-mosaic-card:hover .mcap-mosaic-img {
    transform: scale(1.04);
}

/* 5. Section 4: 4-Column Showcase Strip (Slide 04) */
.mcap-strip-section {
    background-color: var(--mcap-cream);
    padding: clamp(3.5rem, 6.5vw, 6.5rem) clamp(1rem, 3vw, 2.5rem);
    display: flex;
    justify-content: center;
    align-items: center;
}

.mcap-strip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(8px, 1.2vw, 16px);
    width: 100%;
    max-width: 960px;
}

.mcap-strip-item {
    aspect-ratio: 43 / 65;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    line-height: 0;
}

.mcap-strip-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.mcap-strip-item:hover .mcap-strip-img {
    transform: scale(1.04);
}

/* 6. Section 5: Celebration Panorama (Slide 05) */
.mcap-panorama-section {
    width: 100%;
    background-color: var(--mcap-dark);
    line-height: 0;
    overflow: hidden;
}

.mcap-panorama-media {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
}

/* 7. Section 6: Dark Bridal Portrait (Slide 06) */
.mcap-dark-portrait-section {
    width: 100%;
    background-color: var(--mcap-dark);
    line-height: 0;
    overflow: hidden;
}

.mcap-dark-portrait-img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
}

/* 8. Section 7: Minimalist 3-Column Footer */
/* 8. Section 7: Minimalist 3-Column Footer */
.mcap-footer {
    background-color: var(--mcap-cream);
    padding: clamp(3.5rem, 5.5vw, 6rem) clamp(2rem, 5vw, 6rem);
    border-top: none;
    width: 100%;
}

.mcap-footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
}

.mcap-footer-brand {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    width: fit-content;
    gap: clamp(1rem, 1.3vw, 1.5rem);
}

.mcap-footer-brand-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    line-height: 1;
}

.mcap-footer-logo-img {
    height: clamp(50px, 4.8vw, 70px);
    width: auto;
    display: block;
}

.mcap-footer-socials {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    width: 100%;
}

.mcap-footer-socials a {
    color: #000;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.mcap-footer-socials a:hover {
    opacity: 0.6;
    transform: translateY(-2px);
}

.mcap-footer-socials svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.mcap-footer-center {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    margin: 0 auto;
    font-family: 'Saonara', var(--font-heading), 'Times New Roman', serif;
    color: #000;
    line-height: 1.35;
    gap: 0.25rem;
}

.mcap-footer-location {
    font-size: clamp(1.15rem, 1.35vw, 1.5rem);
    font-weight: 400;
    letter-spacing: 0.01em;
    color: #000;
    display: block;
}

.mcap-footer-privacy {
    font-size: clamp(1.05rem, 1.22vw, 1.35rem);
    font-weight: 400;
    letter-spacing: 0.01em;
    color: #000;
    text-decoration: none;
    display: block;
    transition: opacity 0.3s ease;
}

.mcap-footer-privacy:hover {
    opacity: 0.6;
}

.mcap-footer-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    font-family: 'Saonara', var(--font-heading), 'Times New Roman', serif;
    color: #000;
    text-align: center;
    gap: 0.25rem;
}

.mcap-footer-phone {
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #000;
    text-decoration: none;
    line-height: 1.2;
    transition: opacity 0.3s ease;
    display: block;
    font-family: var(--font-body);
}

.mcap-footer-phone:hover {
    opacity: 0.6;
}

.mcap-footer-email {
    font-size: clamp(1.15rem, 1.35vw, 1.5rem);
    font-weight: 400;
    letter-spacing: 0.01em;
    color: #000;
    text-decoration: none;
    line-height: 1.2;
    transition: opacity 0.3s ease;
    display: block;
}

.mcap-footer-email:hover {
    opacity: 0.6;
}

.mcap-footer-dark {
    background-color: var(--mcap-dark);
}

.mcap-footer-dark .mcap-footer-socials a,
.mcap-footer-dark .mcap-footer-location,
.mcap-footer-dark .mcap-footer-privacy,
.mcap-footer-dark .mcap-footer-phone,
.mcap-footer-dark .mcap-footer-email {
    color: var(--mcap-cream);
}

/* Responsive Breakpoints for MCAP Home */
@media (max-width: 992px) {
    .mcap-sec2-content {
        flex-direction: column;
        align-items: center;
        gap: 2.5rem;
    }

    .mcap-sec2-left {
        width: 100%;
    }

    .mcap-sec2-right {
        width: 85%;
        margin-right: 0;
        margin-bottom: 2rem;
    }

    .mcap-strip-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .mcap-visual-section {
        max-height: unset;
        overflow: unset;
    }

    .mcap-sec2-content {
        margin-top: 1.1rem;
    }

    .mcap-sec2-right {
        margin: unset;
    }

    .mcap-header {
        padding: 1.5rem 2rem;
    }

    .mcap-nav-desktop {
        display: none;
    }

    .mcap-mobile-toggle {
        display: flex;
    }

    .mcap-mosaic-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .mcap-footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .mcap-footer-brand {
        align-items: center;
    }

    .mcap-footer-right {
        text-align: center;
    }

    .mcap-sec2-title {
        font-size: clamp(1.4rem, 4.8vw, 2.2rem);
    }
}

@media (max-width: 480px) {
    .mcap-mosaic-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mcap-sec2-title {
        font-size: clamp(1.1rem, 5.2vw, 1.35rem);
    }
}